diff --git a/apps/dashboard/package.json b/apps/dashboard/package.json index 1f141c09c7..0763c432e9 100644 --- a/apps/dashboard/package.json +++ b/apps/dashboard/package.json @@ -3,7 +3,7 @@ "version": "0.1.0", "private": true, "scripts": { - "dev": "next dev -p 3002 --turbopack", + "dev": "next dev -p 3002", "build": "next build", "docker:build": "docker build -t dashboard:latest -f Dockerfile --progress plain ../..", "start": "next start", @@ -19,7 +19,6 @@ "@dotkomonline/environment": "workspace:*", "@dotkomonline/logger": "workspace:*", "@dotkomonline/rpc": "workspace:*", - "@dotkomonline/types": "workspace:*", "@dotkomonline/ui": "workspace:*", "@dotkomonline/utils": "workspace:*", "@fontsource-variable/google-sans-code": "^5.2.4", diff --git a/apps/dashboard/src/app/(internal)/arrangementer/[id]/attendance-page.tsx b/apps/dashboard/src/app/(internal)/arrangementer/[id]/attendance-page.tsx index 9b4673a649..3b4ac78982 100644 --- a/apps/dashboard/src/app/(internal)/arrangementer/[id]/attendance-page.tsx +++ b/apps/dashboard/src/app/(internal)/arrangementer/[id]/attendance-page.tsx @@ -1,4 +1,4 @@ -import type { Attendance } from "@dotkomonline/types" +import type { Attendance } from "@dotkomonline/rpc/attendance" import { Box, Divider, Title } from "@mantine/core" import type { FC } from "react" import { useAttendanceForm } from "../components/attendance-form" diff --git a/apps/dashboard/src/app/(internal)/arrangementer/[id]/attendees-page.tsx b/apps/dashboard/src/app/(internal)/arrangementer/[id]/attendees-page.tsx index b274656bfa..c781b44f38 100644 --- a/apps/dashboard/src/app/(internal)/arrangementer/[id]/attendees-page.tsx +++ b/apps/dashboard/src/app/(internal)/arrangementer/[id]/attendees-page.tsx @@ -1,5 +1,7 @@ import { UserSearch } from "@/app/(internal)/brukere/components/user-search" -import type { Attendance, Event, FeedbackFormAnswer } from "@dotkomonline/types" +import type { Attendance } from "@dotkomonline/rpc/attendance" +import type { Event } from "@dotkomonline/rpc/event" +import type { FeedbackFormAnswer } from "@dotkomonline/rpc/feedback-form" import { Anchor, Button, Group, List, ListItem, Space, Stack, Text, Title } from "@mantine/core" import { skipToken } from "@tanstack/react-query" import type { FC } from "react" diff --git a/apps/dashboard/src/app/(internal)/arrangementer/[id]/feedback-page.tsx b/apps/dashboard/src/app/(internal)/arrangementer/[id]/feedback-page.tsx index 1de507cb4b..061e2734d2 100644 --- a/apps/dashboard/src/app/(internal)/arrangementer/[id]/feedback-page.tsx +++ b/apps/dashboard/src/app/(internal)/arrangementer/[id]/feedback-page.tsx @@ -1,10 +1,5 @@ -import { - type EventId, - type FeedbackFormId, - type FeedbackFormWrite, - type FeedbackQuestionWrite, - getDefaultFeedbackAnswerDeadline, -} from "@dotkomonline/types" +import { type EventId, getDefaultFeedbackAnswerDeadline } from "@dotkomonline/rpc/event" +import type { FeedbackFormId, FeedbackFormWrite, FeedbackQuestionWrite } from "@dotkomonline/rpc/feedback-form" import { Box, Button, Group, Select, Stack, Title, Text } from "@mantine/core" import type { FC } from "react" import { FeedbackFormEditForm } from "../components/feedback-form-edit-form" diff --git a/apps/dashboard/src/app/(internal)/arrangementer/[id]/payment-page.tsx b/apps/dashboard/src/app/(internal)/arrangementer/[id]/payment-page.tsx index 2edc5f3f10..c24c7472c7 100644 --- a/apps/dashboard/src/app/(internal)/arrangementer/[id]/payment-page.tsx +++ b/apps/dashboard/src/app/(internal)/arrangementer/[id]/payment-page.tsx @@ -4,7 +4,7 @@ import { type Attendee, getAttendeePaymentStatus, isAttendeeChargedAndUnrefunded, -} from "@dotkomonline/types" +} from "@dotkomonline/rpc/attendance" import { Badge, type BadgeProps, Box, Button, Group, Input, Stack, Title } from "@mantine/core" import { IconExternalLink } from "@tabler/icons-react" import { createColumnHelper, getCoreRowModel, useReactTable } from "@tanstack/react-table" diff --git a/apps/dashboard/src/app/(internal)/arrangementer/[id]/provider.tsx b/apps/dashboard/src/app/(internal)/arrangementer/[id]/provider.tsx index 6d6b54ef68..1a01e8b957 100644 --- a/apps/dashboard/src/app/(internal)/arrangementer/[id]/provider.tsx +++ b/apps/dashboard/src/app/(internal)/arrangementer/[id]/provider.tsx @@ -1,6 +1,6 @@ "use client" -import type { EventWithAttendance } from "@dotkomonline/types" +import type { EventWithAttendance } from "@dotkomonline/rpc/event" import { createContext, useContext } from "react" /** Context consisting of everything required to use and render the form */ diff --git a/apps/dashboard/src/app/(internal)/arrangementer/[id]/selections-page.tsx b/apps/dashboard/src/app/(internal)/arrangementer/[id]/selections-page.tsx index cd82c5bf46..8a0bf84028 100644 --- a/apps/dashboard/src/app/(internal)/arrangementer/[id]/selections-page.tsx +++ b/apps/dashboard/src/app/(internal)/arrangementer/[id]/selections-page.tsx @@ -1,5 +1,5 @@ import { useTRPC } from "@/lib/trpc-client" -import type { Attendance } from "@dotkomonline/types" +import type { Attendance } from "@dotkomonline/rpc/attendance" import { ActionIcon, Box, Button, Divider, Paper, Table, Title } from "@mantine/core" import { IconEdit, IconTrash } from "@tabler/icons-react" import { useQuery } from "@tanstack/react-query" diff --git a/apps/dashboard/src/app/(internal)/arrangementer/components/InfoBox.tsx b/apps/dashboard/src/app/(internal)/arrangementer/components/InfoBox.tsx index 7be147e1ee..1e880d6a28 100644 --- a/apps/dashboard/src/app/(internal)/arrangementer/components/InfoBox.tsx +++ b/apps/dashboard/src/app/(internal)/arrangementer/components/InfoBox.tsx @@ -1,4 +1,4 @@ -import type { AttendancePool } from "@dotkomonline/types" +import type { AttendancePool } from "@dotkomonline/rpc/attendance" import { Box, Table } from "@mantine/core" import type { FC } from "react" import { formatPoolYearCriterias } from "./utils" diff --git a/apps/dashboard/src/app/(internal)/arrangementer/components/all-attendees-table.tsx b/apps/dashboard/src/app/(internal)/arrangementer/components/all-attendees-table.tsx index 974d799eba..d2e433f550 100644 --- a/apps/dashboard/src/app/(internal)/arrangementer/components/all-attendees-table.tsx +++ b/apps/dashboard/src/app/(internal)/arrangementer/components/all-attendees-table.tsx @@ -4,9 +4,9 @@ import type { AttendeePaymentStatus, Attendee, AttendeeSelectionResponse, - FeedbackFormAnswer, -} from "@dotkomonline/types" -import { getAttendeePaymentStatus } from "@dotkomonline/types" +} from "@dotkomonline/rpc/attendance" +import type { FeedbackFormAnswer } from "@dotkomonline/rpc/feedback-form" +import { getAttendeePaymentStatus } from "@dotkomonline/rpc/attendance" import { getCurrentUTC } from "@dotkomonline/utils" import { ActionIcon, diff --git a/apps/dashboard/src/app/(internal)/arrangementer/components/attendance-form.tsx b/apps/dashboard/src/app/(internal)/arrangementer/components/attendance-form.tsx index 2ce01a0c56..22a394179d 100644 --- a/apps/dashboard/src/app/(internal)/arrangementer/components/attendance-form.tsx +++ b/apps/dashboard/src/app/(internal)/arrangementer/components/attendance-form.tsx @@ -1,6 +1,6 @@ import { createDateTimeInput } from "@/components/forms/DateTimeInput" import { useFormBuilder } from "@/components/forms/Form" -import { AttendanceWriteSchema } from "@dotkomonline/types" +import { AttendanceWriteSchema } from "@dotkomonline/rpc/attendance" import type { z } from "zod" // Define the schema without the omitted fields diff --git a/apps/dashboard/src/app/(internal)/arrangementer/components/attendance-registered-modal.tsx b/apps/dashboard/src/app/(internal)/arrangementer/components/attendance-registered-modal.tsx index 897086889d..eb720e475c 100644 --- a/apps/dashboard/src/app/(internal)/arrangementer/components/attendance-registered-modal.tsx +++ b/apps/dashboard/src/app/(internal)/arrangementer/components/attendance-registered-modal.tsx @@ -1,4 +1,4 @@ -import type { User } from "@dotkomonline/types" +import type { User } from "@dotkomonline/rpc/user" import { type ContextModalProps, modals } from "@mantine/modals" import type { FC } from "react" diff --git a/apps/dashboard/src/app/(internal)/arrangementer/components/create-event-selections-modal.tsx b/apps/dashboard/src/app/(internal)/arrangementer/components/create-event-selections-modal.tsx index c74b3c69dd..cdae343805 100644 --- a/apps/dashboard/src/app/(internal)/arrangementer/components/create-event-selections-modal.tsx +++ b/apps/dashboard/src/app/(internal)/arrangementer/components/create-event-selections-modal.tsx @@ -1,4 +1,4 @@ -import type { Attendance } from "@dotkomonline/types" +import type { Attendance } from "@dotkomonline/rpc/attendance" import { type ContextModalProps, modals } from "@mantine/modals" import type { FC } from "react" import { useUpdateAttendanceMutation } from "../mutations" diff --git a/apps/dashboard/src/app/(internal)/arrangementer/components/create-pool-modal.tsx b/apps/dashboard/src/app/(internal)/arrangementer/components/create-pool-modal.tsx index 6922b6854d..a0bca06721 100644 --- a/apps/dashboard/src/app/(internal)/arrangementer/components/create-pool-modal.tsx +++ b/apps/dashboard/src/app/(internal)/arrangementer/components/create-pool-modal.tsx @@ -1,4 +1,4 @@ -import type { AttendanceId } from "@dotkomonline/types" +import type { AttendanceId } from "@dotkomonline/rpc/attendance" import { type ContextModalProps, modals } from "@mantine/modals" import type { FC } from "react" import { useCreatePoolMutation } from "../mutations" diff --git a/apps/dashboard/src/app/(internal)/arrangementer/components/edit-event-selections-modal.tsx b/apps/dashboard/src/app/(internal)/arrangementer/components/edit-event-selections-modal.tsx index a98d4b40e4..a1940eb0d3 100644 --- a/apps/dashboard/src/app/(internal)/arrangementer/components/edit-event-selections-modal.tsx +++ b/apps/dashboard/src/app/(internal)/arrangementer/components/edit-event-selections-modal.tsx @@ -1,4 +1,4 @@ -import type { Attendance, AttendanceSelection } from "@dotkomonline/types" +import type { Attendance, AttendanceSelection } from "@dotkomonline/rpc/attendance" import { type ContextModalProps, modals } from "@mantine/modals" import type { FC } from "react" import { useUpdateAttendanceMutation } from "../mutations" diff --git a/apps/dashboard/src/app/(internal)/arrangementer/components/edit-form.tsx b/apps/dashboard/src/app/(internal)/arrangementer/components/edit-form.tsx index bab65a6c33..c7aa56c751 100644 --- a/apps/dashboard/src/app/(internal)/arrangementer/components/edit-form.tsx +++ b/apps/dashboard/src/app/(internal)/arrangementer/components/edit-form.tsx @@ -9,15 +9,15 @@ import { createMultipleSelectInput } from "@/components/forms/MultiSelectInput" import { createRichTextInput } from "@/components/forms/RichTextInput/RichTextInput" import { createSelectInput } from "@/components/forms/SelectInput" import { createTextInput } from "@/components/forms/TextInput" +import type { Company } from "@dotkomonline/rpc/company" import { - type Company, EVENT_IMAGE_MAX_SIZE_KIB, EventSchema, type EventStatus, EventTypeSchema, - type Group, mapEventTypeToLabel, -} from "@dotkomonline/types" +} from "@dotkomonline/rpc/event" +import type { Group } from "@dotkomonline/rpc/group" import { z } from "zod" import { validateEventWrite } from "../validation" diff --git a/apps/dashboard/src/app/(internal)/arrangementer/components/error-attendance-registered-modal.tsx b/apps/dashboard/src/app/(internal)/arrangementer/components/error-attendance-registered-modal.tsx index 3340213419..028cf7c300 100644 --- a/apps/dashboard/src/app/(internal)/arrangementer/components/error-attendance-registered-modal.tsx +++ b/apps/dashboard/src/app/(internal)/arrangementer/components/error-attendance-registered-modal.tsx @@ -1,4 +1,4 @@ -import type { User } from "@dotkomonline/types" +import type { User } from "@dotkomonline/rpc/user" import { type ContextModalProps, modals } from "@mantine/modals" import type { FC } from "react" diff --git a/apps/dashboard/src/app/(internal)/arrangementer/components/event-filters.tsx b/apps/dashboard/src/app/(internal)/arrangementer/components/event-filters.tsx index 7aa5aab128..6b34d0e4da 100644 --- a/apps/dashboard/src/app/(internal)/arrangementer/components/event-filters.tsx +++ b/apps/dashboard/src/app/(internal)/arrangementer/components/event-filters.tsx @@ -1,4 +1,4 @@ -import type { EventFilterQuery } from "@dotkomonline/types" +import type { EventFilterQuery } from "@dotkomonline/rpc/event" import { ActionIcon, Group, TextInput } from "@mantine/core" import { useDebouncedValue } from "@mantine/hooks" import { IconX } from "@tabler/icons-react" diff --git a/apps/dashboard/src/app/(internal)/arrangementer/components/event-hosting-group-list.tsx b/apps/dashboard/src/app/(internal)/arrangementer/components/event-hosting-group-list.tsx index 1454280f15..78c671e2d1 100644 --- a/apps/dashboard/src/app/(internal)/arrangementer/components/event-hosting-group-list.tsx +++ b/apps/dashboard/src/app/(internal)/arrangementer/components/event-hosting-group-list.tsx @@ -1,4 +1,5 @@ -import type { Company, Group } from "@dotkomonline/types" +import type { Company } from "@dotkomonline/rpc/company" +import type { Group } from "@dotkomonline/rpc/group" import { Anchor, Group as MantineGroup, Text } from "@mantine/core" import Link from "next/link" import type { FC } from "react" diff --git a/apps/dashboard/src/app/(internal)/arrangementer/components/events-table.tsx b/apps/dashboard/src/app/(internal)/arrangementer/components/events-table.tsx index f016ef2c8f..7da959b019 100644 --- a/apps/dashboard/src/app/(internal)/arrangementer/components/events-table.tsx +++ b/apps/dashboard/src/app/(internal)/arrangementer/components/events-table.tsx @@ -1,6 +1,6 @@ import { DateTooltip } from "@/components/DateTooltip" import { GenericTable } from "@/components/GenericTable" -import { type EventWithAttendance, mapEventStatusToLabel, mapEventTypeToLabel } from "@dotkomonline/types" +import { type EventWithAttendance, mapEventStatusToLabel, mapEventTypeToLabel } from "@dotkomonline/rpc/event" import { Anchor } from "@mantine/core" import { createColumnHelper, getCoreRowModel, useReactTable } from "@tanstack/react-table" import Link from "next/link" diff --git a/apps/dashboard/src/app/(internal)/arrangementer/components/feedback-form-edit-form.tsx b/apps/dashboard/src/app/(internal)/arrangementer/components/feedback-form-edit-form.tsx index 398c2a561c..41b5fa84d5 100644 --- a/apps/dashboard/src/app/(internal)/arrangementer/components/feedback-form-edit-form.tsx +++ b/apps/dashboard/src/app/(internal)/arrangementer/components/feedback-form-edit-form.tsx @@ -1,5 +1,5 @@ +import type { EventId } from "@dotkomonline/rpc/event" import { - type EventId, type FeedbackFormId, type FeedbackFormWrite, FeedbackFormWriteSchema, @@ -7,7 +7,7 @@ import { type FeedbackQuestionWrite, FeedbackQuestionWriteSchema, getFeedbackQuestionTypeName, -} from "@dotkomonline/types" +} from "@dotkomonline/rpc/feedback-form" import { DragDropContext, Draggable, type DropResult, Droppable } from "@hello-pangea/dnd" import { zodResolver } from "@hookform/resolvers/zod" import { diff --git a/apps/dashboard/src/app/(internal)/arrangementer/components/manual-delete-user-attend-modal.tsx b/apps/dashboard/src/app/(internal)/arrangementer/components/manual-delete-user-attend-modal.tsx index ce2ed858e6..e0506c7043 100644 --- a/apps/dashboard/src/app/(internal)/arrangementer/components/manual-delete-user-attend-modal.tsx +++ b/apps/dashboard/src/app/(internal)/arrangementer/components/manual-delete-user-attend-modal.tsx @@ -1,4 +1,4 @@ -import type { AttendeeId } from "@dotkomonline/types" +import type { AttendeeId } from "@dotkomonline/rpc/attendance" import { Button } from "@mantine/core" import { type ContextModalProps, modals } from "@mantine/modals" import type { FC } from "react" diff --git a/apps/dashboard/src/app/(internal)/arrangementer/components/notify-attendees-modal.tsx b/apps/dashboard/src/app/(internal)/arrangementer/components/notify-attendees-modal.tsx index 2fed747528..886f08afa5 100644 --- a/apps/dashboard/src/app/(internal)/arrangementer/components/notify-attendees-modal.tsx +++ b/apps/dashboard/src/app/(internal)/arrangementer/components/notify-attendees-modal.tsx @@ -1,6 +1,7 @@ import { ErrorMessage } from "@hookform/error-message" import { zodResolver } from "@hookform/resolvers/zod" -import type { Attendee, EventId } from "@dotkomonline/types" +import type { Attendee } from "@dotkomonline/rpc/attendance" +import type { EventId } from "@dotkomonline/rpc/event" import { Button, ScrollArea, Stack, Table, Textarea } from "@mantine/core" import { type ContextModalProps, modals } from "@mantine/modals" import type { FC } from "react" diff --git a/apps/dashboard/src/app/(internal)/arrangementer/components/pools-box.tsx b/apps/dashboard/src/app/(internal)/arrangementer/components/pools-box.tsx index 230d35a395..1e85006172 100644 --- a/apps/dashboard/src/app/(internal)/arrangementer/components/pools-box.tsx +++ b/apps/dashboard/src/app/(internal)/arrangementer/components/pools-box.tsx @@ -4,7 +4,7 @@ import { type AttendancePool, getReservedAttendeeCount, getUnreservedAttendeeCount, -} from "@dotkomonline/types" +} from "@dotkomonline/rpc/attendance" import { Box, Button, Card, Flex, Group, Space, Text, Title } from "@mantine/core" import type { FC } from "react" import { useDeletePoolMutation } from "../mutations" diff --git a/apps/dashboard/src/app/(internal)/arrangementer/components/qr-code-scanned-modal.tsx b/apps/dashboard/src/app/(internal)/arrangementer/components/qr-code-scanned-modal.tsx index 43c9779e91..3f501ad922 100644 --- a/apps/dashboard/src/app/(internal)/arrangementer/components/qr-code-scanned-modal.tsx +++ b/apps/dashboard/src/app/(internal)/arrangementer/components/qr-code-scanned-modal.tsx @@ -2,13 +2,10 @@ import { type Attendance, type AttendeeId, - type User, - findActiveMembership, getAttendeeQueuePosition, getUnreservedAttendeeCount, - getMembershipTypeName, - getGenderName, -} from "@dotkomonline/types" +} from "@dotkomonline/rpc/attendance" +import { type User, findActiveMembership, getMembershipTypeName, getGenderName } from "@dotkomonline/rpc/user" import { getCurrentUTC, getStudyGrade } from "@dotkomonline/utils" import { Button, Flex, Group, Image, Stack, Text, Title, useComputedColorScheme } from "@mantine/core" import { useMediaQuery } from "@mantine/hooks" diff --git a/apps/dashboard/src/app/(internal)/arrangementer/components/qr-code-scanner.tsx b/apps/dashboard/src/app/(internal)/arrangementer/components/qr-code-scanner.tsx index f6000ed768..52d1831002 100644 --- a/apps/dashboard/src/app/(internal)/arrangementer/components/qr-code-scanner.tsx +++ b/apps/dashboard/src/app/(internal)/arrangementer/components/qr-code-scanner.tsx @@ -1,4 +1,4 @@ -import type { Attendance } from "@dotkomonline/types" +import type { Attendance } from "@dotkomonline/rpc/attendance" import { ActionIcon, AspectRatio, Button, Group, Loader, Skeleton, Stack, Text } from "@mantine/core" import { useDisclosure } from "@mantine/hooks" import { IconFlipVertical, IconQrcode, IconQrcodeOff } from "@tabler/icons-react" diff --git a/apps/dashboard/src/app/(internal)/arrangementer/components/write-form.tsx b/apps/dashboard/src/app/(internal)/arrangementer/components/write-form.tsx index df67ed4319..170b51cc58 100644 --- a/apps/dashboard/src/app/(internal)/arrangementer/components/write-form.tsx +++ b/apps/dashboard/src/app/(internal)/arrangementer/components/write-form.tsx @@ -19,7 +19,7 @@ import { EventTypeSchema, EventWriteSchema, mapEventTypeToLabel, -} from "@dotkomonline/types" +} from "@dotkomonline/rpc/event" import { addHours, roundToNearestHours } from "date-fns" import { z } from "zod" diff --git a/apps/dashboard/src/app/(internal)/arrangementer/page.tsx b/apps/dashboard/src/app/(internal)/arrangementer/page.tsx index fd8c01df50..fda2a59a15 100644 --- a/apps/dashboard/src/app/(internal)/arrangementer/page.tsx +++ b/apps/dashboard/src/app/(internal)/arrangementer/page.tsx @@ -1,6 +1,6 @@ "use client" -import type { EventFilterQuery } from "@dotkomonline/types" +import type { EventFilterQuery } from "@dotkomonline/rpc/event" import { Button, Group, Skeleton, Stack, Title } from "@mantine/core" import { IconPencil } from "@tabler/icons-react" import Link from "next/link" diff --git a/apps/dashboard/src/app/(internal)/arrangementer/queries.ts b/apps/dashboard/src/app/(internal)/arrangementer/queries.ts index 17edbdf5c3..765738edec 100644 --- a/apps/dashboard/src/app/(internal)/arrangementer/queries.ts +++ b/apps/dashboard/src/app/(internal)/arrangementer/queries.ts @@ -1,4 +1,7 @@ -import type { AttendanceId, EventFilterQuery, EventId, FeedbackFormId, UserId } from "@dotkomonline/types" +import type { AttendanceId } from "@dotkomonline/rpc/attendance" +import type { EventFilterQuery, EventId } from "@dotkomonline/rpc/event" +import type { FeedbackFormId } from "@dotkomonline/rpc/feedback-form" +import type { UserId } from "@dotkomonline/rpc/user" import { type SkipToken, useInfiniteQuery, useQuery } from "@tanstack/react-query" import { useTRPC } from "@/lib/trpc-client" diff --git a/apps/dashboard/src/app/(internal)/arrangementer/validation.ts b/apps/dashboard/src/app/(internal)/arrangementer/validation.ts index 3db715bced..caae8b92c6 100644 --- a/apps/dashboard/src/app/(internal)/arrangementer/validation.ts +++ b/apps/dashboard/src/app/(internal)/arrangementer/validation.ts @@ -1,4 +1,4 @@ -import { EventStatusSchema, EventTypeSchema, type EventWrite } from "@dotkomonline/types" +import { EventStatusSchema, EventTypeSchema, type EventWrite } from "@dotkomonline/rpc/event" import { isAfter } from "date-fns" import type { z } from "zod" diff --git a/apps/dashboard/src/app/(internal)/artikler/[id]/provider.tsx b/apps/dashboard/src/app/(internal)/artikler/[id]/provider.tsx index 1cd63844f3..5c7ce78e98 100644 --- a/apps/dashboard/src/app/(internal)/artikler/[id]/provider.tsx +++ b/apps/dashboard/src/app/(internal)/artikler/[id]/provider.tsx @@ -1,6 +1,6 @@ "use client" -import type { Article } from "@dotkomonline/types" +import type { Article } from "@dotkomonline/rpc/article" import { createContext, useContext } from "react" /** Context consisting of everything required to use and render the form */ diff --git a/apps/dashboard/src/app/(internal)/artikler/all-articles-table.tsx b/apps/dashboard/src/app/(internal)/artikler/all-articles-table.tsx index 5f71d17e28..b204d492a1 100644 --- a/apps/dashboard/src/app/(internal)/artikler/all-articles-table.tsx +++ b/apps/dashboard/src/app/(internal)/artikler/all-articles-table.tsx @@ -1,5 +1,5 @@ import { FilterableTable, arrayOrEqualsFilter } from "@/components/molecules/FilterableTable/FilterableTable" -import type { Article } from "@dotkomonline/types" +import type { Article } from "@dotkomonline/rpc/article" import { Anchor, Group } from "@mantine/core" import { createColumnHelper, getCoreRowModel } from "@tanstack/react-table" import Link from "next/link" diff --git a/apps/dashboard/src/app/(internal)/artikler/write-form.tsx b/apps/dashboard/src/app/(internal)/artikler/write-form.tsx index bb9abb1867..67335bf1cf 100644 --- a/apps/dashboard/src/app/(internal)/artikler/write-form.tsx +++ b/apps/dashboard/src/app/(internal)/artikler/write-form.tsx @@ -6,7 +6,7 @@ import { createImageInput } from "@/components/forms/ImageInput" import { createRichTextInput } from "@/components/forms/RichTextInput/RichTextInput" import { createTagInput } from "@/components/forms/TagInput" import { createTextInput } from "@/components/forms/TextInput" -import { ARTICLE_IMAGE_MAX_SIZE_KIB, ArticleTagSchema, ArticleWriteSchema } from "@dotkomonline/types" +import { ARTICLE_IMAGE_MAX_SIZE_KIB, ArticleTagSchema, ArticleWriteSchema } from "@dotkomonline/rpc/article" import type { z } from "zod" const ARTICLE_FORM_DEFAULT_VALUES: Partial = {} diff --git a/apps/dashboard/src/app/(internal)/avmeldingsgrunner/deregister-reasons-table.tsx b/apps/dashboard/src/app/(internal)/avmeldingsgrunner/deregister-reasons-table.tsx index c57710fa8a..ba8881c409 100644 --- a/apps/dashboard/src/app/(internal)/avmeldingsgrunner/deregister-reasons-table.tsx +++ b/apps/dashboard/src/app/(internal)/avmeldingsgrunner/deregister-reasons-table.tsx @@ -1,5 +1,5 @@ import { GenericTable } from "@/components/GenericTable" -import { type DeregisterReasonWithEvent, mapDeregisterReasonTypeToLabel } from "@dotkomonline/types" +import { type DeregisterReasonWithEvent, mapDeregisterReasonTypeToLabel } from "@dotkomonline/rpc/event" import { Anchor } from "@mantine/core" import { createColumnHelper, getCoreRowModel, useReactTable } from "@tanstack/react-table" import { formatDate } from "date-fns" diff --git a/apps/dashboard/src/app/(internal)/bedrifter/[slug]/provider.tsx b/apps/dashboard/src/app/(internal)/bedrifter/[slug]/provider.tsx index ec58a4490c..12a2a0c37a 100644 --- a/apps/dashboard/src/app/(internal)/bedrifter/[slug]/provider.tsx +++ b/apps/dashboard/src/app/(internal)/bedrifter/[slug]/provider.tsx @@ -1,6 +1,6 @@ "use client" -import type { Company } from "@dotkomonline/types" +import type { Company } from "@dotkomonline/rpc/company" import { createContext, useContext } from "react" /** Context consisting of everything required to use and render the form */ diff --git a/apps/dashboard/src/app/(internal)/bedrifter/components/use-company-table.tsx b/apps/dashboard/src/app/(internal)/bedrifter/components/use-company-table.tsx index 31b09615e6..f2ef80fd51 100644 --- a/apps/dashboard/src/app/(internal)/bedrifter/components/use-company-table.tsx +++ b/apps/dashboard/src/app/(internal)/bedrifter/components/use-company-table.tsx @@ -1,6 +1,6 @@ "use client" -import type { Company } from "@dotkomonline/types" +import type { Company } from "@dotkomonline/rpc/company" import { Anchor } from "@mantine/core" import { createColumnHelper, getCoreRowModel, useReactTable } from "@tanstack/react-table" import Link from "next/link" diff --git a/apps/dashboard/src/app/(internal)/bedrifter/components/write-form.tsx b/apps/dashboard/src/app/(internal)/bedrifter/components/write-form.tsx index 2c93996644..85b1db2055 100644 --- a/apps/dashboard/src/app/(internal)/bedrifter/components/write-form.tsx +++ b/apps/dashboard/src/app/(internal)/bedrifter/components/write-form.tsx @@ -3,7 +3,7 @@ import { useFormBuilder } from "@/components/forms/Form" import { createImageInput } from "@/components/forms/ImageInput" import { createRichTextInput } from "@/components/forms/RichTextInput/RichTextInput" import { createTextInput } from "@/components/forms/TextInput" -import { COMPANY_IMAGE_MAX_SIZE_KIB, type CompanyWrite, CompanyWriteSchema } from "@dotkomonline/types" +import { COMPANY_IMAGE_MAX_SIZE_KIB, type CompanyWrite, CompanyWriteSchema } from "@dotkomonline/rpc/company" import { z } from "zod" const COMPANY_FORM_DEFAULT_VALUES: Partial = { diff --git a/apps/dashboard/src/app/(internal)/bedrifter/queries.ts b/apps/dashboard/src/app/(internal)/bedrifter/queries.ts index 60850fbd92..9d80a8d540 100644 --- a/apps/dashboard/src/app/(internal)/bedrifter/queries.ts +++ b/apps/dashboard/src/app/(internal)/bedrifter/queries.ts @@ -1,5 +1,5 @@ import { useTRPC } from "@/lib/trpc-client" -import type { Company, CompanyId, CompanySlug } from "@dotkomonline/types" +import type { Company, CompanyId, CompanySlug } from "@dotkomonline/rpc/company" import { useQuery } from "@tanstack/react-query" import { useMemo } from "react" diff --git a/apps/dashboard/src/app/(internal)/brukere/[id]/edit-card.tsx b/apps/dashboard/src/app/(internal)/brukere/[id]/edit-card.tsx index c6a6ffbba4..f67fa9a925 100644 --- a/apps/dashboard/src/app/(internal)/brukere/[id]/edit-card.tsx +++ b/apps/dashboard/src/app/(internal)/brukere/[id]/edit-card.tsx @@ -1,6 +1,7 @@ import { env } from "@/lib/env" import { useUser } from "@auth0/nextjs-auth0/client" -import { UserWriteSchema, type WorkspaceUser, findActiveMembership, getMembershipTypeName } from "@dotkomonline/types" +import { UserWriteSchema, findActiveMembership, getMembershipTypeName } from "@dotkomonline/rpc/user" +import type { WorkspaceUser } from "@dotkomonline/rpc/workspace" import { Button, Group, Loader, Stack, Text, TextInput, Title } from "@mantine/core" import { useDebouncedValue } from "@mantine/hooks" import { IconCheck, IconLink, IconUsersGroup, IconX, IconArrowUpRight } from "@tabler/icons-react" diff --git a/apps/dashboard/src/app/(internal)/brukere/[id]/edit-form.tsx b/apps/dashboard/src/app/(internal)/brukere/[id]/edit-form.tsx index 94a3a311ee..3aac623737 100644 --- a/apps/dashboard/src/app/(internal)/brukere/[id]/edit-form.tsx +++ b/apps/dashboard/src/app/(internal)/brukere/[id]/edit-form.tsx @@ -9,7 +9,7 @@ import { USER_IMAGE_MAX_SIZE_KIB, type UserWrite, UserWriteSchema, -} from "@dotkomonline/types" +} from "@dotkomonline/rpc/user" import { createTextareaInput } from "@/components/forms/TextareaInput" import { useIsAdminQuery } from "../queries" diff --git a/apps/dashboard/src/app/(internal)/brukere/[id]/provider.tsx b/apps/dashboard/src/app/(internal)/brukere/[id]/provider.tsx index 9e21d096c0..57fcda7585 100644 --- a/apps/dashboard/src/app/(internal)/brukere/[id]/provider.tsx +++ b/apps/dashboard/src/app/(internal)/brukere/[id]/provider.tsx @@ -1,6 +1,6 @@ "use client" -import type { User } from "@dotkomonline/types" +import type { User } from "@dotkomonline/rpc/user" import { createContext, useContext } from "react" /** Context consisting of everything required to use and render the form */ diff --git a/apps/dashboard/src/app/(internal)/brukere/[id]/user-audit-log-page.tsx b/apps/dashboard/src/app/(internal)/brukere/[id]/user-audit-log-page.tsx index fb3fb0dbd4..33ac0b3f58 100644 --- a/apps/dashboard/src/app/(internal)/brukere/[id]/user-audit-log-page.tsx +++ b/apps/dashboard/src/app/(internal)/brukere/[id]/user-audit-log-page.tsx @@ -1,7 +1,7 @@ import { AuditLogFilters } from "@/app/(internal)/logg/components/audit-log-filters" import { useAuditLogSearchQuery } from "@/app/(internal)/logg/queries" import { AuditLogsTable } from "@/app/(internal)/logg/use-audit-log-table" -import type { AuditLogFilterQuery } from "@dotkomonline/types" +import type { AuditLogFilterQuery } from "@dotkomonline/rpc/audit-log" import { Skeleton, Stack, Title } from "@mantine/core" import type { FC } from "react" import { useState } from "react" diff --git a/apps/dashboard/src/app/(internal)/brukere/components/confirm-delete-membership-modal.tsx b/apps/dashboard/src/app/(internal)/brukere/components/confirm-delete-membership-modal.tsx index 65c1dbe6c2..201f2ef0bf 100644 --- a/apps/dashboard/src/app/(internal)/brukere/components/confirm-delete-membership-modal.tsx +++ b/apps/dashboard/src/app/(internal)/brukere/components/confirm-delete-membership-modal.tsx @@ -1,5 +1,5 @@ import { useConfirmDeleteModal } from "@/components/molecules/ConfirmDeleteModal/confirm-delete-modal" -import type { Membership } from "@dotkomonline/types" +import type { Membership } from "@dotkomonline/rpc/user" import { useDeleteMembershipMutation } from "../mutations" export const useConfirmDeleteMembershipModal = () => { diff --git a/apps/dashboard/src/app/(internal)/brukere/components/create-membership-modal.tsx b/apps/dashboard/src/app/(internal)/brukere/components/create-membership-modal.tsx index 03c84a01a6..19fc5d5106 100644 --- a/apps/dashboard/src/app/(internal)/brukere/components/create-membership-modal.tsx +++ b/apps/dashboard/src/app/(internal)/brukere/components/create-membership-modal.tsx @@ -1,4 +1,4 @@ -import type { User } from "@dotkomonline/types" +import type { User } from "@dotkomonline/rpc/user" import { type ContextModalProps, modals } from "@mantine/modals" import type { FC } from "react" import { useCreateMembershipMutation } from "../mutations" diff --git a/apps/dashboard/src/app/(internal)/brukere/components/edit-membership-modal.tsx b/apps/dashboard/src/app/(internal)/brukere/components/edit-membership-modal.tsx index d4a4ca23ff..1fc0939891 100644 --- a/apps/dashboard/src/app/(internal)/brukere/components/edit-membership-modal.tsx +++ b/apps/dashboard/src/app/(internal)/brukere/components/edit-membership-modal.tsx @@ -1,4 +1,4 @@ -import type { Membership } from "@dotkomonline/types" +import type { Membership } from "@dotkomonline/rpc/user" import { type ContextModalProps, modals } from "@mantine/modals" import type { FC } from "react" import { useUpdateMembershipMutation } from "../mutations" diff --git a/apps/dashboard/src/app/(internal)/brukere/components/membership-form.tsx b/apps/dashboard/src/app/(internal)/brukere/components/membership-form.tsx index 15322f784f..65228c8032 100644 --- a/apps/dashboard/src/app/(internal)/brukere/components/membership-form.tsx +++ b/apps/dashboard/src/app/(internal)/brukere/components/membership-form.tsx @@ -7,7 +7,7 @@ import { MembershipWriteSchema, getMembershipTypeName, getSpecializationName, -} from "@dotkomonline/types" +} from "@dotkomonline/rpc/user" import { getCurrentSemesterStart, getNextSemesterStart, diff --git a/apps/dashboard/src/app/(internal)/brukere/components/use-membership-table.tsx b/apps/dashboard/src/app/(internal)/brukere/components/use-membership-table.tsx index f5d8c725c1..a86db8a39c 100644 --- a/apps/dashboard/src/app/(internal)/brukere/components/use-membership-table.tsx +++ b/apps/dashboard/src/app/(internal)/brukere/components/use-membership-table.tsx @@ -1,6 +1,6 @@ "use client" -import { type Membership, type UserId, getMembershipTypeName, getSpecializationName } from "@dotkomonline/types" +import { type Membership, type UserId, getMembershipTypeName, getSpecializationName } from "@dotkomonline/rpc/user" import { Button } from "@mantine/core" import { IconEdit, IconTrash } from "@tabler/icons-react" import { createColumnHelper, getCoreRowModel, useReactTable } from "@tanstack/react-table" diff --git a/apps/dashboard/src/app/(internal)/brukere/components/user-combobox.tsx b/apps/dashboard/src/app/(internal)/brukere/components/user-combobox.tsx index 158fdf70bc..0d0e5365fc 100644 --- a/apps/dashboard/src/app/(internal)/brukere/components/user-combobox.tsx +++ b/apps/dashboard/src/app/(internal)/brukere/components/user-combobox.tsx @@ -1,7 +1,7 @@ "use client" import { useUserAllQuery } from "@/app/(internal)/brukere/queries" -import type { User } from "@dotkomonline/types" +import type { User } from "@dotkomonline/rpc/user" import { MultiSelect, type MultiSelectProps, Select } from "@mantine/core" import { useDebouncedValue } from "@mantine/hooks" import { useMemo, useState } from "react" diff --git a/apps/dashboard/src/app/(internal)/brukere/components/user-filters.tsx b/apps/dashboard/src/app/(internal)/brukere/components/user-filters.tsx index 3d4a1aea98..5e5eea2a8d 100644 --- a/apps/dashboard/src/app/(internal)/brukere/components/user-filters.tsx +++ b/apps/dashboard/src/app/(internal)/brukere/components/user-filters.tsx @@ -1,4 +1,4 @@ -import type { UserFilterQuery } from "@dotkomonline/types" +import type { UserFilterQuery } from "@dotkomonline/rpc/user" import { TextInput } from "@mantine/core" import { useDebouncedValue } from "@mantine/hooks" import { type FormEvent, useEffect } from "react" diff --git a/apps/dashboard/src/app/(internal)/brukere/components/user-search.tsx b/apps/dashboard/src/app/(internal)/brukere/components/user-search.tsx index d00f59e002..bf87412084 100644 --- a/apps/dashboard/src/app/(internal)/brukere/components/user-search.tsx +++ b/apps/dashboard/src/app/(internal)/brukere/components/user-search.tsx @@ -1,5 +1,5 @@ import { GenericSearch } from "@/components/GenericSearch" -import type { User } from "@dotkomonline/types" +import type { User } from "@dotkomonline/rpc/user" import { type FC, useState } from "react" import { useUserAllQuery } from "../queries" diff --git a/apps/dashboard/src/app/(internal)/brukere/page.tsx b/apps/dashboard/src/app/(internal)/brukere/page.tsx index 426dc94f2f..ffd91a02fd 100644 --- a/apps/dashboard/src/app/(internal)/brukere/page.tsx +++ b/apps/dashboard/src/app/(internal)/brukere/page.tsx @@ -1,7 +1,7 @@ "use client" import { GenericTable } from "@/components/GenericTable" -import type { UserFilterQuery } from "@dotkomonline/types" +import type { UserFilterQuery } from "@dotkomonline/rpc/user" import { Group, Skeleton, Stack } from "@mantine/core" import { useState } from "react" import { UserFilters } from "./components/user-filters" diff --git a/apps/dashboard/src/app/(internal)/brukere/queries.ts b/apps/dashboard/src/app/(internal)/brukere/queries.ts index fafa0c1dff..5b59c9edae 100644 --- a/apps/dashboard/src/app/(internal)/brukere/queries.ts +++ b/apps/dashboard/src/app/(internal)/brukere/queries.ts @@ -1,6 +1,6 @@ import { useTRPC } from "@/lib/trpc-client" -import type { AttendanceId, UserFilterQuery, UserId } from "@dotkomonline/types" - +import type { AttendanceId } from "@dotkomonline/rpc/attendance" +import type { UserFilterQuery, UserId } from "@dotkomonline/rpc/user" import type { Pageable } from "@dotkomonline/utils" import { useInfiniteQuery, useQuery } from "@tanstack/react-query" import { useMemo } from "react" diff --git a/apps/dashboard/src/app/(internal)/brukere/use-user-table.tsx b/apps/dashboard/src/app/(internal)/brukere/use-user-table.tsx index a4f1b0ae88..20e2f77917 100644 --- a/apps/dashboard/src/app/(internal)/brukere/use-user-table.tsx +++ b/apps/dashboard/src/app/(internal)/brukere/use-user-table.tsx @@ -1,6 +1,6 @@ "use client" -import type { User } from "@dotkomonline/types" +import type { User } from "@dotkomonline/rpc/user" import { Anchor } from "@mantine/core" import { createColumnHelper, getCoreRowModel, useReactTable } from "@tanstack/react-table" import Link from "next/link" diff --git a/apps/dashboard/src/app/(internal)/grupper/[id]/[memberId]/group-membership-form.tsx b/apps/dashboard/src/app/(internal)/grupper/[id]/[memberId]/group-membership-form.tsx index 5bbc372b0b..d4cead370e 100644 --- a/apps/dashboard/src/app/(internal)/grupper/[id]/[memberId]/group-membership-form.tsx +++ b/apps/dashboard/src/app/(internal)/grupper/[id]/[memberId]/group-membership-form.tsx @@ -1,7 +1,7 @@ import { createDateTimeInput } from "@/components/forms/DateTimeInput" import { useFormBuilder } from "@/components/forms/Form" import { createMultipleSelectInput } from "@/components/forms/MultiSelectInput" -import { type GroupId, GroupMembershipWriteSchema, GroupRoleSchema } from "@dotkomonline/types" +import { type GroupId, GroupMembershipWriteSchema, GroupRoleSchema } from "@dotkomonline/rpc/group" import { isBefore, isFuture } from "date-fns" import type z from "zod" import { useGroupGetQuery } from "../../queries" diff --git a/apps/dashboard/src/app/(internal)/grupper/[id]/[memberId]/provider.tsx b/apps/dashboard/src/app/(internal)/grupper/[id]/[memberId]/provider.tsx index 5126c2b9b5..d9b3cc70df 100644 --- a/apps/dashboard/src/app/(internal)/grupper/[id]/[memberId]/provider.tsx +++ b/apps/dashboard/src/app/(internal)/grupper/[id]/[memberId]/provider.tsx @@ -1,6 +1,6 @@ "use client" -import type { GroupMember } from "@dotkomonline/types" +import type { GroupMember } from "@dotkomonline/rpc/group" import { createContext, useContext } from "react" export const GroupMemberDetailsContext = createContext<{ diff --git a/apps/dashboard/src/app/(internal)/grupper/[id]/[memberId]/use-group-membership-table.tsx b/apps/dashboard/src/app/(internal)/grupper/[id]/[memberId]/use-group-membership-table.tsx index ff041830a2..6f81ea2f11 100644 --- a/apps/dashboard/src/app/(internal)/grupper/[id]/[memberId]/use-group-membership-table.tsx +++ b/apps/dashboard/src/app/(internal)/grupper/[id]/[memberId]/use-group-membership-table.tsx @@ -1,6 +1,6 @@ "use client" import { DateTooltip } from "@/components/DateTooltip" -import type { GroupMember, GroupMembership } from "@dotkomonline/types" +import type { GroupMember, GroupMembership } from "@dotkomonline/rpc/group" import { Button } from "@mantine/core" import { createColumnHelper, getCoreRowModel, useReactTable } from "@tanstack/react-table" import { useMemo } from "react" diff --git a/apps/dashboard/src/app/(internal)/grupper/[id]/edit-card.tsx b/apps/dashboard/src/app/(internal)/grupper/[id]/edit-card.tsx index 54c1a44835..cd82723799 100644 --- a/apps/dashboard/src/app/(internal)/grupper/[id]/edit-card.tsx +++ b/apps/dashboard/src/app/(internal)/grupper/[id]/edit-card.tsx @@ -1,5 +1,5 @@ import { useConfirmDeleteModal } from "@/components/molecules/ConfirmDeleteModal/confirm-delete-modal" -import type { WorkspaceGroup } from "@dotkomonline/types" +import type { WorkspaceGroup } from "@dotkomonline/rpc/workspace" import { Button, Group, Loader, Stack, Text, TextInput, Title } from "@mantine/core" import { useDebouncedValue } from "@mantine/hooks" import { IconCheck, IconLink, IconTrash, IconUsersGroup, IconX } from "@tabler/icons-react" diff --git a/apps/dashboard/src/app/(internal)/grupper/[id]/members-page.tsx b/apps/dashboard/src/app/(internal)/grupper/[id]/members-page.tsx index 9f95fc4650..c516da72d5 100644 --- a/apps/dashboard/src/app/(internal)/grupper/[id]/members-page.tsx +++ b/apps/dashboard/src/app/(internal)/grupper/[id]/members-page.tsx @@ -1,11 +1,6 @@ import { UserSearch } from "@/app/(internal)/brukere/components/user-search" -import { - type GroupId, - type GroupMember, - type WorkspaceMemberLink, - type WorkspaceMemberSyncState, - getActiveGroupMembership, -} from "@dotkomonline/types" +import { type GroupId, type GroupMember, getActiveGroupMembership } from "@dotkomonline/rpc/group" +import type { WorkspaceMemberLink, WorkspaceMemberSyncState } from "@dotkomonline/rpc/workspace" import { Box, Button, diff --git a/apps/dashboard/src/app/(internal)/grupper/[id]/provider.tsx b/apps/dashboard/src/app/(internal)/grupper/[id]/provider.tsx index c6408d4bc3..7c243f0101 100644 --- a/apps/dashboard/src/app/(internal)/grupper/[id]/provider.tsx +++ b/apps/dashboard/src/app/(internal)/grupper/[id]/provider.tsx @@ -1,6 +1,6 @@ "use client" -import type { Group } from "@dotkomonline/types" +import type { Group } from "@dotkomonline/rpc/group" import { createContext, useContext } from "react" export const GroupDetailsContext = createContext<{ diff --git a/apps/dashboard/src/app/(internal)/grupper/[id]/roles-page.tsx b/apps/dashboard/src/app/(internal)/grupper/[id]/roles-page.tsx index c323b0fd61..ba25713089 100644 --- a/apps/dashboard/src/app/(internal)/grupper/[id]/roles-page.tsx +++ b/apps/dashboard/src/app/(internal)/grupper/[id]/roles-page.tsx @@ -1,5 +1,5 @@ import { GenericTable } from "@/components/GenericTable" -import { type GroupRole, getGroupRoleTypeName } from "@dotkomonline/types" +import { type GroupRole, getGroupRoleTypeName } from "@dotkomonline/rpc/group" import { Box, Button, Stack, Title } from "@mantine/core" import { IconEdit } from "@tabler/icons-react" import { createColumnHelper, getCoreRowModel, useReactTable } from "@tanstack/react-table" diff --git a/apps/dashboard/src/app/(internal)/grupper/[id]/use-group-member-table.tsx b/apps/dashboard/src/app/(internal)/grupper/[id]/use-group-member-table.tsx index 1cbcca249a..c00e0cf3fa 100644 --- a/apps/dashboard/src/app/(internal)/grupper/[id]/use-group-member-table.tsx +++ b/apps/dashboard/src/app/(internal)/grupper/[id]/use-group-member-table.tsx @@ -2,13 +2,8 @@ import { DateTooltip } from "@/components/DateTooltip" import { useUser } from "@auth0/nextjs-auth0/client" -import { - type GroupId, - type GroupMembership, - type WorkspaceMemberLink, - type WorkspaceMemberSyncState, - getActiveGroupMembership, -} from "@dotkomonline/types" +import { type GroupId, type GroupMembership, getActiveGroupMembership } from "@dotkomonline/rpc/group" +import type { WorkspaceMemberLink, WorkspaceMemberSyncState } from "@dotkomonline/rpc/workspace" import { Anchor, Group, Stack, Text, Tooltip } from "@mantine/core" import { IconAlertTriangleFilled, IconSquareCheckFilled } from "@tabler/icons-react" import { createColumnHelper, getCoreRowModel, useReactTable } from "@tanstack/react-table" diff --git a/apps/dashboard/src/app/(internal)/grupper/all-groups-table.tsx b/apps/dashboard/src/app/(internal)/grupper/all-groups-table.tsx index 783eccd2bb..d18841b69a 100644 --- a/apps/dashboard/src/app/(internal)/grupper/all-groups-table.tsx +++ b/apps/dashboard/src/app/(internal)/grupper/all-groups-table.tsx @@ -1,7 +1,7 @@ "use client" import { FilterableTable } from "@/components/molecules/FilterableTable/FilterableTable" -import { type Group, GroupTypeSchema, getGroupTypeName } from "@dotkomonline/types" +import { type Group, GroupTypeSchema, getGroupTypeName } from "@dotkomonline/rpc/group" import { Anchor } from "@mantine/core" import { createColumnHelper, getCoreRowModel } from "@tanstack/react-table" import Link from "next/link" diff --git a/apps/dashboard/src/app/(internal)/grupper/group-member-form.tsx b/apps/dashboard/src/app/(internal)/grupper/group-member-form.tsx index 655d0d3761..0f31a42e12 100644 --- a/apps/dashboard/src/app/(internal)/grupper/group-member-form.tsx +++ b/apps/dashboard/src/app/(internal)/grupper/group-member-form.tsx @@ -1,6 +1,6 @@ import { useFormBuilder } from "@/components/forms/Form" import { createMultipleSelectInput } from "@/components/forms/MultiSelectInput" -import { type GroupId, GroupRoleSchema } from "@dotkomonline/types" +import { type GroupId, GroupRoleSchema } from "@dotkomonline/rpc/group" import z from "zod" import { useGroupGetQuery } from "./queries" diff --git a/apps/dashboard/src/app/(internal)/grupper/group-role-form.tsx b/apps/dashboard/src/app/(internal)/grupper/group-role-form.tsx index 9a23d7f022..b49b90f460 100644 --- a/apps/dashboard/src/app/(internal)/grupper/group-role-form.tsx +++ b/apps/dashboard/src/app/(internal)/grupper/group-role-form.tsx @@ -1,7 +1,7 @@ import { useFormBuilder } from "@/components/forms/Form" import { createSelectInput } from "@/components/forms/SelectInput" import { createTextInput } from "@/components/forms/TextInput" -import { GroupRoleWriteSchema, getGroupRoleTypeName, GroupRoleTypeEnum } from "@dotkomonline/types" +import { GroupRoleWriteSchema, getGroupRoleTypeName, GroupRoleTypeEnum } from "@dotkomonline/rpc/group" import type z from "zod" const FormSchema = GroupRoleWriteSchema.omit({ diff --git a/apps/dashboard/src/app/(internal)/grupper/modals/create-group-member-modal.tsx b/apps/dashboard/src/app/(internal)/grupper/modals/create-group-member-modal.tsx index 8b631520db..2bef8f9882 100644 --- a/apps/dashboard/src/app/(internal)/grupper/modals/create-group-member-modal.tsx +++ b/apps/dashboard/src/app/(internal)/grupper/modals/create-group-member-modal.tsx @@ -1,4 +1,5 @@ -import type { Group, UserId } from "@dotkomonline/types" +import type { Group } from "@dotkomonline/rpc/group" +import type { UserId } from "@dotkomonline/rpc/user" import { type ContextModalProps, modals } from "@mantine/modals" import type { FC } from "react" import { useGroupMemberForm } from "../group-member-form" diff --git a/apps/dashboard/src/app/(internal)/grupper/modals/create-group-role-modal.tsx b/apps/dashboard/src/app/(internal)/grupper/modals/create-group-role-modal.tsx index 0913461bbb..5681aea016 100644 --- a/apps/dashboard/src/app/(internal)/grupper/modals/create-group-role-modal.tsx +++ b/apps/dashboard/src/app/(internal)/grupper/modals/create-group-role-modal.tsx @@ -1,4 +1,4 @@ -import type { Group } from "@dotkomonline/types" +import type { Group } from "@dotkomonline/rpc/group" import { type ContextModalProps, modals } from "@mantine/modals" import type { FC } from "react" import { useGroupRoleForm } from "../group-role-form" diff --git a/apps/dashboard/src/app/(internal)/grupper/modals/edit-group-membership-modal.tsx b/apps/dashboard/src/app/(internal)/grupper/modals/edit-group-membership-modal.tsx index 091c610473..0873e4804c 100644 --- a/apps/dashboard/src/app/(internal)/grupper/modals/edit-group-membership-modal.tsx +++ b/apps/dashboard/src/app/(internal)/grupper/modals/edit-group-membership-modal.tsx @@ -1,4 +1,4 @@ -import type { GroupMembership } from "@dotkomonline/types" +import type { GroupMembership } from "@dotkomonline/rpc/group" import { Stack, Text } from "@mantine/core" import { type ContextModalProps, modals } from "@mantine/modals" import type { FC } from "react" diff --git a/apps/dashboard/src/app/(internal)/grupper/modals/edit-group-role-modal.tsx b/apps/dashboard/src/app/(internal)/grupper/modals/edit-group-role-modal.tsx index 7f6f97fffc..bf9bc08c19 100644 --- a/apps/dashboard/src/app/(internal)/grupper/modals/edit-group-role-modal.tsx +++ b/apps/dashboard/src/app/(internal)/grupper/modals/edit-group-role-modal.tsx @@ -1,4 +1,4 @@ -import type { GroupRole } from "@dotkomonline/types" +import type { GroupRole } from "@dotkomonline/rpc/group" import { type ContextModalProps, modals } from "@mantine/modals" import type { FC } from "react" import { useGroupRoleForm } from "../group-role-form" diff --git a/apps/dashboard/src/app/(internal)/grupper/queries.ts b/apps/dashboard/src/app/(internal)/grupper/queries.ts index 0bb572c1fa..ce177f4b0f 100644 --- a/apps/dashboard/src/app/(internal)/grupper/queries.ts +++ b/apps/dashboard/src/app/(internal)/grupper/queries.ts @@ -1,6 +1,6 @@ import { useTRPC } from "@/lib/trpc-client" -import type { GroupId, UserId } from "@dotkomonline/types" - +import type { GroupId } from "@dotkomonline/rpc/group" +import type { UserId } from "@dotkomonline/rpc/user" import { useQuery } from "@tanstack/react-query" import { useMemo } from "react" diff --git a/apps/dashboard/src/app/(internal)/grupper/write-form.tsx b/apps/dashboard/src/app/(internal)/grupper/write-form.tsx index 02acc8787b..f68c957da0 100644 --- a/apps/dashboard/src/app/(internal)/grupper/write-form.tsx +++ b/apps/dashboard/src/app/(internal)/grupper/write-form.tsx @@ -16,7 +16,7 @@ import { getGroupMemberVisibilityName, getGroupRecruitmentMethodName, getGroupTypeName, -} from "@dotkomonline/types" +} from "@dotkomonline/rpc/group" import { getCurrentUTC, slugify } from "@dotkomonline/utils" import { useMemo } from "react" import z from "zod" diff --git a/apps/dashboard/src/app/(internal)/karriere/[id]/provider.tsx b/apps/dashboard/src/app/(internal)/karriere/[id]/provider.tsx index cb390d953c..8ee38e751e 100644 --- a/apps/dashboard/src/app/(internal)/karriere/[id]/provider.tsx +++ b/apps/dashboard/src/app/(internal)/karriere/[id]/provider.tsx @@ -1,6 +1,6 @@ "use client" -import type { JobListing } from "@dotkomonline/types" +import type { JobListing } from "@dotkomonline/rpc/job-listing" import { createContext, useContext } from "react" /** Context consisting of everything required to use and render the form */ diff --git a/apps/dashboard/src/app/(internal)/karriere/components/job-listing-filter.tsx b/apps/dashboard/src/app/(internal)/karriere/components/job-listing-filter.tsx index ca9fab454f..1fa91affe4 100644 --- a/apps/dashboard/src/app/(internal)/karriere/components/job-listing-filter.tsx +++ b/apps/dashboard/src/app/(internal)/karriere/components/job-listing-filter.tsx @@ -1,4 +1,4 @@ -import type { JobListingFilterQuery } from "@dotkomonline/types" +import type { JobListingFilterQuery } from "@dotkomonline/rpc/job-listing" import { ActionIcon, Group, TextInput } from "@mantine/core" import { useDebouncedValue } from "@mantine/hooks" import { IconX } from "@tabler/icons-react" diff --git a/apps/dashboard/src/app/(internal)/karriere/page.tsx b/apps/dashboard/src/app/(internal)/karriere/page.tsx index 3ee1748684..6295547874 100644 --- a/apps/dashboard/src/app/(internal)/karriere/page.tsx +++ b/apps/dashboard/src/app/(internal)/karriere/page.tsx @@ -1,7 +1,7 @@ "use client" import { GenericTable } from "@/components/GenericTable" -import type { JobListingFilterQuery } from "@dotkomonline/types" +import type { JobListingFilterQuery } from "@dotkomonline/rpc/job-listing" import { Box, Button, Group, Skeleton, Stack } from "@mantine/core" import { useState } from "react" import { JobListingFilters } from "./components/job-listing-filter" diff --git a/apps/dashboard/src/app/(internal)/karriere/queries/use-job-listing-all-query.ts b/apps/dashboard/src/app/(internal)/karriere/queries/use-job-listing-all-query.ts index 00d670af77..0c4df9b8c6 100644 --- a/apps/dashboard/src/app/(internal)/karriere/queries/use-job-listing-all-query.ts +++ b/apps/dashboard/src/app/(internal)/karriere/queries/use-job-listing-all-query.ts @@ -1,5 +1,5 @@ import { useTRPC } from "@/lib/trpc-client" -import type { JobListingFilterQuery } from "@dotkomonline/types" +import type { JobListingFilterQuery } from "@dotkomonline/rpc/job-listing" import { useInfiniteQuery } from "@tanstack/react-query" import type { Pageable } from "@dotkomonline/utils" import { useMemo } from "react" diff --git a/apps/dashboard/src/app/(internal)/karriere/use-job-listing-table.tsx b/apps/dashboard/src/app/(internal)/karriere/use-job-listing-table.tsx index fc4324e163..97d5823a09 100644 --- a/apps/dashboard/src/app/(internal)/karriere/use-job-listing-table.tsx +++ b/apps/dashboard/src/app/(internal)/karriere/use-job-listing-table.tsx @@ -1,7 +1,7 @@ "use client" import { DateTooltip } from "@/components/DateTooltip" -import { type JobListing, getJobListingEmploymentName } from "@dotkomonline/types" +import { type JobListing, getJobListingEmploymentName } from "@dotkomonline/rpc/job-listing" import { Anchor } from "@mantine/core" import { createColumnHelper, getCoreRowModel, useReactTable } from "@tanstack/react-table" import Link from "next/link" diff --git a/apps/dashboard/src/app/(internal)/karriere/write-form.tsx b/apps/dashboard/src/app/(internal)/karriere/write-form.tsx index 7505ccab1c..0ccce7eecd 100644 --- a/apps/dashboard/src/app/(internal)/karriere/write-form.tsx +++ b/apps/dashboard/src/app/(internal)/karriere/write-form.tsx @@ -5,13 +5,13 @@ import { createRichTextInput } from "@/components/forms/RichTextInput/RichTextIn import { createSelectInput } from "@/components/forms/SelectInput" import { createTagInput } from "@/components/forms/TagInput" import { createTextInput } from "@/components/forms/TextInput" +import { CompanySchema } from "@dotkomonline/rpc/company" import { - CompanySchema, JobListingLocationSchema, JobListingSchema, JobListingWriteSchema, getJobListingEmploymentName, -} from "@dotkomonline/types" +} from "@dotkomonline/rpc/job-listing" import { getCurrentUTC } from "@dotkomonline/utils" import { addWeeks, roundToNearestHours } from "date-fns" import type { z } from "zod" diff --git a/apps/dashboard/src/app/(internal)/logg/[id]/provider.tsx b/apps/dashboard/src/app/(internal)/logg/[id]/provider.tsx index 41b6a24d91..98df7564ba 100644 --- a/apps/dashboard/src/app/(internal)/logg/[id]/provider.tsx +++ b/apps/dashboard/src/app/(internal)/logg/[id]/provider.tsx @@ -1,6 +1,6 @@ "use client" -import type { AuditLog } from "@dotkomonline/types" +import type { AuditLog } from "@dotkomonline/rpc/audit-log" import { createContext, useContext } from "react" /** Context consisting of everything required to use and render the form */ diff --git a/apps/dashboard/src/app/(internal)/logg/components/audit-log-filters.tsx b/apps/dashboard/src/app/(internal)/logg/components/audit-log-filters.tsx index ad03ff605b..3f70c11d66 100644 --- a/apps/dashboard/src/app/(internal)/logg/components/audit-log-filters.tsx +++ b/apps/dashboard/src/app/(internal)/logg/components/audit-log-filters.tsx @@ -1,4 +1,4 @@ -import { AuditLogTable, type AuditLogFilterQuery, AuditLogOperation } from "@dotkomonline/types" +import { AuditLogTable, type AuditLogFilterQuery, AuditLogOperation } from "@dotkomonline/rpc/audit-log" import { Group, MultiSelect, TextInput } from "@mantine/core" import { useDebouncedValue } from "@mantine/hooks" import { useEffect } from "react" diff --git a/apps/dashboard/src/app/(internal)/logg/page.tsx b/apps/dashboard/src/app/(internal)/logg/page.tsx index 61f9a355e1..f07ff6dfc4 100644 --- a/apps/dashboard/src/app/(internal)/logg/page.tsx +++ b/apps/dashboard/src/app/(internal)/logg/page.tsx @@ -1,6 +1,6 @@ "use client" -import type { AuditLogFilterQuery } from "@dotkomonline/types" +import type { AuditLogFilterQuery } from "@dotkomonline/rpc/audit-log" import { Card, Skeleton, Stack, Title } from "@mantine/core" import { useState } from "react" import { AuditLogFilters } from "./components/audit-log-filters" diff --git a/apps/dashboard/src/app/(internal)/logg/queries.ts b/apps/dashboard/src/app/(internal)/logg/queries.ts index 0f62c349fc..3e92b5ccc5 100644 --- a/apps/dashboard/src/app/(internal)/logg/queries.ts +++ b/apps/dashboard/src/app/(internal)/logg/queries.ts @@ -1,6 +1,6 @@ import { useTRPC } from "@/lib/trpc-client" import type { Pageable } from "@dotkomonline/utils" -import type { AuditLogFilterQuery } from "@dotkomonline/types" +import type { AuditLogFilterQuery } from "@dotkomonline/rpc/audit-log" import { useInfiniteQuery } from "@tanstack/react-query" import { useMemo } from "react" diff --git a/apps/dashboard/src/app/(internal)/logg/use-audit-log-table.tsx b/apps/dashboard/src/app/(internal)/logg/use-audit-log-table.tsx index c419503b88..ad4d899c99 100644 --- a/apps/dashboard/src/app/(internal)/logg/use-audit-log-table.tsx +++ b/apps/dashboard/src/app/(internal)/logg/use-audit-log-table.tsx @@ -1,5 +1,5 @@ import { GenericTable } from "@/components/GenericTable" -import type { AuditLog } from "@dotkomonline/types" +import type { AuditLog } from "@dotkomonline/rpc/audit-log" import { Anchor, Text } from "@mantine/core" import { createColumnHelper, getCoreRowModel, useReactTable } from "@tanstack/react-table" import { formatDate } from "date-fns" diff --git a/apps/dashboard/src/app/(internal)/offline/[id]/provider.tsx b/apps/dashboard/src/app/(internal)/offline/[id]/provider.tsx index 41b7bcc5b8..0df4f93505 100644 --- a/apps/dashboard/src/app/(internal)/offline/[id]/provider.tsx +++ b/apps/dashboard/src/app/(internal)/offline/[id]/provider.tsx @@ -1,6 +1,6 @@ "use client" -import type { Offline } from "@dotkomonline/types" +import type { Offline } from "@dotkomonline/rpc/offline" import { createContext, useContext } from "react" /** Context consisting of everything required to use and render the form */ diff --git a/apps/dashboard/src/app/(internal)/offline/modals/create-offline-modal.tsx b/apps/dashboard/src/app/(internal)/offline/modals/create-offline-modal.tsx index 7c847c6032..556bd899e4 100644 --- a/apps/dashboard/src/app/(internal)/offline/modals/create-offline-modal.tsx +++ b/apps/dashboard/src/app/(internal)/offline/modals/create-offline-modal.tsx @@ -1,4 +1,4 @@ -import type { OfflineWrite } from "@dotkomonline/types" +import type { OfflineWrite } from "@dotkomonline/rpc/offline" import { type ContextModalProps, modals } from "@mantine/modals" import type { FC } from "react" import { useCreateOfflineMutation } from "../mutations/use-create-offline-mutation" diff --git a/apps/dashboard/src/app/(internal)/offline/use-offline-table.tsx b/apps/dashboard/src/app/(internal)/offline/use-offline-table.tsx index dd3b4e1c5c..24394b6a74 100644 --- a/apps/dashboard/src/app/(internal)/offline/use-offline-table.tsx +++ b/apps/dashboard/src/app/(internal)/offline/use-offline-table.tsx @@ -1,7 +1,7 @@ "use client" import { DateTooltip } from "@/components/DateTooltip" -import type { Offline } from "@dotkomonline/types" +import type { Offline } from "@dotkomonline/rpc/offline" import { Anchor } from "@mantine/core" import { createColumnHelper, getCoreRowModel, useReactTable } from "@tanstack/react-table" import Link from "next/link" diff --git a/apps/dashboard/src/app/(internal)/offline/write-form.tsx b/apps/dashboard/src/app/(internal)/offline/write-form.tsx index cdc5b4e07a..8b149873ab 100644 --- a/apps/dashboard/src/app/(internal)/offline/write-form.tsx +++ b/apps/dashboard/src/app/(internal)/offline/write-form.tsx @@ -7,7 +7,7 @@ import { createFileInput } from "@/components/forms/FileInput" import { useFormBuilder } from "@/components/forms/Form" import { createImageInput } from "@/components/forms/ImageInput" import { createTextInput } from "@/components/forms/TextInput" -import { OFFLINE_FILE_MAX_SIZE_KIB, OFFLINE_IMAGE_MAX_SIZE_KIB, OfflineWriteSchema } from "@dotkomonline/types" +import { OFFLINE_FILE_MAX_SIZE_KIB, OFFLINE_IMAGE_MAX_SIZE_KIB, OfflineWriteSchema } from "@dotkomonline/rpc/offline" import type { z } from "zod" export const FormValidationSchema = OfflineWriteSchema diff --git a/apps/dashboard/src/app/(internal)/prikker/[id]/page.tsx b/apps/dashboard/src/app/(internal)/prikker/[id]/page.tsx index c7b86d3b16..a6b69342d2 100644 --- a/apps/dashboard/src/app/(internal)/prikker/[id]/page.tsx +++ b/apps/dashboard/src/app/(internal)/prikker/[id]/page.tsx @@ -2,7 +2,8 @@ import { UserSearch } from "@/app/(internal)/brukere/components/user-search" import { GenericTable } from "@/components/GenericTable" import { useTRPC } from "@/lib/trpc-client" -import type { PersonalMarkDetails, User } from "@dotkomonline/types" +import type { PersonalMarkDetails } from "@dotkomonline/rpc/mark" +import type { User } from "@dotkomonline/rpc/user" import { Box, Button, CloseButton, Group, Stack, Title } from "@mantine/core" import { useMutation, useQuery, useQueryClient } from "@tanstack/react-query" import { createColumnHelper, getCoreRowModel, useReactTable } from "@tanstack/react-table" diff --git a/apps/dashboard/src/app/(internal)/prikker/[id]/provider.tsx b/apps/dashboard/src/app/(internal)/prikker/[id]/provider.tsx index 862de3e738..f6a65ad058 100644 --- a/apps/dashboard/src/app/(internal)/prikker/[id]/provider.tsx +++ b/apps/dashboard/src/app/(internal)/prikker/[id]/provider.tsx @@ -1,6 +1,6 @@ "use client" -import type { Mark } from "@dotkomonline/types" +import type { Mark } from "@dotkomonline/rpc/mark" import { createContext, useContext } from "react" /** Context consisting of everything required to use and render the form */ diff --git a/apps/dashboard/src/app/(internal)/prikker/punishment-table.tsx b/apps/dashboard/src/app/(internal)/prikker/punishment-table.tsx index c2aa6f641a..54a03c6722 100644 --- a/apps/dashboard/src/app/(internal)/prikker/punishment-table.tsx +++ b/apps/dashboard/src/app/(internal)/prikker/punishment-table.tsx @@ -2,7 +2,7 @@ import { DateTooltip } from "@/components/DateTooltip" import { GenericTable } from "@/components/GenericTable" -import type { Mark } from "@dotkomonline/types" +import type { Mark } from "@dotkomonline/rpc/mark" import { Anchor } from "@mantine/core" import { createColumnHelper, getCoreRowModel, useReactTable } from "@tanstack/react-table" import Link from "next/link" diff --git a/apps/dashboard/src/app/(internal)/prikker/queries/use-count-users-with-mark-query.ts b/apps/dashboard/src/app/(internal)/prikker/queries/use-count-users-with-mark-query.ts index 6e00ba6583..7b45811995 100644 --- a/apps/dashboard/src/app/(internal)/prikker/queries/use-count-users-with-mark-query.ts +++ b/apps/dashboard/src/app/(internal)/prikker/queries/use-count-users-with-mark-query.ts @@ -1,6 +1,5 @@ import { useTRPC } from "@/lib/trpc-client" -import type { MarkId } from "@dotkomonline/types" - +import type { MarkId } from "@dotkomonline/rpc/mark" import { useQuery } from "@tanstack/react-query" export const useMarkCountUsersQuery = (markId: MarkId) => { diff --git a/apps/dashboard/src/app/(internal)/prikker/queries/use-mark-get-query.ts b/apps/dashboard/src/app/(internal)/prikker/queries/use-mark-get-query.ts index eff298c1f8..1375021e1d 100644 --- a/apps/dashboard/src/app/(internal)/prikker/queries/use-mark-get-query.ts +++ b/apps/dashboard/src/app/(internal)/prikker/queries/use-mark-get-query.ts @@ -1,6 +1,5 @@ import { useTRPC } from "@/lib/trpc-client" -import type { MarkId } from "@dotkomonline/types" - +import type { MarkId } from "@dotkomonline/rpc/mark" import { useQuery } from "@tanstack/react-query" export const useMarkGetQuery = (id: MarkId) => { diff --git a/apps/dashboard/src/app/(internal)/prikker/queries/use-personal-mark-get-by-mark-id.ts b/apps/dashboard/src/app/(internal)/prikker/queries/use-personal-mark-get-by-mark-id.ts index aef0a3297b..376a8f9099 100644 --- a/apps/dashboard/src/app/(internal)/prikker/queries/use-personal-mark-get-by-mark-id.ts +++ b/apps/dashboard/src/app/(internal)/prikker/queries/use-personal-mark-get-by-mark-id.ts @@ -1,5 +1,5 @@ import { useTRPC } from "@/lib/trpc-client" -import type { MarkId } from "@dotkomonline/types" +import type { MarkId } from "@dotkomonline/rpc/mark" import { useQuery } from "@tanstack/react-query" export const usePersonalMarkGetByMarkId = (markId: MarkId) => { diff --git a/apps/dashboard/src/app/(internal)/prikker/queries/use-punishment-all-query.ts b/apps/dashboard/src/app/(internal)/prikker/queries/use-punishment-all-query.ts index a2a8d1f847..4c0404e709 100644 --- a/apps/dashboard/src/app/(internal)/prikker/queries/use-punishment-all-query.ts +++ b/apps/dashboard/src/app/(internal)/prikker/queries/use-punishment-all-query.ts @@ -1,7 +1,6 @@ import { useTRPC } from "@/lib/trpc-client" import type { Pageable } from "@dotkomonline/utils" -import type { MarkFilterQuery } from "@dotkomonline/types" - +import type { MarkFilterQuery } from "@dotkomonline/rpc/mark" import { useInfiniteQuery } from "@tanstack/react-query" import { useMemo } from "react" diff --git a/apps/dashboard/src/app/(internal)/prikker/write-form.tsx b/apps/dashboard/src/app/(internal)/prikker/write-form.tsx index a044eab389..c7a22ddda7 100644 --- a/apps/dashboard/src/app/(internal)/prikker/write-form.tsx +++ b/apps/dashboard/src/app/(internal)/prikker/write-form.tsx @@ -4,7 +4,8 @@ import { createNumberInput } from "@/components/forms/NumberInput" import { createSelectInput } from "@/components/forms/SelectInput" import { createTextInput } from "@/components/forms/TextInput" import { useTRPC } from "@/lib/trpc-client" -import { DEFAULT_MARK_DURATION, GroupSchema } from "@dotkomonline/types" +import { DEFAULT_MARK_DURATION } from "@dotkomonline/rpc/mark" +import { GroupSchema } from "@dotkomonline/rpc/group" import { useQuery } from "@tanstack/react-query" import z from "zod" diff --git a/apps/dashboard/src/components/forms/EventSelectInput.tsx b/apps/dashboard/src/components/forms/EventSelectInput.tsx index 636e85e86d..bfdb0fe087 100644 --- a/apps/dashboard/src/components/forms/EventSelectInput.tsx +++ b/apps/dashboard/src/components/forms/EventSelectInput.tsx @@ -1,5 +1,5 @@ import { useEventAllQuery, useEventWithAttendancesGetQuery } from "@/app/(internal)/arrangementer/queries" -import type { EventId } from "@dotkomonline/types" +import type { EventId } from "@dotkomonline/rpc/event" import { Select, type SelectProps } from "@mantine/core" import { useDebouncedValue } from "@mantine/hooks" import { useState } from "react" diff --git a/apps/grades-backend/package.json b/apps/grades-backend/package.json index d17560745e..b38e1cc78f 100644 --- a/apps/grades-backend/package.json +++ b/apps/grades-backend/package.json @@ -29,7 +29,6 @@ "@dotkomonline/environment": "workspace:*", "@dotkomonline/grades-db": "workspace:*", "@dotkomonline/logger": "workspace:*", - "@dotkomonline/types": "workspace:*", "@dotkomonline/utils": "workspace:*", "@fastify/cors": "^11.0.0", "@opentelemetry/api": "^1.9.0", diff --git a/apps/grades-backend/src/modules/course/course-types.ts b/apps/grades-backend/src/modules/course/course-types.ts index 4aa67f05da..d2992b5889 100644 --- a/apps/grades-backend/src/modules/course/course-types.ts +++ b/apps/grades-backend/src/modules/course/course-types.ts @@ -1,8 +1,76 @@ -import { schemas } from "@dotkomonline/grades-db/schemas" -import { buildAnyOfFilter, buildSearchFilter, createSortOrder } from "@dotkomonline/types" +import { buildAnyOfFilter, buildSearchFilter, createSortOrder } from "@dotkomonline/utils" import z from "zod" -export const CourseSchema = schemas.CourseSchema.extend({}) +export const SemesterSchema = z.enum(["SPRING", "SUMMER", "AUTUMN"]) +export type Semester = z.infer + +export const StudyLevelSchema = z.enum([ + "FOUNDATION", + "INTERMEDIATE", + "BACHELOR_ADVANCED", + "MASTER", + "PHD", + "CONTINUING_EDUCATION", + "UNKNOWN", +]) +export type StudyLevel = z.infer + +export const GradeTypeSchema = z.enum(["PASS_FAIL", "LETTER"]) +export type GradeType = z.infer + +export const TeachingLanguageSchema = z.enum(["NORWEGIAN", "ENGLISH"]) +export type TeachingLanguage = z.infer + +export const CourseCampusSchema = z.enum(["TRONDHEIM", "GJOVIK", "ALESUND"]) +export type CourseCampus = z.infer + +export const FacultySchema = z.object({ + id: z.string(), + nameNo: z.string(), + nameEn: z.string(), + code: z.number().int(), +}) +export type Faculty = z.infer + +export const DepartmentSchema = z.object({ + id: z.string(), + nameNo: z.string(), + nameEn: z.string(), + code: z.number().int(), + facultyId: z.string(), +}) +export type Department = z.infer + +export const CourseSchema = z.object({ + id: z.string(), + code: z.string(), + nameNo: z.string(), + nameEn: z.string().nullable(), + credits: z.number().nullable(), + studyLevel: StudyLevelSchema, + gradeType: GradeTypeSchema, + firstYearTaught: z.number().int(), + lastYearTaught: z.number().int().nullable(), + contentNo: z.string().nullable(), + contentEn: z.string().nullable(), + teachingMethodsNo: z.string().nullable(), + teachingMethodsEn: z.string().nullable(), + learningOutcomesNo: z.string().nullable(), + learningOutcomesEn: z.string().nullable(), + examTypeNo: z.string().nullable(), + examTypeEn: z.string().nullable(), + candidateCount: z.number().int(), + averageGrade: z.number(), + passRate: z.number(), + createdAt: z.date(), + updatedAt: z.date(), + taughtSemesters: z.array(SemesterSchema), + teachingLanguages: z.array(TeachingLanguageSchema), + campuses: z.array(CourseCampusSchema), + facultyId: z.string().nullable(), + departmentId: z.string().nullable(), + latestYearCheckedForNtnuData: z.number().int().nullable(), +}) export type CourseId = Course["id"] export type CourseCode = Course["code"] @@ -35,8 +103,8 @@ export const CourseWriteSchema = CourseSchema.pick({ nameEn: true, latestYearCheckedForNtnuData: true, }).extend({ - facultyId: schemas.FacultySchema.shape.id.optional(), - departmentId: schemas.DepartmentSchema.shape.id.optional(), + facultyId: FacultySchema.shape.id.optional(), + departmentId: DepartmentSchema.shape.id.optional(), }) export type CourseWrite = z.infer @@ -52,34 +120,13 @@ export const CourseFilterQuerySchema = z bySearch: buildSearchFilter(), orderBy: createSortOrder(), sortBy: buildAnyOfFilter(CourseFilterSortSchema), - bySemester: buildAnyOfFilter(schemas.SemesterSchema), - byTeachingLanguage: buildAnyOfFilter(schemas.TeachingLanguageSchema), - byCampus: buildAnyOfFilter(schemas.CampusSchema), + bySemester: buildAnyOfFilter(SemesterSchema), + byTeachingLanguage: buildAnyOfFilter(TeachingLanguageSchema), + byCampus: buildAnyOfFilter(CourseCampusSchema), byMinGrade: MinLetterGradeFilterSchema.nullish(), }) .partial() -export const SemesterSchema = schemas.SemesterSchema -export type Semester = z.infer - -export const FacultySchema = schemas.FacultySchema.extend({}) -export type Faculty = z.infer - -export const DepartmentSchema = schemas.DepartmentSchema.extend({}) -export type Department = z.infer - -export const StudyLevelSchema = schemas.StudyLevelSchema -export type StudyLevel = z.infer - -export const GradeTypeSchema = schemas.GradeTypeSchema -export type GradeType = z.infer - -export const CourseCampusSchema = schemas.CampusSchema -export type CourseCampus = z.infer - -export const TeachingLanguageSchema = schemas.TeachingLanguageSchema -export type TeachingLanguage = z.infer - export const mapAverageGradeToLetterGrade = (averageGrade: Course["averageGrade"]) => { const roundedAverage = Math.round(averageGrade) diff --git a/apps/grades-backend/src/modules/grade/grade-types.ts b/apps/grades-backend/src/modules/grade/grade-types.ts index d06a21a3a8..ce256699f1 100644 --- a/apps/grades-backend/src/modules/grade/grade-types.ts +++ b/apps/grades-backend/src/modules/grade/grade-types.ts @@ -1,7 +1,22 @@ -import { schemas } from "@dotkomonline/grades-db/schemas" -import type z from "zod" +import z from "zod" +import { SemesterSchema } from "../course/course-types" -export const GradeSchema = schemas.GradeSchema.extend({}) +export const GradeSchema = z.object({ + id: z.string(), + gradeACount: z.number().int(), + gradeBCount: z.number().int(), + gradeCCount: z.number().int(), + gradeDCount: z.number().int(), + gradeECount: z.number().int(), + gradeFCount: z.number().int(), + passedCount: z.number().int(), + failedCount: z.number().int(), + courseId: z.string(), + semester: SemesterSchema, + year: z.number().int(), + createdAt: z.date(), + updatedAt: z.date(), +}) export type GradeId = Grade["id"] export type Grade = z.infer diff --git a/apps/grades-frontend/package.json b/apps/grades-frontend/package.json index 3d7b56808e..213ae2f934 100644 --- a/apps/grades-frontend/package.json +++ b/apps/grades-frontend/package.json @@ -16,7 +16,6 @@ "@date-fns/tz": "^1.2.0", "@dotkomonline/environment": "workspace:*", "@dotkomonline/logger": "workspace:*", - "@dotkomonline/types": "workspace:*", "@dotkomonline/ui": "workspace:*", "@dotkomonline/utils": "workspace:*", "@next/env": "^15.3.5", diff --git a/apps/rpc/package.json b/apps/rpc/package.json index 92e5ae73c9..672544b3d8 100644 --- a/apps/rpc/package.json +++ b/apps/rpc/package.json @@ -15,6 +15,58 @@ "./fadderuke": { "import": "./src/modules/fadderuke/fadderuke.ts", "types": "./src/modules/fadderuke/fadderuke.ts" + }, + "./user": { + "import": "./src/modules/user/user.ts", + "types": "./src/modules/user/user.ts" + }, + "./company": { + "import": "./src/modules/company/company.ts", + "types": "./src/modules/company/company.ts" + }, + "./offline": { + "import": "./src/modules/offline/offline.ts", + "types": "./src/modules/offline/offline.ts" + }, + "./article": { + "import": "./src/modules/article/article.ts", + "types": "./src/modules/article/article.ts" + }, + "./task": { + "import": "./src/modules/task/task.ts", + "types": "./src/modules/task/task.ts" + }, + "./job-listing": { + "import": "./src/modules/job-listing/job-listing.ts", + "types": "./src/modules/job-listing/job-listing.ts" + }, + "./group": { + "import": "./src/modules/group/group.ts", + "types": "./src/modules/group/group.ts" + }, + "./mark": { + "import": "./src/modules/mark/mark.ts", + "types": "./src/modules/mark/mark.ts" + }, + "./workspace": { + "import": "./src/modules/workspace-sync/workspace.ts", + "types": "./src/modules/workspace-sync/workspace.ts" + }, + "./event": { + "import": "./src/modules/event/event.ts", + "types": "./src/modules/event/event.ts" + }, + "./attendance": { + "import": "./src/modules/event/attendance.ts", + "types": "./src/modules/event/attendance.ts" + }, + "./feedback-form": { + "import": "./src/modules/feedback-form/feedback-form.ts", + "types": "./src/modules/feedback-form/feedback-form.ts" + }, + "./audit-log": { + "import": "./src/modules/audit-log/audit-log.ts", + "types": "./src/modules/audit-log/audit-log.ts" } }, "scripts": { @@ -42,7 +94,6 @@ "@dotkomonline/db": "workspace:*", "@dotkomonline/environment": "workspace:*", "@dotkomonline/logger": "workspace:*", - "@dotkomonline/types": "workspace:*", "@dotkomonline/utils": "workspace:*", "@fastify/cors": "^11.0.0", "@googleapis/admin": "^30.3.0", diff --git a/apps/rpc/src/authorization.ts b/apps/rpc/src/authorization.ts index f5e2f1ddf4..3c60e15b11 100644 --- a/apps/rpc/src/authorization.ts +++ b/apps/rpc/src/authorization.ts @@ -33,7 +33,8 @@ * @packageDocumentation */ -import type { GroupId, GroupRoleType, UserId } from "@dotkomonline/types" +import type { GroupId, GroupRoleType } from "./modules/group/group" +import type { UserId } from "./modules/user/user" import { ADMIN_AFFILIATIONS, COMMITTEE_AFFILIATIONS } from "./modules/authorization-service" import type { Principal, TRPCContext } from "./trpc" diff --git a/apps/rpc/src/bin/server.ts b/apps/rpc/src/bin/server.ts index 2d9bbc0c03..20850ee7f6 100644 --- a/apps/rpc/src/bin/server.ts +++ b/apps/rpc/src/bin/server.ts @@ -14,7 +14,7 @@ import { registerStripeWebhookRoutes } from "../http-routes/stripe" import { createServiceLayer, createThirdPartyClients } from "../modules/core" import { createTrpcContext } from "../trpc" import { ADMIN_AFFILIATIONS } from "../modules/authorization-service" -import { GroupRoleTypeEnum } from "@dotkomonline/types" +import { GroupRoleTypeEnum } from "../modules/group/group" const ADMIN_AFFILIATIONS_MAP = new Map( ADMIN_AFFILIATIONS.map((groupId) => [groupId, new Set([GroupRoleTypeEnum.LEADER])]) diff --git a/apps/rpc/src/mock.ts b/apps/rpc/src/mock.ts index 21c82e7d87..94b8639a81 100644 --- a/apps/rpc/src/mock.ts +++ b/apps/rpc/src/mock.ts @@ -1,4 +1,6 @@ -import { GenderSchema, type CompanyWrite, type JobListingWrite, type UserWrite } from "@dotkomonline/types" +import { GenderSchema, type UserWrite } from "./modules/user/user" +import type { CompanyWrite } from "./modules/company/company" +import type { JobListingWrite } from "./modules/job-listing/job-listing" import { addWeeks, addYears } from "date-fns" export const getUserMock = (defaults?: Partial): UserWrite => ({ diff --git a/apps/rpc/src/modules/article/article-repository.ts b/apps/rpc/src/modules/article/article-repository.ts index 3df2d66e2d..84d2212613 100644 --- a/apps/rpc/src/modules/article/article-repository.ts +++ b/apps/rpc/src/modules/article/article-repository.ts @@ -9,7 +9,7 @@ import { type ArticleTagName, ArticleTagSchema, type ArticleWrite, -} from "@dotkomonline/types" +} from "./article" import { parseOrReport } from "../../invariant" import { type Pageable, pageQuery } from "@dotkomonline/utils" diff --git a/apps/rpc/src/modules/article/article-router.ts b/apps/rpc/src/modules/article/article-router.ts index 429369bf16..1927a2804b 100644 --- a/apps/rpc/src/modules/article/article-router.ts +++ b/apps/rpc/src/modules/article/article-router.ts @@ -1,5 +1,5 @@ import type { PresignedPost } from "@aws-sdk/s3-presigned-post" -import { ArticleFilterQuerySchema, ArticleSchema, ArticleTagSchema, ArticleWriteSchema } from "@dotkomonline/types" +import { ArticleFilterQuerySchema, ArticleSchema, ArticleTagSchema, ArticleWriteSchema } from "./article" import type { inferProcedureInput, inferProcedureOutput } from "@trpc/server" import { z } from "zod" import { isCommitteeMember } from "../../authorization" diff --git a/apps/rpc/src/modules/article/article-service.ts b/apps/rpc/src/modules/article/article-service.ts index fb9a3ab452..26c1e488e5 100644 --- a/apps/rpc/src/modules/article/article-service.ts +++ b/apps/rpc/src/modules/article/article-service.ts @@ -9,9 +9,9 @@ import { type ArticleTag, type ArticleTagName, type ArticleWrite, - type UserId, ARTICLE_IMAGE_MAX_SIZE_KIB, -} from "@dotkomonline/types" +} from "./article" +import type { UserId } from "../user/user" import { createS3PresignedPost, slugify } from "@dotkomonline/utils" import { compareAsc, compareDesc } from "date-fns" import { AlreadyExistsError, NotFoundError } from "../../error" diff --git a/apps/rpc/src/modules/article/article-tag-link-repository.ts b/apps/rpc/src/modules/article/article-tag-link-repository.ts index 0c66f8a171..3f51db162f 100644 --- a/apps/rpc/src/modules/article/article-tag-link-repository.ts +++ b/apps/rpc/src/modules/article/article-tag-link-repository.ts @@ -1,5 +1,5 @@ import type { DBHandle } from "@dotkomonline/db" -import type { ArticleId, ArticleTagName } from "@dotkomonline/types" +import type { ArticleId, ArticleTagName } from "./article" export interface ArticleTagLinkRepository { add(handle: DBHandle, articleId: ArticleId, articleTagName: ArticleTagName): Promise diff --git a/apps/rpc/src/modules/article/article-tag-repository.ts b/apps/rpc/src/modules/article/article-tag-repository.ts index 582542e465..025744438d 100644 --- a/apps/rpc/src/modules/article/article-tag-repository.ts +++ b/apps/rpc/src/modules/article/article-tag-repository.ts @@ -1,5 +1,5 @@ import type { DBHandle } from "@dotkomonline/db" -import { type ArticleId, type ArticleTag, type ArticleTagName, ArticleTagSchema } from "@dotkomonline/types" +import { type ArticleId, type ArticleTag, type ArticleTagName, ArticleTagSchema } from "./article" import { parseOrReport } from "../../invariant" export interface ArticleTagRepository { diff --git a/apps/rpc/src/modules/article/article.e2e-spec.ts b/apps/rpc/src/modules/article/article.e2e-spec.ts index 6332719b8b..86a0c5c089 100644 --- a/apps/rpc/src/modules/article/article.e2e-spec.ts +++ b/apps/rpc/src/modules/article/article.e2e-spec.ts @@ -1,6 +1,6 @@ import * as crypto from "node:crypto" import type { S3Client } from "@aws-sdk/client-s3" -import type { ArticleWrite } from "@dotkomonline/types" +import type { ArticleWrite } from "./article" import { faker } from "@faker-js/faker" import { describe, expect, it } from "vitest" import { mockDeep } from "vitest-mock-extended" diff --git a/packages/types/src/article.ts b/apps/rpc/src/modules/article/article.ts similarity index 65% rename from packages/types/src/article.ts rename to apps/rpc/src/modules/article/article.ts index b88ce5254b..64770f609c 100644 --- a/packages/types/src/article.ts +++ b/apps/rpc/src/modules/article/article.ts @@ -1,8 +1,9 @@ -import { schemas } from "@dotkomonline/db/schemas" +import { buildAnyOfFilter, buildSearchFilter } from "@dotkomonline/utils" import { z } from "zod" -import { buildAnyOfFilter, buildSearchFilter } from "./filters" -export const ArticleTagSchema = schemas.ArticleTagSchema.extend({}) +export const ArticleTagSchema = z.object({ + name: z.string(), +}) export type ArticleTagName = ArticleTag["name"] export type ArticleTag = z.infer @@ -10,7 +11,19 @@ export type ArticleTag = z.infer export const ArticleTagWrite = ArticleTagSchema export type ArticleTagWrite = z.infer -export const ArticleSchema = schemas.ArticleSchema.extend({ +export const ArticleSchema = z.object({ + id: z.string(), + slug: z.string(), + title: z.string(), + author: z.string(), + photographer: z.string(), + imageUrl: z.string(), + excerpt: z.string(), + content: z.string(), + isFeatured: z.boolean(), + vimeoId: z.string().nullable(), + createdAt: z.date(), + updatedAt: z.date(), tags: z.array(ArticleTagSchema), }) diff --git a/apps/rpc/src/modules/audit-log/audit-log-repository.ts b/apps/rpc/src/modules/audit-log/audit-log-repository.ts index 971da20d74..3bbb373033 100644 --- a/apps/rpc/src/modules/audit-log/audit-log-repository.ts +++ b/apps/rpc/src/modules/audit-log/audit-log-repository.ts @@ -1,5 +1,6 @@ import type { DBHandle } from "@dotkomonline/db" -import type { AuditLog, AuditLogFilterQuery, AuditLogId, UserId } from "@dotkomonline/types" +import type { AuditLog, AuditLogFilterQuery, AuditLogId } from "./audit-log" +import type { UserId } from "../user/user" import { type Pageable, pageQuery } from "@dotkomonline/utils" export interface AuditLogRepository { diff --git a/apps/rpc/src/modules/audit-log/audit-log-router.ts b/apps/rpc/src/modules/audit-log/audit-log-router.ts index 5001e40b41..7535f03e02 100644 --- a/apps/rpc/src/modules/audit-log/audit-log-router.ts +++ b/apps/rpc/src/modules/audit-log/audit-log-router.ts @@ -1,4 +1,4 @@ -import { AuditLogFilterQuerySchema, AuditLogSchema } from "@dotkomonline/types" +import { AuditLogFilterQuerySchema, AuditLogSchema } from "./audit-log" import type { inferProcedureInput, inferProcedureOutput } from "@trpc/server" import z from "zod" import { isAdministrator } from "../../authorization" diff --git a/apps/rpc/src/modules/audit-log/audit-log-service.ts b/apps/rpc/src/modules/audit-log/audit-log-service.ts index 665e9a964e..5ee8e1fcf4 100644 --- a/apps/rpc/src/modules/audit-log/audit-log-service.ts +++ b/apps/rpc/src/modules/audit-log/audit-log-service.ts @@ -1,5 +1,6 @@ import type { DBHandle } from "@dotkomonline/db" -import type { AuditLog, AuditLogFilterQuery, AuditLogId, UserId } from "@dotkomonline/types" +import type { AuditLog, AuditLogFilterQuery, AuditLogId } from "./audit-log" +import type { UserId } from "../user/user" import { NotFoundError } from "../../error" import type { Pageable } from "@dotkomonline/utils" import type { AuditLogRepository } from "./audit-log-repository" diff --git a/packages/types/src/audit-log.ts b/apps/rpc/src/modules/audit-log/audit-log.ts similarity index 72% rename from packages/types/src/audit-log.ts rename to apps/rpc/src/modules/audit-log/audit-log.ts index a17f2158ac..398c9c771e 100644 --- a/packages/types/src/audit-log.ts +++ b/apps/rpc/src/modules/audit-log/audit-log.ts @@ -1,7 +1,6 @@ -import { schemas } from "@dotkomonline/db/schemas" -import z from "zod" -import { buildSearchFilter } from "./filters" -import { UserSchema } from "./user" +import { buildLimitedDepthJsonSchema, buildSearchFilter } from "@dotkomonline/utils" +import { z } from "zod" +import { UserSchema } from "../user/user" export const AuditLogTable = z.enum([ "article", @@ -39,8 +38,16 @@ export const AuditLogTable = z.enum([ export const AuditLogOperation = z.enum(["INSERT", "UPDATE", "DELETE"]) -export const AuditLogSchema = schemas.AuditLogSchema.extend({ - user: schemas.UserSchema.nullable(), +export const AuditLogSchema = z.object({ + id: z.string(), + tableName: z.string(), + rowId: z.string().nullable(), + createdAt: z.date(), + operation: z.string(), + rowData: buildLimitedDepthJsonSchema(), + transactionId: z.bigint(), + userId: z.string().nullable(), + user: UserSchema.omit({ memberships: true }).nullable(), }) export type AuditLog = z.infer diff --git a/apps/rpc/src/modules/authorization-service.ts b/apps/rpc/src/modules/authorization-service.ts index 4cfe253177..e33a576f30 100644 --- a/apps/rpc/src/modules/authorization-service.ts +++ b/apps/rpc/src/modules/authorization-service.ts @@ -1,5 +1,6 @@ import type { DBHandle } from "@dotkomonline/db" -import type { GroupId, GroupRoleType, UserId } from "@dotkomonline/types" +import type { GroupId, GroupRoleType } from "./group/group" +import type { UserId } from "./user/user" import { minutesToMilliseconds } from "date-fns" import { LRUCache } from "lru-cache" diff --git a/apps/rpc/src/modules/company/company-repository.ts b/apps/rpc/src/modules/company/company-repository.ts index 9fe33d1bf7..4369ffb3d6 100644 --- a/apps/rpc/src/modules/company/company-repository.ts +++ b/apps/rpc/src/modules/company/company-repository.ts @@ -1,5 +1,5 @@ import type { DBHandle } from "@dotkomonline/db" -import { type Company, type CompanyId, CompanySchema, type CompanySlug, type CompanyWrite } from "@dotkomonline/types" +import { type Company, type CompanyId, CompanySchema, type CompanySlug, type CompanyWrite } from "./company" import { parseOrReport } from "../../invariant" import { type Pageable, pageQuery } from "@dotkomonline/utils" diff --git a/apps/rpc/src/modules/company/company-router.ts b/apps/rpc/src/modules/company/company-router.ts index 11504c0faa..ae46a45a6f 100644 --- a/apps/rpc/src/modules/company/company-router.ts +++ b/apps/rpc/src/modules/company/company-router.ts @@ -1,5 +1,5 @@ import type { PresignedPost } from "@aws-sdk/s3-presigned-post" -import { CompanySchema, CompanyWriteSchema } from "@dotkomonline/types" +import { CompanySchema, CompanyWriteSchema } from "./company" import type { inferProcedureInput, inferProcedureOutput } from "@trpc/server" import { z } from "zod" import { isCommitteeMember } from "../../authorization" diff --git a/apps/rpc/src/modules/company/company-service.ts b/apps/rpc/src/modules/company/company-service.ts index 9e5a76a113..6fcd015867 100644 --- a/apps/rpc/src/modules/company/company-service.ts +++ b/apps/rpc/src/modules/company/company-service.ts @@ -6,9 +6,9 @@ import { type CompanyId, type CompanySlug, type CompanyWrite, - type UserId, COMPANY_IMAGE_MAX_SIZE_KIB, -} from "@dotkomonline/types" +} from "./company" +import type { UserId } from "../user/user" import { createS3PresignedPost, slugify } from "@dotkomonline/utils" import { NotFoundError } from "../../error" import type { Pageable } from "@dotkomonline/utils" diff --git a/packages/types/src/company.ts b/apps/rpc/src/modules/company/company.ts similarity index 54% rename from packages/types/src/company.ts rename to apps/rpc/src/modules/company/company.ts index 325d5c8332..7bdcda3d6d 100644 --- a/packages/types/src/company.ts +++ b/apps/rpc/src/modules/company/company.ts @@ -1,7 +1,18 @@ -import { schemas } from "@dotkomonline/db/schemas" -import type { z } from "zod" +import { z } from "zod" -export const CompanySchema = schemas.CompanySchema.extend({}) +export const CompanySchema = z.object({ + id: z.string(), + name: z.string(), + slug: z.string(), + description: z.string().nullable(), + phone: z.string().nullable(), + email: z.string().nullable(), + website: z.string(), + location: z.string().nullable(), + imageUrl: z.string().nullable(), + createdAt: z.date(), + updatedAt: z.date(), +}) export type CompanyId = Company["id"] export type CompanySlug = Company["slug"] diff --git a/apps/rpc/src/modules/contest/contest.ts b/apps/rpc/src/modules/contest/contest.ts index 5afded87f5..48859471e9 100644 --- a/apps/rpc/src/modules/contest/contest.ts +++ b/apps/rpc/src/modules/contest/contest.ts @@ -1,14 +1,20 @@ -import { schemas } from "@dotkomonline/db/schemas" -import { GroupSchema } from "@dotkomonline/types" import { z } from "zod" +import { GroupSchema } from "../group/group" -export const ContestResultTypeSchema = schemas.ContestResultTypeSchema +export const ContestResultTypeSchema = z.enum(["SCORE", "DURATION", "WINNER"]) export type ContestResultType = z.infer -export const ContestResultOrderSchema = schemas.ContestResultOrderSchema +export const ContestResultOrderSchema = z.enum(["ASC", "DESC"]) export type ContestResultOrder = z.infer -export const ContestSchema = schemas.ContestSchema.extend({ +export const ContestSchema = z.object({ + id: z.string(), + name: z.string(), + description: z.string().nullable(), + startDate: z.date().nullable(), + resultType: ContestResultTypeSchema, + resultOrder: ContestResultOrderSchema, + winnerContestantId: z.string().nullable(), groups: GroupSchema.shape.slug.array().min(1), }) export type Contest = z.infer @@ -27,7 +33,12 @@ export type ContestWrite = z.infer export const ContestUpdateSchema = ContestWriteSchema.partial() export type ContestUpdate = z.infer -export const ContestantSchema = schemas.ContestantSchema.extend({}) +export const ContestantSchema = z.object({ + id: z.string(), + resultValue: z.number().int().nullable(), + contestId: z.string(), + userId: z.string().nullable(), +}) export type Contestant = z.infer export type ContestantId = Contestant["id"] @@ -46,7 +57,11 @@ export const ContestUserSummarySchema = z.object({ }) export type ContestUserSummary = z.infer -export const ContestTeamSchema = schemas.ContestTeamSchema.extend({}) +export const ContestTeamSchema = z.object({ + id: z.string(), + name: z.string(), + contestantId: z.string(), +}) export type ContestTeam = z.infer export const ContestTeamDetailDbSchema = ContestTeamSchema.extend({ diff --git a/apps/rpc/src/modules/event/attendance-availability-view.spec.ts b/apps/rpc/src/modules/event/attendance-availability-view.spec.ts index 80a256e615..1d1a832557 100644 --- a/apps/rpc/src/modules/event/attendance-availability-view.spec.ts +++ b/apps/rpc/src/modules/event/attendance-availability-view.spec.ts @@ -1,6 +1,6 @@ import { TZDate } from "@date-fns/tz" -import type { Attendance, Attendee, Punishment } from "@dotkomonline/types" -import { buildPoolOccupancies } from "@dotkomonline/types" +import { type Attendance, type Attendee, buildPoolOccupancies } from "./attendance" +import type { Punishment } from "../mark/mark" import { getCurrentUTC } from "@dotkomonline/utils" import { addDays, addHours, subHours } from "date-fns" import { describe, expect, it } from "vitest" diff --git a/apps/rpc/src/modules/event/attendance-repository.ts b/apps/rpc/src/modules/event/attendance-repository.ts index 293a30c5a1..73ecd225d4 100644 --- a/apps/rpc/src/modules/event/attendance-repository.ts +++ b/apps/rpc/src/modules/event/attendance-repository.ts @@ -15,10 +15,10 @@ import { type AttendeePaymentWrite, AttendeeSchema, type AttendeeWrite, - type EventId, - type TaskId, - type UserId, -} from "@dotkomonline/types" +} from "./attendance" +import type { EventId } from "./event" +import type { TaskId } from "../task/task" +import type { UserId } from "../user/user" import invariant from "tiny-invariant" import { parseOrReport } from "../../invariant" diff --git a/apps/rpc/src/modules/event/attendance-router.ts b/apps/rpc/src/modules/event/attendance-router.ts index 108ac64e01..24ebbfe608 100644 --- a/apps/rpc/src/modules/event/attendance-router.ts +++ b/apps/rpc/src/modules/event/attendance-router.ts @@ -7,14 +7,13 @@ import { AttendanceWriteSchema, AttendeeSchema, AttendeeSelectionResponseSchema, - DeregisterReasonTypeSchema, DEREGISTER_GRACE_PERIOD_MS, - EventSchema, - type GroupId, RegistrationAvailabilityViewSchema, RegisterChangeEventSchema, - UserSchema, -} from "@dotkomonline/types" +} from "./attendance" +import { DeregisterReasonTypeSchema, EventSchema } from "./event" +import type { GroupId } from "../group/group" +import { UserSchema } from "../user/user" import { getCurrentUTC } from "@dotkomonline/utils" import type { inferProcedureInput, inferProcedureOutput } from "@trpc/server" import { TRPCError } from "@trpc/server" diff --git a/apps/rpc/src/modules/event/attendance-service.ts b/apps/rpc/src/modules/event/attendance-service.ts index d5d047b275..6161c1dda9 100644 --- a/apps/rpc/src/modules/event/attendance-service.ts +++ b/apps/rpc/src/modules/event/attendance-service.ts @@ -16,25 +16,20 @@ import { type AttendeePaymentWrite, type AttendeeWrite, AttendeeWriteSchema, - DEFAULT_MARK_DURATION, DEREGISTER_GRACE_PERIOD_CLOCK_SKEW_MS, DEREGISTER_GRACE_PERIOD_MS, - type Event, - type Membership, - type Punishment, type RegistrationAvailabilityView, type RegistrationRejectionCause, type RegisterChangeEvent, - type TaskId, - type User, - type UserId, - findActiveMembership, buildPoolOccupancies, getReservedAttendeeCount, isAttendable, isAttendeeChargedAndUnrefunded, - findFirstHostingGroupEmail, -} from "@dotkomonline/types" +} from "./attendance" +import { type Event, findFirstHostingGroupEmail } from "./event" +import { DEFAULT_MARK_DURATION, type Punishment } from "../mark/mark" +import { type Membership, type User, type UserId, findActiveMembership } from "../user/user" +import type { TaskId } from "../task/task" import { createAbsoluteEventPageUrl, createPoolName, @@ -120,7 +115,7 @@ type EventDeregistrationOptions = { ignoreDeregistrationWindow: boolean } -export type { RegistrationRejectionCause } from "@dotkomonline/types" +export type { RegistrationRejectionCause } from "./attendance" export type RegistrationBypassCause = keyof typeof RegistrationBypassCause export const RegistrationBypassCause = { diff --git a/apps/rpc/src/modules/event/attendance.e2e-spec.ts b/apps/rpc/src/modules/event/attendance.e2e-spec.ts index 4df845efef..ca969b7441 100644 --- a/apps/rpc/src/modules/event/attendance.e2e-spec.ts +++ b/apps/rpc/src/modules/event/attendance.e2e-spec.ts @@ -1,10 +1,6 @@ import { randomUUID } from "node:crypto" -import { - type AttendancePoolWrite, - type AttendanceWrite, - type MembershipWrite, - findActiveMembership, -} from "@dotkomonline/types" +import type { AttendancePoolWrite, AttendanceWrite } from "./attendance" +import { type MembershipWrite, findActiveMembership } from "../user/user" import { getCurrentUTC, getCurrentSemesterStart, getNextSemesterStart, isSpringSemester } from "@dotkomonline/utils" import { faker } from "@faker-js/faker" import type { ApiResponse, GetUsers200ResponseOneOfInner } from "auth0" diff --git a/packages/types/src/attendance.ts b/apps/rpc/src/modules/event/attendance.ts similarity index 86% rename from packages/types/src/attendance.ts rename to apps/rpc/src/modules/event/attendance.ts index 5418a6e3e5..b5ddef59e9 100644 --- a/packages/types/src/attendance.ts +++ b/apps/rpc/src/modules/event/attendance.ts @@ -1,9 +1,8 @@ -import { schemas } from "@dotkomonline/db/schemas" +import { buildLimitedDepthJsonSchema, getStudyGrade } from "@dotkomonline/utils" import { compareAsc, hoursToMilliseconds, secondsToMilliseconds } from "date-fns" import { z } from "zod" -import { PunishmentSchema } from "./mark" -import { type User, type UserId, UserSchema, findActiveMembership } from "./user" -import { getStudyGrade } from "@dotkomonline/utils" +import { PunishmentSchema } from "../mark/mark" +import { type User, type UserId, UserSchema, findActiveMembership } from "../user/user" /** * Grace period after registration during which deregistration requires no reason. @@ -43,6 +42,29 @@ export const AttendanceSelectionResponseSchema = z.object({ export type AttendeeSelectionResponse = z.infer export const AttendeeSelectionResponseSchema = AttendanceSelectionResponseSchema +const AttendeeBaseSchema = z.object({ + id: z.string(), + userGrade: z.number().int().nullable(), + selections: buildLimitedDepthJsonSchema().default("[]"), + reserved: z.boolean(), + earliestReservationAt: z.date(), + attendedAt: z.date().nullable(), + createdAt: z.date(), + updatedAt: z.date(), + paymentDeadline: z.date().nullable(), + paymentLink: z.string().nullable(), + paymentId: z.string().nullable(), + paymentReservedAt: z.date().nullable(), + paymentChargeDeadline: z.date().nullable(), + paymentChargedAt: z.date().nullable(), + paymentRefundedAt: z.date().nullable(), + paymentCheckoutUrl: z.string().nullable(), + attendanceId: z.string(), + userId: z.string(), + attendancePoolId: z.string(), + paymentRefundedById: z.string().nullable(), +}) + export type AttendeeId = Attendee["id"] export type Attendee = z.infer /** @@ -50,7 +72,7 @@ export type Attendee = z.infer * * The attendee's User object is included, but without memberships. */ -export const AttendeeSchema = schemas.AttendeeSchema.extend({ +export const AttendeeSchema = AttendeeBaseSchema.extend({ user: UserSchema, selections: z.array(AttendanceSelectionResponseSchema), }) @@ -78,9 +100,21 @@ export const AttendeePaymentWriteSchema = AttendeeSchema.pick({ paymentCheckoutUrl: true, }) +const AttendancePoolBaseSchema = z.object({ + id: z.string(), + title: z.string(), + mergeDelayHours: z.number().int().nullable(), + yearCriteria: buildLimitedDepthJsonSchema(), + capacity: z.number().int(), + createdAt: z.date(), + updatedAt: z.date(), + attendanceId: z.string(), + taskId: z.string().nullable(), +}) + export type AttendancePoolId = AttendancePool["id"] export type AttendancePool = z.infer -export const AttendancePoolSchema = schemas.AttendancePoolSchema.extend({ +export const AttendancePoolSchema = AttendancePoolBaseSchema.extend({ yearCriteria: z.array(z.number()), }) @@ -98,9 +132,20 @@ export const AttendancePoolWriteSchema = AttendancePoolSchema.pick({ * The attendance type itself, with both pool and selection joins ALWAYS present. */ +const AttendanceBaseSchema = z.object({ + id: z.string(), + registerStart: z.date(), + registerEnd: z.date(), + deregisterDeadline: z.date(), + selections: buildLimitedDepthJsonSchema().default("[]"), + createdAt: z.date(), + updatedAt: z.date(), + attendancePrice: z.number().int().nullable(), +}) + export type Attendance = z.infer export type AttendanceId = Attendance["id"] -export const AttendanceSchema = schemas.AttendanceSchema.extend({ +export const AttendanceSchema = AttendanceBaseSchema.extend({ pools: z.array(AttendancePoolSchema), attendees: z.array(AttendeeSchema), selections: z.array(AttendanceSelectionSchema), @@ -114,7 +159,7 @@ export const AttendanceWriteSchema = AttendanceSchema.pick({ selections: true, }) -export const AttendanceSummarySchema = schemas.AttendanceSchema.extend({ +export const AttendanceSummarySchema = AttendanceBaseSchema.extend({ currentUserAttendee: AttendeeSchema.nullable(), pools: z.array(AttendancePoolSchema), reservedAttendeeCount: z.number(), diff --git a/apps/rpc/src/modules/event/event-repository.ts b/apps/rpc/src/modules/event/event-repository.ts index a792078226..0dc7519cf6 100644 --- a/apps/rpc/src/modules/event/event-repository.ts +++ b/apps/rpc/src/modules/event/event-repository.ts @@ -1,9 +1,8 @@ import { type DBHandle, type Prisma, sql } from "@dotkomonline/db" +import type { AttendanceId } from "./attendance" import { - type AttendanceId, type BaseEvent, BaseEventSchema, - type CompanyId, type DeregisterReason, DeregisterReasonSchema, type DeregisterReasonWithEvent, @@ -17,9 +16,10 @@ import { EventSummarySchema, EventWithFeedbackFormSchema, type EventWrite, - type GroupId, - type UserId, -} from "@dotkomonline/types" +} from "./event" +import type { CompanyId } from "../company/company" +import type { GroupId } from "../group/group" +import type { UserId } from "../user/user" import { getCurrentUTC, snakeCaseToCamelCase } from "@dotkomonline/utils" import invariant from "tiny-invariant" import z from "zod" diff --git a/apps/rpc/src/modules/event/event-router.ts b/apps/rpc/src/modules/event/event-router.ts index 9bf953e2e9..eb08223733 100644 --- a/apps/rpc/src/modules/event/event-router.ts +++ b/apps/rpc/src/modules/event/event-router.ts @@ -1,18 +1,17 @@ import type { PresignedPost } from "@aws-sdk/s3-presigned-post" +import { AttendanceSummarySchema, AttendanceWriteSchema } from "./attendance" import { - AttendanceSummarySchema, - AttendanceWriteSchema, BaseEventSchema, - CompanySchema, EventFilterQuerySchema, EventSchema, EventWithAttendanceSchema, EventWithAttendanceSummarySchema, EventWithFeedbackFormSchema, EventWriteSchema, - GroupSchema, - UserSchema, -} from "@dotkomonline/types" +} from "./event" +import { CompanySchema } from "../company/company" +import { GroupSchema } from "../group/group" +import { UserSchema } from "../user/user" import { BasePaginateInputSchema, PaginateInputSchema } from "@dotkomonline/utils" import type { inferProcedureInput, inferProcedureOutput } from "@trpc/server" import { z } from "zod" diff --git a/apps/rpc/src/modules/event/event-service.ts b/apps/rpc/src/modules/event/event-service.ts index e6b5852ad2..4da8a52dce 100644 --- a/apps/rpc/src/modules/event/event-service.ts +++ b/apps/rpc/src/modules/event/event-service.ts @@ -2,10 +2,9 @@ import type { S3Client } from "@aws-sdk/client-s3" import type { PresignedPost } from "@aws-sdk/s3-presigned-post" import type { DBHandle } from "@dotkomonline/db" import { getLogger } from "@dotkomonline/logger" +import type { AttendanceId } from "./attendance" import { - type AttendanceId, type BaseEvent, - type CompanyId, type DeregisterReason, type DeregisterReasonWithEvent, type DeregisterReasonWrite, @@ -15,10 +14,11 @@ import { type EventSummary, type EventWithFeedbackFormSchema, type EventWrite, - type GroupId, - type UserId, EVENT_IMAGE_MAX_SIZE_KIB, -} from "@dotkomonline/types" +} from "./event" +import type { CompanyId } from "../company/company" +import type { GroupId } from "../group/group" +import type { UserId } from "../user/user" import { createS3PresignedPost, slugify } from "@dotkomonline/utils" import { FailedPreconditionError, InvalidArgumentError, NotFoundError } from "../../error" import type { Pageable } from "@dotkomonline/utils" diff --git a/apps/rpc/src/modules/event/event.e2e-spec.ts b/apps/rpc/src/modules/event/event.e2e-spec.ts index c1871b4caf..7e4fb87f2d 100644 --- a/apps/rpc/src/modules/event/event.e2e-spec.ts +++ b/apps/rpc/src/modules/event/event.e2e-spec.ts @@ -1,4 +1,5 @@ -import type { EventWrite, GroupWrite } from "@dotkomonline/types" +import type { EventWrite } from "./event" +import type { GroupWrite } from "../group/group" import { faker } from "@faker-js/faker" import { describe, expect, it } from "vitest" import { CommitteeGroupSlug } from "../authorization-service" diff --git a/packages/types/src/event.ts b/apps/rpc/src/modules/event/event.ts similarity index 77% rename from packages/types/src/event.ts rename to apps/rpc/src/modules/event/event.ts index 6bb86ad60b..cd1e74d3f4 100644 --- a/packages/types/src/event.ts +++ b/apps/rpc/src/modules/event/event.ts @@ -1,12 +1,11 @@ import { TZDate } from "@date-fns/tz" -import { schemas } from "@dotkomonline/db/schemas" +import { buildAnyOfFilter, buildDateRangeFilter, buildSearchFilter, createSortOrder } from "@dotkomonline/utils" import { addWeeks, set } from "date-fns" import { z } from "zod" +import { CompanySchema } from "../company/company" +import { FeedbackFormSchema } from "../feedback-form/feedback-form" +import { GroupSchema, type GroupType } from "../group/group" import { AttendanceSchema, AttendanceSummarySchema } from "./attendance" -import { CompanySchema } from "./company" -import { FeedbackFormSchema } from "./feedback-form" -import { buildAnyOfFilter, buildDateRangeFilter, buildSearchFilter, createSortOrder } from "./filters" -import { GroupSchema, type GroupType } from "./group" /** * @packageDocumentation @@ -15,8 +14,39 @@ import { GroupSchema, type GroupType } from "./group" * companies, attendance pools, and attendees. */ +export const EventTypeSchema = z.enum([ + "GENERAL_ASSEMBLY", + "COMPANY", + "ACADEMIC", + "SOCIAL", + "INTERNAL", + "OTHER", + "WELCOME", +]) +export const EventStatusSchema = z.enum(["DRAFT", "PUBLIC", "DELETED"]) + export type BaseEvent = z.infer -export const BaseEventSchema = schemas.EventSchema.extend({}) +export const BaseEventSchema = z.object({ + id: z.string(), + title: z.string(), + start: z.date(), + end: z.date(), + status: EventStatusSchema, + description: z.string(), + shortDescription: z.string().nullable(), + imageUrl: z.string().nullable(), + locationTitle: z.string().nullable(), + locationAddress: z.string().nullable(), + locationLink: z.string().nullable(), + type: EventTypeSchema, + markForMissedAttendance: z.boolean().default(true), + createdAt: z.date(), + updatedAt: z.date(), + attendanceId: z.string().nullable(), + parentId: z.string().nullable(), + contestId: z.string().nullable(), + metadataImportId: z.number().int().nullable(), +}) export type Event = z.infer export const EventSchema = BaseEventSchema.extend({ @@ -27,9 +57,6 @@ export type EventId = Event["id"] export type EventType = Event["type"] export type EventStatus = Event["status"] -export const EventTypeSchema = schemas.EventTypeSchema -export const EventStatusSchema = schemas.EventStatusSchema - export type EventWrite = z.infer export const EventWriteSchema = EventSchema.pick({ status: true, @@ -130,8 +157,28 @@ export const mapEventStatusToLabel = (status: EventStatus) => { } } +export const DeregisterReasonTypeSchema = z.enum([ + "SCHOOL", + "WORK", + "ECONOMY", + "TIME", + "SICK", + "NO_FAMILIAR_FACES", + "OTHER", +]) +export type DeregisterReasonType = z.infer + export type DeregisterReason = z.infer -export const DeregisterReasonSchema = schemas.DeregisterReasonSchema +export const DeregisterReasonSchema = z.object({ + id: z.string(), + createdAt: z.date(), + registeredAt: z.date(), + type: DeregisterReasonTypeSchema, + details: z.string().nullable(), + userGrade: z.number().int().nullable(), + userId: z.string(), + eventId: z.string(), +}) export type DeregisterReasonWithEvent = z.infer export const DeregisterReasonWithEventSchema = DeregisterReasonSchema.extend({ @@ -148,9 +195,6 @@ export const DeregisterReasonWriteSchema = DeregisterReasonSchema.pick({ userGrade: true, }) -export const DeregisterReasonTypeSchema = schemas.DeregisterReasonTypeSchema -export type DeregisterReasonType = z.infer - export const mapDeregisterReasonTypeToLabel = (type: DeregisterReasonType) => { switch (type) { case "SICK": diff --git a/apps/rpc/src/modules/fadderuke/fadderuke.ts b/apps/rpc/src/modules/fadderuke/fadderuke.ts index 28accee95b..47bab9defd 100644 --- a/apps/rpc/src/modules/fadderuke/fadderuke.ts +++ b/apps/rpc/src/modules/fadderuke/fadderuke.ts @@ -1,7 +1,12 @@ -import { schemas } from "@dotkomonline/db/schemas" -import type { z } from "zod" +import { z } from "zod" -export const FadderukeSchema = schemas.FadderukeSchema +export const FadderukeSchema = z.object({ + id: z.string(), + year: z.number().int(), + eventId: z.string(), + createdAt: z.date(), + updatedAt: z.date(), +}) export type Fadderuke = z.infer export type FadderukeId = Fadderuke["id"] diff --git a/apps/rpc/src/modules/feedback-form/feedback-form-answer-repository.ts b/apps/rpc/src/modules/feedback-form/feedback-form-answer-repository.ts index d1e6260a3a..0c94ae8908 100644 --- a/apps/rpc/src/modules/feedback-form/feedback-form-answer-repository.ts +++ b/apps/rpc/src/modules/feedback-form/feedback-form-answer-repository.ts @@ -1,6 +1,5 @@ import { type DBHandle, type FeedbackQuestionAnswer, type FeedbackQuestionOption, Prisma } from "@dotkomonline/db" import { - type AttendeeId, type FeedbackFormAnswer, FeedbackFormAnswerSchema, type FeedbackFormAnswerWrite, @@ -9,7 +8,8 @@ import { type FeedbackQuestionAnswerId, FeedbackQuestionAnswerSchema, type FeedbackQuestionAnswerWrite, -} from "@dotkomonline/types" +} from "./feedback-form" +import type { AttendeeId } from "../event/attendance" import { parseOrReport } from "../../invariant" export interface FeedbackFormAnswerRepository { diff --git a/apps/rpc/src/modules/feedback-form/feedback-form-answer-service.ts b/apps/rpc/src/modules/feedback-form/feedback-form-answer-service.ts index ac40889670..9eb5d4002f 100644 --- a/apps/rpc/src/modules/feedback-form/feedback-form-answer-service.ts +++ b/apps/rpc/src/modules/feedback-form/feedback-form-answer-service.ts @@ -1,13 +1,13 @@ import type { DBHandle } from "@dotkomonline/db" import type { - AttendeeId, FeedbackFormAnswer, FeedbackFormAnswerWrite, FeedbackFormId, FeedbackPublicResultsToken, FeedbackQuestionAnswerId, FeedbackQuestionAnswerWrite, -} from "@dotkomonline/types" +} from "./feedback-form" +import type { AttendeeId } from "../event/attendance" import { NotFoundError } from "../../error" import type { FeedbackFormAnswerRepository } from "./feedback-form-answer-repository" import type { FeedbackFormService } from "./feedback-form-service" diff --git a/apps/rpc/src/modules/feedback-form/feedback-form-repository.ts b/apps/rpc/src/modules/feedback-form/feedback-form-repository.ts index f679e80d56..425afcee49 100644 --- a/apps/rpc/src/modules/feedback-form/feedback-form-repository.ts +++ b/apps/rpc/src/modules/feedback-form/feedback-form-repository.ts @@ -1,6 +1,5 @@ import type { DBHandle, Prisma } from "@dotkomonline/db" import { - type EventId, type FeedbackForm, type FeedbackFormId, FeedbackFormSchema, @@ -8,7 +7,8 @@ import { FeedbackFromPublicResultsTokenSchema, type FeedbackPublicResultsToken, type FeedbackQuestionWrite, -} from "@dotkomonline/types" +} from "./feedback-form" +import type { EventId } from "../event/event" import { parseOrReport } from "../../invariant" export interface FeedbackFormRepository { diff --git a/apps/rpc/src/modules/feedback-form/feedback-form-service.ts b/apps/rpc/src/modules/feedback-form/feedback-form-service.ts index b8884b926e..6c2b11cef1 100644 --- a/apps/rpc/src/modules/feedback-form/feedback-form-service.ts +++ b/apps/rpc/src/modules/feedback-form/feedback-form-service.ts @@ -1,18 +1,16 @@ import { TZDate } from "@date-fns/tz" import type { DBHandle } from "@dotkomonline/db" -import { - type Attendee, - type Event, - type EventId, - type FeedbackForm, - type FeedbackFormId, - type FeedbackFormWrite, - type FeedbackPublicResultsToken, - type FeedbackQuestionWrite, - type FeedbackRejectionCause, - type UserId, - getDefaultFeedbackAnswerDeadline, -} from "@dotkomonline/types" +import type { + FeedbackForm, + FeedbackFormId, + FeedbackFormWrite, + FeedbackPublicResultsToken, + FeedbackQuestionWrite, + FeedbackRejectionCause, +} from "./feedback-form" +import { type Event, type EventId, getDefaultFeedbackAnswerDeadline } from "../event/event" +import type { Attendee } from "../event/attendance" +import type { UserId } from "../user/user" import { isEqual, isFuture, isPast } from "date-fns" import { NotFoundError } from "../../error" import type { AttendanceRepository } from "../event/attendance-repository" diff --git a/packages/types/src/feedback-form.ts b/apps/rpc/src/modules/feedback-form/feedback-form.ts similarity index 59% rename from packages/types/src/feedback-form.ts rename to apps/rpc/src/modules/feedback-form/feedback-form.ts index 35a7b68cd3..64344aab73 100644 --- a/packages/types/src/feedback-form.ts +++ b/apps/rpc/src/modules/feedback-form/feedback-form.ts @@ -1,10 +1,16 @@ -import { schemas } from "@dotkomonline/db/schemas" +import { buildLimitedDepthJsonSchema } from "@dotkomonline/utils" import { z } from "zod" -export const FeedbackQuestionOptionSchema = schemas.FeedbackQuestionOptionSchema +export const FeedbackQuestionTypeSchema = z.enum(["TEXT", "LONGTEXT", "RATING", "CHECKBOX", "SELECT", "MULTISELECT"]) + +export const FeedbackQuestionOptionSchema = z.object({ + id: z.string(), + name: z.string(), + questionId: z.string(), +}) export type FeedbackQuestionOption = z.infer -export const FeedbackQuestionOptionWriteSchema = schemas.FeedbackQuestionOptionSchema.omit({ +export const FeedbackQuestionOptionWriteSchema = FeedbackQuestionOptionSchema.omit({ id: true, questionId: true, }).extend({ @@ -12,9 +18,21 @@ export const FeedbackQuestionOptionWriteSchema = schemas.FeedbackQuestionOptionS }) export type FeedbackQuestionOptionWrite = z.infer -export const FeedbackQuestionSchema = schemas.FeedbackQuestionSchema.extend({ - options: FeedbackQuestionOptionSchema.array(), -}) +export const FeedbackQuestionSchema = z + .object({ + id: z.string(), + label: z.string(), + required: z.boolean(), + showInPublicResults: z.boolean().default(true), + type: FeedbackQuestionTypeSchema, + order: z.number().int(), + createdAt: z.date(), + updatedAt: z.date(), + feedbackFormId: z.string(), + }) + .extend({ + options: FeedbackQuestionOptionSchema.array(), + }) export type FeedbackQuestion = z.infer export const FeedbackQuestionWriteSchema = FeedbackQuestionSchema.omit({ @@ -29,21 +47,38 @@ export const FeedbackQuestionWriteSchema = FeedbackQuestionSchema.omit({ }) export type FeedbackQuestionWrite = z.infer -export const FeedbackFormSchema = schemas.FeedbackFormSchema.extend({ +const FeedbackFormBaseSchema = z.object({ + id: z.string(), + publicResultsToken: z.string(), + createdAt: z.date(), + updatedAt: z.date(), + answerDeadline: z.date(), + eventId: z.string(), +}) + +export const FeedbackFormSchema = FeedbackFormBaseSchema.extend({ questions: FeedbackQuestionSchema.array(), }).omit({ publicResultsToken: true, }) export type FeedbackForm = z.infer -export const FeedbackFromPublicResultsTokenSchema = schemas.FeedbackFormSchema.pick({ publicResultsToken: true }) - -export const FeedbackQuestionAnswerSchema = schemas.FeedbackQuestionAnswerSchema.omit({ - value: true, -}).extend({ - value: z.union([z.string(), z.number(), z.boolean()]).nullable(), - selectedOptions: FeedbackQuestionOptionSchema.array(), -}) +export const FeedbackFromPublicResultsTokenSchema = FeedbackFormBaseSchema.pick({ publicResultsToken: true }) + +export const FeedbackQuestionAnswerSchema = z + .object({ + id: z.string(), + value: buildLimitedDepthJsonSchema().nullable(), + questionId: z.string(), + formAnswerId: z.string(), + }) + .omit({ + value: true, + }) + .extend({ + value: z.union([z.string(), z.number(), z.boolean()]).nullable(), + selectedOptions: FeedbackQuestionOptionSchema.array(), + }) export type FeedbackQuestionAnswer = z.infer export type FeedbackQuestionAnswerId = FeedbackQuestionAnswer["id"] @@ -53,9 +88,17 @@ export const FeedbackQuestionAnswerWriteSchema = FeedbackQuestionAnswerSchema.om }) export type FeedbackQuestionAnswerWrite = z.infer -export const FeedbackFormAnswerSchema = schemas.FeedbackFormAnswerSchema.extend({ - questionAnswers: FeedbackQuestionAnswerSchema.array(), -}) +export const FeedbackFormAnswerSchema = z + .object({ + id: z.string(), + createdAt: z.date(), + updatedAt: z.date(), + feedbackFormId: z.string(), + attendeeId: z.string(), + }) + .extend({ + questionAnswers: FeedbackQuestionAnswerSchema.array(), + }) export type FeedbackFormAnswer = z.infer export const FeedbackFormAnswerWriteSchema = FeedbackFormAnswerSchema.omit({ @@ -72,7 +115,7 @@ export const FeedbackFormIdSchema = FeedbackFormSchema.shape.id export type FeedbackFormId = z.infer -export const FeedbackPublicResultsTokenSchema = schemas.FeedbackFormSchema.shape.publicResultsToken +export const FeedbackPublicResultsTokenSchema = FeedbackFormBaseSchema.shape.publicResultsToken export type FeedbackPublicResultsToken = z.infer diff --git a/apps/rpc/src/modules/feedback-form/feedback-router.ts b/apps/rpc/src/modules/feedback-form/feedback-router.ts index cfed0a53b0..7b0054f0b8 100644 --- a/apps/rpc/src/modules/feedback-form/feedback-router.ts +++ b/apps/rpc/src/modules/feedback-form/feedback-router.ts @@ -1,6 +1,4 @@ import { - AttendeeSchema, - EventSchema, FeedbackFormAnswerWriteSchema, FeedbackFormIdSchema, FeedbackFormWriteSchema, @@ -8,7 +6,9 @@ import { FeedbackQuestionAnswerSchema, FeedbackQuestionAnswerWriteSchema, FeedbackQuestionWriteSchema, -} from "@dotkomonline/types" +} from "./feedback-form" +import { AttendeeSchema } from "../event/attendance" +import { EventSchema } from "../event/event" import type { inferProcedureInput, inferProcedureOutput } from "@trpc/server" import { z } from "zod" import { isCommitteeMember, isSameSubject } from "../../authorization" diff --git a/apps/rpc/src/modules/feedback-form/feedback.e2e-spec.ts b/apps/rpc/src/modules/feedback-form/feedback.e2e-spec.ts index 2ae50ebf59..6ada6a8282 100644 --- a/apps/rpc/src/modules/feedback-form/feedback.e2e-spec.ts +++ b/apps/rpc/src/modules/feedback-form/feedback.e2e-spec.ts @@ -1,12 +1,13 @@ import { randomUUID } from "node:crypto" import { - type EventWrite, type FeedbackFormWrite, type FeedbackQuestionOptionWrite, type FeedbackQuestionWrite, FeedbackRejectionCause, -} from "@dotkomonline/types" -import type { AttendanceId, EventId, UserId } from "@dotkomonline/types" +} from "./feedback-form" +import type { EventId, EventWrite } from "../event/event" +import type { AttendanceId } from "../event/attendance" +import type { UserId } from "../user/user" import { getCurrentUTC } from "@dotkomonline/utils" import { faker } from "@faker-js/faker" import { addDays } from "date-fns" diff --git a/apps/rpc/src/modules/group/__test__/group-service.spec.ts b/apps/rpc/src/modules/group/__test__/group-service.spec.ts index afb8fc38aa..2f07733f2e 100644 --- a/apps/rpc/src/modules/group/__test__/group-service.spec.ts +++ b/apps/rpc/src/modules/group/__test__/group-service.spec.ts @@ -1,6 +1,6 @@ import type { S3Client } from "@aws-sdk/client-s3" import { PrismaClient } from "@dotkomonline/db" -import type { Group } from "@dotkomonline/types" +import type { Group } from "../group" import type { ManagementClient } from "auth0" import { randomUUID } from "node:crypto" import { getFeideGroupsRepository } from "../../feide/feide-groups-repository" diff --git a/apps/rpc/src/modules/group/__test__/simplify-group-memberships.spec.ts b/apps/rpc/src/modules/group/__test__/simplify-group-memberships.spec.ts index 5b72ea660d..c822e5dc3a 100644 --- a/apps/rpc/src/modules/group/__test__/simplify-group-memberships.spec.ts +++ b/apps/rpc/src/modules/group/__test__/simplify-group-memberships.spec.ts @@ -1,5 +1,5 @@ import { randomUUID } from "node:crypto" -import { type GroupMembership, type GroupRole, GroupRoleTypeEnum } from "@dotkomonline/types" +import { type GroupMembership, type GroupRole, GroupRoleTypeEnum } from "../group" import { describe, expect, it } from "vitest" import { simplifyGroupMemberships } from "../group-service" diff --git a/apps/rpc/src/modules/group/group-repository.ts b/apps/rpc/src/modules/group/group-repository.ts index 9caa72537b..207184b36c 100644 --- a/apps/rpc/src/modules/group/group-repository.ts +++ b/apps/rpc/src/modules/group/group-repository.ts @@ -15,8 +15,8 @@ import { type GroupRoleWrite, GroupSchema, type GroupWrite, - type UserId, -} from "@dotkomonline/types" +} from "./group" +import type { UserId } from "../user/user" import z from "zod" import { parseOrReport } from "../../invariant" diff --git a/apps/rpc/src/modules/group/group-router.ts b/apps/rpc/src/modules/group/group-router.ts index 0d37c094e9..488189bda8 100644 --- a/apps/rpc/src/modules/group/group-router.ts +++ b/apps/rpc/src/modules/group/group-router.ts @@ -7,7 +7,7 @@ import { GroupRoleWriteSchema, GroupSchema, GroupWriteSchema, -} from "@dotkomonline/types" +} from "./group" import type { inferProcedureInput, inferProcedureOutput } from "@trpc/server" import { z } from "zod" import { hasGroupRole, isAdministrator, isCommitteeMember, isGroupMember, or } from "../../authorization" diff --git a/apps/rpc/src/modules/group/group-service.ts b/apps/rpc/src/modules/group/group-service.ts index 3bccec4edb..8334628fe3 100644 --- a/apps/rpc/src/modules/group/group-service.ts +++ b/apps/rpc/src/modules/group/group-service.ts @@ -13,13 +13,13 @@ import { type GroupRoleWrite, type GroupType, type GroupWrite, - type UserId, GroupRoleTypeEnum, getDefaultGroupMemberRoles, GROUP_IMAGE_MAX_SIZE_KIB, areGroupRolesEqual, type GroupMembershipWriteWithRoles, -} from "@dotkomonline/types" +} from "./group" +import type { UserId } from "../user/user" import { createS3PresignedPost, getCurrentUTC, slugify } from "@dotkomonline/utils" import { areIntervalsOverlapping, compareDesc, isAfter, isEqual } from "date-fns" import { maxTime } from "date-fns/constants" diff --git a/packages/types/src/group.ts b/apps/rpc/src/modules/group/group.ts similarity index 78% rename from packages/types/src/group.ts rename to apps/rpc/src/modules/group/group.ts index 16a3b39aeb..e5ff3b2ded 100644 --- a/packages/types/src/group.ts +++ b/apps/rpc/src/modules/group/group.ts @@ -1,10 +1,43 @@ +import { compareDesc } from "date-fns" import { z } from "zod" +import { UserSchema } from "../user/user" -import { schemas } from "@dotkomonline/db/schemas" -import { compareDesc } from "date-fns" -import { UserSchema } from "./user" +export const GroupTypeSchema = z.enum(["COMMITTEE", "NODE_COMMITTEE", "ASSOCIATED", "INTEREST_GROUP", "EMAIL_ONLY"]) +export type GroupType = z.infer + +export const GroupRecruitmentMethodSchema = z.enum([ + "NONE", + "SPRING_APPLICATION", + "AUTUMN_APPLICATION", + "GENERAL_ASSEMBLY", + "NOMINATION", + "OTHER", +]) +export type GroupRecruitmentMethod = z.output + +export const GroupMemberVisibilitySchema = z.enum(["ALL_MEMBERS", "WITH_ROLES", "LEADER", "NONE"]) +export type GroupMemberVisibilityType = z.infer + +export const GroupRoleTypeSchema = z.enum([ + "LEADER", + "PUNISHER", + "TREASURER", + "COSMETIC", + "DEPUTY_LEADER", + "TRUSTEE", + "EMAIL_ONLY", + "TEMPORARILY_LEAVE", + "EDITOR_IN_CHIEF", +]) +export const GroupRoleTypeEnum = GroupRoleTypeSchema.enum +export type GroupRoleType = z.infer -export const GroupRoleSchema = schemas.GroupRoleSchema.extend({}) +export const GroupRoleSchema = z.object({ + id: z.string(), + name: z.string(), + type: GroupRoleTypeSchema.default("COSMETIC"), + groupId: z.string(), +}) export type GroupRole = z.infer export type GroupRoleId = GroupRole["id"] @@ -13,26 +46,32 @@ export const GroupRoleWriteSchema = GroupRoleSchema.pick({ name: true, type: true, }) - export type GroupRoleWrite = z.infer -export const GroupSchema = schemas.GroupSchema.extend({ +export const GroupSchema = z.object({ + slug: z.string(), + abbreviation: z.string(), + name: z.string().nullable(), + shortDescription: z.string().nullable(), + description: z.string(), + imageUrl: z.string().nullable(), + email: z.string().nullable(), + contactUrl: z.string().nullable(), + slackUrl: z.string().nullable(), + showLeaderAsContact: z.boolean(), + createdAt: z.date(), + deactivatedAt: z.date().nullable(), + workspaceGroupId: z.string().nullable(), + memberVisibility: GroupMemberVisibilitySchema.default("ALL_MEMBERS"), + recruitmentMethod: GroupRecruitmentMethodSchema.default("NONE"), + type: GroupTypeSchema, roles: GroupRoleSchema.array(), eventCount: z.number().optional(), }) -export const GroupTypeSchema = schemas.GroupTypeSchema export type GroupId = Group["slug"] export type Group = z.infer -export type GroupType = z.infer - -export const GroupRecruitmentMethodSchema = schemas.GroupRecruitmentMethodSchema -export type GroupRecruitmentMethod = z.output - -export const GroupMemberVisibilitySchema = schemas.GroupMemberVisibilitySchema -export type GroupMemberVisibilityType = z.infer - export const GroupWriteSchema = GroupSchema.pick({ type: true, name: true, @@ -54,13 +93,19 @@ export const GroupWriteSchema = GroupSchema.pick({ export type GroupWrite = z.infer -export const GroupRoleTypeSchema = schemas.GroupRoleTypeSchema -export const GroupRoleTypeEnum = GroupRoleTypeSchema.enum -export type GroupRoleType = z.infer - -export const GroupMembershipSchema = schemas.GroupMembershipSchema.extend({ - roles: GroupRoleSchema.array(), -}) +export const GroupMembershipSchema = z + .object({ + id: z.string(), + start: z.date(), + end: z.date().nullable(), + createdAt: z.date(), + updatedAt: z.date(), + groupId: z.string(), + userId: z.string(), + }) + .extend({ + roles: GroupRoleSchema.array(), + }) export const GroupMemberSchema = UserSchema.extend({ groupMemberships: GroupMembershipSchema.array(), diff --git a/apps/rpc/src/modules/job-listing/job-listing-repository.ts b/apps/rpc/src/modules/job-listing/job-listing-repository.ts index e784d98e70..f95a707b63 100644 --- a/apps/rpc/src/modules/job-listing/job-listing-repository.ts +++ b/apps/rpc/src/modules/job-listing/job-listing-repository.ts @@ -1,6 +1,6 @@ import type { DBHandle } from "@dotkomonline/db" +import type { CompanyId } from "../company/company" import { - type CompanyId, type JobListing, type JobListingFilterQuery, type JobListingId, @@ -9,7 +9,7 @@ import { JobListingLocationSchema, JobListingSchema, type JobListingWrite, -} from "@dotkomonline/types" +} from "./job-listing" import { parseOrReport } from "../../invariant" import { type Pageable, pageQuery } from "@dotkomonline/utils" diff --git a/apps/rpc/src/modules/job-listing/job-listing-router.ts b/apps/rpc/src/modules/job-listing/job-listing-router.ts index e9d5d12758..ae9f62fc25 100644 --- a/apps/rpc/src/modules/job-listing/job-listing-router.ts +++ b/apps/rpc/src/modules/job-listing/job-listing-router.ts @@ -1,10 +1,10 @@ +import { CompanySchema } from "../company/company" import { - CompanySchema, JobListingFilterQuerySchema, JobListingLocationSchema, JobListingSchema, JobListingWriteSchema, -} from "@dotkomonline/types" +} from "./job-listing" import type { inferProcedureInput, inferProcedureOutput } from "@trpc/server" import { z } from "zod" import { isCommitteeMember } from "../../authorization" diff --git a/apps/rpc/src/modules/job-listing/job-listing-service.ts b/apps/rpc/src/modules/job-listing/job-listing-service.ts index b327c32a7e..e3cdace819 100644 --- a/apps/rpc/src/modules/job-listing/job-listing-service.ts +++ b/apps/rpc/src/modules/job-listing/job-listing-service.ts @@ -1,13 +1,13 @@ import type { DBHandle } from "@dotkomonline/db" +import type { CompanyId } from "../company/company" import type { - CompanyId, JobListing, JobListingFilterQuery, JobListingId, JobListingLocation, JobListingLocationId, JobListingWrite, -} from "@dotkomonline/types" +} from "./job-listing" import { isAfter } from "date-fns" import { assert, InvalidArgumentError, NotFoundError } from "../../error" import type { Pageable } from "@dotkomonline/utils" diff --git a/apps/rpc/src/modules/job-listing/job-listing.e2e-spec.ts b/apps/rpc/src/modules/job-listing/job-listing.e2e-spec.ts index 1708dc3a1a..00dd1423b3 100644 --- a/apps/rpc/src/modules/job-listing/job-listing.e2e-spec.ts +++ b/apps/rpc/src/modules/job-listing/job-listing.e2e-spec.ts @@ -1,4 +1,4 @@ -import type { Company } from "@dotkomonline/types" +import type { Company } from "../company/company" import { addDays } from "date-fns" import { beforeEach, describe, expect, it } from "vitest" import { core, dbClient } from "../../../vitest-integration.setup" diff --git a/packages/types/src/job-listing.ts b/apps/rpc/src/modules/job-listing/job-listing.ts similarity index 68% rename from packages/types/src/job-listing.ts rename to apps/rpc/src/modules/job-listing/job-listing.ts index 7f78f23295..bd29fa4d57 100644 --- a/packages/types/src/job-listing.ts +++ b/apps/rpc/src/modules/job-listing/job-listing.ts @@ -1,9 +1,14 @@ -import { schemas } from "@dotkomonline/db/schemas" +import { buildAnyOfFilter, buildDateRangeFilter, buildSearchFilter, createSortOrder } from "@dotkomonline/utils" import { z } from "zod" -import { CompanySchema } from "./company" -import { buildAnyOfFilter, buildDateRangeFilter, buildSearchFilter, createSortOrder } from "./filters" +import { CompanySchema } from "../company/company" -export const JobListingLocationSchema = schemas.JobListingLocationSchema.extend({}) +export const EmploymentTypeSchema = z.enum(["PARTTIME", "FULLTIME", "SUMMER_INTERNSHIP", "OTHER"]) + +export const JobListingLocationSchema = z.object({ + name: z.string(), + createdAt: z.date(), + jobListingId: z.string(), +}) export const JobListingLocationWriteSchema = JobListingLocationSchema.omit({ createdAt: true, }) @@ -12,10 +17,22 @@ export type JobListingLocation = z.infer export type JobListingLocationId = JobListingLocation["name"] export type JobListingLocationWrite = z.infer -export const JobListingSchema = schemas.JobListingSchema.omit({ - companyId: true, -}).extend({ +export const JobListingSchema = z.object({ id: z.string(), + title: z.string(), + description: z.string(), + shortDescription: z.string().nullable(), + start: z.date(), + end: z.date(), + featured: z.boolean(), + hidden: z.boolean(), + deadline: z.date().nullable(), + employment: EmploymentTypeSchema, + applicationLink: z.string().nullable(), + applicationEmail: z.string().nullable(), + rollingAdmission: z.boolean(), + createdAt: z.date(), + updatedAt: z.date(), company: CompanySchema, locations: z.array( z.object({ diff --git a/apps/rpc/src/modules/mark/mark-repository.ts b/apps/rpc/src/modules/mark/mark-repository.ts index 5e93db5714..ad4adcd92d 100644 --- a/apps/rpc/src/modules/mark/mark-repository.ts +++ b/apps/rpc/src/modules/mark/mark-repository.ts @@ -1,13 +1,6 @@ import type { DBHandle } from "@dotkomonline/db" -import { - type Group, - type GroupId, - type Mark, - type MarkFilterQuery, - type MarkId, - MarkSchema, - type MarkWrite, -} from "@dotkomonline/types" +import type { Group, GroupId } from "../group/group" +import { type Mark, type MarkFilterQuery, type MarkId, MarkSchema, type MarkWrite } from "./mark" import { parseOrReport } from "../../invariant" import { type Pageable, pageQuery } from "@dotkomonline/utils" diff --git a/apps/rpc/src/modules/mark/mark-router.ts b/apps/rpc/src/modules/mark/mark-router.ts index 22a90f1b75..05809f98c2 100644 --- a/apps/rpc/src/modules/mark/mark-router.ts +++ b/apps/rpc/src/modules/mark/mark-router.ts @@ -1,4 +1,5 @@ -import { GroupSchema, MarkFilterQuerySchema, MarkSchema, MarkWriteSchema } from "@dotkomonline/types" +import { GroupSchema } from "../group/group" +import { MarkFilterQuerySchema, MarkSchema, MarkWriteSchema } from "./mark" import type { inferProcedureInput, inferProcedureOutput } from "@trpc/server" import z from "zod" import { isCommitteeMember } from "../../authorization" diff --git a/apps/rpc/src/modules/mark/mark-service.ts b/apps/rpc/src/modules/mark/mark-service.ts index cfbb9a65b4..633cce09b5 100644 --- a/apps/rpc/src/modules/mark/mark-service.ts +++ b/apps/rpc/src/modules/mark/mark-service.ts @@ -1,5 +1,6 @@ import type { DBHandle } from "@dotkomonline/db" -import type { GroupId, Mark, MarkFilterQuery, MarkId, MarkWrite } from "@dotkomonline/types" +import type { GroupId } from "../group/group" +import type { Mark, MarkFilterQuery, MarkId, MarkWrite } from "./mark" import { NotFoundError } from "../../error" import type { Pageable } from "@dotkomonline/utils" import type { MarkRepository } from "./mark-repository" diff --git a/packages/types/src/mark.ts b/apps/rpc/src/modules/mark/mark.ts similarity index 64% rename from packages/types/src/mark.ts rename to apps/rpc/src/modules/mark/mark.ts index 501e86a235..9d43aee415 100644 --- a/packages/types/src/mark.ts +++ b/apps/rpc/src/modules/mark/mark.ts @@ -1,12 +1,31 @@ -import { schemas } from "@dotkomonline/db/schemas" +import { buildAnyOfFilter } from "@dotkomonline/utils" import { z } from "zod" -import { buildAnyOfFilter } from "./filters" -import { GroupSchema } from "./group" -import { PublicUserSchema, UserSchema } from "./user" +import { GroupSchema } from "../group/group" +import { PublicUserSchema, UserSchema } from "../user/user" -export const MarkSchema = schemas.MarkSchema.extend({ - groups: z.array(GroupSchema), -}) +export const MarkTypeSchema = z.enum([ + "MANUAL", + "LATE_ATTENDANCE", + "MISSED_ATTENDANCE", + "MISSING_FEEDBACK", + "MISSING_PAYMENT", +]) +export type MarkType = z.infer + +export const MarkSchema = z + .object({ + id: z.string(), + title: z.string(), + details: z.string().nullable(), + duration: z.number().int(), + weight: z.number().int(), + type: MarkTypeSchema.default("MANUAL"), + createdAt: z.date(), + updatedAt: z.date(), + }) + .extend({ + groups: z.array(GroupSchema), + }) export type MarkId = Mark["id"] export type Mark = z.infer @@ -21,7 +40,12 @@ export const MarkWriteSchema = MarkSchema.partial({ export type MarkWrite = z.infer -export const PersonalMarkSchema = schemas.PersonalMarkSchema +export const PersonalMarkSchema = z.object({ + createdAt: z.date(), + markId: z.string(), + userId: z.string(), + givenById: z.string().nullable(), +}) export const CreatePersonalMarkSchema = PersonalMarkSchema.pick({ markId: true, diff --git a/apps/rpc/src/modules/mark/personal-mark-repository.ts b/apps/rpc/src/modules/mark/personal-mark-repository.ts index 85ec7b96b0..52967077e4 100644 --- a/apps/rpc/src/modules/mark/personal-mark-repository.ts +++ b/apps/rpc/src/modules/mark/personal-mark-repository.ts @@ -6,8 +6,8 @@ import { type PersonalMarkDetails, PersonalMarkDetailsSchema, PersonalMarkSchema, - type UserId, -} from "@dotkomonline/types" +} from "./mark" +import type { UserId } from "../user/user" import { parseOrReport } from "../../invariant" import { mapMark } from "./mark-repository" diff --git a/apps/rpc/src/modules/mark/personal-mark-router.ts b/apps/rpc/src/modules/mark/personal-mark-router.ts index 9b645728da..0958194219 100644 --- a/apps/rpc/src/modules/mark/personal-mark-router.ts +++ b/apps/rpc/src/modules/mark/personal-mark-router.ts @@ -1,4 +1,5 @@ -import { CreatePersonalMarkSchema, PersonalMarkSchema, UserSchema } from "@dotkomonline/types" +import { UserSchema } from "../user/user" +import { CreatePersonalMarkSchema, PersonalMarkSchema } from "./mark" import type { inferProcedureInput, inferProcedureOutput } from "@trpc/server" import { z } from "zod" import { isAdministrator, isCommitteeMember, isSameSubject, or } from "../../authorization" diff --git a/apps/rpc/src/modules/mark/personal-mark-service.ts b/apps/rpc/src/modules/mark/personal-mark-service.ts index 7d9cdac40b..7a620bcc6f 100644 --- a/apps/rpc/src/modules/mark/personal-mark-service.ts +++ b/apps/rpc/src/modules/mark/personal-mark-service.ts @@ -1,14 +1,7 @@ import type { DBHandle } from "@dotkomonline/db" import { getLogger } from "@dotkomonline/logger" -import type { - Mark, - MarkId, - PersonalMark, - PersonalMarkDetails, - Punishment, - UserId, - VisiblePersonalMarkDetails, -} from "@dotkomonline/types" +import type { Mark, MarkId, PersonalMark, PersonalMarkDetails, Punishment, VisiblePersonalMarkDetails } from "./mark" +import type { UserId } from "../user/user" import { getPunishmentExpiryDate } from "@dotkomonline/utils" import { isPast } from "date-fns" import { NotFoundError } from "../../error" diff --git a/apps/rpc/src/modules/offline/offline-repository.ts b/apps/rpc/src/modules/offline/offline-repository.ts index 90856f877e..62087ba67b 100644 --- a/apps/rpc/src/modules/offline/offline-repository.ts +++ b/apps/rpc/src/modules/offline/offline-repository.ts @@ -1,5 +1,5 @@ import type { DBHandle } from "@dotkomonline/db" -import { type Offline, type OfflineId, OfflineSchema, type OfflineWrite } from "@dotkomonline/types" +import { type Offline, type OfflineId, OfflineSchema, type OfflineWrite } from "./offline" import { parseOrReport } from "../../invariant" import { type Pageable, pageQuery } from "@dotkomonline/utils" diff --git a/apps/rpc/src/modules/offline/offline-router.ts b/apps/rpc/src/modules/offline/offline-router.ts index fbe83ba893..ae3cec3119 100644 --- a/apps/rpc/src/modules/offline/offline-router.ts +++ b/apps/rpc/src/modules/offline/offline-router.ts @@ -1,4 +1,5 @@ -import { GroupRoleTypeEnum, OfflineSchema, OfflineWriteSchema } from "@dotkomonline/types" +import { GroupRoleTypeEnum } from "../group/group" +import { OfflineSchema, OfflineWriteSchema } from "./offline" import type { inferProcedureInput, inferProcedureOutput } from "@trpc/server" import { z } from "zod" import { hasGroupRole, isAdministrator, isCommitteeMember, or } from "../../authorization" diff --git a/apps/rpc/src/modules/offline/offline-service.ts b/apps/rpc/src/modules/offline/offline-service.ts index 8ca4737eda..0c6415b0e3 100644 --- a/apps/rpc/src/modules/offline/offline-service.ts +++ b/apps/rpc/src/modules/offline/offline-service.ts @@ -7,8 +7,8 @@ import { type Offline, type OfflineId, type OfflineWrite, - type UserId, -} from "@dotkomonline/types" +} from "./offline" +import type { UserId } from "../user/user" import { createS3PresignedPost, slugify } from "@dotkomonline/utils" import { NotFoundError } from "../../error" import type { Pageable } from "@dotkomonline/utils" diff --git a/packages/types/src/offline.ts b/apps/rpc/src/modules/offline/offline.ts similarity index 60% rename from packages/types/src/offline.ts rename to apps/rpc/src/modules/offline/offline.ts index 413a0cd147..2f88037fe4 100644 --- a/packages/types/src/offline.ts +++ b/apps/rpc/src/modules/offline/offline.ts @@ -1,7 +1,14 @@ -import { schemas } from "@dotkomonline/db/schemas" -import type { z } from "zod" +import { z } from "zod" -export const OfflineSchema = schemas.OfflineSchema.extend({}) +export const OfflineSchema = z.object({ + id: z.string(), + title: z.string(), + fileUrl: z.string().nullable(), + imageUrl: z.string().nullable(), + publishedAt: z.date(), + createdAt: z.date(), + updatedAt: z.date(), +}) export const OfflineWriteSchema = OfflineSchema.partial({ id: true, diff --git a/apps/rpc/src/modules/payment/payment-service.ts b/apps/rpc/src/modules/payment/payment-service.ts index 036f7c5712..acd6c55056 100644 --- a/apps/rpc/src/modules/payment/payment-service.ts +++ b/apps/rpc/src/modules/payment/payment-service.ts @@ -1,4 +1,4 @@ -import type { User } from "@dotkomonline/types" +import type { User } from "../user/user" import type Stripe from "stripe" import invariant from "tiny-invariant" import { FailedPreconditionError, IllegalStateError, ResourceExhaustedError } from "../../error" diff --git a/apps/rpc/src/modules/task/recurring-task-repository.ts b/apps/rpc/src/modules/task/recurring-task-repository.ts index 29997bfdcf..257ad361aa 100644 --- a/apps/rpc/src/modules/task/recurring-task-repository.ts +++ b/apps/rpc/src/modules/task/recurring-task-repository.ts @@ -1,10 +1,5 @@ import type { DBHandle } from "@dotkomonline/db" -import { - type RecurringTask, - type RecurringTaskId, - RecurringTaskSchema, - type RecurringTaskWrite, -} from "@dotkomonline/types" +import { type RecurringTask, type RecurringTaskId, RecurringTaskSchema, type RecurringTaskWrite } from "./task" import { parseOrReport } from "../../invariant" export interface RecurringTaskRepository { diff --git a/apps/rpc/src/modules/task/recurring-task-service.ts b/apps/rpc/src/modules/task/recurring-task-service.ts index a360353c9a..912a59ee23 100644 --- a/apps/rpc/src/modules/task/recurring-task-service.ts +++ b/apps/rpc/src/modules/task/recurring-task-service.ts @@ -1,5 +1,5 @@ import type { DBHandle } from "@dotkomonline/db" -import type { RecurringTask, RecurringTaskId, RecurringTaskWrite } from "@dotkomonline/types" +import type { RecurringTask, RecurringTaskId, RecurringTaskWrite } from "./task" import { getCurrentUTC } from "@dotkomonline/utils" import { CronExpressionParser } from "cron-parser" import { InvalidArgumentError, NotFoundError } from "../../error" diff --git a/apps/rpc/src/modules/task/task-definition.ts b/apps/rpc/src/modules/task/task-definition.ts index afe15a0f61..1eefe32447 100644 --- a/apps/rpc/src/modules/task/task-definition.ts +++ b/apps/rpc/src/modules/task/task-definition.ts @@ -1,4 +1,6 @@ -import { AttendanceSchema, AttendeeSchema, FeedbackFormSchema, type TaskType } from "@dotkomonline/types" +import { AttendanceSchema, AttendeeSchema } from "../event/attendance" +import { FeedbackFormSchema } from "../feedback-form/feedback-form" +import type { TaskType } from "./task" import { z } from "zod" import { NotFoundError } from "../../error" diff --git a/apps/rpc/src/modules/task/task-discovery-service.ts b/apps/rpc/src/modules/task/task-discovery-service.ts index 4fe56bff0a..ca81b409da 100644 --- a/apps/rpc/src/modules/task/task-discovery-service.ts +++ b/apps/rpc/src/modules/task/task-discovery-service.ts @@ -1,6 +1,6 @@ import type { DBClient } from "@dotkomonline/db" import { getLogger } from "@dotkomonline/logger" -import type { RecurringTask, Task } from "@dotkomonline/types" +import type { RecurringTask, Task } from "./task" import type { RecurringTaskService } from "./recurring-task-service" import type { TaskService } from "./task-service" diff --git a/apps/rpc/src/modules/task/task-executor.ts b/apps/rpc/src/modules/task/task-executor.ts index 338cc0976f..41cdada280 100644 --- a/apps/rpc/src/modules/task/task-executor.ts +++ b/apps/rpc/src/modules/task/task-executor.ts @@ -2,7 +2,7 @@ import PQueue from "p-queue" import { clearInterval, type setInterval } from "node:timers" import type { DBClient, Prisma, PrismaClient } from "@dotkomonline/db" import { getLogger } from "@dotkomonline/logger" -import type { Task } from "@dotkomonline/types" +import type { Task } from "./task" import { getCurrentUTC } from "@dotkomonline/utils" import { SpanStatusCode, trace } from "@opentelemetry/api" import { captureException } from "@sentry/node" diff --git a/apps/rpc/src/modules/task/task-repository.ts b/apps/rpc/src/modules/task/task-repository.ts index 972d390836..d875133a62 100644 --- a/apps/rpc/src/modules/task/task-repository.ts +++ b/apps/rpc/src/modules/task/task-repository.ts @@ -1,15 +1,8 @@ import type { DBHandle, TaskStatus } from "@dotkomonline/db" import { Prisma } from "@dotkomonline/db" -import { - type AttendanceId, - type AttendeeId, - type FeedbackFormId, - type Task, - type TaskId, - TaskSchema, - type TaskType, - type TaskWrite, -} from "@dotkomonline/types" +import type { AttendanceId, AttendeeId } from "../event/attendance" +import type { FeedbackFormId } from "../feedback-form/feedback-form" +import { type Task, type TaskId, TaskSchema, type TaskType, type TaskWrite } from "./task" import { parseOrReport } from "../../invariant" import { tasks } from "./task-definition" diff --git a/apps/rpc/src/modules/task/task-scheduling-service.ts b/apps/rpc/src/modules/task/task-scheduling-service.ts index 15f2b59554..4b79861048 100644 --- a/apps/rpc/src/modules/task/task-scheduling-service.ts +++ b/apps/rpc/src/modules/task/task-scheduling-service.ts @@ -1,7 +1,9 @@ import type { TZDate } from "@date-fns/tz" import type { DBHandle, Prisma } from "@dotkomonline/db" import { getLogger } from "@dotkomonline/logger" -import type { AttendanceId, AttendeeId, FeedbackFormId, RecurringTaskId, Task, TaskId } from "@dotkomonline/types" +import type { AttendanceId, AttendeeId } from "../event/attendance" +import type { FeedbackFormId } from "../feedback-form/feedback-form" +import type { RecurringTaskId, Task, TaskId } from "./task" import type { InferTaskData, TaskDefinition } from "./task-definition" import type { TaskRepository } from "./task-repository" import type { TaskService } from "./task-service" diff --git a/apps/rpc/src/modules/task/task-service.ts b/apps/rpc/src/modules/task/task-service.ts index c6bf5e277e..52e28c7d82 100644 --- a/apps/rpc/src/modules/task/task-service.ts +++ b/apps/rpc/src/modules/task/task-service.ts @@ -1,6 +1,6 @@ import type { DBHandle, Prisma } from "@dotkomonline/db" import { getLogger } from "@dotkomonline/logger" -import type { Task, TaskId, TaskStatus, TaskWrite } from "@dotkomonline/types" +import type { Task, TaskId, TaskStatus, TaskWrite } from "./task" import { IllegalStateError, InvalidArgumentError, NotFoundError } from "../../error" import { type InferTaskData, type TaskDefinition, getTaskDefinition } from "./task-definition" import type { TaskRepository } from "./task-repository" diff --git a/apps/rpc/src/modules/task/task.ts b/apps/rpc/src/modules/task/task.ts new file mode 100644 index 0000000000..1c3acbdcac --- /dev/null +++ b/apps/rpc/src/modules/task/task.ts @@ -0,0 +1,64 @@ +import { buildLimitedDepthJsonSchema } from "@dotkomonline/utils" +import { z } from "zod" + +export const TaskTypeSchema = z.enum([ + "RESERVE_ATTENDEE", + "CHARGE_ATTENDEE", + "MERGE_ATTENDANCE_POOLS", + "VERIFY_PAYMENT", + "VERIFY_FEEDBACK_ANSWERED", + "SEND_FEEDBACK_FORM_EMAILS", + "VERIFY_ATTENDEE_ATTENDED", +]) + +export const TaskStatusSchema = z.enum(["PENDING", "RUNNING", "COMPLETED", "FAILED", "CANCELED"]) + +export const TaskSchema = z.object({ + id: z.string(), + type: TaskTypeSchema, + status: TaskStatusSchema.default("PENDING"), + payload: buildLimitedDepthJsonSchema().default("{}"), + createdAt: z.date(), + scheduledAt: z.date(), + processedAt: z.date().nullable(), + recurringTaskId: z.string().nullable(), +}) + +export const RecurringTaskSchema = z.object({ + id: z.string(), + type: TaskTypeSchema, + payload: buildLimitedDepthJsonSchema().default("{}"), + createdAt: z.date(), + schedule: z.string(), + lastRunAt: z.date().nullable(), + nextRunAt: z.date(), +}) + +export type Task = z.infer +export type TaskId = Task["id"] +export type TaskStatus = Task["status"] +export type TaskType = Task["type"] + +export type RecurringTask = z.infer +export type RecurringTaskId = RecurringTask["id"] + +export const TaskWriteSchema = TaskSchema.pick({ + scheduledAt: true, + processedAt: true, + status: true, + payload: true, + recurringTaskId: true, +}) + +export type TaskWrite = z.infer + +export const RecurringTaskWriteSchema = RecurringTaskSchema.pick({ + type: true, + schedule: true, + payload: true, + lastRunAt: true, +}).partial({ + lastRunAt: true, +}) + +export type RecurringTaskWrite = z.infer diff --git a/apps/rpc/src/modules/user/__test__/user-merging-service.spec.ts b/apps/rpc/src/modules/user/__test__/user-merging-service.spec.ts index a322c7370b..069bfc03e9 100644 --- a/apps/rpc/src/modules/user/__test__/user-merging-service.spec.ts +++ b/apps/rpc/src/modules/user/__test__/user-merging-service.spec.ts @@ -1,6 +1,6 @@ import type { S3Client } from "@aws-sdk/client-s3" import type { DBHandle } from "@dotkomonline/db" -import { GenderSchema, type Membership, type User } from "@dotkomonline/types" +import { GenderSchema, type Membership, type User } from "../user" import type { ManagementClient } from "auth0" import { mockDeep } from "vitest-mock-extended" import { afterEach, describe, expect, it, vi } from "vitest" diff --git a/apps/rpc/src/modules/user/__test__/user-merging.spec.ts b/apps/rpc/src/modules/user/__test__/user-merging.spec.ts index 4e145fa7a8..e587745ba9 100644 --- a/apps/rpc/src/modules/user/__test__/user-merging.spec.ts +++ b/apps/rpc/src/modules/user/__test__/user-merging.spec.ts @@ -1,6 +1,6 @@ import { randomUUID } from "node:crypto" import type { DBHandle } from "@dotkomonline/db" -import { GenderSchema, type Membership, type User } from "@dotkomonline/types" +import { GenderSchema, type Membership, type User } from "../user" import { beforeEach, describe, expect, it, type vi } from "vitest" import { mockDeep } from "vitest-mock-extended" import type { AttendanceService } from "../../event/attendance-service" diff --git a/apps/rpc/src/modules/user/__test__/user-service.spec.ts b/apps/rpc/src/modules/user/__test__/user-service.spec.ts index d7f7c7a666..06531a7caa 100644 --- a/apps/rpc/src/modules/user/__test__/user-service.spec.ts +++ b/apps/rpc/src/modules/user/__test__/user-service.spec.ts @@ -1,6 +1,6 @@ import type { S3Client } from "@aws-sdk/client-s3" import type { DBHandle } from "@dotkomonline/db" -import { GenderSchema, type Membership, type User } from "@dotkomonline/types" +import { GenderSchema, type Membership, type User } from "../user" import type { ManagementClient } from "auth0" import { mockDeep } from "vitest-mock-extended" import type { FeideGroupsRepository } from "../../feide/feide-groups-repository" diff --git a/apps/rpc/src/modules/user/notification-permissions-repository.ts b/apps/rpc/src/modules/user/notification-permissions-repository.ts index c1184db207..00004f0b27 100644 --- a/apps/rpc/src/modules/user/notification-permissions-repository.ts +++ b/apps/rpc/src/modules/user/notification-permissions-repository.ts @@ -4,7 +4,7 @@ import { NotificationPermissionsSchema, type NotificationPermissionsWrite, type UserId, -} from "@dotkomonline/types" +} from "./user" import { parseOrReport } from "../../invariant" export interface NotificationPermissionsRepository { diff --git a/apps/rpc/src/modules/user/privacy-permissions-repository.ts b/apps/rpc/src/modules/user/privacy-permissions-repository.ts index bcef4726ec..cfa2c2b7f1 100644 --- a/apps/rpc/src/modules/user/privacy-permissions-repository.ts +++ b/apps/rpc/src/modules/user/privacy-permissions-repository.ts @@ -1,10 +1,5 @@ import type { DBHandle } from "@dotkomonline/db" -import { - type PrivacyPermissions, - PrivacyPermissionsSchema, - type PrivacyPermissionsWrite, - type UserId, -} from "@dotkomonline/types" +import { type PrivacyPermissions, PrivacyPermissionsSchema, type PrivacyPermissionsWrite, type UserId } from "./user" import { parseOrReport } from "../../invariant" export interface PrivacyPermissionsRepository { diff --git a/apps/rpc/src/modules/user/user-merging-service.ts b/apps/rpc/src/modules/user/user-merging-service.ts index 06843cc188..d63f4d8f78 100644 --- a/apps/rpc/src/modules/user/user-merging-service.ts +++ b/apps/rpc/src/modules/user/user-merging-service.ts @@ -1,6 +1,6 @@ import type { DBHandle } from "@dotkomonline/db" import { getLogger } from "@dotkomonline/logger" -import type { User, UserId } from "@dotkomonline/types" +import type { User, UserId } from "./user" import type { ManagementClient, PostIdentitiesRequestProviderEnum } from "auth0" import type { AttendanceService } from "../event/attendance-service" import type { GroupRepository } from "../group/group-repository" diff --git a/apps/rpc/src/modules/user/user-merging.ts b/apps/rpc/src/modules/user/user-merging.ts index 78d0f4b210..8a691cf41b 100644 --- a/apps/rpc/src/modules/user/user-merging.ts +++ b/apps/rpc/src/modules/user/user-merging.ts @@ -1,5 +1,5 @@ -import type { User, Membership } from "@dotkomonline/types" -import { isAttendeeChargedAndUnrefunded } from "@dotkomonline/types" +import { isAttendeeChargedAndUnrefunded } from "../event/attendance" +import type { User, Membership } from "./user" import type { DBHandle, Prisma } from "@dotkomonline/db" import type { GroupRepository } from "../group/group-repository" import type { AttendanceService } from "../event/attendance-service" diff --git a/apps/rpc/src/modules/user/user-repository.ts b/apps/rpc/src/modules/user/user-repository.ts index dc277b049f..ba5d6c42cc 100644 --- a/apps/rpc/src/modules/user/user-repository.ts +++ b/apps/rpc/src/modules/user/user-repository.ts @@ -10,7 +10,7 @@ import { type Username, UserSchema, type UserWrite, -} from "@dotkomonline/types" +} from "./user" import invariant from "tiny-invariant" import { parseOrReport } from "../../invariant" import { type Pageable, pageQuery } from "@dotkomonline/utils" diff --git a/apps/rpc/src/modules/user/user-router.ts b/apps/rpc/src/modules/user/user-router.ts index 3d983f47fa..330c7a2116 100644 --- a/apps/rpc/src/modules/user/user-router.ts +++ b/apps/rpc/src/modules/user/user-router.ts @@ -1,11 +1,5 @@ import type { PresignedPost } from "@aws-sdk/s3-presigned-post" -import { - MembershipSchema, - MembershipWriteSchema, - UserFilterQuerySchema, - UserSchema, - UserWriteSchema, -} from "@dotkomonline/types" +import { MembershipSchema, MembershipWriteSchema, UserFilterQuerySchema, UserSchema, UserWriteSchema } from "./user" import { BasePaginateInputSchema } from "@dotkomonline/utils" import type { inferProcedureInput, inferProcedureOutput } from "@trpc/server" import { z } from "zod" diff --git a/apps/rpc/src/modules/user/user-service.ts b/apps/rpc/src/modules/user/user-service.ts index a54ea38d5e..939ccf5f88 100644 --- a/apps/rpc/src/modules/user/user-service.ts +++ b/apps/rpc/src/modules/user/user-service.ts @@ -2,22 +2,6 @@ import type { S3Client } from "@aws-sdk/client-s3" import type { PresignedPost } from "@aws-sdk/s3-presigned-post" import type { DBHandle } from "@dotkomonline/db" import { getLogger } from "@dotkomonline/logger" -import { - isMembershipActive, - type Membership, - type MembershipId, - type MembershipSpecialization, - type MembershipWrite, - USER_IMAGE_MAX_SIZE_KIB, - type User, - type UserFilterQuery, - type UserId, - type Username, - type UserWrite, - UserWriteSchema, - findActiveMembership, - GenderSchema, -} from "@dotkomonline/types" import { createS3PresignedPost, slugify, getNextSemesterStart, getCurrentSemesterStart } from "@dotkomonline/utils" import { trace } from "@opentelemetry/api" import type { ManagementClient } from "auth0" @@ -40,6 +24,20 @@ import { Auth0UserProfileUserMetadataSchema, type Auth0Connection, type Auth0UserProfile, + isMembershipActive, + type Membership, + type MembershipId, + type MembershipSpecialization, + type MembershipWrite, + USER_IMAGE_MAX_SIZE_KIB, + type User, + type UserFilterQuery, + type UserId, + type Username, + type UserWrite, + UserWriteSchema, + findActiveMembership, + GenderSchema, } from "./user" export interface UserService { diff --git a/apps/rpc/src/modules/user/user.ts b/apps/rpc/src/modules/user/user.ts index 561db55af7..2262b794ec 100644 --- a/apps/rpc/src/modules/user/user.ts +++ b/apps/rpc/src/modules/user/user.ts @@ -1,6 +1,256 @@ +import type { TZDate } from "@date-fns/tz" +import { buildSearchFilter, getCurrentUTC, slugify } from "@dotkomonline/utils" import type { GetUsers200ResponseOneOfInnerIdentitiesInner, ManagementClient } from "auth0" +import { isAfter, isBefore } from "date-fns" import { z } from "zod" +export const MembershipSpecializationSchema = z.enum([ + "ARTIFICIAL_INTELLIGENCE", + "DATABASE_AND_SEARCH", + "INTERACTION_DESIGN", + "SOFTWARE_ENGINEERING", + "UNKNOWN", +]) +export type MembershipSpecialization = z.infer + +export const MembershipTypeSchema = z.enum(["BACHELOR_STUDENT", "MASTER_STUDENT", "KNIGHT", "SOCIAL_MEMBER"]) +export type MembershipType = z.infer + +export const MembershipSchema = z.object({ + id: z.string(), + type: MembershipTypeSchema, + specialization: MembershipSpecializationSchema.default("UNKNOWN").nullable(), + start: z.date(), + end: z.date().nullable(), + semester: z.number().int().nullable(), + userId: z.string(), +}) +export type MembershipId = Membership["id"] +export type Membership = z.infer + +export const MembershipWriteSchema = MembershipSchema.pick({ + type: true, + start: true, + end: true, + specialization: true, + semester: true, +}) +export type MembershipWrite = z.infer + +export const GenderSchema = z.enum(["MALE", "FEMALE", "NON_BINARY", "OTHER", "UNKNOWN"]) +export type Gender = z.infer + +export const UserSchema = z.object({ + id: z.string(), + username: z.string(), + name: z.string().nullable(), + email: z.string().nullable(), + imageUrl: z.string().nullable(), + biography: z.string().nullable(), + phone: z.string().nullable(), + gender: GenderSchema.default("UNKNOWN"), + dietaryRestrictions: z.string().nullable(), + ntnuUsername: z.string().nullable(), + flags: z.array(z.string()), + workspaceUserId: z.string().nullable(), + createdAt: z.date(), + updatedAt: z.date(), + privacyPermissionsId: z.string().nullable(), + notificationPermissionsId: z.string().nullable(), + memberships: z.array(MembershipSchema), +}) +export type User = z.infer +export type UserId = User["id"] +export type Username = User["username"] + +export const NAME_REGEX = /^[\p{L}\p{M}\s'-]+$/u +export const PHONE_REGEX = /^[0-9-+\s]*$/ +export const PROFILE_SLUG_REGEX = /^[a-z0-9-]+$/ + +// These max and min values are arbitrary +export const UserWriteSchema = UserSchema.pick({ + workspaceUserId: true, + gender: true, +}).extend({ + username: z + .string() + .min(2, "Brukernavnet må være minst 2 tegn lang") + .max(64, "Brukernavnet kan ikke være lengre enn 64 tegn") + .regex(PROFILE_SLUG_REGEX, "Brukernavnet kan bare inneholde små bokstaver, tall og bindestrek") + .refine((value) => slugify(value) === value, { + error: "Brukernavnet kan bare inneholde små bokstaver, tall og bindestrek", + }), + name: z + .string() + .min(2, "Du må skrive inn et navn") + .max(128, "Navnet kan ikke være lengre enn 128 tegn") + .regex(NAME_REGEX, "Du kan bare bruke bokstaver, bindestrek, apostrof og mellomrom i navnet") + .nullable(), + email: z + .email("Ugyldig e-post") + .min(1, "Du må skrive en e-post") + .max(128, "E-posten kan ikke være lengre enn 128 tegn") + .nullable(), + phone: z + .string() + .regex(PHONE_REGEX, "Ugyldig telefonnummer") + .max(32, "Telefonnummeret kan ikke være lengre enn 32 tegn") + .nullable(), + imageUrl: z.url("Ugyldig URL").max(500, "Bildelenken kan ikke være lengre enn 500 tegn").nullable(), + biography: z.string().max(2000, "Biografien kan ikke være lengre enn 2000 tegn").nullable(), + dietaryRestrictions: z.string().max(200, "Kostholdsrestriksjoner kan ikke være lengre enn 200 tegn").nullable(), +}) +export type UserWrite = z.infer + +export const PublicUserSchema = UserSchema.pick({ + id: true, + username: true, + name: true, + imageUrl: true, + biography: true, +}) +export type PublicUser = z.infer + +export const UserFilterQuerySchema = z + .object({ + byName: buildSearchFilter(), + byEmail: buildSearchFilter(), + }) + .partial() +export type UserFilterQuery = z.infer + +export function isMembershipActive( + membership: Membership | MembershipWrite, + now: TZDate | Date = getCurrentUTC() +): boolean { + if (isAfter(membership.start, now)) { + return false + } + + if (membership.end && isBefore(membership.end, now)) { + return false + } + + return true +} + +/** + * Get the most relevant active membership for a user. Most relevant is defined as the membership with the highest + * semester. + * + * This will always deprioritize KNIGHT (Ridder) memberships in favor of student or social memberships, because they are + * easier to work with for our attendance systems. + */ +export function findActiveMembership(user: User): Membership | null { + const now = getCurrentUTC() + + // This orders active memberships by semester descending with null values last + const orderedMemberships = user.memberships + .filter((membership) => isMembershipActive(membership, now)) + .toSorted((a, b) => { + if (a.semester === null && b.semester === null) { + return 0 + } + + if (a.semester !== null && b.semester !== null) { + return b.semester - a.semester + } + + return b.semester !== null ? 1 : -1 + }) + + return orderedMemberships.at(0) ?? null +} + +export function getMembershipTypeName(type: MembershipType) { + switch (type) { + case "BACHELOR_STUDENT": + return "Bachelor" + case "MASTER_STUDENT": + return "Master" + case "SOCIAL_MEMBER": + return "Sosialt medlem" + case "KNIGHT": + return "Ridder" + } +} + +export function getSpecializationName(specialization: MembershipSpecialization) { + switch (specialization) { + case "ARTIFICIAL_INTELLIGENCE": + return "Kunstig intelligens" + case "DATABASE_AND_SEARCH": + return "Database og søk" + case "INTERACTION_DESIGN": + return "Interaksjonsdesign" + case "SOFTWARE_ENGINEERING": + return "Programvareutvikling" + case "UNKNOWN": + return "Ukjent spesialisering" + } +} + +export function getGenderName(gender: Gender) { + switch (gender) { + case "MALE": + return "Mann" + case "FEMALE": + return "Kvinne" + case "NON_BINARY": + return "Ikke-binær" + case "OTHER": + return "Annet" + case "UNKNOWN": + return "Ikke oppgitt" + } +} + +export const USER_IMAGE_MAX_SIZE_KIB = 512 + +export const PrivacyPermissionsSchema = z.object({ + id: z.string(), + userId: z.string(), + profileVisible: z.boolean().default(true), + usernameVisible: z.boolean().default(true), + emailVisible: z.boolean(), + phoneVisible: z.boolean(), + addressVisible: z.boolean(), + attendanceVisible: z.boolean(), + createdAt: z.date(), + updatedAt: z.date(), +}) +export type PrivacyPermissions = z.infer + +export const PrivacyPermissionsWriteSchema = PrivacyPermissionsSchema.omit({ + createdAt: true, + updatedAt: true, + userId: true, +}) +export type PrivacyPermissionsWrite = z.infer + +export const NotificationPermissionsSchema = z.object({ + id: z.string(), + userId: z.string(), + applications: z.boolean().default(true), + newArticles: z.boolean().default(true), + standardNotifications: z.boolean().default(true), + groupMessages: z.boolean().default(true), + markRulesUpdates: z.boolean().default(true), + receipts: z.boolean().default(true), + registrationByAdministrator: z.boolean().default(true), + registrationStart: z.boolean().default(true), + createdAt: z.date(), + updatedAt: z.date(), +}) +export type NotificationPermissions = z.infer + +export const NotificationPermissionsWriteSchema = NotificationPermissionsSchema.omit({ + createdAt: true, + updatedAt: true, + userId: true, +}) +export type NotificationPermissionsWrite = z.infer + export const Auth0ConnectionSchema = z.object({ identities: z.array(z.custom()), hasFeide: z.boolean(), diff --git a/apps/rpc/src/modules/workspace-sync/workspace-router.ts b/apps/rpc/src/modules/workspace-sync/workspace-router.ts index 8a8fbc4152..2d15955e19 100644 --- a/apps/rpc/src/modules/workspace-sync/workspace-router.ts +++ b/apps/rpc/src/modules/workspace-sync/workspace-router.ts @@ -1,12 +1,11 @@ +import { GroupRoleTypeEnum, GroupSchema } from "../group/group" +import { UserSchema } from "../user/user" import { - GroupRoleTypeEnum, - GroupSchema, - UserSchema, WorkspaceGroupLinkSchema, WorkspaceGroupSchema, WorkspaceMemberLinkSchema, WorkspaceUserSchema, -} from "@dotkomonline/types" +} from "./workspace" import type { inferProcedureInput, inferProcedureOutput } from "@trpc/server" import invariant from "tiny-invariant" import z from "zod" diff --git a/apps/rpc/src/modules/workspace-sync/workspace-service.ts b/apps/rpc/src/modules/workspace-sync/workspace-service.ts index 787ced527b..d77b019c72 100644 --- a/apps/rpc/src/modules/workspace-sync/workspace-service.ts +++ b/apps/rpc/src/modules/workspace-sync/workspace-service.ts @@ -2,20 +2,16 @@ import { randomBytes } from "node:crypto" import { TZDate } from "@date-fns/tz" import type { DBHandle } from "@dotkomonline/db" import { getLogger } from "@dotkomonline/logger" -import { - type Group, - type GroupId, - type GroupMember, - type User, - type UserId, - type WorkspaceGroup, - type WorkspaceGroupLink, - type WorkspaceMember, - type WorkspaceMemberLink, - type WorkspaceMemberSyncState, - type WorkspaceUser, - getActiveGroupMembership, -} from "@dotkomonline/types" +import { type Group, type GroupId, type GroupMember, getActiveGroupMembership } from "../group/group" +import type { User, UserId } from "../user/user" +import type { + WorkspaceGroup, + WorkspaceGroupLink, + WorkspaceMember, + WorkspaceMemberLink, + WorkspaceMemberSyncState, + WorkspaceUser, +} from "./workspace" import { slugify } from "@dotkomonline/utils" import { isAfter } from "date-fns" import type { admin_directory_v1 } from "@googleapis/admin" diff --git a/packages/types/src/workspace-sync.ts b/apps/rpc/src/modules/workspace-sync/workspace.ts similarity index 94% rename from packages/types/src/workspace-sync.ts rename to apps/rpc/src/modules/workspace-sync/workspace.ts index 54a5147448..08ffe1fd0a 100644 --- a/packages/types/src/workspace-sync.ts +++ b/apps/rpc/src/modules/workspace-sync/workspace.ts @@ -1,6 +1,6 @@ import type { admin_directory_v1 } from "@googleapis/admin" import { z } from "zod" -import { GroupMemberSchema, GroupSchema } from "./group" +import { GroupMemberSchema, GroupSchema } from "../group/group" export type WorkspaceUser = admin_directory_v1.Schema$User export type WorkspaceGroup = admin_directory_v1.Schema$Group diff --git a/apps/rpc/src/trpc.ts b/apps/rpc/src/trpc.ts index 0d5cc10a51..4cc07b21de 100644 --- a/apps/rpc/src/trpc.ts +++ b/apps/rpc/src/trpc.ts @@ -1,5 +1,6 @@ import { getLogger } from "@dotkomonline/logger" -import type { GroupId, GroupRoleType, UserId } from "@dotkomonline/types" +import type { GroupId, GroupRoleType } from "./modules/group/group" +import type { UserId } from "./modules/user/user" import { SpanStatusCode, trace } from "@opentelemetry/api" import { captureException } from "@sentry/node" import { TRPCError, type TRPC_ERROR_CODE_KEY, initTRPC } from "@trpc/server" diff --git a/apps/web/.ladle/fixtures/attendance.ts b/apps/web/.ladle/fixtures/attendance.ts index 3afe7e36e9..2105909685 100644 --- a/apps/web/.ladle/fixtures/attendance.ts +++ b/apps/web/.ladle/fixtures/attendance.ts @@ -1,5 +1,8 @@ import type { AttendanceRouter } from "@dotkomonline/rpc" -import type { Attendance, AttendanceSummary, Attendee, Event, Punishment, User } from "@dotkomonline/types" +import type { Attendance, AttendanceSummary, Attendee } from "@dotkomonline/rpc/attendance" +import type { Event } from "@dotkomonline/rpc/event" +import type { Punishment } from "@dotkomonline/rpc/mark" +import type { User } from "@dotkomonline/rpc/user" import { getCurrentSemesterStart, getCurrentUTC, getNextSemesterStart, isSpringSemester } from "@dotkomonline/utils" import { addDays, addHours, addMinutes, subHours, subMinutes } from "date-fns" diff --git a/apps/web/package.json b/apps/web/package.json index f108acca61..41303b4672 100644 --- a/apps/web/package.json +++ b/apps/web/package.json @@ -4,7 +4,7 @@ "type": "module", "private": true, "scripts": { - "dev": "next dev --turbopack", + "dev": "next dev", "build": "next build", "docker:build": "docker build -t web:latest -f Dockerfile --progress plain ../..", "start": "next start", @@ -20,7 +20,7 @@ "@date-fns/tz": "^1.2.0", "@dotkomonline/environment": "workspace:*", "@dotkomonline/logger": "workspace:*", - "@dotkomonline/types": "workspace:*", + "@dotkomonline/rpc": "workspace:*", "@dotkomonline/ui": "workspace:*", "@dotkomonline/utils": "workspace:*", "@hookform/error-message": "^2.0.1", @@ -73,7 +73,6 @@ "devDependencies": { "@biomejs/biome": "2.4.16", "@dotkomonline/config": "workspace:*", - "@dotkomonline/rpc": "workspace:*", "@fontsource-variable/figtree": "^5.2.10", "@fontsource-variable/inter": "^5.2.8", "@fontsource-variable/google-sans-code": "^5.2.4", diff --git a/apps/web/src/app/api/calendar/ical.ts b/apps/web/src/app/api/calendar/ical.ts index 685a01f4d0..c6767165e5 100644 --- a/apps/web/src/app/api/calendar/ical.ts +++ b/apps/web/src/app/api/calendar/ical.ts @@ -1,5 +1,5 @@ import { env } from "@/env" -import type { Event } from "@dotkomonline/types" +import type { Event } from "@dotkomonline/rpc/event" import { slugify } from "@dotkomonline/utils" import type { ICalEventData } from "ical-generator" diff --git a/apps/web/src/app/arrangementer/[slug]/[eventId]/page.tsx b/apps/web/src/app/arrangementer/[slug]/[eventId]/page.tsx index 07e0bf283e..2b949588c4 100644 --- a/apps/web/src/app/arrangementer/[slug]/[eventId]/page.tsx +++ b/apps/web/src/app/arrangementer/[slug]/[eventId]/page.tsx @@ -3,14 +3,11 @@ import { GroupLogo } from "@/components/atoms/GroupLogo" import { EventListItem } from "@/components/molecules/EventListItem/EventListItem" import { env } from "@/env" import { server } from "@/utils/trpc/server" -import { - type Attendance, - type Company, - type Event, - type Group, - type User, - createGroupPageUrl, -} from "@dotkomonline/types" +import type { Attendance } from "@dotkomonline/rpc/attendance" +import type { Company } from "@dotkomonline/rpc/company" +import type { Event } from "@dotkomonline/rpc/event" +import { type Group, createGroupPageUrl } from "@dotkomonline/rpc/group" +import type { User } from "@dotkomonline/rpc/user" import { Tabs, TabsContent, TabsList, TabsTrigger, Text, Title } from "@dotkomonline/ui" import { createAbsoluteEventPageUrl, diff --git a/apps/web/src/app/arrangementer/components/AttendanceCard/AttendanceCard.tsx b/apps/web/src/app/arrangementer/components/AttendanceCard/AttendanceCard.tsx index 5aa568cb17..66cc93ea8c 100644 --- a/apps/web/src/app/arrangementer/components/AttendanceCard/AttendanceCard.tsx +++ b/apps/web/src/app/arrangementer/components/AttendanceCard/AttendanceCard.tsx @@ -5,13 +5,9 @@ import { useTRPCSSERegisterChangeConnectionState } from "@/utils/trpc/QueryProvi import { useTRPC } from "@/utils/trpc/client" import { useFullPathname } from "@/utils/use-full-pathname" import type { AttendanceRouter } from "@dotkomonline/rpc" -import { - type Attendance, - type AttendanceSelectionResponse, - type Event, - type User, - getAttendee, -} from "@dotkomonline/types" +import { type Attendance, type AttendanceSelectionResponse, getAttendee } from "@dotkomonline/rpc/attendance" +import type { Event } from "@dotkomonline/rpc/event" +import type { User } from "@dotkomonline/rpc/user" import { Text, Title, cn } from "@dotkomonline/ui" import { createAuthorizeUrl, getCurrentUTC } from "@dotkomonline/utils" import { IconEdit } from "@tabler/icons-react" diff --git a/apps/web/src/app/arrangementer/components/AttendanceCard/AttendanceDateInfo.tsx b/apps/web/src/app/arrangementer/components/AttendanceCard/AttendanceDateInfo.tsx index f2948f0ea3..578dbd30c7 100644 --- a/apps/web/src/app/arrangementer/components/AttendanceCard/AttendanceDateInfo.tsx +++ b/apps/web/src/app/arrangementer/components/AttendanceCard/AttendanceDateInfo.tsx @@ -1,4 +1,4 @@ -import { type Attendance, type Attendee, hasAttendeePaid } from "@dotkomonline/types" +import { type Attendance, type Attendee, hasAttendeePaid } from "@dotkomonline/rpc/attendance" import { Text, cn } from "@dotkomonline/ui" import { IconLock, IconLockOpen2, IconSquareX } from "@tabler/icons-react" import { format as formatDate, isEqual, isPast, isThisYear, min } from "date-fns" diff --git a/apps/web/src/app/arrangementer/components/AttendanceCard/MainPoolCard.tsx b/apps/web/src/app/arrangementer/components/AttendanceCard/MainPoolCard.tsx index f50ff4e01c..9c0883a120 100644 --- a/apps/web/src/app/arrangementer/components/AttendanceCard/MainPoolCard.tsx +++ b/apps/web/src/app/arrangementer/components/AttendanceCard/MainPoolCard.tsx @@ -4,15 +4,14 @@ import { useCountdown } from "@/utils/countdown/use-countdown" import { type Attendance, type Attendee, - type User, - findActiveMembership, getAttendablePool, getAttendee, getAttendeeQueuePosition, getReservedAttendeeCount, getUnreservedAttendeeCount, hasAttendeePaid, -} from "@dotkomonline/types" +} from "@dotkomonline/rpc/attendance" +import { type User, findActiveMembership } from "@dotkomonline/rpc/user" import { Stripes, Text, Title, Tooltip, TooltipContent, TooltipTrigger, cn } from "@dotkomonline/ui" import { IconArrowForward, diff --git a/apps/web/src/app/arrangementer/components/AttendanceCard/NonAttendablePoolsBox.tsx b/apps/web/src/app/arrangementer/components/AttendanceCard/NonAttendablePoolsBox.tsx index ae2dc2002b..7163ecec05 100644 --- a/apps/web/src/app/arrangementer/components/AttendanceCard/NonAttendablePoolsBox.tsx +++ b/apps/web/src/app/arrangementer/components/AttendanceCard/NonAttendablePoolsBox.tsx @@ -2,12 +2,12 @@ import { RollingNumber } from "@/components/RollingNumber" import { type Attendance, type AttendancePool, - type User, getAttendablePool, getNonAttendablePools, getReservedAttendeeCount, getUnreservedAttendeeCount, -} from "@dotkomonline/types" +} from "@dotkomonline/rpc/attendance" +import type { User } from "@dotkomonline/rpc/user" import { Collapsible, CollapsibleContent, diff --git a/apps/web/src/app/arrangementer/components/AttendanceCard/PunishmentBox.tsx b/apps/web/src/app/arrangementer/components/AttendanceCard/PunishmentBox.tsx index 357991c91c..4022ff869b 100644 --- a/apps/web/src/app/arrangementer/components/AttendanceCard/PunishmentBox.tsx +++ b/apps/web/src/app/arrangementer/components/AttendanceCard/PunishmentBox.tsx @@ -1,4 +1,4 @@ -import type { Punishment } from "@dotkomonline/types" +import type { Punishment } from "@dotkomonline/rpc/mark" import { cn, Text, Title } from "@dotkomonline/ui" import { IconAlertTriangleFilled, IconArrowUpRight } from "@tabler/icons-react" import Link from "next/link" diff --git a/apps/web/src/app/arrangementer/components/AttendanceCard/RegistrationButton.tsx b/apps/web/src/app/arrangementer/components/AttendanceCard/RegistrationButton.tsx index 650d196d91..6a8da82ce9 100644 --- a/apps/web/src/app/arrangementer/components/AttendanceCard/RegistrationButton.tsx +++ b/apps/web/src/app/arrangementer/components/AttendanceCard/RegistrationButton.tsx @@ -1,7 +1,9 @@ "use client" import type { AttendanceRouter } from "@dotkomonline/rpc" -import { type Attendance, type Event, type User, getAttendee } from "@dotkomonline/types" +import { type Attendance, getAttendee } from "@dotkomonline/rpc/attendance" +import type { Event } from "@dotkomonline/rpc/event" +import type { User } from "@dotkomonline/rpc/user" import { Button, Text, Tooltip, TooltipContent, TooltipTrigger, cn } from "@dotkomonline/ui" import { IconLoader2, IconLock, IconUserMinus, IconUserPlus, IconX } from "@tabler/icons-react" import { type FC, useEffect, useState } from "react" diff --git a/apps/web/src/app/arrangementer/components/AttendanceCard/SelectionsForm.tsx b/apps/web/src/app/arrangementer/components/AttendanceCard/SelectionsForm.tsx index 1f28fe93c2..12c5edb4c2 100644 --- a/apps/web/src/app/arrangementer/components/AttendanceCard/SelectionsForm.tsx +++ b/apps/web/src/app/arrangementer/components/AttendanceCard/SelectionsForm.tsx @@ -1,4 +1,4 @@ -import type { Attendance, AttendanceSelectionResponse, Attendee } from "@dotkomonline/types" +import type { Attendance, AttendanceSelectionResponse, Attendee } from "@dotkomonline/rpc/attendance" import { Select, SelectContent, diff --git a/apps/web/src/app/arrangementer/components/AttendanceCard/TicketButton.tsx b/apps/web/src/app/arrangementer/components/AttendanceCard/TicketButton.tsx index a5b724dd42..8173491974 100644 --- a/apps/web/src/app/arrangementer/components/AttendanceCard/TicketButton.tsx +++ b/apps/web/src/app/arrangementer/components/AttendanceCard/TicketButton.tsx @@ -1,6 +1,6 @@ "use client" -import type { Attendee } from "@dotkomonline/types" +import type { Attendee } from "@dotkomonline/rpc/attendance" import { AlertDialog, AlertDialogCancel, diff --git a/apps/web/src/app/arrangementer/components/AttendanceCard/ViewAttendeesButton.tsx b/apps/web/src/app/arrangementer/components/AttendanceCard/ViewAttendeesButton.tsx index a8baa66d02..90fb4d7266 100644 --- a/apps/web/src/app/arrangementer/components/AttendanceCard/ViewAttendeesButton.tsx +++ b/apps/web/src/app/arrangementer/components/AttendanceCard/ViewAttendeesButton.tsx @@ -1,4 +1,5 @@ -import type { Attendance, Attendee, User } from "@dotkomonline/types" +import type { Attendance, Attendee } from "@dotkomonline/rpc/attendance" +import type { User } from "@dotkomonline/rpc/user" import { AlertDialog, AlertDialogCancel, diff --git a/apps/web/src/app/arrangementer/components/AttendanceCard/patchRegistrationAvailabilityFromPoolOccupancies.ts b/apps/web/src/app/arrangementer/components/AttendanceCard/patchRegistrationAvailabilityFromPoolOccupancies.ts index bccff87d27..6a05674b25 100644 --- a/apps/web/src/app/arrangementer/components/AttendanceCard/patchRegistrationAvailabilityFromPoolOccupancies.ts +++ b/apps/web/src/app/arrangementer/components/AttendanceCard/patchRegistrationAvailabilityFromPoolOccupancies.ts @@ -1,5 +1,5 @@ import type { AttendanceRouter } from "@dotkomonline/rpc" -import type { PoolOccupancy } from "@dotkomonline/types" +import type { PoolOccupancy } from "@dotkomonline/rpc/attendance" import { isFuture } from "date-fns" type RegistrationAvailability = AttendanceRouter.GetRegistrationAvailabilityOutput diff --git a/apps/web/src/app/arrangementer/components/DeregisterModal.tsx b/apps/web/src/app/arrangementer/components/DeregisterModal.tsx index e2fbe917af..951f03be6c 100644 --- a/apps/web/src/app/arrangementer/components/DeregisterModal.tsx +++ b/apps/web/src/app/arrangementer/components/DeregisterModal.tsx @@ -1,11 +1,7 @@ "use client" -import { - type Attendee, - DeregisterReasonTypeSchema, - type Event, - mapDeregisterReasonTypeToLabel, -} from "@dotkomonline/types" +import type { Attendee } from "@dotkomonline/rpc/attendance" +import { DeregisterReasonTypeSchema, type Event, mapDeregisterReasonTypeToLabel } from "@dotkomonline/rpc/event" import { AlertDialog, AlertDialogCancel, diff --git a/apps/web/src/app/arrangementer/components/EventHeader.tsx b/apps/web/src/app/arrangementer/components/EventHeader.tsx index 7b0c8735e0..72abafd251 100644 --- a/apps/web/src/app/arrangementer/components/EventHeader.tsx +++ b/apps/web/src/app/arrangementer/components/EventHeader.tsx @@ -2,7 +2,7 @@ import { PlaceHolderImage } from "@/components/atoms/PlaceHolderImage" import { env } from "@/env" -import type { Event } from "@dotkomonline/types" +import type { Event } from "@dotkomonline/rpc/event" import { Button, Text, Tilt, Title, cn } from "@dotkomonline/ui" import { IconArrowsDiagonal, IconArrowsDiagonalMinimize2, IconEdit } from "@tabler/icons-react" import Image from "next/image" diff --git a/apps/web/src/app/arrangementer/components/EventList.tsx b/apps/web/src/app/arrangementer/components/EventList.tsx index b29c8d7a0a..3c0a241869 100644 --- a/apps/web/src/app/arrangementer/components/EventList.tsx +++ b/apps/web/src/app/arrangementer/components/EventList.tsx @@ -1,12 +1,9 @@ "use client" import { EventListItem, EventListItemSkeleton } from "@/components/molecules/EventListItem/EventListItem" -import { - getAttendee, - type EventWithAttendance, - type EventWithAttendanceSummary, - type UserId, -} from "@dotkomonline/types" +import { getAttendee } from "@dotkomonline/rpc/attendance" +import type { EventWithAttendance, EventWithAttendanceSummary } from "@dotkomonline/rpc/event" +import type { UserId } from "@dotkomonline/rpc/user" import { Text } from "@dotkomonline/ui" import { getCurrentUTC } from "@dotkomonline/utils" import { IconMoodConfuzed } from "@tabler/icons-react" diff --git a/apps/web/src/app/arrangementer/components/OrganizerBox.tsx b/apps/web/src/app/arrangementer/components/OrganizerBox.tsx index c54c318d3f..16e36b1ea4 100644 --- a/apps/web/src/app/arrangementer/components/OrganizerBox.tsx +++ b/apps/web/src/app/arrangementer/components/OrganizerBox.tsx @@ -1,4 +1,4 @@ -import type { Group } from "@dotkomonline/types" +import type { Group } from "@dotkomonline/rpc/group" import type { FC } from "react" interface Props { diff --git a/apps/web/src/app/arrangementer/components/TimeLocationBox/LocationBox.tsx b/apps/web/src/app/arrangementer/components/TimeLocationBox/LocationBox.tsx index b021ed6a27..f6f1854bd4 100644 --- a/apps/web/src/app/arrangementer/components/TimeLocationBox/LocationBox.tsx +++ b/apps/web/src/app/arrangementer/components/TimeLocationBox/LocationBox.tsx @@ -1,4 +1,4 @@ -import type { Event } from "@dotkomonline/types" +import type { Event } from "@dotkomonline/rpc/event" import { cn, Text } from "@dotkomonline/ui" import { IconMapPin } from "@tabler/icons-react" import type { FC } from "react" diff --git a/apps/web/src/app/arrangementer/components/TimeLocationBox/TimeBox.tsx b/apps/web/src/app/arrangementer/components/TimeLocationBox/TimeBox.tsx index ccc5f8825f..69d30b1b33 100644 --- a/apps/web/src/app/arrangementer/components/TimeLocationBox/TimeBox.tsx +++ b/apps/web/src/app/arrangementer/components/TimeLocationBox/TimeBox.tsx @@ -1,6 +1,6 @@ "use client" -import type { Event } from "@dotkomonline/types" +import type { Event } from "@dotkomonline/rpc/event" import { Text } from "@dotkomonline/ui" import { IconArrowRight, IconClock } from "@tabler/icons-react" import { format as formatDate, isSameDay } from "date-fns" diff --git a/apps/web/src/app/arrangementer/components/TimeLocationBox/TimeLocationBox.tsx b/apps/web/src/app/arrangementer/components/TimeLocationBox/TimeLocationBox.tsx index 98cd9147b2..f517c2658f 100644 --- a/apps/web/src/app/arrangementer/components/TimeLocationBox/TimeLocationBox.tsx +++ b/apps/web/src/app/arrangementer/components/TimeLocationBox/TimeLocationBox.tsx @@ -1,4 +1,4 @@ -import type { Event } from "@dotkomonline/types" +import type { Event } from "@dotkomonline/rpc/event" import { Title } from "@dotkomonline/ui" import type { FC } from "react" import { LocationBox } from "./LocationBox" diff --git a/apps/web/src/app/arrangementer/components/attendanceStatus.ts b/apps/web/src/app/arrangementer/components/attendanceStatus.ts index c5b6e98071..57a8b90d18 100644 --- a/apps/web/src/app/arrangementer/components/attendanceStatus.ts +++ b/apps/web/src/app/arrangementer/components/attendanceStatus.ts @@ -1,5 +1,4 @@ -import type { Attendance, AttendanceStatus } from "@dotkomonline/types" - +import type { Attendance, AttendanceStatus } from "@dotkomonline/rpc/attendance" type AttendanceRegisterStartAndEnd = Pick export const getAttendanceStatus = ( diff --git a/apps/web/src/app/arrangementer/components/calendar/EventCalendarItem.tsx b/apps/web/src/app/arrangementer/components/calendar/EventCalendarItem.tsx index d9b9d7016c..b29059c9f3 100644 --- a/apps/web/src/app/arrangementer/components/calendar/EventCalendarItem.tsx +++ b/apps/web/src/app/arrangementer/components/calendar/EventCalendarItem.tsx @@ -1,5 +1,7 @@ import { AttendanceStatus } from "@/components/molecules/EventListItem/AttendanceStatus" -import { type EventWithAttendanceSummary, type UserId, getAttendee } from "@dotkomonline/types" +import type { EventWithAttendanceSummary } from "@dotkomonline/rpc/event" +import type { UserId } from "@dotkomonline/rpc/user" +import { getAttendee } from "@dotkomonline/rpc/attendance" import { HoverCard, HoverCardContent, HoverCardTrigger, Text, Title, cn } from "@dotkomonline/ui" import { createEventPageUrl } from "@dotkomonline/utils" import { IconClock, IconMapPin } from "@tabler/icons-react" diff --git a/apps/web/src/app/arrangementer/components/calendar/EventMonthCalendar/EventMonthCalendar.tsx b/apps/web/src/app/arrangementer/components/calendar/EventMonthCalendar/EventMonthCalendar.tsx index 020bd4c96c..363b3573ef 100644 --- a/apps/web/src/app/arrangementer/components/calendar/EventMonthCalendar/EventMonthCalendar.tsx +++ b/apps/web/src/app/arrangementer/components/calendar/EventMonthCalendar/EventMonthCalendar.tsx @@ -3,7 +3,7 @@ import { useEventAllSummariesQuery } from "@/app/arrangementer/components/queries" import { TZDate } from "@date-fns/tz" import { useUser } from "@auth0/nextjs-auth0/client" -import type { EventWithAttendanceSummary } from "@dotkomonline/types" +import type { EventWithAttendanceSummary } from "@dotkomonline/rpc/event" import { cn } from "@dotkomonline/ui" import { IconLoader2 } from "@tabler/icons-react" import { endOfMonth, endOfWeek, getISOWeek, isThisISOWeek } from "date-fns" diff --git a/apps/web/src/app/arrangementer/components/calendar/EventMonthCalendar/getMonthCalendarArray.ts b/apps/web/src/app/arrangementer/components/calendar/EventMonthCalendar/getMonthCalendarArray.ts index 404775cb00..59e35504e8 100644 --- a/apps/web/src/app/arrangementer/components/calendar/EventMonthCalendar/getMonthCalendarArray.ts +++ b/apps/web/src/app/arrangementer/components/calendar/EventMonthCalendar/getMonthCalendarArray.ts @@ -1,4 +1,4 @@ -import type { EventWithAttendanceSummary } from "@dotkomonline/types" +import type { EventWithAttendanceSummary } from "@dotkomonline/rpc/event" import { compareAsc } from "date-fns" import type { CalendarData, EventDisplayProps, Week } from "../types" diff --git a/apps/web/src/app/arrangementer/components/calendar/EventWeekCalendar/EventWeekCalendar.tsx b/apps/web/src/app/arrangementer/components/calendar/EventWeekCalendar/EventWeekCalendar.tsx index 5b83528347..5ceb83e904 100644 --- a/apps/web/src/app/arrangementer/components/calendar/EventWeekCalendar/EventWeekCalendar.tsx +++ b/apps/web/src/app/arrangementer/components/calendar/EventWeekCalendar/EventWeekCalendar.tsx @@ -2,7 +2,7 @@ import { useEventAllSummariesQuery } from "@/app/arrangementer/components/queries" import { TZDate } from "@date-fns/tz" -import type { EventWithAttendanceSummary } from "@dotkomonline/types" +import type { EventWithAttendanceSummary } from "@dotkomonline/rpc/event" import { cn } from "@dotkomonline/ui" import { IconLoader2 } from "@tabler/icons-react" import { endOfISOWeek, setISOWeek, setISOWeekYear, startOfISOWeek, subDays } from "date-fns" diff --git a/apps/web/src/app/arrangementer/components/calendar/EventWeekCalendar/getWeekCalendarArray.ts b/apps/web/src/app/arrangementer/components/calendar/EventWeekCalendar/getWeekCalendarArray.ts index 1061b76d61..3a0056d978 100644 --- a/apps/web/src/app/arrangementer/components/calendar/EventWeekCalendar/getWeekCalendarArray.ts +++ b/apps/web/src/app/arrangementer/components/calendar/EventWeekCalendar/getWeekCalendarArray.ts @@ -1,4 +1,4 @@ -import type { EventWithAttendanceSummary } from "@dotkomonline/types" +import type { EventWithAttendanceSummary } from "@dotkomonline/rpc/event" import { compareAsc, setISOWeek, setISOWeekYear, startOfISOWeek } from "date-fns" import type { EventDisplayProps, WeekData } from "../types" diff --git a/apps/web/src/app/arrangementer/components/calendar/eventTypeConfig.ts b/apps/web/src/app/arrangementer/components/calendar/eventTypeConfig.ts index d0001c0fb3..fe184c624a 100644 --- a/apps/web/src/app/arrangementer/components/calendar/eventTypeConfig.ts +++ b/apps/web/src/app/arrangementer/components/calendar/eventTypeConfig.ts @@ -1,5 +1,4 @@ -import type { EventType } from "@dotkomonline/types" - +import type { EventType } from "@dotkomonline/rpc/event" interface EventCategoryConfig { displayName: string classes: { diff --git a/apps/web/src/app/arrangementer/components/calendar/types.ts b/apps/web/src/app/arrangementer/components/calendar/types.ts index 5c839bdbae..56be0f609a 100644 --- a/apps/web/src/app/arrangementer/components/calendar/types.ts +++ b/apps/web/src/app/arrangementer/components/calendar/types.ts @@ -1,4 +1,4 @@ -import type { EventWithAttendanceSummary } from "@dotkomonline/types" +import type { EventWithAttendanceSummary } from "@dotkomonline/rpc/event" import type { EventCategoryKey } from "./eventTypeConfig" export interface EventDisplayProps { diff --git a/apps/web/src/app/arrangementer/components/filters/FilterChips.tsx b/apps/web/src/app/arrangementer/components/filters/FilterChips.tsx index a079457d72..f12b35524e 100644 --- a/apps/web/src/app/arrangementer/components/filters/FilterChips.tsx +++ b/apps/web/src/app/arrangementer/components/filters/FilterChips.tsx @@ -1,7 +1,8 @@ "use client" -import type { EventType, Group } from "@dotkomonline/types" -import { mapEventTypeToLabel } from "@dotkomonline/types" +import type { EventType } from "@dotkomonline/rpc/event" +import type { Group } from "@dotkomonline/rpc/group" +import { mapEventTypeToLabel } from "@dotkomonline/rpc/event" import { Button, cn, Text } from "@dotkomonline/ui" import { IconX } from "@tabler/icons-react" import type { EventListViewMode } from "../EventList" diff --git a/apps/web/src/app/arrangementer/components/filters/GroupFilter.tsx b/apps/web/src/app/arrangementer/components/filters/GroupFilter.tsx index 92d8ed987d..73233ca464 100644 --- a/apps/web/src/app/arrangementer/components/filters/GroupFilter.tsx +++ b/apps/web/src/app/arrangementer/components/filters/GroupFilter.tsx @@ -1,7 +1,7 @@ "use client" import { GroupLogoAvatar } from "@/components/atoms/GroupLogo" -import type { Group, GroupId } from "@dotkomonline/types" +import type { Group, GroupId } from "@dotkomonline/rpc/group" import { AvatarFallback, Button, diff --git a/apps/web/src/app/arrangementer/components/filters/TypeFilter.tsx b/apps/web/src/app/arrangementer/components/filters/TypeFilter.tsx index ab8d755518..35c1d99ade 100644 --- a/apps/web/src/app/arrangementer/components/filters/TypeFilter.tsx +++ b/apps/web/src/app/arrangementer/components/filters/TypeFilter.tsx @@ -1,6 +1,6 @@ "use client" -import { type EventType, EventTypeSchema, mapEventTypeToLabel } from "@dotkomonline/types" +import { type EventType, EventTypeSchema, mapEventTypeToLabel } from "@dotkomonline/rpc/event" import { Checkbox, Collapsible, CollapsibleContent, CollapsibleTrigger, Label, Text, cn } from "@dotkomonline/ui" import { IconChevronDown } from "@tabler/icons-react" diff --git a/apps/web/src/app/arrangementer/components/queries.ts b/apps/web/src/app/arrangementer/components/queries.ts index b6f4dc0229..f038aecd07 100644 --- a/apps/web/src/app/arrangementer/components/queries.ts +++ b/apps/web/src/app/arrangementer/components/queries.ts @@ -1,5 +1,6 @@ import { useTRPC } from "@/utils/trpc/client" -import type { EventFilterQuery, UserId } from "@dotkomonline/types" +import type { EventFilterQuery } from "@dotkomonline/rpc/event" +import type { UserId } from "@dotkomonline/rpc/user" import { useInfiniteQuery } from "@tanstack/react-query" import { useQuery } from "@tanstack/react-query" diff --git a/apps/web/src/app/arrangementer/hooks/useEventFilters.ts b/apps/web/src/app/arrangementer/hooks/useEventFilters.ts index ff1ddf7010..2207d0a458 100644 --- a/apps/web/src/app/arrangementer/hooks/useEventFilters.ts +++ b/apps/web/src/app/arrangementer/hooks/useEventFilters.ts @@ -2,7 +2,8 @@ import { useRouter, useSearchParams } from "next/navigation" import { useCallback, useMemo } from "react" -import { EventTypeSchema, GroupSchema } from "@dotkomonline/types" +import { EventTypeSchema } from "@dotkomonline/rpc/event" +import { GroupSchema } from "@dotkomonline/rpc/group" import { EventListViewModeSchema } from "../components/EventList" import { z } from "zod" diff --git a/apps/web/src/app/arrangementer/page.tsx b/apps/web/src/app/arrangementer/page.tsx index 0f093da2d5..a45db19294 100644 --- a/apps/web/src/app/arrangementer/page.tsx +++ b/apps/web/src/app/arrangementer/page.tsx @@ -3,7 +3,7 @@ import { useQuery } from "@tanstack/react-query" import { roundToNearestMinutes } from "date-fns" import { useMemo, useState } from "react" -import type { EventFilterQuery } from "@dotkomonline/types" +import type { EventFilterQuery } from "@dotkomonline/rpc/event" import { Button, Drawer, diff --git a/apps/web/src/app/artikler/ArticleFilters.tsx b/apps/web/src/app/artikler/ArticleFilters.tsx index ddf4030956..2382611f40 100644 --- a/apps/web/src/app/artikler/ArticleFilters.tsx +++ b/apps/web/src/app/artikler/ArticleFilters.tsx @@ -1,4 +1,4 @@ -import type { ArticleFilterQuery, ArticleTagName } from "@dotkomonline/types" +import type { ArticleFilterQuery, ArticleTagName } from "@dotkomonline/rpc/article" import { Button, Label, Text, TextInput } from "@dotkomonline/ui" import { useEffect } from "react" import { Controller, useForm, useWatch } from "react-hook-form" diff --git a/apps/web/src/app/artikler/ArticleList.tsx b/apps/web/src/app/artikler/ArticleList.tsx index 387baf5d2e..315b3ce91b 100644 --- a/apps/web/src/app/artikler/ArticleList.tsx +++ b/apps/web/src/app/artikler/ArticleList.tsx @@ -2,7 +2,7 @@ import { ArticleFilters } from "@/app/artikler/ArticleFilters" import { useArticleFilterQuery } from "@/app/artikler/queries" -import type { ArticleFilterQuery, ArticleTag } from "@dotkomonline/types" +import type { ArticleFilterQuery, ArticleTag } from "@dotkomonline/rpc/article" import { useSearchParams } from "next/navigation" import { type FC, useEffect, useRef, useState } from "react" import { ArticleListItem } from "./ArticleListItem" diff --git a/apps/web/src/app/artikler/ArticleListItem.tsx b/apps/web/src/app/artikler/ArticleListItem.tsx index 57882fcfcf..115b6f0461 100644 --- a/apps/web/src/app/artikler/ArticleListItem.tsx +++ b/apps/web/src/app/artikler/ArticleListItem.tsx @@ -1,4 +1,4 @@ -import type { Article } from "@dotkomonline/types" +import type { Article } from "@dotkomonline/rpc/article" import { cn, Text } from "@dotkomonline/ui" import { formatDate } from "date-fns" import Image from "next/image" diff --git a/apps/web/src/app/artikler/[slug]/[id]/page.tsx b/apps/web/src/app/artikler/[slug]/[id]/page.tsx index 7987d32945..1a6c385713 100644 --- a/apps/web/src/app/artikler/[slug]/[id]/page.tsx +++ b/apps/web/src/app/artikler/[slug]/[id]/page.tsx @@ -1,6 +1,6 @@ import { env } from "@/env" import { server } from "@/utils/trpc/server" -import type { Article, ArticleTagName, ArticleTag as ArticleTagType } from "@dotkomonline/types" +import type { Article, ArticleTagName, ArticleTag as ArticleTagType } from "@dotkomonline/rpc/article" import { Button, cn, RichText, Text, Title, Video } from "@dotkomonline/ui" import { richTextToPlainText } from "@dotkomonline/utils" import { formatDate, isEqual } from "date-fns" diff --git a/apps/web/src/app/artikler/queries.ts b/apps/web/src/app/artikler/queries.ts index 35f17e339a..36c4be9d85 100644 --- a/apps/web/src/app/artikler/queries.ts +++ b/apps/web/src/app/artikler/queries.ts @@ -1,6 +1,5 @@ import { useTRPC } from "@/utils/trpc/client" -import type { ArticleFilterQuery } from "@dotkomonline/types" - +import type { ArticleFilterQuery } from "@dotkomonline/rpc/article" import { useInfiniteQuery, useQuery } from "@tanstack/react-query" import { useMemo } from "react" diff --git a/apps/web/src/app/bedrifter/CompanyView.tsx b/apps/web/src/app/bedrifter/CompanyView.tsx index d4e9e5b96f..8f896de72c 100644 --- a/apps/web/src/app/bedrifter/CompanyView.tsx +++ b/apps/web/src/app/bedrifter/CompanyView.tsx @@ -3,7 +3,7 @@ import { EventList, EventListSkeleton } from "@/app/arrangementer/components/EventList" import { useEventAllSummariesInfiniteQuery, useEventAllSummariesQuery } from "@/app/arrangementer/components/queries" import { EntryDetailLayout } from "@/components/layout/EntryDetailLayout" -import type { Company } from "@dotkomonline/types" +import type { Company } from "@dotkomonline/rpc/company" import { RichText, Text, Title } from "@dotkomonline/ui" import { getCurrentUTC } from "@dotkomonline/utils" import { IconMail, IconMapPin, IconPhone, IconWorld } from "@tabler/icons-react" diff --git a/apps/web/src/app/fadderukene/(2026)/event-timeline-list.tsx b/apps/web/src/app/fadderukene/(2026)/event-timeline-list.tsx index 97e61e0077..43561e8775 100644 --- a/apps/web/src/app/fadderukene/(2026)/event-timeline-list.tsx +++ b/apps/web/src/app/fadderukene/(2026)/event-timeline-list.tsx @@ -2,7 +2,8 @@ import { PlaceHolderImage } from "@/components/atoms/PlaceHolderImage" import { AttendanceStatus } from "@/components/molecules/EventListItem/AttendanceStatus" -import { type Attendance, type Event, type EventWithAttendance, getAttendee } from "@dotkomonline/types" +import { type Attendance, getAttendee } from "@dotkomonline/rpc/attendance" +import type { Event, EventWithAttendance } from "@dotkomonline/rpc/event" import { Button, Label, diff --git a/apps/web/src/app/fadderukene/(2026)/event-timeline.tsx b/apps/web/src/app/fadderukene/(2026)/event-timeline.tsx index d710b28765..c3c7111d76 100644 --- a/apps/web/src/app/fadderukene/(2026)/event-timeline.tsx +++ b/apps/web/src/app/fadderukene/(2026)/event-timeline.tsx @@ -1,5 +1,5 @@ import { getServerSession } from "@/auth" -import type { EventWithAttendance } from "@dotkomonline/types" +import type { EventWithAttendance } from "@dotkomonline/rpc/event" import { Text } from "@dotkomonline/ui" import { EventTimelineList } from "./event-timeline-list" diff --git a/apps/web/src/app/fadderukene/lib.ts b/apps/web/src/app/fadderukene/lib.ts index a9e1829bee..1864671d32 100644 --- a/apps/web/src/app/fadderukene/lib.ts +++ b/apps/web/src/app/fadderukene/lib.ts @@ -1,5 +1,5 @@ import type { ContestId } from "@dotkomonline/rpc/contest" -import type { EventWithAttendance } from "@dotkomonline/types" +import type { EventWithAttendance } from "@dotkomonline/rpc/event" import { addWeeks, interval, subMonths } from "date-fns" export type FadderukePageProps = { diff --git a/apps/web/src/app/grupper/[slug]/page.tsx b/apps/web/src/app/grupper/[slug]/page.tsx index 9161aa1580..35bae1ec1a 100644 --- a/apps/web/src/app/grupper/[slug]/page.tsx +++ b/apps/web/src/app/grupper/[slug]/page.tsx @@ -1,5 +1,5 @@ import { server } from "@/utils/trpc/server" -import { createGroupPageUrl } from "@dotkomonline/types" +import { createGroupPageUrl } from "@dotkomonline/rpc/group" import { richTextToPlainText } from "@dotkomonline/utils" import type { Metadata } from "next" import { GroupPage } from "../components/GroupPage" diff --git a/apps/web/src/app/grupper/components/GroupPage.tsx b/apps/web/src/app/grupper/components/GroupPage.tsx index 28f682c358..53c921e4b8 100644 --- a/apps/web/src/app/grupper/components/GroupPage.tsx +++ b/apps/web/src/app/grupper/components/GroupPage.tsx @@ -2,7 +2,8 @@ import { EventList } from "@/app/arrangementer/components/EventList" import { GroupLogoAvatar } from "@/components/atoms/GroupLogo" import { getServerSession } from "@/auth" import { server } from "@/utils/trpc/server" -import { type GroupMember, type GroupRole, GroupRoleTypeEnum, type UserId, getGroupTypeName } from "@dotkomonline/types" +import { type GroupMember, type GroupRole, GroupRoleTypeEnum, getGroupTypeName } from "@dotkomonline/rpc/group" +import type { UserId } from "@dotkomonline/rpc/user" import { Avatar, AvatarFallback, AvatarImage, Badge, Button, RichText, Text, Title, cn } from "@dotkomonline/ui" import { getCurrentUTC } from "@dotkomonline/utils" import { diff --git a/apps/web/src/app/innstillinger/bruker/link/page.tsx b/apps/web/src/app/innstillinger/bruker/link/page.tsx index a596fced99..bbc6db82b7 100644 --- a/apps/web/src/app/innstillinger/bruker/link/page.tsx +++ b/apps/web/src/app/innstillinger/bruker/link/page.tsx @@ -5,7 +5,7 @@ import { redirect } from "next/navigation" import { ConfirmIdentityLinkButton } from "./ConfirmIdentityLinkButton" import { getIdentityLinkCookies } from "./actions" import { server } from "@/utils/trpc/server" -import { findActiveMembership, getMembershipTypeName, type User } from "@dotkomonline/types" +import { findActiveMembership, getMembershipTypeName, type User } from "@dotkomonline/rpc/user" import { IconArrowNarrowLeft, IconUser, IconUserFilled } from "@tabler/icons-react" export default async function LinkIdentityPage() { diff --git a/apps/web/src/app/innstillinger/medlemskap/page.tsx b/apps/web/src/app/innstillinger/medlemskap/page.tsx index 293d5e2e8e..91ae04480e 100644 --- a/apps/web/src/app/innstillinger/medlemskap/page.tsx +++ b/apps/web/src/app/innstillinger/medlemskap/page.tsx @@ -7,7 +7,7 @@ import { getSessionRecoveryMessages } from "@dotkomonline/utils" import { useTRPC } from "@/utils/trpc/client" import { useAuthenticatedUser } from "@/utils/use-authenticated-user" import { useFullPathname } from "@/utils/use-full-pathname" -import { findActiveMembership } from "@dotkomonline/types" +import { findActiveMembership } from "@dotkomonline/rpc/user" import { Button, Text, Title } from "@dotkomonline/ui" import { createAuthorizeUrl } from "@dotkomonline/utils" import { IconAlertTriangle, IconArrowUpRight } from "@tabler/icons-react" diff --git a/apps/web/src/app/innstillinger/profil/form.tsx b/apps/web/src/app/innstillinger/profil/form.tsx index 48475a4e7f..c7a2a1c829 100644 --- a/apps/web/src/app/innstillinger/profil/form.tsx +++ b/apps/web/src/app/innstillinger/profil/form.tsx @@ -9,7 +9,7 @@ import { type UserWrite, UserWriteSchema, getGenderName, -} from "@dotkomonline/types" +} from "@dotkomonline/rpc/user" import { Button, Label, diff --git a/apps/web/src/app/interessegrupper/[slug]/page.tsx b/apps/web/src/app/interessegrupper/[slug]/page.tsx index 40eb69e5da..056fca12d7 100644 --- a/apps/web/src/app/interessegrupper/[slug]/page.tsx +++ b/apps/web/src/app/interessegrupper/[slug]/page.tsx @@ -1,6 +1,6 @@ import { GroupPage } from "@/app/grupper/components/GroupPage" import { server } from "@/utils/trpc/server" -import { createGroupPageUrl } from "@dotkomonline/types" +import { createGroupPageUrl } from "@dotkomonline/rpc/group" import { richTextToPlainText } from "@dotkomonline/utils" import type { Metadata } from "next" diff --git a/apps/web/src/app/karriere/[id]/page.tsx b/apps/web/src/app/karriere/[id]/page.tsx index b12192303b..a04750f7d0 100644 --- a/apps/web/src/app/karriere/[id]/page.tsx +++ b/apps/web/src/app/karriere/[id]/page.tsx @@ -1,6 +1,7 @@ import { env } from "@/env" import { server } from "@/utils/trpc/server" -import type { Company, JobListing, JobListingEmployment } from "@dotkomonline/types" +import type { Company } from "@dotkomonline/rpc/company" +import type { JobListing, JobListingEmployment } from "@dotkomonline/rpc/job-listing" import { Button, RichText, Text, Title } from "@dotkomonline/ui" import { richTextToPlainText } from "@dotkomonline/utils" import { diff --git a/apps/web/src/app/karriere/company-filters-container.tsx b/apps/web/src/app/karriere/company-filters-container.tsx index 92415da9a6..a0d12baaa7 100644 --- a/apps/web/src/app/karriere/company-filters-container.tsx +++ b/apps/web/src/app/karriere/company-filters-container.tsx @@ -1,4 +1,4 @@ -import type { JobListingEmployment } from "@dotkomonline/types" +import type { JobListingEmployment } from "@dotkomonline/rpc/job-listing" import { Checkbox, Select, diff --git a/apps/web/src/app/karriere/filter-functions.ts b/apps/web/src/app/karriere/filter-functions.ts index d7e064d883..3cf2c687dc 100644 --- a/apps/web/src/app/karriere/filter-functions.ts +++ b/apps/web/src/app/karriere/filter-functions.ts @@ -1,4 +1,4 @@ -import type { JobListing } from "@dotkomonline/types" +import type { JobListing } from "@dotkomonline/rpc/job-listing" import type { EmploymentCheckbox, SortOption } from "./company-filters-container" export function filterJobListings( diff --git a/apps/web/src/app/karriere/page.tsx b/apps/web/src/app/karriere/page.tsx index 2b8a7f6ee3..9b5d1b8c06 100644 --- a/apps/web/src/app/karriere/page.tsx +++ b/apps/web/src/app/karriere/page.tsx @@ -1,7 +1,7 @@ "use client" import { filterJobListings, sortDates } from "@/app/karriere/filter-functions" import { useTRPC } from "@/utils/trpc/client" -import type { JobListing } from "@dotkomonline/types" +import type { JobListing } from "@dotkomonline/rpc/job-listing" import { Badge, Text, Title, cn } from "@dotkomonline/ui" import { IconCalendarDown, IconClockHour3, IconMapPin } from "@tabler/icons-react" import { useQuery } from "@tanstack/react-query" diff --git a/apps/web/src/app/offline/page.tsx b/apps/web/src/app/offline/page.tsx index 9c426be652..35e00d881f 100644 --- a/apps/web/src/app/offline/page.tsx +++ b/apps/web/src/app/offline/page.tsx @@ -1,6 +1,6 @@ import { OfflineCard } from "@/components/molecules/OfflineCard" import { server } from "@/utils/trpc/server" -import type { Offline } from "@dotkomonline/types" +import type { Offline } from "@dotkomonline/rpc/offline" import { Text, Title } from "@dotkomonline/ui" const OfflinePage = async () => { diff --git a/apps/web/src/app/om-linjeforeningen/page.tsx b/apps/web/src/app/om-linjeforeningen/page.tsx index feddae1d90..147cdcc6c0 100644 --- a/apps/web/src/app/om-linjeforeningen/page.tsx +++ b/apps/web/src/app/om-linjeforeningen/page.tsx @@ -1,7 +1,7 @@ import { GroupLogo } from "@/components/atoms/GroupLogo" import { OnlineIcon } from "@/components/atoms/OnlineIcon" import { server } from "@/utils/trpc/server" -import type { Group } from "@dotkomonline/types" +import type { Group } from "@dotkomonline/rpc/group" import { RichText, Text, Title } from "@dotkomonline/ui" import Image from "next/image" import Link from "next/link" diff --git a/apps/web/src/app/page.tsx b/apps/web/src/app/page.tsx index a99ba051dd..ef44d7d956 100644 --- a/apps/web/src/app/page.tsx +++ b/apps/web/src/app/page.tsx @@ -5,7 +5,8 @@ import { AuthNotice } from "@/components/notices/auth-notice" import { FadderApplicationsNotice } from "@/components/notices/fadder-applications-notice" import { server } from "@/utils/trpc/server" import { TZDate } from "@date-fns/tz" -import type { AttendanceSummary, BaseEvent, EventSummary, EventWithAttendanceSummary } from "@dotkomonline/types" +import type { AttendanceSummary } from "@dotkomonline/rpc/attendance" +import type { BaseEvent, EventSummary, EventWithAttendanceSummary } from "@dotkomonline/rpc/event" import { Button, RichText, Text, Tilt, Title, cn } from "@dotkomonline/ui" import { createEventPageUrl, getCurrentUTC } from "@dotkomonline/utils" import { IconArrowRight, IconCalendarEvent } from "@tabler/icons-react" diff --git a/apps/web/src/app/profil/[username]/ProfilePage.tsx b/apps/web/src/app/profil/[username]/ProfilePage.tsx index 7c8a375988..4326f142be 100644 --- a/apps/web/src/app/profil/[username]/ProfilePage.tsx +++ b/apps/web/src/app/profil/[username]/ProfilePage.tsx @@ -9,13 +9,9 @@ import { MembershipDisplay } from "@/components/molecules/MembershipDisplay/Memb import { env } from "@/env" import { useTRPC } from "@/utils/trpc/client" import { useUser } from "@auth0/nextjs-auth0/client" -import { - type VisiblePersonalMarkDetails, - createGroupPageUrl, - findActiveMembership, - getGenderName, - getMembershipTypeName, -} from "@dotkomonline/types" +import type { VisiblePersonalMarkDetails } from "@dotkomonline/rpc/mark" +import { createGroupPageUrl } from "@dotkomonline/rpc/group" +import { findActiveMembership, getGenderName, getMembershipTypeName } from "@dotkomonline/rpc/user" import { Avatar, AvatarFallback, diff --git a/apps/web/src/app/tilbakemelding/[eventId]/page.tsx b/apps/web/src/app/tilbakemelding/[eventId]/page.tsx index 18efd82840..58ac210cc6 100644 --- a/apps/web/src/app/tilbakemelding/[eventId]/page.tsx +++ b/apps/web/src/app/tilbakemelding/[eventId]/page.tsx @@ -1,7 +1,9 @@ import { EventFeedbackForm } from "@/app/tilbakemelding/components/FeedbackForm" import { getServerSession } from "@/auth" import { server } from "@/utils/trpc/server" -import type { Attendee, Event, FeedbackForm, FeedbackRejectionCause } from "@dotkomonline/types" +import type { Attendee } from "@dotkomonline/rpc/attendance" +import type { Event } from "@dotkomonline/rpc/event" +import type { FeedbackForm, FeedbackRejectionCause } from "@dotkomonline/rpc/feedback-form" import { Text, Title } from "@dotkomonline/ui" import { createAuthorizeUrl } from "@dotkomonline/utils" import { redirect } from "next/navigation" diff --git a/apps/web/src/app/tilbakemelding/components/FeedbackAnswerCard.tsx b/apps/web/src/app/tilbakemelding/components/FeedbackAnswerCard.tsx index 7e9669cfd8..3515edc274 100644 --- a/apps/web/src/app/tilbakemelding/components/FeedbackAnswerCard.tsx +++ b/apps/web/src/app/tilbakemelding/components/FeedbackAnswerCard.tsx @@ -1,6 +1,6 @@ "use client" -import type { FeedbackFormAnswer, FeedbackQuestion, FeedbackQuestionAnswer } from "@dotkomonline/types" +import type { FeedbackFormAnswer, FeedbackQuestion, FeedbackQuestionAnswer } from "@dotkomonline/rpc/feedback-form" import { Bar, BarChart, diff --git a/apps/web/src/app/tilbakemelding/components/FeedbackAnswersPage.tsx b/apps/web/src/app/tilbakemelding/components/FeedbackAnswersPage.tsx index 8829fac426..dc0fc87bf9 100644 --- a/apps/web/src/app/tilbakemelding/components/FeedbackAnswersPage.tsx +++ b/apps/web/src/app/tilbakemelding/components/FeedbackAnswersPage.tsx @@ -1,7 +1,7 @@ import { FeedbackResults } from "@/app/tilbakemelding/components/FeedbackResults" import { server } from "@/utils/trpc/server" -import type { EventId, FeedbackPublicResultsToken } from "@dotkomonline/types" - +import type { EventId } from "@dotkomonline/rpc/event" +import type { FeedbackPublicResultsToken } from "@dotkomonline/rpc/feedback-form" interface Props { eventId: EventId publicResultsToken?: FeedbackPublicResultsToken diff --git a/apps/web/src/app/tilbakemelding/components/FeedbackForm.tsx b/apps/web/src/app/tilbakemelding/components/FeedbackForm.tsx index 3dbc944195..08b25257ab 100644 --- a/apps/web/src/app/tilbakemelding/components/FeedbackForm.tsx +++ b/apps/web/src/app/tilbakemelding/components/FeedbackForm.tsx @@ -1,6 +1,7 @@ "use client" -import type { Attendee, FeedbackForm, FeedbackQuestion, FeedbackQuestionAnswer } from "@dotkomonline/types" +import type { Attendee } from "@dotkomonline/rpc/attendance" +import type { FeedbackForm, FeedbackQuestion, FeedbackQuestionAnswer } from "@dotkomonline/rpc/feedback-form" import { Button, Checkbox, diff --git a/apps/web/src/app/tilbakemelding/components/FeedbackResults.tsx b/apps/web/src/app/tilbakemelding/components/FeedbackResults.tsx index 8cc9ca7ea5..07bad915f4 100644 --- a/apps/web/src/app/tilbakemelding/components/FeedbackResults.tsx +++ b/apps/web/src/app/tilbakemelding/components/FeedbackResults.tsx @@ -1,13 +1,8 @@ "use client" -import type { - AttendancePool, - Attendee, - Event, - FeedbackFormAnswer, - FeedbackPublicResultsToken, - FeedbackQuestion, -} from "@dotkomonline/types" +import type { AttendancePool, Attendee } from "@dotkomonline/rpc/attendance" +import type { Event } from "@dotkomonline/rpc/event" +import type { FeedbackFormAnswer, FeedbackPublicResultsToken, FeedbackQuestion } from "@dotkomonline/rpc/feedback-form" import { Table, TableBody, TableCell, TableRow, Text, Title } from "@dotkomonline/ui" import { IconCalendarEvent, IconSchool } from "@tabler/icons-react" import { formatDate, isSameDay } from "date-fns" diff --git a/apps/web/src/components/atoms/PlaceHolderImage.tsx b/apps/web/src/components/atoms/PlaceHolderImage.tsx index 0070d00e77..1d297ba5a5 100644 --- a/apps/web/src/components/atoms/PlaceHolderImage.tsx +++ b/apps/web/src/components/atoms/PlaceHolderImage.tsx @@ -1,4 +1,4 @@ -import type { EventType } from "@dotkomonline/types" +import type { EventType } from "@dotkomonline/rpc/event" import { cn } from "@dotkomonline/ui" import type { ImageProps } from "next/image" import type { FC } from "react" diff --git a/apps/web/src/components/molecules/EventListItem/AttendanceStatus.tsx b/apps/web/src/components/molecules/EventListItem/AttendanceStatus.tsx index 2d24bfe723..1264df9331 100644 --- a/apps/web/src/components/molecules/EventListItem/AttendanceStatus.tsx +++ b/apps/web/src/components/molecules/EventListItem/AttendanceStatus.tsx @@ -10,7 +10,7 @@ import { getAttendanceCapacity, hasAttendeePaid, getReservedAttendeeCount, -} from "@dotkomonline/types" +} from "@dotkomonline/rpc/attendance" import { Text, Tooltip, TooltipContent, TooltipTrigger, cn } from "@dotkomonline/ui" import { IconCheck, IconClock, IconClockDollar, IconLock, IconUsers } from "@tabler/icons-react" import { formatDistanceToNowStrict, interval, isFuture, isWithinInterval } from "date-fns" diff --git a/apps/web/src/components/molecules/EventListItem/EventListItem.tsx b/apps/web/src/components/molecules/EventListItem/EventListItem.tsx index fa80fa2b66..0c8a08d80f 100644 --- a/apps/web/src/components/molecules/EventListItem/EventListItem.tsx +++ b/apps/web/src/components/molecules/EventListItem/EventListItem.tsx @@ -1,10 +1,5 @@ -import { - getAttendee, - type Attendance, - type AttendanceSummary, - type Event, - type EventSummary, -} from "@dotkomonline/types" +import { getAttendee, type Attendance, type AttendanceSummary } from "@dotkomonline/rpc/attendance" +import type { Event, EventSummary } from "@dotkomonline/rpc/event" import { Title, cn } from "@dotkomonline/ui" import { createEventPageUrl } from "@dotkomonline/utils" import { isPast } from "date-fns" diff --git a/apps/web/src/components/molecules/EventListItem/Thumbnail.tsx b/apps/web/src/components/molecules/EventListItem/Thumbnail.tsx index 6a41dbeb8b..502420b0dd 100644 --- a/apps/web/src/components/molecules/EventListItem/Thumbnail.tsx +++ b/apps/web/src/components/molecules/EventListItem/Thumbnail.tsx @@ -1,4 +1,4 @@ -import type { EventType } from "@dotkomonline/types" +import type { EventType } from "@dotkomonline/rpc/event" import { Badge, Tilt, cn, type BadgeColor } from "@dotkomonline/ui" import Image from "next/image" import type { FC } from "react" diff --git a/apps/web/src/components/molecules/GroupListItem/index.tsx b/apps/web/src/components/molecules/GroupListItem/index.tsx index 86b9a68835..afb5769113 100644 --- a/apps/web/src/components/molecules/GroupListItem/index.tsx +++ b/apps/web/src/components/molecules/GroupListItem/index.tsx @@ -1,6 +1,6 @@ import { GroupLogo } from "@/components/atoms/GroupLogo" import { OnlineIcon } from "@/components/atoms/OnlineIcon" -import { type Group, createGroupPageUrl, getGroupTypeName } from "@dotkomonline/types" +import { type Group, createGroupPageUrl, getGroupTypeName } from "@dotkomonline/rpc/group" import { Badge, RichText, Text, Title, cn } from "@dotkomonline/ui" import { IconMoonFilled } from "@tabler/icons-react" import Link from "next/link" diff --git a/apps/web/src/components/molecules/MembershipDisplay/MembershipDisplay.tsx b/apps/web/src/components/molecules/MembershipDisplay/MembershipDisplay.tsx index d837c04a06..f09168ee4d 100644 --- a/apps/web/src/components/molecules/MembershipDisplay/MembershipDisplay.tsx +++ b/apps/web/src/components/molecules/MembershipDisplay/MembershipDisplay.tsx @@ -1,5 +1,5 @@ import { OnlineIcon } from "@/components/atoms/OnlineIcon" -import { type Membership, getMembershipTypeName, getSpecializationName } from "@dotkomonline/types" +import { type Membership, getMembershipTypeName, getSpecializationName } from "@dotkomonline/rpc/user" import { cn, Text } from "@dotkomonline/ui" import { createAuthorizeUrl, getStudyGrade, isMembershipActiveUntilNextSemesterStart } from "@dotkomonline/utils" import { IconArrowUpRight, IconIdOff } from "@tabler/icons-react" diff --git a/apps/web/src/components/molecules/OfflineCard/index.tsx b/apps/web/src/components/molecules/OfflineCard/index.tsx index aee2467c6f..4e7e9cb7ab 100644 --- a/apps/web/src/components/molecules/OfflineCard/index.tsx +++ b/apps/web/src/components/molecules/OfflineCard/index.tsx @@ -1,4 +1,4 @@ -import type { Offline } from "@dotkomonline/types" +import type { Offline } from "@dotkomonline/rpc/offline" import { Text, cn } from "@dotkomonline/ui" import Image from "next/image" import Link from "next/link" diff --git a/apps/web/src/components/notices/attendance-payment-oops-notice.tsx b/apps/web/src/components/notices/attendance-payment-oops-notice.tsx index e15a58b740..17748e300d 100644 --- a/apps/web/src/components/notices/attendance-payment-oops-notice.tsx +++ b/apps/web/src/components/notices/attendance-payment-oops-notice.tsx @@ -1,4 +1,5 @@ -import type { UserId, EventWithAttendance } from "@dotkomonline/types" +import type { UserId } from "@dotkomonline/rpc/user" +import type { EventWithAttendance } from "@dotkomonline/rpc/event" import { Text } from "@dotkomonline/ui" import { EventListItem } from "../molecules/EventListItem/EventListItem" diff --git a/apps/web/src/components/organisms/GroupList/index.tsx b/apps/web/src/components/organisms/GroupList/index.tsx index 63da54ee47..76acf71798 100644 --- a/apps/web/src/components/organisms/GroupList/index.tsx +++ b/apps/web/src/components/organisms/GroupList/index.tsx @@ -1,5 +1,5 @@ import { GroupListItem } from "@/components/molecules/GroupListItem" -import type { Group } from "@dotkomonline/types" +import type { Group } from "@dotkomonline/rpc/group" import { compareAsc } from "date-fns" import type { FC } from "react" diff --git a/packages/db/.gitignore b/packages/db/.gitignore index f98bf57aea..3a254f0548 100644 --- a/packages/db/.gitignore +++ b/packages/db/.gitignore @@ -1,5 +1,3 @@ node_modules # Keep environment variables out of version control -.env - -generated/schema/.prisma-zod-generator-manifest.json \ No newline at end of file +.env \ No newline at end of file diff --git a/packages/db/generated/prisma/internal/class.ts b/packages/db/generated/prisma/internal/class.ts index 81b047a8f5..42e9802d49 100644 --- a/packages/db/generated/prisma/internal/class.ts +++ b/packages/db/generated/prisma/internal/class.ts @@ -23,7 +23,7 @@ const config: runtime.GetPrismaClientConfig = { "clientVersion": "7.8.0", "engineVersion": "3c6e192761c0362d496ed980de936e2f3cebcd3a", "activeProvider": "postgresql", - "inlineSchema": "generator client {\n provider = \"prisma-client\"\n output = \"../generated/prisma\"\n\n previewFeatures = [\"relationJoins\", \"typedSql\"]\n}\n\ngenerator zod {\n provider = \"prisma-zod-generator\"\n output = \"../generated/schema\"\n config = \"../zod-generator.config.json\"\n}\n\ndatasource db {\n provider = \"postgresql\"\n}\n\nenum MembershipType {\n BACHELOR_STUDENT @map(\"BACHELOR_STUDENT\")\n MASTER_STUDENT @map(\"MASTER_STUDENT\")\n /// \"Ridder av det Indre Lager\" is an honorary membership type for those who have exceptionally contributed beyond\n /// expectations to Linjeforeningen Online. For our system, it is functionally identical to `SOCIAL_MEMBER` (sosialt\n /// medlem), but it is highly prestigious and grants a lifetime membership.\n KNIGHT @map(\"KNIGHT\")\n /// \"Sosialt medlem\" is a membership type for those who want membership with Linjeforeningen Online, but are not\n /// technically informatics students at NTNU (commonly those who internally transfer from other study programs at\n /// NTNU).\n ///\n /// This membership type exists to not allow them to attend (most) events with companies, as we usually sign\n /// contracts saying we will provide \"informatics students\", but we still want to include them for all other events.\n SOCIAL_MEMBER @map(\"SOCIAL_MEMBER\")\n\n @@map(\"membership_type\")\n}\n\n/// Taken from the Feide API. The values were found by digging around in our Auth0 user profiles.\n///\n/// We have an additional value `UNKNOWN` to represent users that do not have a specialization or if some new value is\n/// suddenly added to the Feide API that we do not yet know about.\nenum MembershipSpecialization {\n ARTIFICIAL_INTELLIGENCE @map(\"ARTIFICIAL_INTELLIGENCE\")\n DATABASE_AND_SEARCH @map(\"DATABASE_AND_SEARCH\")\n INTERACTION_DESIGN @map(\"INTERACTION_DESIGN\")\n SOFTWARE_ENGINEERING @map(\"SOFTWARE_ENGINEERING\")\n UNKNOWN @map(\"UNKNOWN\")\n\n @@map(\"membership_specialization\")\n}\n\nmodel Membership {\n id String @id @default(uuid())\n type MembershipType\n /// Specialization of the student. This is relevant for Master students. For all other students, this value should be\n /// `UNKNOWN`.\n specialization MembershipSpecialization? @default(UNKNOWN)\n start DateTime @db.Timestamptz(3)\n /// End date of the membership. Null means the membership does not have an end date, and lasts forever.\n end DateTime? @db.Timestamptz(3)\n /// The semester the student is in. 0-indexed.\n ///\n /// This value is meant to be used to calculate study grade (year), and can be used to calculate study start date\n /// with the `start` date of the membership. It is nullable because `KNIGHT` membership type is a lifetime\n /// membership.\n semester Int?\n\n userId String @map(\"user_id\")\n user User @relation(fields: [userId], references: [id])\n\n @@index([userId], name: \"idx_membership_user_id\")\n @@map(\"membership\")\n}\n\nenum Gender {\n MALE @map(\"MALE\")\n FEMALE @map(\"FEMALE\")\n NON_BINARY @map(\"NON_BINARY\")\n OTHER @map(\"OTHER\")\n UNKNOWN @map(\"UNKNOWN\")\n\n @@map(\"gender\")\n}\n\nmodel User {\n /// OpenID Connect Subject claim - for this reason there is no @default(uuid()) here.\n id String @id\n username String @unique @map(\"username\")\n name String?\n email String?\n imageUrl String? @map(\"image_url\")\n biography String?\n phone String?\n gender Gender @default(UNKNOWN)\n dietaryRestrictions String? @map(\"dietary_restrictions\")\n ntnuUsername String? @map(\"ntnu_username\")\n flags String[]\n /// Used for identifying the user in Google Workspace (my.name@online.ntnu.no)\n workspaceUserId String? @unique @map(\"workspace_user_id\")\n createdAt DateTime @default(now()) @map(\"created_at\") @db.Timestamptz(3)\n updatedAt DateTime @default(now()) @updatedAt @map(\"updated_at\") @db.Timestamptz(3)\n\n privacyPermissionsId String? @unique @map(\"privacy_permissions_id\")\n privacyPermissions PrivacyPermissions?\n notificationPermissionsId String? @unique @map(\"notification_permissions_id\")\n notificationPermissions NotificationPermissions?\n\n attendee Attendee[]\n personalMark PersonalMark[]\n groupMemberships GroupMembership[]\n memberships Membership[]\n givenMarks PersonalMark[] @relation(\"GivenBy\")\n attendeesRefunded Attendee[] @relation(name: \"RefundedBy\")\n auditLogs AuditLog[]\n deregisterReasons DeregisterReason[]\n notificationsReceived NotificationRecipient[]\n notificationsCreated Notification[] @relation(\"created_by\")\n notificationsUpdated Notification[] @relation(\"last_updated_by\")\n contestants Contestant[]\n contestTeams ContestTeam[] @relation(\"ContestTeamMember\")\n\n @@map(\"ow_user\")\n}\n\nmodel Company {\n id String @id @default(uuid())\n name String\n slug String @unique\n description String?\n phone String?\n email String?\n website String\n location String?\n imageUrl String? @map(\"image_url\")\n createdAt DateTime @default(now()) @map(\"created_at\") @db.Timestamptz(3)\n updatedAt DateTime @default(now()) @updatedAt @map(\"updated_at\") @db.Timestamptz(3)\n\n events EventCompany[]\n JobListing JobListing[]\n\n @@map(\"company\")\n}\n\nenum GroupType {\n COMMITTEE @map(\"COMMITTEE\")\n NODE_COMMITTEE @map(\"NODE_COMMITTEE\")\n ASSOCIATED @map(\"ASSOCIATED\")\n INTEREST_GROUP @map(\"INTEREST_GROUP\")\n EMAIL_ONLY @map(\"EMAIL_ONLY\")\n\n @@map(\"group_type\")\n}\n\nenum GroupMemberVisibility {\n ALL_MEMBERS @map(\"ALL_MEMBERS\")\n WITH_ROLES @map(\"WITH_ROLES\")\n LEADER @map(\"LEADER\")\n NONE @map(\"NONE\")\n\n @@map(\"group_member_visibility\")\n}\n\nenum GroupRecruitmentMethod {\n NONE @map(\"NONE\")\n SPRING_APPLICATION @map(\"SPRING_APPLICATION\")\n AUTUMN_APPLICATION @map(\"AUTUMN_APPLICATION\")\n GENERAL_ASSEMBLY @map(\"GENERAL_ASSEMBLY\")\n NOMINATION @map(\"NOMINATION\")\n OTHER @map(\"OTHER\")\n}\n\nmodel Group {\n slug String @id @unique\n abbreviation String\n name String?\n shortDescription String? @map(\"short_description\")\n description String\n imageUrl String? @map(\"image_url\")\n email String?\n contactUrl String? @map(\"contact_url\")\n slackUrl String? @map(\"slack_url\")\n showLeaderAsContact Boolean @default(false) @map(\"show_leader_as_contact\")\n createdAt DateTime @default(now()) @map(\"created_at\") @db.Timestamptz(3)\n deactivatedAt DateTime? @map(\"deactivated_at\")\n workspaceGroupId String? @unique @map(\"workspace_group_id\")\n memberVisibility GroupMemberVisibility @default(ALL_MEMBERS) @map(\"member_visibility\")\n recruitmentMethod GroupRecruitmentMethod @default(NONE) @map(\"recruitment_method\")\n type GroupType\n\n events EventHostingGroup[]\n contests Contest[] @relation(\"ContestOrganizerGroups\")\n memberships GroupMembership[]\n marks MarkGroup[]\n roles GroupRole[]\n notifications Notification[]\n\n @@map(\"group\")\n}\n\nmodel GroupMembership {\n id String @id @default(uuid())\n start DateTime @db.Timestamptz(3)\n end DateTime? @db.Timestamptz(3)\n createdAt DateTime @default(now()) @map(\"created_at\") @db.Timestamptz(3)\n updatedAt DateTime @default(now()) @updatedAt @map(\"updated_at\") @db.Timestamptz(3)\n\n groupId String @map(\"group_id\")\n userId String @map(\"user_id\")\n group Group @relation(fields: [groupId], references: [slug], onDelete: Cascade)\n user User @relation(fields: [userId], references: [id], onDelete: Cascade)\n\n roles GroupMembershipRole[]\n\n @@map(\"group_membership\")\n}\n\nmodel GroupMembershipRole {\n membershipId String @map(\"membership_id\")\n roleId String @map(\"role_id\")\n membership GroupMembership @relation(fields: [membershipId], references: [id], onDelete: Cascade)\n role GroupRole @relation(fields: [roleId], references: [id], onDelete: Cascade)\n\n @@id([membershipId, roleId])\n @@map(\"group_membership_role\")\n}\n\nenum GroupRoleType {\n LEADER @map(\"LEADER\")\n PUNISHER @map(\"PUNISHER\")\n TREASURER @map(\"TREASURER\")\n COSMETIC @map(\"COSMETIC\")\n DEPUTY_LEADER @map(\"DEPUTY_LEADER\")\n TRUSTEE @map(\"TRUSTEE\")\n EMAIL_ONLY @map(\"EMAIL_ONLY\")\n TEMPORARILY_LEAVE @map(\"TEMPORARILY_LEAVE\")\n /// The editor in chief for Online's magazine \"Offline\" (\"Redaktør\" in Norwegian)\n EDITOR_IN_CHIEF @map(\"EDITOR_IN_CHIEF\")\n\n @@map(\"group_role_type\")\n}\n\nmodel GroupRole {\n id String @id @default(uuid())\n name String\n type GroupRoleType @default(COSMETIC)\n\n groupId String @map(\"group_id\")\n group Group @relation(fields: [groupId], references: [slug], onDelete: Cascade)\n\n groupMembershipRoles GroupMembershipRole[]\n\n @@unique([groupId, name])\n @@map(\"group_role\")\n}\n\nenum EventStatus {\n DRAFT @map(\"DRAFT\")\n PUBLIC @map(\"PUBLIC\")\n DELETED @map(\"DELETED\")\n\n @@map(\"event_status\")\n}\n\nenum EventType {\n /// Generalforsamling\n GENERAL_ASSEMBLY @map(\"GENERAL_ASSEMBLY\")\n /// Bedriftspresentasjon\n COMPANY @map(\"COMPANY\")\n /// Kurs\n ACADEMIC @map(\"ACADEMIC\")\n /// Sosialt\n SOCIAL @map(\"SOCIAL\")\n // This type is for the rare occation we have an event that is only open to committee members.\n /// Komitéarrangement\n INTERNAL @map(\"INTERNAL\")\n OTHER @map(\"OTHER\")\n // This type is for a committe called \"velkom\" and are special social events for new students.\n // These have a separate type because we have historically hid these from event lists to not\n // spam students that are not new with these events. In older versions of OnlineWeb these\n // were even treated as a completely separate event entity.\n /// Velkom/Fadderukene\n WELCOME @map(\"WELCOME\")\n\n @@map(\"event_type\")\n}\n\nmodel Attendance {\n id String @id @default(uuid())\n registerStart DateTime @map(\"register_start\") @db.Timestamptz(3)\n registerEnd DateTime @map(\"register_end\") @db.Timestamptz(3)\n deregisterDeadline DateTime @map(\"deregister_deadline\") @db.Timestamptz(3)\n selections Json @default(\"[]\")\n createdAt DateTime @default(now()) @map(\"created_at\") @db.Timestamptz(3)\n updatedAt DateTime @default(now()) @updatedAt @map(\"updated_at\") @db.Timestamptz(3)\n /// The price as a whole integer in NOK (value 100 means NOK100.00)\n attendancePrice Int? @map(\"attendance_price\")\n\n pools AttendancePool[]\n attendees Attendee[]\n events Event[]\n\n @@map(\"attendance\")\n}\n\nmodel AttendancePool {\n id String @id @default(uuid())\n title String\n mergeDelayHours Int? @map(\"merge_delay_hours\")\n yearCriteria Json @map(\"year_criteria\")\n capacity Int\n createdAt DateTime @default(now()) @map(\"created_at\") @db.Timestamptz(3)\n updatedAt DateTime @default(now()) @updatedAt @map(\"updated_at\") @db.Timestamptz(3)\n\n attendanceId String @map(\"attendance_id\")\n taskId String? @map(\"task_id\")\n attendance Attendance @relation(fields: [attendanceId], references: [id])\n task Task? @relation(fields: [taskId], references: [id], onDelete: Cascade)\n\n attendees Attendee[]\n\n @@index([attendanceId], name: \"idx_attendance_pool_attendance_id\")\n @@map(\"attendance_pool\")\n}\n\nmodel Attendee {\n id String @id @default(uuid())\n /// To preserve the user's grade at the time of registration\n userGrade Int? @map(\"user_grade\")\n feedbackFormAnswer FeedbackFormAnswer?\n /// Which options the user has selected from the Attendance selections\n selections Json @default(\"[]\")\n reserved Boolean\n earliestReservationAt DateTime @map(\"earliest_reservation_at\") @db.Timestamptz(3)\n attendedAt DateTime? @map(\"attended_at\") @db.Timestamptz(3)\n createdAt DateTime @default(now()) @map(\"created_at\") @db.Timestamptz(3)\n updatedAt DateTime @default(now()) @updatedAt @map(\"updated_at\") @db.Timestamptz(3)\n paymentDeadline DateTime? @map(\"payment_deadline\")\n paymentLink String? @map(\"payment_link\")\n paymentId String? @map(\"payment_id\")\n paymentReservedAt DateTime? @map(\"payment_reserved_at\")\n paymentChargeDeadline DateTime? @map(\"payment_charge_deadline\")\n paymentChargedAt DateTime? @map(\"payment_charged_at\")\n paymentRefundedAt DateTime? @map(\"payment_refunded_at\")\n paymentCheckoutUrl String? @map(\"payment_checkout_url\")\n\n attendanceId String @map(\"attendance_id\")\n userId String @map(\"user_id\")\n attendancePoolId String @map(\"attendance_pool_id\")\n paymentRefundedById String? @map(\"payment_refunded_by_id\")\n attendance Attendance @relation(fields: [attendanceId], references: [id])\n user User @relation(fields: [userId], references: [id])\n attendancePool AttendancePool @relation(fields: [attendancePoolId], references: [id])\n paymentRefundedBy User? @relation(fields: [paymentRefundedById], references: [id], name: \"RefundedBy\")\n\n @@unique([attendanceId, userId], name: \"attendee_unique\")\n @@map(\"attendee\")\n}\n\nmodel Event {\n id String @id @default(uuid())\n title String\n start DateTime @db.Timestamptz(3)\n end DateTime @db.Timestamptz(3)\n status EventStatus\n description String\n shortDescription String? @map(\"short_description\")\n imageUrl String? @map(\"image_url\")\n locationTitle String? @map(\"location_title\")\n locationAddress String? @map(\"location_address\")\n locationLink String? @map(\"location_link\")\n type EventType\n feedbackForm FeedbackForm?\n markForMissedAttendance Boolean @default(true) @map(\"mark_for_missed_attendance\")\n fadderuke Fadderuke?\n createdAt DateTime @default(now()) @map(\"created_at\") @db.Timestamptz(3)\n updatedAt DateTime @default(now()) @updatedAt @map(\"updated_at\") @db.Timestamptz(3)\n\n attendanceId String? @map(\"attendance_id\")\n parentId String? @map(\"parent_id\")\n contestId String? @map(\"contest_id\")\n attendance Attendance? @relation(fields: [attendanceId], references: [id])\n parent Event? @relation(\"children\", fields: [parentId], references: [id], map: \"event_parent_fkey\")\n children Event[] @relation(\"children\")\n contest Contest? @relation(fields: [contestId], references: [id], onDelete: SetNull)\n\n companies EventCompany[]\n hostingGroups EventHostingGroup[]\n deregisterReasons DeregisterReason[]\n\n /// Historical metadata -- This is the id of the event in the previous version of OnlineWeb, if it was imported from\n /// the previous version\n metadataImportId Int? @map(\"metadata_import_id\")\n\n @@index([contestId])\n @@map(\"event\")\n}\n\nmodel EventCompany {\n eventId String @map(\"event_id\")\n companyId String @map(\"company_id\")\n event Event @relation(fields: [eventId], references: [id])\n company Company @relation(fields: [companyId], references: [id])\n\n @@id([eventId, companyId])\n @@map(\"event_company\")\n}\n\nenum MarkType {\n MANUAL\n LATE_ATTENDANCE\n MISSED_ATTENDANCE\n MISSING_FEEDBACK\n MISSING_PAYMENT\n}\n\nmodel Mark {\n id String @id @default(uuid())\n title String\n details String?\n /// Duration in days\n duration Int\n weight Int\n type MarkType @default(MANUAL)\n createdAt DateTime @default(now()) @map(\"created_at\") @db.Timestamptz(3)\n updatedAt DateTime @default(now()) @updatedAt @map(\"updated_at\") @db.Timestamptz(3)\n\n users PersonalMark[]\n groups MarkGroup[]\n\n @@map(\"mark\")\n}\n\nmodel MarkGroup {\n markId String @map(\"mark_id\")\n groupId String @map(\"group_id\")\n mark Mark @relation(fields: [markId], references: [id])\n group Group @relation(fields: [groupId], references: [slug])\n\n @@id([markId, groupId])\n @@map(\"mark_group\")\n}\n\nmodel PersonalMark {\n createdAt DateTime @default(now()) @map(\"created_at\") @db.Timestamptz(3)\n\n markId String @map(\"mark_id\")\n userId String @map(\"user_id\")\n givenById String? @map(\"given_by_id\")\n mark Mark @relation(fields: [markId], references: [id])\n user User @relation(fields: [userId], references: [id])\n givenBy User? @relation(\"GivenBy\", fields: [givenById], references: [id])\n\n @@id([markId, userId])\n @@map(\"personal_mark\")\n}\n\nmodel PrivacyPermissions {\n id String @id @default(uuid())\n user User @relation(fields: [userId], references: [id])\n userId String @unique @map(\"user_id\")\n // TODO: rename to ~\"privateProfile\" and require authentication to view profile if true\n profileVisible Boolean @default(true) @map(\"profile_visible\")\n usernameVisible Boolean @default(true) @map(\"username_visible\")\n emailVisible Boolean @default(false) @map(\"email_visible\")\n phoneVisible Boolean @default(false) @map(\"phone_visible\")\n // TODO: delete this prop -- we do not have an address field on User\n addressVisible Boolean @default(false) @map(\"address_visible\")\n // TODO: default to true\n attendanceVisible Boolean @default(false) @map(\"attendance_visible\")\n createdAt DateTime @default(now()) @map(\"created_at\") @db.Timestamptz(3)\n updatedAt DateTime @default(now()) @updatedAt @map(\"updated_at\") @db.Timestamptz(3)\n\n @@map(\"privacy_permissions\")\n}\n\nmodel NotificationPermissions {\n id String @id @default(uuid())\n user User @relation(fields: [userId], references: [id])\n userId String @unique @map(\"user_id\")\n applications Boolean @default(true)\n newArticles Boolean @default(true) @map(\"new_articles\")\n standardNotifications Boolean @default(true) @map(\"standard_notifications\")\n groupMessages Boolean @default(true) @map(\"group_messages\")\n markRulesUpdates Boolean @default(true) @map(\"mark_rules_updates\")\n receipts Boolean @default(true)\n registrationByAdministrator Boolean @default(true) @map(\"registration_by_administrator\")\n registrationStart Boolean @default(true) @map(\"registration_start\")\n createdAt DateTime @default(now()) @map(\"created_at\") @db.Timestamptz(3)\n updatedAt DateTime @default(now()) @updatedAt @map(\"updated_at\") @db.Timestamptz(3)\n\n @@map(\"notification_permissions\")\n}\n\nmodel EventHostingGroup {\n groupId String @map(\"group_id\")\n eventId String @map(\"event_id\")\n group Group @relation(fields: [groupId], references: [slug])\n event Event @relation(fields: [eventId], references: [id])\n\n @@id([groupId, eventId])\n @@index([eventId], name: \"idx_event_hosting_group_event_id\")\n @@map(\"event_hosting_group\")\n}\n\nenum EmploymentType {\n PARTTIME @map(\"PARTTIME\")\n FULLTIME @map(\"FULLTIME\")\n SUMMER_INTERNSHIP @map(\"SUMMER_INTERNSHIP\")\n OTHER @map(\"OTHER\")\n\n @@map(\"employment_type\")\n}\n\nmodel JobListing {\n id String @id @default(uuid())\n title String\n description String\n shortDescription String? @map(\"short_description\")\n start DateTime @db.Timestamptz(3)\n end DateTime @db.Timestamptz(3)\n featured Boolean\n hidden Boolean\n deadline DateTime? @db.Timestamptz(3)\n employment EmploymentType\n applicationLink String? @map(\"application_link\")\n applicationEmail String? @map(\"application_email\")\n ///Applications are reviewed as soon as they are submitted\n rollingAdmission Boolean @map(\"rolling_admission\")\n createdAt DateTime @default(now()) @map(\"created_at\") @db.Timestamptz(3)\n updatedAt DateTime @default(now()) @updatedAt @map(\"updated_at\") @db.Timestamptz(3)\n\n companyId String @map(\"company_id\")\n company Company @relation(fields: [companyId], references: [id])\n\n locations JobListingLocation[]\n\n @@map(\"job_listing\")\n}\n\nmodel JobListingLocation {\n name String\n createdAt DateTime @default(now()) @map(\"created_at\") @db.Timestamptz(3)\n\n jobListingId String @map(\"job_listing_id\")\n jobListing JobListing @relation(fields: [jobListingId], references: [id])\n\n @@id([name, jobListingId])\n @@map(\"job_listing_location\")\n}\n\nmodel Offline {\n id String @id @default(uuid())\n title String\n fileUrl String? @map(\"file_url\")\n imageUrl String? @map(\"image_url\")\n publishedAt DateTime @map(\"published_at\") @db.Timestamptz(3)\n createdAt DateTime @default(now()) @map(\"created_at\") @db.Timestamptz(3)\n updatedAt DateTime @default(now()) @updatedAt @map(\"updated_at\") @db.Timestamptz(3)\n\n @@map(\"offline\")\n}\n\nmodel Article {\n id String @id @default(uuid())\n slug String @unique\n title String\n author String\n photographer String\n imageUrl String @map(\"image_url\")\n excerpt String\n content String\n isFeatured Boolean @default(false) @map(\"is_featured\")\n vimeoId String? @map(\"vimeo_id\")\n createdAt DateTime @default(now()) @map(\"created_at\") @db.Timestamptz(3)\n updatedAt DateTime @default(now()) @updatedAt @map(\"updated_at\") @db.Timestamptz(3)\n\n tags ArticleTagLink[]\n\n @@map(\"article\")\n}\n\nmodel ArticleTag {\n name String @id\n\n articles ArticleTagLink[]\n\n @@map(\"article_tag\")\n}\n\nmodel ArticleTagLink {\n articleId String @map(\"article_id\")\n tagName String @map(\"tag_name\")\n article Article @relation(fields: [articleId], references: [id])\n tag ArticleTag @relation(fields: [tagName], references: [name])\n\n @@id([articleId, tagName])\n @@map(\"article_tag_link\")\n}\n\nenum TaskType {\n RESERVE_ATTENDEE @map(\"RESERVE_ATTENDEE\")\n CHARGE_ATTENDEE @map(\"CHARGE_ATTENDEE\")\n MERGE_ATTENDANCE_POOLS @map(\"MERGE_ATTENDANCE_POOLS\")\n VERIFY_PAYMENT @map(\"VERIFY_PAYMENT\")\n VERIFY_FEEDBACK_ANSWERED @map(\"VERIFY_FEEDBACK_ANSWERED\")\n SEND_FEEDBACK_FORM_EMAILS @map(\"SEND_FEEDBACK_FORM_EMAILS\")\n VERIFY_ATTENDEE_ATTENDED @map(\"VERIFY_ATTENDEE_ATTENDED\")\n\n @@map(\"task_type\")\n}\n\nenum TaskStatus {\n PENDING @map(\"PENDING\")\n RUNNING @map(\"RUNNING\")\n COMPLETED @map(\"COMPLETED\")\n FAILED @map(\"FAILED\")\n CANCELED @map(\"CANCELED\")\n\n @@map(\"task_status\")\n}\n\nmodel Task {\n id String @id @default(uuid())\n type TaskType\n status TaskStatus @default(PENDING)\n payload Json @default(\"{}\")\n createdAt DateTime @default(now()) @map(\"created_at\") @db.Timestamptz(3)\n scheduledAt DateTime @map(\"scheduled_at\") @db.Timestamptz(3)\n processedAt DateTime? @map(\"processed_at\") @db.Timestamptz(3)\n\n recurringTaskId String? @map(\"recurring_task_id\")\n recurringTask RecurringTask? @relation(fields: [recurringTaskId], references: [id], onDelete: SetNull)\n\n attendancePools AttendancePool[]\n notifications Notification[]\n\n @@index([scheduledAt, status], name: \"idx_job_scheduled_at_status\")\n @@map(\"task\")\n}\n\nmodel RecurringTask {\n id String @id @default(uuid())\n type TaskType\n payload Json @default(\"{}\")\n createdAt DateTime @default(now()) @map(\"created_at\") @db.Timestamptz(3)\n schedule String\n lastRunAt DateTime? @map(\"last_run_at\") @db.Timestamptz(3)\n nextRunAt DateTime @map(\"next_run_at\") @db.Timestamptz(3)\n\n tasks Task[]\n\n @@index([nextRunAt])\n @@map(\"recurring_task\")\n}\n\nenum FeedbackQuestionType {\n TEXT @map(\"TEXT\")\n LONGTEXT @map(\"LONGTEXT\")\n RATING @map(\"RATING\")\n CHECKBOX @map(\"CHECKBOX\")\n SELECT @map(\"SELECT\")\n MULTISELECT @map(\"MULTISELECT\")\n\n @@map(\"feedback_question_type\")\n}\n\nenum DeregisterReasonType {\n SCHOOL @map(\"SCHOOL\")\n WORK @map(\"WORK\")\n ECONOMY @map(\"ECONOMY\")\n TIME @map(\"TIME\")\n SICK @map(\"SICK\")\n NO_FAMILIAR_FACES @map(\"NO_FAMILIAR_FACES\")\n OTHER @map(\"OTHER\")\n\n @@map(\"deregister_reason_type\")\n}\n\nmodel FeedbackForm {\n id String @id @default(uuid())\n publicResultsToken String @unique @default(uuid()) @map(\"public_results_token\")\n createdAt DateTime @default(now()) @map(\"created_at\") @db.Timestamptz(3)\n updatedAt DateTime @default(now()) @updatedAt @map(\"updated_at\") @db.Timestamptz(3)\n answerDeadline DateTime @map(\"answer_deadline\") @db.Timestamptz(3)\n\n eventId String @unique @map(\"event_id\")\n event Event @relation(fields: [eventId], references: [id])\n\n questions FeedbackQuestion[]\n answers FeedbackFormAnswer[]\n\n @@map(\"feedback_form\")\n}\n\nmodel FeedbackQuestion {\n id String @id @default(uuid())\n label String\n required Boolean @default(false)\n showInPublicResults Boolean @default(true) @map(\"show_in_public_results\")\n type FeedbackQuestionType\n order Int\n createdAt DateTime @default(now()) @map(\"created_at\") @db.Timestamptz(3)\n updatedAt DateTime @default(now()) @updatedAt @map(\"updated_at\") @db.Timestamptz(3)\n\n feedbackFormId String @map(\"feedback_form_id\")\n feedbackForm FeedbackForm @relation(fields: [feedbackFormId], references: [id], onDelete: Cascade)\n\n options FeedbackQuestionOption[]\n answers FeedbackQuestionAnswer[] @relation(\"QuestionAnswers\")\n\n @@map(\"feedback_question\")\n}\n\nmodel FeedbackQuestionOption {\n id String @id @default(uuid())\n name String\n\n questionId String @map(\"question_id\")\n question FeedbackQuestion @relation(fields: [questionId], references: [id], onDelete: Cascade)\n\n selectedInAnswers FeedbackQuestionAnswerOptionLink[]\n\n @@unique([questionId, name])\n @@map(\"feedback_question_option\")\n}\n\nmodel FeedbackQuestionAnswer {\n id String @id @default(uuid())\n value Json?\n\n questionId String @map(\"question_id\")\n formAnswerId String @map(\"form_answer_id\")\n question FeedbackQuestion @relation(\"QuestionAnswers\", fields: [questionId], references: [id])\n formAnswer FeedbackFormAnswer @relation(\"FormAnswers\", fields: [formAnswerId], references: [id], onDelete: Cascade)\n\n selectedOptions FeedbackQuestionAnswerOptionLink[]\n\n @@map(\"feedback_question_answer\")\n}\n\nmodel FeedbackQuestionAnswerOptionLink {\n feedbackQuestionOptionId String @map(\"feedback_question_option_id\")\n feedbackQuestionAnswerId String @map(\"feedback_question_answer_id\")\n feedbackQuestionOption FeedbackQuestionOption @relation(fields: [feedbackQuestionOptionId], references: [id])\n feedbackQuestionAnswer FeedbackQuestionAnswer @relation(fields: [feedbackQuestionAnswerId], references: [id], onDelete: Cascade)\n\n @@id([feedbackQuestionOptionId, feedbackQuestionAnswerId])\n @@map(\"feedback_answer_option_link\")\n}\n\nmodel FeedbackFormAnswer {\n id String @id @default(uuid())\n createdAt DateTime @default(now()) @map(\"created_at\") @db.Timestamptz(3)\n updatedAt DateTime @default(now()) @updatedAt @map(\"updated_at\") @db.Timestamptz(3)\n\n feedbackFormId String @map(\"feedback_form_id\")\n attendeeId String @unique @map(\"attendee_id\")\n feedbackForm FeedbackForm @relation(fields: [feedbackFormId], references: [id])\n attendee Attendee @relation(fields: [attendeeId], references: [id], onDelete: Cascade)\n\n answers FeedbackQuestionAnswer[] @relation(\"FormAnswers\")\n\n @@map(\"feedback_form_answer\")\n}\n\nmodel AuditLog {\n id String @id @default(uuid())\n tableName String @map(\"table_name\")\n rowId String? @map(\"row_id\")\n createdAt DateTime @default(now()) @map(\"created_at\") @db.Timestamptz(3)\n operation String\n rowData Json @map(\"row_data\")\n /// Database transaction id\n transactionId BigInt @map(\"transaction_id\")\n\n /// User relation is optional because the system can execute operations without a user to link it to. For example with\n /// recurring tasks.\n user User? @relation(fields: [userId], references: [id])\n userId String? @map(\"user_id\")\n\n @@map(\"audit_log\")\n}\n\nmodel DeregisterReason {\n id String @id @default(uuid())\n createdAt DateTime @default(now()) @map(\"created_at\") @db.Timestamptz(3)\n registeredAt DateTime @map(\"registered_at\") @db.Timestamptz(3)\n type DeregisterReasonType\n details String?\n userGrade Int? @map(\"user_grade\")\n\n userId String @map(\"user_id\")\n eventId String @map(\"event_id\")\n user User @relation(fields: [userId], references: [id])\n event Event @relation(fields: [eventId], references: [id])\n\n @@map(\"deregister_reason\")\n}\n\nmodel NotificationRecipient {\n id String @id @default(uuid())\n readAt DateTime @map(\"read_at\") @db.Timestamptz(3)\n\n notificationId String @map(\"notification_id\")\n notification Notification @relation(fields: [notificationId], references: [id], onDelete: Cascade)\n userId String @map(\"user_id\")\n user User @relation(fields: [userId], references: [id], onDelete: Cascade)\n\n @@map(\"notification_recipient\")\n}\n\nenum NotificationPayloadType {\n URL @map(\"URL\")\n EVENT @map(\"EVENT\")\n ARTICLE @map(\"ARTICLE\")\n GROUP @map(\"GROUP\")\n USER @map(\"USER\")\n OFFLINE @map(\"OFFLINE\")\n JOB_LISTING @map(\"JOB_LISTING\")\n NONE @map(\"NONE\")\n}\n\nenum NotificationType {\n BROADCAST @map(\"BROADCAST\")\n BROADCAST_IMPORTANT @map(\"BROADCAST_IMPORTANT\")\n EVENT_REGISTRATION @map(\"EVENT_REGISTRATION\")\n EVENT_REMINDER @map(\"EVENT_REMINDER\")\n EVENT_UPDATE @map(\"EVENT_UPDATE\")\n JOB_LISTING_REMINDER @map(\"JOB_LISTING_REMINDER\")\n NEW_ARTICLE @map(\"NEW_ARTICLE\")\n NEW_EVENT @map(\"NEW_EVENT\")\n NEW_INTEREST_GROUP @map(\"NEW_INTEREST_GROUP\")\n NEW_JOB_LISTING @map(\"NEW_JOB_LISTING\")\n NEW_OFFLINE @map(\"NEW_OFFLINE\")\n NEW_MARK @map(\"NEW_MARK\")\n NEW_FEEDBACK_FORM @map(\"NEW_FEEDBACK_FORM\")\n}\n\nmodel Notification {\n id String @id @default(uuid())\n createdAt DateTime @default(now()) @map(\"created_at\") @db.Timestamptz(3)\n updatedAt DateTime @default(now()) @updatedAt @map(\"updated_at\") @db.Timestamptz(3)\n title String\n /// A short description that can be used when showing a preview of the notification.\n shortDescription String? @map(\"short_description\")\n /// The full rich text content of the notification.\n content String\n type NotificationType\n /// Can be an ID or a URL depending on the payload type.\n payload String?\n payloadType NotificationPayloadType @map(\"payload_type\")\n\n /// The group that created the notification or the system created on behalf of.\n actorGroupId String @map(\"actor_group_id\")\n actorGroup Group @relation(fields: [actorGroupId], references: [slug])\n /// The specific user that created the notification. This is meant for logging purposes. Nullable because the system\n /// can create notifications without a specific user to link it to, for example with recurring tasks.\n createdById String? @map(\"created_by_id\")\n createdBy User? @relation(\"created_by\", fields: [createdById], references: [id])\n lastUpdatedById String? @map(\"last_updated_by_id\")\n lastUpdatedBy User? @relation(\"last_updated_by\", fields: [lastUpdatedById], references: [id])\n /// The task that created the notification. Useful for tracing and retrieving deadlines that could be useful for the\n /// notification.\n taskId String? @map(\"task_id\")\n task Task? @relation(fields: [taskId], references: [id], onDelete: SetNull)\n\n recipients NotificationRecipient[]\n\n @@map(\"notification\")\n}\n\nmodel Contest {\n id String @id @default(uuid())\n name String\n description String?\n startDate DateTime? @map(\"start_date\")\n resultType ContestResultType @map(\"result_type\")\n resultOrder ContestResultOrder @map(\"result_order\")\n\n winnerContestantId String? @unique @map(\"winner_contestant_id\")\n winnerContestant Contestant? @relation(\"ContestWinner\", fields: [winnerContestantId], references: [id], onDelete: SetNull)\n\n contestants Contestant[] @relation(\"ContestContestants\")\n groups Group[] @relation(\"ContestOrganizerGroups\")\n events Event[]\n\n @@map(\"contest\")\n}\n\nmodel Fadderuke {\n id String @id @default(uuid())\n year Int @unique\n eventId String @unique @map(\"event_id\")\n event Event @relation(fields: [eventId], references: [id], onDelete: Cascade)\n createdAt DateTime @default(now()) @map(\"created_at\") @db.Timestamptz(3)\n updatedAt DateTime @default(now()) @updatedAt @map(\"updated_at\") @db.Timestamptz(3)\n\n @@map(\"fadderuke\")\n}\n\nenum ContestResultType {\n SCORE @map(\"SCORE\")\n DURATION @map(\"DURATION\")\n WINNER @map(\"WINNER\")\n\n @@map(\"contest_result_type\")\n}\n\nenum ContestResultOrder {\n ASC @map(\"asc\")\n DESC @map(\"desc\")\n\n @@map(\"contest_result_order\")\n}\n\nmodel Contestant {\n id String @id @default(uuid())\n resultValue Int? @map(\"result_value\")\n\n contestId String @map(\"contest_id\")\n userId String? @map(\"user_id\")\n contest Contest @relation(\"ContestContestants\", fields: [contestId], references: [id], onDelete: Cascade)\n user User? @relation(fields: [userId], references: [id])\n\n team ContestTeam?\n wonContest Contest? @relation(\"ContestWinner\")\n\n @@unique([contestId, userId])\n @@map(\"contestant\")\n}\n\nmodel ContestTeam {\n id String @id @default(uuid())\n name String\n\n contestantId String @unique @map(\"contestant_id\")\n contestant Contestant @relation(fields: [contestantId], references: [id], onDelete: Cascade)\n\n members User[] @relation(\"ContestTeamMember\")\n\n @@map(\"contest_team\")\n}\n", + "inlineSchema": "generator client {\n provider = \"prisma-client\"\n output = \"../generated/prisma\"\n\n previewFeatures = [\"relationJoins\", \"typedSql\"]\n}\n\ndatasource db {\n provider = \"postgresql\"\n}\n\nenum MembershipType {\n BACHELOR_STUDENT @map(\"BACHELOR_STUDENT\")\n MASTER_STUDENT @map(\"MASTER_STUDENT\")\n /// \"Ridder av det Indre Lager\" is an honorary membership type for those who have exceptionally contributed beyond\n /// expectations to Linjeforeningen Online. For our system, it is functionally identical to `SOCIAL_MEMBER` (sosialt\n /// medlem), but it is highly prestigious and grants a lifetime membership.\n KNIGHT @map(\"KNIGHT\")\n /// \"Sosialt medlem\" is a membership type for those who want membership with Linjeforeningen Online, but are not\n /// technically informatics students at NTNU (commonly those who internally transfer from other study programs at\n /// NTNU).\n ///\n /// This membership type exists to not allow them to attend (most) events with companies, as we usually sign\n /// contracts saying we will provide \"informatics students\", but we still want to include them for all other events.\n SOCIAL_MEMBER @map(\"SOCIAL_MEMBER\")\n\n @@map(\"membership_type\")\n}\n\n/// Taken from the Feide API. The values were found by digging around in our Auth0 user profiles.\n///\n/// We have an additional value `UNKNOWN` to represent users that do not have a specialization or if some new value is\n/// suddenly added to the Feide API that we do not yet know about.\nenum MembershipSpecialization {\n ARTIFICIAL_INTELLIGENCE @map(\"ARTIFICIAL_INTELLIGENCE\")\n DATABASE_AND_SEARCH @map(\"DATABASE_AND_SEARCH\")\n INTERACTION_DESIGN @map(\"INTERACTION_DESIGN\")\n SOFTWARE_ENGINEERING @map(\"SOFTWARE_ENGINEERING\")\n UNKNOWN @map(\"UNKNOWN\")\n\n @@map(\"membership_specialization\")\n}\n\nmodel Membership {\n id String @id @default(uuid())\n type MembershipType\n /// Specialization of the student. This is relevant for Master students. For all other students, this value should be\n /// `UNKNOWN`.\n specialization MembershipSpecialization? @default(UNKNOWN)\n start DateTime @db.Timestamptz(3)\n /// End date of the membership. Null means the membership does not have an end date, and lasts forever.\n end DateTime? @db.Timestamptz(3)\n /// The semester the student is in. 0-indexed.\n ///\n /// This value is meant to be used to calculate study grade (year), and can be used to calculate study start date\n /// with the `start` date of the membership. It is nullable because `KNIGHT` membership type is a lifetime\n /// membership.\n semester Int?\n\n userId String @map(\"user_id\")\n user User @relation(fields: [userId], references: [id])\n\n @@index([userId], name: \"idx_membership_user_id\")\n @@map(\"membership\")\n}\n\nenum Gender {\n MALE @map(\"MALE\")\n FEMALE @map(\"FEMALE\")\n NON_BINARY @map(\"NON_BINARY\")\n OTHER @map(\"OTHER\")\n UNKNOWN @map(\"UNKNOWN\")\n\n @@map(\"gender\")\n}\n\nmodel User {\n /// OpenID Connect Subject claim - for this reason there is no @default(uuid()) here.\n id String @id\n username String @unique @map(\"username\")\n name String?\n email String?\n imageUrl String? @map(\"image_url\")\n biography String?\n phone String?\n gender Gender @default(UNKNOWN)\n dietaryRestrictions String? @map(\"dietary_restrictions\")\n ntnuUsername String? @map(\"ntnu_username\")\n flags String[]\n /// Used for identifying the user in Google Workspace (my.name@online.ntnu.no)\n workspaceUserId String? @unique @map(\"workspace_user_id\")\n createdAt DateTime @default(now()) @map(\"created_at\") @db.Timestamptz(3)\n updatedAt DateTime @default(now()) @updatedAt @map(\"updated_at\") @db.Timestamptz(3)\n\n privacyPermissionsId String? @unique @map(\"privacy_permissions_id\")\n privacyPermissions PrivacyPermissions?\n notificationPermissionsId String? @unique @map(\"notification_permissions_id\")\n notificationPermissions NotificationPermissions?\n\n attendee Attendee[]\n personalMark PersonalMark[]\n groupMemberships GroupMembership[]\n memberships Membership[]\n givenMarks PersonalMark[] @relation(\"GivenBy\")\n attendeesRefunded Attendee[] @relation(name: \"RefundedBy\")\n auditLogs AuditLog[]\n deregisterReasons DeregisterReason[]\n notificationsReceived NotificationRecipient[]\n notificationsCreated Notification[] @relation(\"created_by\")\n notificationsUpdated Notification[] @relation(\"last_updated_by\")\n contestants Contestant[]\n contestTeams ContestTeam[] @relation(\"ContestTeamMember\")\n\n @@map(\"ow_user\")\n}\n\nmodel Company {\n id String @id @default(uuid())\n name String\n slug String @unique\n description String?\n phone String?\n email String?\n website String\n location String?\n imageUrl String? @map(\"image_url\")\n createdAt DateTime @default(now()) @map(\"created_at\") @db.Timestamptz(3)\n updatedAt DateTime @default(now()) @updatedAt @map(\"updated_at\") @db.Timestamptz(3)\n\n events EventCompany[]\n JobListing JobListing[]\n\n @@map(\"company\")\n}\n\nenum GroupType {\n COMMITTEE @map(\"COMMITTEE\")\n NODE_COMMITTEE @map(\"NODE_COMMITTEE\")\n ASSOCIATED @map(\"ASSOCIATED\")\n INTEREST_GROUP @map(\"INTEREST_GROUP\")\n EMAIL_ONLY @map(\"EMAIL_ONLY\")\n\n @@map(\"group_type\")\n}\n\nenum GroupMemberVisibility {\n ALL_MEMBERS @map(\"ALL_MEMBERS\")\n WITH_ROLES @map(\"WITH_ROLES\")\n LEADER @map(\"LEADER\")\n NONE @map(\"NONE\")\n\n @@map(\"group_member_visibility\")\n}\n\nenum GroupRecruitmentMethod {\n NONE @map(\"NONE\")\n SPRING_APPLICATION @map(\"SPRING_APPLICATION\")\n AUTUMN_APPLICATION @map(\"AUTUMN_APPLICATION\")\n GENERAL_ASSEMBLY @map(\"GENERAL_ASSEMBLY\")\n NOMINATION @map(\"NOMINATION\")\n OTHER @map(\"OTHER\")\n}\n\nmodel Group {\n slug String @id @unique\n abbreviation String\n name String?\n shortDescription String? @map(\"short_description\")\n description String\n imageUrl String? @map(\"image_url\")\n email String?\n contactUrl String? @map(\"contact_url\")\n slackUrl String? @map(\"slack_url\")\n showLeaderAsContact Boolean @default(false) @map(\"show_leader_as_contact\")\n createdAt DateTime @default(now()) @map(\"created_at\") @db.Timestamptz(3)\n deactivatedAt DateTime? @map(\"deactivated_at\")\n workspaceGroupId String? @unique @map(\"workspace_group_id\")\n memberVisibility GroupMemberVisibility @default(ALL_MEMBERS) @map(\"member_visibility\")\n recruitmentMethod GroupRecruitmentMethod @default(NONE) @map(\"recruitment_method\")\n type GroupType\n\n events EventHostingGroup[]\n contests Contest[] @relation(\"ContestOrganizerGroups\")\n memberships GroupMembership[]\n marks MarkGroup[]\n roles GroupRole[]\n notifications Notification[]\n\n @@map(\"group\")\n}\n\nmodel GroupMembership {\n id String @id @default(uuid())\n start DateTime @db.Timestamptz(3)\n end DateTime? @db.Timestamptz(3)\n createdAt DateTime @default(now()) @map(\"created_at\") @db.Timestamptz(3)\n updatedAt DateTime @default(now()) @updatedAt @map(\"updated_at\") @db.Timestamptz(3)\n\n groupId String @map(\"group_id\")\n userId String @map(\"user_id\")\n group Group @relation(fields: [groupId], references: [slug], onDelete: Cascade)\n user User @relation(fields: [userId], references: [id], onDelete: Cascade)\n\n roles GroupMembershipRole[]\n\n @@map(\"group_membership\")\n}\n\nmodel GroupMembershipRole {\n membershipId String @map(\"membership_id\")\n roleId String @map(\"role_id\")\n membership GroupMembership @relation(fields: [membershipId], references: [id], onDelete: Cascade)\n role GroupRole @relation(fields: [roleId], references: [id], onDelete: Cascade)\n\n @@id([membershipId, roleId])\n @@map(\"group_membership_role\")\n}\n\nenum GroupRoleType {\n LEADER @map(\"LEADER\")\n PUNISHER @map(\"PUNISHER\")\n TREASURER @map(\"TREASURER\")\n COSMETIC @map(\"COSMETIC\")\n DEPUTY_LEADER @map(\"DEPUTY_LEADER\")\n TRUSTEE @map(\"TRUSTEE\")\n EMAIL_ONLY @map(\"EMAIL_ONLY\")\n TEMPORARILY_LEAVE @map(\"TEMPORARILY_LEAVE\")\n /// The editor in chief for Online's magazine \"Offline\" (\"Redaktør\" in Norwegian)\n EDITOR_IN_CHIEF @map(\"EDITOR_IN_CHIEF\")\n\n @@map(\"group_role_type\")\n}\n\nmodel GroupRole {\n id String @id @default(uuid())\n name String\n type GroupRoleType @default(COSMETIC)\n\n groupId String @map(\"group_id\")\n group Group @relation(fields: [groupId], references: [slug], onDelete: Cascade)\n\n groupMembershipRoles GroupMembershipRole[]\n\n @@unique([groupId, name])\n @@map(\"group_role\")\n}\n\nenum EventStatus {\n DRAFT @map(\"DRAFT\")\n PUBLIC @map(\"PUBLIC\")\n DELETED @map(\"DELETED\")\n\n @@map(\"event_status\")\n}\n\nenum EventType {\n /// Generalforsamling\n GENERAL_ASSEMBLY @map(\"GENERAL_ASSEMBLY\")\n /// Bedriftspresentasjon\n COMPANY @map(\"COMPANY\")\n /// Kurs\n ACADEMIC @map(\"ACADEMIC\")\n /// Sosialt\n SOCIAL @map(\"SOCIAL\")\n // This type is for the rare occation we have an event that is only open to committee members.\n /// Komitéarrangement\n INTERNAL @map(\"INTERNAL\")\n OTHER @map(\"OTHER\")\n // This type is for a committe called \"velkom\" and are special social events for new students.\n // These have a separate type because we have historically hid these from event lists to not\n // spam students that are not new with these events. In older versions of OnlineWeb these\n // were even treated as a completely separate event entity.\n /// Velkom/Fadderukene\n WELCOME @map(\"WELCOME\")\n\n @@map(\"event_type\")\n}\n\nmodel Attendance {\n id String @id @default(uuid())\n registerStart DateTime @map(\"register_start\") @db.Timestamptz(3)\n registerEnd DateTime @map(\"register_end\") @db.Timestamptz(3)\n deregisterDeadline DateTime @map(\"deregister_deadline\") @db.Timestamptz(3)\n selections Json @default(\"[]\")\n createdAt DateTime @default(now()) @map(\"created_at\") @db.Timestamptz(3)\n updatedAt DateTime @default(now()) @updatedAt @map(\"updated_at\") @db.Timestamptz(3)\n /// The price as a whole integer in NOK (value 100 means NOK100.00)\n attendancePrice Int? @map(\"attendance_price\")\n\n pools AttendancePool[]\n attendees Attendee[]\n events Event[]\n\n @@map(\"attendance\")\n}\n\nmodel AttendancePool {\n id String @id @default(uuid())\n title String\n mergeDelayHours Int? @map(\"merge_delay_hours\")\n yearCriteria Json @map(\"year_criteria\")\n capacity Int\n createdAt DateTime @default(now()) @map(\"created_at\") @db.Timestamptz(3)\n updatedAt DateTime @default(now()) @updatedAt @map(\"updated_at\") @db.Timestamptz(3)\n\n attendanceId String @map(\"attendance_id\")\n taskId String? @map(\"task_id\")\n attendance Attendance @relation(fields: [attendanceId], references: [id])\n task Task? @relation(fields: [taskId], references: [id], onDelete: Cascade)\n\n attendees Attendee[]\n\n @@index([attendanceId], name: \"idx_attendance_pool_attendance_id\")\n @@map(\"attendance_pool\")\n}\n\nmodel Attendee {\n id String @id @default(uuid())\n /// To preserve the user's grade at the time of registration\n userGrade Int? @map(\"user_grade\")\n feedbackFormAnswer FeedbackFormAnswer?\n /// Which options the user has selected from the Attendance selections\n selections Json @default(\"[]\")\n reserved Boolean\n earliestReservationAt DateTime @map(\"earliest_reservation_at\") @db.Timestamptz(3)\n attendedAt DateTime? @map(\"attended_at\") @db.Timestamptz(3)\n createdAt DateTime @default(now()) @map(\"created_at\") @db.Timestamptz(3)\n updatedAt DateTime @default(now()) @updatedAt @map(\"updated_at\") @db.Timestamptz(3)\n paymentDeadline DateTime? @map(\"payment_deadline\")\n paymentLink String? @map(\"payment_link\")\n paymentId String? @map(\"payment_id\")\n paymentReservedAt DateTime? @map(\"payment_reserved_at\")\n paymentChargeDeadline DateTime? @map(\"payment_charge_deadline\")\n paymentChargedAt DateTime? @map(\"payment_charged_at\")\n paymentRefundedAt DateTime? @map(\"payment_refunded_at\")\n paymentCheckoutUrl String? @map(\"payment_checkout_url\")\n\n attendanceId String @map(\"attendance_id\")\n userId String @map(\"user_id\")\n attendancePoolId String @map(\"attendance_pool_id\")\n paymentRefundedById String? @map(\"payment_refunded_by_id\")\n attendance Attendance @relation(fields: [attendanceId], references: [id])\n user User @relation(fields: [userId], references: [id])\n attendancePool AttendancePool @relation(fields: [attendancePoolId], references: [id])\n paymentRefundedBy User? @relation(fields: [paymentRefundedById], references: [id], name: \"RefundedBy\")\n\n @@unique([attendanceId, userId], name: \"attendee_unique\")\n @@map(\"attendee\")\n}\n\nmodel Event {\n id String @id @default(uuid())\n title String\n start DateTime @db.Timestamptz(3)\n end DateTime @db.Timestamptz(3)\n status EventStatus\n description String\n shortDescription String? @map(\"short_description\")\n imageUrl String? @map(\"image_url\")\n locationTitle String? @map(\"location_title\")\n locationAddress String? @map(\"location_address\")\n locationLink String? @map(\"location_link\")\n type EventType\n feedbackForm FeedbackForm?\n markForMissedAttendance Boolean @default(true) @map(\"mark_for_missed_attendance\")\n fadderuke Fadderuke?\n createdAt DateTime @default(now()) @map(\"created_at\") @db.Timestamptz(3)\n updatedAt DateTime @default(now()) @updatedAt @map(\"updated_at\") @db.Timestamptz(3)\n\n attendanceId String? @map(\"attendance_id\")\n parentId String? @map(\"parent_id\")\n contestId String? @map(\"contest_id\")\n attendance Attendance? @relation(fields: [attendanceId], references: [id])\n parent Event? @relation(\"children\", fields: [parentId], references: [id], map: \"event_parent_fkey\")\n children Event[] @relation(\"children\")\n contest Contest? @relation(fields: [contestId], references: [id], onDelete: SetNull)\n\n companies EventCompany[]\n hostingGroups EventHostingGroup[]\n deregisterReasons DeregisterReason[]\n\n /// Historical metadata -- This is the id of the event in the previous version of OnlineWeb, if it was imported from\n /// the previous version\n metadataImportId Int? @map(\"metadata_import_id\")\n\n @@index([contestId])\n @@map(\"event\")\n}\n\nmodel EventCompany {\n eventId String @map(\"event_id\")\n companyId String @map(\"company_id\")\n event Event @relation(fields: [eventId], references: [id])\n company Company @relation(fields: [companyId], references: [id])\n\n @@id([eventId, companyId])\n @@map(\"event_company\")\n}\n\nenum MarkType {\n MANUAL\n LATE_ATTENDANCE\n MISSED_ATTENDANCE\n MISSING_FEEDBACK\n MISSING_PAYMENT\n}\n\nmodel Mark {\n id String @id @default(uuid())\n title String\n details String?\n /// Duration in days\n duration Int\n weight Int\n type MarkType @default(MANUAL)\n createdAt DateTime @default(now()) @map(\"created_at\") @db.Timestamptz(3)\n updatedAt DateTime @default(now()) @updatedAt @map(\"updated_at\") @db.Timestamptz(3)\n\n users PersonalMark[]\n groups MarkGroup[]\n\n @@map(\"mark\")\n}\n\nmodel MarkGroup {\n markId String @map(\"mark_id\")\n groupId String @map(\"group_id\")\n mark Mark @relation(fields: [markId], references: [id])\n group Group @relation(fields: [groupId], references: [slug])\n\n @@id([markId, groupId])\n @@map(\"mark_group\")\n}\n\nmodel PersonalMark {\n createdAt DateTime @default(now()) @map(\"created_at\") @db.Timestamptz(3)\n\n markId String @map(\"mark_id\")\n userId String @map(\"user_id\")\n givenById String? @map(\"given_by_id\")\n mark Mark @relation(fields: [markId], references: [id])\n user User @relation(fields: [userId], references: [id])\n givenBy User? @relation(\"GivenBy\", fields: [givenById], references: [id])\n\n @@id([markId, userId])\n @@map(\"personal_mark\")\n}\n\nmodel PrivacyPermissions {\n id String @id @default(uuid())\n user User @relation(fields: [userId], references: [id])\n userId String @unique @map(\"user_id\")\n // TODO: rename to ~\"privateProfile\" and require authentication to view profile if true\n profileVisible Boolean @default(true) @map(\"profile_visible\")\n usernameVisible Boolean @default(true) @map(\"username_visible\")\n emailVisible Boolean @default(false) @map(\"email_visible\")\n phoneVisible Boolean @default(false) @map(\"phone_visible\")\n // TODO: delete this prop -- we do not have an address field on User\n addressVisible Boolean @default(false) @map(\"address_visible\")\n // TODO: default to true\n attendanceVisible Boolean @default(false) @map(\"attendance_visible\")\n createdAt DateTime @default(now()) @map(\"created_at\") @db.Timestamptz(3)\n updatedAt DateTime @default(now()) @updatedAt @map(\"updated_at\") @db.Timestamptz(3)\n\n @@map(\"privacy_permissions\")\n}\n\nmodel NotificationPermissions {\n id String @id @default(uuid())\n user User @relation(fields: [userId], references: [id])\n userId String @unique @map(\"user_id\")\n applications Boolean @default(true)\n newArticles Boolean @default(true) @map(\"new_articles\")\n standardNotifications Boolean @default(true) @map(\"standard_notifications\")\n groupMessages Boolean @default(true) @map(\"group_messages\")\n markRulesUpdates Boolean @default(true) @map(\"mark_rules_updates\")\n receipts Boolean @default(true)\n registrationByAdministrator Boolean @default(true) @map(\"registration_by_administrator\")\n registrationStart Boolean @default(true) @map(\"registration_start\")\n createdAt DateTime @default(now()) @map(\"created_at\") @db.Timestamptz(3)\n updatedAt DateTime @default(now()) @updatedAt @map(\"updated_at\") @db.Timestamptz(3)\n\n @@map(\"notification_permissions\")\n}\n\nmodel EventHostingGroup {\n groupId String @map(\"group_id\")\n eventId String @map(\"event_id\")\n group Group @relation(fields: [groupId], references: [slug])\n event Event @relation(fields: [eventId], references: [id])\n\n @@id([groupId, eventId])\n @@index([eventId], name: \"idx_event_hosting_group_event_id\")\n @@map(\"event_hosting_group\")\n}\n\nenum EmploymentType {\n PARTTIME @map(\"PARTTIME\")\n FULLTIME @map(\"FULLTIME\")\n SUMMER_INTERNSHIP @map(\"SUMMER_INTERNSHIP\")\n OTHER @map(\"OTHER\")\n\n @@map(\"employment_type\")\n}\n\nmodel JobListing {\n id String @id @default(uuid())\n title String\n description String\n shortDescription String? @map(\"short_description\")\n start DateTime @db.Timestamptz(3)\n end DateTime @db.Timestamptz(3)\n featured Boolean\n hidden Boolean\n deadline DateTime? @db.Timestamptz(3)\n employment EmploymentType\n applicationLink String? @map(\"application_link\")\n applicationEmail String? @map(\"application_email\")\n ///Applications are reviewed as soon as they are submitted\n rollingAdmission Boolean @map(\"rolling_admission\")\n createdAt DateTime @default(now()) @map(\"created_at\") @db.Timestamptz(3)\n updatedAt DateTime @default(now()) @updatedAt @map(\"updated_at\") @db.Timestamptz(3)\n\n companyId String @map(\"company_id\")\n company Company @relation(fields: [companyId], references: [id])\n\n locations JobListingLocation[]\n\n @@map(\"job_listing\")\n}\n\nmodel JobListingLocation {\n name String\n createdAt DateTime @default(now()) @map(\"created_at\") @db.Timestamptz(3)\n\n jobListingId String @map(\"job_listing_id\")\n jobListing JobListing @relation(fields: [jobListingId], references: [id])\n\n @@id([name, jobListingId])\n @@map(\"job_listing_location\")\n}\n\nmodel Offline {\n id String @id @default(uuid())\n title String\n fileUrl String? @map(\"file_url\")\n imageUrl String? @map(\"image_url\")\n publishedAt DateTime @map(\"published_at\") @db.Timestamptz(3)\n createdAt DateTime @default(now()) @map(\"created_at\") @db.Timestamptz(3)\n updatedAt DateTime @default(now()) @updatedAt @map(\"updated_at\") @db.Timestamptz(3)\n\n @@map(\"offline\")\n}\n\nmodel Article {\n id String @id @default(uuid())\n slug String @unique\n title String\n author String\n photographer String\n imageUrl String @map(\"image_url\")\n excerpt String\n content String\n isFeatured Boolean @default(false) @map(\"is_featured\")\n vimeoId String? @map(\"vimeo_id\")\n createdAt DateTime @default(now()) @map(\"created_at\") @db.Timestamptz(3)\n updatedAt DateTime @default(now()) @updatedAt @map(\"updated_at\") @db.Timestamptz(3)\n\n tags ArticleTagLink[]\n\n @@map(\"article\")\n}\n\nmodel ArticleTag {\n name String @id\n\n articles ArticleTagLink[]\n\n @@map(\"article_tag\")\n}\n\nmodel ArticleTagLink {\n articleId String @map(\"article_id\")\n tagName String @map(\"tag_name\")\n article Article @relation(fields: [articleId], references: [id])\n tag ArticleTag @relation(fields: [tagName], references: [name])\n\n @@id([articleId, tagName])\n @@map(\"article_tag_link\")\n}\n\nenum TaskType {\n RESERVE_ATTENDEE @map(\"RESERVE_ATTENDEE\")\n CHARGE_ATTENDEE @map(\"CHARGE_ATTENDEE\")\n MERGE_ATTENDANCE_POOLS @map(\"MERGE_ATTENDANCE_POOLS\")\n VERIFY_PAYMENT @map(\"VERIFY_PAYMENT\")\n VERIFY_FEEDBACK_ANSWERED @map(\"VERIFY_FEEDBACK_ANSWERED\")\n SEND_FEEDBACK_FORM_EMAILS @map(\"SEND_FEEDBACK_FORM_EMAILS\")\n VERIFY_ATTENDEE_ATTENDED @map(\"VERIFY_ATTENDEE_ATTENDED\")\n\n @@map(\"task_type\")\n}\n\nenum TaskStatus {\n PENDING @map(\"PENDING\")\n RUNNING @map(\"RUNNING\")\n COMPLETED @map(\"COMPLETED\")\n FAILED @map(\"FAILED\")\n CANCELED @map(\"CANCELED\")\n\n @@map(\"task_status\")\n}\n\nmodel Task {\n id String @id @default(uuid())\n type TaskType\n status TaskStatus @default(PENDING)\n payload Json @default(\"{}\")\n createdAt DateTime @default(now()) @map(\"created_at\") @db.Timestamptz(3)\n scheduledAt DateTime @map(\"scheduled_at\") @db.Timestamptz(3)\n processedAt DateTime? @map(\"processed_at\") @db.Timestamptz(3)\n\n recurringTaskId String? @map(\"recurring_task_id\")\n recurringTask RecurringTask? @relation(fields: [recurringTaskId], references: [id], onDelete: SetNull)\n\n attendancePools AttendancePool[]\n notifications Notification[]\n\n @@index([scheduledAt, status], name: \"idx_job_scheduled_at_status\")\n @@map(\"task\")\n}\n\nmodel RecurringTask {\n id String @id @default(uuid())\n type TaskType\n payload Json @default(\"{}\")\n createdAt DateTime @default(now()) @map(\"created_at\") @db.Timestamptz(3)\n schedule String\n lastRunAt DateTime? @map(\"last_run_at\") @db.Timestamptz(3)\n nextRunAt DateTime @map(\"next_run_at\") @db.Timestamptz(3)\n\n tasks Task[]\n\n @@index([nextRunAt])\n @@map(\"recurring_task\")\n}\n\nenum FeedbackQuestionType {\n TEXT @map(\"TEXT\")\n LONGTEXT @map(\"LONGTEXT\")\n RATING @map(\"RATING\")\n CHECKBOX @map(\"CHECKBOX\")\n SELECT @map(\"SELECT\")\n MULTISELECT @map(\"MULTISELECT\")\n\n @@map(\"feedback_question_type\")\n}\n\nenum DeregisterReasonType {\n SCHOOL @map(\"SCHOOL\")\n WORK @map(\"WORK\")\n ECONOMY @map(\"ECONOMY\")\n TIME @map(\"TIME\")\n SICK @map(\"SICK\")\n NO_FAMILIAR_FACES @map(\"NO_FAMILIAR_FACES\")\n OTHER @map(\"OTHER\")\n\n @@map(\"deregister_reason_type\")\n}\n\nmodel FeedbackForm {\n id String @id @default(uuid())\n publicResultsToken String @unique @default(uuid()) @map(\"public_results_token\")\n createdAt DateTime @default(now()) @map(\"created_at\") @db.Timestamptz(3)\n updatedAt DateTime @default(now()) @updatedAt @map(\"updated_at\") @db.Timestamptz(3)\n answerDeadline DateTime @map(\"answer_deadline\") @db.Timestamptz(3)\n\n eventId String @unique @map(\"event_id\")\n event Event @relation(fields: [eventId], references: [id])\n\n questions FeedbackQuestion[]\n answers FeedbackFormAnswer[]\n\n @@map(\"feedback_form\")\n}\n\nmodel FeedbackQuestion {\n id String @id @default(uuid())\n label String\n required Boolean @default(false)\n showInPublicResults Boolean @default(true) @map(\"show_in_public_results\")\n type FeedbackQuestionType\n order Int\n createdAt DateTime @default(now()) @map(\"created_at\") @db.Timestamptz(3)\n updatedAt DateTime @default(now()) @updatedAt @map(\"updated_at\") @db.Timestamptz(3)\n\n feedbackFormId String @map(\"feedback_form_id\")\n feedbackForm FeedbackForm @relation(fields: [feedbackFormId], references: [id], onDelete: Cascade)\n\n options FeedbackQuestionOption[]\n answers FeedbackQuestionAnswer[] @relation(\"QuestionAnswers\")\n\n @@map(\"feedback_question\")\n}\n\nmodel FeedbackQuestionOption {\n id String @id @default(uuid())\n name String\n\n questionId String @map(\"question_id\")\n question FeedbackQuestion @relation(fields: [questionId], references: [id], onDelete: Cascade)\n\n selectedInAnswers FeedbackQuestionAnswerOptionLink[]\n\n @@unique([questionId, name])\n @@map(\"feedback_question_option\")\n}\n\nmodel FeedbackQuestionAnswer {\n id String @id @default(uuid())\n value Json?\n\n questionId String @map(\"question_id\")\n formAnswerId String @map(\"form_answer_id\")\n question FeedbackQuestion @relation(\"QuestionAnswers\", fields: [questionId], references: [id])\n formAnswer FeedbackFormAnswer @relation(\"FormAnswers\", fields: [formAnswerId], references: [id], onDelete: Cascade)\n\n selectedOptions FeedbackQuestionAnswerOptionLink[]\n\n @@map(\"feedback_question_answer\")\n}\n\nmodel FeedbackQuestionAnswerOptionLink {\n feedbackQuestionOptionId String @map(\"feedback_question_option_id\")\n feedbackQuestionAnswerId String @map(\"feedback_question_answer_id\")\n feedbackQuestionOption FeedbackQuestionOption @relation(fields: [feedbackQuestionOptionId], references: [id])\n feedbackQuestionAnswer FeedbackQuestionAnswer @relation(fields: [feedbackQuestionAnswerId], references: [id], onDelete: Cascade)\n\n @@id([feedbackQuestionOptionId, feedbackQuestionAnswerId])\n @@map(\"feedback_answer_option_link\")\n}\n\nmodel FeedbackFormAnswer {\n id String @id @default(uuid())\n createdAt DateTime @default(now()) @map(\"created_at\") @db.Timestamptz(3)\n updatedAt DateTime @default(now()) @updatedAt @map(\"updated_at\") @db.Timestamptz(3)\n\n feedbackFormId String @map(\"feedback_form_id\")\n attendeeId String @unique @map(\"attendee_id\")\n feedbackForm FeedbackForm @relation(fields: [feedbackFormId], references: [id])\n attendee Attendee @relation(fields: [attendeeId], references: [id], onDelete: Cascade)\n\n answers FeedbackQuestionAnswer[] @relation(\"FormAnswers\")\n\n @@map(\"feedback_form_answer\")\n}\n\nmodel AuditLog {\n id String @id @default(uuid())\n tableName String @map(\"table_name\")\n rowId String? @map(\"row_id\")\n createdAt DateTime @default(now()) @map(\"created_at\") @db.Timestamptz(3)\n operation String\n rowData Json @map(\"row_data\")\n /// Database transaction id\n transactionId BigInt @map(\"transaction_id\")\n\n /// User relation is optional because the system can execute operations without a user to link it to. For example with\n /// recurring tasks.\n user User? @relation(fields: [userId], references: [id])\n userId String? @map(\"user_id\")\n\n @@map(\"audit_log\")\n}\n\nmodel DeregisterReason {\n id String @id @default(uuid())\n createdAt DateTime @default(now()) @map(\"created_at\") @db.Timestamptz(3)\n registeredAt DateTime @map(\"registered_at\") @db.Timestamptz(3)\n type DeregisterReasonType\n details String?\n userGrade Int? @map(\"user_grade\")\n\n userId String @map(\"user_id\")\n eventId String @map(\"event_id\")\n user User @relation(fields: [userId], references: [id])\n event Event @relation(fields: [eventId], references: [id])\n\n @@map(\"deregister_reason\")\n}\n\nmodel NotificationRecipient {\n id String @id @default(uuid())\n readAt DateTime @map(\"read_at\") @db.Timestamptz(3)\n\n notificationId String @map(\"notification_id\")\n notification Notification @relation(fields: [notificationId], references: [id], onDelete: Cascade)\n userId String @map(\"user_id\")\n user User @relation(fields: [userId], references: [id], onDelete: Cascade)\n\n @@map(\"notification_recipient\")\n}\n\nenum NotificationPayloadType {\n URL @map(\"URL\")\n EVENT @map(\"EVENT\")\n ARTICLE @map(\"ARTICLE\")\n GROUP @map(\"GROUP\")\n USER @map(\"USER\")\n OFFLINE @map(\"OFFLINE\")\n JOB_LISTING @map(\"JOB_LISTING\")\n NONE @map(\"NONE\")\n}\n\nenum NotificationType {\n BROADCAST @map(\"BROADCAST\")\n BROADCAST_IMPORTANT @map(\"BROADCAST_IMPORTANT\")\n EVENT_REGISTRATION @map(\"EVENT_REGISTRATION\")\n EVENT_REMINDER @map(\"EVENT_REMINDER\")\n EVENT_UPDATE @map(\"EVENT_UPDATE\")\n JOB_LISTING_REMINDER @map(\"JOB_LISTING_REMINDER\")\n NEW_ARTICLE @map(\"NEW_ARTICLE\")\n NEW_EVENT @map(\"NEW_EVENT\")\n NEW_INTEREST_GROUP @map(\"NEW_INTEREST_GROUP\")\n NEW_JOB_LISTING @map(\"NEW_JOB_LISTING\")\n NEW_OFFLINE @map(\"NEW_OFFLINE\")\n NEW_MARK @map(\"NEW_MARK\")\n NEW_FEEDBACK_FORM @map(\"NEW_FEEDBACK_FORM\")\n}\n\nmodel Notification {\n id String @id @default(uuid())\n createdAt DateTime @default(now()) @map(\"created_at\") @db.Timestamptz(3)\n updatedAt DateTime @default(now()) @updatedAt @map(\"updated_at\") @db.Timestamptz(3)\n title String\n /// A short description that can be used when showing a preview of the notification.\n shortDescription String? @map(\"short_description\")\n /// The full rich text content of the notification.\n content String\n type NotificationType\n /// Can be an ID or a URL depending on the payload type.\n payload String?\n payloadType NotificationPayloadType @map(\"payload_type\")\n\n /// The group that created the notification or the system created on behalf of.\n actorGroupId String @map(\"actor_group_id\")\n actorGroup Group @relation(fields: [actorGroupId], references: [slug])\n /// The specific user that created the notification. This is meant for logging purposes. Nullable because the system\n /// can create notifications without a specific user to link it to, for example with recurring tasks.\n createdById String? @map(\"created_by_id\")\n createdBy User? @relation(\"created_by\", fields: [createdById], references: [id])\n lastUpdatedById String? @map(\"last_updated_by_id\")\n lastUpdatedBy User? @relation(\"last_updated_by\", fields: [lastUpdatedById], references: [id])\n /// The task that created the notification. Useful for tracing and retrieving deadlines that could be useful for the\n /// notification.\n taskId String? @map(\"task_id\")\n task Task? @relation(fields: [taskId], references: [id], onDelete: SetNull)\n\n recipients NotificationRecipient[]\n\n @@map(\"notification\")\n}\n\nmodel Contest {\n id String @id @default(uuid())\n name String\n description String?\n startDate DateTime? @map(\"start_date\")\n resultType ContestResultType @map(\"result_type\")\n resultOrder ContestResultOrder @map(\"result_order\")\n\n winnerContestantId String? @unique @map(\"winner_contestant_id\")\n winnerContestant Contestant? @relation(\"ContestWinner\", fields: [winnerContestantId], references: [id], onDelete: SetNull)\n\n contestants Contestant[] @relation(\"ContestContestants\")\n groups Group[] @relation(\"ContestOrganizerGroups\")\n events Event[]\n\n @@map(\"contest\")\n}\n\nmodel Fadderuke {\n id String @id @default(uuid())\n year Int @unique\n eventId String @unique @map(\"event_id\")\n event Event @relation(fields: [eventId], references: [id], onDelete: Cascade)\n createdAt DateTime @default(now()) @map(\"created_at\") @db.Timestamptz(3)\n updatedAt DateTime @default(now()) @updatedAt @map(\"updated_at\") @db.Timestamptz(3)\n\n @@map(\"fadderuke\")\n}\n\nenum ContestResultType {\n SCORE @map(\"SCORE\")\n DURATION @map(\"DURATION\")\n WINNER @map(\"WINNER\")\n\n @@map(\"contest_result_type\")\n}\n\nenum ContestResultOrder {\n ASC @map(\"asc\")\n DESC @map(\"desc\")\n\n @@map(\"contest_result_order\")\n}\n\nmodel Contestant {\n id String @id @default(uuid())\n resultValue Int? @map(\"result_value\")\n\n contestId String @map(\"contest_id\")\n userId String? @map(\"user_id\")\n contest Contest @relation(\"ContestContestants\", fields: [contestId], references: [id], onDelete: Cascade)\n user User? @relation(fields: [userId], references: [id])\n\n team ContestTeam?\n wonContest Contest? @relation(\"ContestWinner\")\n\n @@unique([contestId, userId])\n @@map(\"contestant\")\n}\n\nmodel ContestTeam {\n id String @id @default(uuid())\n name String\n\n contestantId String @unique @map(\"contestant_id\")\n contestant Contestant @relation(fields: [contestantId], references: [id], onDelete: Cascade)\n\n members User[] @relation(\"ContestTeamMember\")\n\n @@map(\"contest_team\")\n}\n", "runtimeDataModel": { "models": {}, "enums": {}, diff --git a/packages/db/generated/schema/index.ts b/packages/db/generated/schema/index.ts deleted file mode 100644 index 300f969a33..0000000000 --- a/packages/db/generated/schema/index.ts +++ /dev/null @@ -1,52371 +0,0 @@ -// @ts-nocheck -/** - * Prisma Zod Generator - Single File (inlined) - * Auto-generated. Do not edit. - */ - -import * as z from 'zod/v4'; -import type { Prisma } from '../prisma/client'; -// JSON helper schemas (hoisted) -const jsonSchema = (() => { - const JsonValueSchema: any = (() => { - const recur: any = z.lazy(() => z.union([ - z.string(), z.number(), z.boolean(), z.literal(null), - z.record(z.string(), z.lazy(() => recur.optional())), - z.array(z.lazy(() => recur)), - ])); - return recur; - })(); - return JsonValueSchema; -})(); -// File: TransactionIsolationLevel.schema.ts - -export const TransactionIsolationLevelSchema = z.enum(['ReadUncommitted', 'ReadCommitted', 'RepeatableRead', 'Serializable']) - -export type TransactionIsolationLevel = z.infer; - -// File: MembershipScalarFieldEnum.schema.ts - -export const MembershipScalarFieldEnumSchema = z.enum(['id', 'type', 'specialization', 'start', 'end', 'semester', 'userId']) - -export type MembershipScalarFieldEnum = z.infer; - -// File: RelationLoadStrategy.schema.ts - -export const RelationLoadStrategySchema = z.enum(['query', 'join']) - -export type RelationLoadStrategy = z.infer; - -// File: UserScalarFieldEnum.schema.ts - -export const UserScalarFieldEnumSchema = z.enum(['id', 'username', 'name', 'email', 'imageUrl', 'biography', 'phone', 'gender', 'dietaryRestrictions', 'ntnuUsername', 'flags', 'workspaceUserId', 'createdAt', 'updatedAt', 'privacyPermissionsId', 'notificationPermissionsId']) - -export type UserScalarFieldEnum = z.infer; - -// File: CompanyScalarFieldEnum.schema.ts - -export const CompanyScalarFieldEnumSchema = z.enum(['id', 'name', 'slug', 'description', 'phone', 'email', 'website', 'location', 'imageUrl', 'createdAt', 'updatedAt']) - -export type CompanyScalarFieldEnum = z.infer; - -// File: GroupScalarFieldEnum.schema.ts - -export const GroupScalarFieldEnumSchema = z.enum(['slug', 'abbreviation', 'name', 'shortDescription', 'description', 'imageUrl', 'email', 'contactUrl', 'slackUrl', 'showLeaderAsContact', 'createdAt', 'deactivatedAt', 'workspaceGroupId', 'memberVisibility', 'recruitmentMethod', 'type']) - -export type GroupScalarFieldEnum = z.infer; - -// File: GroupMembershipScalarFieldEnum.schema.ts - -export const GroupMembershipScalarFieldEnumSchema = z.enum(['id', 'start', 'end', 'createdAt', 'updatedAt', 'groupId', 'userId']) - -export type GroupMembershipScalarFieldEnum = z.infer; - -// File: GroupMembershipRoleScalarFieldEnum.schema.ts - -export const GroupMembershipRoleScalarFieldEnumSchema = z.enum(['membershipId', 'roleId']) - -export type GroupMembershipRoleScalarFieldEnum = z.infer; - -// File: GroupRoleScalarFieldEnum.schema.ts - -export const GroupRoleScalarFieldEnumSchema = z.enum(['id', 'name', 'type', 'groupId']) - -export type GroupRoleScalarFieldEnum = z.infer; - -// File: AttendanceScalarFieldEnum.schema.ts - -export const AttendanceScalarFieldEnumSchema = z.enum(['id', 'registerStart', 'registerEnd', 'deregisterDeadline', 'selections', 'createdAt', 'updatedAt', 'attendancePrice']) - -export type AttendanceScalarFieldEnum = z.infer; - -// File: AttendancePoolScalarFieldEnum.schema.ts - -export const AttendancePoolScalarFieldEnumSchema = z.enum(['id', 'title', 'mergeDelayHours', 'yearCriteria', 'capacity', 'createdAt', 'updatedAt', 'attendanceId', 'taskId']) - -export type AttendancePoolScalarFieldEnum = z.infer; - -// File: AttendeeScalarFieldEnum.schema.ts - -export const AttendeeScalarFieldEnumSchema = z.enum(['id', 'userGrade', 'selections', 'reserved', 'earliestReservationAt', 'attendedAt', 'createdAt', 'updatedAt', 'paymentDeadline', 'paymentLink', 'paymentId', 'paymentReservedAt', 'paymentChargeDeadline', 'paymentChargedAt', 'paymentRefundedAt', 'paymentCheckoutUrl', 'attendanceId', 'userId', 'attendancePoolId', 'paymentRefundedById']) - -export type AttendeeScalarFieldEnum = z.infer; - -// File: EventScalarFieldEnum.schema.ts - -export const EventScalarFieldEnumSchema = z.enum(['id', 'title', 'start', 'end', 'status', 'description', 'shortDescription', 'imageUrl', 'locationTitle', 'locationAddress', 'locationLink', 'type', 'markForMissedAttendance', 'createdAt', 'updatedAt', 'attendanceId', 'parentId', 'contestId', 'metadataImportId']) - -export type EventScalarFieldEnum = z.infer; - -// File: EventCompanyScalarFieldEnum.schema.ts - -export const EventCompanyScalarFieldEnumSchema = z.enum(['eventId', 'companyId']) - -export type EventCompanyScalarFieldEnum = z.infer; - -// File: MarkScalarFieldEnum.schema.ts - -export const MarkScalarFieldEnumSchema = z.enum(['id', 'title', 'details', 'duration', 'weight', 'type', 'createdAt', 'updatedAt']) - -export type MarkScalarFieldEnum = z.infer; - -// File: MarkGroupScalarFieldEnum.schema.ts - -export const MarkGroupScalarFieldEnumSchema = z.enum(['markId', 'groupId']) - -export type MarkGroupScalarFieldEnum = z.infer; - -// File: PersonalMarkScalarFieldEnum.schema.ts - -export const PersonalMarkScalarFieldEnumSchema = z.enum(['createdAt', 'markId', 'userId', 'givenById']) - -export type PersonalMarkScalarFieldEnum = z.infer; - -// File: PrivacyPermissionsScalarFieldEnum.schema.ts - -export const PrivacyPermissionsScalarFieldEnumSchema = z.enum(['id', 'userId', 'profileVisible', 'usernameVisible', 'emailVisible', 'phoneVisible', 'addressVisible', 'attendanceVisible', 'createdAt', 'updatedAt']) - -export type PrivacyPermissionsScalarFieldEnum = z.infer; - -// File: NotificationPermissionsScalarFieldEnum.schema.ts - -export const NotificationPermissionsScalarFieldEnumSchema = z.enum(['id', 'userId', 'applications', 'newArticles', 'standardNotifications', 'groupMessages', 'markRulesUpdates', 'receipts', 'registrationByAdministrator', 'registrationStart', 'createdAt', 'updatedAt']) - -export type NotificationPermissionsScalarFieldEnum = z.infer; - -// File: EventHostingGroupScalarFieldEnum.schema.ts - -export const EventHostingGroupScalarFieldEnumSchema = z.enum(['groupId', 'eventId']) - -export type EventHostingGroupScalarFieldEnum = z.infer; - -// File: JobListingScalarFieldEnum.schema.ts - -export const JobListingScalarFieldEnumSchema = z.enum(['id', 'title', 'description', 'shortDescription', 'start', 'end', 'featured', 'hidden', 'deadline', 'employment', 'applicationLink', 'applicationEmail', 'rollingAdmission', 'createdAt', 'updatedAt', 'companyId']) - -export type JobListingScalarFieldEnum = z.infer; - -// File: JobListingLocationScalarFieldEnum.schema.ts - -export const JobListingLocationScalarFieldEnumSchema = z.enum(['name', 'createdAt', 'jobListingId']) - -export type JobListingLocationScalarFieldEnum = z.infer; - -// File: OfflineScalarFieldEnum.schema.ts - -export const OfflineScalarFieldEnumSchema = z.enum(['id', 'title', 'fileUrl', 'imageUrl', 'publishedAt', 'createdAt', 'updatedAt']) - -export type OfflineScalarFieldEnum = z.infer; - -// File: ArticleScalarFieldEnum.schema.ts - -export const ArticleScalarFieldEnumSchema = z.enum(['id', 'slug', 'title', 'author', 'photographer', 'imageUrl', 'excerpt', 'content', 'isFeatured', 'vimeoId', 'createdAt', 'updatedAt']) - -export type ArticleScalarFieldEnum = z.infer; - -// File: ArticleTagScalarFieldEnum.schema.ts - -export const ArticleTagScalarFieldEnumSchema = z.enum(['name']) - -export type ArticleTagScalarFieldEnum = z.infer; - -// File: ArticleTagLinkScalarFieldEnum.schema.ts - -export const ArticleTagLinkScalarFieldEnumSchema = z.enum(['articleId', 'tagName']) - -export type ArticleTagLinkScalarFieldEnum = z.infer; - -// File: TaskScalarFieldEnum.schema.ts - -export const TaskScalarFieldEnumSchema = z.enum(['id', 'type', 'status', 'payload', 'createdAt', 'scheduledAt', 'processedAt', 'recurringTaskId']) - -export type TaskScalarFieldEnum = z.infer; - -// File: RecurringTaskScalarFieldEnum.schema.ts - -export const RecurringTaskScalarFieldEnumSchema = z.enum(['id', 'type', 'payload', 'createdAt', 'schedule', 'lastRunAt', 'nextRunAt']) - -export type RecurringTaskScalarFieldEnum = z.infer; - -// File: FeedbackFormScalarFieldEnum.schema.ts - -export const FeedbackFormScalarFieldEnumSchema = z.enum(['id', 'publicResultsToken', 'createdAt', 'updatedAt', 'answerDeadline', 'eventId']) - -export type FeedbackFormScalarFieldEnum = z.infer; - -// File: FeedbackQuestionScalarFieldEnum.schema.ts - -export const FeedbackQuestionScalarFieldEnumSchema = z.enum(['id', 'label', 'required', 'showInPublicResults', 'type', 'order', 'createdAt', 'updatedAt', 'feedbackFormId']) - -export type FeedbackQuestionScalarFieldEnum = z.infer; - -// File: FeedbackQuestionOptionScalarFieldEnum.schema.ts - -export const FeedbackQuestionOptionScalarFieldEnumSchema = z.enum(['id', 'name', 'questionId']) - -export type FeedbackQuestionOptionScalarFieldEnum = z.infer; - -// File: FeedbackQuestionAnswerScalarFieldEnum.schema.ts - -export const FeedbackQuestionAnswerScalarFieldEnumSchema = z.enum(['id', 'value', 'questionId', 'formAnswerId']) - -export type FeedbackQuestionAnswerScalarFieldEnum = z.infer; - -// File: FeedbackQuestionAnswerOptionLinkScalarFieldEnum.schema.ts - -export const FeedbackQuestionAnswerOptionLinkScalarFieldEnumSchema = z.enum(['feedbackQuestionOptionId', 'feedbackQuestionAnswerId']) - -export type FeedbackQuestionAnswerOptionLinkScalarFieldEnum = z.infer; - -// File: FeedbackFormAnswerScalarFieldEnum.schema.ts - -export const FeedbackFormAnswerScalarFieldEnumSchema = z.enum(['id', 'createdAt', 'updatedAt', 'feedbackFormId', 'attendeeId']) - -export type FeedbackFormAnswerScalarFieldEnum = z.infer; - -// File: AuditLogScalarFieldEnum.schema.ts - -export const AuditLogScalarFieldEnumSchema = z.enum(['id', 'tableName', 'rowId', 'createdAt', 'operation', 'rowData', 'transactionId', 'userId']) - -export type AuditLogScalarFieldEnum = z.infer; - -// File: DeregisterReasonScalarFieldEnum.schema.ts - -export const DeregisterReasonScalarFieldEnumSchema = z.enum(['id', 'createdAt', 'registeredAt', 'type', 'details', 'userGrade', 'userId', 'eventId']) - -export type DeregisterReasonScalarFieldEnum = z.infer; - -// File: NotificationRecipientScalarFieldEnum.schema.ts - -export const NotificationRecipientScalarFieldEnumSchema = z.enum(['id', 'readAt', 'notificationId', 'userId']) - -export type NotificationRecipientScalarFieldEnum = z.infer; - -// File: NotificationScalarFieldEnum.schema.ts - -export const NotificationScalarFieldEnumSchema = z.enum(['id', 'createdAt', 'updatedAt', 'title', 'shortDescription', 'content', 'type', 'payload', 'payloadType', 'actorGroupId', 'createdById', 'lastUpdatedById', 'taskId']) - -export type NotificationScalarFieldEnum = z.infer; - -// File: ContestScalarFieldEnum.schema.ts - -export const ContestScalarFieldEnumSchema = z.enum(['id', 'name', 'description', 'startDate', 'resultType', 'resultOrder', 'winnerContestantId']) - -export type ContestScalarFieldEnum = z.infer; - -// File: FadderukeScalarFieldEnum.schema.ts - -export const FadderukeScalarFieldEnumSchema = z.enum(['id', 'year', 'eventId', 'createdAt', 'updatedAt']) - -export type FadderukeScalarFieldEnum = z.infer; - -// File: ContestantScalarFieldEnum.schema.ts - -export const ContestantScalarFieldEnumSchema = z.enum(['id', 'resultValue', 'contestId', 'userId']) - -export type ContestantScalarFieldEnum = z.infer; - -// File: ContestTeamScalarFieldEnum.schema.ts - -export const ContestTeamScalarFieldEnumSchema = z.enum(['id', 'name', 'contestantId']) - -export type ContestTeamScalarFieldEnum = z.infer; - -// File: SortOrder.schema.ts - -export const SortOrderSchema = z.enum(['asc', 'desc']) - -export type SortOrder = z.infer; - -// File: JsonNullValueInput.schema.ts - -export const JsonNullValueInputSchema = z.enum(['JsonNull']) - -export type JsonNullValueInput = z.infer; - -// File: NullableJsonNullValueInput.schema.ts - -export const NullableJsonNullValueInputSchema = z.enum(['DbNull', 'JsonNull']) - -export type NullableJsonNullValueInput = z.infer; - -// File: QueryMode.schema.ts - -export const QueryModeSchema = z.enum(['default', 'insensitive']) - -export type QueryMode = z.infer; - -// File: NullsOrder.schema.ts - -export const NullsOrderSchema = z.enum(['first', 'last']) - -export type NullsOrder = z.infer; - -// File: JsonNullValueFilter.schema.ts - -export const JsonNullValueFilterSchema = z.enum(['DbNull', 'JsonNull', 'AnyNull']) - -export type JsonNullValueFilter = z.infer; - -// File: MembershipType.schema.ts - -export const MembershipTypeSchema = z.enum(['BACHELOR_STUDENT', 'MASTER_STUDENT', 'KNIGHT', 'SOCIAL_MEMBER']) - -export type MembershipType = z.infer; - -// File: MembershipSpecialization.schema.ts - -export const MembershipSpecializationSchema = z.enum(['ARTIFICIAL_INTELLIGENCE', 'DATABASE_AND_SEARCH', 'INTERACTION_DESIGN', 'SOFTWARE_ENGINEERING', 'UNKNOWN']) - -export type MembershipSpecialization = z.infer; - -// File: Gender.schema.ts - -export const GenderSchema = z.enum(['MALE', 'FEMALE', 'NON_BINARY', 'OTHER', 'UNKNOWN']) - -export type Gender = z.infer; - -// File: GroupMemberVisibility.schema.ts - -export const GroupMemberVisibilitySchema = z.enum(['ALL_MEMBERS', 'WITH_ROLES', 'LEADER', 'NONE']) - -export type GroupMemberVisibility = z.infer; - -// File: GroupRecruitmentMethod.schema.ts - -export const GroupRecruitmentMethodSchema = z.enum(['NONE', 'SPRING_APPLICATION', 'AUTUMN_APPLICATION', 'GENERAL_ASSEMBLY', 'NOMINATION', 'OTHER']) - -export type GroupRecruitmentMethod = z.infer; - -// File: GroupType.schema.ts - -export const GroupTypeSchema = z.enum(['COMMITTEE', 'NODE_COMMITTEE', 'ASSOCIATED', 'INTEREST_GROUP', 'EMAIL_ONLY']) - -export type GroupType = z.infer; - -// File: GroupRoleType.schema.ts - -export const GroupRoleTypeSchema = z.enum(['LEADER', 'PUNISHER', 'TREASURER', 'COSMETIC', 'DEPUTY_LEADER', 'TRUSTEE', 'EMAIL_ONLY', 'TEMPORARILY_LEAVE', 'EDITOR_IN_CHIEF']) - -export type GroupRoleType = z.infer; - -// File: EventStatus.schema.ts - -export const EventStatusSchema = z.enum(['DRAFT', 'PUBLIC', 'DELETED']) - -export type EventStatus = z.infer; - -// File: EventType.schema.ts - -export const EventTypeSchema = z.enum(['GENERAL_ASSEMBLY', 'COMPANY', 'ACADEMIC', 'SOCIAL', 'INTERNAL', 'OTHER', 'WELCOME']) - -export type EventType = z.infer; - -// File: MarkType.schema.ts - -export const MarkTypeSchema = z.enum(['MANUAL', 'LATE_ATTENDANCE', 'MISSED_ATTENDANCE', 'MISSING_FEEDBACK', 'MISSING_PAYMENT']) - -export type MarkType = z.infer; - -// File: EmploymentType.schema.ts - -export const EmploymentTypeSchema = z.enum(['PARTTIME', 'FULLTIME', 'SUMMER_INTERNSHIP', 'OTHER']) - -export type EmploymentType = z.infer; - -// File: TaskType.schema.ts - -export const TaskTypeSchema = z.enum(['RESERVE_ATTENDEE', 'CHARGE_ATTENDEE', 'MERGE_ATTENDANCE_POOLS', 'VERIFY_PAYMENT', 'VERIFY_FEEDBACK_ANSWERED', 'SEND_FEEDBACK_FORM_EMAILS', 'VERIFY_ATTENDEE_ATTENDED']) - -export type TaskType = z.infer; - -// File: TaskStatus.schema.ts - -export const TaskStatusSchema = z.enum(['PENDING', 'RUNNING', 'COMPLETED', 'FAILED', 'CANCELED']) - -export type TaskStatus = z.infer; - -// File: FeedbackQuestionType.schema.ts - -export const FeedbackQuestionTypeSchema = z.enum(['TEXT', 'LONGTEXT', 'RATING', 'CHECKBOX', 'SELECT', 'MULTISELECT']) - -export type FeedbackQuestionType = z.infer; - -// File: DeregisterReasonType.schema.ts - -export const DeregisterReasonTypeSchema = z.enum(['SCHOOL', 'WORK', 'ECONOMY', 'TIME', 'SICK', 'NO_FAMILIAR_FACES', 'OTHER']) - -export type DeregisterReasonType = z.infer; - -// File: NotificationType.schema.ts - -export const NotificationTypeSchema = z.enum(['BROADCAST', 'BROADCAST_IMPORTANT', 'EVENT_REGISTRATION', 'EVENT_REMINDER', 'EVENT_UPDATE', 'JOB_LISTING_REMINDER', 'NEW_ARTICLE', 'NEW_EVENT', 'NEW_INTEREST_GROUP', 'NEW_JOB_LISTING', 'NEW_OFFLINE', 'NEW_MARK', 'NEW_FEEDBACK_FORM']) - -export type NotificationType = z.infer; - -// File: NotificationPayloadType.schema.ts - -export const NotificationPayloadTypeSchema = z.enum(['URL', 'EVENT', 'ARTICLE', 'GROUP', 'USER', 'OFFLINE', 'JOB_LISTING', 'NONE']) - -export type NotificationPayloadType = z.infer; - -// File: ContestResultType.schema.ts - -export const ContestResultTypeSchema = z.enum(['SCORE', 'DURATION', 'WINNER']) - -export type ContestResultType = z.infer; - -// File: ContestResultOrder.schema.ts - -export const ContestResultOrderSchema = z.enum(['ASC', 'DESC']) - -export type ContestResultOrder = z.infer; - -// File: MembershipWhereInput.schema.ts -const __makeSchema_MembershipWhereInput_schema = () => z.object({ - AND: z.union([MembershipWhereInputObjectSchema, MembershipWhereInputObjectSchema.array()]).optional(), - get OR(){ return MembershipWhereInputObjectSchema.array().optional(); }, - NOT: z.union([MembershipWhereInputObjectSchema, MembershipWhereInputObjectSchema.array()]).optional(), - id: z.union([StringFilterObjectSchema, z.string()]).optional(), - type: z.union([EnumMembershipTypeFilterObjectSchema, MembershipTypeSchema]).optional(), - specialization: z.union([EnumMembershipSpecializationNullableFilterObjectSchema, MembershipSpecializationSchema]).optional().nullable(), - start: z.union([DateTimeFilterObjectSchema, z.coerce.date()]).optional(), - end: z.union([DateTimeNullableFilterObjectSchema, z.coerce.date()]).optional().nullable(), - semester: z.union([IntNullableFilterObjectSchema, z.number().int()]).optional().nullable(), - userId: z.union([StringFilterObjectSchema, z.string()]).optional(), - user: z.union([UserScalarRelationFilterObjectSchema, UserWhereInputObjectSchema]).optional() -}).strict(); -export const MembershipWhereInputObjectSchema: z.ZodType = z.lazy(__makeSchema_MembershipWhereInput_schema) as unknown as z.ZodType; -export const MembershipWhereInputObjectZodSchema = z.lazy(__makeSchema_MembershipWhereInput_schema); - - -// File: MembershipOrderByWithRelationInput.schema.ts -const __makeSchema_MembershipOrderByWithRelationInput_schema = () => z.object({ - id: SortOrderSchema.optional(), - type: SortOrderSchema.optional(), - specialization: z.union([SortOrderSchema, SortOrderInputObjectSchema]).optional(), - start: SortOrderSchema.optional(), - end: z.union([SortOrderSchema, SortOrderInputObjectSchema]).optional(), - semester: z.union([SortOrderSchema, SortOrderInputObjectSchema]).optional(), - userId: SortOrderSchema.optional(), - get user(){ return UserOrderByWithRelationInputObjectSchema.optional(); } -}).strict(); -export const MembershipOrderByWithRelationInputObjectSchema: z.ZodType = z.lazy(__makeSchema_MembershipOrderByWithRelationInput_schema) as unknown as z.ZodType; -export const MembershipOrderByWithRelationInputObjectZodSchema = z.lazy(__makeSchema_MembershipOrderByWithRelationInput_schema); - - -// File: MembershipWhereUniqueInput.schema.ts -const __makeSchema_MembershipWhereUniqueInput_schema = () => z.object({ - id: z.string().optional() -}).strict(); -export const MembershipWhereUniqueInputObjectSchema: z.ZodType = z.lazy(__makeSchema_MembershipWhereUniqueInput_schema) as unknown as z.ZodType; -export const MembershipWhereUniqueInputObjectZodSchema = z.lazy(__makeSchema_MembershipWhereUniqueInput_schema); - - -// File: MembershipOrderByWithAggregationInput.schema.ts -const __makeSchema_MembershipOrderByWithAggregationInput_schema = () => z.object({ - id: SortOrderSchema.optional(), - type: SortOrderSchema.optional(), - specialization: z.union([SortOrderSchema, SortOrderInputObjectSchema]).optional(), - start: SortOrderSchema.optional(), - end: z.union([SortOrderSchema, SortOrderInputObjectSchema]).optional(), - semester: z.union([SortOrderSchema, SortOrderInputObjectSchema]).optional(), - userId: SortOrderSchema.optional(), - get _count(){ return MembershipCountOrderByAggregateInputObjectSchema.optional(); }, - get _avg(){ return MembershipAvgOrderByAggregateInputObjectSchema.optional(); }, - get _max(){ return MembershipMaxOrderByAggregateInputObjectSchema.optional(); }, - get _min(){ return MembershipMinOrderByAggregateInputObjectSchema.optional(); }, - get _sum(){ return MembershipSumOrderByAggregateInputObjectSchema.optional(); } -}).strict(); -export const MembershipOrderByWithAggregationInputObjectSchema: z.ZodType = z.lazy(__makeSchema_MembershipOrderByWithAggregationInput_schema) as unknown as z.ZodType; -export const MembershipOrderByWithAggregationInputObjectZodSchema = z.lazy(__makeSchema_MembershipOrderByWithAggregationInput_schema); - - -// File: MembershipScalarWhereWithAggregatesInput.schema.ts -const __makeSchema_MembershipScalarWhereWithAggregatesInput_schema = () => z.object({ - AND: z.union([MembershipScalarWhereWithAggregatesInputObjectSchema, MembershipScalarWhereWithAggregatesInputObjectSchema.array()]).optional(), - get OR(){ return MembershipScalarWhereWithAggregatesInputObjectSchema.array().optional(); }, - NOT: z.union([MembershipScalarWhereWithAggregatesInputObjectSchema, MembershipScalarWhereWithAggregatesInputObjectSchema.array()]).optional(), - id: z.union([StringWithAggregatesFilterObjectSchema, z.string()]).optional(), - type: z.union([EnumMembershipTypeWithAggregatesFilterObjectSchema, MembershipTypeSchema]).optional(), - specialization: z.union([EnumMembershipSpecializationNullableWithAggregatesFilterObjectSchema, MembershipSpecializationSchema]).optional().nullable(), - start: z.union([DateTimeWithAggregatesFilterObjectSchema, z.coerce.date()]).optional(), - end: z.union([DateTimeNullableWithAggregatesFilterObjectSchema, z.coerce.date()]).optional().nullable(), - semester: z.union([IntNullableWithAggregatesFilterObjectSchema, z.number().int()]).optional().nullable(), - userId: z.union([StringWithAggregatesFilterObjectSchema, z.string()]).optional() -}).strict(); -export const MembershipScalarWhereWithAggregatesInputObjectSchema: z.ZodType = z.lazy(__makeSchema_MembershipScalarWhereWithAggregatesInput_schema) as unknown as z.ZodType; -export const MembershipScalarWhereWithAggregatesInputObjectZodSchema = z.lazy(__makeSchema_MembershipScalarWhereWithAggregatesInput_schema); - - -// File: UserWhereInput.schema.ts -const __makeSchema_UserWhereInput_schema = () => z.object({ - AND: z.union([UserWhereInputObjectSchema, UserWhereInputObjectSchema.array()]).optional(), - get OR(){ return UserWhereInputObjectSchema.array().optional(); }, - NOT: z.union([UserWhereInputObjectSchema, UserWhereInputObjectSchema.array()]).optional(), - id: z.union([StringFilterObjectSchema, z.string()]).optional(), - username: z.union([StringFilterObjectSchema, z.string()]).optional(), - name: z.union([StringNullableFilterObjectSchema, z.string()]).optional().nullable(), - email: z.union([StringNullableFilterObjectSchema, z.string()]).optional().nullable(), - imageUrl: z.union([StringNullableFilterObjectSchema, z.string()]).optional().nullable(), - biography: z.union([StringNullableFilterObjectSchema, z.string()]).optional().nullable(), - phone: z.union([StringNullableFilterObjectSchema, z.string()]).optional().nullable(), - gender: z.union([EnumGenderFilterObjectSchema, GenderSchema]).optional(), - dietaryRestrictions: z.union([StringNullableFilterObjectSchema, z.string()]).optional().nullable(), - ntnuUsername: z.union([StringNullableFilterObjectSchema, z.string()]).optional().nullable(), - get flags(){ return StringNullableListFilterObjectSchema.optional(); }, - workspaceUserId: z.union([StringNullableFilterObjectSchema, z.string()]).optional().nullable(), - createdAt: z.union([DateTimeFilterObjectSchema, z.coerce.date()]).optional(), - updatedAt: z.union([DateTimeFilterObjectSchema, z.coerce.date()]).optional(), - privacyPermissionsId: z.union([StringNullableFilterObjectSchema, z.string()]).optional().nullable(), - notificationPermissionsId: z.union([StringNullableFilterObjectSchema, z.string()]).optional().nullable(), - privacyPermissions: z.union([PrivacyPermissionsNullableScalarRelationFilterObjectSchema, PrivacyPermissionsWhereInputObjectSchema]).optional(), - notificationPermissions: z.union([NotificationPermissionsNullableScalarRelationFilterObjectSchema, NotificationPermissionsWhereInputObjectSchema]).optional(), - get attendee(){ return AttendeeListRelationFilterObjectSchema.optional(); }, - get personalMark(){ return PersonalMarkListRelationFilterObjectSchema.optional(); }, - get groupMemberships(){ return GroupMembershipListRelationFilterObjectSchema.optional(); }, - get memberships(){ return MembershipListRelationFilterObjectSchema.optional(); }, - get givenMarks(){ return PersonalMarkListRelationFilterObjectSchema.optional(); }, - get attendeesRefunded(){ return AttendeeListRelationFilterObjectSchema.optional(); }, - get auditLogs(){ return AuditLogListRelationFilterObjectSchema.optional(); }, - get deregisterReasons(){ return DeregisterReasonListRelationFilterObjectSchema.optional(); }, - get notificationsReceived(){ return NotificationRecipientListRelationFilterObjectSchema.optional(); }, - get notificationsCreated(){ return NotificationListRelationFilterObjectSchema.optional(); }, - get notificationsUpdated(){ return NotificationListRelationFilterObjectSchema.optional(); }, - get contestants(){ return ContestantListRelationFilterObjectSchema.optional(); }, - get contestTeams(){ return ContestTeamListRelationFilterObjectSchema.optional(); } -}).strict(); -export const UserWhereInputObjectSchema: z.ZodType = z.lazy(__makeSchema_UserWhereInput_schema) as unknown as z.ZodType; -export const UserWhereInputObjectZodSchema = z.lazy(__makeSchema_UserWhereInput_schema); - - -// File: UserOrderByWithRelationInput.schema.ts -const __makeSchema_UserOrderByWithRelationInput_schema = () => z.object({ - id: SortOrderSchema.optional(), - username: SortOrderSchema.optional(), - name: z.union([SortOrderSchema, SortOrderInputObjectSchema]).optional(), - email: z.union([SortOrderSchema, SortOrderInputObjectSchema]).optional(), - imageUrl: z.union([SortOrderSchema, SortOrderInputObjectSchema]).optional(), - biography: z.union([SortOrderSchema, SortOrderInputObjectSchema]).optional(), - phone: z.union([SortOrderSchema, SortOrderInputObjectSchema]).optional(), - gender: SortOrderSchema.optional(), - dietaryRestrictions: z.union([SortOrderSchema, SortOrderInputObjectSchema]).optional(), - ntnuUsername: z.union([SortOrderSchema, SortOrderInputObjectSchema]).optional(), - flags: SortOrderSchema.optional(), - workspaceUserId: z.union([SortOrderSchema, SortOrderInputObjectSchema]).optional(), - createdAt: SortOrderSchema.optional(), - updatedAt: SortOrderSchema.optional(), - privacyPermissionsId: z.union([SortOrderSchema, SortOrderInputObjectSchema]).optional(), - notificationPermissionsId: z.union([SortOrderSchema, SortOrderInputObjectSchema]).optional(), - get privacyPermissions(){ return PrivacyPermissionsOrderByWithRelationInputObjectSchema.optional(); }, - get notificationPermissions(){ return NotificationPermissionsOrderByWithRelationInputObjectSchema.optional(); }, - get attendee(){ return AttendeeOrderByRelationAggregateInputObjectSchema.optional(); }, - get personalMark(){ return PersonalMarkOrderByRelationAggregateInputObjectSchema.optional(); }, - get groupMemberships(){ return GroupMembershipOrderByRelationAggregateInputObjectSchema.optional(); }, - get memberships(){ return MembershipOrderByRelationAggregateInputObjectSchema.optional(); }, - get givenMarks(){ return PersonalMarkOrderByRelationAggregateInputObjectSchema.optional(); }, - get attendeesRefunded(){ return AttendeeOrderByRelationAggregateInputObjectSchema.optional(); }, - get auditLogs(){ return AuditLogOrderByRelationAggregateInputObjectSchema.optional(); }, - get deregisterReasons(){ return DeregisterReasonOrderByRelationAggregateInputObjectSchema.optional(); }, - get notificationsReceived(){ return NotificationRecipientOrderByRelationAggregateInputObjectSchema.optional(); }, - get notificationsCreated(){ return NotificationOrderByRelationAggregateInputObjectSchema.optional(); }, - get notificationsUpdated(){ return NotificationOrderByRelationAggregateInputObjectSchema.optional(); }, - get contestants(){ return ContestantOrderByRelationAggregateInputObjectSchema.optional(); }, - get contestTeams(){ return ContestTeamOrderByRelationAggregateInputObjectSchema.optional(); } -}).strict(); -export const UserOrderByWithRelationInputObjectSchema: z.ZodType = z.lazy(__makeSchema_UserOrderByWithRelationInput_schema) as unknown as z.ZodType; -export const UserOrderByWithRelationInputObjectZodSchema = z.lazy(__makeSchema_UserOrderByWithRelationInput_schema); - - -// File: UserWhereUniqueInput.schema.ts -const __makeSchema_UserWhereUniqueInput_schema = () => z.object({ - id: z.string().optional(), - username: z.string().optional(), - workspaceUserId: z.string().optional(), - privacyPermissionsId: z.string().optional(), - notificationPermissionsId: z.string().optional() -}).strict(); -export const UserWhereUniqueInputObjectSchema: z.ZodType = z.lazy(__makeSchema_UserWhereUniqueInput_schema) as unknown as z.ZodType; -export const UserWhereUniqueInputObjectZodSchema = z.lazy(__makeSchema_UserWhereUniqueInput_schema); - - -// File: UserOrderByWithAggregationInput.schema.ts -const __makeSchema_UserOrderByWithAggregationInput_schema = () => z.object({ - id: SortOrderSchema.optional(), - username: SortOrderSchema.optional(), - name: z.union([SortOrderSchema, SortOrderInputObjectSchema]).optional(), - email: z.union([SortOrderSchema, SortOrderInputObjectSchema]).optional(), - imageUrl: z.union([SortOrderSchema, SortOrderInputObjectSchema]).optional(), - biography: z.union([SortOrderSchema, SortOrderInputObjectSchema]).optional(), - phone: z.union([SortOrderSchema, SortOrderInputObjectSchema]).optional(), - gender: SortOrderSchema.optional(), - dietaryRestrictions: z.union([SortOrderSchema, SortOrderInputObjectSchema]).optional(), - ntnuUsername: z.union([SortOrderSchema, SortOrderInputObjectSchema]).optional(), - flags: SortOrderSchema.optional(), - workspaceUserId: z.union([SortOrderSchema, SortOrderInputObjectSchema]).optional(), - createdAt: SortOrderSchema.optional(), - updatedAt: SortOrderSchema.optional(), - privacyPermissionsId: z.union([SortOrderSchema, SortOrderInputObjectSchema]).optional(), - notificationPermissionsId: z.union([SortOrderSchema, SortOrderInputObjectSchema]).optional(), - get _count(){ return UserCountOrderByAggregateInputObjectSchema.optional(); }, - get _max(){ return UserMaxOrderByAggregateInputObjectSchema.optional(); }, - get _min(){ return UserMinOrderByAggregateInputObjectSchema.optional(); } -}).strict(); -export const UserOrderByWithAggregationInputObjectSchema: z.ZodType = z.lazy(__makeSchema_UserOrderByWithAggregationInput_schema) as unknown as z.ZodType; -export const UserOrderByWithAggregationInputObjectZodSchema = z.lazy(__makeSchema_UserOrderByWithAggregationInput_schema); - - -// File: UserScalarWhereWithAggregatesInput.schema.ts -const __makeSchema_UserScalarWhereWithAggregatesInput_schema = () => z.object({ - AND: z.union([UserScalarWhereWithAggregatesInputObjectSchema, UserScalarWhereWithAggregatesInputObjectSchema.array()]).optional(), - get OR(){ return UserScalarWhereWithAggregatesInputObjectSchema.array().optional(); }, - NOT: z.union([UserScalarWhereWithAggregatesInputObjectSchema, UserScalarWhereWithAggregatesInputObjectSchema.array()]).optional(), - id: z.union([StringWithAggregatesFilterObjectSchema, z.string()]).optional(), - username: z.union([StringWithAggregatesFilterObjectSchema, z.string()]).optional(), - name: z.union([StringNullableWithAggregatesFilterObjectSchema, z.string()]).optional().nullable(), - email: z.union([StringNullableWithAggregatesFilterObjectSchema, z.string()]).optional().nullable(), - imageUrl: z.union([StringNullableWithAggregatesFilterObjectSchema, z.string()]).optional().nullable(), - biography: z.union([StringNullableWithAggregatesFilterObjectSchema, z.string()]).optional().nullable(), - phone: z.union([StringNullableWithAggregatesFilterObjectSchema, z.string()]).optional().nullable(), - gender: z.union([EnumGenderWithAggregatesFilterObjectSchema, GenderSchema]).optional(), - dietaryRestrictions: z.union([StringNullableWithAggregatesFilterObjectSchema, z.string()]).optional().nullable(), - ntnuUsername: z.union([StringNullableWithAggregatesFilterObjectSchema, z.string()]).optional().nullable(), - get flags(){ return StringNullableListFilterObjectSchema.optional(); }, - workspaceUserId: z.union([StringNullableWithAggregatesFilterObjectSchema, z.string()]).optional().nullable(), - createdAt: z.union([DateTimeWithAggregatesFilterObjectSchema, z.coerce.date()]).optional(), - updatedAt: z.union([DateTimeWithAggregatesFilterObjectSchema, z.coerce.date()]).optional(), - privacyPermissionsId: z.union([StringNullableWithAggregatesFilterObjectSchema, z.string()]).optional().nullable(), - notificationPermissionsId: z.union([StringNullableWithAggregatesFilterObjectSchema, z.string()]).optional().nullable() -}).strict(); -export const UserScalarWhereWithAggregatesInputObjectSchema: z.ZodType = z.lazy(__makeSchema_UserScalarWhereWithAggregatesInput_schema) as unknown as z.ZodType; -export const UserScalarWhereWithAggregatesInputObjectZodSchema = z.lazy(__makeSchema_UserScalarWhereWithAggregatesInput_schema); - - -// File: CompanyWhereInput.schema.ts -const __makeSchema_CompanyWhereInput_schema = () => z.object({ - AND: z.union([CompanyWhereInputObjectSchema, CompanyWhereInputObjectSchema.array()]).optional(), - get OR(){ return CompanyWhereInputObjectSchema.array().optional(); }, - NOT: z.union([CompanyWhereInputObjectSchema, CompanyWhereInputObjectSchema.array()]).optional(), - id: z.union([StringFilterObjectSchema, z.string()]).optional(), - name: z.union([StringFilterObjectSchema, z.string()]).optional(), - slug: z.union([StringFilterObjectSchema, z.string()]).optional(), - description: z.union([StringNullableFilterObjectSchema, z.string()]).optional().nullable(), - phone: z.union([StringNullableFilterObjectSchema, z.string()]).optional().nullable(), - email: z.union([StringNullableFilterObjectSchema, z.string()]).optional().nullable(), - website: z.union([StringFilterObjectSchema, z.string()]).optional(), - location: z.union([StringNullableFilterObjectSchema, z.string()]).optional().nullable(), - imageUrl: z.union([StringNullableFilterObjectSchema, z.string()]).optional().nullable(), - createdAt: z.union([DateTimeFilterObjectSchema, z.coerce.date()]).optional(), - updatedAt: z.union([DateTimeFilterObjectSchema, z.coerce.date()]).optional(), - get events(){ return EventCompanyListRelationFilterObjectSchema.optional(); }, - get JobListing(){ return JobListingListRelationFilterObjectSchema.optional(); } -}).strict(); -export const CompanyWhereInputObjectSchema: z.ZodType = z.lazy(__makeSchema_CompanyWhereInput_schema) as unknown as z.ZodType; -export const CompanyWhereInputObjectZodSchema = z.lazy(__makeSchema_CompanyWhereInput_schema); - - -// File: CompanyOrderByWithRelationInput.schema.ts -const __makeSchema_CompanyOrderByWithRelationInput_schema = () => z.object({ - id: SortOrderSchema.optional(), - name: SortOrderSchema.optional(), - slug: SortOrderSchema.optional(), - description: z.union([SortOrderSchema, SortOrderInputObjectSchema]).optional(), - phone: z.union([SortOrderSchema, SortOrderInputObjectSchema]).optional(), - email: z.union([SortOrderSchema, SortOrderInputObjectSchema]).optional(), - website: SortOrderSchema.optional(), - location: z.union([SortOrderSchema, SortOrderInputObjectSchema]).optional(), - imageUrl: z.union([SortOrderSchema, SortOrderInputObjectSchema]).optional(), - createdAt: SortOrderSchema.optional(), - updatedAt: SortOrderSchema.optional(), - get events(){ return EventCompanyOrderByRelationAggregateInputObjectSchema.optional(); }, - get JobListing(){ return JobListingOrderByRelationAggregateInputObjectSchema.optional(); } -}).strict(); -export const CompanyOrderByWithRelationInputObjectSchema: z.ZodType = z.lazy(__makeSchema_CompanyOrderByWithRelationInput_schema) as unknown as z.ZodType; -export const CompanyOrderByWithRelationInputObjectZodSchema = z.lazy(__makeSchema_CompanyOrderByWithRelationInput_schema); - - -// File: CompanyWhereUniqueInput.schema.ts -const __makeSchema_CompanyWhereUniqueInput_schema = () => z.object({ - id: z.string().optional(), - slug: z.string().optional() -}).strict(); -export const CompanyWhereUniqueInputObjectSchema: z.ZodType = z.lazy(__makeSchema_CompanyWhereUniqueInput_schema) as unknown as z.ZodType; -export const CompanyWhereUniqueInputObjectZodSchema = z.lazy(__makeSchema_CompanyWhereUniqueInput_schema); - - -// File: CompanyOrderByWithAggregationInput.schema.ts -const __makeSchema_CompanyOrderByWithAggregationInput_schema = () => z.object({ - id: SortOrderSchema.optional(), - name: SortOrderSchema.optional(), - slug: SortOrderSchema.optional(), - description: z.union([SortOrderSchema, SortOrderInputObjectSchema]).optional(), - phone: z.union([SortOrderSchema, SortOrderInputObjectSchema]).optional(), - email: z.union([SortOrderSchema, SortOrderInputObjectSchema]).optional(), - website: SortOrderSchema.optional(), - location: z.union([SortOrderSchema, SortOrderInputObjectSchema]).optional(), - imageUrl: z.union([SortOrderSchema, SortOrderInputObjectSchema]).optional(), - createdAt: SortOrderSchema.optional(), - updatedAt: SortOrderSchema.optional(), - get _count(){ return CompanyCountOrderByAggregateInputObjectSchema.optional(); }, - get _max(){ return CompanyMaxOrderByAggregateInputObjectSchema.optional(); }, - get _min(){ return CompanyMinOrderByAggregateInputObjectSchema.optional(); } -}).strict(); -export const CompanyOrderByWithAggregationInputObjectSchema: z.ZodType = z.lazy(__makeSchema_CompanyOrderByWithAggregationInput_schema) as unknown as z.ZodType; -export const CompanyOrderByWithAggregationInputObjectZodSchema = z.lazy(__makeSchema_CompanyOrderByWithAggregationInput_schema); - - -// File: CompanyScalarWhereWithAggregatesInput.schema.ts -const __makeSchema_CompanyScalarWhereWithAggregatesInput_schema = () => z.object({ - AND: z.union([CompanyScalarWhereWithAggregatesInputObjectSchema, CompanyScalarWhereWithAggregatesInputObjectSchema.array()]).optional(), - get OR(){ return CompanyScalarWhereWithAggregatesInputObjectSchema.array().optional(); }, - NOT: z.union([CompanyScalarWhereWithAggregatesInputObjectSchema, CompanyScalarWhereWithAggregatesInputObjectSchema.array()]).optional(), - id: z.union([StringWithAggregatesFilterObjectSchema, z.string()]).optional(), - name: z.union([StringWithAggregatesFilterObjectSchema, z.string()]).optional(), - slug: z.union([StringWithAggregatesFilterObjectSchema, z.string()]).optional(), - description: z.union([StringNullableWithAggregatesFilterObjectSchema, z.string()]).optional().nullable(), - phone: z.union([StringNullableWithAggregatesFilterObjectSchema, z.string()]).optional().nullable(), - email: z.union([StringNullableWithAggregatesFilterObjectSchema, z.string()]).optional().nullable(), - website: z.union([StringWithAggregatesFilterObjectSchema, z.string()]).optional(), - location: z.union([StringNullableWithAggregatesFilterObjectSchema, z.string()]).optional().nullable(), - imageUrl: z.union([StringNullableWithAggregatesFilterObjectSchema, z.string()]).optional().nullable(), - createdAt: z.union([DateTimeWithAggregatesFilterObjectSchema, z.coerce.date()]).optional(), - updatedAt: z.union([DateTimeWithAggregatesFilterObjectSchema, z.coerce.date()]).optional() -}).strict(); -export const CompanyScalarWhereWithAggregatesInputObjectSchema: z.ZodType = z.lazy(__makeSchema_CompanyScalarWhereWithAggregatesInput_schema) as unknown as z.ZodType; -export const CompanyScalarWhereWithAggregatesInputObjectZodSchema = z.lazy(__makeSchema_CompanyScalarWhereWithAggregatesInput_schema); - - -// File: GroupWhereInput.schema.ts -const __makeSchema_GroupWhereInput_schema = () => z.object({ - AND: z.union([GroupWhereInputObjectSchema, GroupWhereInputObjectSchema.array()]).optional(), - get OR(){ return GroupWhereInputObjectSchema.array().optional(); }, - NOT: z.union([GroupWhereInputObjectSchema, GroupWhereInputObjectSchema.array()]).optional(), - slug: z.union([StringFilterObjectSchema, z.string()]).optional(), - abbreviation: z.union([StringFilterObjectSchema, z.string()]).optional(), - name: z.union([StringNullableFilterObjectSchema, z.string()]).optional().nullable(), - shortDescription: z.union([StringNullableFilterObjectSchema, z.string()]).optional().nullable(), - description: z.union([StringFilterObjectSchema, z.string()]).optional(), - imageUrl: z.union([StringNullableFilterObjectSchema, z.string()]).optional().nullable(), - email: z.union([StringNullableFilterObjectSchema, z.string()]).optional().nullable(), - contactUrl: z.union([StringNullableFilterObjectSchema, z.string()]).optional().nullable(), - slackUrl: z.union([StringNullableFilterObjectSchema, z.string()]).optional().nullable(), - showLeaderAsContact: z.union([BoolFilterObjectSchema, z.boolean()]).optional(), - createdAt: z.union([DateTimeFilterObjectSchema, z.coerce.date()]).optional(), - deactivatedAt: z.union([DateTimeNullableFilterObjectSchema, z.coerce.date()]).optional().nullable(), - workspaceGroupId: z.union([StringNullableFilterObjectSchema, z.string()]).optional().nullable(), - memberVisibility: z.union([EnumGroupMemberVisibilityFilterObjectSchema, GroupMemberVisibilitySchema]).optional(), - recruitmentMethod: z.union([EnumGroupRecruitmentMethodFilterObjectSchema, GroupRecruitmentMethodSchema]).optional(), - type: z.union([EnumGroupTypeFilterObjectSchema, GroupTypeSchema]).optional(), - get events(){ return EventHostingGroupListRelationFilterObjectSchema.optional(); }, - get contests(){ return ContestListRelationFilterObjectSchema.optional(); }, - get memberships(){ return GroupMembershipListRelationFilterObjectSchema.optional(); }, - get marks(){ return MarkGroupListRelationFilterObjectSchema.optional(); }, - get roles(){ return GroupRoleListRelationFilterObjectSchema.optional(); }, - get notifications(){ return NotificationListRelationFilterObjectSchema.optional(); } -}).strict(); -export const GroupWhereInputObjectSchema: z.ZodType = z.lazy(__makeSchema_GroupWhereInput_schema) as unknown as z.ZodType; -export const GroupWhereInputObjectZodSchema = z.lazy(__makeSchema_GroupWhereInput_schema); - - -// File: GroupOrderByWithRelationInput.schema.ts -const __makeSchema_GroupOrderByWithRelationInput_schema = () => z.object({ - slug: SortOrderSchema.optional(), - abbreviation: SortOrderSchema.optional(), - name: z.union([SortOrderSchema, SortOrderInputObjectSchema]).optional(), - shortDescription: z.union([SortOrderSchema, SortOrderInputObjectSchema]).optional(), - description: SortOrderSchema.optional(), - imageUrl: z.union([SortOrderSchema, SortOrderInputObjectSchema]).optional(), - email: z.union([SortOrderSchema, SortOrderInputObjectSchema]).optional(), - contactUrl: z.union([SortOrderSchema, SortOrderInputObjectSchema]).optional(), - slackUrl: z.union([SortOrderSchema, SortOrderInputObjectSchema]).optional(), - showLeaderAsContact: SortOrderSchema.optional(), - createdAt: SortOrderSchema.optional(), - deactivatedAt: z.union([SortOrderSchema, SortOrderInputObjectSchema]).optional(), - workspaceGroupId: z.union([SortOrderSchema, SortOrderInputObjectSchema]).optional(), - memberVisibility: SortOrderSchema.optional(), - recruitmentMethod: SortOrderSchema.optional(), - type: SortOrderSchema.optional(), - get events(){ return EventHostingGroupOrderByRelationAggregateInputObjectSchema.optional(); }, - get contests(){ return ContestOrderByRelationAggregateInputObjectSchema.optional(); }, - get memberships(){ return GroupMembershipOrderByRelationAggregateInputObjectSchema.optional(); }, - get marks(){ return MarkGroupOrderByRelationAggregateInputObjectSchema.optional(); }, - get roles(){ return GroupRoleOrderByRelationAggregateInputObjectSchema.optional(); }, - get notifications(){ return NotificationOrderByRelationAggregateInputObjectSchema.optional(); } -}).strict(); -export const GroupOrderByWithRelationInputObjectSchema: z.ZodType = z.lazy(__makeSchema_GroupOrderByWithRelationInput_schema) as unknown as z.ZodType; -export const GroupOrderByWithRelationInputObjectZodSchema = z.lazy(__makeSchema_GroupOrderByWithRelationInput_schema); - - -// File: GroupWhereUniqueInput.schema.ts -const __makeSchema_GroupWhereUniqueInput_schema = () => z.object({ - slug: z.string().optional(), - workspaceGroupId: z.string().optional() -}).strict(); -export const GroupWhereUniqueInputObjectSchema: z.ZodType = z.lazy(__makeSchema_GroupWhereUniqueInput_schema) as unknown as z.ZodType; -export const GroupWhereUniqueInputObjectZodSchema = z.lazy(__makeSchema_GroupWhereUniqueInput_schema); - - -// File: GroupOrderByWithAggregationInput.schema.ts -const __makeSchema_GroupOrderByWithAggregationInput_schema = () => z.object({ - slug: SortOrderSchema.optional(), - abbreviation: SortOrderSchema.optional(), - name: z.union([SortOrderSchema, SortOrderInputObjectSchema]).optional(), - shortDescription: z.union([SortOrderSchema, SortOrderInputObjectSchema]).optional(), - description: SortOrderSchema.optional(), - imageUrl: z.union([SortOrderSchema, SortOrderInputObjectSchema]).optional(), - email: z.union([SortOrderSchema, SortOrderInputObjectSchema]).optional(), - contactUrl: z.union([SortOrderSchema, SortOrderInputObjectSchema]).optional(), - slackUrl: z.union([SortOrderSchema, SortOrderInputObjectSchema]).optional(), - showLeaderAsContact: SortOrderSchema.optional(), - createdAt: SortOrderSchema.optional(), - deactivatedAt: z.union([SortOrderSchema, SortOrderInputObjectSchema]).optional(), - workspaceGroupId: z.union([SortOrderSchema, SortOrderInputObjectSchema]).optional(), - memberVisibility: SortOrderSchema.optional(), - recruitmentMethod: SortOrderSchema.optional(), - type: SortOrderSchema.optional(), - get _count(){ return GroupCountOrderByAggregateInputObjectSchema.optional(); }, - get _max(){ return GroupMaxOrderByAggregateInputObjectSchema.optional(); }, - get _min(){ return GroupMinOrderByAggregateInputObjectSchema.optional(); } -}).strict(); -export const GroupOrderByWithAggregationInputObjectSchema: z.ZodType = z.lazy(__makeSchema_GroupOrderByWithAggregationInput_schema) as unknown as z.ZodType; -export const GroupOrderByWithAggregationInputObjectZodSchema = z.lazy(__makeSchema_GroupOrderByWithAggregationInput_schema); - - -// File: GroupScalarWhereWithAggregatesInput.schema.ts -const __makeSchema_GroupScalarWhereWithAggregatesInput_schema = () => z.object({ - AND: z.union([GroupScalarWhereWithAggregatesInputObjectSchema, GroupScalarWhereWithAggregatesInputObjectSchema.array()]).optional(), - get OR(){ return GroupScalarWhereWithAggregatesInputObjectSchema.array().optional(); }, - NOT: z.union([GroupScalarWhereWithAggregatesInputObjectSchema, GroupScalarWhereWithAggregatesInputObjectSchema.array()]).optional(), - slug: z.union([StringWithAggregatesFilterObjectSchema, z.string()]).optional(), - abbreviation: z.union([StringWithAggregatesFilterObjectSchema, z.string()]).optional(), - name: z.union([StringNullableWithAggregatesFilterObjectSchema, z.string()]).optional().nullable(), - shortDescription: z.union([StringNullableWithAggregatesFilterObjectSchema, z.string()]).optional().nullable(), - description: z.union([StringWithAggregatesFilterObjectSchema, z.string()]).optional(), - imageUrl: z.union([StringNullableWithAggregatesFilterObjectSchema, z.string()]).optional().nullable(), - email: z.union([StringNullableWithAggregatesFilterObjectSchema, z.string()]).optional().nullable(), - contactUrl: z.union([StringNullableWithAggregatesFilterObjectSchema, z.string()]).optional().nullable(), - slackUrl: z.union([StringNullableWithAggregatesFilterObjectSchema, z.string()]).optional().nullable(), - showLeaderAsContact: z.union([BoolWithAggregatesFilterObjectSchema, z.boolean()]).optional(), - createdAt: z.union([DateTimeWithAggregatesFilterObjectSchema, z.coerce.date()]).optional(), - deactivatedAt: z.union([DateTimeNullableWithAggregatesFilterObjectSchema, z.coerce.date()]).optional().nullable(), - workspaceGroupId: z.union([StringNullableWithAggregatesFilterObjectSchema, z.string()]).optional().nullable(), - memberVisibility: z.union([EnumGroupMemberVisibilityWithAggregatesFilterObjectSchema, GroupMemberVisibilitySchema]).optional(), - recruitmentMethod: z.union([EnumGroupRecruitmentMethodWithAggregatesFilterObjectSchema, GroupRecruitmentMethodSchema]).optional(), - type: z.union([EnumGroupTypeWithAggregatesFilterObjectSchema, GroupTypeSchema]).optional() -}).strict(); -export const GroupScalarWhereWithAggregatesInputObjectSchema: z.ZodType = z.lazy(__makeSchema_GroupScalarWhereWithAggregatesInput_schema) as unknown as z.ZodType; -export const GroupScalarWhereWithAggregatesInputObjectZodSchema = z.lazy(__makeSchema_GroupScalarWhereWithAggregatesInput_schema); - - -// File: GroupMembershipWhereInput.schema.ts -const __makeSchema_GroupMembershipWhereInput_schema = () => z.object({ - AND: z.union([GroupMembershipWhereInputObjectSchema, GroupMembershipWhereInputObjectSchema.array()]).optional(), - get OR(){ return GroupMembershipWhereInputObjectSchema.array().optional(); }, - NOT: z.union([GroupMembershipWhereInputObjectSchema, GroupMembershipWhereInputObjectSchema.array()]).optional(), - id: z.union([StringFilterObjectSchema, z.string()]).optional(), - start: z.union([DateTimeFilterObjectSchema, z.coerce.date()]).optional(), - end: z.union([DateTimeNullableFilterObjectSchema, z.coerce.date()]).optional().nullable(), - createdAt: z.union([DateTimeFilterObjectSchema, z.coerce.date()]).optional(), - updatedAt: z.union([DateTimeFilterObjectSchema, z.coerce.date()]).optional(), - groupId: z.union([StringFilterObjectSchema, z.string()]).optional(), - userId: z.union([StringFilterObjectSchema, z.string()]).optional(), - group: z.union([GroupScalarRelationFilterObjectSchema, GroupWhereInputObjectSchema]).optional(), - user: z.union([UserScalarRelationFilterObjectSchema, UserWhereInputObjectSchema]).optional(), - get roles(){ return GroupMembershipRoleListRelationFilterObjectSchema.optional(); } -}).strict(); -export const GroupMembershipWhereInputObjectSchema: z.ZodType = z.lazy(__makeSchema_GroupMembershipWhereInput_schema) as unknown as z.ZodType; -export const GroupMembershipWhereInputObjectZodSchema = z.lazy(__makeSchema_GroupMembershipWhereInput_schema); - - -// File: GroupMembershipOrderByWithRelationInput.schema.ts -const __makeSchema_GroupMembershipOrderByWithRelationInput_schema = () => z.object({ - id: SortOrderSchema.optional(), - start: SortOrderSchema.optional(), - end: z.union([SortOrderSchema, SortOrderInputObjectSchema]).optional(), - createdAt: SortOrderSchema.optional(), - updatedAt: SortOrderSchema.optional(), - groupId: SortOrderSchema.optional(), - userId: SortOrderSchema.optional(), - get group(){ return GroupOrderByWithRelationInputObjectSchema.optional(); }, - get user(){ return UserOrderByWithRelationInputObjectSchema.optional(); }, - get roles(){ return GroupMembershipRoleOrderByRelationAggregateInputObjectSchema.optional(); } -}).strict(); -export const GroupMembershipOrderByWithRelationInputObjectSchema: z.ZodType = z.lazy(__makeSchema_GroupMembershipOrderByWithRelationInput_schema) as unknown as z.ZodType; -export const GroupMembershipOrderByWithRelationInputObjectZodSchema = z.lazy(__makeSchema_GroupMembershipOrderByWithRelationInput_schema); - - -// File: GroupMembershipWhereUniqueInput.schema.ts -const __makeSchema_GroupMembershipWhereUniqueInput_schema = () => z.object({ - id: z.string().optional() -}).strict(); -export const GroupMembershipWhereUniqueInputObjectSchema: z.ZodType = z.lazy(__makeSchema_GroupMembershipWhereUniqueInput_schema) as unknown as z.ZodType; -export const GroupMembershipWhereUniqueInputObjectZodSchema = z.lazy(__makeSchema_GroupMembershipWhereUniqueInput_schema); - - -// File: GroupMembershipOrderByWithAggregationInput.schema.ts -const __makeSchema_GroupMembershipOrderByWithAggregationInput_schema = () => z.object({ - id: SortOrderSchema.optional(), - start: SortOrderSchema.optional(), - end: z.union([SortOrderSchema, SortOrderInputObjectSchema]).optional(), - createdAt: SortOrderSchema.optional(), - updatedAt: SortOrderSchema.optional(), - groupId: SortOrderSchema.optional(), - userId: SortOrderSchema.optional(), - get _count(){ return GroupMembershipCountOrderByAggregateInputObjectSchema.optional(); }, - get _max(){ return GroupMembershipMaxOrderByAggregateInputObjectSchema.optional(); }, - get _min(){ return GroupMembershipMinOrderByAggregateInputObjectSchema.optional(); } -}).strict(); -export const GroupMembershipOrderByWithAggregationInputObjectSchema: z.ZodType = z.lazy(__makeSchema_GroupMembershipOrderByWithAggregationInput_schema) as unknown as z.ZodType; -export const GroupMembershipOrderByWithAggregationInputObjectZodSchema = z.lazy(__makeSchema_GroupMembershipOrderByWithAggregationInput_schema); - - -// File: GroupMembershipScalarWhereWithAggregatesInput.schema.ts -const __makeSchema_GroupMembershipScalarWhereWithAggregatesInput_schema = () => z.object({ - AND: z.union([GroupMembershipScalarWhereWithAggregatesInputObjectSchema, GroupMembershipScalarWhereWithAggregatesInputObjectSchema.array()]).optional(), - get OR(){ return GroupMembershipScalarWhereWithAggregatesInputObjectSchema.array().optional(); }, - NOT: z.union([GroupMembershipScalarWhereWithAggregatesInputObjectSchema, GroupMembershipScalarWhereWithAggregatesInputObjectSchema.array()]).optional(), - id: z.union([StringWithAggregatesFilterObjectSchema, z.string()]).optional(), - start: z.union([DateTimeWithAggregatesFilterObjectSchema, z.coerce.date()]).optional(), - end: z.union([DateTimeNullableWithAggregatesFilterObjectSchema, z.coerce.date()]).optional().nullable(), - createdAt: z.union([DateTimeWithAggregatesFilterObjectSchema, z.coerce.date()]).optional(), - updatedAt: z.union([DateTimeWithAggregatesFilterObjectSchema, z.coerce.date()]).optional(), - groupId: z.union([StringWithAggregatesFilterObjectSchema, z.string()]).optional(), - userId: z.union([StringWithAggregatesFilterObjectSchema, z.string()]).optional() -}).strict(); -export const GroupMembershipScalarWhereWithAggregatesInputObjectSchema: z.ZodType = z.lazy(__makeSchema_GroupMembershipScalarWhereWithAggregatesInput_schema) as unknown as z.ZodType; -export const GroupMembershipScalarWhereWithAggregatesInputObjectZodSchema = z.lazy(__makeSchema_GroupMembershipScalarWhereWithAggregatesInput_schema); - - -// File: GroupMembershipRoleWhereInput.schema.ts -const __makeSchema_GroupMembershipRoleWhereInput_schema = () => z.object({ - AND: z.union([GroupMembershipRoleWhereInputObjectSchema, GroupMembershipRoleWhereInputObjectSchema.array()]).optional(), - get OR(){ return GroupMembershipRoleWhereInputObjectSchema.array().optional(); }, - NOT: z.union([GroupMembershipRoleWhereInputObjectSchema, GroupMembershipRoleWhereInputObjectSchema.array()]).optional(), - membershipId: z.union([StringFilterObjectSchema, z.string()]).optional(), - roleId: z.union([StringFilterObjectSchema, z.string()]).optional(), - membership: z.union([GroupMembershipScalarRelationFilterObjectSchema, GroupMembershipWhereInputObjectSchema]).optional(), - role: z.union([GroupRoleScalarRelationFilterObjectSchema, GroupRoleWhereInputObjectSchema]).optional() -}).strict(); -export const GroupMembershipRoleWhereInputObjectSchema: z.ZodType = z.lazy(__makeSchema_GroupMembershipRoleWhereInput_schema) as unknown as z.ZodType; -export const GroupMembershipRoleWhereInputObjectZodSchema = z.lazy(__makeSchema_GroupMembershipRoleWhereInput_schema); - - -// File: GroupMembershipRoleOrderByWithRelationInput.schema.ts -const __makeSchema_GroupMembershipRoleOrderByWithRelationInput_schema = () => z.object({ - membershipId: SortOrderSchema.optional(), - roleId: SortOrderSchema.optional(), - get membership(){ return GroupMembershipOrderByWithRelationInputObjectSchema.optional(); }, - get role(){ return GroupRoleOrderByWithRelationInputObjectSchema.optional(); } -}).strict(); -export const GroupMembershipRoleOrderByWithRelationInputObjectSchema: z.ZodType = z.lazy(__makeSchema_GroupMembershipRoleOrderByWithRelationInput_schema) as unknown as z.ZodType; -export const GroupMembershipRoleOrderByWithRelationInputObjectZodSchema = z.lazy(__makeSchema_GroupMembershipRoleOrderByWithRelationInput_schema); - - -// File: GroupMembershipRoleWhereUniqueInput.schema.ts -const __makeSchema_GroupMembershipRoleWhereUniqueInput_schema = () => z.object({ - get membershipId_roleId(){ return GroupMembershipRoleMembershipIdRoleIdCompoundUniqueInputObjectSchema.optional(); } -}).strict(); -export const GroupMembershipRoleWhereUniqueInputObjectSchema: z.ZodType = z.lazy(__makeSchema_GroupMembershipRoleWhereUniqueInput_schema) as unknown as z.ZodType; -export const GroupMembershipRoleWhereUniqueInputObjectZodSchema = z.lazy(__makeSchema_GroupMembershipRoleWhereUniqueInput_schema); - - -// File: GroupMembershipRoleOrderByWithAggregationInput.schema.ts -const __makeSchema_GroupMembershipRoleOrderByWithAggregationInput_schema = () => z.object({ - membershipId: SortOrderSchema.optional(), - roleId: SortOrderSchema.optional(), - get _count(){ return GroupMembershipRoleCountOrderByAggregateInputObjectSchema.optional(); }, - get _max(){ return GroupMembershipRoleMaxOrderByAggregateInputObjectSchema.optional(); }, - get _min(){ return GroupMembershipRoleMinOrderByAggregateInputObjectSchema.optional(); } -}).strict(); -export const GroupMembershipRoleOrderByWithAggregationInputObjectSchema: z.ZodType = z.lazy(__makeSchema_GroupMembershipRoleOrderByWithAggregationInput_schema) as unknown as z.ZodType; -export const GroupMembershipRoleOrderByWithAggregationInputObjectZodSchema = z.lazy(__makeSchema_GroupMembershipRoleOrderByWithAggregationInput_schema); - - -// File: GroupMembershipRoleScalarWhereWithAggregatesInput.schema.ts -const __makeSchema_GroupMembershipRoleScalarWhereWithAggregatesInput_schema = () => z.object({ - AND: z.union([GroupMembershipRoleScalarWhereWithAggregatesInputObjectSchema, GroupMembershipRoleScalarWhereWithAggregatesInputObjectSchema.array()]).optional(), - get OR(){ return GroupMembershipRoleScalarWhereWithAggregatesInputObjectSchema.array().optional(); }, - NOT: z.union([GroupMembershipRoleScalarWhereWithAggregatesInputObjectSchema, GroupMembershipRoleScalarWhereWithAggregatesInputObjectSchema.array()]).optional(), - membershipId: z.union([StringWithAggregatesFilterObjectSchema, z.string()]).optional(), - roleId: z.union([StringWithAggregatesFilterObjectSchema, z.string()]).optional() -}).strict(); -export const GroupMembershipRoleScalarWhereWithAggregatesInputObjectSchema: z.ZodType = z.lazy(__makeSchema_GroupMembershipRoleScalarWhereWithAggregatesInput_schema) as unknown as z.ZodType; -export const GroupMembershipRoleScalarWhereWithAggregatesInputObjectZodSchema = z.lazy(__makeSchema_GroupMembershipRoleScalarWhereWithAggregatesInput_schema); - - -// File: GroupRoleWhereInput.schema.ts -const __makeSchema_GroupRoleWhereInput_schema = () => z.object({ - AND: z.union([GroupRoleWhereInputObjectSchema, GroupRoleWhereInputObjectSchema.array()]).optional(), - get OR(){ return GroupRoleWhereInputObjectSchema.array().optional(); }, - NOT: z.union([GroupRoleWhereInputObjectSchema, GroupRoleWhereInputObjectSchema.array()]).optional(), - id: z.union([StringFilterObjectSchema, z.string()]).optional(), - name: z.union([StringFilterObjectSchema, z.string()]).optional(), - type: z.union([EnumGroupRoleTypeFilterObjectSchema, GroupRoleTypeSchema]).optional(), - groupId: z.union([StringFilterObjectSchema, z.string()]).optional(), - group: z.union([GroupScalarRelationFilterObjectSchema, GroupWhereInputObjectSchema]).optional(), - get groupMembershipRoles(){ return GroupMembershipRoleListRelationFilterObjectSchema.optional(); } -}).strict(); -export const GroupRoleWhereInputObjectSchema: z.ZodType = z.lazy(__makeSchema_GroupRoleWhereInput_schema) as unknown as z.ZodType; -export const GroupRoleWhereInputObjectZodSchema = z.lazy(__makeSchema_GroupRoleWhereInput_schema); - - -// File: GroupRoleOrderByWithRelationInput.schema.ts -const __makeSchema_GroupRoleOrderByWithRelationInput_schema = () => z.object({ - id: SortOrderSchema.optional(), - name: SortOrderSchema.optional(), - type: SortOrderSchema.optional(), - groupId: SortOrderSchema.optional(), - get group(){ return GroupOrderByWithRelationInputObjectSchema.optional(); }, - get groupMembershipRoles(){ return GroupMembershipRoleOrderByRelationAggregateInputObjectSchema.optional(); } -}).strict(); -export const GroupRoleOrderByWithRelationInputObjectSchema: z.ZodType = z.lazy(__makeSchema_GroupRoleOrderByWithRelationInput_schema) as unknown as z.ZodType; -export const GroupRoleOrderByWithRelationInputObjectZodSchema = z.lazy(__makeSchema_GroupRoleOrderByWithRelationInput_schema); - - -// File: GroupRoleWhereUniqueInput.schema.ts -const __makeSchema_GroupRoleWhereUniqueInput_schema = () => z.object({ - id: z.string().optional(), - get groupId_name(){ return GroupRoleGroupIdNameCompoundUniqueInputObjectSchema.optional(); } -}).strict(); -export const GroupRoleWhereUniqueInputObjectSchema: z.ZodType = z.lazy(__makeSchema_GroupRoleWhereUniqueInput_schema) as unknown as z.ZodType; -export const GroupRoleWhereUniqueInputObjectZodSchema = z.lazy(__makeSchema_GroupRoleWhereUniqueInput_schema); - - -// File: GroupRoleOrderByWithAggregationInput.schema.ts -const __makeSchema_GroupRoleOrderByWithAggregationInput_schema = () => z.object({ - id: SortOrderSchema.optional(), - name: SortOrderSchema.optional(), - type: SortOrderSchema.optional(), - groupId: SortOrderSchema.optional(), - get _count(){ return GroupRoleCountOrderByAggregateInputObjectSchema.optional(); }, - get _max(){ return GroupRoleMaxOrderByAggregateInputObjectSchema.optional(); }, - get _min(){ return GroupRoleMinOrderByAggregateInputObjectSchema.optional(); } -}).strict(); -export const GroupRoleOrderByWithAggregationInputObjectSchema: z.ZodType = z.lazy(__makeSchema_GroupRoleOrderByWithAggregationInput_schema) as unknown as z.ZodType; -export const GroupRoleOrderByWithAggregationInputObjectZodSchema = z.lazy(__makeSchema_GroupRoleOrderByWithAggregationInput_schema); - - -// File: GroupRoleScalarWhereWithAggregatesInput.schema.ts -const __makeSchema_GroupRoleScalarWhereWithAggregatesInput_schema = () => z.object({ - AND: z.union([GroupRoleScalarWhereWithAggregatesInputObjectSchema, GroupRoleScalarWhereWithAggregatesInputObjectSchema.array()]).optional(), - get OR(){ return GroupRoleScalarWhereWithAggregatesInputObjectSchema.array().optional(); }, - NOT: z.union([GroupRoleScalarWhereWithAggregatesInputObjectSchema, GroupRoleScalarWhereWithAggregatesInputObjectSchema.array()]).optional(), - id: z.union([StringWithAggregatesFilterObjectSchema, z.string()]).optional(), - name: z.union([StringWithAggregatesFilterObjectSchema, z.string()]).optional(), - type: z.union([EnumGroupRoleTypeWithAggregatesFilterObjectSchema, GroupRoleTypeSchema]).optional(), - groupId: z.union([StringWithAggregatesFilterObjectSchema, z.string()]).optional() -}).strict(); -export const GroupRoleScalarWhereWithAggregatesInputObjectSchema: z.ZodType = z.lazy(__makeSchema_GroupRoleScalarWhereWithAggregatesInput_schema) as unknown as z.ZodType; -export const GroupRoleScalarWhereWithAggregatesInputObjectZodSchema = z.lazy(__makeSchema_GroupRoleScalarWhereWithAggregatesInput_schema); - - -// File: AttendanceWhereInput.schema.ts -const __makeSchema_AttendanceWhereInput_schema = () => z.object({ - AND: z.union([AttendanceWhereInputObjectSchema, AttendanceWhereInputObjectSchema.array()]).optional(), - get OR(){ return AttendanceWhereInputObjectSchema.array().optional(); }, - NOT: z.union([AttendanceWhereInputObjectSchema, AttendanceWhereInputObjectSchema.array()]).optional(), - id: z.union([StringFilterObjectSchema, z.string()]).optional(), - registerStart: z.union([DateTimeFilterObjectSchema, z.coerce.date()]).optional(), - registerEnd: z.union([DateTimeFilterObjectSchema, z.coerce.date()]).optional(), - deregisterDeadline: z.union([DateTimeFilterObjectSchema, z.coerce.date()]).optional(), - get selections(){ return JsonFilterObjectSchema.optional(); }, - createdAt: z.union([DateTimeFilterObjectSchema, z.coerce.date()]).optional(), - updatedAt: z.union([DateTimeFilterObjectSchema, z.coerce.date()]).optional(), - attendancePrice: z.union([IntNullableFilterObjectSchema, z.number().int()]).optional().nullable(), - get pools(){ return AttendancePoolListRelationFilterObjectSchema.optional(); }, - get attendees(){ return AttendeeListRelationFilterObjectSchema.optional(); }, - get events(){ return EventListRelationFilterObjectSchema.optional(); } -}).strict(); -export const AttendanceWhereInputObjectSchema: z.ZodType = z.lazy(__makeSchema_AttendanceWhereInput_schema) as unknown as z.ZodType; -export const AttendanceWhereInputObjectZodSchema = z.lazy(__makeSchema_AttendanceWhereInput_schema); - - -// File: AttendanceOrderByWithRelationInput.schema.ts -const __makeSchema_AttendanceOrderByWithRelationInput_schema = () => z.object({ - id: SortOrderSchema.optional(), - registerStart: SortOrderSchema.optional(), - registerEnd: SortOrderSchema.optional(), - deregisterDeadline: SortOrderSchema.optional(), - selections: SortOrderSchema.optional(), - createdAt: SortOrderSchema.optional(), - updatedAt: SortOrderSchema.optional(), - attendancePrice: z.union([SortOrderSchema, SortOrderInputObjectSchema]).optional(), - get pools(){ return AttendancePoolOrderByRelationAggregateInputObjectSchema.optional(); }, - get attendees(){ return AttendeeOrderByRelationAggregateInputObjectSchema.optional(); }, - get events(){ return EventOrderByRelationAggregateInputObjectSchema.optional(); } -}).strict(); -export const AttendanceOrderByWithRelationInputObjectSchema: z.ZodType = z.lazy(__makeSchema_AttendanceOrderByWithRelationInput_schema) as unknown as z.ZodType; -export const AttendanceOrderByWithRelationInputObjectZodSchema = z.lazy(__makeSchema_AttendanceOrderByWithRelationInput_schema); - - -// File: AttendanceWhereUniqueInput.schema.ts -const __makeSchema_AttendanceWhereUniqueInput_schema = () => z.object({ - id: z.string().optional() -}).strict(); -export const AttendanceWhereUniqueInputObjectSchema: z.ZodType = z.lazy(__makeSchema_AttendanceWhereUniqueInput_schema) as unknown as z.ZodType; -export const AttendanceWhereUniqueInputObjectZodSchema = z.lazy(__makeSchema_AttendanceWhereUniqueInput_schema); - - -// File: AttendanceOrderByWithAggregationInput.schema.ts -const __makeSchema_AttendanceOrderByWithAggregationInput_schema = () => z.object({ - id: SortOrderSchema.optional(), - registerStart: SortOrderSchema.optional(), - registerEnd: SortOrderSchema.optional(), - deregisterDeadline: SortOrderSchema.optional(), - selections: SortOrderSchema.optional(), - createdAt: SortOrderSchema.optional(), - updatedAt: SortOrderSchema.optional(), - attendancePrice: z.union([SortOrderSchema, SortOrderInputObjectSchema]).optional(), - get _count(){ return AttendanceCountOrderByAggregateInputObjectSchema.optional(); }, - get _avg(){ return AttendanceAvgOrderByAggregateInputObjectSchema.optional(); }, - get _max(){ return AttendanceMaxOrderByAggregateInputObjectSchema.optional(); }, - get _min(){ return AttendanceMinOrderByAggregateInputObjectSchema.optional(); }, - get _sum(){ return AttendanceSumOrderByAggregateInputObjectSchema.optional(); } -}).strict(); -export const AttendanceOrderByWithAggregationInputObjectSchema: z.ZodType = z.lazy(__makeSchema_AttendanceOrderByWithAggregationInput_schema) as unknown as z.ZodType; -export const AttendanceOrderByWithAggregationInputObjectZodSchema = z.lazy(__makeSchema_AttendanceOrderByWithAggregationInput_schema); - - -// File: AttendanceScalarWhereWithAggregatesInput.schema.ts -const __makeSchema_AttendanceScalarWhereWithAggregatesInput_schema = () => z.object({ - AND: z.union([AttendanceScalarWhereWithAggregatesInputObjectSchema, AttendanceScalarWhereWithAggregatesInputObjectSchema.array()]).optional(), - get OR(){ return AttendanceScalarWhereWithAggregatesInputObjectSchema.array().optional(); }, - NOT: z.union([AttendanceScalarWhereWithAggregatesInputObjectSchema, AttendanceScalarWhereWithAggregatesInputObjectSchema.array()]).optional(), - id: z.union([StringWithAggregatesFilterObjectSchema, z.string()]).optional(), - registerStart: z.union([DateTimeWithAggregatesFilterObjectSchema, z.coerce.date()]).optional(), - registerEnd: z.union([DateTimeWithAggregatesFilterObjectSchema, z.coerce.date()]).optional(), - deregisterDeadline: z.union([DateTimeWithAggregatesFilterObjectSchema, z.coerce.date()]).optional(), - get selections(){ return JsonWithAggregatesFilterObjectSchema.optional(); }, - createdAt: z.union([DateTimeWithAggregatesFilterObjectSchema, z.coerce.date()]).optional(), - updatedAt: z.union([DateTimeWithAggregatesFilterObjectSchema, z.coerce.date()]).optional(), - attendancePrice: z.union([IntNullableWithAggregatesFilterObjectSchema, z.number().int()]).optional().nullable() -}).strict(); -export const AttendanceScalarWhereWithAggregatesInputObjectSchema: z.ZodType = z.lazy(__makeSchema_AttendanceScalarWhereWithAggregatesInput_schema) as unknown as z.ZodType; -export const AttendanceScalarWhereWithAggregatesInputObjectZodSchema = z.lazy(__makeSchema_AttendanceScalarWhereWithAggregatesInput_schema); - - -// File: AttendancePoolWhereInput.schema.ts -const __makeSchema_AttendancePoolWhereInput_schema = () => z.object({ - AND: z.union([AttendancePoolWhereInputObjectSchema, AttendancePoolWhereInputObjectSchema.array()]).optional(), - get OR(){ return AttendancePoolWhereInputObjectSchema.array().optional(); }, - NOT: z.union([AttendancePoolWhereInputObjectSchema, AttendancePoolWhereInputObjectSchema.array()]).optional(), - id: z.union([StringFilterObjectSchema, z.string()]).optional(), - title: z.union([StringFilterObjectSchema, z.string()]).optional(), - mergeDelayHours: z.union([IntNullableFilterObjectSchema, z.number().int()]).optional().nullable(), - get yearCriteria(){ return JsonFilterObjectSchema.optional(); }, - capacity: z.union([IntFilterObjectSchema, z.number().int()]).optional(), - createdAt: z.union([DateTimeFilterObjectSchema, z.coerce.date()]).optional(), - updatedAt: z.union([DateTimeFilterObjectSchema, z.coerce.date()]).optional(), - attendanceId: z.union([StringFilterObjectSchema, z.string()]).optional(), - taskId: z.union([StringNullableFilterObjectSchema, z.string()]).optional().nullable(), - attendance: z.union([AttendanceScalarRelationFilterObjectSchema, AttendanceWhereInputObjectSchema]).optional(), - task: z.union([TaskNullableScalarRelationFilterObjectSchema, TaskWhereInputObjectSchema]).optional(), - get attendees(){ return AttendeeListRelationFilterObjectSchema.optional(); } -}).strict(); -export const AttendancePoolWhereInputObjectSchema: z.ZodType = z.lazy(__makeSchema_AttendancePoolWhereInput_schema) as unknown as z.ZodType; -export const AttendancePoolWhereInputObjectZodSchema = z.lazy(__makeSchema_AttendancePoolWhereInput_schema); - - -// File: AttendancePoolOrderByWithRelationInput.schema.ts -const __makeSchema_AttendancePoolOrderByWithRelationInput_schema = () => z.object({ - id: SortOrderSchema.optional(), - title: SortOrderSchema.optional(), - mergeDelayHours: z.union([SortOrderSchema, SortOrderInputObjectSchema]).optional(), - yearCriteria: SortOrderSchema.optional(), - capacity: SortOrderSchema.optional(), - createdAt: SortOrderSchema.optional(), - updatedAt: SortOrderSchema.optional(), - attendanceId: SortOrderSchema.optional(), - taskId: z.union([SortOrderSchema, SortOrderInputObjectSchema]).optional(), - get attendance(){ return AttendanceOrderByWithRelationInputObjectSchema.optional(); }, - get task(){ return TaskOrderByWithRelationInputObjectSchema.optional(); }, - get attendees(){ return AttendeeOrderByRelationAggregateInputObjectSchema.optional(); } -}).strict(); -export const AttendancePoolOrderByWithRelationInputObjectSchema: z.ZodType = z.lazy(__makeSchema_AttendancePoolOrderByWithRelationInput_schema) as unknown as z.ZodType; -export const AttendancePoolOrderByWithRelationInputObjectZodSchema = z.lazy(__makeSchema_AttendancePoolOrderByWithRelationInput_schema); - - -// File: AttendancePoolWhereUniqueInput.schema.ts -const __makeSchema_AttendancePoolWhereUniqueInput_schema = () => z.object({ - id: z.string().optional() -}).strict(); -export const AttendancePoolWhereUniqueInputObjectSchema: z.ZodType = z.lazy(__makeSchema_AttendancePoolWhereUniqueInput_schema) as unknown as z.ZodType; -export const AttendancePoolWhereUniqueInputObjectZodSchema = z.lazy(__makeSchema_AttendancePoolWhereUniqueInput_schema); - - -// File: AttendancePoolOrderByWithAggregationInput.schema.ts -const __makeSchema_AttendancePoolOrderByWithAggregationInput_schema = () => z.object({ - id: SortOrderSchema.optional(), - title: SortOrderSchema.optional(), - mergeDelayHours: z.union([SortOrderSchema, SortOrderInputObjectSchema]).optional(), - yearCriteria: SortOrderSchema.optional(), - capacity: SortOrderSchema.optional(), - createdAt: SortOrderSchema.optional(), - updatedAt: SortOrderSchema.optional(), - attendanceId: SortOrderSchema.optional(), - taskId: z.union([SortOrderSchema, SortOrderInputObjectSchema]).optional(), - get _count(){ return AttendancePoolCountOrderByAggregateInputObjectSchema.optional(); }, - get _avg(){ return AttendancePoolAvgOrderByAggregateInputObjectSchema.optional(); }, - get _max(){ return AttendancePoolMaxOrderByAggregateInputObjectSchema.optional(); }, - get _min(){ return AttendancePoolMinOrderByAggregateInputObjectSchema.optional(); }, - get _sum(){ return AttendancePoolSumOrderByAggregateInputObjectSchema.optional(); } -}).strict(); -export const AttendancePoolOrderByWithAggregationInputObjectSchema: z.ZodType = z.lazy(__makeSchema_AttendancePoolOrderByWithAggregationInput_schema) as unknown as z.ZodType; -export const AttendancePoolOrderByWithAggregationInputObjectZodSchema = z.lazy(__makeSchema_AttendancePoolOrderByWithAggregationInput_schema); - - -// File: AttendancePoolScalarWhereWithAggregatesInput.schema.ts -const __makeSchema_AttendancePoolScalarWhereWithAggregatesInput_schema = () => z.object({ - AND: z.union([AttendancePoolScalarWhereWithAggregatesInputObjectSchema, AttendancePoolScalarWhereWithAggregatesInputObjectSchema.array()]).optional(), - get OR(){ return AttendancePoolScalarWhereWithAggregatesInputObjectSchema.array().optional(); }, - NOT: z.union([AttendancePoolScalarWhereWithAggregatesInputObjectSchema, AttendancePoolScalarWhereWithAggregatesInputObjectSchema.array()]).optional(), - id: z.union([StringWithAggregatesFilterObjectSchema, z.string()]).optional(), - title: z.union([StringWithAggregatesFilterObjectSchema, z.string()]).optional(), - mergeDelayHours: z.union([IntNullableWithAggregatesFilterObjectSchema, z.number().int()]).optional().nullable(), - get yearCriteria(){ return JsonWithAggregatesFilterObjectSchema.optional(); }, - capacity: z.union([IntWithAggregatesFilterObjectSchema, z.number().int()]).optional(), - createdAt: z.union([DateTimeWithAggregatesFilterObjectSchema, z.coerce.date()]).optional(), - updatedAt: z.union([DateTimeWithAggregatesFilterObjectSchema, z.coerce.date()]).optional(), - attendanceId: z.union([StringWithAggregatesFilterObjectSchema, z.string()]).optional(), - taskId: z.union([StringNullableWithAggregatesFilterObjectSchema, z.string()]).optional().nullable() -}).strict(); -export const AttendancePoolScalarWhereWithAggregatesInputObjectSchema: z.ZodType = z.lazy(__makeSchema_AttendancePoolScalarWhereWithAggregatesInput_schema) as unknown as z.ZodType; -export const AttendancePoolScalarWhereWithAggregatesInputObjectZodSchema = z.lazy(__makeSchema_AttendancePoolScalarWhereWithAggregatesInput_schema); - - -// File: AttendeeWhereInput.schema.ts -const __makeSchema_AttendeeWhereInput_schema = () => z.object({ - AND: z.union([AttendeeWhereInputObjectSchema, AttendeeWhereInputObjectSchema.array()]).optional(), - get OR(){ return AttendeeWhereInputObjectSchema.array().optional(); }, - NOT: z.union([AttendeeWhereInputObjectSchema, AttendeeWhereInputObjectSchema.array()]).optional(), - id: z.union([StringFilterObjectSchema, z.string()]).optional(), - userGrade: z.union([IntNullableFilterObjectSchema, z.number().int()]).optional().nullable(), - get selections(){ return JsonFilterObjectSchema.optional(); }, - reserved: z.union([BoolFilterObjectSchema, z.boolean()]).optional(), - earliestReservationAt: z.union([DateTimeFilterObjectSchema, z.coerce.date()]).optional(), - attendedAt: z.union([DateTimeNullableFilterObjectSchema, z.coerce.date()]).optional().nullable(), - createdAt: z.union([DateTimeFilterObjectSchema, z.coerce.date()]).optional(), - updatedAt: z.union([DateTimeFilterObjectSchema, z.coerce.date()]).optional(), - paymentDeadline: z.union([DateTimeNullableFilterObjectSchema, z.coerce.date()]).optional().nullable(), - paymentLink: z.union([StringNullableFilterObjectSchema, z.string()]).optional().nullable(), - paymentId: z.union([StringNullableFilterObjectSchema, z.string()]).optional().nullable(), - paymentReservedAt: z.union([DateTimeNullableFilterObjectSchema, z.coerce.date()]).optional().nullable(), - paymentChargeDeadline: z.union([DateTimeNullableFilterObjectSchema, z.coerce.date()]).optional().nullable(), - paymentChargedAt: z.union([DateTimeNullableFilterObjectSchema, z.coerce.date()]).optional().nullable(), - paymentRefundedAt: z.union([DateTimeNullableFilterObjectSchema, z.coerce.date()]).optional().nullable(), - paymentCheckoutUrl: z.union([StringNullableFilterObjectSchema, z.string()]).optional().nullable(), - attendanceId: z.union([StringFilterObjectSchema, z.string()]).optional(), - userId: z.union([StringFilterObjectSchema, z.string()]).optional(), - attendancePoolId: z.union([StringFilterObjectSchema, z.string()]).optional(), - paymentRefundedById: z.union([StringNullableFilterObjectSchema, z.string()]).optional().nullable(), - feedbackFormAnswer: z.union([FeedbackFormAnswerNullableScalarRelationFilterObjectSchema, FeedbackFormAnswerWhereInputObjectSchema]).optional(), - attendance: z.union([AttendanceScalarRelationFilterObjectSchema, AttendanceWhereInputObjectSchema]).optional(), - user: z.union([UserScalarRelationFilterObjectSchema, UserWhereInputObjectSchema]).optional(), - attendancePool: z.union([AttendancePoolScalarRelationFilterObjectSchema, AttendancePoolWhereInputObjectSchema]).optional(), - paymentRefundedBy: z.union([UserNullableScalarRelationFilterObjectSchema, UserWhereInputObjectSchema]).optional() -}).strict(); -export const AttendeeWhereInputObjectSchema: z.ZodType = z.lazy(__makeSchema_AttendeeWhereInput_schema) as unknown as z.ZodType; -export const AttendeeWhereInputObjectZodSchema = z.lazy(__makeSchema_AttendeeWhereInput_schema); - - -// File: AttendeeOrderByWithRelationInput.schema.ts -const __makeSchema_AttendeeOrderByWithRelationInput_schema = () => z.object({ - id: SortOrderSchema.optional(), - userGrade: z.union([SortOrderSchema, SortOrderInputObjectSchema]).optional(), - selections: SortOrderSchema.optional(), - reserved: SortOrderSchema.optional(), - earliestReservationAt: SortOrderSchema.optional(), - attendedAt: z.union([SortOrderSchema, SortOrderInputObjectSchema]).optional(), - createdAt: SortOrderSchema.optional(), - updatedAt: SortOrderSchema.optional(), - paymentDeadline: z.union([SortOrderSchema, SortOrderInputObjectSchema]).optional(), - paymentLink: z.union([SortOrderSchema, SortOrderInputObjectSchema]).optional(), - paymentId: z.union([SortOrderSchema, SortOrderInputObjectSchema]).optional(), - paymentReservedAt: z.union([SortOrderSchema, SortOrderInputObjectSchema]).optional(), - paymentChargeDeadline: z.union([SortOrderSchema, SortOrderInputObjectSchema]).optional(), - paymentChargedAt: z.union([SortOrderSchema, SortOrderInputObjectSchema]).optional(), - paymentRefundedAt: z.union([SortOrderSchema, SortOrderInputObjectSchema]).optional(), - paymentCheckoutUrl: z.union([SortOrderSchema, SortOrderInputObjectSchema]).optional(), - attendanceId: SortOrderSchema.optional(), - userId: SortOrderSchema.optional(), - attendancePoolId: SortOrderSchema.optional(), - paymentRefundedById: z.union([SortOrderSchema, SortOrderInputObjectSchema]).optional(), - get feedbackFormAnswer(){ return FeedbackFormAnswerOrderByWithRelationInputObjectSchema.optional(); }, - get attendance(){ return AttendanceOrderByWithRelationInputObjectSchema.optional(); }, - get user(){ return UserOrderByWithRelationInputObjectSchema.optional(); }, - get attendancePool(){ return AttendancePoolOrderByWithRelationInputObjectSchema.optional(); }, - get paymentRefundedBy(){ return UserOrderByWithRelationInputObjectSchema.optional(); } -}).strict(); -export const AttendeeOrderByWithRelationInputObjectSchema: z.ZodType = z.lazy(__makeSchema_AttendeeOrderByWithRelationInput_schema) as unknown as z.ZodType; -export const AttendeeOrderByWithRelationInputObjectZodSchema = z.lazy(__makeSchema_AttendeeOrderByWithRelationInput_schema); - - -// File: AttendeeWhereUniqueInput.schema.ts -const __makeSchema_AttendeeWhereUniqueInput_schema = () => z.object({ - id: z.string().optional(), - get attendee_unique(){ return AttendeeAttendee_uniqueCompoundUniqueInputObjectSchema.optional(); } -}).strict(); -export const AttendeeWhereUniqueInputObjectSchema: z.ZodType = z.lazy(__makeSchema_AttendeeWhereUniqueInput_schema) as unknown as z.ZodType; -export const AttendeeWhereUniqueInputObjectZodSchema = z.lazy(__makeSchema_AttendeeWhereUniqueInput_schema); - - -// File: AttendeeOrderByWithAggregationInput.schema.ts -const __makeSchema_AttendeeOrderByWithAggregationInput_schema = () => z.object({ - id: SortOrderSchema.optional(), - userGrade: z.union([SortOrderSchema, SortOrderInputObjectSchema]).optional(), - selections: SortOrderSchema.optional(), - reserved: SortOrderSchema.optional(), - earliestReservationAt: SortOrderSchema.optional(), - attendedAt: z.union([SortOrderSchema, SortOrderInputObjectSchema]).optional(), - createdAt: SortOrderSchema.optional(), - updatedAt: SortOrderSchema.optional(), - paymentDeadline: z.union([SortOrderSchema, SortOrderInputObjectSchema]).optional(), - paymentLink: z.union([SortOrderSchema, SortOrderInputObjectSchema]).optional(), - paymentId: z.union([SortOrderSchema, SortOrderInputObjectSchema]).optional(), - paymentReservedAt: z.union([SortOrderSchema, SortOrderInputObjectSchema]).optional(), - paymentChargeDeadline: z.union([SortOrderSchema, SortOrderInputObjectSchema]).optional(), - paymentChargedAt: z.union([SortOrderSchema, SortOrderInputObjectSchema]).optional(), - paymentRefundedAt: z.union([SortOrderSchema, SortOrderInputObjectSchema]).optional(), - paymentCheckoutUrl: z.union([SortOrderSchema, SortOrderInputObjectSchema]).optional(), - attendanceId: SortOrderSchema.optional(), - userId: SortOrderSchema.optional(), - attendancePoolId: SortOrderSchema.optional(), - paymentRefundedById: z.union([SortOrderSchema, SortOrderInputObjectSchema]).optional(), - get _count(){ return AttendeeCountOrderByAggregateInputObjectSchema.optional(); }, - get _avg(){ return AttendeeAvgOrderByAggregateInputObjectSchema.optional(); }, - get _max(){ return AttendeeMaxOrderByAggregateInputObjectSchema.optional(); }, - get _min(){ return AttendeeMinOrderByAggregateInputObjectSchema.optional(); }, - get _sum(){ return AttendeeSumOrderByAggregateInputObjectSchema.optional(); } -}).strict(); -export const AttendeeOrderByWithAggregationInputObjectSchema: z.ZodType = z.lazy(__makeSchema_AttendeeOrderByWithAggregationInput_schema) as unknown as z.ZodType; -export const AttendeeOrderByWithAggregationInputObjectZodSchema = z.lazy(__makeSchema_AttendeeOrderByWithAggregationInput_schema); - - -// File: AttendeeScalarWhereWithAggregatesInput.schema.ts -const __makeSchema_AttendeeScalarWhereWithAggregatesInput_schema = () => z.object({ - AND: z.union([AttendeeScalarWhereWithAggregatesInputObjectSchema, AttendeeScalarWhereWithAggregatesInputObjectSchema.array()]).optional(), - get OR(){ return AttendeeScalarWhereWithAggregatesInputObjectSchema.array().optional(); }, - NOT: z.union([AttendeeScalarWhereWithAggregatesInputObjectSchema, AttendeeScalarWhereWithAggregatesInputObjectSchema.array()]).optional(), - id: z.union([StringWithAggregatesFilterObjectSchema, z.string()]).optional(), - userGrade: z.union([IntNullableWithAggregatesFilterObjectSchema, z.number().int()]).optional().nullable(), - get selections(){ return JsonWithAggregatesFilterObjectSchema.optional(); }, - reserved: z.union([BoolWithAggregatesFilterObjectSchema, z.boolean()]).optional(), - earliestReservationAt: z.union([DateTimeWithAggregatesFilterObjectSchema, z.coerce.date()]).optional(), - attendedAt: z.union([DateTimeNullableWithAggregatesFilterObjectSchema, z.coerce.date()]).optional().nullable(), - createdAt: z.union([DateTimeWithAggregatesFilterObjectSchema, z.coerce.date()]).optional(), - updatedAt: z.union([DateTimeWithAggregatesFilterObjectSchema, z.coerce.date()]).optional(), - paymentDeadline: z.union([DateTimeNullableWithAggregatesFilterObjectSchema, z.coerce.date()]).optional().nullable(), - paymentLink: z.union([StringNullableWithAggregatesFilterObjectSchema, z.string()]).optional().nullable(), - paymentId: z.union([StringNullableWithAggregatesFilterObjectSchema, z.string()]).optional().nullable(), - paymentReservedAt: z.union([DateTimeNullableWithAggregatesFilterObjectSchema, z.coerce.date()]).optional().nullable(), - paymentChargeDeadline: z.union([DateTimeNullableWithAggregatesFilterObjectSchema, z.coerce.date()]).optional().nullable(), - paymentChargedAt: z.union([DateTimeNullableWithAggregatesFilterObjectSchema, z.coerce.date()]).optional().nullable(), - paymentRefundedAt: z.union([DateTimeNullableWithAggregatesFilterObjectSchema, z.coerce.date()]).optional().nullable(), - paymentCheckoutUrl: z.union([StringNullableWithAggregatesFilterObjectSchema, z.string()]).optional().nullable(), - attendanceId: z.union([StringWithAggregatesFilterObjectSchema, z.string()]).optional(), - userId: z.union([StringWithAggregatesFilterObjectSchema, z.string()]).optional(), - attendancePoolId: z.union([StringWithAggregatesFilterObjectSchema, z.string()]).optional(), - paymentRefundedById: z.union([StringNullableWithAggregatesFilterObjectSchema, z.string()]).optional().nullable() -}).strict(); -export const AttendeeScalarWhereWithAggregatesInputObjectSchema: z.ZodType = z.lazy(__makeSchema_AttendeeScalarWhereWithAggregatesInput_schema) as unknown as z.ZodType; -export const AttendeeScalarWhereWithAggregatesInputObjectZodSchema = z.lazy(__makeSchema_AttendeeScalarWhereWithAggregatesInput_schema); - - -// File: EventWhereInput.schema.ts -const __makeSchema_EventWhereInput_schema = () => z.object({ - AND: z.union([EventWhereInputObjectSchema, EventWhereInputObjectSchema.array()]).optional(), - get OR(){ return EventWhereInputObjectSchema.array().optional(); }, - NOT: z.union([EventWhereInputObjectSchema, EventWhereInputObjectSchema.array()]).optional(), - id: z.union([StringFilterObjectSchema, z.string()]).optional(), - title: z.union([StringFilterObjectSchema, z.string()]).optional(), - start: z.union([DateTimeFilterObjectSchema, z.coerce.date()]).optional(), - end: z.union([DateTimeFilterObjectSchema, z.coerce.date()]).optional(), - status: z.union([EnumEventStatusFilterObjectSchema, EventStatusSchema]).optional(), - description: z.union([StringFilterObjectSchema, z.string()]).optional(), - shortDescription: z.union([StringNullableFilterObjectSchema, z.string()]).optional().nullable(), - imageUrl: z.union([StringNullableFilterObjectSchema, z.string()]).optional().nullable(), - locationTitle: z.union([StringNullableFilterObjectSchema, z.string()]).optional().nullable(), - locationAddress: z.union([StringNullableFilterObjectSchema, z.string()]).optional().nullable(), - locationLink: z.union([StringNullableFilterObjectSchema, z.string()]).optional().nullable(), - type: z.union([EnumEventTypeFilterObjectSchema, EventTypeSchema]).optional(), - markForMissedAttendance: z.union([BoolFilterObjectSchema, z.boolean()]).optional(), - createdAt: z.union([DateTimeFilterObjectSchema, z.coerce.date()]).optional(), - updatedAt: z.union([DateTimeFilterObjectSchema, z.coerce.date()]).optional(), - attendanceId: z.union([StringNullableFilterObjectSchema, z.string()]).optional().nullable(), - parentId: z.union([StringNullableFilterObjectSchema, z.string()]).optional().nullable(), - contestId: z.union([StringNullableFilterObjectSchema, z.string()]).optional().nullable(), - metadataImportId: z.union([IntNullableFilterObjectSchema, z.number().int()]).optional().nullable(), - feedbackForm: z.union([FeedbackFormNullableScalarRelationFilterObjectSchema, FeedbackFormWhereInputObjectSchema]).optional(), - fadderuke: z.union([FadderukeNullableScalarRelationFilterObjectSchema, FadderukeWhereInputObjectSchema]).optional(), - attendance: z.union([AttendanceNullableScalarRelationFilterObjectSchema, AttendanceWhereInputObjectSchema]).optional(), - parent: z.union([EventNullableScalarRelationFilterObjectSchema, EventWhereInputObjectSchema]).optional(), - get children(){ return EventListRelationFilterObjectSchema.optional(); }, - contest: z.union([ContestNullableScalarRelationFilterObjectSchema, ContestWhereInputObjectSchema]).optional(), - get companies(){ return EventCompanyListRelationFilterObjectSchema.optional(); }, - get hostingGroups(){ return EventHostingGroupListRelationFilterObjectSchema.optional(); }, - get deregisterReasons(){ return DeregisterReasonListRelationFilterObjectSchema.optional(); } -}).strict(); -export const EventWhereInputObjectSchema: z.ZodType = z.lazy(__makeSchema_EventWhereInput_schema) as unknown as z.ZodType; -export const EventWhereInputObjectZodSchema = z.lazy(__makeSchema_EventWhereInput_schema); - - -// File: EventOrderByWithRelationInput.schema.ts -const __makeSchema_EventOrderByWithRelationInput_schema = () => z.object({ - id: SortOrderSchema.optional(), - title: SortOrderSchema.optional(), - start: SortOrderSchema.optional(), - end: SortOrderSchema.optional(), - status: SortOrderSchema.optional(), - description: SortOrderSchema.optional(), - shortDescription: z.union([SortOrderSchema, SortOrderInputObjectSchema]).optional(), - imageUrl: z.union([SortOrderSchema, SortOrderInputObjectSchema]).optional(), - locationTitle: z.union([SortOrderSchema, SortOrderInputObjectSchema]).optional(), - locationAddress: z.union([SortOrderSchema, SortOrderInputObjectSchema]).optional(), - locationLink: z.union([SortOrderSchema, SortOrderInputObjectSchema]).optional(), - type: SortOrderSchema.optional(), - markForMissedAttendance: SortOrderSchema.optional(), - createdAt: SortOrderSchema.optional(), - updatedAt: SortOrderSchema.optional(), - attendanceId: z.union([SortOrderSchema, SortOrderInputObjectSchema]).optional(), - parentId: z.union([SortOrderSchema, SortOrderInputObjectSchema]).optional(), - contestId: z.union([SortOrderSchema, SortOrderInputObjectSchema]).optional(), - metadataImportId: z.union([SortOrderSchema, SortOrderInputObjectSchema]).optional(), - get feedbackForm(){ return FeedbackFormOrderByWithRelationInputObjectSchema.optional(); }, - get fadderuke(){ return FadderukeOrderByWithRelationInputObjectSchema.optional(); }, - get attendance(){ return AttendanceOrderByWithRelationInputObjectSchema.optional(); }, - get parent(){ return EventOrderByWithRelationInputObjectSchema.optional(); }, - get children(){ return EventOrderByRelationAggregateInputObjectSchema.optional(); }, - get contest(){ return ContestOrderByWithRelationInputObjectSchema.optional(); }, - get companies(){ return EventCompanyOrderByRelationAggregateInputObjectSchema.optional(); }, - get hostingGroups(){ return EventHostingGroupOrderByRelationAggregateInputObjectSchema.optional(); }, - get deregisterReasons(){ return DeregisterReasonOrderByRelationAggregateInputObjectSchema.optional(); } -}).strict(); -export const EventOrderByWithRelationInputObjectSchema: z.ZodType = z.lazy(__makeSchema_EventOrderByWithRelationInput_schema) as unknown as z.ZodType; -export const EventOrderByWithRelationInputObjectZodSchema = z.lazy(__makeSchema_EventOrderByWithRelationInput_schema); - - -// File: EventWhereUniqueInput.schema.ts -const __makeSchema_EventWhereUniqueInput_schema = () => z.object({ - id: z.string().optional() -}).strict(); -export const EventWhereUniqueInputObjectSchema: z.ZodType = z.lazy(__makeSchema_EventWhereUniqueInput_schema) as unknown as z.ZodType; -export const EventWhereUniqueInputObjectZodSchema = z.lazy(__makeSchema_EventWhereUniqueInput_schema); - - -// File: EventOrderByWithAggregationInput.schema.ts -const __makeSchema_EventOrderByWithAggregationInput_schema = () => z.object({ - id: SortOrderSchema.optional(), - title: SortOrderSchema.optional(), - start: SortOrderSchema.optional(), - end: SortOrderSchema.optional(), - status: SortOrderSchema.optional(), - description: SortOrderSchema.optional(), - shortDescription: z.union([SortOrderSchema, SortOrderInputObjectSchema]).optional(), - imageUrl: z.union([SortOrderSchema, SortOrderInputObjectSchema]).optional(), - locationTitle: z.union([SortOrderSchema, SortOrderInputObjectSchema]).optional(), - locationAddress: z.union([SortOrderSchema, SortOrderInputObjectSchema]).optional(), - locationLink: z.union([SortOrderSchema, SortOrderInputObjectSchema]).optional(), - type: SortOrderSchema.optional(), - markForMissedAttendance: SortOrderSchema.optional(), - createdAt: SortOrderSchema.optional(), - updatedAt: SortOrderSchema.optional(), - attendanceId: z.union([SortOrderSchema, SortOrderInputObjectSchema]).optional(), - parentId: z.union([SortOrderSchema, SortOrderInputObjectSchema]).optional(), - contestId: z.union([SortOrderSchema, SortOrderInputObjectSchema]).optional(), - metadataImportId: z.union([SortOrderSchema, SortOrderInputObjectSchema]).optional(), - get _count(){ return EventCountOrderByAggregateInputObjectSchema.optional(); }, - get _avg(){ return EventAvgOrderByAggregateInputObjectSchema.optional(); }, - get _max(){ return EventMaxOrderByAggregateInputObjectSchema.optional(); }, - get _min(){ return EventMinOrderByAggregateInputObjectSchema.optional(); }, - get _sum(){ return EventSumOrderByAggregateInputObjectSchema.optional(); } -}).strict(); -export const EventOrderByWithAggregationInputObjectSchema: z.ZodType = z.lazy(__makeSchema_EventOrderByWithAggregationInput_schema) as unknown as z.ZodType; -export const EventOrderByWithAggregationInputObjectZodSchema = z.lazy(__makeSchema_EventOrderByWithAggregationInput_schema); - - -// File: EventScalarWhereWithAggregatesInput.schema.ts -const __makeSchema_EventScalarWhereWithAggregatesInput_schema = () => z.object({ - AND: z.union([EventScalarWhereWithAggregatesInputObjectSchema, EventScalarWhereWithAggregatesInputObjectSchema.array()]).optional(), - get OR(){ return EventScalarWhereWithAggregatesInputObjectSchema.array().optional(); }, - NOT: z.union([EventScalarWhereWithAggregatesInputObjectSchema, EventScalarWhereWithAggregatesInputObjectSchema.array()]).optional(), - id: z.union([StringWithAggregatesFilterObjectSchema, z.string()]).optional(), - title: z.union([StringWithAggregatesFilterObjectSchema, z.string()]).optional(), - start: z.union([DateTimeWithAggregatesFilterObjectSchema, z.coerce.date()]).optional(), - end: z.union([DateTimeWithAggregatesFilterObjectSchema, z.coerce.date()]).optional(), - status: z.union([EnumEventStatusWithAggregatesFilterObjectSchema, EventStatusSchema]).optional(), - description: z.union([StringWithAggregatesFilterObjectSchema, z.string()]).optional(), - shortDescription: z.union([StringNullableWithAggregatesFilterObjectSchema, z.string()]).optional().nullable(), - imageUrl: z.union([StringNullableWithAggregatesFilterObjectSchema, z.string()]).optional().nullable(), - locationTitle: z.union([StringNullableWithAggregatesFilterObjectSchema, z.string()]).optional().nullable(), - locationAddress: z.union([StringNullableWithAggregatesFilterObjectSchema, z.string()]).optional().nullable(), - locationLink: z.union([StringNullableWithAggregatesFilterObjectSchema, z.string()]).optional().nullable(), - type: z.union([EnumEventTypeWithAggregatesFilterObjectSchema, EventTypeSchema]).optional(), - markForMissedAttendance: z.union([BoolWithAggregatesFilterObjectSchema, z.boolean()]).optional(), - createdAt: z.union([DateTimeWithAggregatesFilterObjectSchema, z.coerce.date()]).optional(), - updatedAt: z.union([DateTimeWithAggregatesFilterObjectSchema, z.coerce.date()]).optional(), - attendanceId: z.union([StringNullableWithAggregatesFilterObjectSchema, z.string()]).optional().nullable(), - parentId: z.union([StringNullableWithAggregatesFilterObjectSchema, z.string()]).optional().nullable(), - contestId: z.union([StringNullableWithAggregatesFilterObjectSchema, z.string()]).optional().nullable(), - metadataImportId: z.union([IntNullableWithAggregatesFilterObjectSchema, z.number().int()]).optional().nullable() -}).strict(); -export const EventScalarWhereWithAggregatesInputObjectSchema: z.ZodType = z.lazy(__makeSchema_EventScalarWhereWithAggregatesInput_schema) as unknown as z.ZodType; -export const EventScalarWhereWithAggregatesInputObjectZodSchema = z.lazy(__makeSchema_EventScalarWhereWithAggregatesInput_schema); - - -// File: EventCompanyWhereInput.schema.ts -const __makeSchema_EventCompanyWhereInput_schema = () => z.object({ - AND: z.union([EventCompanyWhereInputObjectSchema, EventCompanyWhereInputObjectSchema.array()]).optional(), - get OR(){ return EventCompanyWhereInputObjectSchema.array().optional(); }, - NOT: z.union([EventCompanyWhereInputObjectSchema, EventCompanyWhereInputObjectSchema.array()]).optional(), - eventId: z.union([StringFilterObjectSchema, z.string()]).optional(), - companyId: z.union([StringFilterObjectSchema, z.string()]).optional(), - event: z.union([EventScalarRelationFilterObjectSchema, EventWhereInputObjectSchema]).optional(), - company: z.union([CompanyScalarRelationFilterObjectSchema, CompanyWhereInputObjectSchema]).optional() -}).strict(); -export const EventCompanyWhereInputObjectSchema: z.ZodType = z.lazy(__makeSchema_EventCompanyWhereInput_schema) as unknown as z.ZodType; -export const EventCompanyWhereInputObjectZodSchema = z.lazy(__makeSchema_EventCompanyWhereInput_schema); - - -// File: EventCompanyOrderByWithRelationInput.schema.ts -const __makeSchema_EventCompanyOrderByWithRelationInput_schema = () => z.object({ - eventId: SortOrderSchema.optional(), - companyId: SortOrderSchema.optional(), - get event(){ return EventOrderByWithRelationInputObjectSchema.optional(); }, - get company(){ return CompanyOrderByWithRelationInputObjectSchema.optional(); } -}).strict(); -export const EventCompanyOrderByWithRelationInputObjectSchema: z.ZodType = z.lazy(__makeSchema_EventCompanyOrderByWithRelationInput_schema) as unknown as z.ZodType; -export const EventCompanyOrderByWithRelationInputObjectZodSchema = z.lazy(__makeSchema_EventCompanyOrderByWithRelationInput_schema); - - -// File: EventCompanyWhereUniqueInput.schema.ts -const __makeSchema_EventCompanyWhereUniqueInput_schema = () => z.object({ - get eventId_companyId(){ return EventCompanyEventIdCompanyIdCompoundUniqueInputObjectSchema.optional(); } -}).strict(); -export const EventCompanyWhereUniqueInputObjectSchema: z.ZodType = z.lazy(__makeSchema_EventCompanyWhereUniqueInput_schema) as unknown as z.ZodType; -export const EventCompanyWhereUniqueInputObjectZodSchema = z.lazy(__makeSchema_EventCompanyWhereUniqueInput_schema); - - -// File: EventCompanyOrderByWithAggregationInput.schema.ts -const __makeSchema_EventCompanyOrderByWithAggregationInput_schema = () => z.object({ - eventId: SortOrderSchema.optional(), - companyId: SortOrderSchema.optional(), - get _count(){ return EventCompanyCountOrderByAggregateInputObjectSchema.optional(); }, - get _max(){ return EventCompanyMaxOrderByAggregateInputObjectSchema.optional(); }, - get _min(){ return EventCompanyMinOrderByAggregateInputObjectSchema.optional(); } -}).strict(); -export const EventCompanyOrderByWithAggregationInputObjectSchema: z.ZodType = z.lazy(__makeSchema_EventCompanyOrderByWithAggregationInput_schema) as unknown as z.ZodType; -export const EventCompanyOrderByWithAggregationInputObjectZodSchema = z.lazy(__makeSchema_EventCompanyOrderByWithAggregationInput_schema); - - -// File: EventCompanyScalarWhereWithAggregatesInput.schema.ts -const __makeSchema_EventCompanyScalarWhereWithAggregatesInput_schema = () => z.object({ - AND: z.union([EventCompanyScalarWhereWithAggregatesInputObjectSchema, EventCompanyScalarWhereWithAggregatesInputObjectSchema.array()]).optional(), - get OR(){ return EventCompanyScalarWhereWithAggregatesInputObjectSchema.array().optional(); }, - NOT: z.union([EventCompanyScalarWhereWithAggregatesInputObjectSchema, EventCompanyScalarWhereWithAggregatesInputObjectSchema.array()]).optional(), - eventId: z.union([StringWithAggregatesFilterObjectSchema, z.string()]).optional(), - companyId: z.union([StringWithAggregatesFilterObjectSchema, z.string()]).optional() -}).strict(); -export const EventCompanyScalarWhereWithAggregatesInputObjectSchema: z.ZodType = z.lazy(__makeSchema_EventCompanyScalarWhereWithAggregatesInput_schema) as unknown as z.ZodType; -export const EventCompanyScalarWhereWithAggregatesInputObjectZodSchema = z.lazy(__makeSchema_EventCompanyScalarWhereWithAggregatesInput_schema); - - -// File: MarkWhereInput.schema.ts -const __makeSchema_MarkWhereInput_schema = () => z.object({ - AND: z.union([MarkWhereInputObjectSchema, MarkWhereInputObjectSchema.array()]).optional(), - get OR(){ return MarkWhereInputObjectSchema.array().optional(); }, - NOT: z.union([MarkWhereInputObjectSchema, MarkWhereInputObjectSchema.array()]).optional(), - id: z.union([StringFilterObjectSchema, z.string()]).optional(), - title: z.union([StringFilterObjectSchema, z.string()]).optional(), - details: z.union([StringNullableFilterObjectSchema, z.string()]).optional().nullable(), - duration: z.union([IntFilterObjectSchema, z.number().int()]).optional(), - weight: z.union([IntFilterObjectSchema, z.number().int()]).optional(), - type: z.union([EnumMarkTypeFilterObjectSchema, MarkTypeSchema]).optional(), - createdAt: z.union([DateTimeFilterObjectSchema, z.coerce.date()]).optional(), - updatedAt: z.union([DateTimeFilterObjectSchema, z.coerce.date()]).optional(), - get users(){ return PersonalMarkListRelationFilterObjectSchema.optional(); }, - get groups(){ return MarkGroupListRelationFilterObjectSchema.optional(); } -}).strict(); -export const MarkWhereInputObjectSchema: z.ZodType = z.lazy(__makeSchema_MarkWhereInput_schema) as unknown as z.ZodType; -export const MarkWhereInputObjectZodSchema = z.lazy(__makeSchema_MarkWhereInput_schema); - - -// File: MarkOrderByWithRelationInput.schema.ts -const __makeSchema_MarkOrderByWithRelationInput_schema = () => z.object({ - id: SortOrderSchema.optional(), - title: SortOrderSchema.optional(), - details: z.union([SortOrderSchema, SortOrderInputObjectSchema]).optional(), - duration: SortOrderSchema.optional(), - weight: SortOrderSchema.optional(), - type: SortOrderSchema.optional(), - createdAt: SortOrderSchema.optional(), - updatedAt: SortOrderSchema.optional(), - get users(){ return PersonalMarkOrderByRelationAggregateInputObjectSchema.optional(); }, - get groups(){ return MarkGroupOrderByRelationAggregateInputObjectSchema.optional(); } -}).strict(); -export const MarkOrderByWithRelationInputObjectSchema: z.ZodType = z.lazy(__makeSchema_MarkOrderByWithRelationInput_schema) as unknown as z.ZodType; -export const MarkOrderByWithRelationInputObjectZodSchema = z.lazy(__makeSchema_MarkOrderByWithRelationInput_schema); - - -// File: MarkWhereUniqueInput.schema.ts -const __makeSchema_MarkWhereUniqueInput_schema = () => z.object({ - id: z.string().optional() -}).strict(); -export const MarkWhereUniqueInputObjectSchema: z.ZodType = z.lazy(__makeSchema_MarkWhereUniqueInput_schema) as unknown as z.ZodType; -export const MarkWhereUniqueInputObjectZodSchema = z.lazy(__makeSchema_MarkWhereUniqueInput_schema); - - -// File: MarkOrderByWithAggregationInput.schema.ts -const __makeSchema_MarkOrderByWithAggregationInput_schema = () => z.object({ - id: SortOrderSchema.optional(), - title: SortOrderSchema.optional(), - details: z.union([SortOrderSchema, SortOrderInputObjectSchema]).optional(), - duration: SortOrderSchema.optional(), - weight: SortOrderSchema.optional(), - type: SortOrderSchema.optional(), - createdAt: SortOrderSchema.optional(), - updatedAt: SortOrderSchema.optional(), - get _count(){ return MarkCountOrderByAggregateInputObjectSchema.optional(); }, - get _avg(){ return MarkAvgOrderByAggregateInputObjectSchema.optional(); }, - get _max(){ return MarkMaxOrderByAggregateInputObjectSchema.optional(); }, - get _min(){ return MarkMinOrderByAggregateInputObjectSchema.optional(); }, - get _sum(){ return MarkSumOrderByAggregateInputObjectSchema.optional(); } -}).strict(); -export const MarkOrderByWithAggregationInputObjectSchema: z.ZodType = z.lazy(__makeSchema_MarkOrderByWithAggregationInput_schema) as unknown as z.ZodType; -export const MarkOrderByWithAggregationInputObjectZodSchema = z.lazy(__makeSchema_MarkOrderByWithAggregationInput_schema); - - -// File: MarkScalarWhereWithAggregatesInput.schema.ts -const __makeSchema_MarkScalarWhereWithAggregatesInput_schema = () => z.object({ - AND: z.union([MarkScalarWhereWithAggregatesInputObjectSchema, MarkScalarWhereWithAggregatesInputObjectSchema.array()]).optional(), - get OR(){ return MarkScalarWhereWithAggregatesInputObjectSchema.array().optional(); }, - NOT: z.union([MarkScalarWhereWithAggregatesInputObjectSchema, MarkScalarWhereWithAggregatesInputObjectSchema.array()]).optional(), - id: z.union([StringWithAggregatesFilterObjectSchema, z.string()]).optional(), - title: z.union([StringWithAggregatesFilterObjectSchema, z.string()]).optional(), - details: z.union([StringNullableWithAggregatesFilterObjectSchema, z.string()]).optional().nullable(), - duration: z.union([IntWithAggregatesFilterObjectSchema, z.number().int()]).optional(), - weight: z.union([IntWithAggregatesFilterObjectSchema, z.number().int()]).optional(), - type: z.union([EnumMarkTypeWithAggregatesFilterObjectSchema, MarkTypeSchema]).optional(), - createdAt: z.union([DateTimeWithAggregatesFilterObjectSchema, z.coerce.date()]).optional(), - updatedAt: z.union([DateTimeWithAggregatesFilterObjectSchema, z.coerce.date()]).optional() -}).strict(); -export const MarkScalarWhereWithAggregatesInputObjectSchema: z.ZodType = z.lazy(__makeSchema_MarkScalarWhereWithAggregatesInput_schema) as unknown as z.ZodType; -export const MarkScalarWhereWithAggregatesInputObjectZodSchema = z.lazy(__makeSchema_MarkScalarWhereWithAggregatesInput_schema); - - -// File: MarkGroupWhereInput.schema.ts -const __makeSchema_MarkGroupWhereInput_schema = () => z.object({ - AND: z.union([MarkGroupWhereInputObjectSchema, MarkGroupWhereInputObjectSchema.array()]).optional(), - get OR(){ return MarkGroupWhereInputObjectSchema.array().optional(); }, - NOT: z.union([MarkGroupWhereInputObjectSchema, MarkGroupWhereInputObjectSchema.array()]).optional(), - markId: z.union([StringFilterObjectSchema, z.string()]).optional(), - groupId: z.union([StringFilterObjectSchema, z.string()]).optional(), - mark: z.union([MarkScalarRelationFilterObjectSchema, MarkWhereInputObjectSchema]).optional(), - group: z.union([GroupScalarRelationFilterObjectSchema, GroupWhereInputObjectSchema]).optional() -}).strict(); -export const MarkGroupWhereInputObjectSchema: z.ZodType = z.lazy(__makeSchema_MarkGroupWhereInput_schema) as unknown as z.ZodType; -export const MarkGroupWhereInputObjectZodSchema = z.lazy(__makeSchema_MarkGroupWhereInput_schema); - - -// File: MarkGroupOrderByWithRelationInput.schema.ts -const __makeSchema_MarkGroupOrderByWithRelationInput_schema = () => z.object({ - markId: SortOrderSchema.optional(), - groupId: SortOrderSchema.optional(), - get mark(){ return MarkOrderByWithRelationInputObjectSchema.optional(); }, - get group(){ return GroupOrderByWithRelationInputObjectSchema.optional(); } -}).strict(); -export const MarkGroupOrderByWithRelationInputObjectSchema: z.ZodType = z.lazy(__makeSchema_MarkGroupOrderByWithRelationInput_schema) as unknown as z.ZodType; -export const MarkGroupOrderByWithRelationInputObjectZodSchema = z.lazy(__makeSchema_MarkGroupOrderByWithRelationInput_schema); - - -// File: MarkGroupWhereUniqueInput.schema.ts -const __makeSchema_MarkGroupWhereUniqueInput_schema = () => z.object({ - get markId_groupId(){ return MarkGroupMarkIdGroupIdCompoundUniqueInputObjectSchema.optional(); } -}).strict(); -export const MarkGroupWhereUniqueInputObjectSchema: z.ZodType = z.lazy(__makeSchema_MarkGroupWhereUniqueInput_schema) as unknown as z.ZodType; -export const MarkGroupWhereUniqueInputObjectZodSchema = z.lazy(__makeSchema_MarkGroupWhereUniqueInput_schema); - - -// File: MarkGroupOrderByWithAggregationInput.schema.ts -const __makeSchema_MarkGroupOrderByWithAggregationInput_schema = () => z.object({ - markId: SortOrderSchema.optional(), - groupId: SortOrderSchema.optional(), - get _count(){ return MarkGroupCountOrderByAggregateInputObjectSchema.optional(); }, - get _max(){ return MarkGroupMaxOrderByAggregateInputObjectSchema.optional(); }, - get _min(){ return MarkGroupMinOrderByAggregateInputObjectSchema.optional(); } -}).strict(); -export const MarkGroupOrderByWithAggregationInputObjectSchema: z.ZodType = z.lazy(__makeSchema_MarkGroupOrderByWithAggregationInput_schema) as unknown as z.ZodType; -export const MarkGroupOrderByWithAggregationInputObjectZodSchema = z.lazy(__makeSchema_MarkGroupOrderByWithAggregationInput_schema); - - -// File: MarkGroupScalarWhereWithAggregatesInput.schema.ts -const __makeSchema_MarkGroupScalarWhereWithAggregatesInput_schema = () => z.object({ - AND: z.union([MarkGroupScalarWhereWithAggregatesInputObjectSchema, MarkGroupScalarWhereWithAggregatesInputObjectSchema.array()]).optional(), - get OR(){ return MarkGroupScalarWhereWithAggregatesInputObjectSchema.array().optional(); }, - NOT: z.union([MarkGroupScalarWhereWithAggregatesInputObjectSchema, MarkGroupScalarWhereWithAggregatesInputObjectSchema.array()]).optional(), - markId: z.union([StringWithAggregatesFilterObjectSchema, z.string()]).optional(), - groupId: z.union([StringWithAggregatesFilterObjectSchema, z.string()]).optional() -}).strict(); -export const MarkGroupScalarWhereWithAggregatesInputObjectSchema: z.ZodType = z.lazy(__makeSchema_MarkGroupScalarWhereWithAggregatesInput_schema) as unknown as z.ZodType; -export const MarkGroupScalarWhereWithAggregatesInputObjectZodSchema = z.lazy(__makeSchema_MarkGroupScalarWhereWithAggregatesInput_schema); - - -// File: PersonalMarkWhereInput.schema.ts -const __makeSchema_PersonalMarkWhereInput_schema = () => z.object({ - AND: z.union([PersonalMarkWhereInputObjectSchema, PersonalMarkWhereInputObjectSchema.array()]).optional(), - get OR(){ return PersonalMarkWhereInputObjectSchema.array().optional(); }, - NOT: z.union([PersonalMarkWhereInputObjectSchema, PersonalMarkWhereInputObjectSchema.array()]).optional(), - createdAt: z.union([DateTimeFilterObjectSchema, z.coerce.date()]).optional(), - markId: z.union([StringFilterObjectSchema, z.string()]).optional(), - userId: z.union([StringFilterObjectSchema, z.string()]).optional(), - givenById: z.union([StringNullableFilterObjectSchema, z.string()]).optional().nullable(), - mark: z.union([MarkScalarRelationFilterObjectSchema, MarkWhereInputObjectSchema]).optional(), - user: z.union([UserScalarRelationFilterObjectSchema, UserWhereInputObjectSchema]).optional(), - givenBy: z.union([UserNullableScalarRelationFilterObjectSchema, UserWhereInputObjectSchema]).optional() -}).strict(); -export const PersonalMarkWhereInputObjectSchema: z.ZodType = z.lazy(__makeSchema_PersonalMarkWhereInput_schema) as unknown as z.ZodType; -export const PersonalMarkWhereInputObjectZodSchema = z.lazy(__makeSchema_PersonalMarkWhereInput_schema); - - -// File: PersonalMarkOrderByWithRelationInput.schema.ts -const __makeSchema_PersonalMarkOrderByWithRelationInput_schema = () => z.object({ - createdAt: SortOrderSchema.optional(), - markId: SortOrderSchema.optional(), - userId: SortOrderSchema.optional(), - givenById: z.union([SortOrderSchema, SortOrderInputObjectSchema]).optional(), - get mark(){ return MarkOrderByWithRelationInputObjectSchema.optional(); }, - get user(){ return UserOrderByWithRelationInputObjectSchema.optional(); }, - get givenBy(){ return UserOrderByWithRelationInputObjectSchema.optional(); } -}).strict(); -export const PersonalMarkOrderByWithRelationInputObjectSchema: z.ZodType = z.lazy(__makeSchema_PersonalMarkOrderByWithRelationInput_schema) as unknown as z.ZodType; -export const PersonalMarkOrderByWithRelationInputObjectZodSchema = z.lazy(__makeSchema_PersonalMarkOrderByWithRelationInput_schema); - - -// File: PersonalMarkWhereUniqueInput.schema.ts -const __makeSchema_PersonalMarkWhereUniqueInput_schema = () => z.object({ - get markId_userId(){ return PersonalMarkMarkIdUserIdCompoundUniqueInputObjectSchema.optional(); } -}).strict(); -export const PersonalMarkWhereUniqueInputObjectSchema: z.ZodType = z.lazy(__makeSchema_PersonalMarkWhereUniqueInput_schema) as unknown as z.ZodType; -export const PersonalMarkWhereUniqueInputObjectZodSchema = z.lazy(__makeSchema_PersonalMarkWhereUniqueInput_schema); - - -// File: PersonalMarkOrderByWithAggregationInput.schema.ts -const __makeSchema_PersonalMarkOrderByWithAggregationInput_schema = () => z.object({ - createdAt: SortOrderSchema.optional(), - markId: SortOrderSchema.optional(), - userId: SortOrderSchema.optional(), - givenById: z.union([SortOrderSchema, SortOrderInputObjectSchema]).optional(), - get _count(){ return PersonalMarkCountOrderByAggregateInputObjectSchema.optional(); }, - get _max(){ return PersonalMarkMaxOrderByAggregateInputObjectSchema.optional(); }, - get _min(){ return PersonalMarkMinOrderByAggregateInputObjectSchema.optional(); } -}).strict(); -export const PersonalMarkOrderByWithAggregationInputObjectSchema: z.ZodType = z.lazy(__makeSchema_PersonalMarkOrderByWithAggregationInput_schema) as unknown as z.ZodType; -export const PersonalMarkOrderByWithAggregationInputObjectZodSchema = z.lazy(__makeSchema_PersonalMarkOrderByWithAggregationInput_schema); - - -// File: PersonalMarkScalarWhereWithAggregatesInput.schema.ts -const __makeSchema_PersonalMarkScalarWhereWithAggregatesInput_schema = () => z.object({ - AND: z.union([PersonalMarkScalarWhereWithAggregatesInputObjectSchema, PersonalMarkScalarWhereWithAggregatesInputObjectSchema.array()]).optional(), - get OR(){ return PersonalMarkScalarWhereWithAggregatesInputObjectSchema.array().optional(); }, - NOT: z.union([PersonalMarkScalarWhereWithAggregatesInputObjectSchema, PersonalMarkScalarWhereWithAggregatesInputObjectSchema.array()]).optional(), - createdAt: z.union([DateTimeWithAggregatesFilterObjectSchema, z.coerce.date()]).optional(), - markId: z.union([StringWithAggregatesFilterObjectSchema, z.string()]).optional(), - userId: z.union([StringWithAggregatesFilterObjectSchema, z.string()]).optional(), - givenById: z.union([StringNullableWithAggregatesFilterObjectSchema, z.string()]).optional().nullable() -}).strict(); -export const PersonalMarkScalarWhereWithAggregatesInputObjectSchema: z.ZodType = z.lazy(__makeSchema_PersonalMarkScalarWhereWithAggregatesInput_schema) as unknown as z.ZodType; -export const PersonalMarkScalarWhereWithAggregatesInputObjectZodSchema = z.lazy(__makeSchema_PersonalMarkScalarWhereWithAggregatesInput_schema); - - -// File: PrivacyPermissionsWhereInput.schema.ts -const __makeSchema_PrivacyPermissionsWhereInput_schema = () => z.object({ - AND: z.union([PrivacyPermissionsWhereInputObjectSchema, PrivacyPermissionsWhereInputObjectSchema.array()]).optional(), - get OR(){ return PrivacyPermissionsWhereInputObjectSchema.array().optional(); }, - NOT: z.union([PrivacyPermissionsWhereInputObjectSchema, PrivacyPermissionsWhereInputObjectSchema.array()]).optional(), - id: z.union([StringFilterObjectSchema, z.string()]).optional(), - userId: z.union([StringFilterObjectSchema, z.string()]).optional(), - profileVisible: z.union([BoolFilterObjectSchema, z.boolean()]).optional(), - usernameVisible: z.union([BoolFilterObjectSchema, z.boolean()]).optional(), - emailVisible: z.union([BoolFilterObjectSchema, z.boolean()]).optional(), - phoneVisible: z.union([BoolFilterObjectSchema, z.boolean()]).optional(), - addressVisible: z.union([BoolFilterObjectSchema, z.boolean()]).optional(), - attendanceVisible: z.union([BoolFilterObjectSchema, z.boolean()]).optional(), - createdAt: z.union([DateTimeFilterObjectSchema, z.coerce.date()]).optional(), - updatedAt: z.union([DateTimeFilterObjectSchema, z.coerce.date()]).optional(), - user: z.union([UserScalarRelationFilterObjectSchema, UserWhereInputObjectSchema]).optional() -}).strict(); -export const PrivacyPermissionsWhereInputObjectSchema: z.ZodType = z.lazy(__makeSchema_PrivacyPermissionsWhereInput_schema) as unknown as z.ZodType; -export const PrivacyPermissionsWhereInputObjectZodSchema = z.lazy(__makeSchema_PrivacyPermissionsWhereInput_schema); - - -// File: PrivacyPermissionsOrderByWithRelationInput.schema.ts -const __makeSchema_PrivacyPermissionsOrderByWithRelationInput_schema = () => z.object({ - id: SortOrderSchema.optional(), - userId: SortOrderSchema.optional(), - profileVisible: SortOrderSchema.optional(), - usernameVisible: SortOrderSchema.optional(), - emailVisible: SortOrderSchema.optional(), - phoneVisible: SortOrderSchema.optional(), - addressVisible: SortOrderSchema.optional(), - attendanceVisible: SortOrderSchema.optional(), - createdAt: SortOrderSchema.optional(), - updatedAt: SortOrderSchema.optional(), - get user(){ return UserOrderByWithRelationInputObjectSchema.optional(); } -}).strict(); -export const PrivacyPermissionsOrderByWithRelationInputObjectSchema: z.ZodType = z.lazy(__makeSchema_PrivacyPermissionsOrderByWithRelationInput_schema) as unknown as z.ZodType; -export const PrivacyPermissionsOrderByWithRelationInputObjectZodSchema = z.lazy(__makeSchema_PrivacyPermissionsOrderByWithRelationInput_schema); - - -// File: PrivacyPermissionsWhereUniqueInput.schema.ts -const __makeSchema_PrivacyPermissionsWhereUniqueInput_schema = () => z.object({ - id: z.string().optional(), - userId: z.string().optional() -}).strict(); -export const PrivacyPermissionsWhereUniqueInputObjectSchema: z.ZodType = z.lazy(__makeSchema_PrivacyPermissionsWhereUniqueInput_schema) as unknown as z.ZodType; -export const PrivacyPermissionsWhereUniqueInputObjectZodSchema = z.lazy(__makeSchema_PrivacyPermissionsWhereUniqueInput_schema); - - -// File: PrivacyPermissionsOrderByWithAggregationInput.schema.ts -const __makeSchema_PrivacyPermissionsOrderByWithAggregationInput_schema = () => z.object({ - id: SortOrderSchema.optional(), - userId: SortOrderSchema.optional(), - profileVisible: SortOrderSchema.optional(), - usernameVisible: SortOrderSchema.optional(), - emailVisible: SortOrderSchema.optional(), - phoneVisible: SortOrderSchema.optional(), - addressVisible: SortOrderSchema.optional(), - attendanceVisible: SortOrderSchema.optional(), - createdAt: SortOrderSchema.optional(), - updatedAt: SortOrderSchema.optional(), - get _count(){ return PrivacyPermissionsCountOrderByAggregateInputObjectSchema.optional(); }, - get _max(){ return PrivacyPermissionsMaxOrderByAggregateInputObjectSchema.optional(); }, - get _min(){ return PrivacyPermissionsMinOrderByAggregateInputObjectSchema.optional(); } -}).strict(); -export const PrivacyPermissionsOrderByWithAggregationInputObjectSchema: z.ZodType = z.lazy(__makeSchema_PrivacyPermissionsOrderByWithAggregationInput_schema) as unknown as z.ZodType; -export const PrivacyPermissionsOrderByWithAggregationInputObjectZodSchema = z.lazy(__makeSchema_PrivacyPermissionsOrderByWithAggregationInput_schema); - - -// File: PrivacyPermissionsScalarWhereWithAggregatesInput.schema.ts -const __makeSchema_PrivacyPermissionsScalarWhereWithAggregatesInput_schema = () => z.object({ - AND: z.union([PrivacyPermissionsScalarWhereWithAggregatesInputObjectSchema, PrivacyPermissionsScalarWhereWithAggregatesInputObjectSchema.array()]).optional(), - get OR(){ return PrivacyPermissionsScalarWhereWithAggregatesInputObjectSchema.array().optional(); }, - NOT: z.union([PrivacyPermissionsScalarWhereWithAggregatesInputObjectSchema, PrivacyPermissionsScalarWhereWithAggregatesInputObjectSchema.array()]).optional(), - id: z.union([StringWithAggregatesFilterObjectSchema, z.string()]).optional(), - userId: z.union([StringWithAggregatesFilterObjectSchema, z.string()]).optional(), - profileVisible: z.union([BoolWithAggregatesFilterObjectSchema, z.boolean()]).optional(), - usernameVisible: z.union([BoolWithAggregatesFilterObjectSchema, z.boolean()]).optional(), - emailVisible: z.union([BoolWithAggregatesFilterObjectSchema, z.boolean()]).optional(), - phoneVisible: z.union([BoolWithAggregatesFilterObjectSchema, z.boolean()]).optional(), - addressVisible: z.union([BoolWithAggregatesFilterObjectSchema, z.boolean()]).optional(), - attendanceVisible: z.union([BoolWithAggregatesFilterObjectSchema, z.boolean()]).optional(), - createdAt: z.union([DateTimeWithAggregatesFilterObjectSchema, z.coerce.date()]).optional(), - updatedAt: z.union([DateTimeWithAggregatesFilterObjectSchema, z.coerce.date()]).optional() -}).strict(); -export const PrivacyPermissionsScalarWhereWithAggregatesInputObjectSchema: z.ZodType = z.lazy(__makeSchema_PrivacyPermissionsScalarWhereWithAggregatesInput_schema) as unknown as z.ZodType; -export const PrivacyPermissionsScalarWhereWithAggregatesInputObjectZodSchema = z.lazy(__makeSchema_PrivacyPermissionsScalarWhereWithAggregatesInput_schema); - - -// File: NotificationPermissionsWhereInput.schema.ts -const __makeSchema_NotificationPermissionsWhereInput_schema = () => z.object({ - AND: z.union([NotificationPermissionsWhereInputObjectSchema, NotificationPermissionsWhereInputObjectSchema.array()]).optional(), - get OR(){ return NotificationPermissionsWhereInputObjectSchema.array().optional(); }, - NOT: z.union([NotificationPermissionsWhereInputObjectSchema, NotificationPermissionsWhereInputObjectSchema.array()]).optional(), - id: z.union([StringFilterObjectSchema, z.string()]).optional(), - userId: z.union([StringFilterObjectSchema, z.string()]).optional(), - applications: z.union([BoolFilterObjectSchema, z.boolean()]).optional(), - newArticles: z.union([BoolFilterObjectSchema, z.boolean()]).optional(), - standardNotifications: z.union([BoolFilterObjectSchema, z.boolean()]).optional(), - groupMessages: z.union([BoolFilterObjectSchema, z.boolean()]).optional(), - markRulesUpdates: z.union([BoolFilterObjectSchema, z.boolean()]).optional(), - receipts: z.union([BoolFilterObjectSchema, z.boolean()]).optional(), - registrationByAdministrator: z.union([BoolFilterObjectSchema, z.boolean()]).optional(), - registrationStart: z.union([BoolFilterObjectSchema, z.boolean()]).optional(), - createdAt: z.union([DateTimeFilterObjectSchema, z.coerce.date()]).optional(), - updatedAt: z.union([DateTimeFilterObjectSchema, z.coerce.date()]).optional(), - user: z.union([UserScalarRelationFilterObjectSchema, UserWhereInputObjectSchema]).optional() -}).strict(); -export const NotificationPermissionsWhereInputObjectSchema: z.ZodType = z.lazy(__makeSchema_NotificationPermissionsWhereInput_schema) as unknown as z.ZodType; -export const NotificationPermissionsWhereInputObjectZodSchema = z.lazy(__makeSchema_NotificationPermissionsWhereInput_schema); - - -// File: NotificationPermissionsOrderByWithRelationInput.schema.ts -const __makeSchema_NotificationPermissionsOrderByWithRelationInput_schema = () => z.object({ - id: SortOrderSchema.optional(), - userId: SortOrderSchema.optional(), - applications: SortOrderSchema.optional(), - newArticles: SortOrderSchema.optional(), - standardNotifications: SortOrderSchema.optional(), - groupMessages: SortOrderSchema.optional(), - markRulesUpdates: SortOrderSchema.optional(), - receipts: SortOrderSchema.optional(), - registrationByAdministrator: SortOrderSchema.optional(), - registrationStart: SortOrderSchema.optional(), - createdAt: SortOrderSchema.optional(), - updatedAt: SortOrderSchema.optional(), - get user(){ return UserOrderByWithRelationInputObjectSchema.optional(); } -}).strict(); -export const NotificationPermissionsOrderByWithRelationInputObjectSchema: z.ZodType = z.lazy(__makeSchema_NotificationPermissionsOrderByWithRelationInput_schema) as unknown as z.ZodType; -export const NotificationPermissionsOrderByWithRelationInputObjectZodSchema = z.lazy(__makeSchema_NotificationPermissionsOrderByWithRelationInput_schema); - - -// File: NotificationPermissionsWhereUniqueInput.schema.ts -const __makeSchema_NotificationPermissionsWhereUniqueInput_schema = () => z.object({ - id: z.string().optional(), - userId: z.string().optional() -}).strict(); -export const NotificationPermissionsWhereUniqueInputObjectSchema: z.ZodType = z.lazy(__makeSchema_NotificationPermissionsWhereUniqueInput_schema) as unknown as z.ZodType; -export const NotificationPermissionsWhereUniqueInputObjectZodSchema = z.lazy(__makeSchema_NotificationPermissionsWhereUniqueInput_schema); - - -// File: NotificationPermissionsOrderByWithAggregationInput.schema.ts -const __makeSchema_NotificationPermissionsOrderByWithAggregationInput_schema = () => z.object({ - id: SortOrderSchema.optional(), - userId: SortOrderSchema.optional(), - applications: SortOrderSchema.optional(), - newArticles: SortOrderSchema.optional(), - standardNotifications: SortOrderSchema.optional(), - groupMessages: SortOrderSchema.optional(), - markRulesUpdates: SortOrderSchema.optional(), - receipts: SortOrderSchema.optional(), - registrationByAdministrator: SortOrderSchema.optional(), - registrationStart: SortOrderSchema.optional(), - createdAt: SortOrderSchema.optional(), - updatedAt: SortOrderSchema.optional(), - get _count(){ return NotificationPermissionsCountOrderByAggregateInputObjectSchema.optional(); }, - get _max(){ return NotificationPermissionsMaxOrderByAggregateInputObjectSchema.optional(); }, - get _min(){ return NotificationPermissionsMinOrderByAggregateInputObjectSchema.optional(); } -}).strict(); -export const NotificationPermissionsOrderByWithAggregationInputObjectSchema: z.ZodType = z.lazy(__makeSchema_NotificationPermissionsOrderByWithAggregationInput_schema) as unknown as z.ZodType; -export const NotificationPermissionsOrderByWithAggregationInputObjectZodSchema = z.lazy(__makeSchema_NotificationPermissionsOrderByWithAggregationInput_schema); - - -// File: NotificationPermissionsScalarWhereWithAggregatesInput.schema.ts -const __makeSchema_NotificationPermissionsScalarWhereWithAggregatesInput_schema = () => z.object({ - AND: z.union([NotificationPermissionsScalarWhereWithAggregatesInputObjectSchema, NotificationPermissionsScalarWhereWithAggregatesInputObjectSchema.array()]).optional(), - get OR(){ return NotificationPermissionsScalarWhereWithAggregatesInputObjectSchema.array().optional(); }, - NOT: z.union([NotificationPermissionsScalarWhereWithAggregatesInputObjectSchema, NotificationPermissionsScalarWhereWithAggregatesInputObjectSchema.array()]).optional(), - id: z.union([StringWithAggregatesFilterObjectSchema, z.string()]).optional(), - userId: z.union([StringWithAggregatesFilterObjectSchema, z.string()]).optional(), - applications: z.union([BoolWithAggregatesFilterObjectSchema, z.boolean()]).optional(), - newArticles: z.union([BoolWithAggregatesFilterObjectSchema, z.boolean()]).optional(), - standardNotifications: z.union([BoolWithAggregatesFilterObjectSchema, z.boolean()]).optional(), - groupMessages: z.union([BoolWithAggregatesFilterObjectSchema, z.boolean()]).optional(), - markRulesUpdates: z.union([BoolWithAggregatesFilterObjectSchema, z.boolean()]).optional(), - receipts: z.union([BoolWithAggregatesFilterObjectSchema, z.boolean()]).optional(), - registrationByAdministrator: z.union([BoolWithAggregatesFilterObjectSchema, z.boolean()]).optional(), - registrationStart: z.union([BoolWithAggregatesFilterObjectSchema, z.boolean()]).optional(), - createdAt: z.union([DateTimeWithAggregatesFilterObjectSchema, z.coerce.date()]).optional(), - updatedAt: z.union([DateTimeWithAggregatesFilterObjectSchema, z.coerce.date()]).optional() -}).strict(); -export const NotificationPermissionsScalarWhereWithAggregatesInputObjectSchema: z.ZodType = z.lazy(__makeSchema_NotificationPermissionsScalarWhereWithAggregatesInput_schema) as unknown as z.ZodType; -export const NotificationPermissionsScalarWhereWithAggregatesInputObjectZodSchema = z.lazy(__makeSchema_NotificationPermissionsScalarWhereWithAggregatesInput_schema); - - -// File: EventHostingGroupWhereInput.schema.ts -const __makeSchema_EventHostingGroupWhereInput_schema = () => z.object({ - AND: z.union([EventHostingGroupWhereInputObjectSchema, EventHostingGroupWhereInputObjectSchema.array()]).optional(), - get OR(){ return EventHostingGroupWhereInputObjectSchema.array().optional(); }, - NOT: z.union([EventHostingGroupWhereInputObjectSchema, EventHostingGroupWhereInputObjectSchema.array()]).optional(), - groupId: z.union([StringFilterObjectSchema, z.string()]).optional(), - eventId: z.union([StringFilterObjectSchema, z.string()]).optional(), - group: z.union([GroupScalarRelationFilterObjectSchema, GroupWhereInputObjectSchema]).optional(), - event: z.union([EventScalarRelationFilterObjectSchema, EventWhereInputObjectSchema]).optional() -}).strict(); -export const EventHostingGroupWhereInputObjectSchema: z.ZodType = z.lazy(__makeSchema_EventHostingGroupWhereInput_schema) as unknown as z.ZodType; -export const EventHostingGroupWhereInputObjectZodSchema = z.lazy(__makeSchema_EventHostingGroupWhereInput_schema); - - -// File: EventHostingGroupOrderByWithRelationInput.schema.ts -const __makeSchema_EventHostingGroupOrderByWithRelationInput_schema = () => z.object({ - groupId: SortOrderSchema.optional(), - eventId: SortOrderSchema.optional(), - get group(){ return GroupOrderByWithRelationInputObjectSchema.optional(); }, - get event(){ return EventOrderByWithRelationInputObjectSchema.optional(); } -}).strict(); -export const EventHostingGroupOrderByWithRelationInputObjectSchema: z.ZodType = z.lazy(__makeSchema_EventHostingGroupOrderByWithRelationInput_schema) as unknown as z.ZodType; -export const EventHostingGroupOrderByWithRelationInputObjectZodSchema = z.lazy(__makeSchema_EventHostingGroupOrderByWithRelationInput_schema); - - -// File: EventHostingGroupWhereUniqueInput.schema.ts -const __makeSchema_EventHostingGroupWhereUniqueInput_schema = () => z.object({ - get groupId_eventId(){ return EventHostingGroupGroupIdEventIdCompoundUniqueInputObjectSchema.optional(); } -}).strict(); -export const EventHostingGroupWhereUniqueInputObjectSchema: z.ZodType = z.lazy(__makeSchema_EventHostingGroupWhereUniqueInput_schema) as unknown as z.ZodType; -export const EventHostingGroupWhereUniqueInputObjectZodSchema = z.lazy(__makeSchema_EventHostingGroupWhereUniqueInput_schema); - - -// File: EventHostingGroupOrderByWithAggregationInput.schema.ts -const __makeSchema_EventHostingGroupOrderByWithAggregationInput_schema = () => z.object({ - groupId: SortOrderSchema.optional(), - eventId: SortOrderSchema.optional(), - get _count(){ return EventHostingGroupCountOrderByAggregateInputObjectSchema.optional(); }, - get _max(){ return EventHostingGroupMaxOrderByAggregateInputObjectSchema.optional(); }, - get _min(){ return EventHostingGroupMinOrderByAggregateInputObjectSchema.optional(); } -}).strict(); -export const EventHostingGroupOrderByWithAggregationInputObjectSchema: z.ZodType = z.lazy(__makeSchema_EventHostingGroupOrderByWithAggregationInput_schema) as unknown as z.ZodType; -export const EventHostingGroupOrderByWithAggregationInputObjectZodSchema = z.lazy(__makeSchema_EventHostingGroupOrderByWithAggregationInput_schema); - - -// File: EventHostingGroupScalarWhereWithAggregatesInput.schema.ts -const __makeSchema_EventHostingGroupScalarWhereWithAggregatesInput_schema = () => z.object({ - AND: z.union([EventHostingGroupScalarWhereWithAggregatesInputObjectSchema, EventHostingGroupScalarWhereWithAggregatesInputObjectSchema.array()]).optional(), - get OR(){ return EventHostingGroupScalarWhereWithAggregatesInputObjectSchema.array().optional(); }, - NOT: z.union([EventHostingGroupScalarWhereWithAggregatesInputObjectSchema, EventHostingGroupScalarWhereWithAggregatesInputObjectSchema.array()]).optional(), - groupId: z.union([StringWithAggregatesFilterObjectSchema, z.string()]).optional(), - eventId: z.union([StringWithAggregatesFilterObjectSchema, z.string()]).optional() -}).strict(); -export const EventHostingGroupScalarWhereWithAggregatesInputObjectSchema: z.ZodType = z.lazy(__makeSchema_EventHostingGroupScalarWhereWithAggregatesInput_schema) as unknown as z.ZodType; -export const EventHostingGroupScalarWhereWithAggregatesInputObjectZodSchema = z.lazy(__makeSchema_EventHostingGroupScalarWhereWithAggregatesInput_schema); - - -// File: JobListingWhereInput.schema.ts -const __makeSchema_JobListingWhereInput_schema = () => z.object({ - AND: z.union([JobListingWhereInputObjectSchema, JobListingWhereInputObjectSchema.array()]).optional(), - get OR(){ return JobListingWhereInputObjectSchema.array().optional(); }, - NOT: z.union([JobListingWhereInputObjectSchema, JobListingWhereInputObjectSchema.array()]).optional(), - id: z.union([StringFilterObjectSchema, z.string()]).optional(), - title: z.union([StringFilterObjectSchema, z.string()]).optional(), - description: z.union([StringFilterObjectSchema, z.string()]).optional(), - shortDescription: z.union([StringNullableFilterObjectSchema, z.string()]).optional().nullable(), - start: z.union([DateTimeFilterObjectSchema, z.coerce.date()]).optional(), - end: z.union([DateTimeFilterObjectSchema, z.coerce.date()]).optional(), - featured: z.union([BoolFilterObjectSchema, z.boolean()]).optional(), - hidden: z.union([BoolFilterObjectSchema, z.boolean()]).optional(), - deadline: z.union([DateTimeNullableFilterObjectSchema, z.coerce.date()]).optional().nullable(), - employment: z.union([EnumEmploymentTypeFilterObjectSchema, EmploymentTypeSchema]).optional(), - applicationLink: z.union([StringNullableFilterObjectSchema, z.string()]).optional().nullable(), - applicationEmail: z.union([StringNullableFilterObjectSchema, z.string()]).optional().nullable(), - rollingAdmission: z.union([BoolFilterObjectSchema, z.boolean()]).optional(), - createdAt: z.union([DateTimeFilterObjectSchema, z.coerce.date()]).optional(), - updatedAt: z.union([DateTimeFilterObjectSchema, z.coerce.date()]).optional(), - companyId: z.union([StringFilterObjectSchema, z.string()]).optional(), - company: z.union([CompanyScalarRelationFilterObjectSchema, CompanyWhereInputObjectSchema]).optional(), - get locations(){ return JobListingLocationListRelationFilterObjectSchema.optional(); } -}).strict(); -export const JobListingWhereInputObjectSchema: z.ZodType = z.lazy(__makeSchema_JobListingWhereInput_schema) as unknown as z.ZodType; -export const JobListingWhereInputObjectZodSchema = z.lazy(__makeSchema_JobListingWhereInput_schema); - - -// File: JobListingOrderByWithRelationInput.schema.ts -const __makeSchema_JobListingOrderByWithRelationInput_schema = () => z.object({ - id: SortOrderSchema.optional(), - title: SortOrderSchema.optional(), - description: SortOrderSchema.optional(), - shortDescription: z.union([SortOrderSchema, SortOrderInputObjectSchema]).optional(), - start: SortOrderSchema.optional(), - end: SortOrderSchema.optional(), - featured: SortOrderSchema.optional(), - hidden: SortOrderSchema.optional(), - deadline: z.union([SortOrderSchema, SortOrderInputObjectSchema]).optional(), - employment: SortOrderSchema.optional(), - applicationLink: z.union([SortOrderSchema, SortOrderInputObjectSchema]).optional(), - applicationEmail: z.union([SortOrderSchema, SortOrderInputObjectSchema]).optional(), - rollingAdmission: SortOrderSchema.optional(), - createdAt: SortOrderSchema.optional(), - updatedAt: SortOrderSchema.optional(), - companyId: SortOrderSchema.optional(), - get company(){ return CompanyOrderByWithRelationInputObjectSchema.optional(); }, - get locations(){ return JobListingLocationOrderByRelationAggregateInputObjectSchema.optional(); } -}).strict(); -export const JobListingOrderByWithRelationInputObjectSchema: z.ZodType = z.lazy(__makeSchema_JobListingOrderByWithRelationInput_schema) as unknown as z.ZodType; -export const JobListingOrderByWithRelationInputObjectZodSchema = z.lazy(__makeSchema_JobListingOrderByWithRelationInput_schema); - - -// File: JobListingWhereUniqueInput.schema.ts -const __makeSchema_JobListingWhereUniqueInput_schema = () => z.object({ - id: z.string().optional() -}).strict(); -export const JobListingWhereUniqueInputObjectSchema: z.ZodType = z.lazy(__makeSchema_JobListingWhereUniqueInput_schema) as unknown as z.ZodType; -export const JobListingWhereUniqueInputObjectZodSchema = z.lazy(__makeSchema_JobListingWhereUniqueInput_schema); - - -// File: JobListingOrderByWithAggregationInput.schema.ts -const __makeSchema_JobListingOrderByWithAggregationInput_schema = () => z.object({ - id: SortOrderSchema.optional(), - title: SortOrderSchema.optional(), - description: SortOrderSchema.optional(), - shortDescription: z.union([SortOrderSchema, SortOrderInputObjectSchema]).optional(), - start: SortOrderSchema.optional(), - end: SortOrderSchema.optional(), - featured: SortOrderSchema.optional(), - hidden: SortOrderSchema.optional(), - deadline: z.union([SortOrderSchema, SortOrderInputObjectSchema]).optional(), - employment: SortOrderSchema.optional(), - applicationLink: z.union([SortOrderSchema, SortOrderInputObjectSchema]).optional(), - applicationEmail: z.union([SortOrderSchema, SortOrderInputObjectSchema]).optional(), - rollingAdmission: SortOrderSchema.optional(), - createdAt: SortOrderSchema.optional(), - updatedAt: SortOrderSchema.optional(), - companyId: SortOrderSchema.optional(), - get _count(){ return JobListingCountOrderByAggregateInputObjectSchema.optional(); }, - get _max(){ return JobListingMaxOrderByAggregateInputObjectSchema.optional(); }, - get _min(){ return JobListingMinOrderByAggregateInputObjectSchema.optional(); } -}).strict(); -export const JobListingOrderByWithAggregationInputObjectSchema: z.ZodType = z.lazy(__makeSchema_JobListingOrderByWithAggregationInput_schema) as unknown as z.ZodType; -export const JobListingOrderByWithAggregationInputObjectZodSchema = z.lazy(__makeSchema_JobListingOrderByWithAggregationInput_schema); - - -// File: JobListingScalarWhereWithAggregatesInput.schema.ts -const __makeSchema_JobListingScalarWhereWithAggregatesInput_schema = () => z.object({ - AND: z.union([JobListingScalarWhereWithAggregatesInputObjectSchema, JobListingScalarWhereWithAggregatesInputObjectSchema.array()]).optional(), - get OR(){ return JobListingScalarWhereWithAggregatesInputObjectSchema.array().optional(); }, - NOT: z.union([JobListingScalarWhereWithAggregatesInputObjectSchema, JobListingScalarWhereWithAggregatesInputObjectSchema.array()]).optional(), - id: z.union([StringWithAggregatesFilterObjectSchema, z.string()]).optional(), - title: z.union([StringWithAggregatesFilterObjectSchema, z.string()]).optional(), - description: z.union([StringWithAggregatesFilterObjectSchema, z.string()]).optional(), - shortDescription: z.union([StringNullableWithAggregatesFilterObjectSchema, z.string()]).optional().nullable(), - start: z.union([DateTimeWithAggregatesFilterObjectSchema, z.coerce.date()]).optional(), - end: z.union([DateTimeWithAggregatesFilterObjectSchema, z.coerce.date()]).optional(), - featured: z.union([BoolWithAggregatesFilterObjectSchema, z.boolean()]).optional(), - hidden: z.union([BoolWithAggregatesFilterObjectSchema, z.boolean()]).optional(), - deadline: z.union([DateTimeNullableWithAggregatesFilterObjectSchema, z.coerce.date()]).optional().nullable(), - employment: z.union([EnumEmploymentTypeWithAggregatesFilterObjectSchema, EmploymentTypeSchema]).optional(), - applicationLink: z.union([StringNullableWithAggregatesFilterObjectSchema, z.string()]).optional().nullable(), - applicationEmail: z.union([StringNullableWithAggregatesFilterObjectSchema, z.string()]).optional().nullable(), - rollingAdmission: z.union([BoolWithAggregatesFilterObjectSchema, z.boolean()]).optional(), - createdAt: z.union([DateTimeWithAggregatesFilterObjectSchema, z.coerce.date()]).optional(), - updatedAt: z.union([DateTimeWithAggregatesFilterObjectSchema, z.coerce.date()]).optional(), - companyId: z.union([StringWithAggregatesFilterObjectSchema, z.string()]).optional() -}).strict(); -export const JobListingScalarWhereWithAggregatesInputObjectSchema: z.ZodType = z.lazy(__makeSchema_JobListingScalarWhereWithAggregatesInput_schema) as unknown as z.ZodType; -export const JobListingScalarWhereWithAggregatesInputObjectZodSchema = z.lazy(__makeSchema_JobListingScalarWhereWithAggregatesInput_schema); - - -// File: JobListingLocationWhereInput.schema.ts -const __makeSchema_JobListingLocationWhereInput_schema = () => z.object({ - AND: z.union([JobListingLocationWhereInputObjectSchema, JobListingLocationWhereInputObjectSchema.array()]).optional(), - get OR(){ return JobListingLocationWhereInputObjectSchema.array().optional(); }, - NOT: z.union([JobListingLocationWhereInputObjectSchema, JobListingLocationWhereInputObjectSchema.array()]).optional(), - name: z.union([StringFilterObjectSchema, z.string()]).optional(), - createdAt: z.union([DateTimeFilterObjectSchema, z.coerce.date()]).optional(), - jobListingId: z.union([StringFilterObjectSchema, z.string()]).optional(), - jobListing: z.union([JobListingScalarRelationFilterObjectSchema, JobListingWhereInputObjectSchema]).optional() -}).strict(); -export const JobListingLocationWhereInputObjectSchema: z.ZodType = z.lazy(__makeSchema_JobListingLocationWhereInput_schema) as unknown as z.ZodType; -export const JobListingLocationWhereInputObjectZodSchema = z.lazy(__makeSchema_JobListingLocationWhereInput_schema); - - -// File: JobListingLocationOrderByWithRelationInput.schema.ts -const __makeSchema_JobListingLocationOrderByWithRelationInput_schema = () => z.object({ - name: SortOrderSchema.optional(), - createdAt: SortOrderSchema.optional(), - jobListingId: SortOrderSchema.optional(), - get jobListing(){ return JobListingOrderByWithRelationInputObjectSchema.optional(); } -}).strict(); -export const JobListingLocationOrderByWithRelationInputObjectSchema: z.ZodType = z.lazy(__makeSchema_JobListingLocationOrderByWithRelationInput_schema) as unknown as z.ZodType; -export const JobListingLocationOrderByWithRelationInputObjectZodSchema = z.lazy(__makeSchema_JobListingLocationOrderByWithRelationInput_schema); - - -// File: JobListingLocationWhereUniqueInput.schema.ts -const __makeSchema_JobListingLocationWhereUniqueInput_schema = () => z.object({ - get name_jobListingId(){ return JobListingLocationNameJobListingIdCompoundUniqueInputObjectSchema.optional(); } -}).strict(); -export const JobListingLocationWhereUniqueInputObjectSchema: z.ZodType = z.lazy(__makeSchema_JobListingLocationWhereUniqueInput_schema) as unknown as z.ZodType; -export const JobListingLocationWhereUniqueInputObjectZodSchema = z.lazy(__makeSchema_JobListingLocationWhereUniqueInput_schema); - - -// File: JobListingLocationOrderByWithAggregationInput.schema.ts -const __makeSchema_JobListingLocationOrderByWithAggregationInput_schema = () => z.object({ - name: SortOrderSchema.optional(), - createdAt: SortOrderSchema.optional(), - jobListingId: SortOrderSchema.optional(), - get _count(){ return JobListingLocationCountOrderByAggregateInputObjectSchema.optional(); }, - get _max(){ return JobListingLocationMaxOrderByAggregateInputObjectSchema.optional(); }, - get _min(){ return JobListingLocationMinOrderByAggregateInputObjectSchema.optional(); } -}).strict(); -export const JobListingLocationOrderByWithAggregationInputObjectSchema: z.ZodType = z.lazy(__makeSchema_JobListingLocationOrderByWithAggregationInput_schema) as unknown as z.ZodType; -export const JobListingLocationOrderByWithAggregationInputObjectZodSchema = z.lazy(__makeSchema_JobListingLocationOrderByWithAggregationInput_schema); - - -// File: JobListingLocationScalarWhereWithAggregatesInput.schema.ts -const __makeSchema_JobListingLocationScalarWhereWithAggregatesInput_schema = () => z.object({ - AND: z.union([JobListingLocationScalarWhereWithAggregatesInputObjectSchema, JobListingLocationScalarWhereWithAggregatesInputObjectSchema.array()]).optional(), - get OR(){ return JobListingLocationScalarWhereWithAggregatesInputObjectSchema.array().optional(); }, - NOT: z.union([JobListingLocationScalarWhereWithAggregatesInputObjectSchema, JobListingLocationScalarWhereWithAggregatesInputObjectSchema.array()]).optional(), - name: z.union([StringWithAggregatesFilterObjectSchema, z.string()]).optional(), - createdAt: z.union([DateTimeWithAggregatesFilterObjectSchema, z.coerce.date()]).optional(), - jobListingId: z.union([StringWithAggregatesFilterObjectSchema, z.string()]).optional() -}).strict(); -export const JobListingLocationScalarWhereWithAggregatesInputObjectSchema: z.ZodType = z.lazy(__makeSchema_JobListingLocationScalarWhereWithAggregatesInput_schema) as unknown as z.ZodType; -export const JobListingLocationScalarWhereWithAggregatesInputObjectZodSchema = z.lazy(__makeSchema_JobListingLocationScalarWhereWithAggregatesInput_schema); - - -// File: OfflineWhereInput.schema.ts -const __makeSchema_OfflineWhereInput_schema = () => z.object({ - AND: z.union([OfflineWhereInputObjectSchema, OfflineWhereInputObjectSchema.array()]).optional(), - get OR(){ return OfflineWhereInputObjectSchema.array().optional(); }, - NOT: z.union([OfflineWhereInputObjectSchema, OfflineWhereInputObjectSchema.array()]).optional(), - id: z.union([StringFilterObjectSchema, z.string()]).optional(), - title: z.union([StringFilterObjectSchema, z.string()]).optional(), - fileUrl: z.union([StringNullableFilterObjectSchema, z.string()]).optional().nullable(), - imageUrl: z.union([StringNullableFilterObjectSchema, z.string()]).optional().nullable(), - publishedAt: z.union([DateTimeFilterObjectSchema, z.coerce.date()]).optional(), - createdAt: z.union([DateTimeFilterObjectSchema, z.coerce.date()]).optional(), - updatedAt: z.union([DateTimeFilterObjectSchema, z.coerce.date()]).optional() -}).strict(); -export const OfflineWhereInputObjectSchema: z.ZodType = z.lazy(__makeSchema_OfflineWhereInput_schema) as unknown as z.ZodType; -export const OfflineWhereInputObjectZodSchema = z.lazy(__makeSchema_OfflineWhereInput_schema); - - -// File: OfflineOrderByWithRelationInput.schema.ts -const __makeSchema_OfflineOrderByWithRelationInput_schema = () => z.object({ - id: SortOrderSchema.optional(), - title: SortOrderSchema.optional(), - fileUrl: z.union([SortOrderSchema, SortOrderInputObjectSchema]).optional(), - imageUrl: z.union([SortOrderSchema, SortOrderInputObjectSchema]).optional(), - publishedAt: SortOrderSchema.optional(), - createdAt: SortOrderSchema.optional(), - updatedAt: SortOrderSchema.optional() -}).strict(); -export const OfflineOrderByWithRelationInputObjectSchema: z.ZodType = z.lazy(__makeSchema_OfflineOrderByWithRelationInput_schema) as unknown as z.ZodType; -export const OfflineOrderByWithRelationInputObjectZodSchema = z.lazy(__makeSchema_OfflineOrderByWithRelationInput_schema); - - -// File: OfflineWhereUniqueInput.schema.ts -const __makeSchema_OfflineWhereUniqueInput_schema = () => z.object({ - id: z.string().optional() -}).strict(); -export const OfflineWhereUniqueInputObjectSchema: z.ZodType = z.lazy(__makeSchema_OfflineWhereUniqueInput_schema) as unknown as z.ZodType; -export const OfflineWhereUniqueInputObjectZodSchema = z.lazy(__makeSchema_OfflineWhereUniqueInput_schema); - - -// File: OfflineOrderByWithAggregationInput.schema.ts -const __makeSchema_OfflineOrderByWithAggregationInput_schema = () => z.object({ - id: SortOrderSchema.optional(), - title: SortOrderSchema.optional(), - fileUrl: z.union([SortOrderSchema, SortOrderInputObjectSchema]).optional(), - imageUrl: z.union([SortOrderSchema, SortOrderInputObjectSchema]).optional(), - publishedAt: SortOrderSchema.optional(), - createdAt: SortOrderSchema.optional(), - updatedAt: SortOrderSchema.optional(), - get _count(){ return OfflineCountOrderByAggregateInputObjectSchema.optional(); }, - get _max(){ return OfflineMaxOrderByAggregateInputObjectSchema.optional(); }, - get _min(){ return OfflineMinOrderByAggregateInputObjectSchema.optional(); } -}).strict(); -export const OfflineOrderByWithAggregationInputObjectSchema: z.ZodType = z.lazy(__makeSchema_OfflineOrderByWithAggregationInput_schema) as unknown as z.ZodType; -export const OfflineOrderByWithAggregationInputObjectZodSchema = z.lazy(__makeSchema_OfflineOrderByWithAggregationInput_schema); - - -// File: OfflineScalarWhereWithAggregatesInput.schema.ts -const __makeSchema_OfflineScalarWhereWithAggregatesInput_schema = () => z.object({ - AND: z.union([OfflineScalarWhereWithAggregatesInputObjectSchema, OfflineScalarWhereWithAggregatesInputObjectSchema.array()]).optional(), - get OR(){ return OfflineScalarWhereWithAggregatesInputObjectSchema.array().optional(); }, - NOT: z.union([OfflineScalarWhereWithAggregatesInputObjectSchema, OfflineScalarWhereWithAggregatesInputObjectSchema.array()]).optional(), - id: z.union([StringWithAggregatesFilterObjectSchema, z.string()]).optional(), - title: z.union([StringWithAggregatesFilterObjectSchema, z.string()]).optional(), - fileUrl: z.union([StringNullableWithAggregatesFilterObjectSchema, z.string()]).optional().nullable(), - imageUrl: z.union([StringNullableWithAggregatesFilterObjectSchema, z.string()]).optional().nullable(), - publishedAt: z.union([DateTimeWithAggregatesFilterObjectSchema, z.coerce.date()]).optional(), - createdAt: z.union([DateTimeWithAggregatesFilterObjectSchema, z.coerce.date()]).optional(), - updatedAt: z.union([DateTimeWithAggregatesFilterObjectSchema, z.coerce.date()]).optional() -}).strict(); -export const OfflineScalarWhereWithAggregatesInputObjectSchema: z.ZodType = z.lazy(__makeSchema_OfflineScalarWhereWithAggregatesInput_schema) as unknown as z.ZodType; -export const OfflineScalarWhereWithAggregatesInputObjectZodSchema = z.lazy(__makeSchema_OfflineScalarWhereWithAggregatesInput_schema); - - -// File: ArticleWhereInput.schema.ts -const __makeSchema_ArticleWhereInput_schema = () => z.object({ - AND: z.union([ArticleWhereInputObjectSchema, ArticleWhereInputObjectSchema.array()]).optional(), - get OR(){ return ArticleWhereInputObjectSchema.array().optional(); }, - NOT: z.union([ArticleWhereInputObjectSchema, ArticleWhereInputObjectSchema.array()]).optional(), - id: z.union([StringFilterObjectSchema, z.string()]).optional(), - slug: z.union([StringFilterObjectSchema, z.string()]).optional(), - title: z.union([StringFilterObjectSchema, z.string()]).optional(), - author: z.union([StringFilterObjectSchema, z.string()]).optional(), - photographer: z.union([StringFilterObjectSchema, z.string()]).optional(), - imageUrl: z.union([StringFilterObjectSchema, z.string()]).optional(), - excerpt: z.union([StringFilterObjectSchema, z.string()]).optional(), - content: z.union([StringFilterObjectSchema, z.string()]).optional(), - isFeatured: z.union([BoolFilterObjectSchema, z.boolean()]).optional(), - vimeoId: z.union([StringNullableFilterObjectSchema, z.string()]).optional().nullable(), - createdAt: z.union([DateTimeFilterObjectSchema, z.coerce.date()]).optional(), - updatedAt: z.union([DateTimeFilterObjectSchema, z.coerce.date()]).optional(), - get tags(){ return ArticleTagLinkListRelationFilterObjectSchema.optional(); } -}).strict(); -export const ArticleWhereInputObjectSchema: z.ZodType = z.lazy(__makeSchema_ArticleWhereInput_schema) as unknown as z.ZodType; -export const ArticleWhereInputObjectZodSchema = z.lazy(__makeSchema_ArticleWhereInput_schema); - - -// File: ArticleOrderByWithRelationInput.schema.ts -const __makeSchema_ArticleOrderByWithRelationInput_schema = () => z.object({ - id: SortOrderSchema.optional(), - slug: SortOrderSchema.optional(), - title: SortOrderSchema.optional(), - author: SortOrderSchema.optional(), - photographer: SortOrderSchema.optional(), - imageUrl: SortOrderSchema.optional(), - excerpt: SortOrderSchema.optional(), - content: SortOrderSchema.optional(), - isFeatured: SortOrderSchema.optional(), - vimeoId: z.union([SortOrderSchema, SortOrderInputObjectSchema]).optional(), - createdAt: SortOrderSchema.optional(), - updatedAt: SortOrderSchema.optional(), - get tags(){ return ArticleTagLinkOrderByRelationAggregateInputObjectSchema.optional(); } -}).strict(); -export const ArticleOrderByWithRelationInputObjectSchema: z.ZodType = z.lazy(__makeSchema_ArticleOrderByWithRelationInput_schema) as unknown as z.ZodType; -export const ArticleOrderByWithRelationInputObjectZodSchema = z.lazy(__makeSchema_ArticleOrderByWithRelationInput_schema); - - -// File: ArticleWhereUniqueInput.schema.ts -const __makeSchema_ArticleWhereUniqueInput_schema = () => z.object({ - id: z.string().optional(), - slug: z.string().optional() -}).strict(); -export const ArticleWhereUniqueInputObjectSchema: z.ZodType = z.lazy(__makeSchema_ArticleWhereUniqueInput_schema) as unknown as z.ZodType; -export const ArticleWhereUniqueInputObjectZodSchema = z.lazy(__makeSchema_ArticleWhereUniqueInput_schema); - - -// File: ArticleOrderByWithAggregationInput.schema.ts -const __makeSchema_ArticleOrderByWithAggregationInput_schema = () => z.object({ - id: SortOrderSchema.optional(), - slug: SortOrderSchema.optional(), - title: SortOrderSchema.optional(), - author: SortOrderSchema.optional(), - photographer: SortOrderSchema.optional(), - imageUrl: SortOrderSchema.optional(), - excerpt: SortOrderSchema.optional(), - content: SortOrderSchema.optional(), - isFeatured: SortOrderSchema.optional(), - vimeoId: z.union([SortOrderSchema, SortOrderInputObjectSchema]).optional(), - createdAt: SortOrderSchema.optional(), - updatedAt: SortOrderSchema.optional(), - get _count(){ return ArticleCountOrderByAggregateInputObjectSchema.optional(); }, - get _max(){ return ArticleMaxOrderByAggregateInputObjectSchema.optional(); }, - get _min(){ return ArticleMinOrderByAggregateInputObjectSchema.optional(); } -}).strict(); -export const ArticleOrderByWithAggregationInputObjectSchema: z.ZodType = z.lazy(__makeSchema_ArticleOrderByWithAggregationInput_schema) as unknown as z.ZodType; -export const ArticleOrderByWithAggregationInputObjectZodSchema = z.lazy(__makeSchema_ArticleOrderByWithAggregationInput_schema); - - -// File: ArticleScalarWhereWithAggregatesInput.schema.ts -const __makeSchema_ArticleScalarWhereWithAggregatesInput_schema = () => z.object({ - AND: z.union([ArticleScalarWhereWithAggregatesInputObjectSchema, ArticleScalarWhereWithAggregatesInputObjectSchema.array()]).optional(), - get OR(){ return ArticleScalarWhereWithAggregatesInputObjectSchema.array().optional(); }, - NOT: z.union([ArticleScalarWhereWithAggregatesInputObjectSchema, ArticleScalarWhereWithAggregatesInputObjectSchema.array()]).optional(), - id: z.union([StringWithAggregatesFilterObjectSchema, z.string()]).optional(), - slug: z.union([StringWithAggregatesFilterObjectSchema, z.string()]).optional(), - title: z.union([StringWithAggregatesFilterObjectSchema, z.string()]).optional(), - author: z.union([StringWithAggregatesFilterObjectSchema, z.string()]).optional(), - photographer: z.union([StringWithAggregatesFilterObjectSchema, z.string()]).optional(), - imageUrl: z.union([StringWithAggregatesFilterObjectSchema, z.string()]).optional(), - excerpt: z.union([StringWithAggregatesFilterObjectSchema, z.string()]).optional(), - content: z.union([StringWithAggregatesFilterObjectSchema, z.string()]).optional(), - isFeatured: z.union([BoolWithAggregatesFilterObjectSchema, z.boolean()]).optional(), - vimeoId: z.union([StringNullableWithAggregatesFilterObjectSchema, z.string()]).optional().nullable(), - createdAt: z.union([DateTimeWithAggregatesFilterObjectSchema, z.coerce.date()]).optional(), - updatedAt: z.union([DateTimeWithAggregatesFilterObjectSchema, z.coerce.date()]).optional() -}).strict(); -export const ArticleScalarWhereWithAggregatesInputObjectSchema: z.ZodType = z.lazy(__makeSchema_ArticleScalarWhereWithAggregatesInput_schema) as unknown as z.ZodType; -export const ArticleScalarWhereWithAggregatesInputObjectZodSchema = z.lazy(__makeSchema_ArticleScalarWhereWithAggregatesInput_schema); - - -// File: ArticleTagWhereInput.schema.ts -const __makeSchema_ArticleTagWhereInput_schema = () => z.object({ - AND: z.union([ArticleTagWhereInputObjectSchema, ArticleTagWhereInputObjectSchema.array()]).optional(), - get OR(){ return ArticleTagWhereInputObjectSchema.array().optional(); }, - NOT: z.union([ArticleTagWhereInputObjectSchema, ArticleTagWhereInputObjectSchema.array()]).optional(), - name: z.union([StringFilterObjectSchema, z.string()]).optional(), - get articles(){ return ArticleTagLinkListRelationFilterObjectSchema.optional(); } -}).strict(); -export const ArticleTagWhereInputObjectSchema: z.ZodType = z.lazy(__makeSchema_ArticleTagWhereInput_schema) as unknown as z.ZodType; -export const ArticleTagWhereInputObjectZodSchema = z.lazy(__makeSchema_ArticleTagWhereInput_schema); - - -// File: ArticleTagOrderByWithRelationInput.schema.ts -const __makeSchema_ArticleTagOrderByWithRelationInput_schema = () => z.object({ - name: SortOrderSchema.optional(), - get articles(){ return ArticleTagLinkOrderByRelationAggregateInputObjectSchema.optional(); } -}).strict(); -export const ArticleTagOrderByWithRelationInputObjectSchema: z.ZodType = z.lazy(__makeSchema_ArticleTagOrderByWithRelationInput_schema) as unknown as z.ZodType; -export const ArticleTagOrderByWithRelationInputObjectZodSchema = z.lazy(__makeSchema_ArticleTagOrderByWithRelationInput_schema); - - -// File: ArticleTagWhereUniqueInput.schema.ts -const __makeSchema_ArticleTagWhereUniqueInput_schema = () => z.object({ - name: z.string().optional() -}).strict(); -export const ArticleTagWhereUniqueInputObjectSchema: z.ZodType = z.lazy(__makeSchema_ArticleTagWhereUniqueInput_schema) as unknown as z.ZodType; -export const ArticleTagWhereUniqueInputObjectZodSchema = z.lazy(__makeSchema_ArticleTagWhereUniqueInput_schema); - - -// File: ArticleTagOrderByWithAggregationInput.schema.ts -const __makeSchema_ArticleTagOrderByWithAggregationInput_schema = () => z.object({ - name: SortOrderSchema.optional(), - get _count(){ return ArticleTagCountOrderByAggregateInputObjectSchema.optional(); }, - get _max(){ return ArticleTagMaxOrderByAggregateInputObjectSchema.optional(); }, - get _min(){ return ArticleTagMinOrderByAggregateInputObjectSchema.optional(); } -}).strict(); -export const ArticleTagOrderByWithAggregationInputObjectSchema: z.ZodType = z.lazy(__makeSchema_ArticleTagOrderByWithAggregationInput_schema) as unknown as z.ZodType; -export const ArticleTagOrderByWithAggregationInputObjectZodSchema = z.lazy(__makeSchema_ArticleTagOrderByWithAggregationInput_schema); - - -// File: ArticleTagScalarWhereWithAggregatesInput.schema.ts -const __makeSchema_ArticleTagScalarWhereWithAggregatesInput_schema = () => z.object({ - AND: z.union([ArticleTagScalarWhereWithAggregatesInputObjectSchema, ArticleTagScalarWhereWithAggregatesInputObjectSchema.array()]).optional(), - get OR(){ return ArticleTagScalarWhereWithAggregatesInputObjectSchema.array().optional(); }, - NOT: z.union([ArticleTagScalarWhereWithAggregatesInputObjectSchema, ArticleTagScalarWhereWithAggregatesInputObjectSchema.array()]).optional(), - name: z.union([StringWithAggregatesFilterObjectSchema, z.string()]).optional() -}).strict(); -export const ArticleTagScalarWhereWithAggregatesInputObjectSchema: z.ZodType = z.lazy(__makeSchema_ArticleTagScalarWhereWithAggregatesInput_schema) as unknown as z.ZodType; -export const ArticleTagScalarWhereWithAggregatesInputObjectZodSchema = z.lazy(__makeSchema_ArticleTagScalarWhereWithAggregatesInput_schema); - - -// File: ArticleTagLinkWhereInput.schema.ts -const __makeSchema_ArticleTagLinkWhereInput_schema = () => z.object({ - AND: z.union([ArticleTagLinkWhereInputObjectSchema, ArticleTagLinkWhereInputObjectSchema.array()]).optional(), - get OR(){ return ArticleTagLinkWhereInputObjectSchema.array().optional(); }, - NOT: z.union([ArticleTagLinkWhereInputObjectSchema, ArticleTagLinkWhereInputObjectSchema.array()]).optional(), - articleId: z.union([StringFilterObjectSchema, z.string()]).optional(), - tagName: z.union([StringFilterObjectSchema, z.string()]).optional(), - article: z.union([ArticleScalarRelationFilterObjectSchema, ArticleWhereInputObjectSchema]).optional(), - tag: z.union([ArticleTagScalarRelationFilterObjectSchema, ArticleTagWhereInputObjectSchema]).optional() -}).strict(); -export const ArticleTagLinkWhereInputObjectSchema: z.ZodType = z.lazy(__makeSchema_ArticleTagLinkWhereInput_schema) as unknown as z.ZodType; -export const ArticleTagLinkWhereInputObjectZodSchema = z.lazy(__makeSchema_ArticleTagLinkWhereInput_schema); - - -// File: ArticleTagLinkOrderByWithRelationInput.schema.ts -const __makeSchema_ArticleTagLinkOrderByWithRelationInput_schema = () => z.object({ - articleId: SortOrderSchema.optional(), - tagName: SortOrderSchema.optional(), - get article(){ return ArticleOrderByWithRelationInputObjectSchema.optional(); }, - get tag(){ return ArticleTagOrderByWithRelationInputObjectSchema.optional(); } -}).strict(); -export const ArticleTagLinkOrderByWithRelationInputObjectSchema: z.ZodType = z.lazy(__makeSchema_ArticleTagLinkOrderByWithRelationInput_schema) as unknown as z.ZodType; -export const ArticleTagLinkOrderByWithRelationInputObjectZodSchema = z.lazy(__makeSchema_ArticleTagLinkOrderByWithRelationInput_schema); - - -// File: ArticleTagLinkWhereUniqueInput.schema.ts -const __makeSchema_ArticleTagLinkWhereUniqueInput_schema = () => z.object({ - get articleId_tagName(){ return ArticleTagLinkArticleIdTagNameCompoundUniqueInputObjectSchema.optional(); } -}).strict(); -export const ArticleTagLinkWhereUniqueInputObjectSchema: z.ZodType = z.lazy(__makeSchema_ArticleTagLinkWhereUniqueInput_schema) as unknown as z.ZodType; -export const ArticleTagLinkWhereUniqueInputObjectZodSchema = z.lazy(__makeSchema_ArticleTagLinkWhereUniqueInput_schema); - - -// File: ArticleTagLinkOrderByWithAggregationInput.schema.ts -const __makeSchema_ArticleTagLinkOrderByWithAggregationInput_schema = () => z.object({ - articleId: SortOrderSchema.optional(), - tagName: SortOrderSchema.optional(), - get _count(){ return ArticleTagLinkCountOrderByAggregateInputObjectSchema.optional(); }, - get _max(){ return ArticleTagLinkMaxOrderByAggregateInputObjectSchema.optional(); }, - get _min(){ return ArticleTagLinkMinOrderByAggregateInputObjectSchema.optional(); } -}).strict(); -export const ArticleTagLinkOrderByWithAggregationInputObjectSchema: z.ZodType = z.lazy(__makeSchema_ArticleTagLinkOrderByWithAggregationInput_schema) as unknown as z.ZodType; -export const ArticleTagLinkOrderByWithAggregationInputObjectZodSchema = z.lazy(__makeSchema_ArticleTagLinkOrderByWithAggregationInput_schema); - - -// File: ArticleTagLinkScalarWhereWithAggregatesInput.schema.ts -const __makeSchema_ArticleTagLinkScalarWhereWithAggregatesInput_schema = () => z.object({ - AND: z.union([ArticleTagLinkScalarWhereWithAggregatesInputObjectSchema, ArticleTagLinkScalarWhereWithAggregatesInputObjectSchema.array()]).optional(), - get OR(){ return ArticleTagLinkScalarWhereWithAggregatesInputObjectSchema.array().optional(); }, - NOT: z.union([ArticleTagLinkScalarWhereWithAggregatesInputObjectSchema, ArticleTagLinkScalarWhereWithAggregatesInputObjectSchema.array()]).optional(), - articleId: z.union([StringWithAggregatesFilterObjectSchema, z.string()]).optional(), - tagName: z.union([StringWithAggregatesFilterObjectSchema, z.string()]).optional() -}).strict(); -export const ArticleTagLinkScalarWhereWithAggregatesInputObjectSchema: z.ZodType = z.lazy(__makeSchema_ArticleTagLinkScalarWhereWithAggregatesInput_schema) as unknown as z.ZodType; -export const ArticleTagLinkScalarWhereWithAggregatesInputObjectZodSchema = z.lazy(__makeSchema_ArticleTagLinkScalarWhereWithAggregatesInput_schema); - - -// File: TaskWhereInput.schema.ts -const __makeSchema_TaskWhereInput_schema = () => z.object({ - AND: z.union([TaskWhereInputObjectSchema, TaskWhereInputObjectSchema.array()]).optional(), - get OR(){ return TaskWhereInputObjectSchema.array().optional(); }, - NOT: z.union([TaskWhereInputObjectSchema, TaskWhereInputObjectSchema.array()]).optional(), - id: z.union([StringFilterObjectSchema, z.string()]).optional(), - type: z.union([EnumTaskTypeFilterObjectSchema, TaskTypeSchema]).optional(), - status: z.union([EnumTaskStatusFilterObjectSchema, TaskStatusSchema]).optional(), - get payload(){ return JsonFilterObjectSchema.optional(); }, - createdAt: z.union([DateTimeFilterObjectSchema, z.coerce.date()]).optional(), - scheduledAt: z.union([DateTimeFilterObjectSchema, z.coerce.date()]).optional(), - processedAt: z.union([DateTimeNullableFilterObjectSchema, z.coerce.date()]).optional().nullable(), - recurringTaskId: z.union([StringNullableFilterObjectSchema, z.string()]).optional().nullable(), - recurringTask: z.union([RecurringTaskNullableScalarRelationFilterObjectSchema, RecurringTaskWhereInputObjectSchema]).optional(), - get attendancePools(){ return AttendancePoolListRelationFilterObjectSchema.optional(); }, - get notifications(){ return NotificationListRelationFilterObjectSchema.optional(); } -}).strict(); -export const TaskWhereInputObjectSchema: z.ZodType = z.lazy(__makeSchema_TaskWhereInput_schema) as unknown as z.ZodType; -export const TaskWhereInputObjectZodSchema = z.lazy(__makeSchema_TaskWhereInput_schema); - - -// File: TaskOrderByWithRelationInput.schema.ts -const __makeSchema_TaskOrderByWithRelationInput_schema = () => z.object({ - id: SortOrderSchema.optional(), - type: SortOrderSchema.optional(), - status: SortOrderSchema.optional(), - payload: SortOrderSchema.optional(), - createdAt: SortOrderSchema.optional(), - scheduledAt: SortOrderSchema.optional(), - processedAt: z.union([SortOrderSchema, SortOrderInputObjectSchema]).optional(), - recurringTaskId: z.union([SortOrderSchema, SortOrderInputObjectSchema]).optional(), - get recurringTask(){ return RecurringTaskOrderByWithRelationInputObjectSchema.optional(); }, - get attendancePools(){ return AttendancePoolOrderByRelationAggregateInputObjectSchema.optional(); }, - get notifications(){ return NotificationOrderByRelationAggregateInputObjectSchema.optional(); } -}).strict(); -export const TaskOrderByWithRelationInputObjectSchema: z.ZodType = z.lazy(__makeSchema_TaskOrderByWithRelationInput_schema) as unknown as z.ZodType; -export const TaskOrderByWithRelationInputObjectZodSchema = z.lazy(__makeSchema_TaskOrderByWithRelationInput_schema); - - -// File: TaskWhereUniqueInput.schema.ts -const __makeSchema_TaskWhereUniqueInput_schema = () => z.object({ - id: z.string().optional() -}).strict(); -export const TaskWhereUniqueInputObjectSchema: z.ZodType = z.lazy(__makeSchema_TaskWhereUniqueInput_schema) as unknown as z.ZodType; -export const TaskWhereUniqueInputObjectZodSchema = z.lazy(__makeSchema_TaskWhereUniqueInput_schema); - - -// File: TaskOrderByWithAggregationInput.schema.ts -const __makeSchema_TaskOrderByWithAggregationInput_schema = () => z.object({ - id: SortOrderSchema.optional(), - type: SortOrderSchema.optional(), - status: SortOrderSchema.optional(), - payload: SortOrderSchema.optional(), - createdAt: SortOrderSchema.optional(), - scheduledAt: SortOrderSchema.optional(), - processedAt: z.union([SortOrderSchema, SortOrderInputObjectSchema]).optional(), - recurringTaskId: z.union([SortOrderSchema, SortOrderInputObjectSchema]).optional(), - get _count(){ return TaskCountOrderByAggregateInputObjectSchema.optional(); }, - get _max(){ return TaskMaxOrderByAggregateInputObjectSchema.optional(); }, - get _min(){ return TaskMinOrderByAggregateInputObjectSchema.optional(); } -}).strict(); -export const TaskOrderByWithAggregationInputObjectSchema: z.ZodType = z.lazy(__makeSchema_TaskOrderByWithAggregationInput_schema) as unknown as z.ZodType; -export const TaskOrderByWithAggregationInputObjectZodSchema = z.lazy(__makeSchema_TaskOrderByWithAggregationInput_schema); - - -// File: TaskScalarWhereWithAggregatesInput.schema.ts -const __makeSchema_TaskScalarWhereWithAggregatesInput_schema = () => z.object({ - AND: z.union([TaskScalarWhereWithAggregatesInputObjectSchema, TaskScalarWhereWithAggregatesInputObjectSchema.array()]).optional(), - get OR(){ return TaskScalarWhereWithAggregatesInputObjectSchema.array().optional(); }, - NOT: z.union([TaskScalarWhereWithAggregatesInputObjectSchema, TaskScalarWhereWithAggregatesInputObjectSchema.array()]).optional(), - id: z.union([StringWithAggregatesFilterObjectSchema, z.string()]).optional(), - type: z.union([EnumTaskTypeWithAggregatesFilterObjectSchema, TaskTypeSchema]).optional(), - status: z.union([EnumTaskStatusWithAggregatesFilterObjectSchema, TaskStatusSchema]).optional(), - get payload(){ return JsonWithAggregatesFilterObjectSchema.optional(); }, - createdAt: z.union([DateTimeWithAggregatesFilterObjectSchema, z.coerce.date()]).optional(), - scheduledAt: z.union([DateTimeWithAggregatesFilterObjectSchema, z.coerce.date()]).optional(), - processedAt: z.union([DateTimeNullableWithAggregatesFilterObjectSchema, z.coerce.date()]).optional().nullable(), - recurringTaskId: z.union([StringNullableWithAggregatesFilterObjectSchema, z.string()]).optional().nullable() -}).strict(); -export const TaskScalarWhereWithAggregatesInputObjectSchema: z.ZodType = z.lazy(__makeSchema_TaskScalarWhereWithAggregatesInput_schema) as unknown as z.ZodType; -export const TaskScalarWhereWithAggregatesInputObjectZodSchema = z.lazy(__makeSchema_TaskScalarWhereWithAggregatesInput_schema); - - -// File: RecurringTaskWhereInput.schema.ts -const __makeSchema_RecurringTaskWhereInput_schema = () => z.object({ - AND: z.union([RecurringTaskWhereInputObjectSchema, RecurringTaskWhereInputObjectSchema.array()]).optional(), - get OR(){ return RecurringTaskWhereInputObjectSchema.array().optional(); }, - NOT: z.union([RecurringTaskWhereInputObjectSchema, RecurringTaskWhereInputObjectSchema.array()]).optional(), - id: z.union([StringFilterObjectSchema, z.string()]).optional(), - type: z.union([EnumTaskTypeFilterObjectSchema, TaskTypeSchema]).optional(), - get payload(){ return JsonFilterObjectSchema.optional(); }, - createdAt: z.union([DateTimeFilterObjectSchema, z.coerce.date()]).optional(), - schedule: z.union([StringFilterObjectSchema, z.string()]).optional(), - lastRunAt: z.union([DateTimeNullableFilterObjectSchema, z.coerce.date()]).optional().nullable(), - nextRunAt: z.union([DateTimeFilterObjectSchema, z.coerce.date()]).optional(), - get tasks(){ return TaskListRelationFilterObjectSchema.optional(); } -}).strict(); -export const RecurringTaskWhereInputObjectSchema: z.ZodType = z.lazy(__makeSchema_RecurringTaskWhereInput_schema) as unknown as z.ZodType; -export const RecurringTaskWhereInputObjectZodSchema = z.lazy(__makeSchema_RecurringTaskWhereInput_schema); - - -// File: RecurringTaskOrderByWithRelationInput.schema.ts -const __makeSchema_RecurringTaskOrderByWithRelationInput_schema = () => z.object({ - id: SortOrderSchema.optional(), - type: SortOrderSchema.optional(), - payload: SortOrderSchema.optional(), - createdAt: SortOrderSchema.optional(), - schedule: SortOrderSchema.optional(), - lastRunAt: z.union([SortOrderSchema, SortOrderInputObjectSchema]).optional(), - nextRunAt: SortOrderSchema.optional(), - get tasks(){ return TaskOrderByRelationAggregateInputObjectSchema.optional(); } -}).strict(); -export const RecurringTaskOrderByWithRelationInputObjectSchema: z.ZodType = z.lazy(__makeSchema_RecurringTaskOrderByWithRelationInput_schema) as unknown as z.ZodType; -export const RecurringTaskOrderByWithRelationInputObjectZodSchema = z.lazy(__makeSchema_RecurringTaskOrderByWithRelationInput_schema); - - -// File: RecurringTaskWhereUniqueInput.schema.ts -const __makeSchema_RecurringTaskWhereUniqueInput_schema = () => z.object({ - id: z.string().optional() -}).strict(); -export const RecurringTaskWhereUniqueInputObjectSchema: z.ZodType = z.lazy(__makeSchema_RecurringTaskWhereUniqueInput_schema) as unknown as z.ZodType; -export const RecurringTaskWhereUniqueInputObjectZodSchema = z.lazy(__makeSchema_RecurringTaskWhereUniqueInput_schema); - - -// File: RecurringTaskOrderByWithAggregationInput.schema.ts -const __makeSchema_RecurringTaskOrderByWithAggregationInput_schema = () => z.object({ - id: SortOrderSchema.optional(), - type: SortOrderSchema.optional(), - payload: SortOrderSchema.optional(), - createdAt: SortOrderSchema.optional(), - schedule: SortOrderSchema.optional(), - lastRunAt: z.union([SortOrderSchema, SortOrderInputObjectSchema]).optional(), - nextRunAt: SortOrderSchema.optional(), - get _count(){ return RecurringTaskCountOrderByAggregateInputObjectSchema.optional(); }, - get _max(){ return RecurringTaskMaxOrderByAggregateInputObjectSchema.optional(); }, - get _min(){ return RecurringTaskMinOrderByAggregateInputObjectSchema.optional(); } -}).strict(); -export const RecurringTaskOrderByWithAggregationInputObjectSchema: z.ZodType = z.lazy(__makeSchema_RecurringTaskOrderByWithAggregationInput_schema) as unknown as z.ZodType; -export const RecurringTaskOrderByWithAggregationInputObjectZodSchema = z.lazy(__makeSchema_RecurringTaskOrderByWithAggregationInput_schema); - - -// File: RecurringTaskScalarWhereWithAggregatesInput.schema.ts -const __makeSchema_RecurringTaskScalarWhereWithAggregatesInput_schema = () => z.object({ - AND: z.union([RecurringTaskScalarWhereWithAggregatesInputObjectSchema, RecurringTaskScalarWhereWithAggregatesInputObjectSchema.array()]).optional(), - get OR(){ return RecurringTaskScalarWhereWithAggregatesInputObjectSchema.array().optional(); }, - NOT: z.union([RecurringTaskScalarWhereWithAggregatesInputObjectSchema, RecurringTaskScalarWhereWithAggregatesInputObjectSchema.array()]).optional(), - id: z.union([StringWithAggregatesFilterObjectSchema, z.string()]).optional(), - type: z.union([EnumTaskTypeWithAggregatesFilterObjectSchema, TaskTypeSchema]).optional(), - get payload(){ return JsonWithAggregatesFilterObjectSchema.optional(); }, - createdAt: z.union([DateTimeWithAggregatesFilterObjectSchema, z.coerce.date()]).optional(), - schedule: z.union([StringWithAggregatesFilterObjectSchema, z.string()]).optional(), - lastRunAt: z.union([DateTimeNullableWithAggregatesFilterObjectSchema, z.coerce.date()]).optional().nullable(), - nextRunAt: z.union([DateTimeWithAggregatesFilterObjectSchema, z.coerce.date()]).optional() -}).strict(); -export const RecurringTaskScalarWhereWithAggregatesInputObjectSchema: z.ZodType = z.lazy(__makeSchema_RecurringTaskScalarWhereWithAggregatesInput_schema) as unknown as z.ZodType; -export const RecurringTaskScalarWhereWithAggregatesInputObjectZodSchema = z.lazy(__makeSchema_RecurringTaskScalarWhereWithAggregatesInput_schema); - - -// File: FeedbackFormWhereInput.schema.ts -const __makeSchema_FeedbackFormWhereInput_schema = () => z.object({ - AND: z.union([FeedbackFormWhereInputObjectSchema, FeedbackFormWhereInputObjectSchema.array()]).optional(), - get OR(){ return FeedbackFormWhereInputObjectSchema.array().optional(); }, - NOT: z.union([FeedbackFormWhereInputObjectSchema, FeedbackFormWhereInputObjectSchema.array()]).optional(), - id: z.union([StringFilterObjectSchema, z.string()]).optional(), - publicResultsToken: z.union([StringFilterObjectSchema, z.string()]).optional(), - createdAt: z.union([DateTimeFilterObjectSchema, z.coerce.date()]).optional(), - updatedAt: z.union([DateTimeFilterObjectSchema, z.coerce.date()]).optional(), - answerDeadline: z.union([DateTimeFilterObjectSchema, z.coerce.date()]).optional(), - eventId: z.union([StringFilterObjectSchema, z.string()]).optional(), - event: z.union([EventScalarRelationFilterObjectSchema, EventWhereInputObjectSchema]).optional(), - get questions(){ return FeedbackQuestionListRelationFilterObjectSchema.optional(); }, - get answers(){ return FeedbackFormAnswerListRelationFilterObjectSchema.optional(); } -}).strict(); -export const FeedbackFormWhereInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackFormWhereInput_schema) as unknown as z.ZodType; -export const FeedbackFormWhereInputObjectZodSchema = z.lazy(__makeSchema_FeedbackFormWhereInput_schema); - - -// File: FeedbackFormOrderByWithRelationInput.schema.ts -const __makeSchema_FeedbackFormOrderByWithRelationInput_schema = () => z.object({ - id: SortOrderSchema.optional(), - publicResultsToken: SortOrderSchema.optional(), - createdAt: SortOrderSchema.optional(), - updatedAt: SortOrderSchema.optional(), - answerDeadline: SortOrderSchema.optional(), - eventId: SortOrderSchema.optional(), - get event(){ return EventOrderByWithRelationInputObjectSchema.optional(); }, - get questions(){ return FeedbackQuestionOrderByRelationAggregateInputObjectSchema.optional(); }, - get answers(){ return FeedbackFormAnswerOrderByRelationAggregateInputObjectSchema.optional(); } -}).strict(); -export const FeedbackFormOrderByWithRelationInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackFormOrderByWithRelationInput_schema) as unknown as z.ZodType; -export const FeedbackFormOrderByWithRelationInputObjectZodSchema = z.lazy(__makeSchema_FeedbackFormOrderByWithRelationInput_schema); - - -// File: FeedbackFormWhereUniqueInput.schema.ts -const __makeSchema_FeedbackFormWhereUniqueInput_schema = () => z.object({ - id: z.string().optional(), - publicResultsToken: z.string().optional(), - eventId: z.string().optional() -}).strict(); -export const FeedbackFormWhereUniqueInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackFormWhereUniqueInput_schema) as unknown as z.ZodType; -export const FeedbackFormWhereUniqueInputObjectZodSchema = z.lazy(__makeSchema_FeedbackFormWhereUniqueInput_schema); - - -// File: FeedbackFormOrderByWithAggregationInput.schema.ts -const __makeSchema_FeedbackFormOrderByWithAggregationInput_schema = () => z.object({ - id: SortOrderSchema.optional(), - publicResultsToken: SortOrderSchema.optional(), - createdAt: SortOrderSchema.optional(), - updatedAt: SortOrderSchema.optional(), - answerDeadline: SortOrderSchema.optional(), - eventId: SortOrderSchema.optional(), - get _count(){ return FeedbackFormCountOrderByAggregateInputObjectSchema.optional(); }, - get _max(){ return FeedbackFormMaxOrderByAggregateInputObjectSchema.optional(); }, - get _min(){ return FeedbackFormMinOrderByAggregateInputObjectSchema.optional(); } -}).strict(); -export const FeedbackFormOrderByWithAggregationInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackFormOrderByWithAggregationInput_schema) as unknown as z.ZodType; -export const FeedbackFormOrderByWithAggregationInputObjectZodSchema = z.lazy(__makeSchema_FeedbackFormOrderByWithAggregationInput_schema); - - -// File: FeedbackFormScalarWhereWithAggregatesInput.schema.ts -const __makeSchema_FeedbackFormScalarWhereWithAggregatesInput_schema = () => z.object({ - AND: z.union([FeedbackFormScalarWhereWithAggregatesInputObjectSchema, FeedbackFormScalarWhereWithAggregatesInputObjectSchema.array()]).optional(), - get OR(){ return FeedbackFormScalarWhereWithAggregatesInputObjectSchema.array().optional(); }, - NOT: z.union([FeedbackFormScalarWhereWithAggregatesInputObjectSchema, FeedbackFormScalarWhereWithAggregatesInputObjectSchema.array()]).optional(), - id: z.union([StringWithAggregatesFilterObjectSchema, z.string()]).optional(), - publicResultsToken: z.union([StringWithAggregatesFilterObjectSchema, z.string()]).optional(), - createdAt: z.union([DateTimeWithAggregatesFilterObjectSchema, z.coerce.date()]).optional(), - updatedAt: z.union([DateTimeWithAggregatesFilterObjectSchema, z.coerce.date()]).optional(), - answerDeadline: z.union([DateTimeWithAggregatesFilterObjectSchema, z.coerce.date()]).optional(), - eventId: z.union([StringWithAggregatesFilterObjectSchema, z.string()]).optional() -}).strict(); -export const FeedbackFormScalarWhereWithAggregatesInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackFormScalarWhereWithAggregatesInput_schema) as unknown as z.ZodType; -export const FeedbackFormScalarWhereWithAggregatesInputObjectZodSchema = z.lazy(__makeSchema_FeedbackFormScalarWhereWithAggregatesInput_schema); - - -// File: FeedbackQuestionWhereInput.schema.ts -const __makeSchema_FeedbackQuestionWhereInput_schema = () => z.object({ - AND: z.union([FeedbackQuestionWhereInputObjectSchema, FeedbackQuestionWhereInputObjectSchema.array()]).optional(), - get OR(){ return FeedbackQuestionWhereInputObjectSchema.array().optional(); }, - NOT: z.union([FeedbackQuestionWhereInputObjectSchema, FeedbackQuestionWhereInputObjectSchema.array()]).optional(), - id: z.union([StringFilterObjectSchema, z.string()]).optional(), - label: z.union([StringFilterObjectSchema, z.string()]).optional(), - required: z.union([BoolFilterObjectSchema, z.boolean()]).optional(), - showInPublicResults: z.union([BoolFilterObjectSchema, z.boolean()]).optional(), - type: z.union([EnumFeedbackQuestionTypeFilterObjectSchema, FeedbackQuestionTypeSchema]).optional(), - order: z.union([IntFilterObjectSchema, z.number().int()]).optional(), - createdAt: z.union([DateTimeFilterObjectSchema, z.coerce.date()]).optional(), - updatedAt: z.union([DateTimeFilterObjectSchema, z.coerce.date()]).optional(), - feedbackFormId: z.union([StringFilterObjectSchema, z.string()]).optional(), - feedbackForm: z.union([FeedbackFormScalarRelationFilterObjectSchema, FeedbackFormWhereInputObjectSchema]).optional(), - get options(){ return FeedbackQuestionOptionListRelationFilterObjectSchema.optional(); }, - get answers(){ return FeedbackQuestionAnswerListRelationFilterObjectSchema.optional(); } -}).strict(); -export const FeedbackQuestionWhereInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackQuestionWhereInput_schema) as unknown as z.ZodType; -export const FeedbackQuestionWhereInputObjectZodSchema = z.lazy(__makeSchema_FeedbackQuestionWhereInput_schema); - - -// File: FeedbackQuestionOrderByWithRelationInput.schema.ts -const __makeSchema_FeedbackQuestionOrderByWithRelationInput_schema = () => z.object({ - id: SortOrderSchema.optional(), - label: SortOrderSchema.optional(), - required: SortOrderSchema.optional(), - showInPublicResults: SortOrderSchema.optional(), - type: SortOrderSchema.optional(), - order: SortOrderSchema.optional(), - createdAt: SortOrderSchema.optional(), - updatedAt: SortOrderSchema.optional(), - feedbackFormId: SortOrderSchema.optional(), - get feedbackForm(){ return FeedbackFormOrderByWithRelationInputObjectSchema.optional(); }, - get options(){ return FeedbackQuestionOptionOrderByRelationAggregateInputObjectSchema.optional(); }, - get answers(){ return FeedbackQuestionAnswerOrderByRelationAggregateInputObjectSchema.optional(); } -}).strict(); -export const FeedbackQuestionOrderByWithRelationInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackQuestionOrderByWithRelationInput_schema) as unknown as z.ZodType; -export const FeedbackQuestionOrderByWithRelationInputObjectZodSchema = z.lazy(__makeSchema_FeedbackQuestionOrderByWithRelationInput_schema); - - -// File: FeedbackQuestionWhereUniqueInput.schema.ts -const __makeSchema_FeedbackQuestionWhereUniqueInput_schema = () => z.object({ - id: z.string().optional() -}).strict(); -export const FeedbackQuestionWhereUniqueInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackQuestionWhereUniqueInput_schema) as unknown as z.ZodType; -export const FeedbackQuestionWhereUniqueInputObjectZodSchema = z.lazy(__makeSchema_FeedbackQuestionWhereUniqueInput_schema); - - -// File: FeedbackQuestionOrderByWithAggregationInput.schema.ts -const __makeSchema_FeedbackQuestionOrderByWithAggregationInput_schema = () => z.object({ - id: SortOrderSchema.optional(), - label: SortOrderSchema.optional(), - required: SortOrderSchema.optional(), - showInPublicResults: SortOrderSchema.optional(), - type: SortOrderSchema.optional(), - order: SortOrderSchema.optional(), - createdAt: SortOrderSchema.optional(), - updatedAt: SortOrderSchema.optional(), - feedbackFormId: SortOrderSchema.optional(), - get _count(){ return FeedbackQuestionCountOrderByAggregateInputObjectSchema.optional(); }, - get _avg(){ return FeedbackQuestionAvgOrderByAggregateInputObjectSchema.optional(); }, - get _max(){ return FeedbackQuestionMaxOrderByAggregateInputObjectSchema.optional(); }, - get _min(){ return FeedbackQuestionMinOrderByAggregateInputObjectSchema.optional(); }, - get _sum(){ return FeedbackQuestionSumOrderByAggregateInputObjectSchema.optional(); } -}).strict(); -export const FeedbackQuestionOrderByWithAggregationInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackQuestionOrderByWithAggregationInput_schema) as unknown as z.ZodType; -export const FeedbackQuestionOrderByWithAggregationInputObjectZodSchema = z.lazy(__makeSchema_FeedbackQuestionOrderByWithAggregationInput_schema); - - -// File: FeedbackQuestionScalarWhereWithAggregatesInput.schema.ts -const __makeSchema_FeedbackQuestionScalarWhereWithAggregatesInput_schema = () => z.object({ - AND: z.union([FeedbackQuestionScalarWhereWithAggregatesInputObjectSchema, FeedbackQuestionScalarWhereWithAggregatesInputObjectSchema.array()]).optional(), - get OR(){ return FeedbackQuestionScalarWhereWithAggregatesInputObjectSchema.array().optional(); }, - NOT: z.union([FeedbackQuestionScalarWhereWithAggregatesInputObjectSchema, FeedbackQuestionScalarWhereWithAggregatesInputObjectSchema.array()]).optional(), - id: z.union([StringWithAggregatesFilterObjectSchema, z.string()]).optional(), - label: z.union([StringWithAggregatesFilterObjectSchema, z.string()]).optional(), - required: z.union([BoolWithAggregatesFilterObjectSchema, z.boolean()]).optional(), - showInPublicResults: z.union([BoolWithAggregatesFilterObjectSchema, z.boolean()]).optional(), - type: z.union([EnumFeedbackQuestionTypeWithAggregatesFilterObjectSchema, FeedbackQuestionTypeSchema]).optional(), - order: z.union([IntWithAggregatesFilterObjectSchema, z.number().int()]).optional(), - createdAt: z.union([DateTimeWithAggregatesFilterObjectSchema, z.coerce.date()]).optional(), - updatedAt: z.union([DateTimeWithAggregatesFilterObjectSchema, z.coerce.date()]).optional(), - feedbackFormId: z.union([StringWithAggregatesFilterObjectSchema, z.string()]).optional() -}).strict(); -export const FeedbackQuestionScalarWhereWithAggregatesInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackQuestionScalarWhereWithAggregatesInput_schema) as unknown as z.ZodType; -export const FeedbackQuestionScalarWhereWithAggregatesInputObjectZodSchema = z.lazy(__makeSchema_FeedbackQuestionScalarWhereWithAggregatesInput_schema); - - -// File: FeedbackQuestionOptionWhereInput.schema.ts -const __makeSchema_FeedbackQuestionOptionWhereInput_schema = () => z.object({ - AND: z.union([FeedbackQuestionOptionWhereInputObjectSchema, FeedbackQuestionOptionWhereInputObjectSchema.array()]).optional(), - get OR(){ return FeedbackQuestionOptionWhereInputObjectSchema.array().optional(); }, - NOT: z.union([FeedbackQuestionOptionWhereInputObjectSchema, FeedbackQuestionOptionWhereInputObjectSchema.array()]).optional(), - id: z.union([StringFilterObjectSchema, z.string()]).optional(), - name: z.union([StringFilterObjectSchema, z.string()]).optional(), - questionId: z.union([StringFilterObjectSchema, z.string()]).optional(), - question: z.union([FeedbackQuestionScalarRelationFilterObjectSchema, FeedbackQuestionWhereInputObjectSchema]).optional(), - get selectedInAnswers(){ return FeedbackQuestionAnswerOptionLinkListRelationFilterObjectSchema.optional(); } -}).strict(); -export const FeedbackQuestionOptionWhereInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackQuestionOptionWhereInput_schema) as unknown as z.ZodType; -export const FeedbackQuestionOptionWhereInputObjectZodSchema = z.lazy(__makeSchema_FeedbackQuestionOptionWhereInput_schema); - - -// File: FeedbackQuestionOptionOrderByWithRelationInput.schema.ts -const __makeSchema_FeedbackQuestionOptionOrderByWithRelationInput_schema = () => z.object({ - id: SortOrderSchema.optional(), - name: SortOrderSchema.optional(), - questionId: SortOrderSchema.optional(), - get question(){ return FeedbackQuestionOrderByWithRelationInputObjectSchema.optional(); }, - get selectedInAnswers(){ return FeedbackQuestionAnswerOptionLinkOrderByRelationAggregateInputObjectSchema.optional(); } -}).strict(); -export const FeedbackQuestionOptionOrderByWithRelationInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackQuestionOptionOrderByWithRelationInput_schema) as unknown as z.ZodType; -export const FeedbackQuestionOptionOrderByWithRelationInputObjectZodSchema = z.lazy(__makeSchema_FeedbackQuestionOptionOrderByWithRelationInput_schema); - - -// File: FeedbackQuestionOptionWhereUniqueInput.schema.ts -const __makeSchema_FeedbackQuestionOptionWhereUniqueInput_schema = () => z.object({ - id: z.string().optional(), - get questionId_name(){ return FeedbackQuestionOptionQuestionIdNameCompoundUniqueInputObjectSchema.optional(); } -}).strict(); -export const FeedbackQuestionOptionWhereUniqueInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackQuestionOptionWhereUniqueInput_schema) as unknown as z.ZodType; -export const FeedbackQuestionOptionWhereUniqueInputObjectZodSchema = z.lazy(__makeSchema_FeedbackQuestionOptionWhereUniqueInput_schema); - - -// File: FeedbackQuestionOptionOrderByWithAggregationInput.schema.ts -const __makeSchema_FeedbackQuestionOptionOrderByWithAggregationInput_schema = () => z.object({ - id: SortOrderSchema.optional(), - name: SortOrderSchema.optional(), - questionId: SortOrderSchema.optional(), - get _count(){ return FeedbackQuestionOptionCountOrderByAggregateInputObjectSchema.optional(); }, - get _max(){ return FeedbackQuestionOptionMaxOrderByAggregateInputObjectSchema.optional(); }, - get _min(){ return FeedbackQuestionOptionMinOrderByAggregateInputObjectSchema.optional(); } -}).strict(); -export const FeedbackQuestionOptionOrderByWithAggregationInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackQuestionOptionOrderByWithAggregationInput_schema) as unknown as z.ZodType; -export const FeedbackQuestionOptionOrderByWithAggregationInputObjectZodSchema = z.lazy(__makeSchema_FeedbackQuestionOptionOrderByWithAggregationInput_schema); - - -// File: FeedbackQuestionOptionScalarWhereWithAggregatesInput.schema.ts -const __makeSchema_FeedbackQuestionOptionScalarWhereWithAggregatesInput_schema = () => z.object({ - AND: z.union([FeedbackQuestionOptionScalarWhereWithAggregatesInputObjectSchema, FeedbackQuestionOptionScalarWhereWithAggregatesInputObjectSchema.array()]).optional(), - get OR(){ return FeedbackQuestionOptionScalarWhereWithAggregatesInputObjectSchema.array().optional(); }, - NOT: z.union([FeedbackQuestionOptionScalarWhereWithAggregatesInputObjectSchema, FeedbackQuestionOptionScalarWhereWithAggregatesInputObjectSchema.array()]).optional(), - id: z.union([StringWithAggregatesFilterObjectSchema, z.string()]).optional(), - name: z.union([StringWithAggregatesFilterObjectSchema, z.string()]).optional(), - questionId: z.union([StringWithAggregatesFilterObjectSchema, z.string()]).optional() -}).strict(); -export const FeedbackQuestionOptionScalarWhereWithAggregatesInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackQuestionOptionScalarWhereWithAggregatesInput_schema) as unknown as z.ZodType; -export const FeedbackQuestionOptionScalarWhereWithAggregatesInputObjectZodSchema = z.lazy(__makeSchema_FeedbackQuestionOptionScalarWhereWithAggregatesInput_schema); - - -// File: FeedbackQuestionAnswerWhereInput.schema.ts -const __makeSchema_FeedbackQuestionAnswerWhereInput_schema = () => z.object({ - AND: z.union([FeedbackQuestionAnswerWhereInputObjectSchema, FeedbackQuestionAnswerWhereInputObjectSchema.array()]).optional(), - get OR(){ return FeedbackQuestionAnswerWhereInputObjectSchema.array().optional(); }, - NOT: z.union([FeedbackQuestionAnswerWhereInputObjectSchema, FeedbackQuestionAnswerWhereInputObjectSchema.array()]).optional(), - id: z.union([StringFilterObjectSchema, z.string()]).optional(), - get value(){ return JsonNullableFilterObjectSchema.optional(); }, - questionId: z.union([StringFilterObjectSchema, z.string()]).optional(), - formAnswerId: z.union([StringFilterObjectSchema, z.string()]).optional(), - question: z.union([FeedbackQuestionScalarRelationFilterObjectSchema, FeedbackQuestionWhereInputObjectSchema]).optional(), - formAnswer: z.union([FeedbackFormAnswerScalarRelationFilterObjectSchema, FeedbackFormAnswerWhereInputObjectSchema]).optional(), - get selectedOptions(){ return FeedbackQuestionAnswerOptionLinkListRelationFilterObjectSchema.optional(); } -}).strict(); -export const FeedbackQuestionAnswerWhereInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackQuestionAnswerWhereInput_schema) as unknown as z.ZodType; -export const FeedbackQuestionAnswerWhereInputObjectZodSchema = z.lazy(__makeSchema_FeedbackQuestionAnswerWhereInput_schema); - - -// File: FeedbackQuestionAnswerOrderByWithRelationInput.schema.ts -const __makeSchema_FeedbackQuestionAnswerOrderByWithRelationInput_schema = () => z.object({ - id: SortOrderSchema.optional(), - value: z.union([SortOrderSchema, SortOrderInputObjectSchema]).optional(), - questionId: SortOrderSchema.optional(), - formAnswerId: SortOrderSchema.optional(), - get question(){ return FeedbackQuestionOrderByWithRelationInputObjectSchema.optional(); }, - get formAnswer(){ return FeedbackFormAnswerOrderByWithRelationInputObjectSchema.optional(); }, - get selectedOptions(){ return FeedbackQuestionAnswerOptionLinkOrderByRelationAggregateInputObjectSchema.optional(); } -}).strict(); -export const FeedbackQuestionAnswerOrderByWithRelationInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackQuestionAnswerOrderByWithRelationInput_schema) as unknown as z.ZodType; -export const FeedbackQuestionAnswerOrderByWithRelationInputObjectZodSchema = z.lazy(__makeSchema_FeedbackQuestionAnswerOrderByWithRelationInput_schema); - - -// File: FeedbackQuestionAnswerWhereUniqueInput.schema.ts -const __makeSchema_FeedbackQuestionAnswerWhereUniqueInput_schema = () => z.object({ - id: z.string().optional() -}).strict(); -export const FeedbackQuestionAnswerWhereUniqueInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackQuestionAnswerWhereUniqueInput_schema) as unknown as z.ZodType; -export const FeedbackQuestionAnswerWhereUniqueInputObjectZodSchema = z.lazy(__makeSchema_FeedbackQuestionAnswerWhereUniqueInput_schema); - - -// File: FeedbackQuestionAnswerOrderByWithAggregationInput.schema.ts -const __makeSchema_FeedbackQuestionAnswerOrderByWithAggregationInput_schema = () => z.object({ - id: SortOrderSchema.optional(), - value: z.union([SortOrderSchema, SortOrderInputObjectSchema]).optional(), - questionId: SortOrderSchema.optional(), - formAnswerId: SortOrderSchema.optional(), - get _count(){ return FeedbackQuestionAnswerCountOrderByAggregateInputObjectSchema.optional(); }, - get _max(){ return FeedbackQuestionAnswerMaxOrderByAggregateInputObjectSchema.optional(); }, - get _min(){ return FeedbackQuestionAnswerMinOrderByAggregateInputObjectSchema.optional(); } -}).strict(); -export const FeedbackQuestionAnswerOrderByWithAggregationInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackQuestionAnswerOrderByWithAggregationInput_schema) as unknown as z.ZodType; -export const FeedbackQuestionAnswerOrderByWithAggregationInputObjectZodSchema = z.lazy(__makeSchema_FeedbackQuestionAnswerOrderByWithAggregationInput_schema); - - -// File: FeedbackQuestionAnswerScalarWhereWithAggregatesInput.schema.ts -const __makeSchema_FeedbackQuestionAnswerScalarWhereWithAggregatesInput_schema = () => z.object({ - AND: z.union([FeedbackQuestionAnswerScalarWhereWithAggregatesInputObjectSchema, FeedbackQuestionAnswerScalarWhereWithAggregatesInputObjectSchema.array()]).optional(), - get OR(){ return FeedbackQuestionAnswerScalarWhereWithAggregatesInputObjectSchema.array().optional(); }, - NOT: z.union([FeedbackQuestionAnswerScalarWhereWithAggregatesInputObjectSchema, FeedbackQuestionAnswerScalarWhereWithAggregatesInputObjectSchema.array()]).optional(), - id: z.union([StringWithAggregatesFilterObjectSchema, z.string()]).optional(), - get value(){ return JsonNullableWithAggregatesFilterObjectSchema.optional(); }, - questionId: z.union([StringWithAggregatesFilterObjectSchema, z.string()]).optional(), - formAnswerId: z.union([StringWithAggregatesFilterObjectSchema, z.string()]).optional() -}).strict(); -export const FeedbackQuestionAnswerScalarWhereWithAggregatesInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackQuestionAnswerScalarWhereWithAggregatesInput_schema) as unknown as z.ZodType; -export const FeedbackQuestionAnswerScalarWhereWithAggregatesInputObjectZodSchema = z.lazy(__makeSchema_FeedbackQuestionAnswerScalarWhereWithAggregatesInput_schema); - - -// File: FeedbackQuestionAnswerOptionLinkWhereInput.schema.ts -const __makeSchema_FeedbackQuestionAnswerOptionLinkWhereInput_schema = () => z.object({ - AND: z.union([FeedbackQuestionAnswerOptionLinkWhereInputObjectSchema, FeedbackQuestionAnswerOptionLinkWhereInputObjectSchema.array()]).optional(), - get OR(){ return FeedbackQuestionAnswerOptionLinkWhereInputObjectSchema.array().optional(); }, - NOT: z.union([FeedbackQuestionAnswerOptionLinkWhereInputObjectSchema, FeedbackQuestionAnswerOptionLinkWhereInputObjectSchema.array()]).optional(), - feedbackQuestionOptionId: z.union([StringFilterObjectSchema, z.string()]).optional(), - feedbackQuestionAnswerId: z.union([StringFilterObjectSchema, z.string()]).optional(), - feedbackQuestionOption: z.union([FeedbackQuestionOptionScalarRelationFilterObjectSchema, FeedbackQuestionOptionWhereInputObjectSchema]).optional(), - feedbackQuestionAnswer: z.union([FeedbackQuestionAnswerScalarRelationFilterObjectSchema, FeedbackQuestionAnswerWhereInputObjectSchema]).optional() -}).strict(); -export const FeedbackQuestionAnswerOptionLinkWhereInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackQuestionAnswerOptionLinkWhereInput_schema) as unknown as z.ZodType; -export const FeedbackQuestionAnswerOptionLinkWhereInputObjectZodSchema = z.lazy(__makeSchema_FeedbackQuestionAnswerOptionLinkWhereInput_schema); - - -// File: FeedbackQuestionAnswerOptionLinkOrderByWithRelationInput.schema.ts -const __makeSchema_FeedbackQuestionAnswerOptionLinkOrderByWithRelationInput_schema = () => z.object({ - feedbackQuestionOptionId: SortOrderSchema.optional(), - feedbackQuestionAnswerId: SortOrderSchema.optional(), - get feedbackQuestionOption(){ return FeedbackQuestionOptionOrderByWithRelationInputObjectSchema.optional(); }, - get feedbackQuestionAnswer(){ return FeedbackQuestionAnswerOrderByWithRelationInputObjectSchema.optional(); } -}).strict(); -export const FeedbackQuestionAnswerOptionLinkOrderByWithRelationInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackQuestionAnswerOptionLinkOrderByWithRelationInput_schema) as unknown as z.ZodType; -export const FeedbackQuestionAnswerOptionLinkOrderByWithRelationInputObjectZodSchema = z.lazy(__makeSchema_FeedbackQuestionAnswerOptionLinkOrderByWithRelationInput_schema); - - -// File: FeedbackQuestionAnswerOptionLinkWhereUniqueInput.schema.ts -const __makeSchema_FeedbackQuestionAnswerOptionLinkWhereUniqueInput_schema = () => z.object({ - get feedbackQuestionOptionId_feedbackQuestionAnswerId(){ return FeedbackQuestionAnswerOptionLinkFeedbackQuestionOptionIdFeedbackQuestionAnswerIdCompoundUniqueInputObjectSchema.optional(); } -}).strict(); -export const FeedbackQuestionAnswerOptionLinkWhereUniqueInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackQuestionAnswerOptionLinkWhereUniqueInput_schema) as unknown as z.ZodType; -export const FeedbackQuestionAnswerOptionLinkWhereUniqueInputObjectZodSchema = z.lazy(__makeSchema_FeedbackQuestionAnswerOptionLinkWhereUniqueInput_schema); - - -// File: FeedbackQuestionAnswerOptionLinkOrderByWithAggregationInput.schema.ts -const __makeSchema_FeedbackQuestionAnswerOptionLinkOrderByWithAggregationInput_schema = () => z.object({ - feedbackQuestionOptionId: SortOrderSchema.optional(), - feedbackQuestionAnswerId: SortOrderSchema.optional(), - get _count(){ return FeedbackQuestionAnswerOptionLinkCountOrderByAggregateInputObjectSchema.optional(); }, - get _max(){ return FeedbackQuestionAnswerOptionLinkMaxOrderByAggregateInputObjectSchema.optional(); }, - get _min(){ return FeedbackQuestionAnswerOptionLinkMinOrderByAggregateInputObjectSchema.optional(); } -}).strict(); -export const FeedbackQuestionAnswerOptionLinkOrderByWithAggregationInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackQuestionAnswerOptionLinkOrderByWithAggregationInput_schema) as unknown as z.ZodType; -export const FeedbackQuestionAnswerOptionLinkOrderByWithAggregationInputObjectZodSchema = z.lazy(__makeSchema_FeedbackQuestionAnswerOptionLinkOrderByWithAggregationInput_schema); - - -// File: FeedbackQuestionAnswerOptionLinkScalarWhereWithAggregatesInput.schema.ts -const __makeSchema_FeedbackQuestionAnswerOptionLinkScalarWhereWithAggregatesInput_schema = () => z.object({ - AND: z.union([FeedbackQuestionAnswerOptionLinkScalarWhereWithAggregatesInputObjectSchema, FeedbackQuestionAnswerOptionLinkScalarWhereWithAggregatesInputObjectSchema.array()]).optional(), - get OR(){ return FeedbackQuestionAnswerOptionLinkScalarWhereWithAggregatesInputObjectSchema.array().optional(); }, - NOT: z.union([FeedbackQuestionAnswerOptionLinkScalarWhereWithAggregatesInputObjectSchema, FeedbackQuestionAnswerOptionLinkScalarWhereWithAggregatesInputObjectSchema.array()]).optional(), - feedbackQuestionOptionId: z.union([StringWithAggregatesFilterObjectSchema, z.string()]).optional(), - feedbackQuestionAnswerId: z.union([StringWithAggregatesFilterObjectSchema, z.string()]).optional() -}).strict(); -export const FeedbackQuestionAnswerOptionLinkScalarWhereWithAggregatesInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackQuestionAnswerOptionLinkScalarWhereWithAggregatesInput_schema) as unknown as z.ZodType; -export const FeedbackQuestionAnswerOptionLinkScalarWhereWithAggregatesInputObjectZodSchema = z.lazy(__makeSchema_FeedbackQuestionAnswerOptionLinkScalarWhereWithAggregatesInput_schema); - - -// File: FeedbackFormAnswerWhereInput.schema.ts -const __makeSchema_FeedbackFormAnswerWhereInput_schema = () => z.object({ - AND: z.union([FeedbackFormAnswerWhereInputObjectSchema, FeedbackFormAnswerWhereInputObjectSchema.array()]).optional(), - get OR(){ return FeedbackFormAnswerWhereInputObjectSchema.array().optional(); }, - NOT: z.union([FeedbackFormAnswerWhereInputObjectSchema, FeedbackFormAnswerWhereInputObjectSchema.array()]).optional(), - id: z.union([StringFilterObjectSchema, z.string()]).optional(), - createdAt: z.union([DateTimeFilterObjectSchema, z.coerce.date()]).optional(), - updatedAt: z.union([DateTimeFilterObjectSchema, z.coerce.date()]).optional(), - feedbackFormId: z.union([StringFilterObjectSchema, z.string()]).optional(), - attendeeId: z.union([StringFilterObjectSchema, z.string()]).optional(), - feedbackForm: z.union([FeedbackFormScalarRelationFilterObjectSchema, FeedbackFormWhereInputObjectSchema]).optional(), - attendee: z.union([AttendeeScalarRelationFilterObjectSchema, AttendeeWhereInputObjectSchema]).optional(), - get answers(){ return FeedbackQuestionAnswerListRelationFilterObjectSchema.optional(); } -}).strict(); -export const FeedbackFormAnswerWhereInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackFormAnswerWhereInput_schema) as unknown as z.ZodType; -export const FeedbackFormAnswerWhereInputObjectZodSchema = z.lazy(__makeSchema_FeedbackFormAnswerWhereInput_schema); - - -// File: FeedbackFormAnswerOrderByWithRelationInput.schema.ts -const __makeSchema_FeedbackFormAnswerOrderByWithRelationInput_schema = () => z.object({ - id: SortOrderSchema.optional(), - createdAt: SortOrderSchema.optional(), - updatedAt: SortOrderSchema.optional(), - feedbackFormId: SortOrderSchema.optional(), - attendeeId: SortOrderSchema.optional(), - get feedbackForm(){ return FeedbackFormOrderByWithRelationInputObjectSchema.optional(); }, - get attendee(){ return AttendeeOrderByWithRelationInputObjectSchema.optional(); }, - get answers(){ return FeedbackQuestionAnswerOrderByRelationAggregateInputObjectSchema.optional(); } -}).strict(); -export const FeedbackFormAnswerOrderByWithRelationInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackFormAnswerOrderByWithRelationInput_schema) as unknown as z.ZodType; -export const FeedbackFormAnswerOrderByWithRelationInputObjectZodSchema = z.lazy(__makeSchema_FeedbackFormAnswerOrderByWithRelationInput_schema); - - -// File: FeedbackFormAnswerWhereUniqueInput.schema.ts -const __makeSchema_FeedbackFormAnswerWhereUniqueInput_schema = () => z.object({ - id: z.string().optional(), - attendeeId: z.string().optional() -}).strict(); -export const FeedbackFormAnswerWhereUniqueInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackFormAnswerWhereUniqueInput_schema) as unknown as z.ZodType; -export const FeedbackFormAnswerWhereUniqueInputObjectZodSchema = z.lazy(__makeSchema_FeedbackFormAnswerWhereUniqueInput_schema); - - -// File: FeedbackFormAnswerOrderByWithAggregationInput.schema.ts -const __makeSchema_FeedbackFormAnswerOrderByWithAggregationInput_schema = () => z.object({ - id: SortOrderSchema.optional(), - createdAt: SortOrderSchema.optional(), - updatedAt: SortOrderSchema.optional(), - feedbackFormId: SortOrderSchema.optional(), - attendeeId: SortOrderSchema.optional(), - get _count(){ return FeedbackFormAnswerCountOrderByAggregateInputObjectSchema.optional(); }, - get _max(){ return FeedbackFormAnswerMaxOrderByAggregateInputObjectSchema.optional(); }, - get _min(){ return FeedbackFormAnswerMinOrderByAggregateInputObjectSchema.optional(); } -}).strict(); -export const FeedbackFormAnswerOrderByWithAggregationInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackFormAnswerOrderByWithAggregationInput_schema) as unknown as z.ZodType; -export const FeedbackFormAnswerOrderByWithAggregationInputObjectZodSchema = z.lazy(__makeSchema_FeedbackFormAnswerOrderByWithAggregationInput_schema); - - -// File: FeedbackFormAnswerScalarWhereWithAggregatesInput.schema.ts -const __makeSchema_FeedbackFormAnswerScalarWhereWithAggregatesInput_schema = () => z.object({ - AND: z.union([FeedbackFormAnswerScalarWhereWithAggregatesInputObjectSchema, FeedbackFormAnswerScalarWhereWithAggregatesInputObjectSchema.array()]).optional(), - get OR(){ return FeedbackFormAnswerScalarWhereWithAggregatesInputObjectSchema.array().optional(); }, - NOT: z.union([FeedbackFormAnswerScalarWhereWithAggregatesInputObjectSchema, FeedbackFormAnswerScalarWhereWithAggregatesInputObjectSchema.array()]).optional(), - id: z.union([StringWithAggregatesFilterObjectSchema, z.string()]).optional(), - createdAt: z.union([DateTimeWithAggregatesFilterObjectSchema, z.coerce.date()]).optional(), - updatedAt: z.union([DateTimeWithAggregatesFilterObjectSchema, z.coerce.date()]).optional(), - feedbackFormId: z.union([StringWithAggregatesFilterObjectSchema, z.string()]).optional(), - attendeeId: z.union([StringWithAggregatesFilterObjectSchema, z.string()]).optional() -}).strict(); -export const FeedbackFormAnswerScalarWhereWithAggregatesInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackFormAnswerScalarWhereWithAggregatesInput_schema) as unknown as z.ZodType; -export const FeedbackFormAnswerScalarWhereWithAggregatesInputObjectZodSchema = z.lazy(__makeSchema_FeedbackFormAnswerScalarWhereWithAggregatesInput_schema); - - -// File: AuditLogWhereInput.schema.ts -const __makeSchema_AuditLogWhereInput_schema = () => z.object({ - AND: z.union([AuditLogWhereInputObjectSchema, AuditLogWhereInputObjectSchema.array()]).optional(), - get OR(){ return AuditLogWhereInputObjectSchema.array().optional(); }, - NOT: z.union([AuditLogWhereInputObjectSchema, AuditLogWhereInputObjectSchema.array()]).optional(), - id: z.union([StringFilterObjectSchema, z.string()]).optional(), - tableName: z.union([StringFilterObjectSchema, z.string()]).optional(), - rowId: z.union([StringNullableFilterObjectSchema, z.string()]).optional().nullable(), - createdAt: z.union([DateTimeFilterObjectSchema, z.coerce.date()]).optional(), - operation: z.union([StringFilterObjectSchema, z.string()]).optional(), - get rowData(){ return JsonFilterObjectSchema.optional(); }, - transactionId: z.union([BigIntFilterObjectSchema, z.bigint()]).optional(), - userId: z.union([StringNullableFilterObjectSchema, z.string()]).optional().nullable(), - user: z.union([UserNullableScalarRelationFilterObjectSchema, UserWhereInputObjectSchema]).optional() -}).strict(); -export const AuditLogWhereInputObjectSchema: z.ZodType = z.lazy(__makeSchema_AuditLogWhereInput_schema) as unknown as z.ZodType; -export const AuditLogWhereInputObjectZodSchema = z.lazy(__makeSchema_AuditLogWhereInput_schema); - - -// File: AuditLogOrderByWithRelationInput.schema.ts -const __makeSchema_AuditLogOrderByWithRelationInput_schema = () => z.object({ - id: SortOrderSchema.optional(), - tableName: SortOrderSchema.optional(), - rowId: z.union([SortOrderSchema, SortOrderInputObjectSchema]).optional(), - createdAt: SortOrderSchema.optional(), - operation: SortOrderSchema.optional(), - rowData: SortOrderSchema.optional(), - transactionId: SortOrderSchema.optional(), - userId: z.union([SortOrderSchema, SortOrderInputObjectSchema]).optional(), - get user(){ return UserOrderByWithRelationInputObjectSchema.optional(); } -}).strict(); -export const AuditLogOrderByWithRelationInputObjectSchema: z.ZodType = z.lazy(__makeSchema_AuditLogOrderByWithRelationInput_schema) as unknown as z.ZodType; -export const AuditLogOrderByWithRelationInputObjectZodSchema = z.lazy(__makeSchema_AuditLogOrderByWithRelationInput_schema); - - -// File: AuditLogWhereUniqueInput.schema.ts -const __makeSchema_AuditLogWhereUniqueInput_schema = () => z.object({ - id: z.string().optional() -}).strict(); -export const AuditLogWhereUniqueInputObjectSchema: z.ZodType = z.lazy(__makeSchema_AuditLogWhereUniqueInput_schema) as unknown as z.ZodType; -export const AuditLogWhereUniqueInputObjectZodSchema = z.lazy(__makeSchema_AuditLogWhereUniqueInput_schema); - - -// File: AuditLogOrderByWithAggregationInput.schema.ts -const __makeSchema_AuditLogOrderByWithAggregationInput_schema = () => z.object({ - id: SortOrderSchema.optional(), - tableName: SortOrderSchema.optional(), - rowId: z.union([SortOrderSchema, SortOrderInputObjectSchema]).optional(), - createdAt: SortOrderSchema.optional(), - operation: SortOrderSchema.optional(), - rowData: SortOrderSchema.optional(), - transactionId: SortOrderSchema.optional(), - userId: z.union([SortOrderSchema, SortOrderInputObjectSchema]).optional(), - get _count(){ return AuditLogCountOrderByAggregateInputObjectSchema.optional(); }, - get _avg(){ return AuditLogAvgOrderByAggregateInputObjectSchema.optional(); }, - get _max(){ return AuditLogMaxOrderByAggregateInputObjectSchema.optional(); }, - get _min(){ return AuditLogMinOrderByAggregateInputObjectSchema.optional(); }, - get _sum(){ return AuditLogSumOrderByAggregateInputObjectSchema.optional(); } -}).strict(); -export const AuditLogOrderByWithAggregationInputObjectSchema: z.ZodType = z.lazy(__makeSchema_AuditLogOrderByWithAggregationInput_schema) as unknown as z.ZodType; -export const AuditLogOrderByWithAggregationInputObjectZodSchema = z.lazy(__makeSchema_AuditLogOrderByWithAggregationInput_schema); - - -// File: AuditLogScalarWhereWithAggregatesInput.schema.ts -const __makeSchema_AuditLogScalarWhereWithAggregatesInput_schema = () => z.object({ - AND: z.union([AuditLogScalarWhereWithAggregatesInputObjectSchema, AuditLogScalarWhereWithAggregatesInputObjectSchema.array()]).optional(), - get OR(){ return AuditLogScalarWhereWithAggregatesInputObjectSchema.array().optional(); }, - NOT: z.union([AuditLogScalarWhereWithAggregatesInputObjectSchema, AuditLogScalarWhereWithAggregatesInputObjectSchema.array()]).optional(), - id: z.union([StringWithAggregatesFilterObjectSchema, z.string()]).optional(), - tableName: z.union([StringWithAggregatesFilterObjectSchema, z.string()]).optional(), - rowId: z.union([StringNullableWithAggregatesFilterObjectSchema, z.string()]).optional().nullable(), - createdAt: z.union([DateTimeWithAggregatesFilterObjectSchema, z.coerce.date()]).optional(), - operation: z.union([StringWithAggregatesFilterObjectSchema, z.string()]).optional(), - get rowData(){ return JsonWithAggregatesFilterObjectSchema.optional(); }, - transactionId: z.union([BigIntWithAggregatesFilterObjectSchema, z.bigint()]).optional(), - userId: z.union([StringNullableWithAggregatesFilterObjectSchema, z.string()]).optional().nullable() -}).strict(); -export const AuditLogScalarWhereWithAggregatesInputObjectSchema: z.ZodType = z.lazy(__makeSchema_AuditLogScalarWhereWithAggregatesInput_schema) as unknown as z.ZodType; -export const AuditLogScalarWhereWithAggregatesInputObjectZodSchema = z.lazy(__makeSchema_AuditLogScalarWhereWithAggregatesInput_schema); - - -// File: DeregisterReasonWhereInput.schema.ts -const __makeSchema_DeregisterReasonWhereInput_schema = () => z.object({ - AND: z.union([DeregisterReasonWhereInputObjectSchema, DeregisterReasonWhereInputObjectSchema.array()]).optional(), - get OR(){ return DeregisterReasonWhereInputObjectSchema.array().optional(); }, - NOT: z.union([DeregisterReasonWhereInputObjectSchema, DeregisterReasonWhereInputObjectSchema.array()]).optional(), - id: z.union([StringFilterObjectSchema, z.string()]).optional(), - createdAt: z.union([DateTimeFilterObjectSchema, z.coerce.date()]).optional(), - registeredAt: z.union([DateTimeFilterObjectSchema, z.coerce.date()]).optional(), - type: z.union([EnumDeregisterReasonTypeFilterObjectSchema, DeregisterReasonTypeSchema]).optional(), - details: z.union([StringNullableFilterObjectSchema, z.string()]).optional().nullable(), - userGrade: z.union([IntNullableFilterObjectSchema, z.number().int()]).optional().nullable(), - userId: z.union([StringFilterObjectSchema, z.string()]).optional(), - eventId: z.union([StringFilterObjectSchema, z.string()]).optional(), - user: z.union([UserScalarRelationFilterObjectSchema, UserWhereInputObjectSchema]).optional(), - event: z.union([EventScalarRelationFilterObjectSchema, EventWhereInputObjectSchema]).optional() -}).strict(); -export const DeregisterReasonWhereInputObjectSchema: z.ZodType = z.lazy(__makeSchema_DeregisterReasonWhereInput_schema) as unknown as z.ZodType; -export const DeregisterReasonWhereInputObjectZodSchema = z.lazy(__makeSchema_DeregisterReasonWhereInput_schema); - - -// File: DeregisterReasonOrderByWithRelationInput.schema.ts -const __makeSchema_DeregisterReasonOrderByWithRelationInput_schema = () => z.object({ - id: SortOrderSchema.optional(), - createdAt: SortOrderSchema.optional(), - registeredAt: SortOrderSchema.optional(), - type: SortOrderSchema.optional(), - details: z.union([SortOrderSchema, SortOrderInputObjectSchema]).optional(), - userGrade: z.union([SortOrderSchema, SortOrderInputObjectSchema]).optional(), - userId: SortOrderSchema.optional(), - eventId: SortOrderSchema.optional(), - get user(){ return UserOrderByWithRelationInputObjectSchema.optional(); }, - get event(){ return EventOrderByWithRelationInputObjectSchema.optional(); } -}).strict(); -export const DeregisterReasonOrderByWithRelationInputObjectSchema: z.ZodType = z.lazy(__makeSchema_DeregisterReasonOrderByWithRelationInput_schema) as unknown as z.ZodType; -export const DeregisterReasonOrderByWithRelationInputObjectZodSchema = z.lazy(__makeSchema_DeregisterReasonOrderByWithRelationInput_schema); - - -// File: DeregisterReasonWhereUniqueInput.schema.ts -const __makeSchema_DeregisterReasonWhereUniqueInput_schema = () => z.object({ - id: z.string().optional() -}).strict(); -export const DeregisterReasonWhereUniqueInputObjectSchema: z.ZodType = z.lazy(__makeSchema_DeregisterReasonWhereUniqueInput_schema) as unknown as z.ZodType; -export const DeregisterReasonWhereUniqueInputObjectZodSchema = z.lazy(__makeSchema_DeregisterReasonWhereUniqueInput_schema); - - -// File: DeregisterReasonOrderByWithAggregationInput.schema.ts -const __makeSchema_DeregisterReasonOrderByWithAggregationInput_schema = () => z.object({ - id: SortOrderSchema.optional(), - createdAt: SortOrderSchema.optional(), - registeredAt: SortOrderSchema.optional(), - type: SortOrderSchema.optional(), - details: z.union([SortOrderSchema, SortOrderInputObjectSchema]).optional(), - userGrade: z.union([SortOrderSchema, SortOrderInputObjectSchema]).optional(), - userId: SortOrderSchema.optional(), - eventId: SortOrderSchema.optional(), - get _count(){ return DeregisterReasonCountOrderByAggregateInputObjectSchema.optional(); }, - get _avg(){ return DeregisterReasonAvgOrderByAggregateInputObjectSchema.optional(); }, - get _max(){ return DeregisterReasonMaxOrderByAggregateInputObjectSchema.optional(); }, - get _min(){ return DeregisterReasonMinOrderByAggregateInputObjectSchema.optional(); }, - get _sum(){ return DeregisterReasonSumOrderByAggregateInputObjectSchema.optional(); } -}).strict(); -export const DeregisterReasonOrderByWithAggregationInputObjectSchema: z.ZodType = z.lazy(__makeSchema_DeregisterReasonOrderByWithAggregationInput_schema) as unknown as z.ZodType; -export const DeregisterReasonOrderByWithAggregationInputObjectZodSchema = z.lazy(__makeSchema_DeregisterReasonOrderByWithAggregationInput_schema); - - -// File: DeregisterReasonScalarWhereWithAggregatesInput.schema.ts -const __makeSchema_DeregisterReasonScalarWhereWithAggregatesInput_schema = () => z.object({ - AND: z.union([DeregisterReasonScalarWhereWithAggregatesInputObjectSchema, DeregisterReasonScalarWhereWithAggregatesInputObjectSchema.array()]).optional(), - get OR(){ return DeregisterReasonScalarWhereWithAggregatesInputObjectSchema.array().optional(); }, - NOT: z.union([DeregisterReasonScalarWhereWithAggregatesInputObjectSchema, DeregisterReasonScalarWhereWithAggregatesInputObjectSchema.array()]).optional(), - id: z.union([StringWithAggregatesFilterObjectSchema, z.string()]).optional(), - createdAt: z.union([DateTimeWithAggregatesFilterObjectSchema, z.coerce.date()]).optional(), - registeredAt: z.union([DateTimeWithAggregatesFilterObjectSchema, z.coerce.date()]).optional(), - type: z.union([EnumDeregisterReasonTypeWithAggregatesFilterObjectSchema, DeregisterReasonTypeSchema]).optional(), - details: z.union([StringNullableWithAggregatesFilterObjectSchema, z.string()]).optional().nullable(), - userGrade: z.union([IntNullableWithAggregatesFilterObjectSchema, z.number().int()]).optional().nullable(), - userId: z.union([StringWithAggregatesFilterObjectSchema, z.string()]).optional(), - eventId: z.union([StringWithAggregatesFilterObjectSchema, z.string()]).optional() -}).strict(); -export const DeregisterReasonScalarWhereWithAggregatesInputObjectSchema: z.ZodType = z.lazy(__makeSchema_DeregisterReasonScalarWhereWithAggregatesInput_schema) as unknown as z.ZodType; -export const DeregisterReasonScalarWhereWithAggregatesInputObjectZodSchema = z.lazy(__makeSchema_DeregisterReasonScalarWhereWithAggregatesInput_schema); - - -// File: NotificationRecipientWhereInput.schema.ts -const __makeSchema_NotificationRecipientWhereInput_schema = () => z.object({ - AND: z.union([NotificationRecipientWhereInputObjectSchema, NotificationRecipientWhereInputObjectSchema.array()]).optional(), - get OR(){ return NotificationRecipientWhereInputObjectSchema.array().optional(); }, - NOT: z.union([NotificationRecipientWhereInputObjectSchema, NotificationRecipientWhereInputObjectSchema.array()]).optional(), - id: z.union([StringFilterObjectSchema, z.string()]).optional(), - readAt: z.union([DateTimeFilterObjectSchema, z.coerce.date()]).optional(), - notificationId: z.union([StringFilterObjectSchema, z.string()]).optional(), - userId: z.union([StringFilterObjectSchema, z.string()]).optional(), - notification: z.union([NotificationScalarRelationFilterObjectSchema, NotificationWhereInputObjectSchema]).optional(), - user: z.union([UserScalarRelationFilterObjectSchema, UserWhereInputObjectSchema]).optional() -}).strict(); -export const NotificationRecipientWhereInputObjectSchema: z.ZodType = z.lazy(__makeSchema_NotificationRecipientWhereInput_schema) as unknown as z.ZodType; -export const NotificationRecipientWhereInputObjectZodSchema = z.lazy(__makeSchema_NotificationRecipientWhereInput_schema); - - -// File: NotificationRecipientOrderByWithRelationInput.schema.ts -const __makeSchema_NotificationRecipientOrderByWithRelationInput_schema = () => z.object({ - id: SortOrderSchema.optional(), - readAt: SortOrderSchema.optional(), - notificationId: SortOrderSchema.optional(), - userId: SortOrderSchema.optional(), - get notification(){ return NotificationOrderByWithRelationInputObjectSchema.optional(); }, - get user(){ return UserOrderByWithRelationInputObjectSchema.optional(); } -}).strict(); -export const NotificationRecipientOrderByWithRelationInputObjectSchema: z.ZodType = z.lazy(__makeSchema_NotificationRecipientOrderByWithRelationInput_schema) as unknown as z.ZodType; -export const NotificationRecipientOrderByWithRelationInputObjectZodSchema = z.lazy(__makeSchema_NotificationRecipientOrderByWithRelationInput_schema); - - -// File: NotificationRecipientWhereUniqueInput.schema.ts -const __makeSchema_NotificationRecipientWhereUniqueInput_schema = () => z.object({ - id: z.string().optional() -}).strict(); -export const NotificationRecipientWhereUniqueInputObjectSchema: z.ZodType = z.lazy(__makeSchema_NotificationRecipientWhereUniqueInput_schema) as unknown as z.ZodType; -export const NotificationRecipientWhereUniqueInputObjectZodSchema = z.lazy(__makeSchema_NotificationRecipientWhereUniqueInput_schema); - - -// File: NotificationRecipientOrderByWithAggregationInput.schema.ts -const __makeSchema_NotificationRecipientOrderByWithAggregationInput_schema = () => z.object({ - id: SortOrderSchema.optional(), - readAt: SortOrderSchema.optional(), - notificationId: SortOrderSchema.optional(), - userId: SortOrderSchema.optional(), - get _count(){ return NotificationRecipientCountOrderByAggregateInputObjectSchema.optional(); }, - get _max(){ return NotificationRecipientMaxOrderByAggregateInputObjectSchema.optional(); }, - get _min(){ return NotificationRecipientMinOrderByAggregateInputObjectSchema.optional(); } -}).strict(); -export const NotificationRecipientOrderByWithAggregationInputObjectSchema: z.ZodType = z.lazy(__makeSchema_NotificationRecipientOrderByWithAggregationInput_schema) as unknown as z.ZodType; -export const NotificationRecipientOrderByWithAggregationInputObjectZodSchema = z.lazy(__makeSchema_NotificationRecipientOrderByWithAggregationInput_schema); - - -// File: NotificationRecipientScalarWhereWithAggregatesInput.schema.ts -const __makeSchema_NotificationRecipientScalarWhereWithAggregatesInput_schema = () => z.object({ - AND: z.union([NotificationRecipientScalarWhereWithAggregatesInputObjectSchema, NotificationRecipientScalarWhereWithAggregatesInputObjectSchema.array()]).optional(), - get OR(){ return NotificationRecipientScalarWhereWithAggregatesInputObjectSchema.array().optional(); }, - NOT: z.union([NotificationRecipientScalarWhereWithAggregatesInputObjectSchema, NotificationRecipientScalarWhereWithAggregatesInputObjectSchema.array()]).optional(), - id: z.union([StringWithAggregatesFilterObjectSchema, z.string()]).optional(), - readAt: z.union([DateTimeWithAggregatesFilterObjectSchema, z.coerce.date()]).optional(), - notificationId: z.union([StringWithAggregatesFilterObjectSchema, z.string()]).optional(), - userId: z.union([StringWithAggregatesFilterObjectSchema, z.string()]).optional() -}).strict(); -export const NotificationRecipientScalarWhereWithAggregatesInputObjectSchema: z.ZodType = z.lazy(__makeSchema_NotificationRecipientScalarWhereWithAggregatesInput_schema) as unknown as z.ZodType; -export const NotificationRecipientScalarWhereWithAggregatesInputObjectZodSchema = z.lazy(__makeSchema_NotificationRecipientScalarWhereWithAggregatesInput_schema); - - -// File: NotificationWhereInput.schema.ts -const __makeSchema_NotificationWhereInput_schema = () => z.object({ - AND: z.union([NotificationWhereInputObjectSchema, NotificationWhereInputObjectSchema.array()]).optional(), - get OR(){ return NotificationWhereInputObjectSchema.array().optional(); }, - NOT: z.union([NotificationWhereInputObjectSchema, NotificationWhereInputObjectSchema.array()]).optional(), - id: z.union([StringFilterObjectSchema, z.string()]).optional(), - createdAt: z.union([DateTimeFilterObjectSchema, z.coerce.date()]).optional(), - updatedAt: z.union([DateTimeFilterObjectSchema, z.coerce.date()]).optional(), - title: z.union([StringFilterObjectSchema, z.string()]).optional(), - shortDescription: z.union([StringNullableFilterObjectSchema, z.string()]).optional().nullable(), - content: z.union([StringFilterObjectSchema, z.string()]).optional(), - type: z.union([EnumNotificationTypeFilterObjectSchema, NotificationTypeSchema]).optional(), - payload: z.union([StringNullableFilterObjectSchema, z.string()]).optional().nullable(), - payloadType: z.union([EnumNotificationPayloadTypeFilterObjectSchema, NotificationPayloadTypeSchema]).optional(), - actorGroupId: z.union([StringFilterObjectSchema, z.string()]).optional(), - createdById: z.union([StringNullableFilterObjectSchema, z.string()]).optional().nullable(), - lastUpdatedById: z.union([StringNullableFilterObjectSchema, z.string()]).optional().nullable(), - taskId: z.union([StringNullableFilterObjectSchema, z.string()]).optional().nullable(), - actorGroup: z.union([GroupScalarRelationFilterObjectSchema, GroupWhereInputObjectSchema]).optional(), - createdBy: z.union([UserNullableScalarRelationFilterObjectSchema, UserWhereInputObjectSchema]).optional(), - lastUpdatedBy: z.union([UserNullableScalarRelationFilterObjectSchema, UserWhereInputObjectSchema]).optional(), - task: z.union([TaskNullableScalarRelationFilterObjectSchema, TaskWhereInputObjectSchema]).optional(), - get recipients(){ return NotificationRecipientListRelationFilterObjectSchema.optional(); } -}).strict(); -export const NotificationWhereInputObjectSchema: z.ZodType = z.lazy(__makeSchema_NotificationWhereInput_schema) as unknown as z.ZodType; -export const NotificationWhereInputObjectZodSchema = z.lazy(__makeSchema_NotificationWhereInput_schema); - - -// File: NotificationOrderByWithRelationInput.schema.ts -const __makeSchema_NotificationOrderByWithRelationInput_schema = () => z.object({ - id: SortOrderSchema.optional(), - createdAt: SortOrderSchema.optional(), - updatedAt: SortOrderSchema.optional(), - title: SortOrderSchema.optional(), - shortDescription: z.union([SortOrderSchema, SortOrderInputObjectSchema]).optional(), - content: SortOrderSchema.optional(), - type: SortOrderSchema.optional(), - payload: z.union([SortOrderSchema, SortOrderInputObjectSchema]).optional(), - payloadType: SortOrderSchema.optional(), - actorGroupId: SortOrderSchema.optional(), - createdById: z.union([SortOrderSchema, SortOrderInputObjectSchema]).optional(), - lastUpdatedById: z.union([SortOrderSchema, SortOrderInputObjectSchema]).optional(), - taskId: z.union([SortOrderSchema, SortOrderInputObjectSchema]).optional(), - get actorGroup(){ return GroupOrderByWithRelationInputObjectSchema.optional(); }, - get createdBy(){ return UserOrderByWithRelationInputObjectSchema.optional(); }, - get lastUpdatedBy(){ return UserOrderByWithRelationInputObjectSchema.optional(); }, - get task(){ return TaskOrderByWithRelationInputObjectSchema.optional(); }, - get recipients(){ return NotificationRecipientOrderByRelationAggregateInputObjectSchema.optional(); } -}).strict(); -export const NotificationOrderByWithRelationInputObjectSchema: z.ZodType = z.lazy(__makeSchema_NotificationOrderByWithRelationInput_schema) as unknown as z.ZodType; -export const NotificationOrderByWithRelationInputObjectZodSchema = z.lazy(__makeSchema_NotificationOrderByWithRelationInput_schema); - - -// File: NotificationWhereUniqueInput.schema.ts -const __makeSchema_NotificationWhereUniqueInput_schema = () => z.object({ - id: z.string().optional() -}).strict(); -export const NotificationWhereUniqueInputObjectSchema: z.ZodType = z.lazy(__makeSchema_NotificationWhereUniqueInput_schema) as unknown as z.ZodType; -export const NotificationWhereUniqueInputObjectZodSchema = z.lazy(__makeSchema_NotificationWhereUniqueInput_schema); - - -// File: NotificationOrderByWithAggregationInput.schema.ts -const __makeSchema_NotificationOrderByWithAggregationInput_schema = () => z.object({ - id: SortOrderSchema.optional(), - createdAt: SortOrderSchema.optional(), - updatedAt: SortOrderSchema.optional(), - title: SortOrderSchema.optional(), - shortDescription: z.union([SortOrderSchema, SortOrderInputObjectSchema]).optional(), - content: SortOrderSchema.optional(), - type: SortOrderSchema.optional(), - payload: z.union([SortOrderSchema, SortOrderInputObjectSchema]).optional(), - payloadType: SortOrderSchema.optional(), - actorGroupId: SortOrderSchema.optional(), - createdById: z.union([SortOrderSchema, SortOrderInputObjectSchema]).optional(), - lastUpdatedById: z.union([SortOrderSchema, SortOrderInputObjectSchema]).optional(), - taskId: z.union([SortOrderSchema, SortOrderInputObjectSchema]).optional(), - get _count(){ return NotificationCountOrderByAggregateInputObjectSchema.optional(); }, - get _max(){ return NotificationMaxOrderByAggregateInputObjectSchema.optional(); }, - get _min(){ return NotificationMinOrderByAggregateInputObjectSchema.optional(); } -}).strict(); -export const NotificationOrderByWithAggregationInputObjectSchema: z.ZodType = z.lazy(__makeSchema_NotificationOrderByWithAggregationInput_schema) as unknown as z.ZodType; -export const NotificationOrderByWithAggregationInputObjectZodSchema = z.lazy(__makeSchema_NotificationOrderByWithAggregationInput_schema); - - -// File: NotificationScalarWhereWithAggregatesInput.schema.ts -const __makeSchema_NotificationScalarWhereWithAggregatesInput_schema = () => z.object({ - AND: z.union([NotificationScalarWhereWithAggregatesInputObjectSchema, NotificationScalarWhereWithAggregatesInputObjectSchema.array()]).optional(), - get OR(){ return NotificationScalarWhereWithAggregatesInputObjectSchema.array().optional(); }, - NOT: z.union([NotificationScalarWhereWithAggregatesInputObjectSchema, NotificationScalarWhereWithAggregatesInputObjectSchema.array()]).optional(), - id: z.union([StringWithAggregatesFilterObjectSchema, z.string()]).optional(), - createdAt: z.union([DateTimeWithAggregatesFilterObjectSchema, z.coerce.date()]).optional(), - updatedAt: z.union([DateTimeWithAggregatesFilterObjectSchema, z.coerce.date()]).optional(), - title: z.union([StringWithAggregatesFilterObjectSchema, z.string()]).optional(), - shortDescription: z.union([StringNullableWithAggregatesFilterObjectSchema, z.string()]).optional().nullable(), - content: z.union([StringWithAggregatesFilterObjectSchema, z.string()]).optional(), - type: z.union([EnumNotificationTypeWithAggregatesFilterObjectSchema, NotificationTypeSchema]).optional(), - payload: z.union([StringNullableWithAggregatesFilterObjectSchema, z.string()]).optional().nullable(), - payloadType: z.union([EnumNotificationPayloadTypeWithAggregatesFilterObjectSchema, NotificationPayloadTypeSchema]).optional(), - actorGroupId: z.union([StringWithAggregatesFilterObjectSchema, z.string()]).optional(), - createdById: z.union([StringNullableWithAggregatesFilterObjectSchema, z.string()]).optional().nullable(), - lastUpdatedById: z.union([StringNullableWithAggregatesFilterObjectSchema, z.string()]).optional().nullable(), - taskId: z.union([StringNullableWithAggregatesFilterObjectSchema, z.string()]).optional().nullable() -}).strict(); -export const NotificationScalarWhereWithAggregatesInputObjectSchema: z.ZodType = z.lazy(__makeSchema_NotificationScalarWhereWithAggregatesInput_schema) as unknown as z.ZodType; -export const NotificationScalarWhereWithAggregatesInputObjectZodSchema = z.lazy(__makeSchema_NotificationScalarWhereWithAggregatesInput_schema); - - -// File: ContestWhereInput.schema.ts -const __makeSchema_ContestWhereInput_schema = () => z.object({ - AND: z.union([ContestWhereInputObjectSchema, ContestWhereInputObjectSchema.array()]).optional(), - get OR(){ return ContestWhereInputObjectSchema.array().optional(); }, - NOT: z.union([ContestWhereInputObjectSchema, ContestWhereInputObjectSchema.array()]).optional(), - id: z.union([StringFilterObjectSchema, z.string()]).optional(), - name: z.union([StringFilterObjectSchema, z.string()]).optional(), - description: z.union([StringNullableFilterObjectSchema, z.string()]).optional().nullable(), - startDate: z.union([DateTimeNullableFilterObjectSchema, z.coerce.date()]).optional().nullable(), - resultType: z.union([EnumContestResultTypeFilterObjectSchema, ContestResultTypeSchema]).optional(), - resultOrder: z.union([EnumContestResultOrderFilterObjectSchema, ContestResultOrderSchema]).optional(), - winnerContestantId: z.union([StringNullableFilterObjectSchema, z.string()]).optional().nullable(), - winnerContestant: z.union([ContestantNullableScalarRelationFilterObjectSchema, ContestantWhereInputObjectSchema]).optional(), - get contestants(){ return ContestantListRelationFilterObjectSchema.optional(); }, - get groups(){ return GroupListRelationFilterObjectSchema.optional(); }, - get events(){ return EventListRelationFilterObjectSchema.optional(); } -}).strict(); -export const ContestWhereInputObjectSchema: z.ZodType = z.lazy(__makeSchema_ContestWhereInput_schema) as unknown as z.ZodType; -export const ContestWhereInputObjectZodSchema = z.lazy(__makeSchema_ContestWhereInput_schema); - - -// File: ContestOrderByWithRelationInput.schema.ts -const __makeSchema_ContestOrderByWithRelationInput_schema = () => z.object({ - id: SortOrderSchema.optional(), - name: SortOrderSchema.optional(), - description: z.union([SortOrderSchema, SortOrderInputObjectSchema]).optional(), - startDate: z.union([SortOrderSchema, SortOrderInputObjectSchema]).optional(), - resultType: SortOrderSchema.optional(), - resultOrder: SortOrderSchema.optional(), - winnerContestantId: z.union([SortOrderSchema, SortOrderInputObjectSchema]).optional(), - get winnerContestant(){ return ContestantOrderByWithRelationInputObjectSchema.optional(); }, - get contestants(){ return ContestantOrderByRelationAggregateInputObjectSchema.optional(); }, - get groups(){ return GroupOrderByRelationAggregateInputObjectSchema.optional(); }, - get events(){ return EventOrderByRelationAggregateInputObjectSchema.optional(); } -}).strict(); -export const ContestOrderByWithRelationInputObjectSchema: z.ZodType = z.lazy(__makeSchema_ContestOrderByWithRelationInput_schema) as unknown as z.ZodType; -export const ContestOrderByWithRelationInputObjectZodSchema = z.lazy(__makeSchema_ContestOrderByWithRelationInput_schema); - - -// File: ContestWhereUniqueInput.schema.ts -const __makeSchema_ContestWhereUniqueInput_schema = () => z.object({ - id: z.string().optional(), - winnerContestantId: z.string().optional() -}).strict(); -export const ContestWhereUniqueInputObjectSchema: z.ZodType = z.lazy(__makeSchema_ContestWhereUniqueInput_schema) as unknown as z.ZodType; -export const ContestWhereUniqueInputObjectZodSchema = z.lazy(__makeSchema_ContestWhereUniqueInput_schema); - - -// File: ContestOrderByWithAggregationInput.schema.ts -const __makeSchema_ContestOrderByWithAggregationInput_schema = () => z.object({ - id: SortOrderSchema.optional(), - name: SortOrderSchema.optional(), - description: z.union([SortOrderSchema, SortOrderInputObjectSchema]).optional(), - startDate: z.union([SortOrderSchema, SortOrderInputObjectSchema]).optional(), - resultType: SortOrderSchema.optional(), - resultOrder: SortOrderSchema.optional(), - winnerContestantId: z.union([SortOrderSchema, SortOrderInputObjectSchema]).optional(), - get _count(){ return ContestCountOrderByAggregateInputObjectSchema.optional(); }, - get _max(){ return ContestMaxOrderByAggregateInputObjectSchema.optional(); }, - get _min(){ return ContestMinOrderByAggregateInputObjectSchema.optional(); } -}).strict(); -export const ContestOrderByWithAggregationInputObjectSchema: z.ZodType = z.lazy(__makeSchema_ContestOrderByWithAggregationInput_schema) as unknown as z.ZodType; -export const ContestOrderByWithAggregationInputObjectZodSchema = z.lazy(__makeSchema_ContestOrderByWithAggregationInput_schema); - - -// File: ContestScalarWhereWithAggregatesInput.schema.ts -const __makeSchema_ContestScalarWhereWithAggregatesInput_schema = () => z.object({ - AND: z.union([ContestScalarWhereWithAggregatesInputObjectSchema, ContestScalarWhereWithAggregatesInputObjectSchema.array()]).optional(), - get OR(){ return ContestScalarWhereWithAggregatesInputObjectSchema.array().optional(); }, - NOT: z.union([ContestScalarWhereWithAggregatesInputObjectSchema, ContestScalarWhereWithAggregatesInputObjectSchema.array()]).optional(), - id: z.union([StringWithAggregatesFilterObjectSchema, z.string()]).optional(), - name: z.union([StringWithAggregatesFilterObjectSchema, z.string()]).optional(), - description: z.union([StringNullableWithAggregatesFilterObjectSchema, z.string()]).optional().nullable(), - startDate: z.union([DateTimeNullableWithAggregatesFilterObjectSchema, z.coerce.date()]).optional().nullable(), - resultType: z.union([EnumContestResultTypeWithAggregatesFilterObjectSchema, ContestResultTypeSchema]).optional(), - resultOrder: z.union([EnumContestResultOrderWithAggregatesFilterObjectSchema, ContestResultOrderSchema]).optional(), - winnerContestantId: z.union([StringNullableWithAggregatesFilterObjectSchema, z.string()]).optional().nullable() -}).strict(); -export const ContestScalarWhereWithAggregatesInputObjectSchema: z.ZodType = z.lazy(__makeSchema_ContestScalarWhereWithAggregatesInput_schema) as unknown as z.ZodType; -export const ContestScalarWhereWithAggregatesInputObjectZodSchema = z.lazy(__makeSchema_ContestScalarWhereWithAggregatesInput_schema); - - -// File: FadderukeWhereInput.schema.ts -const __makeSchema_FadderukeWhereInput_schema = () => z.object({ - AND: z.union([FadderukeWhereInputObjectSchema, FadderukeWhereInputObjectSchema.array()]).optional(), - get OR(){ return FadderukeWhereInputObjectSchema.array().optional(); }, - NOT: z.union([FadderukeWhereInputObjectSchema, FadderukeWhereInputObjectSchema.array()]).optional(), - id: z.union([StringFilterObjectSchema, z.string()]).optional(), - year: z.union([IntFilterObjectSchema, z.number().int()]).optional(), - eventId: z.union([StringFilterObjectSchema, z.string()]).optional(), - createdAt: z.union([DateTimeFilterObjectSchema, z.coerce.date()]).optional(), - updatedAt: z.union([DateTimeFilterObjectSchema, z.coerce.date()]).optional(), - event: z.union([EventScalarRelationFilterObjectSchema, EventWhereInputObjectSchema]).optional() -}).strict(); -export const FadderukeWhereInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FadderukeWhereInput_schema) as unknown as z.ZodType; -export const FadderukeWhereInputObjectZodSchema = z.lazy(__makeSchema_FadderukeWhereInput_schema); - - -// File: FadderukeOrderByWithRelationInput.schema.ts -const __makeSchema_FadderukeOrderByWithRelationInput_schema = () => z.object({ - id: SortOrderSchema.optional(), - year: SortOrderSchema.optional(), - eventId: SortOrderSchema.optional(), - createdAt: SortOrderSchema.optional(), - updatedAt: SortOrderSchema.optional(), - get event(){ return EventOrderByWithRelationInputObjectSchema.optional(); } -}).strict(); -export const FadderukeOrderByWithRelationInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FadderukeOrderByWithRelationInput_schema) as unknown as z.ZodType; -export const FadderukeOrderByWithRelationInputObjectZodSchema = z.lazy(__makeSchema_FadderukeOrderByWithRelationInput_schema); - - -// File: FadderukeWhereUniqueInput.schema.ts -const __makeSchema_FadderukeWhereUniqueInput_schema = () => z.object({ - id: z.string().optional(), - year: z.number().int().optional(), - eventId: z.string().optional() -}).strict(); -export const FadderukeWhereUniqueInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FadderukeWhereUniqueInput_schema) as unknown as z.ZodType; -export const FadderukeWhereUniqueInputObjectZodSchema = z.lazy(__makeSchema_FadderukeWhereUniqueInput_schema); - - -// File: FadderukeOrderByWithAggregationInput.schema.ts -const __makeSchema_FadderukeOrderByWithAggregationInput_schema = () => z.object({ - id: SortOrderSchema.optional(), - year: SortOrderSchema.optional(), - eventId: SortOrderSchema.optional(), - createdAt: SortOrderSchema.optional(), - updatedAt: SortOrderSchema.optional(), - get _count(){ return FadderukeCountOrderByAggregateInputObjectSchema.optional(); }, - get _avg(){ return FadderukeAvgOrderByAggregateInputObjectSchema.optional(); }, - get _max(){ return FadderukeMaxOrderByAggregateInputObjectSchema.optional(); }, - get _min(){ return FadderukeMinOrderByAggregateInputObjectSchema.optional(); }, - get _sum(){ return FadderukeSumOrderByAggregateInputObjectSchema.optional(); } -}).strict(); -export const FadderukeOrderByWithAggregationInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FadderukeOrderByWithAggregationInput_schema) as unknown as z.ZodType; -export const FadderukeOrderByWithAggregationInputObjectZodSchema = z.lazy(__makeSchema_FadderukeOrderByWithAggregationInput_schema); - - -// File: FadderukeScalarWhereWithAggregatesInput.schema.ts -const __makeSchema_FadderukeScalarWhereWithAggregatesInput_schema = () => z.object({ - AND: z.union([FadderukeScalarWhereWithAggregatesInputObjectSchema, FadderukeScalarWhereWithAggregatesInputObjectSchema.array()]).optional(), - get OR(){ return FadderukeScalarWhereWithAggregatesInputObjectSchema.array().optional(); }, - NOT: z.union([FadderukeScalarWhereWithAggregatesInputObjectSchema, FadderukeScalarWhereWithAggregatesInputObjectSchema.array()]).optional(), - id: z.union([StringWithAggregatesFilterObjectSchema, z.string()]).optional(), - year: z.union([IntWithAggregatesFilterObjectSchema, z.number().int()]).optional(), - eventId: z.union([StringWithAggregatesFilterObjectSchema, z.string()]).optional(), - createdAt: z.union([DateTimeWithAggregatesFilterObjectSchema, z.coerce.date()]).optional(), - updatedAt: z.union([DateTimeWithAggregatesFilterObjectSchema, z.coerce.date()]).optional() -}).strict(); -export const FadderukeScalarWhereWithAggregatesInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FadderukeScalarWhereWithAggregatesInput_schema) as unknown as z.ZodType; -export const FadderukeScalarWhereWithAggregatesInputObjectZodSchema = z.lazy(__makeSchema_FadderukeScalarWhereWithAggregatesInput_schema); - - -// File: ContestantWhereInput.schema.ts -const __makeSchema_ContestantWhereInput_schema = () => z.object({ - AND: z.union([ContestantWhereInputObjectSchema, ContestantWhereInputObjectSchema.array()]).optional(), - get OR(){ return ContestantWhereInputObjectSchema.array().optional(); }, - NOT: z.union([ContestantWhereInputObjectSchema, ContestantWhereInputObjectSchema.array()]).optional(), - id: z.union([StringFilterObjectSchema, z.string()]).optional(), - resultValue: z.union([IntNullableFilterObjectSchema, z.number().int()]).optional().nullable(), - contestId: z.union([StringFilterObjectSchema, z.string()]).optional(), - userId: z.union([StringNullableFilterObjectSchema, z.string()]).optional().nullable(), - contest: z.union([ContestScalarRelationFilterObjectSchema, ContestWhereInputObjectSchema]).optional(), - user: z.union([UserNullableScalarRelationFilterObjectSchema, UserWhereInputObjectSchema]).optional(), - team: z.union([ContestTeamNullableScalarRelationFilterObjectSchema, ContestTeamWhereInputObjectSchema]).optional(), - wonContest: z.union([ContestNullableScalarRelationFilterObjectSchema, ContestWhereInputObjectSchema]).optional() -}).strict(); -export const ContestantWhereInputObjectSchema: z.ZodType = z.lazy(__makeSchema_ContestantWhereInput_schema) as unknown as z.ZodType; -export const ContestantWhereInputObjectZodSchema = z.lazy(__makeSchema_ContestantWhereInput_schema); - - -// File: ContestantOrderByWithRelationInput.schema.ts -const __makeSchema_ContestantOrderByWithRelationInput_schema = () => z.object({ - id: SortOrderSchema.optional(), - resultValue: z.union([SortOrderSchema, SortOrderInputObjectSchema]).optional(), - contestId: SortOrderSchema.optional(), - userId: z.union([SortOrderSchema, SortOrderInputObjectSchema]).optional(), - get contest(){ return ContestOrderByWithRelationInputObjectSchema.optional(); }, - get user(){ return UserOrderByWithRelationInputObjectSchema.optional(); }, - get team(){ return ContestTeamOrderByWithRelationInputObjectSchema.optional(); }, - get wonContest(){ return ContestOrderByWithRelationInputObjectSchema.optional(); } -}).strict(); -export const ContestantOrderByWithRelationInputObjectSchema: z.ZodType = z.lazy(__makeSchema_ContestantOrderByWithRelationInput_schema) as unknown as z.ZodType; -export const ContestantOrderByWithRelationInputObjectZodSchema = z.lazy(__makeSchema_ContestantOrderByWithRelationInput_schema); - - -// File: ContestantWhereUniqueInput.schema.ts -const __makeSchema_ContestantWhereUniqueInput_schema = () => z.object({ - id: z.string().optional(), - get contestId_userId(){ return ContestantContestIdUserIdCompoundUniqueInputObjectSchema.optional(); } -}).strict(); -export const ContestantWhereUniqueInputObjectSchema: z.ZodType = z.lazy(__makeSchema_ContestantWhereUniqueInput_schema) as unknown as z.ZodType; -export const ContestantWhereUniqueInputObjectZodSchema = z.lazy(__makeSchema_ContestantWhereUniqueInput_schema); - - -// File: ContestantOrderByWithAggregationInput.schema.ts -const __makeSchema_ContestantOrderByWithAggregationInput_schema = () => z.object({ - id: SortOrderSchema.optional(), - resultValue: z.union([SortOrderSchema, SortOrderInputObjectSchema]).optional(), - contestId: SortOrderSchema.optional(), - userId: z.union([SortOrderSchema, SortOrderInputObjectSchema]).optional(), - get _count(){ return ContestantCountOrderByAggregateInputObjectSchema.optional(); }, - get _avg(){ return ContestantAvgOrderByAggregateInputObjectSchema.optional(); }, - get _max(){ return ContestantMaxOrderByAggregateInputObjectSchema.optional(); }, - get _min(){ return ContestantMinOrderByAggregateInputObjectSchema.optional(); }, - get _sum(){ return ContestantSumOrderByAggregateInputObjectSchema.optional(); } -}).strict(); -export const ContestantOrderByWithAggregationInputObjectSchema: z.ZodType = z.lazy(__makeSchema_ContestantOrderByWithAggregationInput_schema) as unknown as z.ZodType; -export const ContestantOrderByWithAggregationInputObjectZodSchema = z.lazy(__makeSchema_ContestantOrderByWithAggregationInput_schema); - - -// File: ContestantScalarWhereWithAggregatesInput.schema.ts -const __makeSchema_ContestantScalarWhereWithAggregatesInput_schema = () => z.object({ - AND: z.union([ContestantScalarWhereWithAggregatesInputObjectSchema, ContestantScalarWhereWithAggregatesInputObjectSchema.array()]).optional(), - get OR(){ return ContestantScalarWhereWithAggregatesInputObjectSchema.array().optional(); }, - NOT: z.union([ContestantScalarWhereWithAggregatesInputObjectSchema, ContestantScalarWhereWithAggregatesInputObjectSchema.array()]).optional(), - id: z.union([StringWithAggregatesFilterObjectSchema, z.string()]).optional(), - resultValue: z.union([IntNullableWithAggregatesFilterObjectSchema, z.number().int()]).optional().nullable(), - contestId: z.union([StringWithAggregatesFilterObjectSchema, z.string()]).optional(), - userId: z.union([StringNullableWithAggregatesFilterObjectSchema, z.string()]).optional().nullable() -}).strict(); -export const ContestantScalarWhereWithAggregatesInputObjectSchema: z.ZodType = z.lazy(__makeSchema_ContestantScalarWhereWithAggregatesInput_schema) as unknown as z.ZodType; -export const ContestantScalarWhereWithAggregatesInputObjectZodSchema = z.lazy(__makeSchema_ContestantScalarWhereWithAggregatesInput_schema); - - -// File: ContestTeamWhereInput.schema.ts -const __makeSchema_ContestTeamWhereInput_schema = () => z.object({ - AND: z.union([ContestTeamWhereInputObjectSchema, ContestTeamWhereInputObjectSchema.array()]).optional(), - get OR(){ return ContestTeamWhereInputObjectSchema.array().optional(); }, - NOT: z.union([ContestTeamWhereInputObjectSchema, ContestTeamWhereInputObjectSchema.array()]).optional(), - id: z.union([StringFilterObjectSchema, z.string()]).optional(), - name: z.union([StringFilterObjectSchema, z.string()]).optional(), - contestantId: z.union([StringFilterObjectSchema, z.string()]).optional(), - contestant: z.union([ContestantScalarRelationFilterObjectSchema, ContestantWhereInputObjectSchema]).optional(), - get members(){ return UserListRelationFilterObjectSchema.optional(); } -}).strict(); -export const ContestTeamWhereInputObjectSchema: z.ZodType = z.lazy(__makeSchema_ContestTeamWhereInput_schema) as unknown as z.ZodType; -export const ContestTeamWhereInputObjectZodSchema = z.lazy(__makeSchema_ContestTeamWhereInput_schema); - - -// File: ContestTeamOrderByWithRelationInput.schema.ts -const __makeSchema_ContestTeamOrderByWithRelationInput_schema = () => z.object({ - id: SortOrderSchema.optional(), - name: SortOrderSchema.optional(), - contestantId: SortOrderSchema.optional(), - get contestant(){ return ContestantOrderByWithRelationInputObjectSchema.optional(); }, - get members(){ return UserOrderByRelationAggregateInputObjectSchema.optional(); } -}).strict(); -export const ContestTeamOrderByWithRelationInputObjectSchema: z.ZodType = z.lazy(__makeSchema_ContestTeamOrderByWithRelationInput_schema) as unknown as z.ZodType; -export const ContestTeamOrderByWithRelationInputObjectZodSchema = z.lazy(__makeSchema_ContestTeamOrderByWithRelationInput_schema); - - -// File: ContestTeamWhereUniqueInput.schema.ts -const __makeSchema_ContestTeamWhereUniqueInput_schema = () => z.object({ - id: z.string().optional(), - contestantId: z.string().optional() -}).strict(); -export const ContestTeamWhereUniqueInputObjectSchema: z.ZodType = z.lazy(__makeSchema_ContestTeamWhereUniqueInput_schema) as unknown as z.ZodType; -export const ContestTeamWhereUniqueInputObjectZodSchema = z.lazy(__makeSchema_ContestTeamWhereUniqueInput_schema); - - -// File: ContestTeamOrderByWithAggregationInput.schema.ts -const __makeSchema_ContestTeamOrderByWithAggregationInput_schema = () => z.object({ - id: SortOrderSchema.optional(), - name: SortOrderSchema.optional(), - contestantId: SortOrderSchema.optional(), - get _count(){ return ContestTeamCountOrderByAggregateInputObjectSchema.optional(); }, - get _max(){ return ContestTeamMaxOrderByAggregateInputObjectSchema.optional(); }, - get _min(){ return ContestTeamMinOrderByAggregateInputObjectSchema.optional(); } -}).strict(); -export const ContestTeamOrderByWithAggregationInputObjectSchema: z.ZodType = z.lazy(__makeSchema_ContestTeamOrderByWithAggregationInput_schema) as unknown as z.ZodType; -export const ContestTeamOrderByWithAggregationInputObjectZodSchema = z.lazy(__makeSchema_ContestTeamOrderByWithAggregationInput_schema); - - -// File: ContestTeamScalarWhereWithAggregatesInput.schema.ts -const __makeSchema_ContestTeamScalarWhereWithAggregatesInput_schema = () => z.object({ - AND: z.union([ContestTeamScalarWhereWithAggregatesInputObjectSchema, ContestTeamScalarWhereWithAggregatesInputObjectSchema.array()]).optional(), - get OR(){ return ContestTeamScalarWhereWithAggregatesInputObjectSchema.array().optional(); }, - NOT: z.union([ContestTeamScalarWhereWithAggregatesInputObjectSchema, ContestTeamScalarWhereWithAggregatesInputObjectSchema.array()]).optional(), - id: z.union([StringWithAggregatesFilterObjectSchema, z.string()]).optional(), - name: z.union([StringWithAggregatesFilterObjectSchema, z.string()]).optional(), - contestantId: z.union([StringWithAggregatesFilterObjectSchema, z.string()]).optional() -}).strict(); -export const ContestTeamScalarWhereWithAggregatesInputObjectSchema: z.ZodType = z.lazy(__makeSchema_ContestTeamScalarWhereWithAggregatesInput_schema) as unknown as z.ZodType; -export const ContestTeamScalarWhereWithAggregatesInputObjectZodSchema = z.lazy(__makeSchema_ContestTeamScalarWhereWithAggregatesInput_schema); - - -// File: MembershipCreateInput.schema.ts -const __makeSchema_MembershipCreateInput_schema = () => z.object({ - id: z.string().optional(), - type: MembershipTypeSchema, - specialization: MembershipSpecializationSchema.optional().nullable(), - start: z.coerce.date(), - end: z.coerce.date().optional().nullable(), - semester: z.number().int().optional().nullable(), - get user(){ return UserCreateNestedOneWithoutMembershipsInputObjectSchema; } -}).strict(); -export const MembershipCreateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_MembershipCreateInput_schema) as unknown as z.ZodType; -export const MembershipCreateInputObjectZodSchema = z.lazy(__makeSchema_MembershipCreateInput_schema); - - -// File: MembershipUncheckedCreateInput.schema.ts -const __makeSchema_MembershipUncheckedCreateInput_schema = () => z.object({ - id: z.string().optional(), - type: MembershipTypeSchema, - specialization: MembershipSpecializationSchema.optional().nullable(), - start: z.coerce.date(), - end: z.coerce.date().optional().nullable(), - semester: z.number().int().optional().nullable(), - userId: z.string() -}).strict(); -export const MembershipUncheckedCreateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_MembershipUncheckedCreateInput_schema) as unknown as z.ZodType; -export const MembershipUncheckedCreateInputObjectZodSchema = z.lazy(__makeSchema_MembershipUncheckedCreateInput_schema); - - -// File: MembershipUpdateInput.schema.ts -const __makeSchema_MembershipUpdateInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - type: z.union([MembershipTypeSchema, EnumMembershipTypeFieldUpdateOperationsInputObjectSchema]).optional(), - specialization: z.union([MembershipSpecializationSchema, NullableEnumMembershipSpecializationFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - start: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - end: z.union([z.coerce.date(), NullableDateTimeFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - semester: z.union([z.number().int(), NullableIntFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - get user(){ return UserUpdateOneRequiredWithoutMembershipsNestedInputObjectSchema.optional(); } -}).strict(); -export const MembershipUpdateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_MembershipUpdateInput_schema) as unknown as z.ZodType; -export const MembershipUpdateInputObjectZodSchema = z.lazy(__makeSchema_MembershipUpdateInput_schema); - - -// File: MembershipUncheckedUpdateInput.schema.ts -const __makeSchema_MembershipUncheckedUpdateInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - type: z.union([MembershipTypeSchema, EnumMembershipTypeFieldUpdateOperationsInputObjectSchema]).optional(), - specialization: z.union([MembershipSpecializationSchema, NullableEnumMembershipSpecializationFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - start: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - end: z.union([z.coerce.date(), NullableDateTimeFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - semester: z.union([z.number().int(), NullableIntFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - userId: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional() -}).strict(); -export const MembershipUncheckedUpdateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_MembershipUncheckedUpdateInput_schema) as unknown as z.ZodType; -export const MembershipUncheckedUpdateInputObjectZodSchema = z.lazy(__makeSchema_MembershipUncheckedUpdateInput_schema); - - -// File: MembershipCreateManyInput.schema.ts -const __makeSchema_MembershipCreateManyInput_schema = () => z.object({ - id: z.string().optional(), - type: MembershipTypeSchema, - specialization: MembershipSpecializationSchema.optional().nullable(), - start: z.coerce.date(), - end: z.coerce.date().optional().nullable(), - semester: z.number().int().optional().nullable(), - userId: z.string() -}).strict(); -export const MembershipCreateManyInputObjectSchema: z.ZodType = z.lazy(__makeSchema_MembershipCreateManyInput_schema) as unknown as z.ZodType; -export const MembershipCreateManyInputObjectZodSchema = z.lazy(__makeSchema_MembershipCreateManyInput_schema); - - -// File: MembershipUpdateManyMutationInput.schema.ts -const __makeSchema_MembershipUpdateManyMutationInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - type: z.union([MembershipTypeSchema, EnumMembershipTypeFieldUpdateOperationsInputObjectSchema]).optional(), - specialization: z.union([MembershipSpecializationSchema, NullableEnumMembershipSpecializationFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - start: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - end: z.union([z.coerce.date(), NullableDateTimeFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - semester: z.union([z.number().int(), NullableIntFieldUpdateOperationsInputObjectSchema]).optional().nullable() -}).strict(); -export const MembershipUpdateManyMutationInputObjectSchema: z.ZodType = z.lazy(__makeSchema_MembershipUpdateManyMutationInput_schema) as unknown as z.ZodType; -export const MembershipUpdateManyMutationInputObjectZodSchema = z.lazy(__makeSchema_MembershipUpdateManyMutationInput_schema); - - -// File: MembershipUncheckedUpdateManyInput.schema.ts -const __makeSchema_MembershipUncheckedUpdateManyInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - type: z.union([MembershipTypeSchema, EnumMembershipTypeFieldUpdateOperationsInputObjectSchema]).optional(), - specialization: z.union([MembershipSpecializationSchema, NullableEnumMembershipSpecializationFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - start: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - end: z.union([z.coerce.date(), NullableDateTimeFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - semester: z.union([z.number().int(), NullableIntFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - userId: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional() -}).strict(); -export const MembershipUncheckedUpdateManyInputObjectSchema: z.ZodType = z.lazy(__makeSchema_MembershipUncheckedUpdateManyInput_schema) as unknown as z.ZodType; -export const MembershipUncheckedUpdateManyInputObjectZodSchema = z.lazy(__makeSchema_MembershipUncheckedUpdateManyInput_schema); - - -// File: UserCreateInput.schema.ts -const __makeSchema_UserCreateInput_schema = () => z.object({ - id: z.string(), - username: z.string(), - name: z.string().optional().nullable(), - email: z.string().optional().nullable(), - imageUrl: z.string().optional().nullable(), - biography: z.string().optional().nullable(), - phone: z.string().optional().nullable(), - gender: GenderSchema.optional(), - dietaryRestrictions: z.string().optional().nullable(), - ntnuUsername: z.string().optional().nullable(), - flags: z.union([UserCreateflagsInputObjectSchema, z.string().array()]).optional(), - workspaceUserId: z.string().optional().nullable(), - createdAt: z.coerce.date().optional(), - privacyPermissionsId: z.string().optional().nullable(), - notificationPermissionsId: z.string().optional().nullable(), - get privacyPermissions(){ return PrivacyPermissionsCreateNestedOneWithoutUserInputObjectSchema.optional(); }, - get notificationPermissions(){ return NotificationPermissionsCreateNestedOneWithoutUserInputObjectSchema.optional(); }, - get attendee(){ return AttendeeCreateNestedManyWithoutUserInputObjectSchema.optional(); }, - get personalMark(){ return PersonalMarkCreateNestedManyWithoutUserInputObjectSchema.optional(); }, - get groupMemberships(){ return GroupMembershipCreateNestedManyWithoutUserInputObjectSchema.optional(); }, - get memberships(){ return MembershipCreateNestedManyWithoutUserInputObjectSchema.optional(); }, - get givenMarks(){ return PersonalMarkCreateNestedManyWithoutGivenByInputObjectSchema.optional(); }, - get attendeesRefunded(){ return AttendeeCreateNestedManyWithoutPaymentRefundedByInputObjectSchema.optional(); }, - get auditLogs(){ return AuditLogCreateNestedManyWithoutUserInputObjectSchema.optional(); }, - get deregisterReasons(){ return DeregisterReasonCreateNestedManyWithoutUserInputObjectSchema.optional(); }, - get notificationsReceived(){ return NotificationRecipientCreateNestedManyWithoutUserInputObjectSchema.optional(); }, - get notificationsCreated(){ return NotificationCreateNestedManyWithoutCreatedByInputObjectSchema.optional(); }, - get notificationsUpdated(){ return NotificationCreateNestedManyWithoutLastUpdatedByInputObjectSchema.optional(); }, - get contestants(){ return ContestantCreateNestedManyWithoutUserInputObjectSchema.optional(); }, - get contestTeams(){ return ContestTeamCreateNestedManyWithoutMembersInputObjectSchema.optional(); } -}).strict(); -export const UserCreateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_UserCreateInput_schema) as unknown as z.ZodType; -export const UserCreateInputObjectZodSchema = z.lazy(__makeSchema_UserCreateInput_schema); - - -// File: UserUncheckedCreateInput.schema.ts -const __makeSchema_UserUncheckedCreateInput_schema = () => z.object({ - id: z.string(), - username: z.string(), - name: z.string().optional().nullable(), - email: z.string().optional().nullable(), - imageUrl: z.string().optional().nullable(), - biography: z.string().optional().nullable(), - phone: z.string().optional().nullable(), - gender: GenderSchema.optional(), - dietaryRestrictions: z.string().optional().nullable(), - ntnuUsername: z.string().optional().nullable(), - flags: z.union([UserCreateflagsInputObjectSchema, z.string().array()]).optional(), - workspaceUserId: z.string().optional().nullable(), - createdAt: z.coerce.date().optional(), - privacyPermissionsId: z.string().optional().nullable(), - notificationPermissionsId: z.string().optional().nullable(), - get privacyPermissions(){ return PrivacyPermissionsUncheckedCreateNestedOneWithoutUserInputObjectSchema.optional(); }, - get notificationPermissions(){ return NotificationPermissionsUncheckedCreateNestedOneWithoutUserInputObjectSchema.optional(); }, - get attendee(){ return AttendeeUncheckedCreateNestedManyWithoutUserInputObjectSchema.optional(); }, - get personalMark(){ return PersonalMarkUncheckedCreateNestedManyWithoutUserInputObjectSchema.optional(); }, - get groupMemberships(){ return GroupMembershipUncheckedCreateNestedManyWithoutUserInputObjectSchema.optional(); }, - get memberships(){ return MembershipUncheckedCreateNestedManyWithoutUserInputObjectSchema.optional(); }, - get givenMarks(){ return PersonalMarkUncheckedCreateNestedManyWithoutGivenByInputObjectSchema.optional(); }, - get attendeesRefunded(){ return AttendeeUncheckedCreateNestedManyWithoutPaymentRefundedByInputObjectSchema.optional(); }, - get auditLogs(){ return AuditLogUncheckedCreateNestedManyWithoutUserInputObjectSchema.optional(); }, - get deregisterReasons(){ return DeregisterReasonUncheckedCreateNestedManyWithoutUserInputObjectSchema.optional(); }, - get notificationsReceived(){ return NotificationRecipientUncheckedCreateNestedManyWithoutUserInputObjectSchema.optional(); }, - get notificationsCreated(){ return NotificationUncheckedCreateNestedManyWithoutCreatedByInputObjectSchema.optional(); }, - get notificationsUpdated(){ return NotificationUncheckedCreateNestedManyWithoutLastUpdatedByInputObjectSchema.optional(); }, - get contestants(){ return ContestantUncheckedCreateNestedManyWithoutUserInputObjectSchema.optional(); }, - get contestTeams(){ return ContestTeamUncheckedCreateNestedManyWithoutMembersInputObjectSchema.optional(); } -}).strict(); -export const UserUncheckedCreateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_UserUncheckedCreateInput_schema) as unknown as z.ZodType; -export const UserUncheckedCreateInputObjectZodSchema = z.lazy(__makeSchema_UserUncheckedCreateInput_schema); - - -// File: UserUpdateInput.schema.ts -const __makeSchema_UserUpdateInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - username: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - name: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - email: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - imageUrl: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - biography: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - phone: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - gender: z.union([GenderSchema, EnumGenderFieldUpdateOperationsInputObjectSchema]).optional(), - dietaryRestrictions: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - ntnuUsername: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - flags: z.union([UserUpdateflagsInputObjectSchema, z.string().array()]).optional(), - workspaceUserId: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - createdAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - updatedAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - privacyPermissionsId: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - notificationPermissionsId: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - get privacyPermissions(){ return PrivacyPermissionsUpdateOneWithoutUserNestedInputObjectSchema.optional(); }, - get notificationPermissions(){ return NotificationPermissionsUpdateOneWithoutUserNestedInputObjectSchema.optional(); }, - get attendee(){ return AttendeeUpdateManyWithoutUserNestedInputObjectSchema.optional(); }, - get personalMark(){ return PersonalMarkUpdateManyWithoutUserNestedInputObjectSchema.optional(); }, - get groupMemberships(){ return GroupMembershipUpdateManyWithoutUserNestedInputObjectSchema.optional(); }, - get memberships(){ return MembershipUpdateManyWithoutUserNestedInputObjectSchema.optional(); }, - get givenMarks(){ return PersonalMarkUpdateManyWithoutGivenByNestedInputObjectSchema.optional(); }, - get attendeesRefunded(){ return AttendeeUpdateManyWithoutPaymentRefundedByNestedInputObjectSchema.optional(); }, - get auditLogs(){ return AuditLogUpdateManyWithoutUserNestedInputObjectSchema.optional(); }, - get deregisterReasons(){ return DeregisterReasonUpdateManyWithoutUserNestedInputObjectSchema.optional(); }, - get notificationsReceived(){ return NotificationRecipientUpdateManyWithoutUserNestedInputObjectSchema.optional(); }, - get notificationsCreated(){ return NotificationUpdateManyWithoutCreatedByNestedInputObjectSchema.optional(); }, - get notificationsUpdated(){ return NotificationUpdateManyWithoutLastUpdatedByNestedInputObjectSchema.optional(); }, - get contestants(){ return ContestantUpdateManyWithoutUserNestedInputObjectSchema.optional(); }, - get contestTeams(){ return ContestTeamUpdateManyWithoutMembersNestedInputObjectSchema.optional(); } -}).strict(); -export const UserUpdateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_UserUpdateInput_schema) as unknown as z.ZodType; -export const UserUpdateInputObjectZodSchema = z.lazy(__makeSchema_UserUpdateInput_schema); - - -// File: UserUncheckedUpdateInput.schema.ts -const __makeSchema_UserUncheckedUpdateInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - username: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - name: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - email: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - imageUrl: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - biography: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - phone: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - gender: z.union([GenderSchema, EnumGenderFieldUpdateOperationsInputObjectSchema]).optional(), - dietaryRestrictions: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - ntnuUsername: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - flags: z.union([UserUpdateflagsInputObjectSchema, z.string().array()]).optional(), - workspaceUserId: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - createdAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - updatedAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - privacyPermissionsId: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - notificationPermissionsId: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - get privacyPermissions(){ return PrivacyPermissionsUncheckedUpdateOneWithoutUserNestedInputObjectSchema.optional(); }, - get notificationPermissions(){ return NotificationPermissionsUncheckedUpdateOneWithoutUserNestedInputObjectSchema.optional(); }, - get attendee(){ return AttendeeUncheckedUpdateManyWithoutUserNestedInputObjectSchema.optional(); }, - get personalMark(){ return PersonalMarkUncheckedUpdateManyWithoutUserNestedInputObjectSchema.optional(); }, - get groupMemberships(){ return GroupMembershipUncheckedUpdateManyWithoutUserNestedInputObjectSchema.optional(); }, - get memberships(){ return MembershipUncheckedUpdateManyWithoutUserNestedInputObjectSchema.optional(); }, - get givenMarks(){ return PersonalMarkUncheckedUpdateManyWithoutGivenByNestedInputObjectSchema.optional(); }, - get attendeesRefunded(){ return AttendeeUncheckedUpdateManyWithoutPaymentRefundedByNestedInputObjectSchema.optional(); }, - get auditLogs(){ return AuditLogUncheckedUpdateManyWithoutUserNestedInputObjectSchema.optional(); }, - get deregisterReasons(){ return DeregisterReasonUncheckedUpdateManyWithoutUserNestedInputObjectSchema.optional(); }, - get notificationsReceived(){ return NotificationRecipientUncheckedUpdateManyWithoutUserNestedInputObjectSchema.optional(); }, - get notificationsCreated(){ return NotificationUncheckedUpdateManyWithoutCreatedByNestedInputObjectSchema.optional(); }, - get notificationsUpdated(){ return NotificationUncheckedUpdateManyWithoutLastUpdatedByNestedInputObjectSchema.optional(); }, - get contestants(){ return ContestantUncheckedUpdateManyWithoutUserNestedInputObjectSchema.optional(); }, - get contestTeams(){ return ContestTeamUncheckedUpdateManyWithoutMembersNestedInputObjectSchema.optional(); } -}).strict(); -export const UserUncheckedUpdateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_UserUncheckedUpdateInput_schema) as unknown as z.ZodType; -export const UserUncheckedUpdateInputObjectZodSchema = z.lazy(__makeSchema_UserUncheckedUpdateInput_schema); - - -// File: UserCreateManyInput.schema.ts -const __makeSchema_UserCreateManyInput_schema = () => z.object({ - id: z.string(), - username: z.string(), - name: z.string().optional().nullable(), - email: z.string().optional().nullable(), - imageUrl: z.string().optional().nullable(), - biography: z.string().optional().nullable(), - phone: z.string().optional().nullable(), - gender: GenderSchema.optional(), - dietaryRestrictions: z.string().optional().nullable(), - ntnuUsername: z.string().optional().nullable(), - flags: z.union([UserCreateflagsInputObjectSchema, z.string().array()]).optional(), - workspaceUserId: z.string().optional().nullable(), - createdAt: z.coerce.date().optional(), - updatedAt: z.coerce.date().optional(), - privacyPermissionsId: z.string().optional().nullable(), - notificationPermissionsId: z.string().optional().nullable() -}).strict(); -export const UserCreateManyInputObjectSchema: z.ZodType = z.lazy(__makeSchema_UserCreateManyInput_schema) as unknown as z.ZodType; -export const UserCreateManyInputObjectZodSchema = z.lazy(__makeSchema_UserCreateManyInput_schema); - - -// File: UserUpdateManyMutationInput.schema.ts -const __makeSchema_UserUpdateManyMutationInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - username: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - name: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - email: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - imageUrl: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - biography: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - phone: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - gender: z.union([GenderSchema, EnumGenderFieldUpdateOperationsInputObjectSchema]).optional(), - dietaryRestrictions: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - ntnuUsername: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - flags: z.union([UserUpdateflagsInputObjectSchema, z.string().array()]).optional(), - workspaceUserId: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - createdAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - updatedAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - privacyPermissionsId: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - notificationPermissionsId: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable() -}).strict(); -export const UserUpdateManyMutationInputObjectSchema: z.ZodType = z.lazy(__makeSchema_UserUpdateManyMutationInput_schema) as unknown as z.ZodType; -export const UserUpdateManyMutationInputObjectZodSchema = z.lazy(__makeSchema_UserUpdateManyMutationInput_schema); - - -// File: UserUncheckedUpdateManyInput.schema.ts -const __makeSchema_UserUncheckedUpdateManyInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - username: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - name: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - email: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - imageUrl: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - biography: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - phone: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - gender: z.union([GenderSchema, EnumGenderFieldUpdateOperationsInputObjectSchema]).optional(), - dietaryRestrictions: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - ntnuUsername: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - flags: z.union([UserUpdateflagsInputObjectSchema, z.string().array()]).optional(), - workspaceUserId: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - createdAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - updatedAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - privacyPermissionsId: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - notificationPermissionsId: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable() -}).strict(); -export const UserUncheckedUpdateManyInputObjectSchema: z.ZodType = z.lazy(__makeSchema_UserUncheckedUpdateManyInput_schema) as unknown as z.ZodType; -export const UserUncheckedUpdateManyInputObjectZodSchema = z.lazy(__makeSchema_UserUncheckedUpdateManyInput_schema); - - -// File: CompanyCreateInput.schema.ts -const __makeSchema_CompanyCreateInput_schema = () => z.object({ - id: z.string().optional(), - name: z.string(), - slug: z.string(), - description: z.string().optional().nullable(), - phone: z.string().optional().nullable(), - email: z.string().optional().nullable(), - website: z.string(), - location: z.string().optional().nullable(), - imageUrl: z.string().optional().nullable(), - createdAt: z.coerce.date().optional(), - get events(){ return EventCompanyCreateNestedManyWithoutCompanyInputObjectSchema.optional(); }, - get JobListing(){ return JobListingCreateNestedManyWithoutCompanyInputObjectSchema.optional(); } -}).strict(); -export const CompanyCreateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_CompanyCreateInput_schema) as unknown as z.ZodType; -export const CompanyCreateInputObjectZodSchema = z.lazy(__makeSchema_CompanyCreateInput_schema); - - -// File: CompanyUncheckedCreateInput.schema.ts -const __makeSchema_CompanyUncheckedCreateInput_schema = () => z.object({ - id: z.string().optional(), - name: z.string(), - slug: z.string(), - description: z.string().optional().nullable(), - phone: z.string().optional().nullable(), - email: z.string().optional().nullable(), - website: z.string(), - location: z.string().optional().nullable(), - imageUrl: z.string().optional().nullable(), - createdAt: z.coerce.date().optional(), - get events(){ return EventCompanyUncheckedCreateNestedManyWithoutCompanyInputObjectSchema.optional(); }, - get JobListing(){ return JobListingUncheckedCreateNestedManyWithoutCompanyInputObjectSchema.optional(); } -}).strict(); -export const CompanyUncheckedCreateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_CompanyUncheckedCreateInput_schema) as unknown as z.ZodType; -export const CompanyUncheckedCreateInputObjectZodSchema = z.lazy(__makeSchema_CompanyUncheckedCreateInput_schema); - - -// File: CompanyUpdateInput.schema.ts -const __makeSchema_CompanyUpdateInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - name: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - slug: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - description: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - phone: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - email: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - website: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - location: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - imageUrl: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - createdAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - updatedAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - get events(){ return EventCompanyUpdateManyWithoutCompanyNestedInputObjectSchema.optional(); }, - get JobListing(){ return JobListingUpdateManyWithoutCompanyNestedInputObjectSchema.optional(); } -}).strict(); -export const CompanyUpdateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_CompanyUpdateInput_schema) as unknown as z.ZodType; -export const CompanyUpdateInputObjectZodSchema = z.lazy(__makeSchema_CompanyUpdateInput_schema); - - -// File: CompanyUncheckedUpdateInput.schema.ts -const __makeSchema_CompanyUncheckedUpdateInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - name: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - slug: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - description: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - phone: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - email: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - website: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - location: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - imageUrl: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - createdAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - updatedAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - get events(){ return EventCompanyUncheckedUpdateManyWithoutCompanyNestedInputObjectSchema.optional(); }, - get JobListing(){ return JobListingUncheckedUpdateManyWithoutCompanyNestedInputObjectSchema.optional(); } -}).strict(); -export const CompanyUncheckedUpdateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_CompanyUncheckedUpdateInput_schema) as unknown as z.ZodType; -export const CompanyUncheckedUpdateInputObjectZodSchema = z.lazy(__makeSchema_CompanyUncheckedUpdateInput_schema); - - -// File: CompanyCreateManyInput.schema.ts -const __makeSchema_CompanyCreateManyInput_schema = () => z.object({ - id: z.string().optional(), - name: z.string(), - slug: z.string(), - description: z.string().optional().nullable(), - phone: z.string().optional().nullable(), - email: z.string().optional().nullable(), - website: z.string(), - location: z.string().optional().nullable(), - imageUrl: z.string().optional().nullable(), - createdAt: z.coerce.date().optional(), - updatedAt: z.coerce.date().optional() -}).strict(); -export const CompanyCreateManyInputObjectSchema: z.ZodType = z.lazy(__makeSchema_CompanyCreateManyInput_schema) as unknown as z.ZodType; -export const CompanyCreateManyInputObjectZodSchema = z.lazy(__makeSchema_CompanyCreateManyInput_schema); - - -// File: CompanyUpdateManyMutationInput.schema.ts -const __makeSchema_CompanyUpdateManyMutationInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - name: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - slug: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - description: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - phone: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - email: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - website: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - location: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - imageUrl: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - createdAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - updatedAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional() -}).strict(); -export const CompanyUpdateManyMutationInputObjectSchema: z.ZodType = z.lazy(__makeSchema_CompanyUpdateManyMutationInput_schema) as unknown as z.ZodType; -export const CompanyUpdateManyMutationInputObjectZodSchema = z.lazy(__makeSchema_CompanyUpdateManyMutationInput_schema); - - -// File: CompanyUncheckedUpdateManyInput.schema.ts -const __makeSchema_CompanyUncheckedUpdateManyInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - name: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - slug: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - description: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - phone: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - email: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - website: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - location: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - imageUrl: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - createdAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - updatedAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional() -}).strict(); -export const CompanyUncheckedUpdateManyInputObjectSchema: z.ZodType = z.lazy(__makeSchema_CompanyUncheckedUpdateManyInput_schema) as unknown as z.ZodType; -export const CompanyUncheckedUpdateManyInputObjectZodSchema = z.lazy(__makeSchema_CompanyUncheckedUpdateManyInput_schema); - - -// File: GroupCreateInput.schema.ts -const __makeSchema_GroupCreateInput_schema = () => z.object({ - slug: z.string(), - abbreviation: z.string(), - name: z.string().optional().nullable(), - shortDescription: z.string().optional().nullable(), - description: z.string(), - imageUrl: z.string().optional().nullable(), - email: z.string().optional().nullable(), - contactUrl: z.string().optional().nullable(), - slackUrl: z.string().optional().nullable(), - showLeaderAsContact: z.boolean().optional(), - createdAt: z.coerce.date().optional(), - deactivatedAt: z.coerce.date().optional().nullable(), - workspaceGroupId: z.string().optional().nullable(), - memberVisibility: GroupMemberVisibilitySchema.optional(), - recruitmentMethod: GroupRecruitmentMethodSchema.optional(), - type: GroupTypeSchema, - get events(){ return EventHostingGroupCreateNestedManyWithoutGroupInputObjectSchema.optional(); }, - get contests(){ return ContestCreateNestedManyWithoutGroupsInputObjectSchema.optional(); }, - get memberships(){ return GroupMembershipCreateNestedManyWithoutGroupInputObjectSchema.optional(); }, - get marks(){ return MarkGroupCreateNestedManyWithoutGroupInputObjectSchema.optional(); }, - get roles(){ return GroupRoleCreateNestedManyWithoutGroupInputObjectSchema.optional(); }, - get notifications(){ return NotificationCreateNestedManyWithoutActorGroupInputObjectSchema.optional(); } -}).strict(); -export const GroupCreateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_GroupCreateInput_schema) as unknown as z.ZodType; -export const GroupCreateInputObjectZodSchema = z.lazy(__makeSchema_GroupCreateInput_schema); - - -// File: GroupUncheckedCreateInput.schema.ts -const __makeSchema_GroupUncheckedCreateInput_schema = () => z.object({ - slug: z.string(), - abbreviation: z.string(), - name: z.string().optional().nullable(), - shortDescription: z.string().optional().nullable(), - description: z.string(), - imageUrl: z.string().optional().nullable(), - email: z.string().optional().nullable(), - contactUrl: z.string().optional().nullable(), - slackUrl: z.string().optional().nullable(), - showLeaderAsContact: z.boolean().optional(), - createdAt: z.coerce.date().optional(), - deactivatedAt: z.coerce.date().optional().nullable(), - workspaceGroupId: z.string().optional().nullable(), - memberVisibility: GroupMemberVisibilitySchema.optional(), - recruitmentMethod: GroupRecruitmentMethodSchema.optional(), - type: GroupTypeSchema, - get events(){ return EventHostingGroupUncheckedCreateNestedManyWithoutGroupInputObjectSchema.optional(); }, - get contests(){ return ContestUncheckedCreateNestedManyWithoutGroupsInputObjectSchema.optional(); }, - get memberships(){ return GroupMembershipUncheckedCreateNestedManyWithoutGroupInputObjectSchema.optional(); }, - get marks(){ return MarkGroupUncheckedCreateNestedManyWithoutGroupInputObjectSchema.optional(); }, - get roles(){ return GroupRoleUncheckedCreateNestedManyWithoutGroupInputObjectSchema.optional(); }, - get notifications(){ return NotificationUncheckedCreateNestedManyWithoutActorGroupInputObjectSchema.optional(); } -}).strict(); -export const GroupUncheckedCreateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_GroupUncheckedCreateInput_schema) as unknown as z.ZodType; -export const GroupUncheckedCreateInputObjectZodSchema = z.lazy(__makeSchema_GroupUncheckedCreateInput_schema); - - -// File: GroupUpdateInput.schema.ts -const __makeSchema_GroupUpdateInput_schema = () => z.object({ - slug: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - abbreviation: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - name: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - shortDescription: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - description: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - imageUrl: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - email: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - contactUrl: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - slackUrl: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - showLeaderAsContact: z.union([z.boolean(), BoolFieldUpdateOperationsInputObjectSchema]).optional(), - createdAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - deactivatedAt: z.union([z.coerce.date(), NullableDateTimeFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - workspaceGroupId: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - memberVisibility: z.union([GroupMemberVisibilitySchema, EnumGroupMemberVisibilityFieldUpdateOperationsInputObjectSchema]).optional(), - recruitmentMethod: z.union([GroupRecruitmentMethodSchema, EnumGroupRecruitmentMethodFieldUpdateOperationsInputObjectSchema]).optional(), - type: z.union([GroupTypeSchema, EnumGroupTypeFieldUpdateOperationsInputObjectSchema]).optional(), - get events(){ return EventHostingGroupUpdateManyWithoutGroupNestedInputObjectSchema.optional(); }, - get contests(){ return ContestUpdateManyWithoutGroupsNestedInputObjectSchema.optional(); }, - get memberships(){ return GroupMembershipUpdateManyWithoutGroupNestedInputObjectSchema.optional(); }, - get marks(){ return MarkGroupUpdateManyWithoutGroupNestedInputObjectSchema.optional(); }, - get roles(){ return GroupRoleUpdateManyWithoutGroupNestedInputObjectSchema.optional(); }, - get notifications(){ return NotificationUpdateManyWithoutActorGroupNestedInputObjectSchema.optional(); } -}).strict(); -export const GroupUpdateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_GroupUpdateInput_schema) as unknown as z.ZodType; -export const GroupUpdateInputObjectZodSchema = z.lazy(__makeSchema_GroupUpdateInput_schema); - - -// File: GroupUncheckedUpdateInput.schema.ts -const __makeSchema_GroupUncheckedUpdateInput_schema = () => z.object({ - slug: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - abbreviation: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - name: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - shortDescription: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - description: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - imageUrl: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - email: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - contactUrl: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - slackUrl: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - showLeaderAsContact: z.union([z.boolean(), BoolFieldUpdateOperationsInputObjectSchema]).optional(), - createdAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - deactivatedAt: z.union([z.coerce.date(), NullableDateTimeFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - workspaceGroupId: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - memberVisibility: z.union([GroupMemberVisibilitySchema, EnumGroupMemberVisibilityFieldUpdateOperationsInputObjectSchema]).optional(), - recruitmentMethod: z.union([GroupRecruitmentMethodSchema, EnumGroupRecruitmentMethodFieldUpdateOperationsInputObjectSchema]).optional(), - type: z.union([GroupTypeSchema, EnumGroupTypeFieldUpdateOperationsInputObjectSchema]).optional(), - get events(){ return EventHostingGroupUncheckedUpdateManyWithoutGroupNestedInputObjectSchema.optional(); }, - get contests(){ return ContestUncheckedUpdateManyWithoutGroupsNestedInputObjectSchema.optional(); }, - get memberships(){ return GroupMembershipUncheckedUpdateManyWithoutGroupNestedInputObjectSchema.optional(); }, - get marks(){ return MarkGroupUncheckedUpdateManyWithoutGroupNestedInputObjectSchema.optional(); }, - get roles(){ return GroupRoleUncheckedUpdateManyWithoutGroupNestedInputObjectSchema.optional(); }, - get notifications(){ return NotificationUncheckedUpdateManyWithoutActorGroupNestedInputObjectSchema.optional(); } -}).strict(); -export const GroupUncheckedUpdateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_GroupUncheckedUpdateInput_schema) as unknown as z.ZodType; -export const GroupUncheckedUpdateInputObjectZodSchema = z.lazy(__makeSchema_GroupUncheckedUpdateInput_schema); - - -// File: GroupCreateManyInput.schema.ts -const __makeSchema_GroupCreateManyInput_schema = () => z.object({ - slug: z.string(), - abbreviation: z.string(), - name: z.string().optional().nullable(), - shortDescription: z.string().optional().nullable(), - description: z.string(), - imageUrl: z.string().optional().nullable(), - email: z.string().optional().nullable(), - contactUrl: z.string().optional().nullable(), - slackUrl: z.string().optional().nullable(), - showLeaderAsContact: z.boolean().optional(), - createdAt: z.coerce.date().optional(), - deactivatedAt: z.coerce.date().optional().nullable(), - workspaceGroupId: z.string().optional().nullable(), - memberVisibility: GroupMemberVisibilitySchema.optional(), - recruitmentMethod: GroupRecruitmentMethodSchema.optional(), - type: GroupTypeSchema -}).strict(); -export const GroupCreateManyInputObjectSchema: z.ZodType = z.lazy(__makeSchema_GroupCreateManyInput_schema) as unknown as z.ZodType; -export const GroupCreateManyInputObjectZodSchema = z.lazy(__makeSchema_GroupCreateManyInput_schema); - - -// File: GroupUpdateManyMutationInput.schema.ts -const __makeSchema_GroupUpdateManyMutationInput_schema = () => z.object({ - slug: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - abbreviation: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - name: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - shortDescription: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - description: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - imageUrl: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - email: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - contactUrl: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - slackUrl: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - showLeaderAsContact: z.union([z.boolean(), BoolFieldUpdateOperationsInputObjectSchema]).optional(), - createdAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - deactivatedAt: z.union([z.coerce.date(), NullableDateTimeFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - workspaceGroupId: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - memberVisibility: z.union([GroupMemberVisibilitySchema, EnumGroupMemberVisibilityFieldUpdateOperationsInputObjectSchema]).optional(), - recruitmentMethod: z.union([GroupRecruitmentMethodSchema, EnumGroupRecruitmentMethodFieldUpdateOperationsInputObjectSchema]).optional(), - type: z.union([GroupTypeSchema, EnumGroupTypeFieldUpdateOperationsInputObjectSchema]).optional() -}).strict(); -export const GroupUpdateManyMutationInputObjectSchema: z.ZodType = z.lazy(__makeSchema_GroupUpdateManyMutationInput_schema) as unknown as z.ZodType; -export const GroupUpdateManyMutationInputObjectZodSchema = z.lazy(__makeSchema_GroupUpdateManyMutationInput_schema); - - -// File: GroupUncheckedUpdateManyInput.schema.ts -const __makeSchema_GroupUncheckedUpdateManyInput_schema = () => z.object({ - slug: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - abbreviation: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - name: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - shortDescription: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - description: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - imageUrl: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - email: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - contactUrl: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - slackUrl: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - showLeaderAsContact: z.union([z.boolean(), BoolFieldUpdateOperationsInputObjectSchema]).optional(), - createdAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - deactivatedAt: z.union([z.coerce.date(), NullableDateTimeFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - workspaceGroupId: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - memberVisibility: z.union([GroupMemberVisibilitySchema, EnumGroupMemberVisibilityFieldUpdateOperationsInputObjectSchema]).optional(), - recruitmentMethod: z.union([GroupRecruitmentMethodSchema, EnumGroupRecruitmentMethodFieldUpdateOperationsInputObjectSchema]).optional(), - type: z.union([GroupTypeSchema, EnumGroupTypeFieldUpdateOperationsInputObjectSchema]).optional() -}).strict(); -export const GroupUncheckedUpdateManyInputObjectSchema: z.ZodType = z.lazy(__makeSchema_GroupUncheckedUpdateManyInput_schema) as unknown as z.ZodType; -export const GroupUncheckedUpdateManyInputObjectZodSchema = z.lazy(__makeSchema_GroupUncheckedUpdateManyInput_schema); - - -// File: GroupMembershipCreateInput.schema.ts -const __makeSchema_GroupMembershipCreateInput_schema = () => z.object({ - id: z.string().optional(), - start: z.coerce.date(), - end: z.coerce.date().optional().nullable(), - createdAt: z.coerce.date().optional(), - get group(){ return GroupCreateNestedOneWithoutMembershipsInputObjectSchema; }, - get user(){ return UserCreateNestedOneWithoutGroupMembershipsInputObjectSchema; }, - get roles(){ return GroupMembershipRoleCreateNestedManyWithoutMembershipInputObjectSchema.optional(); } -}).strict(); -export const GroupMembershipCreateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_GroupMembershipCreateInput_schema) as unknown as z.ZodType; -export const GroupMembershipCreateInputObjectZodSchema = z.lazy(__makeSchema_GroupMembershipCreateInput_schema); - - -// File: GroupMembershipUncheckedCreateInput.schema.ts -const __makeSchema_GroupMembershipUncheckedCreateInput_schema = () => z.object({ - id: z.string().optional(), - start: z.coerce.date(), - end: z.coerce.date().optional().nullable(), - createdAt: z.coerce.date().optional(), - groupId: z.string(), - userId: z.string(), - get roles(){ return GroupMembershipRoleUncheckedCreateNestedManyWithoutMembershipInputObjectSchema.optional(); } -}).strict(); -export const GroupMembershipUncheckedCreateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_GroupMembershipUncheckedCreateInput_schema) as unknown as z.ZodType; -export const GroupMembershipUncheckedCreateInputObjectZodSchema = z.lazy(__makeSchema_GroupMembershipUncheckedCreateInput_schema); - - -// File: GroupMembershipUpdateInput.schema.ts -const __makeSchema_GroupMembershipUpdateInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - start: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - end: z.union([z.coerce.date(), NullableDateTimeFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - createdAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - updatedAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - get group(){ return GroupUpdateOneRequiredWithoutMembershipsNestedInputObjectSchema.optional(); }, - get user(){ return UserUpdateOneRequiredWithoutGroupMembershipsNestedInputObjectSchema.optional(); }, - get roles(){ return GroupMembershipRoleUpdateManyWithoutMembershipNestedInputObjectSchema.optional(); } -}).strict(); -export const GroupMembershipUpdateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_GroupMembershipUpdateInput_schema) as unknown as z.ZodType; -export const GroupMembershipUpdateInputObjectZodSchema = z.lazy(__makeSchema_GroupMembershipUpdateInput_schema); - - -// File: GroupMembershipUncheckedUpdateInput.schema.ts -const __makeSchema_GroupMembershipUncheckedUpdateInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - start: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - end: z.union([z.coerce.date(), NullableDateTimeFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - createdAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - updatedAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - groupId: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - userId: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - get roles(){ return GroupMembershipRoleUncheckedUpdateManyWithoutMembershipNestedInputObjectSchema.optional(); } -}).strict(); -export const GroupMembershipUncheckedUpdateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_GroupMembershipUncheckedUpdateInput_schema) as unknown as z.ZodType; -export const GroupMembershipUncheckedUpdateInputObjectZodSchema = z.lazy(__makeSchema_GroupMembershipUncheckedUpdateInput_schema); - - -// File: GroupMembershipCreateManyInput.schema.ts -const __makeSchema_GroupMembershipCreateManyInput_schema = () => z.object({ - id: z.string().optional(), - start: z.coerce.date(), - end: z.coerce.date().optional().nullable(), - createdAt: z.coerce.date().optional(), - updatedAt: z.coerce.date().optional(), - groupId: z.string(), - userId: z.string() -}).strict(); -export const GroupMembershipCreateManyInputObjectSchema: z.ZodType = z.lazy(__makeSchema_GroupMembershipCreateManyInput_schema) as unknown as z.ZodType; -export const GroupMembershipCreateManyInputObjectZodSchema = z.lazy(__makeSchema_GroupMembershipCreateManyInput_schema); - - -// File: GroupMembershipUpdateManyMutationInput.schema.ts -const __makeSchema_GroupMembershipUpdateManyMutationInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - start: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - end: z.union([z.coerce.date(), NullableDateTimeFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - createdAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - updatedAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional() -}).strict(); -export const GroupMembershipUpdateManyMutationInputObjectSchema: z.ZodType = z.lazy(__makeSchema_GroupMembershipUpdateManyMutationInput_schema) as unknown as z.ZodType; -export const GroupMembershipUpdateManyMutationInputObjectZodSchema = z.lazy(__makeSchema_GroupMembershipUpdateManyMutationInput_schema); - - -// File: GroupMembershipUncheckedUpdateManyInput.schema.ts -const __makeSchema_GroupMembershipUncheckedUpdateManyInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - start: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - end: z.union([z.coerce.date(), NullableDateTimeFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - createdAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - updatedAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - groupId: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - userId: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional() -}).strict(); -export const GroupMembershipUncheckedUpdateManyInputObjectSchema: z.ZodType = z.lazy(__makeSchema_GroupMembershipUncheckedUpdateManyInput_schema) as unknown as z.ZodType; -export const GroupMembershipUncheckedUpdateManyInputObjectZodSchema = z.lazy(__makeSchema_GroupMembershipUncheckedUpdateManyInput_schema); - - -// File: GroupMembershipRoleCreateInput.schema.ts -const __makeSchema_GroupMembershipRoleCreateInput_schema = () => z.object({ - get membership(){ return GroupMembershipCreateNestedOneWithoutRolesInputObjectSchema; }, - get role(){ return GroupRoleCreateNestedOneWithoutGroupMembershipRolesInputObjectSchema; } -}).strict(); -export const GroupMembershipRoleCreateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_GroupMembershipRoleCreateInput_schema) as unknown as z.ZodType; -export const GroupMembershipRoleCreateInputObjectZodSchema = z.lazy(__makeSchema_GroupMembershipRoleCreateInput_schema); - - -// File: GroupMembershipRoleUncheckedCreateInput.schema.ts -const __makeSchema_GroupMembershipRoleUncheckedCreateInput_schema = () => z.object({ - membershipId: z.string(), - roleId: z.string() -}).strict(); -export const GroupMembershipRoleUncheckedCreateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_GroupMembershipRoleUncheckedCreateInput_schema) as unknown as z.ZodType; -export const GroupMembershipRoleUncheckedCreateInputObjectZodSchema = z.lazy(__makeSchema_GroupMembershipRoleUncheckedCreateInput_schema); - - -// File: GroupMembershipRoleUpdateInput.schema.ts -const __makeSchema_GroupMembershipRoleUpdateInput_schema = () => z.object({ - get membership(){ return GroupMembershipUpdateOneRequiredWithoutRolesNestedInputObjectSchema.optional(); }, - get role(){ return GroupRoleUpdateOneRequiredWithoutGroupMembershipRolesNestedInputObjectSchema.optional(); } -}).strict(); -export const GroupMembershipRoleUpdateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_GroupMembershipRoleUpdateInput_schema) as unknown as z.ZodType; -export const GroupMembershipRoleUpdateInputObjectZodSchema = z.lazy(__makeSchema_GroupMembershipRoleUpdateInput_schema); - - -// File: GroupMembershipRoleUncheckedUpdateInput.schema.ts -const __makeSchema_GroupMembershipRoleUncheckedUpdateInput_schema = () => z.object({ - membershipId: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - roleId: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional() -}).strict(); -export const GroupMembershipRoleUncheckedUpdateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_GroupMembershipRoleUncheckedUpdateInput_schema) as unknown as z.ZodType; -export const GroupMembershipRoleUncheckedUpdateInputObjectZodSchema = z.lazy(__makeSchema_GroupMembershipRoleUncheckedUpdateInput_schema); - - -// File: GroupMembershipRoleCreateManyInput.schema.ts -const __makeSchema_GroupMembershipRoleCreateManyInput_schema = () => z.object({ - membershipId: z.string(), - roleId: z.string() -}).strict(); -export const GroupMembershipRoleCreateManyInputObjectSchema: z.ZodType = z.lazy(__makeSchema_GroupMembershipRoleCreateManyInput_schema) as unknown as z.ZodType; -export const GroupMembershipRoleCreateManyInputObjectZodSchema = z.lazy(__makeSchema_GroupMembershipRoleCreateManyInput_schema); - - -// File: GroupMembershipRoleUpdateManyMutationInput.schema.ts -const __makeSchema_GroupMembershipRoleUpdateManyMutationInput_schema = () => z.object({ - -}).strict(); -export const GroupMembershipRoleUpdateManyMutationInputObjectSchema: z.ZodType = z.lazy(__makeSchema_GroupMembershipRoleUpdateManyMutationInput_schema) as unknown as z.ZodType; -export const GroupMembershipRoleUpdateManyMutationInputObjectZodSchema = z.lazy(__makeSchema_GroupMembershipRoleUpdateManyMutationInput_schema); - - -// File: GroupMembershipRoleUncheckedUpdateManyInput.schema.ts -const __makeSchema_GroupMembershipRoleUncheckedUpdateManyInput_schema = () => z.object({ - membershipId: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - roleId: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional() -}).strict(); -export const GroupMembershipRoleUncheckedUpdateManyInputObjectSchema: z.ZodType = z.lazy(__makeSchema_GroupMembershipRoleUncheckedUpdateManyInput_schema) as unknown as z.ZodType; -export const GroupMembershipRoleUncheckedUpdateManyInputObjectZodSchema = z.lazy(__makeSchema_GroupMembershipRoleUncheckedUpdateManyInput_schema); - - -// File: GroupRoleCreateInput.schema.ts -const __makeSchema_GroupRoleCreateInput_schema = () => z.object({ - id: z.string().optional(), - name: z.string(), - type: GroupRoleTypeSchema.optional(), - get group(){ return GroupCreateNestedOneWithoutRolesInputObjectSchema; }, - get groupMembershipRoles(){ return GroupMembershipRoleCreateNestedManyWithoutRoleInputObjectSchema.optional(); } -}).strict(); -export const GroupRoleCreateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_GroupRoleCreateInput_schema) as unknown as z.ZodType; -export const GroupRoleCreateInputObjectZodSchema = z.lazy(__makeSchema_GroupRoleCreateInput_schema); - - -// File: GroupRoleUncheckedCreateInput.schema.ts -const __makeSchema_GroupRoleUncheckedCreateInput_schema = () => z.object({ - id: z.string().optional(), - name: z.string(), - type: GroupRoleTypeSchema.optional(), - groupId: z.string(), - get groupMembershipRoles(){ return GroupMembershipRoleUncheckedCreateNestedManyWithoutRoleInputObjectSchema.optional(); } -}).strict(); -export const GroupRoleUncheckedCreateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_GroupRoleUncheckedCreateInput_schema) as unknown as z.ZodType; -export const GroupRoleUncheckedCreateInputObjectZodSchema = z.lazy(__makeSchema_GroupRoleUncheckedCreateInput_schema); - - -// File: GroupRoleUpdateInput.schema.ts -const __makeSchema_GroupRoleUpdateInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - name: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - type: z.union([GroupRoleTypeSchema, EnumGroupRoleTypeFieldUpdateOperationsInputObjectSchema]).optional(), - get group(){ return GroupUpdateOneRequiredWithoutRolesNestedInputObjectSchema.optional(); }, - get groupMembershipRoles(){ return GroupMembershipRoleUpdateManyWithoutRoleNestedInputObjectSchema.optional(); } -}).strict(); -export const GroupRoleUpdateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_GroupRoleUpdateInput_schema) as unknown as z.ZodType; -export const GroupRoleUpdateInputObjectZodSchema = z.lazy(__makeSchema_GroupRoleUpdateInput_schema); - - -// File: GroupRoleUncheckedUpdateInput.schema.ts -const __makeSchema_GroupRoleUncheckedUpdateInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - name: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - type: z.union([GroupRoleTypeSchema, EnumGroupRoleTypeFieldUpdateOperationsInputObjectSchema]).optional(), - groupId: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - get groupMembershipRoles(){ return GroupMembershipRoleUncheckedUpdateManyWithoutRoleNestedInputObjectSchema.optional(); } -}).strict(); -export const GroupRoleUncheckedUpdateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_GroupRoleUncheckedUpdateInput_schema) as unknown as z.ZodType; -export const GroupRoleUncheckedUpdateInputObjectZodSchema = z.lazy(__makeSchema_GroupRoleUncheckedUpdateInput_schema); - - -// File: GroupRoleCreateManyInput.schema.ts -const __makeSchema_GroupRoleCreateManyInput_schema = () => z.object({ - id: z.string().optional(), - name: z.string(), - type: GroupRoleTypeSchema.optional(), - groupId: z.string() -}).strict(); -export const GroupRoleCreateManyInputObjectSchema: z.ZodType = z.lazy(__makeSchema_GroupRoleCreateManyInput_schema) as unknown as z.ZodType; -export const GroupRoleCreateManyInputObjectZodSchema = z.lazy(__makeSchema_GroupRoleCreateManyInput_schema); - - -// File: GroupRoleUpdateManyMutationInput.schema.ts -const __makeSchema_GroupRoleUpdateManyMutationInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - name: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - type: z.union([GroupRoleTypeSchema, EnumGroupRoleTypeFieldUpdateOperationsInputObjectSchema]).optional() -}).strict(); -export const GroupRoleUpdateManyMutationInputObjectSchema: z.ZodType = z.lazy(__makeSchema_GroupRoleUpdateManyMutationInput_schema) as unknown as z.ZodType; -export const GroupRoleUpdateManyMutationInputObjectZodSchema = z.lazy(__makeSchema_GroupRoleUpdateManyMutationInput_schema); - - -// File: GroupRoleUncheckedUpdateManyInput.schema.ts -const __makeSchema_GroupRoleUncheckedUpdateManyInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - name: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - type: z.union([GroupRoleTypeSchema, EnumGroupRoleTypeFieldUpdateOperationsInputObjectSchema]).optional(), - groupId: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional() -}).strict(); -export const GroupRoleUncheckedUpdateManyInputObjectSchema: z.ZodType = z.lazy(__makeSchema_GroupRoleUncheckedUpdateManyInput_schema) as unknown as z.ZodType; -export const GroupRoleUncheckedUpdateManyInputObjectZodSchema = z.lazy(__makeSchema_GroupRoleUncheckedUpdateManyInput_schema); - - -// File: AttendanceCreateInput.schema.ts -const __makeSchema_AttendanceCreateInput_schema = () => z.object({ - id: z.string().optional(), - registerStart: z.coerce.date(), - registerEnd: z.coerce.date(), - deregisterDeadline: z.coerce.date(), - selections: z.union([JsonNullValueInputSchema, jsonSchema]).optional(), - createdAt: z.coerce.date().optional(), - attendancePrice: z.number().int().optional().nullable(), - get pools(){ return AttendancePoolCreateNestedManyWithoutAttendanceInputObjectSchema.optional(); }, - get attendees(){ return AttendeeCreateNestedManyWithoutAttendanceInputObjectSchema.optional(); }, - get events(){ return EventCreateNestedManyWithoutAttendanceInputObjectSchema.optional(); } -}).strict(); -export const AttendanceCreateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_AttendanceCreateInput_schema) as unknown as z.ZodType; -export const AttendanceCreateInputObjectZodSchema = z.lazy(__makeSchema_AttendanceCreateInput_schema); - - -// File: AttendanceUncheckedCreateInput.schema.ts -const __makeSchema_AttendanceUncheckedCreateInput_schema = () => z.object({ - id: z.string().optional(), - registerStart: z.coerce.date(), - registerEnd: z.coerce.date(), - deregisterDeadline: z.coerce.date(), - selections: z.union([JsonNullValueInputSchema, jsonSchema]).optional(), - createdAt: z.coerce.date().optional(), - attendancePrice: z.number().int().optional().nullable(), - get pools(){ return AttendancePoolUncheckedCreateNestedManyWithoutAttendanceInputObjectSchema.optional(); }, - get attendees(){ return AttendeeUncheckedCreateNestedManyWithoutAttendanceInputObjectSchema.optional(); }, - get events(){ return EventUncheckedCreateNestedManyWithoutAttendanceInputObjectSchema.optional(); } -}).strict(); -export const AttendanceUncheckedCreateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_AttendanceUncheckedCreateInput_schema) as unknown as z.ZodType; -export const AttendanceUncheckedCreateInputObjectZodSchema = z.lazy(__makeSchema_AttendanceUncheckedCreateInput_schema); - - -// File: AttendanceUpdateInput.schema.ts -const __makeSchema_AttendanceUpdateInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - registerStart: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - registerEnd: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - deregisterDeadline: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - selections: z.union([JsonNullValueInputSchema, jsonSchema]).optional(), - createdAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - updatedAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - attendancePrice: z.union([z.number().int(), NullableIntFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - get pools(){ return AttendancePoolUpdateManyWithoutAttendanceNestedInputObjectSchema.optional(); }, - get attendees(){ return AttendeeUpdateManyWithoutAttendanceNestedInputObjectSchema.optional(); }, - get events(){ return EventUpdateManyWithoutAttendanceNestedInputObjectSchema.optional(); } -}).strict(); -export const AttendanceUpdateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_AttendanceUpdateInput_schema) as unknown as z.ZodType; -export const AttendanceUpdateInputObjectZodSchema = z.lazy(__makeSchema_AttendanceUpdateInput_schema); - - -// File: AttendanceUncheckedUpdateInput.schema.ts -const __makeSchema_AttendanceUncheckedUpdateInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - registerStart: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - registerEnd: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - deregisterDeadline: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - selections: z.union([JsonNullValueInputSchema, jsonSchema]).optional(), - createdAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - updatedAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - attendancePrice: z.union([z.number().int(), NullableIntFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - get pools(){ return AttendancePoolUncheckedUpdateManyWithoutAttendanceNestedInputObjectSchema.optional(); }, - get attendees(){ return AttendeeUncheckedUpdateManyWithoutAttendanceNestedInputObjectSchema.optional(); }, - get events(){ return EventUncheckedUpdateManyWithoutAttendanceNestedInputObjectSchema.optional(); } -}).strict(); -export const AttendanceUncheckedUpdateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_AttendanceUncheckedUpdateInput_schema) as unknown as z.ZodType; -export const AttendanceUncheckedUpdateInputObjectZodSchema = z.lazy(__makeSchema_AttendanceUncheckedUpdateInput_schema); - - -// File: AttendanceCreateManyInput.schema.ts -const __makeSchema_AttendanceCreateManyInput_schema = () => z.object({ - id: z.string().optional(), - registerStart: z.coerce.date(), - registerEnd: z.coerce.date(), - deregisterDeadline: z.coerce.date(), - selections: z.union([JsonNullValueInputSchema, jsonSchema]).optional(), - createdAt: z.coerce.date().optional(), - updatedAt: z.coerce.date().optional(), - attendancePrice: z.number().int().optional().nullable() -}).strict(); -export const AttendanceCreateManyInputObjectSchema: z.ZodType = z.lazy(__makeSchema_AttendanceCreateManyInput_schema) as unknown as z.ZodType; -export const AttendanceCreateManyInputObjectZodSchema = z.lazy(__makeSchema_AttendanceCreateManyInput_schema); - - -// File: AttendanceUpdateManyMutationInput.schema.ts -const __makeSchema_AttendanceUpdateManyMutationInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - registerStart: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - registerEnd: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - deregisterDeadline: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - selections: z.union([JsonNullValueInputSchema, jsonSchema]).optional(), - createdAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - updatedAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - attendancePrice: z.union([z.number().int(), NullableIntFieldUpdateOperationsInputObjectSchema]).optional().nullable() -}).strict(); -export const AttendanceUpdateManyMutationInputObjectSchema: z.ZodType = z.lazy(__makeSchema_AttendanceUpdateManyMutationInput_schema) as unknown as z.ZodType; -export const AttendanceUpdateManyMutationInputObjectZodSchema = z.lazy(__makeSchema_AttendanceUpdateManyMutationInput_schema); - - -// File: AttendanceUncheckedUpdateManyInput.schema.ts -const __makeSchema_AttendanceUncheckedUpdateManyInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - registerStart: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - registerEnd: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - deregisterDeadline: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - selections: z.union([JsonNullValueInputSchema, jsonSchema]).optional(), - createdAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - updatedAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - attendancePrice: z.union([z.number().int(), NullableIntFieldUpdateOperationsInputObjectSchema]).optional().nullable() -}).strict(); -export const AttendanceUncheckedUpdateManyInputObjectSchema: z.ZodType = z.lazy(__makeSchema_AttendanceUncheckedUpdateManyInput_schema) as unknown as z.ZodType; -export const AttendanceUncheckedUpdateManyInputObjectZodSchema = z.lazy(__makeSchema_AttendanceUncheckedUpdateManyInput_schema); - - -// File: AttendancePoolCreateInput.schema.ts -const __makeSchema_AttendancePoolCreateInput_schema = () => z.object({ - id: z.string().optional(), - title: z.string(), - mergeDelayHours: z.number().int().optional().nullable(), - yearCriteria: z.union([JsonNullValueInputSchema, jsonSchema]), - capacity: z.number().int(), - createdAt: z.coerce.date().optional(), - get attendance(){ return AttendanceCreateNestedOneWithoutPoolsInputObjectSchema; }, - get task(){ return TaskCreateNestedOneWithoutAttendancePoolsInputObjectSchema.optional(); }, - get attendees(){ return AttendeeCreateNestedManyWithoutAttendancePoolInputObjectSchema.optional(); } -}).strict(); -export const AttendancePoolCreateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_AttendancePoolCreateInput_schema) as unknown as z.ZodType; -export const AttendancePoolCreateInputObjectZodSchema = z.lazy(__makeSchema_AttendancePoolCreateInput_schema); - - -// File: AttendancePoolUncheckedCreateInput.schema.ts -const __makeSchema_AttendancePoolUncheckedCreateInput_schema = () => z.object({ - id: z.string().optional(), - title: z.string(), - mergeDelayHours: z.number().int().optional().nullable(), - yearCriteria: z.union([JsonNullValueInputSchema, jsonSchema]), - capacity: z.number().int(), - createdAt: z.coerce.date().optional(), - attendanceId: z.string(), - taskId: z.string().optional().nullable(), - get attendees(){ return AttendeeUncheckedCreateNestedManyWithoutAttendancePoolInputObjectSchema.optional(); } -}).strict(); -export const AttendancePoolUncheckedCreateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_AttendancePoolUncheckedCreateInput_schema) as unknown as z.ZodType; -export const AttendancePoolUncheckedCreateInputObjectZodSchema = z.lazy(__makeSchema_AttendancePoolUncheckedCreateInput_schema); - - -// File: AttendancePoolUpdateInput.schema.ts -const __makeSchema_AttendancePoolUpdateInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - title: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - mergeDelayHours: z.union([z.number().int(), NullableIntFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - yearCriteria: z.union([JsonNullValueInputSchema, jsonSchema]).optional(), - capacity: z.union([z.number().int(), IntFieldUpdateOperationsInputObjectSchema]).optional(), - createdAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - updatedAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - get attendance(){ return AttendanceUpdateOneRequiredWithoutPoolsNestedInputObjectSchema.optional(); }, - get task(){ return TaskUpdateOneWithoutAttendancePoolsNestedInputObjectSchema.optional(); }, - get attendees(){ return AttendeeUpdateManyWithoutAttendancePoolNestedInputObjectSchema.optional(); } -}).strict(); -export const AttendancePoolUpdateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_AttendancePoolUpdateInput_schema) as unknown as z.ZodType; -export const AttendancePoolUpdateInputObjectZodSchema = z.lazy(__makeSchema_AttendancePoolUpdateInput_schema); - - -// File: AttendancePoolUncheckedUpdateInput.schema.ts -const __makeSchema_AttendancePoolUncheckedUpdateInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - title: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - mergeDelayHours: z.union([z.number().int(), NullableIntFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - yearCriteria: z.union([JsonNullValueInputSchema, jsonSchema]).optional(), - capacity: z.union([z.number().int(), IntFieldUpdateOperationsInputObjectSchema]).optional(), - createdAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - updatedAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - attendanceId: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - taskId: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - get attendees(){ return AttendeeUncheckedUpdateManyWithoutAttendancePoolNestedInputObjectSchema.optional(); } -}).strict(); -export const AttendancePoolUncheckedUpdateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_AttendancePoolUncheckedUpdateInput_schema) as unknown as z.ZodType; -export const AttendancePoolUncheckedUpdateInputObjectZodSchema = z.lazy(__makeSchema_AttendancePoolUncheckedUpdateInput_schema); - - -// File: AttendancePoolCreateManyInput.schema.ts -const __makeSchema_AttendancePoolCreateManyInput_schema = () => z.object({ - id: z.string().optional(), - title: z.string(), - mergeDelayHours: z.number().int().optional().nullable(), - yearCriteria: z.union([JsonNullValueInputSchema, jsonSchema]), - capacity: z.number().int(), - createdAt: z.coerce.date().optional(), - updatedAt: z.coerce.date().optional(), - attendanceId: z.string(), - taskId: z.string().optional().nullable() -}).strict(); -export const AttendancePoolCreateManyInputObjectSchema: z.ZodType = z.lazy(__makeSchema_AttendancePoolCreateManyInput_schema) as unknown as z.ZodType; -export const AttendancePoolCreateManyInputObjectZodSchema = z.lazy(__makeSchema_AttendancePoolCreateManyInput_schema); - - -// File: AttendancePoolUpdateManyMutationInput.schema.ts -const __makeSchema_AttendancePoolUpdateManyMutationInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - title: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - mergeDelayHours: z.union([z.number().int(), NullableIntFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - yearCriteria: z.union([JsonNullValueInputSchema, jsonSchema]).optional(), - capacity: z.union([z.number().int(), IntFieldUpdateOperationsInputObjectSchema]).optional(), - createdAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - updatedAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional() -}).strict(); -export const AttendancePoolUpdateManyMutationInputObjectSchema: z.ZodType = z.lazy(__makeSchema_AttendancePoolUpdateManyMutationInput_schema) as unknown as z.ZodType; -export const AttendancePoolUpdateManyMutationInputObjectZodSchema = z.lazy(__makeSchema_AttendancePoolUpdateManyMutationInput_schema); - - -// File: AttendancePoolUncheckedUpdateManyInput.schema.ts -const __makeSchema_AttendancePoolUncheckedUpdateManyInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - title: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - mergeDelayHours: z.union([z.number().int(), NullableIntFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - yearCriteria: z.union([JsonNullValueInputSchema, jsonSchema]).optional(), - capacity: z.union([z.number().int(), IntFieldUpdateOperationsInputObjectSchema]).optional(), - createdAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - updatedAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - attendanceId: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - taskId: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable() -}).strict(); -export const AttendancePoolUncheckedUpdateManyInputObjectSchema: z.ZodType = z.lazy(__makeSchema_AttendancePoolUncheckedUpdateManyInput_schema) as unknown as z.ZodType; -export const AttendancePoolUncheckedUpdateManyInputObjectZodSchema = z.lazy(__makeSchema_AttendancePoolUncheckedUpdateManyInput_schema); - - -// File: AttendeeCreateInput.schema.ts -const __makeSchema_AttendeeCreateInput_schema = () => z.object({ - id: z.string().optional(), - userGrade: z.number().int().optional().nullable(), - selections: z.union([JsonNullValueInputSchema, jsonSchema]).optional(), - reserved: z.boolean(), - earliestReservationAt: z.coerce.date(), - attendedAt: z.coerce.date().optional().nullable(), - createdAt: z.coerce.date().optional(), - paymentDeadline: z.coerce.date().optional().nullable(), - paymentLink: z.string().optional().nullable(), - paymentId: z.string().optional().nullable(), - paymentReservedAt: z.coerce.date().optional().nullable(), - paymentChargeDeadline: z.coerce.date().optional().nullable(), - paymentChargedAt: z.coerce.date().optional().nullable(), - paymentRefundedAt: z.coerce.date().optional().nullable(), - paymentCheckoutUrl: z.string().optional().nullable(), - get feedbackFormAnswer(){ return FeedbackFormAnswerCreateNestedOneWithoutAttendeeInputObjectSchema.optional(); }, - get attendance(){ return AttendanceCreateNestedOneWithoutAttendeesInputObjectSchema; }, - get user(){ return UserCreateNestedOneWithoutAttendeeInputObjectSchema; }, - get attendancePool(){ return AttendancePoolCreateNestedOneWithoutAttendeesInputObjectSchema; }, - get paymentRefundedBy(){ return UserCreateNestedOneWithoutAttendeesRefundedInputObjectSchema.optional(); } -}).strict(); -export const AttendeeCreateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_AttendeeCreateInput_schema) as unknown as z.ZodType; -export const AttendeeCreateInputObjectZodSchema = z.lazy(__makeSchema_AttendeeCreateInput_schema); - - -// File: AttendeeUncheckedCreateInput.schema.ts -const __makeSchema_AttendeeUncheckedCreateInput_schema = () => z.object({ - id: z.string().optional(), - userGrade: z.number().int().optional().nullable(), - selections: z.union([JsonNullValueInputSchema, jsonSchema]).optional(), - reserved: z.boolean(), - earliestReservationAt: z.coerce.date(), - attendedAt: z.coerce.date().optional().nullable(), - createdAt: z.coerce.date().optional(), - paymentDeadline: z.coerce.date().optional().nullable(), - paymentLink: z.string().optional().nullable(), - paymentId: z.string().optional().nullable(), - paymentReservedAt: z.coerce.date().optional().nullable(), - paymentChargeDeadline: z.coerce.date().optional().nullable(), - paymentChargedAt: z.coerce.date().optional().nullable(), - paymentRefundedAt: z.coerce.date().optional().nullable(), - paymentCheckoutUrl: z.string().optional().nullable(), - attendanceId: z.string(), - userId: z.string(), - attendancePoolId: z.string(), - paymentRefundedById: z.string().optional().nullable(), - get feedbackFormAnswer(){ return FeedbackFormAnswerUncheckedCreateNestedOneWithoutAttendeeInputObjectSchema.optional(); } -}).strict(); -export const AttendeeUncheckedCreateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_AttendeeUncheckedCreateInput_schema) as unknown as z.ZodType; -export const AttendeeUncheckedCreateInputObjectZodSchema = z.lazy(__makeSchema_AttendeeUncheckedCreateInput_schema); - - -// File: AttendeeUpdateInput.schema.ts -const __makeSchema_AttendeeUpdateInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - userGrade: z.union([z.number().int(), NullableIntFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - selections: z.union([JsonNullValueInputSchema, jsonSchema]).optional(), - reserved: z.union([z.boolean(), BoolFieldUpdateOperationsInputObjectSchema]).optional(), - earliestReservationAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - attendedAt: z.union([z.coerce.date(), NullableDateTimeFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - createdAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - updatedAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - paymentDeadline: z.union([z.coerce.date(), NullableDateTimeFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - paymentLink: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - paymentId: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - paymentReservedAt: z.union([z.coerce.date(), NullableDateTimeFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - paymentChargeDeadline: z.union([z.coerce.date(), NullableDateTimeFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - paymentChargedAt: z.union([z.coerce.date(), NullableDateTimeFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - paymentRefundedAt: z.union([z.coerce.date(), NullableDateTimeFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - paymentCheckoutUrl: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - get feedbackFormAnswer(){ return FeedbackFormAnswerUpdateOneWithoutAttendeeNestedInputObjectSchema.optional(); }, - get attendance(){ return AttendanceUpdateOneRequiredWithoutAttendeesNestedInputObjectSchema.optional(); }, - get user(){ return UserUpdateOneRequiredWithoutAttendeeNestedInputObjectSchema.optional(); }, - get attendancePool(){ return AttendancePoolUpdateOneRequiredWithoutAttendeesNestedInputObjectSchema.optional(); }, - get paymentRefundedBy(){ return UserUpdateOneWithoutAttendeesRefundedNestedInputObjectSchema.optional(); } -}).strict(); -export const AttendeeUpdateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_AttendeeUpdateInput_schema) as unknown as z.ZodType; -export const AttendeeUpdateInputObjectZodSchema = z.lazy(__makeSchema_AttendeeUpdateInput_schema); - - -// File: AttendeeUncheckedUpdateInput.schema.ts -const __makeSchema_AttendeeUncheckedUpdateInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - userGrade: z.union([z.number().int(), NullableIntFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - selections: z.union([JsonNullValueInputSchema, jsonSchema]).optional(), - reserved: z.union([z.boolean(), BoolFieldUpdateOperationsInputObjectSchema]).optional(), - earliestReservationAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - attendedAt: z.union([z.coerce.date(), NullableDateTimeFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - createdAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - updatedAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - paymentDeadline: z.union([z.coerce.date(), NullableDateTimeFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - paymentLink: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - paymentId: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - paymentReservedAt: z.union([z.coerce.date(), NullableDateTimeFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - paymentChargeDeadline: z.union([z.coerce.date(), NullableDateTimeFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - paymentChargedAt: z.union([z.coerce.date(), NullableDateTimeFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - paymentRefundedAt: z.union([z.coerce.date(), NullableDateTimeFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - paymentCheckoutUrl: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - attendanceId: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - userId: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - attendancePoolId: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - paymentRefundedById: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - get feedbackFormAnswer(){ return FeedbackFormAnswerUncheckedUpdateOneWithoutAttendeeNestedInputObjectSchema.optional(); } -}).strict(); -export const AttendeeUncheckedUpdateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_AttendeeUncheckedUpdateInput_schema) as unknown as z.ZodType; -export const AttendeeUncheckedUpdateInputObjectZodSchema = z.lazy(__makeSchema_AttendeeUncheckedUpdateInput_schema); - - -// File: AttendeeCreateManyInput.schema.ts -const __makeSchema_AttendeeCreateManyInput_schema = () => z.object({ - id: z.string().optional(), - userGrade: z.number().int().optional().nullable(), - selections: z.union([JsonNullValueInputSchema, jsonSchema]).optional(), - reserved: z.boolean(), - earliestReservationAt: z.coerce.date(), - attendedAt: z.coerce.date().optional().nullable(), - createdAt: z.coerce.date().optional(), - updatedAt: z.coerce.date().optional(), - paymentDeadline: z.coerce.date().optional().nullable(), - paymentLink: z.string().optional().nullable(), - paymentId: z.string().optional().nullable(), - paymentReservedAt: z.coerce.date().optional().nullable(), - paymentChargeDeadline: z.coerce.date().optional().nullable(), - paymentChargedAt: z.coerce.date().optional().nullable(), - paymentRefundedAt: z.coerce.date().optional().nullable(), - paymentCheckoutUrl: z.string().optional().nullable(), - attendanceId: z.string(), - userId: z.string(), - attendancePoolId: z.string(), - paymentRefundedById: z.string().optional().nullable() -}).strict(); -export const AttendeeCreateManyInputObjectSchema: z.ZodType = z.lazy(__makeSchema_AttendeeCreateManyInput_schema) as unknown as z.ZodType; -export const AttendeeCreateManyInputObjectZodSchema = z.lazy(__makeSchema_AttendeeCreateManyInput_schema); - - -// File: AttendeeUpdateManyMutationInput.schema.ts -const __makeSchema_AttendeeUpdateManyMutationInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - userGrade: z.union([z.number().int(), NullableIntFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - selections: z.union([JsonNullValueInputSchema, jsonSchema]).optional(), - reserved: z.union([z.boolean(), BoolFieldUpdateOperationsInputObjectSchema]).optional(), - earliestReservationAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - attendedAt: z.union([z.coerce.date(), NullableDateTimeFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - createdAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - updatedAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - paymentDeadline: z.union([z.coerce.date(), NullableDateTimeFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - paymentLink: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - paymentId: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - paymentReservedAt: z.union([z.coerce.date(), NullableDateTimeFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - paymentChargeDeadline: z.union([z.coerce.date(), NullableDateTimeFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - paymentChargedAt: z.union([z.coerce.date(), NullableDateTimeFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - paymentRefundedAt: z.union([z.coerce.date(), NullableDateTimeFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - paymentCheckoutUrl: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable() -}).strict(); -export const AttendeeUpdateManyMutationInputObjectSchema: z.ZodType = z.lazy(__makeSchema_AttendeeUpdateManyMutationInput_schema) as unknown as z.ZodType; -export const AttendeeUpdateManyMutationInputObjectZodSchema = z.lazy(__makeSchema_AttendeeUpdateManyMutationInput_schema); - - -// File: AttendeeUncheckedUpdateManyInput.schema.ts -const __makeSchema_AttendeeUncheckedUpdateManyInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - userGrade: z.union([z.number().int(), NullableIntFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - selections: z.union([JsonNullValueInputSchema, jsonSchema]).optional(), - reserved: z.union([z.boolean(), BoolFieldUpdateOperationsInputObjectSchema]).optional(), - earliestReservationAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - attendedAt: z.union([z.coerce.date(), NullableDateTimeFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - createdAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - updatedAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - paymentDeadline: z.union([z.coerce.date(), NullableDateTimeFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - paymentLink: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - paymentId: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - paymentReservedAt: z.union([z.coerce.date(), NullableDateTimeFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - paymentChargeDeadline: z.union([z.coerce.date(), NullableDateTimeFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - paymentChargedAt: z.union([z.coerce.date(), NullableDateTimeFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - paymentRefundedAt: z.union([z.coerce.date(), NullableDateTimeFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - paymentCheckoutUrl: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - attendanceId: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - userId: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - attendancePoolId: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - paymentRefundedById: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable() -}).strict(); -export const AttendeeUncheckedUpdateManyInputObjectSchema: z.ZodType = z.lazy(__makeSchema_AttendeeUncheckedUpdateManyInput_schema) as unknown as z.ZodType; -export const AttendeeUncheckedUpdateManyInputObjectZodSchema = z.lazy(__makeSchema_AttendeeUncheckedUpdateManyInput_schema); - - -// File: EventCreateInput.schema.ts -const __makeSchema_EventCreateInput_schema = () => z.object({ - id: z.string().optional(), - title: z.string(), - start: z.coerce.date(), - end: z.coerce.date(), - status: EventStatusSchema, - description: z.string(), - shortDescription: z.string().optional().nullable(), - imageUrl: z.string().optional().nullable(), - locationTitle: z.string().optional().nullable(), - locationAddress: z.string().optional().nullable(), - locationLink: z.string().optional().nullable(), - type: EventTypeSchema, - markForMissedAttendance: z.boolean().optional(), - createdAt: z.coerce.date().optional(), - metadataImportId: z.number().int().optional().nullable(), - get feedbackForm(){ return FeedbackFormCreateNestedOneWithoutEventInputObjectSchema.optional(); }, - get fadderuke(){ return FadderukeCreateNestedOneWithoutEventInputObjectSchema.optional(); }, - get attendance(){ return AttendanceCreateNestedOneWithoutEventsInputObjectSchema.optional(); }, - get parent(){ return EventCreateNestedOneWithoutChildrenInputObjectSchema.optional(); }, - get children(){ return EventCreateNestedManyWithoutParentInputObjectSchema.optional(); }, - get contest(){ return ContestCreateNestedOneWithoutEventsInputObjectSchema.optional(); }, - get companies(){ return EventCompanyCreateNestedManyWithoutEventInputObjectSchema.optional(); }, - get hostingGroups(){ return EventHostingGroupCreateNestedManyWithoutEventInputObjectSchema.optional(); }, - get deregisterReasons(){ return DeregisterReasonCreateNestedManyWithoutEventInputObjectSchema.optional(); } -}).strict(); -export const EventCreateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_EventCreateInput_schema) as unknown as z.ZodType; -export const EventCreateInputObjectZodSchema = z.lazy(__makeSchema_EventCreateInput_schema); - - -// File: EventUncheckedCreateInput.schema.ts -const __makeSchema_EventUncheckedCreateInput_schema = () => z.object({ - id: z.string().optional(), - title: z.string(), - start: z.coerce.date(), - end: z.coerce.date(), - status: EventStatusSchema, - description: z.string(), - shortDescription: z.string().optional().nullable(), - imageUrl: z.string().optional().nullable(), - locationTitle: z.string().optional().nullable(), - locationAddress: z.string().optional().nullable(), - locationLink: z.string().optional().nullable(), - type: EventTypeSchema, - markForMissedAttendance: z.boolean().optional(), - createdAt: z.coerce.date().optional(), - attendanceId: z.string().optional().nullable(), - parentId: z.string().optional().nullable(), - contestId: z.string().optional().nullable(), - metadataImportId: z.number().int().optional().nullable(), - get feedbackForm(){ return FeedbackFormUncheckedCreateNestedOneWithoutEventInputObjectSchema.optional(); }, - get fadderuke(){ return FadderukeUncheckedCreateNestedOneWithoutEventInputObjectSchema.optional(); }, - get children(){ return EventUncheckedCreateNestedManyWithoutParentInputObjectSchema.optional(); }, - get companies(){ return EventCompanyUncheckedCreateNestedManyWithoutEventInputObjectSchema.optional(); }, - get hostingGroups(){ return EventHostingGroupUncheckedCreateNestedManyWithoutEventInputObjectSchema.optional(); }, - get deregisterReasons(){ return DeregisterReasonUncheckedCreateNestedManyWithoutEventInputObjectSchema.optional(); } -}).strict(); -export const EventUncheckedCreateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_EventUncheckedCreateInput_schema) as unknown as z.ZodType; -export const EventUncheckedCreateInputObjectZodSchema = z.lazy(__makeSchema_EventUncheckedCreateInput_schema); - - -// File: EventUpdateInput.schema.ts -const __makeSchema_EventUpdateInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - title: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - start: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - end: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - status: z.union([EventStatusSchema, EnumEventStatusFieldUpdateOperationsInputObjectSchema]).optional(), - description: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - shortDescription: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - imageUrl: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - locationTitle: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - locationAddress: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - locationLink: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - type: z.union([EventTypeSchema, EnumEventTypeFieldUpdateOperationsInputObjectSchema]).optional(), - markForMissedAttendance: z.union([z.boolean(), BoolFieldUpdateOperationsInputObjectSchema]).optional(), - createdAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - updatedAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - metadataImportId: z.union([z.number().int(), NullableIntFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - get feedbackForm(){ return FeedbackFormUpdateOneWithoutEventNestedInputObjectSchema.optional(); }, - get fadderuke(){ return FadderukeUpdateOneWithoutEventNestedInputObjectSchema.optional(); }, - get attendance(){ return AttendanceUpdateOneWithoutEventsNestedInputObjectSchema.optional(); }, - get parent(){ return EventUpdateOneWithoutChildrenNestedInputObjectSchema.optional(); }, - get children(){ return EventUpdateManyWithoutParentNestedInputObjectSchema.optional(); }, - get contest(){ return ContestUpdateOneWithoutEventsNestedInputObjectSchema.optional(); }, - get companies(){ return EventCompanyUpdateManyWithoutEventNestedInputObjectSchema.optional(); }, - get hostingGroups(){ return EventHostingGroupUpdateManyWithoutEventNestedInputObjectSchema.optional(); }, - get deregisterReasons(){ return DeregisterReasonUpdateManyWithoutEventNestedInputObjectSchema.optional(); } -}).strict(); -export const EventUpdateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_EventUpdateInput_schema) as unknown as z.ZodType; -export const EventUpdateInputObjectZodSchema = z.lazy(__makeSchema_EventUpdateInput_schema); - - -// File: EventUncheckedUpdateInput.schema.ts -const __makeSchema_EventUncheckedUpdateInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - title: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - start: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - end: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - status: z.union([EventStatusSchema, EnumEventStatusFieldUpdateOperationsInputObjectSchema]).optional(), - description: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - shortDescription: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - imageUrl: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - locationTitle: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - locationAddress: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - locationLink: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - type: z.union([EventTypeSchema, EnumEventTypeFieldUpdateOperationsInputObjectSchema]).optional(), - markForMissedAttendance: z.union([z.boolean(), BoolFieldUpdateOperationsInputObjectSchema]).optional(), - createdAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - updatedAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - attendanceId: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - parentId: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - contestId: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - metadataImportId: z.union([z.number().int(), NullableIntFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - get feedbackForm(){ return FeedbackFormUncheckedUpdateOneWithoutEventNestedInputObjectSchema.optional(); }, - get fadderuke(){ return FadderukeUncheckedUpdateOneWithoutEventNestedInputObjectSchema.optional(); }, - get children(){ return EventUncheckedUpdateManyWithoutParentNestedInputObjectSchema.optional(); }, - get companies(){ return EventCompanyUncheckedUpdateManyWithoutEventNestedInputObjectSchema.optional(); }, - get hostingGroups(){ return EventHostingGroupUncheckedUpdateManyWithoutEventNestedInputObjectSchema.optional(); }, - get deregisterReasons(){ return DeregisterReasonUncheckedUpdateManyWithoutEventNestedInputObjectSchema.optional(); } -}).strict(); -export const EventUncheckedUpdateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_EventUncheckedUpdateInput_schema) as unknown as z.ZodType; -export const EventUncheckedUpdateInputObjectZodSchema = z.lazy(__makeSchema_EventUncheckedUpdateInput_schema); - - -// File: EventCreateManyInput.schema.ts -const __makeSchema_EventCreateManyInput_schema = () => z.object({ - id: z.string().optional(), - title: z.string(), - start: z.coerce.date(), - end: z.coerce.date(), - status: EventStatusSchema, - description: z.string(), - shortDescription: z.string().optional().nullable(), - imageUrl: z.string().optional().nullable(), - locationTitle: z.string().optional().nullable(), - locationAddress: z.string().optional().nullable(), - locationLink: z.string().optional().nullable(), - type: EventTypeSchema, - markForMissedAttendance: z.boolean().optional(), - createdAt: z.coerce.date().optional(), - updatedAt: z.coerce.date().optional(), - attendanceId: z.string().optional().nullable(), - parentId: z.string().optional().nullable(), - contestId: z.string().optional().nullable(), - metadataImportId: z.number().int().optional().nullable() -}).strict(); -export const EventCreateManyInputObjectSchema: z.ZodType = z.lazy(__makeSchema_EventCreateManyInput_schema) as unknown as z.ZodType; -export const EventCreateManyInputObjectZodSchema = z.lazy(__makeSchema_EventCreateManyInput_schema); - - -// File: EventUpdateManyMutationInput.schema.ts -const __makeSchema_EventUpdateManyMutationInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - title: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - start: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - end: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - status: z.union([EventStatusSchema, EnumEventStatusFieldUpdateOperationsInputObjectSchema]).optional(), - description: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - shortDescription: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - imageUrl: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - locationTitle: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - locationAddress: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - locationLink: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - type: z.union([EventTypeSchema, EnumEventTypeFieldUpdateOperationsInputObjectSchema]).optional(), - markForMissedAttendance: z.union([z.boolean(), BoolFieldUpdateOperationsInputObjectSchema]).optional(), - createdAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - updatedAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - metadataImportId: z.union([z.number().int(), NullableIntFieldUpdateOperationsInputObjectSchema]).optional().nullable() -}).strict(); -export const EventUpdateManyMutationInputObjectSchema: z.ZodType = z.lazy(__makeSchema_EventUpdateManyMutationInput_schema) as unknown as z.ZodType; -export const EventUpdateManyMutationInputObjectZodSchema = z.lazy(__makeSchema_EventUpdateManyMutationInput_schema); - - -// File: EventUncheckedUpdateManyInput.schema.ts -const __makeSchema_EventUncheckedUpdateManyInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - title: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - start: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - end: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - status: z.union([EventStatusSchema, EnumEventStatusFieldUpdateOperationsInputObjectSchema]).optional(), - description: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - shortDescription: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - imageUrl: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - locationTitle: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - locationAddress: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - locationLink: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - type: z.union([EventTypeSchema, EnumEventTypeFieldUpdateOperationsInputObjectSchema]).optional(), - markForMissedAttendance: z.union([z.boolean(), BoolFieldUpdateOperationsInputObjectSchema]).optional(), - createdAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - updatedAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - attendanceId: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - parentId: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - contestId: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - metadataImportId: z.union([z.number().int(), NullableIntFieldUpdateOperationsInputObjectSchema]).optional().nullable() -}).strict(); -export const EventUncheckedUpdateManyInputObjectSchema: z.ZodType = z.lazy(__makeSchema_EventUncheckedUpdateManyInput_schema) as unknown as z.ZodType; -export const EventUncheckedUpdateManyInputObjectZodSchema = z.lazy(__makeSchema_EventUncheckedUpdateManyInput_schema); - - -// File: EventCompanyCreateInput.schema.ts -const __makeSchema_EventCompanyCreateInput_schema = () => z.object({ - get event(){ return EventCreateNestedOneWithoutCompaniesInputObjectSchema; }, - get company(){ return CompanyCreateNestedOneWithoutEventsInputObjectSchema; } -}).strict(); -export const EventCompanyCreateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_EventCompanyCreateInput_schema) as unknown as z.ZodType; -export const EventCompanyCreateInputObjectZodSchema = z.lazy(__makeSchema_EventCompanyCreateInput_schema); - - -// File: EventCompanyUncheckedCreateInput.schema.ts -const __makeSchema_EventCompanyUncheckedCreateInput_schema = () => z.object({ - eventId: z.string(), - companyId: z.string() -}).strict(); -export const EventCompanyUncheckedCreateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_EventCompanyUncheckedCreateInput_schema) as unknown as z.ZodType; -export const EventCompanyUncheckedCreateInputObjectZodSchema = z.lazy(__makeSchema_EventCompanyUncheckedCreateInput_schema); - - -// File: EventCompanyUpdateInput.schema.ts -const __makeSchema_EventCompanyUpdateInput_schema = () => z.object({ - get event(){ return EventUpdateOneRequiredWithoutCompaniesNestedInputObjectSchema.optional(); }, - get company(){ return CompanyUpdateOneRequiredWithoutEventsNestedInputObjectSchema.optional(); } -}).strict(); -export const EventCompanyUpdateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_EventCompanyUpdateInput_schema) as unknown as z.ZodType; -export const EventCompanyUpdateInputObjectZodSchema = z.lazy(__makeSchema_EventCompanyUpdateInput_schema); - - -// File: EventCompanyUncheckedUpdateInput.schema.ts -const __makeSchema_EventCompanyUncheckedUpdateInput_schema = () => z.object({ - eventId: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - companyId: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional() -}).strict(); -export const EventCompanyUncheckedUpdateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_EventCompanyUncheckedUpdateInput_schema) as unknown as z.ZodType; -export const EventCompanyUncheckedUpdateInputObjectZodSchema = z.lazy(__makeSchema_EventCompanyUncheckedUpdateInput_schema); - - -// File: EventCompanyCreateManyInput.schema.ts -const __makeSchema_EventCompanyCreateManyInput_schema = () => z.object({ - eventId: z.string(), - companyId: z.string() -}).strict(); -export const EventCompanyCreateManyInputObjectSchema: z.ZodType = z.lazy(__makeSchema_EventCompanyCreateManyInput_schema) as unknown as z.ZodType; -export const EventCompanyCreateManyInputObjectZodSchema = z.lazy(__makeSchema_EventCompanyCreateManyInput_schema); - - -// File: EventCompanyUpdateManyMutationInput.schema.ts -const __makeSchema_EventCompanyUpdateManyMutationInput_schema = () => z.object({ - -}).strict(); -export const EventCompanyUpdateManyMutationInputObjectSchema: z.ZodType = z.lazy(__makeSchema_EventCompanyUpdateManyMutationInput_schema) as unknown as z.ZodType; -export const EventCompanyUpdateManyMutationInputObjectZodSchema = z.lazy(__makeSchema_EventCompanyUpdateManyMutationInput_schema); - - -// File: EventCompanyUncheckedUpdateManyInput.schema.ts -const __makeSchema_EventCompanyUncheckedUpdateManyInput_schema = () => z.object({ - eventId: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - companyId: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional() -}).strict(); -export const EventCompanyUncheckedUpdateManyInputObjectSchema: z.ZodType = z.lazy(__makeSchema_EventCompanyUncheckedUpdateManyInput_schema) as unknown as z.ZodType; -export const EventCompanyUncheckedUpdateManyInputObjectZodSchema = z.lazy(__makeSchema_EventCompanyUncheckedUpdateManyInput_schema); - - -// File: MarkCreateInput.schema.ts -const __makeSchema_MarkCreateInput_schema = () => z.object({ - id: z.string().optional(), - title: z.string(), - details: z.string().optional().nullable(), - duration: z.number().int(), - weight: z.number().int(), - type: MarkTypeSchema.optional(), - createdAt: z.coerce.date().optional(), - get users(){ return PersonalMarkCreateNestedManyWithoutMarkInputObjectSchema.optional(); }, - get groups(){ return MarkGroupCreateNestedManyWithoutMarkInputObjectSchema.optional(); } -}).strict(); -export const MarkCreateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_MarkCreateInput_schema) as unknown as z.ZodType; -export const MarkCreateInputObjectZodSchema = z.lazy(__makeSchema_MarkCreateInput_schema); - - -// File: MarkUncheckedCreateInput.schema.ts -const __makeSchema_MarkUncheckedCreateInput_schema = () => z.object({ - id: z.string().optional(), - title: z.string(), - details: z.string().optional().nullable(), - duration: z.number().int(), - weight: z.number().int(), - type: MarkTypeSchema.optional(), - createdAt: z.coerce.date().optional(), - get users(){ return PersonalMarkUncheckedCreateNestedManyWithoutMarkInputObjectSchema.optional(); }, - get groups(){ return MarkGroupUncheckedCreateNestedManyWithoutMarkInputObjectSchema.optional(); } -}).strict(); -export const MarkUncheckedCreateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_MarkUncheckedCreateInput_schema) as unknown as z.ZodType; -export const MarkUncheckedCreateInputObjectZodSchema = z.lazy(__makeSchema_MarkUncheckedCreateInput_schema); - - -// File: MarkUpdateInput.schema.ts -const __makeSchema_MarkUpdateInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - title: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - details: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - duration: z.union([z.number().int(), IntFieldUpdateOperationsInputObjectSchema]).optional(), - weight: z.union([z.number().int(), IntFieldUpdateOperationsInputObjectSchema]).optional(), - type: z.union([MarkTypeSchema, EnumMarkTypeFieldUpdateOperationsInputObjectSchema]).optional(), - createdAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - updatedAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - get users(){ return PersonalMarkUpdateManyWithoutMarkNestedInputObjectSchema.optional(); }, - get groups(){ return MarkGroupUpdateManyWithoutMarkNestedInputObjectSchema.optional(); } -}).strict(); -export const MarkUpdateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_MarkUpdateInput_schema) as unknown as z.ZodType; -export const MarkUpdateInputObjectZodSchema = z.lazy(__makeSchema_MarkUpdateInput_schema); - - -// File: MarkUncheckedUpdateInput.schema.ts -const __makeSchema_MarkUncheckedUpdateInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - title: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - details: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - duration: z.union([z.number().int(), IntFieldUpdateOperationsInputObjectSchema]).optional(), - weight: z.union([z.number().int(), IntFieldUpdateOperationsInputObjectSchema]).optional(), - type: z.union([MarkTypeSchema, EnumMarkTypeFieldUpdateOperationsInputObjectSchema]).optional(), - createdAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - updatedAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - get users(){ return PersonalMarkUncheckedUpdateManyWithoutMarkNestedInputObjectSchema.optional(); }, - get groups(){ return MarkGroupUncheckedUpdateManyWithoutMarkNestedInputObjectSchema.optional(); } -}).strict(); -export const MarkUncheckedUpdateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_MarkUncheckedUpdateInput_schema) as unknown as z.ZodType; -export const MarkUncheckedUpdateInputObjectZodSchema = z.lazy(__makeSchema_MarkUncheckedUpdateInput_schema); - - -// File: MarkCreateManyInput.schema.ts -const __makeSchema_MarkCreateManyInput_schema = () => z.object({ - id: z.string().optional(), - title: z.string(), - details: z.string().optional().nullable(), - duration: z.number().int(), - weight: z.number().int(), - type: MarkTypeSchema.optional(), - createdAt: z.coerce.date().optional(), - updatedAt: z.coerce.date().optional() -}).strict(); -export const MarkCreateManyInputObjectSchema: z.ZodType = z.lazy(__makeSchema_MarkCreateManyInput_schema) as unknown as z.ZodType; -export const MarkCreateManyInputObjectZodSchema = z.lazy(__makeSchema_MarkCreateManyInput_schema); - - -// File: MarkUpdateManyMutationInput.schema.ts -const __makeSchema_MarkUpdateManyMutationInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - title: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - details: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - duration: z.union([z.number().int(), IntFieldUpdateOperationsInputObjectSchema]).optional(), - weight: z.union([z.number().int(), IntFieldUpdateOperationsInputObjectSchema]).optional(), - type: z.union([MarkTypeSchema, EnumMarkTypeFieldUpdateOperationsInputObjectSchema]).optional(), - createdAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - updatedAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional() -}).strict(); -export const MarkUpdateManyMutationInputObjectSchema: z.ZodType = z.lazy(__makeSchema_MarkUpdateManyMutationInput_schema) as unknown as z.ZodType; -export const MarkUpdateManyMutationInputObjectZodSchema = z.lazy(__makeSchema_MarkUpdateManyMutationInput_schema); - - -// File: MarkUncheckedUpdateManyInput.schema.ts -const __makeSchema_MarkUncheckedUpdateManyInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - title: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - details: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - duration: z.union([z.number().int(), IntFieldUpdateOperationsInputObjectSchema]).optional(), - weight: z.union([z.number().int(), IntFieldUpdateOperationsInputObjectSchema]).optional(), - type: z.union([MarkTypeSchema, EnumMarkTypeFieldUpdateOperationsInputObjectSchema]).optional(), - createdAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - updatedAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional() -}).strict(); -export const MarkUncheckedUpdateManyInputObjectSchema: z.ZodType = z.lazy(__makeSchema_MarkUncheckedUpdateManyInput_schema) as unknown as z.ZodType; -export const MarkUncheckedUpdateManyInputObjectZodSchema = z.lazy(__makeSchema_MarkUncheckedUpdateManyInput_schema); - - -// File: MarkGroupCreateInput.schema.ts -const __makeSchema_MarkGroupCreateInput_schema = () => z.object({ - get mark(){ return MarkCreateNestedOneWithoutGroupsInputObjectSchema; }, - get group(){ return GroupCreateNestedOneWithoutMarksInputObjectSchema; } -}).strict(); -export const MarkGroupCreateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_MarkGroupCreateInput_schema) as unknown as z.ZodType; -export const MarkGroupCreateInputObjectZodSchema = z.lazy(__makeSchema_MarkGroupCreateInput_schema); - - -// File: MarkGroupUncheckedCreateInput.schema.ts -const __makeSchema_MarkGroupUncheckedCreateInput_schema = () => z.object({ - markId: z.string(), - groupId: z.string() -}).strict(); -export const MarkGroupUncheckedCreateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_MarkGroupUncheckedCreateInput_schema) as unknown as z.ZodType; -export const MarkGroupUncheckedCreateInputObjectZodSchema = z.lazy(__makeSchema_MarkGroupUncheckedCreateInput_schema); - - -// File: MarkGroupUpdateInput.schema.ts -const __makeSchema_MarkGroupUpdateInput_schema = () => z.object({ - get mark(){ return MarkUpdateOneRequiredWithoutGroupsNestedInputObjectSchema.optional(); }, - get group(){ return GroupUpdateOneRequiredWithoutMarksNestedInputObjectSchema.optional(); } -}).strict(); -export const MarkGroupUpdateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_MarkGroupUpdateInput_schema) as unknown as z.ZodType; -export const MarkGroupUpdateInputObjectZodSchema = z.lazy(__makeSchema_MarkGroupUpdateInput_schema); - - -// File: MarkGroupUncheckedUpdateInput.schema.ts -const __makeSchema_MarkGroupUncheckedUpdateInput_schema = () => z.object({ - markId: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - groupId: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional() -}).strict(); -export const MarkGroupUncheckedUpdateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_MarkGroupUncheckedUpdateInput_schema) as unknown as z.ZodType; -export const MarkGroupUncheckedUpdateInputObjectZodSchema = z.lazy(__makeSchema_MarkGroupUncheckedUpdateInput_schema); - - -// File: MarkGroupCreateManyInput.schema.ts -const __makeSchema_MarkGroupCreateManyInput_schema = () => z.object({ - markId: z.string(), - groupId: z.string() -}).strict(); -export const MarkGroupCreateManyInputObjectSchema: z.ZodType = z.lazy(__makeSchema_MarkGroupCreateManyInput_schema) as unknown as z.ZodType; -export const MarkGroupCreateManyInputObjectZodSchema = z.lazy(__makeSchema_MarkGroupCreateManyInput_schema); - - -// File: MarkGroupUpdateManyMutationInput.schema.ts -const __makeSchema_MarkGroupUpdateManyMutationInput_schema = () => z.object({ - -}).strict(); -export const MarkGroupUpdateManyMutationInputObjectSchema: z.ZodType = z.lazy(__makeSchema_MarkGroupUpdateManyMutationInput_schema) as unknown as z.ZodType; -export const MarkGroupUpdateManyMutationInputObjectZodSchema = z.lazy(__makeSchema_MarkGroupUpdateManyMutationInput_schema); - - -// File: MarkGroupUncheckedUpdateManyInput.schema.ts -const __makeSchema_MarkGroupUncheckedUpdateManyInput_schema = () => z.object({ - markId: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - groupId: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional() -}).strict(); -export const MarkGroupUncheckedUpdateManyInputObjectSchema: z.ZodType = z.lazy(__makeSchema_MarkGroupUncheckedUpdateManyInput_schema) as unknown as z.ZodType; -export const MarkGroupUncheckedUpdateManyInputObjectZodSchema = z.lazy(__makeSchema_MarkGroupUncheckedUpdateManyInput_schema); - - -// File: PersonalMarkCreateInput.schema.ts -const __makeSchema_PersonalMarkCreateInput_schema = () => z.object({ - createdAt: z.coerce.date().optional(), - get mark(){ return MarkCreateNestedOneWithoutUsersInputObjectSchema; }, - get user(){ return UserCreateNestedOneWithoutPersonalMarkInputObjectSchema; }, - get givenBy(){ return UserCreateNestedOneWithoutGivenMarksInputObjectSchema.optional(); } -}).strict(); -export const PersonalMarkCreateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_PersonalMarkCreateInput_schema) as unknown as z.ZodType; -export const PersonalMarkCreateInputObjectZodSchema = z.lazy(__makeSchema_PersonalMarkCreateInput_schema); - - -// File: PersonalMarkUncheckedCreateInput.schema.ts -const __makeSchema_PersonalMarkUncheckedCreateInput_schema = () => z.object({ - createdAt: z.coerce.date().optional(), - markId: z.string(), - userId: z.string(), - givenById: z.string().optional().nullable() -}).strict(); -export const PersonalMarkUncheckedCreateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_PersonalMarkUncheckedCreateInput_schema) as unknown as z.ZodType; -export const PersonalMarkUncheckedCreateInputObjectZodSchema = z.lazy(__makeSchema_PersonalMarkUncheckedCreateInput_schema); - - -// File: PersonalMarkUpdateInput.schema.ts -const __makeSchema_PersonalMarkUpdateInput_schema = () => z.object({ - createdAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - get mark(){ return MarkUpdateOneRequiredWithoutUsersNestedInputObjectSchema.optional(); }, - get user(){ return UserUpdateOneRequiredWithoutPersonalMarkNestedInputObjectSchema.optional(); }, - get givenBy(){ return UserUpdateOneWithoutGivenMarksNestedInputObjectSchema.optional(); } -}).strict(); -export const PersonalMarkUpdateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_PersonalMarkUpdateInput_schema) as unknown as z.ZodType; -export const PersonalMarkUpdateInputObjectZodSchema = z.lazy(__makeSchema_PersonalMarkUpdateInput_schema); - - -// File: PersonalMarkUncheckedUpdateInput.schema.ts -const __makeSchema_PersonalMarkUncheckedUpdateInput_schema = () => z.object({ - createdAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - markId: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - userId: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - givenById: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable() -}).strict(); -export const PersonalMarkUncheckedUpdateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_PersonalMarkUncheckedUpdateInput_schema) as unknown as z.ZodType; -export const PersonalMarkUncheckedUpdateInputObjectZodSchema = z.lazy(__makeSchema_PersonalMarkUncheckedUpdateInput_schema); - - -// File: PersonalMarkCreateManyInput.schema.ts -const __makeSchema_PersonalMarkCreateManyInput_schema = () => z.object({ - createdAt: z.coerce.date().optional(), - markId: z.string(), - userId: z.string(), - givenById: z.string().optional().nullable() -}).strict(); -export const PersonalMarkCreateManyInputObjectSchema: z.ZodType = z.lazy(__makeSchema_PersonalMarkCreateManyInput_schema) as unknown as z.ZodType; -export const PersonalMarkCreateManyInputObjectZodSchema = z.lazy(__makeSchema_PersonalMarkCreateManyInput_schema); - - -// File: PersonalMarkUpdateManyMutationInput.schema.ts -const __makeSchema_PersonalMarkUpdateManyMutationInput_schema = () => z.object({ - createdAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional() -}).strict(); -export const PersonalMarkUpdateManyMutationInputObjectSchema: z.ZodType = z.lazy(__makeSchema_PersonalMarkUpdateManyMutationInput_schema) as unknown as z.ZodType; -export const PersonalMarkUpdateManyMutationInputObjectZodSchema = z.lazy(__makeSchema_PersonalMarkUpdateManyMutationInput_schema); - - -// File: PersonalMarkUncheckedUpdateManyInput.schema.ts -const __makeSchema_PersonalMarkUncheckedUpdateManyInput_schema = () => z.object({ - createdAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - markId: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - userId: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - givenById: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable() -}).strict(); -export const PersonalMarkUncheckedUpdateManyInputObjectSchema: z.ZodType = z.lazy(__makeSchema_PersonalMarkUncheckedUpdateManyInput_schema) as unknown as z.ZodType; -export const PersonalMarkUncheckedUpdateManyInputObjectZodSchema = z.lazy(__makeSchema_PersonalMarkUncheckedUpdateManyInput_schema); - - -// File: PrivacyPermissionsCreateInput.schema.ts -const __makeSchema_PrivacyPermissionsCreateInput_schema = () => z.object({ - id: z.string().optional(), - profileVisible: z.boolean().optional(), - usernameVisible: z.boolean().optional(), - emailVisible: z.boolean().optional(), - phoneVisible: z.boolean().optional(), - addressVisible: z.boolean().optional(), - attendanceVisible: z.boolean().optional(), - createdAt: z.coerce.date().optional(), - get user(){ return UserCreateNestedOneWithoutPrivacyPermissionsInputObjectSchema; } -}).strict(); -export const PrivacyPermissionsCreateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_PrivacyPermissionsCreateInput_schema) as unknown as z.ZodType; -export const PrivacyPermissionsCreateInputObjectZodSchema = z.lazy(__makeSchema_PrivacyPermissionsCreateInput_schema); - - -// File: PrivacyPermissionsUncheckedCreateInput.schema.ts -const __makeSchema_PrivacyPermissionsUncheckedCreateInput_schema = () => z.object({ - id: z.string().optional(), - userId: z.string(), - profileVisible: z.boolean().optional(), - usernameVisible: z.boolean().optional(), - emailVisible: z.boolean().optional(), - phoneVisible: z.boolean().optional(), - addressVisible: z.boolean().optional(), - attendanceVisible: z.boolean().optional(), - createdAt: z.coerce.date().optional() -}).strict(); -export const PrivacyPermissionsUncheckedCreateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_PrivacyPermissionsUncheckedCreateInput_schema) as unknown as z.ZodType; -export const PrivacyPermissionsUncheckedCreateInputObjectZodSchema = z.lazy(__makeSchema_PrivacyPermissionsUncheckedCreateInput_schema); - - -// File: PrivacyPermissionsUpdateInput.schema.ts -const __makeSchema_PrivacyPermissionsUpdateInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - profileVisible: z.union([z.boolean(), BoolFieldUpdateOperationsInputObjectSchema]).optional(), - usernameVisible: z.union([z.boolean(), BoolFieldUpdateOperationsInputObjectSchema]).optional(), - emailVisible: z.union([z.boolean(), BoolFieldUpdateOperationsInputObjectSchema]).optional(), - phoneVisible: z.union([z.boolean(), BoolFieldUpdateOperationsInputObjectSchema]).optional(), - addressVisible: z.union([z.boolean(), BoolFieldUpdateOperationsInputObjectSchema]).optional(), - attendanceVisible: z.union([z.boolean(), BoolFieldUpdateOperationsInputObjectSchema]).optional(), - createdAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - updatedAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - get user(){ return UserUpdateOneRequiredWithoutPrivacyPermissionsNestedInputObjectSchema.optional(); } -}).strict(); -export const PrivacyPermissionsUpdateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_PrivacyPermissionsUpdateInput_schema) as unknown as z.ZodType; -export const PrivacyPermissionsUpdateInputObjectZodSchema = z.lazy(__makeSchema_PrivacyPermissionsUpdateInput_schema); - - -// File: PrivacyPermissionsUncheckedUpdateInput.schema.ts -const __makeSchema_PrivacyPermissionsUncheckedUpdateInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - userId: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - profileVisible: z.union([z.boolean(), BoolFieldUpdateOperationsInputObjectSchema]).optional(), - usernameVisible: z.union([z.boolean(), BoolFieldUpdateOperationsInputObjectSchema]).optional(), - emailVisible: z.union([z.boolean(), BoolFieldUpdateOperationsInputObjectSchema]).optional(), - phoneVisible: z.union([z.boolean(), BoolFieldUpdateOperationsInputObjectSchema]).optional(), - addressVisible: z.union([z.boolean(), BoolFieldUpdateOperationsInputObjectSchema]).optional(), - attendanceVisible: z.union([z.boolean(), BoolFieldUpdateOperationsInputObjectSchema]).optional(), - createdAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - updatedAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional() -}).strict(); -export const PrivacyPermissionsUncheckedUpdateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_PrivacyPermissionsUncheckedUpdateInput_schema) as unknown as z.ZodType; -export const PrivacyPermissionsUncheckedUpdateInputObjectZodSchema = z.lazy(__makeSchema_PrivacyPermissionsUncheckedUpdateInput_schema); - - -// File: PrivacyPermissionsCreateManyInput.schema.ts -const __makeSchema_PrivacyPermissionsCreateManyInput_schema = () => z.object({ - id: z.string().optional(), - userId: z.string(), - profileVisible: z.boolean().optional(), - usernameVisible: z.boolean().optional(), - emailVisible: z.boolean().optional(), - phoneVisible: z.boolean().optional(), - addressVisible: z.boolean().optional(), - attendanceVisible: z.boolean().optional(), - createdAt: z.coerce.date().optional(), - updatedAt: z.coerce.date().optional() -}).strict(); -export const PrivacyPermissionsCreateManyInputObjectSchema: z.ZodType = z.lazy(__makeSchema_PrivacyPermissionsCreateManyInput_schema) as unknown as z.ZodType; -export const PrivacyPermissionsCreateManyInputObjectZodSchema = z.lazy(__makeSchema_PrivacyPermissionsCreateManyInput_schema); - - -// File: PrivacyPermissionsUpdateManyMutationInput.schema.ts -const __makeSchema_PrivacyPermissionsUpdateManyMutationInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - profileVisible: z.union([z.boolean(), BoolFieldUpdateOperationsInputObjectSchema]).optional(), - usernameVisible: z.union([z.boolean(), BoolFieldUpdateOperationsInputObjectSchema]).optional(), - emailVisible: z.union([z.boolean(), BoolFieldUpdateOperationsInputObjectSchema]).optional(), - phoneVisible: z.union([z.boolean(), BoolFieldUpdateOperationsInputObjectSchema]).optional(), - addressVisible: z.union([z.boolean(), BoolFieldUpdateOperationsInputObjectSchema]).optional(), - attendanceVisible: z.union([z.boolean(), BoolFieldUpdateOperationsInputObjectSchema]).optional(), - createdAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - updatedAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional() -}).strict(); -export const PrivacyPermissionsUpdateManyMutationInputObjectSchema: z.ZodType = z.lazy(__makeSchema_PrivacyPermissionsUpdateManyMutationInput_schema) as unknown as z.ZodType; -export const PrivacyPermissionsUpdateManyMutationInputObjectZodSchema = z.lazy(__makeSchema_PrivacyPermissionsUpdateManyMutationInput_schema); - - -// File: PrivacyPermissionsUncheckedUpdateManyInput.schema.ts -const __makeSchema_PrivacyPermissionsUncheckedUpdateManyInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - userId: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - profileVisible: z.union([z.boolean(), BoolFieldUpdateOperationsInputObjectSchema]).optional(), - usernameVisible: z.union([z.boolean(), BoolFieldUpdateOperationsInputObjectSchema]).optional(), - emailVisible: z.union([z.boolean(), BoolFieldUpdateOperationsInputObjectSchema]).optional(), - phoneVisible: z.union([z.boolean(), BoolFieldUpdateOperationsInputObjectSchema]).optional(), - addressVisible: z.union([z.boolean(), BoolFieldUpdateOperationsInputObjectSchema]).optional(), - attendanceVisible: z.union([z.boolean(), BoolFieldUpdateOperationsInputObjectSchema]).optional(), - createdAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - updatedAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional() -}).strict(); -export const PrivacyPermissionsUncheckedUpdateManyInputObjectSchema: z.ZodType = z.lazy(__makeSchema_PrivacyPermissionsUncheckedUpdateManyInput_schema) as unknown as z.ZodType; -export const PrivacyPermissionsUncheckedUpdateManyInputObjectZodSchema = z.lazy(__makeSchema_PrivacyPermissionsUncheckedUpdateManyInput_schema); - - -// File: NotificationPermissionsCreateInput.schema.ts -const __makeSchema_NotificationPermissionsCreateInput_schema = () => z.object({ - id: z.string().optional(), - applications: z.boolean().optional(), - newArticles: z.boolean().optional(), - standardNotifications: z.boolean().optional(), - groupMessages: z.boolean().optional(), - markRulesUpdates: z.boolean().optional(), - receipts: z.boolean().optional(), - registrationByAdministrator: z.boolean().optional(), - registrationStart: z.boolean().optional(), - createdAt: z.coerce.date().optional(), - get user(){ return UserCreateNestedOneWithoutNotificationPermissionsInputObjectSchema; } -}).strict(); -export const NotificationPermissionsCreateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_NotificationPermissionsCreateInput_schema) as unknown as z.ZodType; -export const NotificationPermissionsCreateInputObjectZodSchema = z.lazy(__makeSchema_NotificationPermissionsCreateInput_schema); - - -// File: NotificationPermissionsUncheckedCreateInput.schema.ts -const __makeSchema_NotificationPermissionsUncheckedCreateInput_schema = () => z.object({ - id: z.string().optional(), - userId: z.string(), - applications: z.boolean().optional(), - newArticles: z.boolean().optional(), - standardNotifications: z.boolean().optional(), - groupMessages: z.boolean().optional(), - markRulesUpdates: z.boolean().optional(), - receipts: z.boolean().optional(), - registrationByAdministrator: z.boolean().optional(), - registrationStart: z.boolean().optional(), - createdAt: z.coerce.date().optional() -}).strict(); -export const NotificationPermissionsUncheckedCreateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_NotificationPermissionsUncheckedCreateInput_schema) as unknown as z.ZodType; -export const NotificationPermissionsUncheckedCreateInputObjectZodSchema = z.lazy(__makeSchema_NotificationPermissionsUncheckedCreateInput_schema); - - -// File: NotificationPermissionsUpdateInput.schema.ts -const __makeSchema_NotificationPermissionsUpdateInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - applications: z.union([z.boolean(), BoolFieldUpdateOperationsInputObjectSchema]).optional(), - newArticles: z.union([z.boolean(), BoolFieldUpdateOperationsInputObjectSchema]).optional(), - standardNotifications: z.union([z.boolean(), BoolFieldUpdateOperationsInputObjectSchema]).optional(), - groupMessages: z.union([z.boolean(), BoolFieldUpdateOperationsInputObjectSchema]).optional(), - markRulesUpdates: z.union([z.boolean(), BoolFieldUpdateOperationsInputObjectSchema]).optional(), - receipts: z.union([z.boolean(), BoolFieldUpdateOperationsInputObjectSchema]).optional(), - registrationByAdministrator: z.union([z.boolean(), BoolFieldUpdateOperationsInputObjectSchema]).optional(), - registrationStart: z.union([z.boolean(), BoolFieldUpdateOperationsInputObjectSchema]).optional(), - createdAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - updatedAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - get user(){ return UserUpdateOneRequiredWithoutNotificationPermissionsNestedInputObjectSchema.optional(); } -}).strict(); -export const NotificationPermissionsUpdateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_NotificationPermissionsUpdateInput_schema) as unknown as z.ZodType; -export const NotificationPermissionsUpdateInputObjectZodSchema = z.lazy(__makeSchema_NotificationPermissionsUpdateInput_schema); - - -// File: NotificationPermissionsUncheckedUpdateInput.schema.ts -const __makeSchema_NotificationPermissionsUncheckedUpdateInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - userId: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - applications: z.union([z.boolean(), BoolFieldUpdateOperationsInputObjectSchema]).optional(), - newArticles: z.union([z.boolean(), BoolFieldUpdateOperationsInputObjectSchema]).optional(), - standardNotifications: z.union([z.boolean(), BoolFieldUpdateOperationsInputObjectSchema]).optional(), - groupMessages: z.union([z.boolean(), BoolFieldUpdateOperationsInputObjectSchema]).optional(), - markRulesUpdates: z.union([z.boolean(), BoolFieldUpdateOperationsInputObjectSchema]).optional(), - receipts: z.union([z.boolean(), BoolFieldUpdateOperationsInputObjectSchema]).optional(), - registrationByAdministrator: z.union([z.boolean(), BoolFieldUpdateOperationsInputObjectSchema]).optional(), - registrationStart: z.union([z.boolean(), BoolFieldUpdateOperationsInputObjectSchema]).optional(), - createdAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - updatedAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional() -}).strict(); -export const NotificationPermissionsUncheckedUpdateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_NotificationPermissionsUncheckedUpdateInput_schema) as unknown as z.ZodType; -export const NotificationPermissionsUncheckedUpdateInputObjectZodSchema = z.lazy(__makeSchema_NotificationPermissionsUncheckedUpdateInput_schema); - - -// File: NotificationPermissionsCreateManyInput.schema.ts -const __makeSchema_NotificationPermissionsCreateManyInput_schema = () => z.object({ - id: z.string().optional(), - userId: z.string(), - applications: z.boolean().optional(), - newArticles: z.boolean().optional(), - standardNotifications: z.boolean().optional(), - groupMessages: z.boolean().optional(), - markRulesUpdates: z.boolean().optional(), - receipts: z.boolean().optional(), - registrationByAdministrator: z.boolean().optional(), - registrationStart: z.boolean().optional(), - createdAt: z.coerce.date().optional(), - updatedAt: z.coerce.date().optional() -}).strict(); -export const NotificationPermissionsCreateManyInputObjectSchema: z.ZodType = z.lazy(__makeSchema_NotificationPermissionsCreateManyInput_schema) as unknown as z.ZodType; -export const NotificationPermissionsCreateManyInputObjectZodSchema = z.lazy(__makeSchema_NotificationPermissionsCreateManyInput_schema); - - -// File: NotificationPermissionsUpdateManyMutationInput.schema.ts -const __makeSchema_NotificationPermissionsUpdateManyMutationInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - applications: z.union([z.boolean(), BoolFieldUpdateOperationsInputObjectSchema]).optional(), - newArticles: z.union([z.boolean(), BoolFieldUpdateOperationsInputObjectSchema]).optional(), - standardNotifications: z.union([z.boolean(), BoolFieldUpdateOperationsInputObjectSchema]).optional(), - groupMessages: z.union([z.boolean(), BoolFieldUpdateOperationsInputObjectSchema]).optional(), - markRulesUpdates: z.union([z.boolean(), BoolFieldUpdateOperationsInputObjectSchema]).optional(), - receipts: z.union([z.boolean(), BoolFieldUpdateOperationsInputObjectSchema]).optional(), - registrationByAdministrator: z.union([z.boolean(), BoolFieldUpdateOperationsInputObjectSchema]).optional(), - registrationStart: z.union([z.boolean(), BoolFieldUpdateOperationsInputObjectSchema]).optional(), - createdAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - updatedAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional() -}).strict(); -export const NotificationPermissionsUpdateManyMutationInputObjectSchema: z.ZodType = z.lazy(__makeSchema_NotificationPermissionsUpdateManyMutationInput_schema) as unknown as z.ZodType; -export const NotificationPermissionsUpdateManyMutationInputObjectZodSchema = z.lazy(__makeSchema_NotificationPermissionsUpdateManyMutationInput_schema); - - -// File: NotificationPermissionsUncheckedUpdateManyInput.schema.ts -const __makeSchema_NotificationPermissionsUncheckedUpdateManyInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - userId: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - applications: z.union([z.boolean(), BoolFieldUpdateOperationsInputObjectSchema]).optional(), - newArticles: z.union([z.boolean(), BoolFieldUpdateOperationsInputObjectSchema]).optional(), - standardNotifications: z.union([z.boolean(), BoolFieldUpdateOperationsInputObjectSchema]).optional(), - groupMessages: z.union([z.boolean(), BoolFieldUpdateOperationsInputObjectSchema]).optional(), - markRulesUpdates: z.union([z.boolean(), BoolFieldUpdateOperationsInputObjectSchema]).optional(), - receipts: z.union([z.boolean(), BoolFieldUpdateOperationsInputObjectSchema]).optional(), - registrationByAdministrator: z.union([z.boolean(), BoolFieldUpdateOperationsInputObjectSchema]).optional(), - registrationStart: z.union([z.boolean(), BoolFieldUpdateOperationsInputObjectSchema]).optional(), - createdAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - updatedAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional() -}).strict(); -export const NotificationPermissionsUncheckedUpdateManyInputObjectSchema: z.ZodType = z.lazy(__makeSchema_NotificationPermissionsUncheckedUpdateManyInput_schema) as unknown as z.ZodType; -export const NotificationPermissionsUncheckedUpdateManyInputObjectZodSchema = z.lazy(__makeSchema_NotificationPermissionsUncheckedUpdateManyInput_schema); - - -// File: EventHostingGroupCreateInput.schema.ts -const __makeSchema_EventHostingGroupCreateInput_schema = () => z.object({ - get group(){ return GroupCreateNestedOneWithoutEventsInputObjectSchema; }, - get event(){ return EventCreateNestedOneWithoutHostingGroupsInputObjectSchema; } -}).strict(); -export const EventHostingGroupCreateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_EventHostingGroupCreateInput_schema) as unknown as z.ZodType; -export const EventHostingGroupCreateInputObjectZodSchema = z.lazy(__makeSchema_EventHostingGroupCreateInput_schema); - - -// File: EventHostingGroupUncheckedCreateInput.schema.ts -const __makeSchema_EventHostingGroupUncheckedCreateInput_schema = () => z.object({ - groupId: z.string(), - eventId: z.string() -}).strict(); -export const EventHostingGroupUncheckedCreateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_EventHostingGroupUncheckedCreateInput_schema) as unknown as z.ZodType; -export const EventHostingGroupUncheckedCreateInputObjectZodSchema = z.lazy(__makeSchema_EventHostingGroupUncheckedCreateInput_schema); - - -// File: EventHostingGroupUpdateInput.schema.ts -const __makeSchema_EventHostingGroupUpdateInput_schema = () => z.object({ - get group(){ return GroupUpdateOneRequiredWithoutEventsNestedInputObjectSchema.optional(); }, - get event(){ return EventUpdateOneRequiredWithoutHostingGroupsNestedInputObjectSchema.optional(); } -}).strict(); -export const EventHostingGroupUpdateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_EventHostingGroupUpdateInput_schema) as unknown as z.ZodType; -export const EventHostingGroupUpdateInputObjectZodSchema = z.lazy(__makeSchema_EventHostingGroupUpdateInput_schema); - - -// File: EventHostingGroupUncheckedUpdateInput.schema.ts -const __makeSchema_EventHostingGroupUncheckedUpdateInput_schema = () => z.object({ - groupId: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - eventId: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional() -}).strict(); -export const EventHostingGroupUncheckedUpdateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_EventHostingGroupUncheckedUpdateInput_schema) as unknown as z.ZodType; -export const EventHostingGroupUncheckedUpdateInputObjectZodSchema = z.lazy(__makeSchema_EventHostingGroupUncheckedUpdateInput_schema); - - -// File: EventHostingGroupCreateManyInput.schema.ts -const __makeSchema_EventHostingGroupCreateManyInput_schema = () => z.object({ - groupId: z.string(), - eventId: z.string() -}).strict(); -export const EventHostingGroupCreateManyInputObjectSchema: z.ZodType = z.lazy(__makeSchema_EventHostingGroupCreateManyInput_schema) as unknown as z.ZodType; -export const EventHostingGroupCreateManyInputObjectZodSchema = z.lazy(__makeSchema_EventHostingGroupCreateManyInput_schema); - - -// File: EventHostingGroupUpdateManyMutationInput.schema.ts -const __makeSchema_EventHostingGroupUpdateManyMutationInput_schema = () => z.object({ - -}).strict(); -export const EventHostingGroupUpdateManyMutationInputObjectSchema: z.ZodType = z.lazy(__makeSchema_EventHostingGroupUpdateManyMutationInput_schema) as unknown as z.ZodType; -export const EventHostingGroupUpdateManyMutationInputObjectZodSchema = z.lazy(__makeSchema_EventHostingGroupUpdateManyMutationInput_schema); - - -// File: EventHostingGroupUncheckedUpdateManyInput.schema.ts -const __makeSchema_EventHostingGroupUncheckedUpdateManyInput_schema = () => z.object({ - groupId: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - eventId: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional() -}).strict(); -export const EventHostingGroupUncheckedUpdateManyInputObjectSchema: z.ZodType = z.lazy(__makeSchema_EventHostingGroupUncheckedUpdateManyInput_schema) as unknown as z.ZodType; -export const EventHostingGroupUncheckedUpdateManyInputObjectZodSchema = z.lazy(__makeSchema_EventHostingGroupUncheckedUpdateManyInput_schema); - - -// File: JobListingCreateInput.schema.ts -const __makeSchema_JobListingCreateInput_schema = () => z.object({ - id: z.string().optional(), - title: z.string(), - description: z.string(), - shortDescription: z.string().optional().nullable(), - start: z.coerce.date(), - end: z.coerce.date(), - featured: z.boolean(), - hidden: z.boolean(), - deadline: z.coerce.date().optional().nullable(), - employment: EmploymentTypeSchema, - applicationLink: z.string().optional().nullable(), - applicationEmail: z.string().optional().nullable(), - rollingAdmission: z.boolean(), - createdAt: z.coerce.date().optional(), - get company(){ return CompanyCreateNestedOneWithoutJobListingInputObjectSchema; }, - get locations(){ return JobListingLocationCreateNestedManyWithoutJobListingInputObjectSchema.optional(); } -}).strict(); -export const JobListingCreateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_JobListingCreateInput_schema) as unknown as z.ZodType; -export const JobListingCreateInputObjectZodSchema = z.lazy(__makeSchema_JobListingCreateInput_schema); - - -// File: JobListingUncheckedCreateInput.schema.ts -const __makeSchema_JobListingUncheckedCreateInput_schema = () => z.object({ - id: z.string().optional(), - title: z.string(), - description: z.string(), - shortDescription: z.string().optional().nullable(), - start: z.coerce.date(), - end: z.coerce.date(), - featured: z.boolean(), - hidden: z.boolean(), - deadline: z.coerce.date().optional().nullable(), - employment: EmploymentTypeSchema, - applicationLink: z.string().optional().nullable(), - applicationEmail: z.string().optional().nullable(), - rollingAdmission: z.boolean(), - createdAt: z.coerce.date().optional(), - companyId: z.string(), - get locations(){ return JobListingLocationUncheckedCreateNestedManyWithoutJobListingInputObjectSchema.optional(); } -}).strict(); -export const JobListingUncheckedCreateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_JobListingUncheckedCreateInput_schema) as unknown as z.ZodType; -export const JobListingUncheckedCreateInputObjectZodSchema = z.lazy(__makeSchema_JobListingUncheckedCreateInput_schema); - - -// File: JobListingUpdateInput.schema.ts -const __makeSchema_JobListingUpdateInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - title: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - description: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - shortDescription: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - start: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - end: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - featured: z.union([z.boolean(), BoolFieldUpdateOperationsInputObjectSchema]).optional(), - hidden: z.union([z.boolean(), BoolFieldUpdateOperationsInputObjectSchema]).optional(), - deadline: z.union([z.coerce.date(), NullableDateTimeFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - employment: z.union([EmploymentTypeSchema, EnumEmploymentTypeFieldUpdateOperationsInputObjectSchema]).optional(), - applicationLink: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - applicationEmail: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - rollingAdmission: z.union([z.boolean(), BoolFieldUpdateOperationsInputObjectSchema]).optional(), - createdAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - updatedAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - get company(){ return CompanyUpdateOneRequiredWithoutJobListingNestedInputObjectSchema.optional(); }, - get locations(){ return JobListingLocationUpdateManyWithoutJobListingNestedInputObjectSchema.optional(); } -}).strict(); -export const JobListingUpdateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_JobListingUpdateInput_schema) as unknown as z.ZodType; -export const JobListingUpdateInputObjectZodSchema = z.lazy(__makeSchema_JobListingUpdateInput_schema); - - -// File: JobListingUncheckedUpdateInput.schema.ts -const __makeSchema_JobListingUncheckedUpdateInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - title: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - description: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - shortDescription: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - start: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - end: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - featured: z.union([z.boolean(), BoolFieldUpdateOperationsInputObjectSchema]).optional(), - hidden: z.union([z.boolean(), BoolFieldUpdateOperationsInputObjectSchema]).optional(), - deadline: z.union([z.coerce.date(), NullableDateTimeFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - employment: z.union([EmploymentTypeSchema, EnumEmploymentTypeFieldUpdateOperationsInputObjectSchema]).optional(), - applicationLink: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - applicationEmail: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - rollingAdmission: z.union([z.boolean(), BoolFieldUpdateOperationsInputObjectSchema]).optional(), - createdAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - updatedAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - companyId: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - get locations(){ return JobListingLocationUncheckedUpdateManyWithoutJobListingNestedInputObjectSchema.optional(); } -}).strict(); -export const JobListingUncheckedUpdateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_JobListingUncheckedUpdateInput_schema) as unknown as z.ZodType; -export const JobListingUncheckedUpdateInputObjectZodSchema = z.lazy(__makeSchema_JobListingUncheckedUpdateInput_schema); - - -// File: JobListingCreateManyInput.schema.ts -const __makeSchema_JobListingCreateManyInput_schema = () => z.object({ - id: z.string().optional(), - title: z.string(), - description: z.string(), - shortDescription: z.string().optional().nullable(), - start: z.coerce.date(), - end: z.coerce.date(), - featured: z.boolean(), - hidden: z.boolean(), - deadline: z.coerce.date().optional().nullable(), - employment: EmploymentTypeSchema, - applicationLink: z.string().optional().nullable(), - applicationEmail: z.string().optional().nullable(), - rollingAdmission: z.boolean(), - createdAt: z.coerce.date().optional(), - updatedAt: z.coerce.date().optional(), - companyId: z.string() -}).strict(); -export const JobListingCreateManyInputObjectSchema: z.ZodType = z.lazy(__makeSchema_JobListingCreateManyInput_schema) as unknown as z.ZodType; -export const JobListingCreateManyInputObjectZodSchema = z.lazy(__makeSchema_JobListingCreateManyInput_schema); - - -// File: JobListingUpdateManyMutationInput.schema.ts -const __makeSchema_JobListingUpdateManyMutationInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - title: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - description: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - shortDescription: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - start: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - end: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - featured: z.union([z.boolean(), BoolFieldUpdateOperationsInputObjectSchema]).optional(), - hidden: z.union([z.boolean(), BoolFieldUpdateOperationsInputObjectSchema]).optional(), - deadline: z.union([z.coerce.date(), NullableDateTimeFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - employment: z.union([EmploymentTypeSchema, EnumEmploymentTypeFieldUpdateOperationsInputObjectSchema]).optional(), - applicationLink: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - applicationEmail: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - rollingAdmission: z.union([z.boolean(), BoolFieldUpdateOperationsInputObjectSchema]).optional(), - createdAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - updatedAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional() -}).strict(); -export const JobListingUpdateManyMutationInputObjectSchema: z.ZodType = z.lazy(__makeSchema_JobListingUpdateManyMutationInput_schema) as unknown as z.ZodType; -export const JobListingUpdateManyMutationInputObjectZodSchema = z.lazy(__makeSchema_JobListingUpdateManyMutationInput_schema); - - -// File: JobListingUncheckedUpdateManyInput.schema.ts -const __makeSchema_JobListingUncheckedUpdateManyInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - title: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - description: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - shortDescription: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - start: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - end: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - featured: z.union([z.boolean(), BoolFieldUpdateOperationsInputObjectSchema]).optional(), - hidden: z.union([z.boolean(), BoolFieldUpdateOperationsInputObjectSchema]).optional(), - deadline: z.union([z.coerce.date(), NullableDateTimeFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - employment: z.union([EmploymentTypeSchema, EnumEmploymentTypeFieldUpdateOperationsInputObjectSchema]).optional(), - applicationLink: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - applicationEmail: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - rollingAdmission: z.union([z.boolean(), BoolFieldUpdateOperationsInputObjectSchema]).optional(), - createdAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - updatedAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - companyId: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional() -}).strict(); -export const JobListingUncheckedUpdateManyInputObjectSchema: z.ZodType = z.lazy(__makeSchema_JobListingUncheckedUpdateManyInput_schema) as unknown as z.ZodType; -export const JobListingUncheckedUpdateManyInputObjectZodSchema = z.lazy(__makeSchema_JobListingUncheckedUpdateManyInput_schema); - - -// File: JobListingLocationCreateInput.schema.ts -const __makeSchema_JobListingLocationCreateInput_schema = () => z.object({ - name: z.string(), - createdAt: z.coerce.date().optional(), - get jobListing(){ return JobListingCreateNestedOneWithoutLocationsInputObjectSchema; } -}).strict(); -export const JobListingLocationCreateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_JobListingLocationCreateInput_schema) as unknown as z.ZodType; -export const JobListingLocationCreateInputObjectZodSchema = z.lazy(__makeSchema_JobListingLocationCreateInput_schema); - - -// File: JobListingLocationUncheckedCreateInput.schema.ts -const __makeSchema_JobListingLocationUncheckedCreateInput_schema = () => z.object({ - name: z.string(), - createdAt: z.coerce.date().optional(), - jobListingId: z.string() -}).strict(); -export const JobListingLocationUncheckedCreateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_JobListingLocationUncheckedCreateInput_schema) as unknown as z.ZodType; -export const JobListingLocationUncheckedCreateInputObjectZodSchema = z.lazy(__makeSchema_JobListingLocationUncheckedCreateInput_schema); - - -// File: JobListingLocationUpdateInput.schema.ts -const __makeSchema_JobListingLocationUpdateInput_schema = () => z.object({ - name: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - createdAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - get jobListing(){ return JobListingUpdateOneRequiredWithoutLocationsNestedInputObjectSchema.optional(); } -}).strict(); -export const JobListingLocationUpdateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_JobListingLocationUpdateInput_schema) as unknown as z.ZodType; -export const JobListingLocationUpdateInputObjectZodSchema = z.lazy(__makeSchema_JobListingLocationUpdateInput_schema); - - -// File: JobListingLocationUncheckedUpdateInput.schema.ts -const __makeSchema_JobListingLocationUncheckedUpdateInput_schema = () => z.object({ - name: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - createdAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - jobListingId: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional() -}).strict(); -export const JobListingLocationUncheckedUpdateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_JobListingLocationUncheckedUpdateInput_schema) as unknown as z.ZodType; -export const JobListingLocationUncheckedUpdateInputObjectZodSchema = z.lazy(__makeSchema_JobListingLocationUncheckedUpdateInput_schema); - - -// File: JobListingLocationCreateManyInput.schema.ts -const __makeSchema_JobListingLocationCreateManyInput_schema = () => z.object({ - name: z.string(), - createdAt: z.coerce.date().optional(), - jobListingId: z.string() -}).strict(); -export const JobListingLocationCreateManyInputObjectSchema: z.ZodType = z.lazy(__makeSchema_JobListingLocationCreateManyInput_schema) as unknown as z.ZodType; -export const JobListingLocationCreateManyInputObjectZodSchema = z.lazy(__makeSchema_JobListingLocationCreateManyInput_schema); - - -// File: JobListingLocationUpdateManyMutationInput.schema.ts -const __makeSchema_JobListingLocationUpdateManyMutationInput_schema = () => z.object({ - name: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - createdAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional() -}).strict(); -export const JobListingLocationUpdateManyMutationInputObjectSchema: z.ZodType = z.lazy(__makeSchema_JobListingLocationUpdateManyMutationInput_schema) as unknown as z.ZodType; -export const JobListingLocationUpdateManyMutationInputObjectZodSchema = z.lazy(__makeSchema_JobListingLocationUpdateManyMutationInput_schema); - - -// File: JobListingLocationUncheckedUpdateManyInput.schema.ts -const __makeSchema_JobListingLocationUncheckedUpdateManyInput_schema = () => z.object({ - name: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - createdAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - jobListingId: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional() -}).strict(); -export const JobListingLocationUncheckedUpdateManyInputObjectSchema: z.ZodType = z.lazy(__makeSchema_JobListingLocationUncheckedUpdateManyInput_schema) as unknown as z.ZodType; -export const JobListingLocationUncheckedUpdateManyInputObjectZodSchema = z.lazy(__makeSchema_JobListingLocationUncheckedUpdateManyInput_schema); - - -// File: OfflineCreateInput.schema.ts -const __makeSchema_OfflineCreateInput_schema = () => z.object({ - id: z.string().optional(), - title: z.string(), - fileUrl: z.string().optional().nullable(), - imageUrl: z.string().optional().nullable(), - publishedAt: z.coerce.date(), - createdAt: z.coerce.date().optional() -}).strict(); -export const OfflineCreateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_OfflineCreateInput_schema) as unknown as z.ZodType; -export const OfflineCreateInputObjectZodSchema = z.lazy(__makeSchema_OfflineCreateInput_schema); - - -// File: OfflineUncheckedCreateInput.schema.ts -const __makeSchema_OfflineUncheckedCreateInput_schema = () => z.object({ - id: z.string().optional(), - title: z.string(), - fileUrl: z.string().optional().nullable(), - imageUrl: z.string().optional().nullable(), - publishedAt: z.coerce.date(), - createdAt: z.coerce.date().optional() -}).strict(); -export const OfflineUncheckedCreateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_OfflineUncheckedCreateInput_schema) as unknown as z.ZodType; -export const OfflineUncheckedCreateInputObjectZodSchema = z.lazy(__makeSchema_OfflineUncheckedCreateInput_schema); - - -// File: OfflineUpdateInput.schema.ts -const __makeSchema_OfflineUpdateInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - title: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - fileUrl: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - imageUrl: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - publishedAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - createdAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - updatedAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional() -}).strict(); -export const OfflineUpdateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_OfflineUpdateInput_schema) as unknown as z.ZodType; -export const OfflineUpdateInputObjectZodSchema = z.lazy(__makeSchema_OfflineUpdateInput_schema); - - -// File: OfflineUncheckedUpdateInput.schema.ts -const __makeSchema_OfflineUncheckedUpdateInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - title: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - fileUrl: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - imageUrl: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - publishedAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - createdAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - updatedAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional() -}).strict(); -export const OfflineUncheckedUpdateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_OfflineUncheckedUpdateInput_schema) as unknown as z.ZodType; -export const OfflineUncheckedUpdateInputObjectZodSchema = z.lazy(__makeSchema_OfflineUncheckedUpdateInput_schema); - - -// File: OfflineCreateManyInput.schema.ts -const __makeSchema_OfflineCreateManyInput_schema = () => z.object({ - id: z.string().optional(), - title: z.string(), - fileUrl: z.string().optional().nullable(), - imageUrl: z.string().optional().nullable(), - publishedAt: z.coerce.date(), - createdAt: z.coerce.date().optional(), - updatedAt: z.coerce.date().optional() -}).strict(); -export const OfflineCreateManyInputObjectSchema: z.ZodType = z.lazy(__makeSchema_OfflineCreateManyInput_schema) as unknown as z.ZodType; -export const OfflineCreateManyInputObjectZodSchema = z.lazy(__makeSchema_OfflineCreateManyInput_schema); - - -// File: OfflineUpdateManyMutationInput.schema.ts -const __makeSchema_OfflineUpdateManyMutationInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - title: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - fileUrl: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - imageUrl: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - publishedAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - createdAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - updatedAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional() -}).strict(); -export const OfflineUpdateManyMutationInputObjectSchema: z.ZodType = z.lazy(__makeSchema_OfflineUpdateManyMutationInput_schema) as unknown as z.ZodType; -export const OfflineUpdateManyMutationInputObjectZodSchema = z.lazy(__makeSchema_OfflineUpdateManyMutationInput_schema); - - -// File: OfflineUncheckedUpdateManyInput.schema.ts -const __makeSchema_OfflineUncheckedUpdateManyInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - title: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - fileUrl: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - imageUrl: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - publishedAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - createdAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - updatedAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional() -}).strict(); -export const OfflineUncheckedUpdateManyInputObjectSchema: z.ZodType = z.lazy(__makeSchema_OfflineUncheckedUpdateManyInput_schema) as unknown as z.ZodType; -export const OfflineUncheckedUpdateManyInputObjectZodSchema = z.lazy(__makeSchema_OfflineUncheckedUpdateManyInput_schema); - - -// File: ArticleCreateInput.schema.ts -const __makeSchema_ArticleCreateInput_schema = () => z.object({ - id: z.string().optional(), - slug: z.string(), - title: z.string(), - author: z.string(), - photographer: z.string(), - imageUrl: z.string(), - excerpt: z.string(), - content: z.string(), - isFeatured: z.boolean().optional(), - vimeoId: z.string().optional().nullable(), - createdAt: z.coerce.date().optional(), - get tags(){ return ArticleTagLinkCreateNestedManyWithoutArticleInputObjectSchema.optional(); } -}).strict(); -export const ArticleCreateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_ArticleCreateInput_schema) as unknown as z.ZodType; -export const ArticleCreateInputObjectZodSchema = z.lazy(__makeSchema_ArticleCreateInput_schema); - - -// File: ArticleUncheckedCreateInput.schema.ts -const __makeSchema_ArticleUncheckedCreateInput_schema = () => z.object({ - id: z.string().optional(), - slug: z.string(), - title: z.string(), - author: z.string(), - photographer: z.string(), - imageUrl: z.string(), - excerpt: z.string(), - content: z.string(), - isFeatured: z.boolean().optional(), - vimeoId: z.string().optional().nullable(), - createdAt: z.coerce.date().optional(), - get tags(){ return ArticleTagLinkUncheckedCreateNestedManyWithoutArticleInputObjectSchema.optional(); } -}).strict(); -export const ArticleUncheckedCreateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_ArticleUncheckedCreateInput_schema) as unknown as z.ZodType; -export const ArticleUncheckedCreateInputObjectZodSchema = z.lazy(__makeSchema_ArticleUncheckedCreateInput_schema); - - -// File: ArticleUpdateInput.schema.ts -const __makeSchema_ArticleUpdateInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - slug: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - title: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - author: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - photographer: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - imageUrl: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - excerpt: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - content: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - isFeatured: z.union([z.boolean(), BoolFieldUpdateOperationsInputObjectSchema]).optional(), - vimeoId: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - createdAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - updatedAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - get tags(){ return ArticleTagLinkUpdateManyWithoutArticleNestedInputObjectSchema.optional(); } -}).strict(); -export const ArticleUpdateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_ArticleUpdateInput_schema) as unknown as z.ZodType; -export const ArticleUpdateInputObjectZodSchema = z.lazy(__makeSchema_ArticleUpdateInput_schema); - - -// File: ArticleUncheckedUpdateInput.schema.ts -const __makeSchema_ArticleUncheckedUpdateInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - slug: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - title: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - author: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - photographer: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - imageUrl: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - excerpt: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - content: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - isFeatured: z.union([z.boolean(), BoolFieldUpdateOperationsInputObjectSchema]).optional(), - vimeoId: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - createdAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - updatedAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - get tags(){ return ArticleTagLinkUncheckedUpdateManyWithoutArticleNestedInputObjectSchema.optional(); } -}).strict(); -export const ArticleUncheckedUpdateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_ArticleUncheckedUpdateInput_schema) as unknown as z.ZodType; -export const ArticleUncheckedUpdateInputObjectZodSchema = z.lazy(__makeSchema_ArticleUncheckedUpdateInput_schema); - - -// File: ArticleCreateManyInput.schema.ts -const __makeSchema_ArticleCreateManyInput_schema = () => z.object({ - id: z.string().optional(), - slug: z.string(), - title: z.string(), - author: z.string(), - photographer: z.string(), - imageUrl: z.string(), - excerpt: z.string(), - content: z.string(), - isFeatured: z.boolean().optional(), - vimeoId: z.string().optional().nullable(), - createdAt: z.coerce.date().optional(), - updatedAt: z.coerce.date().optional() -}).strict(); -export const ArticleCreateManyInputObjectSchema: z.ZodType = z.lazy(__makeSchema_ArticleCreateManyInput_schema) as unknown as z.ZodType; -export const ArticleCreateManyInputObjectZodSchema = z.lazy(__makeSchema_ArticleCreateManyInput_schema); - - -// File: ArticleUpdateManyMutationInput.schema.ts -const __makeSchema_ArticleUpdateManyMutationInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - slug: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - title: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - author: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - photographer: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - imageUrl: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - excerpt: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - content: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - isFeatured: z.union([z.boolean(), BoolFieldUpdateOperationsInputObjectSchema]).optional(), - vimeoId: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - createdAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - updatedAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional() -}).strict(); -export const ArticleUpdateManyMutationInputObjectSchema: z.ZodType = z.lazy(__makeSchema_ArticleUpdateManyMutationInput_schema) as unknown as z.ZodType; -export const ArticleUpdateManyMutationInputObjectZodSchema = z.lazy(__makeSchema_ArticleUpdateManyMutationInput_schema); - - -// File: ArticleUncheckedUpdateManyInput.schema.ts -const __makeSchema_ArticleUncheckedUpdateManyInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - slug: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - title: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - author: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - photographer: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - imageUrl: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - excerpt: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - content: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - isFeatured: z.union([z.boolean(), BoolFieldUpdateOperationsInputObjectSchema]).optional(), - vimeoId: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - createdAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - updatedAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional() -}).strict(); -export const ArticleUncheckedUpdateManyInputObjectSchema: z.ZodType = z.lazy(__makeSchema_ArticleUncheckedUpdateManyInput_schema) as unknown as z.ZodType; -export const ArticleUncheckedUpdateManyInputObjectZodSchema = z.lazy(__makeSchema_ArticleUncheckedUpdateManyInput_schema); - - -// File: ArticleTagCreateInput.schema.ts -const __makeSchema_ArticleTagCreateInput_schema = () => z.object({ - name: z.string(), - get articles(){ return ArticleTagLinkCreateNestedManyWithoutTagInputObjectSchema.optional(); } -}).strict(); -export const ArticleTagCreateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_ArticleTagCreateInput_schema) as unknown as z.ZodType; -export const ArticleTagCreateInputObjectZodSchema = z.lazy(__makeSchema_ArticleTagCreateInput_schema); - - -// File: ArticleTagUncheckedCreateInput.schema.ts -const __makeSchema_ArticleTagUncheckedCreateInput_schema = () => z.object({ - name: z.string(), - get articles(){ return ArticleTagLinkUncheckedCreateNestedManyWithoutTagInputObjectSchema.optional(); } -}).strict(); -export const ArticleTagUncheckedCreateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_ArticleTagUncheckedCreateInput_schema) as unknown as z.ZodType; -export const ArticleTagUncheckedCreateInputObjectZodSchema = z.lazy(__makeSchema_ArticleTagUncheckedCreateInput_schema); - - -// File: ArticleTagUpdateInput.schema.ts -const __makeSchema_ArticleTagUpdateInput_schema = () => z.object({ - name: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - get articles(){ return ArticleTagLinkUpdateManyWithoutTagNestedInputObjectSchema.optional(); } -}).strict(); -export const ArticleTagUpdateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_ArticleTagUpdateInput_schema) as unknown as z.ZodType; -export const ArticleTagUpdateInputObjectZodSchema = z.lazy(__makeSchema_ArticleTagUpdateInput_schema); - - -// File: ArticleTagUncheckedUpdateInput.schema.ts -const __makeSchema_ArticleTagUncheckedUpdateInput_schema = () => z.object({ - name: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - get articles(){ return ArticleTagLinkUncheckedUpdateManyWithoutTagNestedInputObjectSchema.optional(); } -}).strict(); -export const ArticleTagUncheckedUpdateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_ArticleTagUncheckedUpdateInput_schema) as unknown as z.ZodType; -export const ArticleTagUncheckedUpdateInputObjectZodSchema = z.lazy(__makeSchema_ArticleTagUncheckedUpdateInput_schema); - - -// File: ArticleTagCreateManyInput.schema.ts -const __makeSchema_ArticleTagCreateManyInput_schema = () => z.object({ - name: z.string() -}).strict(); -export const ArticleTagCreateManyInputObjectSchema: z.ZodType = z.lazy(__makeSchema_ArticleTagCreateManyInput_schema) as unknown as z.ZodType; -export const ArticleTagCreateManyInputObjectZodSchema = z.lazy(__makeSchema_ArticleTagCreateManyInput_schema); - - -// File: ArticleTagUpdateManyMutationInput.schema.ts -const __makeSchema_ArticleTagUpdateManyMutationInput_schema = () => z.object({ - name: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional() -}).strict(); -export const ArticleTagUpdateManyMutationInputObjectSchema: z.ZodType = z.lazy(__makeSchema_ArticleTagUpdateManyMutationInput_schema) as unknown as z.ZodType; -export const ArticleTagUpdateManyMutationInputObjectZodSchema = z.lazy(__makeSchema_ArticleTagUpdateManyMutationInput_schema); - - -// File: ArticleTagUncheckedUpdateManyInput.schema.ts -const __makeSchema_ArticleTagUncheckedUpdateManyInput_schema = () => z.object({ - name: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional() -}).strict(); -export const ArticleTagUncheckedUpdateManyInputObjectSchema: z.ZodType = z.lazy(__makeSchema_ArticleTagUncheckedUpdateManyInput_schema) as unknown as z.ZodType; -export const ArticleTagUncheckedUpdateManyInputObjectZodSchema = z.lazy(__makeSchema_ArticleTagUncheckedUpdateManyInput_schema); - - -// File: ArticleTagLinkCreateInput.schema.ts -const __makeSchema_ArticleTagLinkCreateInput_schema = () => z.object({ - get article(){ return ArticleCreateNestedOneWithoutTagsInputObjectSchema; }, - get tag(){ return ArticleTagCreateNestedOneWithoutArticlesInputObjectSchema; } -}).strict(); -export const ArticleTagLinkCreateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_ArticleTagLinkCreateInput_schema) as unknown as z.ZodType; -export const ArticleTagLinkCreateInputObjectZodSchema = z.lazy(__makeSchema_ArticleTagLinkCreateInput_schema); - - -// File: ArticleTagLinkUncheckedCreateInput.schema.ts -const __makeSchema_ArticleTagLinkUncheckedCreateInput_schema = () => z.object({ - articleId: z.string(), - tagName: z.string() -}).strict(); -export const ArticleTagLinkUncheckedCreateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_ArticleTagLinkUncheckedCreateInput_schema) as unknown as z.ZodType; -export const ArticleTagLinkUncheckedCreateInputObjectZodSchema = z.lazy(__makeSchema_ArticleTagLinkUncheckedCreateInput_schema); - - -// File: ArticleTagLinkUpdateInput.schema.ts -const __makeSchema_ArticleTagLinkUpdateInput_schema = () => z.object({ - get article(){ return ArticleUpdateOneRequiredWithoutTagsNestedInputObjectSchema.optional(); }, - get tag(){ return ArticleTagUpdateOneRequiredWithoutArticlesNestedInputObjectSchema.optional(); } -}).strict(); -export const ArticleTagLinkUpdateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_ArticleTagLinkUpdateInput_schema) as unknown as z.ZodType; -export const ArticleTagLinkUpdateInputObjectZodSchema = z.lazy(__makeSchema_ArticleTagLinkUpdateInput_schema); - - -// File: ArticleTagLinkUncheckedUpdateInput.schema.ts -const __makeSchema_ArticleTagLinkUncheckedUpdateInput_schema = () => z.object({ - articleId: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - tagName: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional() -}).strict(); -export const ArticleTagLinkUncheckedUpdateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_ArticleTagLinkUncheckedUpdateInput_schema) as unknown as z.ZodType; -export const ArticleTagLinkUncheckedUpdateInputObjectZodSchema = z.lazy(__makeSchema_ArticleTagLinkUncheckedUpdateInput_schema); - - -// File: ArticleTagLinkCreateManyInput.schema.ts -const __makeSchema_ArticleTagLinkCreateManyInput_schema = () => z.object({ - articleId: z.string(), - tagName: z.string() -}).strict(); -export const ArticleTagLinkCreateManyInputObjectSchema: z.ZodType = z.lazy(__makeSchema_ArticleTagLinkCreateManyInput_schema) as unknown as z.ZodType; -export const ArticleTagLinkCreateManyInputObjectZodSchema = z.lazy(__makeSchema_ArticleTagLinkCreateManyInput_schema); - - -// File: ArticleTagLinkUpdateManyMutationInput.schema.ts -const __makeSchema_ArticleTagLinkUpdateManyMutationInput_schema = () => z.object({ - -}).strict(); -export const ArticleTagLinkUpdateManyMutationInputObjectSchema: z.ZodType = z.lazy(__makeSchema_ArticleTagLinkUpdateManyMutationInput_schema) as unknown as z.ZodType; -export const ArticleTagLinkUpdateManyMutationInputObjectZodSchema = z.lazy(__makeSchema_ArticleTagLinkUpdateManyMutationInput_schema); - - -// File: ArticleTagLinkUncheckedUpdateManyInput.schema.ts -const __makeSchema_ArticleTagLinkUncheckedUpdateManyInput_schema = () => z.object({ - articleId: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - tagName: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional() -}).strict(); -export const ArticleTagLinkUncheckedUpdateManyInputObjectSchema: z.ZodType = z.lazy(__makeSchema_ArticleTagLinkUncheckedUpdateManyInput_schema) as unknown as z.ZodType; -export const ArticleTagLinkUncheckedUpdateManyInputObjectZodSchema = z.lazy(__makeSchema_ArticleTagLinkUncheckedUpdateManyInput_schema); - - -// File: TaskCreateInput.schema.ts -const __makeSchema_TaskCreateInput_schema = () => z.object({ - id: z.string().optional(), - type: TaskTypeSchema, - status: TaskStatusSchema.optional(), - payload: z.union([JsonNullValueInputSchema, jsonSchema]).optional(), - createdAt: z.coerce.date().optional(), - scheduledAt: z.coerce.date(), - processedAt: z.coerce.date().optional().nullable(), - get recurringTask(){ return RecurringTaskCreateNestedOneWithoutTasksInputObjectSchema.optional(); }, - get attendancePools(){ return AttendancePoolCreateNestedManyWithoutTaskInputObjectSchema.optional(); }, - get notifications(){ return NotificationCreateNestedManyWithoutTaskInputObjectSchema.optional(); } -}).strict(); -export const TaskCreateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_TaskCreateInput_schema) as unknown as z.ZodType; -export const TaskCreateInputObjectZodSchema = z.lazy(__makeSchema_TaskCreateInput_schema); - - -// File: TaskUncheckedCreateInput.schema.ts -const __makeSchema_TaskUncheckedCreateInput_schema = () => z.object({ - id: z.string().optional(), - type: TaskTypeSchema, - status: TaskStatusSchema.optional(), - payload: z.union([JsonNullValueInputSchema, jsonSchema]).optional(), - createdAt: z.coerce.date().optional(), - scheduledAt: z.coerce.date(), - processedAt: z.coerce.date().optional().nullable(), - recurringTaskId: z.string().optional().nullable(), - get attendancePools(){ return AttendancePoolUncheckedCreateNestedManyWithoutTaskInputObjectSchema.optional(); }, - get notifications(){ return NotificationUncheckedCreateNestedManyWithoutTaskInputObjectSchema.optional(); } -}).strict(); -export const TaskUncheckedCreateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_TaskUncheckedCreateInput_schema) as unknown as z.ZodType; -export const TaskUncheckedCreateInputObjectZodSchema = z.lazy(__makeSchema_TaskUncheckedCreateInput_schema); - - -// File: TaskUpdateInput.schema.ts -const __makeSchema_TaskUpdateInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - type: z.union([TaskTypeSchema, EnumTaskTypeFieldUpdateOperationsInputObjectSchema]).optional(), - status: z.union([TaskStatusSchema, EnumTaskStatusFieldUpdateOperationsInputObjectSchema]).optional(), - payload: z.union([JsonNullValueInputSchema, jsonSchema]).optional(), - createdAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - scheduledAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - processedAt: z.union([z.coerce.date(), NullableDateTimeFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - get recurringTask(){ return RecurringTaskUpdateOneWithoutTasksNestedInputObjectSchema.optional(); }, - get attendancePools(){ return AttendancePoolUpdateManyWithoutTaskNestedInputObjectSchema.optional(); }, - get notifications(){ return NotificationUpdateManyWithoutTaskNestedInputObjectSchema.optional(); } -}).strict(); -export const TaskUpdateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_TaskUpdateInput_schema) as unknown as z.ZodType; -export const TaskUpdateInputObjectZodSchema = z.lazy(__makeSchema_TaskUpdateInput_schema); - - -// File: TaskUncheckedUpdateInput.schema.ts -const __makeSchema_TaskUncheckedUpdateInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - type: z.union([TaskTypeSchema, EnumTaskTypeFieldUpdateOperationsInputObjectSchema]).optional(), - status: z.union([TaskStatusSchema, EnumTaskStatusFieldUpdateOperationsInputObjectSchema]).optional(), - payload: z.union([JsonNullValueInputSchema, jsonSchema]).optional(), - createdAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - scheduledAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - processedAt: z.union([z.coerce.date(), NullableDateTimeFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - recurringTaskId: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - get attendancePools(){ return AttendancePoolUncheckedUpdateManyWithoutTaskNestedInputObjectSchema.optional(); }, - get notifications(){ return NotificationUncheckedUpdateManyWithoutTaskNestedInputObjectSchema.optional(); } -}).strict(); -export const TaskUncheckedUpdateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_TaskUncheckedUpdateInput_schema) as unknown as z.ZodType; -export const TaskUncheckedUpdateInputObjectZodSchema = z.lazy(__makeSchema_TaskUncheckedUpdateInput_schema); - - -// File: TaskCreateManyInput.schema.ts -const __makeSchema_TaskCreateManyInput_schema = () => z.object({ - id: z.string().optional(), - type: TaskTypeSchema, - status: TaskStatusSchema.optional(), - payload: z.union([JsonNullValueInputSchema, jsonSchema]).optional(), - createdAt: z.coerce.date().optional(), - scheduledAt: z.coerce.date(), - processedAt: z.coerce.date().optional().nullable(), - recurringTaskId: z.string().optional().nullable() -}).strict(); -export const TaskCreateManyInputObjectSchema: z.ZodType = z.lazy(__makeSchema_TaskCreateManyInput_schema) as unknown as z.ZodType; -export const TaskCreateManyInputObjectZodSchema = z.lazy(__makeSchema_TaskCreateManyInput_schema); - - -// File: TaskUpdateManyMutationInput.schema.ts -const __makeSchema_TaskUpdateManyMutationInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - type: z.union([TaskTypeSchema, EnumTaskTypeFieldUpdateOperationsInputObjectSchema]).optional(), - status: z.union([TaskStatusSchema, EnumTaskStatusFieldUpdateOperationsInputObjectSchema]).optional(), - payload: z.union([JsonNullValueInputSchema, jsonSchema]).optional(), - createdAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - scheduledAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - processedAt: z.union([z.coerce.date(), NullableDateTimeFieldUpdateOperationsInputObjectSchema]).optional().nullable() -}).strict(); -export const TaskUpdateManyMutationInputObjectSchema: z.ZodType = z.lazy(__makeSchema_TaskUpdateManyMutationInput_schema) as unknown as z.ZodType; -export const TaskUpdateManyMutationInputObjectZodSchema = z.lazy(__makeSchema_TaskUpdateManyMutationInput_schema); - - -// File: TaskUncheckedUpdateManyInput.schema.ts -const __makeSchema_TaskUncheckedUpdateManyInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - type: z.union([TaskTypeSchema, EnumTaskTypeFieldUpdateOperationsInputObjectSchema]).optional(), - status: z.union([TaskStatusSchema, EnumTaskStatusFieldUpdateOperationsInputObjectSchema]).optional(), - payload: z.union([JsonNullValueInputSchema, jsonSchema]).optional(), - createdAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - scheduledAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - processedAt: z.union([z.coerce.date(), NullableDateTimeFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - recurringTaskId: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable() -}).strict(); -export const TaskUncheckedUpdateManyInputObjectSchema: z.ZodType = z.lazy(__makeSchema_TaskUncheckedUpdateManyInput_schema) as unknown as z.ZodType; -export const TaskUncheckedUpdateManyInputObjectZodSchema = z.lazy(__makeSchema_TaskUncheckedUpdateManyInput_schema); - - -// File: RecurringTaskCreateInput.schema.ts -const __makeSchema_RecurringTaskCreateInput_schema = () => z.object({ - id: z.string().optional(), - type: TaskTypeSchema, - payload: z.union([JsonNullValueInputSchema, jsonSchema]).optional(), - createdAt: z.coerce.date().optional(), - schedule: z.string(), - lastRunAt: z.coerce.date().optional().nullable(), - nextRunAt: z.coerce.date(), - get tasks(){ return TaskCreateNestedManyWithoutRecurringTaskInputObjectSchema.optional(); } -}).strict(); -export const RecurringTaskCreateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_RecurringTaskCreateInput_schema) as unknown as z.ZodType; -export const RecurringTaskCreateInputObjectZodSchema = z.lazy(__makeSchema_RecurringTaskCreateInput_schema); - - -// File: RecurringTaskUncheckedCreateInput.schema.ts -const __makeSchema_RecurringTaskUncheckedCreateInput_schema = () => z.object({ - id: z.string().optional(), - type: TaskTypeSchema, - payload: z.union([JsonNullValueInputSchema, jsonSchema]).optional(), - createdAt: z.coerce.date().optional(), - schedule: z.string(), - lastRunAt: z.coerce.date().optional().nullable(), - nextRunAt: z.coerce.date(), - get tasks(){ return TaskUncheckedCreateNestedManyWithoutRecurringTaskInputObjectSchema.optional(); } -}).strict(); -export const RecurringTaskUncheckedCreateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_RecurringTaskUncheckedCreateInput_schema) as unknown as z.ZodType; -export const RecurringTaskUncheckedCreateInputObjectZodSchema = z.lazy(__makeSchema_RecurringTaskUncheckedCreateInput_schema); - - -// File: RecurringTaskUpdateInput.schema.ts -const __makeSchema_RecurringTaskUpdateInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - type: z.union([TaskTypeSchema, EnumTaskTypeFieldUpdateOperationsInputObjectSchema]).optional(), - payload: z.union([JsonNullValueInputSchema, jsonSchema]).optional(), - createdAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - schedule: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - lastRunAt: z.union([z.coerce.date(), NullableDateTimeFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - nextRunAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - get tasks(){ return TaskUpdateManyWithoutRecurringTaskNestedInputObjectSchema.optional(); } -}).strict(); -export const RecurringTaskUpdateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_RecurringTaskUpdateInput_schema) as unknown as z.ZodType; -export const RecurringTaskUpdateInputObjectZodSchema = z.lazy(__makeSchema_RecurringTaskUpdateInput_schema); - - -// File: RecurringTaskUncheckedUpdateInput.schema.ts -const __makeSchema_RecurringTaskUncheckedUpdateInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - type: z.union([TaskTypeSchema, EnumTaskTypeFieldUpdateOperationsInputObjectSchema]).optional(), - payload: z.union([JsonNullValueInputSchema, jsonSchema]).optional(), - createdAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - schedule: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - lastRunAt: z.union([z.coerce.date(), NullableDateTimeFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - nextRunAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - get tasks(){ return TaskUncheckedUpdateManyWithoutRecurringTaskNestedInputObjectSchema.optional(); } -}).strict(); -export const RecurringTaskUncheckedUpdateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_RecurringTaskUncheckedUpdateInput_schema) as unknown as z.ZodType; -export const RecurringTaskUncheckedUpdateInputObjectZodSchema = z.lazy(__makeSchema_RecurringTaskUncheckedUpdateInput_schema); - - -// File: RecurringTaskCreateManyInput.schema.ts -const __makeSchema_RecurringTaskCreateManyInput_schema = () => z.object({ - id: z.string().optional(), - type: TaskTypeSchema, - payload: z.union([JsonNullValueInputSchema, jsonSchema]).optional(), - createdAt: z.coerce.date().optional(), - schedule: z.string(), - lastRunAt: z.coerce.date().optional().nullable(), - nextRunAt: z.coerce.date() -}).strict(); -export const RecurringTaskCreateManyInputObjectSchema: z.ZodType = z.lazy(__makeSchema_RecurringTaskCreateManyInput_schema) as unknown as z.ZodType; -export const RecurringTaskCreateManyInputObjectZodSchema = z.lazy(__makeSchema_RecurringTaskCreateManyInput_schema); - - -// File: RecurringTaskUpdateManyMutationInput.schema.ts -const __makeSchema_RecurringTaskUpdateManyMutationInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - type: z.union([TaskTypeSchema, EnumTaskTypeFieldUpdateOperationsInputObjectSchema]).optional(), - payload: z.union([JsonNullValueInputSchema, jsonSchema]).optional(), - createdAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - schedule: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - lastRunAt: z.union([z.coerce.date(), NullableDateTimeFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - nextRunAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional() -}).strict(); -export const RecurringTaskUpdateManyMutationInputObjectSchema: z.ZodType = z.lazy(__makeSchema_RecurringTaskUpdateManyMutationInput_schema) as unknown as z.ZodType; -export const RecurringTaskUpdateManyMutationInputObjectZodSchema = z.lazy(__makeSchema_RecurringTaskUpdateManyMutationInput_schema); - - -// File: RecurringTaskUncheckedUpdateManyInput.schema.ts -const __makeSchema_RecurringTaskUncheckedUpdateManyInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - type: z.union([TaskTypeSchema, EnumTaskTypeFieldUpdateOperationsInputObjectSchema]).optional(), - payload: z.union([JsonNullValueInputSchema, jsonSchema]).optional(), - createdAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - schedule: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - lastRunAt: z.union([z.coerce.date(), NullableDateTimeFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - nextRunAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional() -}).strict(); -export const RecurringTaskUncheckedUpdateManyInputObjectSchema: z.ZodType = z.lazy(__makeSchema_RecurringTaskUncheckedUpdateManyInput_schema) as unknown as z.ZodType; -export const RecurringTaskUncheckedUpdateManyInputObjectZodSchema = z.lazy(__makeSchema_RecurringTaskUncheckedUpdateManyInput_schema); - - -// File: FeedbackFormCreateInput.schema.ts -const __makeSchema_FeedbackFormCreateInput_schema = () => z.object({ - id: z.string().optional(), - publicResultsToken: z.string().optional(), - createdAt: z.coerce.date().optional(), - answerDeadline: z.coerce.date(), - get event(){ return EventCreateNestedOneWithoutFeedbackFormInputObjectSchema; }, - get questions(){ return FeedbackQuestionCreateNestedManyWithoutFeedbackFormInputObjectSchema.optional(); }, - get answers(){ return FeedbackFormAnswerCreateNestedManyWithoutFeedbackFormInputObjectSchema.optional(); } -}).strict(); -export const FeedbackFormCreateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackFormCreateInput_schema) as unknown as z.ZodType; -export const FeedbackFormCreateInputObjectZodSchema = z.lazy(__makeSchema_FeedbackFormCreateInput_schema); - - -// File: FeedbackFormUncheckedCreateInput.schema.ts -const __makeSchema_FeedbackFormUncheckedCreateInput_schema = () => z.object({ - id: z.string().optional(), - publicResultsToken: z.string().optional(), - createdAt: z.coerce.date().optional(), - answerDeadline: z.coerce.date(), - eventId: z.string(), - get questions(){ return FeedbackQuestionUncheckedCreateNestedManyWithoutFeedbackFormInputObjectSchema.optional(); }, - get answers(){ return FeedbackFormAnswerUncheckedCreateNestedManyWithoutFeedbackFormInputObjectSchema.optional(); } -}).strict(); -export const FeedbackFormUncheckedCreateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackFormUncheckedCreateInput_schema) as unknown as z.ZodType; -export const FeedbackFormUncheckedCreateInputObjectZodSchema = z.lazy(__makeSchema_FeedbackFormUncheckedCreateInput_schema); - - -// File: FeedbackFormUpdateInput.schema.ts -const __makeSchema_FeedbackFormUpdateInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - publicResultsToken: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - createdAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - updatedAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - answerDeadline: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - get event(){ return EventUpdateOneRequiredWithoutFeedbackFormNestedInputObjectSchema.optional(); }, - get questions(){ return FeedbackQuestionUpdateManyWithoutFeedbackFormNestedInputObjectSchema.optional(); }, - get answers(){ return FeedbackFormAnswerUpdateManyWithoutFeedbackFormNestedInputObjectSchema.optional(); } -}).strict(); -export const FeedbackFormUpdateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackFormUpdateInput_schema) as unknown as z.ZodType; -export const FeedbackFormUpdateInputObjectZodSchema = z.lazy(__makeSchema_FeedbackFormUpdateInput_schema); - - -// File: FeedbackFormUncheckedUpdateInput.schema.ts -const __makeSchema_FeedbackFormUncheckedUpdateInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - publicResultsToken: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - createdAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - updatedAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - answerDeadline: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - eventId: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - get questions(){ return FeedbackQuestionUncheckedUpdateManyWithoutFeedbackFormNestedInputObjectSchema.optional(); }, - get answers(){ return FeedbackFormAnswerUncheckedUpdateManyWithoutFeedbackFormNestedInputObjectSchema.optional(); } -}).strict(); -export const FeedbackFormUncheckedUpdateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackFormUncheckedUpdateInput_schema) as unknown as z.ZodType; -export const FeedbackFormUncheckedUpdateInputObjectZodSchema = z.lazy(__makeSchema_FeedbackFormUncheckedUpdateInput_schema); - - -// File: FeedbackFormCreateManyInput.schema.ts -const __makeSchema_FeedbackFormCreateManyInput_schema = () => z.object({ - id: z.string().optional(), - publicResultsToken: z.string().optional(), - createdAt: z.coerce.date().optional(), - updatedAt: z.coerce.date().optional(), - answerDeadline: z.coerce.date(), - eventId: z.string() -}).strict(); -export const FeedbackFormCreateManyInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackFormCreateManyInput_schema) as unknown as z.ZodType; -export const FeedbackFormCreateManyInputObjectZodSchema = z.lazy(__makeSchema_FeedbackFormCreateManyInput_schema); - - -// File: FeedbackFormUpdateManyMutationInput.schema.ts -const __makeSchema_FeedbackFormUpdateManyMutationInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - publicResultsToken: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - createdAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - updatedAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - answerDeadline: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional() -}).strict(); -export const FeedbackFormUpdateManyMutationInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackFormUpdateManyMutationInput_schema) as unknown as z.ZodType; -export const FeedbackFormUpdateManyMutationInputObjectZodSchema = z.lazy(__makeSchema_FeedbackFormUpdateManyMutationInput_schema); - - -// File: FeedbackFormUncheckedUpdateManyInput.schema.ts -const __makeSchema_FeedbackFormUncheckedUpdateManyInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - publicResultsToken: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - createdAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - updatedAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - answerDeadline: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - eventId: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional() -}).strict(); -export const FeedbackFormUncheckedUpdateManyInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackFormUncheckedUpdateManyInput_schema) as unknown as z.ZodType; -export const FeedbackFormUncheckedUpdateManyInputObjectZodSchema = z.lazy(__makeSchema_FeedbackFormUncheckedUpdateManyInput_schema); - - -// File: FeedbackQuestionCreateInput.schema.ts -const __makeSchema_FeedbackQuestionCreateInput_schema = () => z.object({ - id: z.string().optional(), - label: z.string(), - required: z.boolean().optional(), - showInPublicResults: z.boolean().optional(), - type: FeedbackQuestionTypeSchema, - order: z.number().int(), - createdAt: z.coerce.date().optional(), - get feedbackForm(){ return FeedbackFormCreateNestedOneWithoutQuestionsInputObjectSchema; }, - get options(){ return FeedbackQuestionOptionCreateNestedManyWithoutQuestionInputObjectSchema.optional(); }, - get answers(){ return FeedbackQuestionAnswerCreateNestedManyWithoutQuestionInputObjectSchema.optional(); } -}).strict(); -export const FeedbackQuestionCreateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackQuestionCreateInput_schema) as unknown as z.ZodType; -export const FeedbackQuestionCreateInputObjectZodSchema = z.lazy(__makeSchema_FeedbackQuestionCreateInput_schema); - - -// File: FeedbackQuestionUncheckedCreateInput.schema.ts -const __makeSchema_FeedbackQuestionUncheckedCreateInput_schema = () => z.object({ - id: z.string().optional(), - label: z.string(), - required: z.boolean().optional(), - showInPublicResults: z.boolean().optional(), - type: FeedbackQuestionTypeSchema, - order: z.number().int(), - createdAt: z.coerce.date().optional(), - feedbackFormId: z.string(), - get options(){ return FeedbackQuestionOptionUncheckedCreateNestedManyWithoutQuestionInputObjectSchema.optional(); }, - get answers(){ return FeedbackQuestionAnswerUncheckedCreateNestedManyWithoutQuestionInputObjectSchema.optional(); } -}).strict(); -export const FeedbackQuestionUncheckedCreateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackQuestionUncheckedCreateInput_schema) as unknown as z.ZodType; -export const FeedbackQuestionUncheckedCreateInputObjectZodSchema = z.lazy(__makeSchema_FeedbackQuestionUncheckedCreateInput_schema); - - -// File: FeedbackQuestionUpdateInput.schema.ts -const __makeSchema_FeedbackQuestionUpdateInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - label: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - required: z.union([z.boolean(), BoolFieldUpdateOperationsInputObjectSchema]).optional(), - showInPublicResults: z.union([z.boolean(), BoolFieldUpdateOperationsInputObjectSchema]).optional(), - type: z.union([FeedbackQuestionTypeSchema, EnumFeedbackQuestionTypeFieldUpdateOperationsInputObjectSchema]).optional(), - order: z.union([z.number().int(), IntFieldUpdateOperationsInputObjectSchema]).optional(), - createdAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - updatedAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - get feedbackForm(){ return FeedbackFormUpdateOneRequiredWithoutQuestionsNestedInputObjectSchema.optional(); }, - get options(){ return FeedbackQuestionOptionUpdateManyWithoutQuestionNestedInputObjectSchema.optional(); }, - get answers(){ return FeedbackQuestionAnswerUpdateManyWithoutQuestionNestedInputObjectSchema.optional(); } -}).strict(); -export const FeedbackQuestionUpdateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackQuestionUpdateInput_schema) as unknown as z.ZodType; -export const FeedbackQuestionUpdateInputObjectZodSchema = z.lazy(__makeSchema_FeedbackQuestionUpdateInput_schema); - - -// File: FeedbackQuestionUncheckedUpdateInput.schema.ts -const __makeSchema_FeedbackQuestionUncheckedUpdateInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - label: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - required: z.union([z.boolean(), BoolFieldUpdateOperationsInputObjectSchema]).optional(), - showInPublicResults: z.union([z.boolean(), BoolFieldUpdateOperationsInputObjectSchema]).optional(), - type: z.union([FeedbackQuestionTypeSchema, EnumFeedbackQuestionTypeFieldUpdateOperationsInputObjectSchema]).optional(), - order: z.union([z.number().int(), IntFieldUpdateOperationsInputObjectSchema]).optional(), - createdAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - updatedAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - feedbackFormId: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - get options(){ return FeedbackQuestionOptionUncheckedUpdateManyWithoutQuestionNestedInputObjectSchema.optional(); }, - get answers(){ return FeedbackQuestionAnswerUncheckedUpdateManyWithoutQuestionNestedInputObjectSchema.optional(); } -}).strict(); -export const FeedbackQuestionUncheckedUpdateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackQuestionUncheckedUpdateInput_schema) as unknown as z.ZodType; -export const FeedbackQuestionUncheckedUpdateInputObjectZodSchema = z.lazy(__makeSchema_FeedbackQuestionUncheckedUpdateInput_schema); - - -// File: FeedbackQuestionCreateManyInput.schema.ts -const __makeSchema_FeedbackQuestionCreateManyInput_schema = () => z.object({ - id: z.string().optional(), - label: z.string(), - required: z.boolean().optional(), - showInPublicResults: z.boolean().optional(), - type: FeedbackQuestionTypeSchema, - order: z.number().int(), - createdAt: z.coerce.date().optional(), - updatedAt: z.coerce.date().optional(), - feedbackFormId: z.string() -}).strict(); -export const FeedbackQuestionCreateManyInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackQuestionCreateManyInput_schema) as unknown as z.ZodType; -export const FeedbackQuestionCreateManyInputObjectZodSchema = z.lazy(__makeSchema_FeedbackQuestionCreateManyInput_schema); - - -// File: FeedbackQuestionUpdateManyMutationInput.schema.ts -const __makeSchema_FeedbackQuestionUpdateManyMutationInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - label: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - required: z.union([z.boolean(), BoolFieldUpdateOperationsInputObjectSchema]).optional(), - showInPublicResults: z.union([z.boolean(), BoolFieldUpdateOperationsInputObjectSchema]).optional(), - type: z.union([FeedbackQuestionTypeSchema, EnumFeedbackQuestionTypeFieldUpdateOperationsInputObjectSchema]).optional(), - order: z.union([z.number().int(), IntFieldUpdateOperationsInputObjectSchema]).optional(), - createdAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - updatedAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional() -}).strict(); -export const FeedbackQuestionUpdateManyMutationInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackQuestionUpdateManyMutationInput_schema) as unknown as z.ZodType; -export const FeedbackQuestionUpdateManyMutationInputObjectZodSchema = z.lazy(__makeSchema_FeedbackQuestionUpdateManyMutationInput_schema); - - -// File: FeedbackQuestionUncheckedUpdateManyInput.schema.ts -const __makeSchema_FeedbackQuestionUncheckedUpdateManyInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - label: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - required: z.union([z.boolean(), BoolFieldUpdateOperationsInputObjectSchema]).optional(), - showInPublicResults: z.union([z.boolean(), BoolFieldUpdateOperationsInputObjectSchema]).optional(), - type: z.union([FeedbackQuestionTypeSchema, EnumFeedbackQuestionTypeFieldUpdateOperationsInputObjectSchema]).optional(), - order: z.union([z.number().int(), IntFieldUpdateOperationsInputObjectSchema]).optional(), - createdAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - updatedAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - feedbackFormId: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional() -}).strict(); -export const FeedbackQuestionUncheckedUpdateManyInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackQuestionUncheckedUpdateManyInput_schema) as unknown as z.ZodType; -export const FeedbackQuestionUncheckedUpdateManyInputObjectZodSchema = z.lazy(__makeSchema_FeedbackQuestionUncheckedUpdateManyInput_schema); - - -// File: FeedbackQuestionOptionCreateInput.schema.ts -const __makeSchema_FeedbackQuestionOptionCreateInput_schema = () => z.object({ - id: z.string().optional(), - name: z.string(), - get question(){ return FeedbackQuestionCreateNestedOneWithoutOptionsInputObjectSchema; }, - get selectedInAnswers(){ return FeedbackQuestionAnswerOptionLinkCreateNestedManyWithoutFeedbackQuestionOptionInputObjectSchema.optional(); } -}).strict(); -export const FeedbackQuestionOptionCreateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackQuestionOptionCreateInput_schema) as unknown as z.ZodType; -export const FeedbackQuestionOptionCreateInputObjectZodSchema = z.lazy(__makeSchema_FeedbackQuestionOptionCreateInput_schema); - - -// File: FeedbackQuestionOptionUncheckedCreateInput.schema.ts -const __makeSchema_FeedbackQuestionOptionUncheckedCreateInput_schema = () => z.object({ - id: z.string().optional(), - name: z.string(), - questionId: z.string(), - get selectedInAnswers(){ return FeedbackQuestionAnswerOptionLinkUncheckedCreateNestedManyWithoutFeedbackQuestionOptionInputObjectSchema.optional(); } -}).strict(); -export const FeedbackQuestionOptionUncheckedCreateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackQuestionOptionUncheckedCreateInput_schema) as unknown as z.ZodType; -export const FeedbackQuestionOptionUncheckedCreateInputObjectZodSchema = z.lazy(__makeSchema_FeedbackQuestionOptionUncheckedCreateInput_schema); - - -// File: FeedbackQuestionOptionUpdateInput.schema.ts -const __makeSchema_FeedbackQuestionOptionUpdateInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - name: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - get question(){ return FeedbackQuestionUpdateOneRequiredWithoutOptionsNestedInputObjectSchema.optional(); }, - get selectedInAnswers(){ return FeedbackQuestionAnswerOptionLinkUpdateManyWithoutFeedbackQuestionOptionNestedInputObjectSchema.optional(); } -}).strict(); -export const FeedbackQuestionOptionUpdateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackQuestionOptionUpdateInput_schema) as unknown as z.ZodType; -export const FeedbackQuestionOptionUpdateInputObjectZodSchema = z.lazy(__makeSchema_FeedbackQuestionOptionUpdateInput_schema); - - -// File: FeedbackQuestionOptionUncheckedUpdateInput.schema.ts -const __makeSchema_FeedbackQuestionOptionUncheckedUpdateInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - name: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - questionId: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - get selectedInAnswers(){ return FeedbackQuestionAnswerOptionLinkUncheckedUpdateManyWithoutFeedbackQuestionOptionNestedInputObjectSchema.optional(); } -}).strict(); -export const FeedbackQuestionOptionUncheckedUpdateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackQuestionOptionUncheckedUpdateInput_schema) as unknown as z.ZodType; -export const FeedbackQuestionOptionUncheckedUpdateInputObjectZodSchema = z.lazy(__makeSchema_FeedbackQuestionOptionUncheckedUpdateInput_schema); - - -// File: FeedbackQuestionOptionCreateManyInput.schema.ts -const __makeSchema_FeedbackQuestionOptionCreateManyInput_schema = () => z.object({ - id: z.string().optional(), - name: z.string(), - questionId: z.string() -}).strict(); -export const FeedbackQuestionOptionCreateManyInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackQuestionOptionCreateManyInput_schema) as unknown as z.ZodType; -export const FeedbackQuestionOptionCreateManyInputObjectZodSchema = z.lazy(__makeSchema_FeedbackQuestionOptionCreateManyInput_schema); - - -// File: FeedbackQuestionOptionUpdateManyMutationInput.schema.ts -const __makeSchema_FeedbackQuestionOptionUpdateManyMutationInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - name: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional() -}).strict(); -export const FeedbackQuestionOptionUpdateManyMutationInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackQuestionOptionUpdateManyMutationInput_schema) as unknown as z.ZodType; -export const FeedbackQuestionOptionUpdateManyMutationInputObjectZodSchema = z.lazy(__makeSchema_FeedbackQuestionOptionUpdateManyMutationInput_schema); - - -// File: FeedbackQuestionOptionUncheckedUpdateManyInput.schema.ts -const __makeSchema_FeedbackQuestionOptionUncheckedUpdateManyInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - name: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - questionId: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional() -}).strict(); -export const FeedbackQuestionOptionUncheckedUpdateManyInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackQuestionOptionUncheckedUpdateManyInput_schema) as unknown as z.ZodType; -export const FeedbackQuestionOptionUncheckedUpdateManyInputObjectZodSchema = z.lazy(__makeSchema_FeedbackQuestionOptionUncheckedUpdateManyInput_schema); - - -// File: FeedbackQuestionAnswerCreateInput.schema.ts -const __makeSchema_FeedbackQuestionAnswerCreateInput_schema = () => z.object({ - id: z.string().optional(), - value: z.union([NullableJsonNullValueInputSchema, jsonSchema]).optional(), - get question(){ return FeedbackQuestionCreateNestedOneWithoutAnswersInputObjectSchema; }, - get formAnswer(){ return FeedbackFormAnswerCreateNestedOneWithoutAnswersInputObjectSchema; }, - get selectedOptions(){ return FeedbackQuestionAnswerOptionLinkCreateNestedManyWithoutFeedbackQuestionAnswerInputObjectSchema.optional(); } -}).strict(); -export const FeedbackQuestionAnswerCreateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackQuestionAnswerCreateInput_schema) as unknown as z.ZodType; -export const FeedbackQuestionAnswerCreateInputObjectZodSchema = z.lazy(__makeSchema_FeedbackQuestionAnswerCreateInput_schema); - - -// File: FeedbackQuestionAnswerUncheckedCreateInput.schema.ts -const __makeSchema_FeedbackQuestionAnswerUncheckedCreateInput_schema = () => z.object({ - id: z.string().optional(), - value: z.union([NullableJsonNullValueInputSchema, jsonSchema]).optional(), - questionId: z.string(), - formAnswerId: z.string(), - get selectedOptions(){ return FeedbackQuestionAnswerOptionLinkUncheckedCreateNestedManyWithoutFeedbackQuestionAnswerInputObjectSchema.optional(); } -}).strict(); -export const FeedbackQuestionAnswerUncheckedCreateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackQuestionAnswerUncheckedCreateInput_schema) as unknown as z.ZodType; -export const FeedbackQuestionAnswerUncheckedCreateInputObjectZodSchema = z.lazy(__makeSchema_FeedbackQuestionAnswerUncheckedCreateInput_schema); - - -// File: FeedbackQuestionAnswerUpdateInput.schema.ts -const __makeSchema_FeedbackQuestionAnswerUpdateInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - value: z.union([NullableJsonNullValueInputSchema, jsonSchema]).optional(), - get question(){ return FeedbackQuestionUpdateOneRequiredWithoutAnswersNestedInputObjectSchema.optional(); }, - get formAnswer(){ return FeedbackFormAnswerUpdateOneRequiredWithoutAnswersNestedInputObjectSchema.optional(); }, - get selectedOptions(){ return FeedbackQuestionAnswerOptionLinkUpdateManyWithoutFeedbackQuestionAnswerNestedInputObjectSchema.optional(); } -}).strict(); -export const FeedbackQuestionAnswerUpdateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackQuestionAnswerUpdateInput_schema) as unknown as z.ZodType; -export const FeedbackQuestionAnswerUpdateInputObjectZodSchema = z.lazy(__makeSchema_FeedbackQuestionAnswerUpdateInput_schema); - - -// File: FeedbackQuestionAnswerUncheckedUpdateInput.schema.ts -const __makeSchema_FeedbackQuestionAnswerUncheckedUpdateInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - value: z.union([NullableJsonNullValueInputSchema, jsonSchema]).optional(), - questionId: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - formAnswerId: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - get selectedOptions(){ return FeedbackQuestionAnswerOptionLinkUncheckedUpdateManyWithoutFeedbackQuestionAnswerNestedInputObjectSchema.optional(); } -}).strict(); -export const FeedbackQuestionAnswerUncheckedUpdateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackQuestionAnswerUncheckedUpdateInput_schema) as unknown as z.ZodType; -export const FeedbackQuestionAnswerUncheckedUpdateInputObjectZodSchema = z.lazy(__makeSchema_FeedbackQuestionAnswerUncheckedUpdateInput_schema); - - -// File: FeedbackQuestionAnswerCreateManyInput.schema.ts -const __makeSchema_FeedbackQuestionAnswerCreateManyInput_schema = () => z.object({ - id: z.string().optional(), - value: z.union([NullableJsonNullValueInputSchema, jsonSchema]).optional(), - questionId: z.string(), - formAnswerId: z.string() -}).strict(); -export const FeedbackQuestionAnswerCreateManyInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackQuestionAnswerCreateManyInput_schema) as unknown as z.ZodType; -export const FeedbackQuestionAnswerCreateManyInputObjectZodSchema = z.lazy(__makeSchema_FeedbackQuestionAnswerCreateManyInput_schema); - - -// File: FeedbackQuestionAnswerUpdateManyMutationInput.schema.ts -const __makeSchema_FeedbackQuestionAnswerUpdateManyMutationInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - value: z.union([NullableJsonNullValueInputSchema, jsonSchema]).optional() -}).strict(); -export const FeedbackQuestionAnswerUpdateManyMutationInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackQuestionAnswerUpdateManyMutationInput_schema) as unknown as z.ZodType; -export const FeedbackQuestionAnswerUpdateManyMutationInputObjectZodSchema = z.lazy(__makeSchema_FeedbackQuestionAnswerUpdateManyMutationInput_schema); - - -// File: FeedbackQuestionAnswerUncheckedUpdateManyInput.schema.ts -const __makeSchema_FeedbackQuestionAnswerUncheckedUpdateManyInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - value: z.union([NullableJsonNullValueInputSchema, jsonSchema]).optional(), - questionId: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - formAnswerId: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional() -}).strict(); -export const FeedbackQuestionAnswerUncheckedUpdateManyInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackQuestionAnswerUncheckedUpdateManyInput_schema) as unknown as z.ZodType; -export const FeedbackQuestionAnswerUncheckedUpdateManyInputObjectZodSchema = z.lazy(__makeSchema_FeedbackQuestionAnswerUncheckedUpdateManyInput_schema); - - -// File: FeedbackQuestionAnswerOptionLinkCreateInput.schema.ts -const __makeSchema_FeedbackQuestionAnswerOptionLinkCreateInput_schema = () => z.object({ - get feedbackQuestionOption(){ return FeedbackQuestionOptionCreateNestedOneWithoutSelectedInAnswersInputObjectSchema; }, - get feedbackQuestionAnswer(){ return FeedbackQuestionAnswerCreateNestedOneWithoutSelectedOptionsInputObjectSchema; } -}).strict(); -export const FeedbackQuestionAnswerOptionLinkCreateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackQuestionAnswerOptionLinkCreateInput_schema) as unknown as z.ZodType; -export const FeedbackQuestionAnswerOptionLinkCreateInputObjectZodSchema = z.lazy(__makeSchema_FeedbackQuestionAnswerOptionLinkCreateInput_schema); - - -// File: FeedbackQuestionAnswerOptionLinkUncheckedCreateInput.schema.ts -const __makeSchema_FeedbackQuestionAnswerOptionLinkUncheckedCreateInput_schema = () => z.object({ - feedbackQuestionOptionId: z.string(), - feedbackQuestionAnswerId: z.string() -}).strict(); -export const FeedbackQuestionAnswerOptionLinkUncheckedCreateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackQuestionAnswerOptionLinkUncheckedCreateInput_schema) as unknown as z.ZodType; -export const FeedbackQuestionAnswerOptionLinkUncheckedCreateInputObjectZodSchema = z.lazy(__makeSchema_FeedbackQuestionAnswerOptionLinkUncheckedCreateInput_schema); - - -// File: FeedbackQuestionAnswerOptionLinkUpdateInput.schema.ts -const __makeSchema_FeedbackQuestionAnswerOptionLinkUpdateInput_schema = () => z.object({ - get feedbackQuestionOption(){ return FeedbackQuestionOptionUpdateOneRequiredWithoutSelectedInAnswersNestedInputObjectSchema.optional(); }, - get feedbackQuestionAnswer(){ return FeedbackQuestionAnswerUpdateOneRequiredWithoutSelectedOptionsNestedInputObjectSchema.optional(); } -}).strict(); -export const FeedbackQuestionAnswerOptionLinkUpdateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackQuestionAnswerOptionLinkUpdateInput_schema) as unknown as z.ZodType; -export const FeedbackQuestionAnswerOptionLinkUpdateInputObjectZodSchema = z.lazy(__makeSchema_FeedbackQuestionAnswerOptionLinkUpdateInput_schema); - - -// File: FeedbackQuestionAnswerOptionLinkUncheckedUpdateInput.schema.ts -const __makeSchema_FeedbackQuestionAnswerOptionLinkUncheckedUpdateInput_schema = () => z.object({ - feedbackQuestionOptionId: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - feedbackQuestionAnswerId: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional() -}).strict(); -export const FeedbackQuestionAnswerOptionLinkUncheckedUpdateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackQuestionAnswerOptionLinkUncheckedUpdateInput_schema) as unknown as z.ZodType; -export const FeedbackQuestionAnswerOptionLinkUncheckedUpdateInputObjectZodSchema = z.lazy(__makeSchema_FeedbackQuestionAnswerOptionLinkUncheckedUpdateInput_schema); - - -// File: FeedbackQuestionAnswerOptionLinkCreateManyInput.schema.ts -const __makeSchema_FeedbackQuestionAnswerOptionLinkCreateManyInput_schema = () => z.object({ - feedbackQuestionOptionId: z.string(), - feedbackQuestionAnswerId: z.string() -}).strict(); -export const FeedbackQuestionAnswerOptionLinkCreateManyInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackQuestionAnswerOptionLinkCreateManyInput_schema) as unknown as z.ZodType; -export const FeedbackQuestionAnswerOptionLinkCreateManyInputObjectZodSchema = z.lazy(__makeSchema_FeedbackQuestionAnswerOptionLinkCreateManyInput_schema); - - -// File: FeedbackQuestionAnswerOptionLinkUpdateManyMutationInput.schema.ts -const __makeSchema_FeedbackQuestionAnswerOptionLinkUpdateManyMutationInput_schema = () => z.object({ - -}).strict(); -export const FeedbackQuestionAnswerOptionLinkUpdateManyMutationInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackQuestionAnswerOptionLinkUpdateManyMutationInput_schema) as unknown as z.ZodType; -export const FeedbackQuestionAnswerOptionLinkUpdateManyMutationInputObjectZodSchema = z.lazy(__makeSchema_FeedbackQuestionAnswerOptionLinkUpdateManyMutationInput_schema); - - -// File: FeedbackQuestionAnswerOptionLinkUncheckedUpdateManyInput.schema.ts -const __makeSchema_FeedbackQuestionAnswerOptionLinkUncheckedUpdateManyInput_schema = () => z.object({ - feedbackQuestionOptionId: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - feedbackQuestionAnswerId: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional() -}).strict(); -export const FeedbackQuestionAnswerOptionLinkUncheckedUpdateManyInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackQuestionAnswerOptionLinkUncheckedUpdateManyInput_schema) as unknown as z.ZodType; -export const FeedbackQuestionAnswerOptionLinkUncheckedUpdateManyInputObjectZodSchema = z.lazy(__makeSchema_FeedbackQuestionAnswerOptionLinkUncheckedUpdateManyInput_schema); - - -// File: FeedbackFormAnswerCreateInput.schema.ts -const __makeSchema_FeedbackFormAnswerCreateInput_schema = () => z.object({ - id: z.string().optional(), - createdAt: z.coerce.date().optional(), - get feedbackForm(){ return FeedbackFormCreateNestedOneWithoutAnswersInputObjectSchema; }, - get attendee(){ return AttendeeCreateNestedOneWithoutFeedbackFormAnswerInputObjectSchema; }, - get answers(){ return FeedbackQuestionAnswerCreateNestedManyWithoutFormAnswerInputObjectSchema.optional(); } -}).strict(); -export const FeedbackFormAnswerCreateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackFormAnswerCreateInput_schema) as unknown as z.ZodType; -export const FeedbackFormAnswerCreateInputObjectZodSchema = z.lazy(__makeSchema_FeedbackFormAnswerCreateInput_schema); - - -// File: FeedbackFormAnswerUncheckedCreateInput.schema.ts -const __makeSchema_FeedbackFormAnswerUncheckedCreateInput_schema = () => z.object({ - id: z.string().optional(), - createdAt: z.coerce.date().optional(), - feedbackFormId: z.string(), - attendeeId: z.string(), - get answers(){ return FeedbackQuestionAnswerUncheckedCreateNestedManyWithoutFormAnswerInputObjectSchema.optional(); } -}).strict(); -export const FeedbackFormAnswerUncheckedCreateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackFormAnswerUncheckedCreateInput_schema) as unknown as z.ZodType; -export const FeedbackFormAnswerUncheckedCreateInputObjectZodSchema = z.lazy(__makeSchema_FeedbackFormAnswerUncheckedCreateInput_schema); - - -// File: FeedbackFormAnswerUpdateInput.schema.ts -const __makeSchema_FeedbackFormAnswerUpdateInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - createdAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - updatedAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - get feedbackForm(){ return FeedbackFormUpdateOneRequiredWithoutAnswersNestedInputObjectSchema.optional(); }, - get attendee(){ return AttendeeUpdateOneRequiredWithoutFeedbackFormAnswerNestedInputObjectSchema.optional(); }, - get answers(){ return FeedbackQuestionAnswerUpdateManyWithoutFormAnswerNestedInputObjectSchema.optional(); } -}).strict(); -export const FeedbackFormAnswerUpdateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackFormAnswerUpdateInput_schema) as unknown as z.ZodType; -export const FeedbackFormAnswerUpdateInputObjectZodSchema = z.lazy(__makeSchema_FeedbackFormAnswerUpdateInput_schema); - - -// File: FeedbackFormAnswerUncheckedUpdateInput.schema.ts -const __makeSchema_FeedbackFormAnswerUncheckedUpdateInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - createdAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - updatedAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - feedbackFormId: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - attendeeId: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - get answers(){ return FeedbackQuestionAnswerUncheckedUpdateManyWithoutFormAnswerNestedInputObjectSchema.optional(); } -}).strict(); -export const FeedbackFormAnswerUncheckedUpdateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackFormAnswerUncheckedUpdateInput_schema) as unknown as z.ZodType; -export const FeedbackFormAnswerUncheckedUpdateInputObjectZodSchema = z.lazy(__makeSchema_FeedbackFormAnswerUncheckedUpdateInput_schema); - - -// File: FeedbackFormAnswerCreateManyInput.schema.ts -const __makeSchema_FeedbackFormAnswerCreateManyInput_schema = () => z.object({ - id: z.string().optional(), - createdAt: z.coerce.date().optional(), - updatedAt: z.coerce.date().optional(), - feedbackFormId: z.string(), - attendeeId: z.string() -}).strict(); -export const FeedbackFormAnswerCreateManyInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackFormAnswerCreateManyInput_schema) as unknown as z.ZodType; -export const FeedbackFormAnswerCreateManyInputObjectZodSchema = z.lazy(__makeSchema_FeedbackFormAnswerCreateManyInput_schema); - - -// File: FeedbackFormAnswerUpdateManyMutationInput.schema.ts -const __makeSchema_FeedbackFormAnswerUpdateManyMutationInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - createdAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - updatedAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional() -}).strict(); -export const FeedbackFormAnswerUpdateManyMutationInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackFormAnswerUpdateManyMutationInput_schema) as unknown as z.ZodType; -export const FeedbackFormAnswerUpdateManyMutationInputObjectZodSchema = z.lazy(__makeSchema_FeedbackFormAnswerUpdateManyMutationInput_schema); - - -// File: FeedbackFormAnswerUncheckedUpdateManyInput.schema.ts -const __makeSchema_FeedbackFormAnswerUncheckedUpdateManyInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - createdAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - updatedAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - feedbackFormId: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - attendeeId: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional() -}).strict(); -export const FeedbackFormAnswerUncheckedUpdateManyInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackFormAnswerUncheckedUpdateManyInput_schema) as unknown as z.ZodType; -export const FeedbackFormAnswerUncheckedUpdateManyInputObjectZodSchema = z.lazy(__makeSchema_FeedbackFormAnswerUncheckedUpdateManyInput_schema); - - -// File: AuditLogCreateInput.schema.ts -const __makeSchema_AuditLogCreateInput_schema = () => z.object({ - id: z.string().optional(), - tableName: z.string(), - rowId: z.string().optional().nullable(), - createdAt: z.coerce.date().optional(), - operation: z.string(), - rowData: z.union([JsonNullValueInputSchema, jsonSchema]), - transactionId: z.bigint(), - get user(){ return UserCreateNestedOneWithoutAuditLogsInputObjectSchema.optional(); } -}).strict(); -export const AuditLogCreateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_AuditLogCreateInput_schema) as unknown as z.ZodType; -export const AuditLogCreateInputObjectZodSchema = z.lazy(__makeSchema_AuditLogCreateInput_schema); - - -// File: AuditLogUncheckedCreateInput.schema.ts -const __makeSchema_AuditLogUncheckedCreateInput_schema = () => z.object({ - id: z.string().optional(), - tableName: z.string(), - rowId: z.string().optional().nullable(), - createdAt: z.coerce.date().optional(), - operation: z.string(), - rowData: z.union([JsonNullValueInputSchema, jsonSchema]), - transactionId: z.bigint(), - userId: z.string().optional().nullable() -}).strict(); -export const AuditLogUncheckedCreateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_AuditLogUncheckedCreateInput_schema) as unknown as z.ZodType; -export const AuditLogUncheckedCreateInputObjectZodSchema = z.lazy(__makeSchema_AuditLogUncheckedCreateInput_schema); - - -// File: AuditLogUpdateInput.schema.ts -const __makeSchema_AuditLogUpdateInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - tableName: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - rowId: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - createdAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - operation: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - rowData: z.union([JsonNullValueInputSchema, jsonSchema]).optional(), - transactionId: z.union([z.bigint(), BigIntFieldUpdateOperationsInputObjectSchema]).optional(), - get user(){ return UserUpdateOneWithoutAuditLogsNestedInputObjectSchema.optional(); } -}).strict(); -export const AuditLogUpdateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_AuditLogUpdateInput_schema) as unknown as z.ZodType; -export const AuditLogUpdateInputObjectZodSchema = z.lazy(__makeSchema_AuditLogUpdateInput_schema); - - -// File: AuditLogUncheckedUpdateInput.schema.ts -const __makeSchema_AuditLogUncheckedUpdateInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - tableName: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - rowId: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - createdAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - operation: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - rowData: z.union([JsonNullValueInputSchema, jsonSchema]).optional(), - transactionId: z.union([z.bigint(), BigIntFieldUpdateOperationsInputObjectSchema]).optional(), - userId: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable() -}).strict(); -export const AuditLogUncheckedUpdateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_AuditLogUncheckedUpdateInput_schema) as unknown as z.ZodType; -export const AuditLogUncheckedUpdateInputObjectZodSchema = z.lazy(__makeSchema_AuditLogUncheckedUpdateInput_schema); - - -// File: AuditLogCreateManyInput.schema.ts -const __makeSchema_AuditLogCreateManyInput_schema = () => z.object({ - id: z.string().optional(), - tableName: z.string(), - rowId: z.string().optional().nullable(), - createdAt: z.coerce.date().optional(), - operation: z.string(), - rowData: z.union([JsonNullValueInputSchema, jsonSchema]), - transactionId: z.bigint(), - userId: z.string().optional().nullable() -}).strict(); -export const AuditLogCreateManyInputObjectSchema: z.ZodType = z.lazy(__makeSchema_AuditLogCreateManyInput_schema) as unknown as z.ZodType; -export const AuditLogCreateManyInputObjectZodSchema = z.lazy(__makeSchema_AuditLogCreateManyInput_schema); - - -// File: AuditLogUpdateManyMutationInput.schema.ts -const __makeSchema_AuditLogUpdateManyMutationInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - tableName: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - rowId: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - createdAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - operation: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - rowData: z.union([JsonNullValueInputSchema, jsonSchema]).optional(), - transactionId: z.union([z.bigint(), BigIntFieldUpdateOperationsInputObjectSchema]).optional() -}).strict(); -export const AuditLogUpdateManyMutationInputObjectSchema: z.ZodType = z.lazy(__makeSchema_AuditLogUpdateManyMutationInput_schema) as unknown as z.ZodType; -export const AuditLogUpdateManyMutationInputObjectZodSchema = z.lazy(__makeSchema_AuditLogUpdateManyMutationInput_schema); - - -// File: AuditLogUncheckedUpdateManyInput.schema.ts -const __makeSchema_AuditLogUncheckedUpdateManyInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - tableName: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - rowId: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - createdAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - operation: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - rowData: z.union([JsonNullValueInputSchema, jsonSchema]).optional(), - transactionId: z.union([z.bigint(), BigIntFieldUpdateOperationsInputObjectSchema]).optional(), - userId: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable() -}).strict(); -export const AuditLogUncheckedUpdateManyInputObjectSchema: z.ZodType = z.lazy(__makeSchema_AuditLogUncheckedUpdateManyInput_schema) as unknown as z.ZodType; -export const AuditLogUncheckedUpdateManyInputObjectZodSchema = z.lazy(__makeSchema_AuditLogUncheckedUpdateManyInput_schema); - - -// File: DeregisterReasonCreateInput.schema.ts -const __makeSchema_DeregisterReasonCreateInput_schema = () => z.object({ - id: z.string().optional(), - createdAt: z.coerce.date().optional(), - registeredAt: z.coerce.date(), - type: DeregisterReasonTypeSchema, - details: z.string().optional().nullable(), - userGrade: z.number().int().optional().nullable(), - get user(){ return UserCreateNestedOneWithoutDeregisterReasonsInputObjectSchema; }, - get event(){ return EventCreateNestedOneWithoutDeregisterReasonsInputObjectSchema; } -}).strict(); -export const DeregisterReasonCreateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_DeregisterReasonCreateInput_schema) as unknown as z.ZodType; -export const DeregisterReasonCreateInputObjectZodSchema = z.lazy(__makeSchema_DeregisterReasonCreateInput_schema); - - -// File: DeregisterReasonUncheckedCreateInput.schema.ts -const __makeSchema_DeregisterReasonUncheckedCreateInput_schema = () => z.object({ - id: z.string().optional(), - createdAt: z.coerce.date().optional(), - registeredAt: z.coerce.date(), - type: DeregisterReasonTypeSchema, - details: z.string().optional().nullable(), - userGrade: z.number().int().optional().nullable(), - userId: z.string(), - eventId: z.string() -}).strict(); -export const DeregisterReasonUncheckedCreateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_DeregisterReasonUncheckedCreateInput_schema) as unknown as z.ZodType; -export const DeregisterReasonUncheckedCreateInputObjectZodSchema = z.lazy(__makeSchema_DeregisterReasonUncheckedCreateInput_schema); - - -// File: DeregisterReasonUpdateInput.schema.ts -const __makeSchema_DeregisterReasonUpdateInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - createdAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - registeredAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - type: z.union([DeregisterReasonTypeSchema, EnumDeregisterReasonTypeFieldUpdateOperationsInputObjectSchema]).optional(), - details: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - userGrade: z.union([z.number().int(), NullableIntFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - get user(){ return UserUpdateOneRequiredWithoutDeregisterReasonsNestedInputObjectSchema.optional(); }, - get event(){ return EventUpdateOneRequiredWithoutDeregisterReasonsNestedInputObjectSchema.optional(); } -}).strict(); -export const DeregisterReasonUpdateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_DeregisterReasonUpdateInput_schema) as unknown as z.ZodType; -export const DeregisterReasonUpdateInputObjectZodSchema = z.lazy(__makeSchema_DeregisterReasonUpdateInput_schema); - - -// File: DeregisterReasonUncheckedUpdateInput.schema.ts -const __makeSchema_DeregisterReasonUncheckedUpdateInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - createdAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - registeredAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - type: z.union([DeregisterReasonTypeSchema, EnumDeregisterReasonTypeFieldUpdateOperationsInputObjectSchema]).optional(), - details: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - userGrade: z.union([z.number().int(), NullableIntFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - userId: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - eventId: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional() -}).strict(); -export const DeregisterReasonUncheckedUpdateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_DeregisterReasonUncheckedUpdateInput_schema) as unknown as z.ZodType; -export const DeregisterReasonUncheckedUpdateInputObjectZodSchema = z.lazy(__makeSchema_DeregisterReasonUncheckedUpdateInput_schema); - - -// File: DeregisterReasonCreateManyInput.schema.ts -const __makeSchema_DeregisterReasonCreateManyInput_schema = () => z.object({ - id: z.string().optional(), - createdAt: z.coerce.date().optional(), - registeredAt: z.coerce.date(), - type: DeregisterReasonTypeSchema, - details: z.string().optional().nullable(), - userGrade: z.number().int().optional().nullable(), - userId: z.string(), - eventId: z.string() -}).strict(); -export const DeregisterReasonCreateManyInputObjectSchema: z.ZodType = z.lazy(__makeSchema_DeregisterReasonCreateManyInput_schema) as unknown as z.ZodType; -export const DeregisterReasonCreateManyInputObjectZodSchema = z.lazy(__makeSchema_DeregisterReasonCreateManyInput_schema); - - -// File: DeregisterReasonUpdateManyMutationInput.schema.ts -const __makeSchema_DeregisterReasonUpdateManyMutationInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - createdAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - registeredAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - type: z.union([DeregisterReasonTypeSchema, EnumDeregisterReasonTypeFieldUpdateOperationsInputObjectSchema]).optional(), - details: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - userGrade: z.union([z.number().int(), NullableIntFieldUpdateOperationsInputObjectSchema]).optional().nullable() -}).strict(); -export const DeregisterReasonUpdateManyMutationInputObjectSchema: z.ZodType = z.lazy(__makeSchema_DeregisterReasonUpdateManyMutationInput_schema) as unknown as z.ZodType; -export const DeregisterReasonUpdateManyMutationInputObjectZodSchema = z.lazy(__makeSchema_DeregisterReasonUpdateManyMutationInput_schema); - - -// File: DeregisterReasonUncheckedUpdateManyInput.schema.ts -const __makeSchema_DeregisterReasonUncheckedUpdateManyInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - createdAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - registeredAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - type: z.union([DeregisterReasonTypeSchema, EnumDeregisterReasonTypeFieldUpdateOperationsInputObjectSchema]).optional(), - details: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - userGrade: z.union([z.number().int(), NullableIntFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - userId: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - eventId: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional() -}).strict(); -export const DeregisterReasonUncheckedUpdateManyInputObjectSchema: z.ZodType = z.lazy(__makeSchema_DeregisterReasonUncheckedUpdateManyInput_schema) as unknown as z.ZodType; -export const DeregisterReasonUncheckedUpdateManyInputObjectZodSchema = z.lazy(__makeSchema_DeregisterReasonUncheckedUpdateManyInput_schema); - - -// File: NotificationRecipientCreateInput.schema.ts -const __makeSchema_NotificationRecipientCreateInput_schema = () => z.object({ - id: z.string().optional(), - readAt: z.coerce.date(), - get notification(){ return NotificationCreateNestedOneWithoutRecipientsInputObjectSchema; }, - get user(){ return UserCreateNestedOneWithoutNotificationsReceivedInputObjectSchema; } -}).strict(); -export const NotificationRecipientCreateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_NotificationRecipientCreateInput_schema) as unknown as z.ZodType; -export const NotificationRecipientCreateInputObjectZodSchema = z.lazy(__makeSchema_NotificationRecipientCreateInput_schema); - - -// File: NotificationRecipientUncheckedCreateInput.schema.ts -const __makeSchema_NotificationRecipientUncheckedCreateInput_schema = () => z.object({ - id: z.string().optional(), - readAt: z.coerce.date(), - notificationId: z.string(), - userId: z.string() -}).strict(); -export const NotificationRecipientUncheckedCreateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_NotificationRecipientUncheckedCreateInput_schema) as unknown as z.ZodType; -export const NotificationRecipientUncheckedCreateInputObjectZodSchema = z.lazy(__makeSchema_NotificationRecipientUncheckedCreateInput_schema); - - -// File: NotificationRecipientUpdateInput.schema.ts -const __makeSchema_NotificationRecipientUpdateInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - readAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - get notification(){ return NotificationUpdateOneRequiredWithoutRecipientsNestedInputObjectSchema.optional(); }, - get user(){ return UserUpdateOneRequiredWithoutNotificationsReceivedNestedInputObjectSchema.optional(); } -}).strict(); -export const NotificationRecipientUpdateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_NotificationRecipientUpdateInput_schema) as unknown as z.ZodType; -export const NotificationRecipientUpdateInputObjectZodSchema = z.lazy(__makeSchema_NotificationRecipientUpdateInput_schema); - - -// File: NotificationRecipientUncheckedUpdateInput.schema.ts -const __makeSchema_NotificationRecipientUncheckedUpdateInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - readAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - notificationId: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - userId: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional() -}).strict(); -export const NotificationRecipientUncheckedUpdateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_NotificationRecipientUncheckedUpdateInput_schema) as unknown as z.ZodType; -export const NotificationRecipientUncheckedUpdateInputObjectZodSchema = z.lazy(__makeSchema_NotificationRecipientUncheckedUpdateInput_schema); - - -// File: NotificationRecipientCreateManyInput.schema.ts -const __makeSchema_NotificationRecipientCreateManyInput_schema = () => z.object({ - id: z.string().optional(), - readAt: z.coerce.date(), - notificationId: z.string(), - userId: z.string() -}).strict(); -export const NotificationRecipientCreateManyInputObjectSchema: z.ZodType = z.lazy(__makeSchema_NotificationRecipientCreateManyInput_schema) as unknown as z.ZodType; -export const NotificationRecipientCreateManyInputObjectZodSchema = z.lazy(__makeSchema_NotificationRecipientCreateManyInput_schema); - - -// File: NotificationRecipientUpdateManyMutationInput.schema.ts -const __makeSchema_NotificationRecipientUpdateManyMutationInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - readAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional() -}).strict(); -export const NotificationRecipientUpdateManyMutationInputObjectSchema: z.ZodType = z.lazy(__makeSchema_NotificationRecipientUpdateManyMutationInput_schema) as unknown as z.ZodType; -export const NotificationRecipientUpdateManyMutationInputObjectZodSchema = z.lazy(__makeSchema_NotificationRecipientUpdateManyMutationInput_schema); - - -// File: NotificationRecipientUncheckedUpdateManyInput.schema.ts -const __makeSchema_NotificationRecipientUncheckedUpdateManyInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - readAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - notificationId: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - userId: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional() -}).strict(); -export const NotificationRecipientUncheckedUpdateManyInputObjectSchema: z.ZodType = z.lazy(__makeSchema_NotificationRecipientUncheckedUpdateManyInput_schema) as unknown as z.ZodType; -export const NotificationRecipientUncheckedUpdateManyInputObjectZodSchema = z.lazy(__makeSchema_NotificationRecipientUncheckedUpdateManyInput_schema); - - -// File: NotificationCreateInput.schema.ts -const __makeSchema_NotificationCreateInput_schema = () => z.object({ - id: z.string().optional(), - createdAt: z.coerce.date().optional(), - title: z.string(), - shortDescription: z.string().optional().nullable(), - content: z.string(), - type: NotificationTypeSchema, - payload: z.string().optional().nullable(), - payloadType: NotificationPayloadTypeSchema, - get actorGroup(){ return GroupCreateNestedOneWithoutNotificationsInputObjectSchema; }, - get createdBy(){ return UserCreateNestedOneWithoutNotificationsCreatedInputObjectSchema.optional(); }, - get lastUpdatedBy(){ return UserCreateNestedOneWithoutNotificationsUpdatedInputObjectSchema.optional(); }, - get task(){ return TaskCreateNestedOneWithoutNotificationsInputObjectSchema.optional(); }, - get recipients(){ return NotificationRecipientCreateNestedManyWithoutNotificationInputObjectSchema.optional(); } -}).strict(); -export const NotificationCreateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_NotificationCreateInput_schema) as unknown as z.ZodType; -export const NotificationCreateInputObjectZodSchema = z.lazy(__makeSchema_NotificationCreateInput_schema); - - -// File: NotificationUncheckedCreateInput.schema.ts -const __makeSchema_NotificationUncheckedCreateInput_schema = () => z.object({ - id: z.string().optional(), - createdAt: z.coerce.date().optional(), - title: z.string(), - shortDescription: z.string().optional().nullable(), - content: z.string(), - type: NotificationTypeSchema, - payload: z.string().optional().nullable(), - payloadType: NotificationPayloadTypeSchema, - actorGroupId: z.string(), - createdById: z.string().optional().nullable(), - lastUpdatedById: z.string().optional().nullable(), - taskId: z.string().optional().nullable(), - get recipients(){ return NotificationRecipientUncheckedCreateNestedManyWithoutNotificationInputObjectSchema.optional(); } -}).strict(); -export const NotificationUncheckedCreateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_NotificationUncheckedCreateInput_schema) as unknown as z.ZodType; -export const NotificationUncheckedCreateInputObjectZodSchema = z.lazy(__makeSchema_NotificationUncheckedCreateInput_schema); - - -// File: NotificationUpdateInput.schema.ts -const __makeSchema_NotificationUpdateInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - createdAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - updatedAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - title: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - shortDescription: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - content: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - type: z.union([NotificationTypeSchema, EnumNotificationTypeFieldUpdateOperationsInputObjectSchema]).optional(), - payload: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - payloadType: z.union([NotificationPayloadTypeSchema, EnumNotificationPayloadTypeFieldUpdateOperationsInputObjectSchema]).optional(), - get actorGroup(){ return GroupUpdateOneRequiredWithoutNotificationsNestedInputObjectSchema.optional(); }, - get createdBy(){ return UserUpdateOneWithoutNotificationsCreatedNestedInputObjectSchema.optional(); }, - get lastUpdatedBy(){ return UserUpdateOneWithoutNotificationsUpdatedNestedInputObjectSchema.optional(); }, - get task(){ return TaskUpdateOneWithoutNotificationsNestedInputObjectSchema.optional(); }, - get recipients(){ return NotificationRecipientUpdateManyWithoutNotificationNestedInputObjectSchema.optional(); } -}).strict(); -export const NotificationUpdateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_NotificationUpdateInput_schema) as unknown as z.ZodType; -export const NotificationUpdateInputObjectZodSchema = z.lazy(__makeSchema_NotificationUpdateInput_schema); - - -// File: NotificationUncheckedUpdateInput.schema.ts -const __makeSchema_NotificationUncheckedUpdateInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - createdAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - updatedAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - title: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - shortDescription: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - content: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - type: z.union([NotificationTypeSchema, EnumNotificationTypeFieldUpdateOperationsInputObjectSchema]).optional(), - payload: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - payloadType: z.union([NotificationPayloadTypeSchema, EnumNotificationPayloadTypeFieldUpdateOperationsInputObjectSchema]).optional(), - actorGroupId: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - createdById: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - lastUpdatedById: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - taskId: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - get recipients(){ return NotificationRecipientUncheckedUpdateManyWithoutNotificationNestedInputObjectSchema.optional(); } -}).strict(); -export const NotificationUncheckedUpdateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_NotificationUncheckedUpdateInput_schema) as unknown as z.ZodType; -export const NotificationUncheckedUpdateInputObjectZodSchema = z.lazy(__makeSchema_NotificationUncheckedUpdateInput_schema); - - -// File: NotificationCreateManyInput.schema.ts -const __makeSchema_NotificationCreateManyInput_schema = () => z.object({ - id: z.string().optional(), - createdAt: z.coerce.date().optional(), - updatedAt: z.coerce.date().optional(), - title: z.string(), - shortDescription: z.string().optional().nullable(), - content: z.string(), - type: NotificationTypeSchema, - payload: z.string().optional().nullable(), - payloadType: NotificationPayloadTypeSchema, - actorGroupId: z.string(), - createdById: z.string().optional().nullable(), - lastUpdatedById: z.string().optional().nullable(), - taskId: z.string().optional().nullable() -}).strict(); -export const NotificationCreateManyInputObjectSchema: z.ZodType = z.lazy(__makeSchema_NotificationCreateManyInput_schema) as unknown as z.ZodType; -export const NotificationCreateManyInputObjectZodSchema = z.lazy(__makeSchema_NotificationCreateManyInput_schema); - - -// File: NotificationUpdateManyMutationInput.schema.ts -const __makeSchema_NotificationUpdateManyMutationInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - createdAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - updatedAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - title: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - shortDescription: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - content: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - type: z.union([NotificationTypeSchema, EnumNotificationTypeFieldUpdateOperationsInputObjectSchema]).optional(), - payload: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - payloadType: z.union([NotificationPayloadTypeSchema, EnumNotificationPayloadTypeFieldUpdateOperationsInputObjectSchema]).optional() -}).strict(); -export const NotificationUpdateManyMutationInputObjectSchema: z.ZodType = z.lazy(__makeSchema_NotificationUpdateManyMutationInput_schema) as unknown as z.ZodType; -export const NotificationUpdateManyMutationInputObjectZodSchema = z.lazy(__makeSchema_NotificationUpdateManyMutationInput_schema); - - -// File: NotificationUncheckedUpdateManyInput.schema.ts -const __makeSchema_NotificationUncheckedUpdateManyInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - createdAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - updatedAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - title: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - shortDescription: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - content: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - type: z.union([NotificationTypeSchema, EnumNotificationTypeFieldUpdateOperationsInputObjectSchema]).optional(), - payload: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - payloadType: z.union([NotificationPayloadTypeSchema, EnumNotificationPayloadTypeFieldUpdateOperationsInputObjectSchema]).optional(), - actorGroupId: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - createdById: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - lastUpdatedById: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - taskId: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable() -}).strict(); -export const NotificationUncheckedUpdateManyInputObjectSchema: z.ZodType = z.lazy(__makeSchema_NotificationUncheckedUpdateManyInput_schema) as unknown as z.ZodType; -export const NotificationUncheckedUpdateManyInputObjectZodSchema = z.lazy(__makeSchema_NotificationUncheckedUpdateManyInput_schema); - - -// File: ContestCreateInput.schema.ts -const __makeSchema_ContestCreateInput_schema = () => z.object({ - id: z.string().optional(), - name: z.string(), - description: z.string().optional().nullable(), - startDate: z.coerce.date().optional().nullable(), - resultType: ContestResultTypeSchema, - resultOrder: ContestResultOrderSchema, - get winnerContestant(){ return ContestantCreateNestedOneWithoutWonContestInputObjectSchema.optional(); }, - get contestants(){ return ContestantCreateNestedManyWithoutContestInputObjectSchema.optional(); }, - get groups(){ return GroupCreateNestedManyWithoutContestsInputObjectSchema.optional(); }, - get events(){ return EventCreateNestedManyWithoutContestInputObjectSchema.optional(); } -}).strict(); -export const ContestCreateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_ContestCreateInput_schema) as unknown as z.ZodType; -export const ContestCreateInputObjectZodSchema = z.lazy(__makeSchema_ContestCreateInput_schema); - - -// File: ContestUncheckedCreateInput.schema.ts -const __makeSchema_ContestUncheckedCreateInput_schema = () => z.object({ - id: z.string().optional(), - name: z.string(), - description: z.string().optional().nullable(), - startDate: z.coerce.date().optional().nullable(), - resultType: ContestResultTypeSchema, - resultOrder: ContestResultOrderSchema, - winnerContestantId: z.string().optional().nullable(), - get contestants(){ return ContestantUncheckedCreateNestedManyWithoutContestInputObjectSchema.optional(); }, - get groups(){ return GroupUncheckedCreateNestedManyWithoutContestsInputObjectSchema.optional(); }, - get events(){ return EventUncheckedCreateNestedManyWithoutContestInputObjectSchema.optional(); } -}).strict(); -export const ContestUncheckedCreateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_ContestUncheckedCreateInput_schema) as unknown as z.ZodType; -export const ContestUncheckedCreateInputObjectZodSchema = z.lazy(__makeSchema_ContestUncheckedCreateInput_schema); - - -// File: ContestUpdateInput.schema.ts -const __makeSchema_ContestUpdateInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - name: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - description: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - startDate: z.union([z.coerce.date(), NullableDateTimeFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - resultType: z.union([ContestResultTypeSchema, EnumContestResultTypeFieldUpdateOperationsInputObjectSchema]).optional(), - resultOrder: z.union([ContestResultOrderSchema, EnumContestResultOrderFieldUpdateOperationsInputObjectSchema]).optional(), - get winnerContestant(){ return ContestantUpdateOneWithoutWonContestNestedInputObjectSchema.optional(); }, - get contestants(){ return ContestantUpdateManyWithoutContestNestedInputObjectSchema.optional(); }, - get groups(){ return GroupUpdateManyWithoutContestsNestedInputObjectSchema.optional(); }, - get events(){ return EventUpdateManyWithoutContestNestedInputObjectSchema.optional(); } -}).strict(); -export const ContestUpdateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_ContestUpdateInput_schema) as unknown as z.ZodType; -export const ContestUpdateInputObjectZodSchema = z.lazy(__makeSchema_ContestUpdateInput_schema); - - -// File: ContestUncheckedUpdateInput.schema.ts -const __makeSchema_ContestUncheckedUpdateInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - name: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - description: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - startDate: z.union([z.coerce.date(), NullableDateTimeFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - resultType: z.union([ContestResultTypeSchema, EnumContestResultTypeFieldUpdateOperationsInputObjectSchema]).optional(), - resultOrder: z.union([ContestResultOrderSchema, EnumContestResultOrderFieldUpdateOperationsInputObjectSchema]).optional(), - winnerContestantId: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - get contestants(){ return ContestantUncheckedUpdateManyWithoutContestNestedInputObjectSchema.optional(); }, - get groups(){ return GroupUncheckedUpdateManyWithoutContestsNestedInputObjectSchema.optional(); }, - get events(){ return EventUncheckedUpdateManyWithoutContestNestedInputObjectSchema.optional(); } -}).strict(); -export const ContestUncheckedUpdateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_ContestUncheckedUpdateInput_schema) as unknown as z.ZodType; -export const ContestUncheckedUpdateInputObjectZodSchema = z.lazy(__makeSchema_ContestUncheckedUpdateInput_schema); - - -// File: ContestCreateManyInput.schema.ts -const __makeSchema_ContestCreateManyInput_schema = () => z.object({ - id: z.string().optional(), - name: z.string(), - description: z.string().optional().nullable(), - startDate: z.coerce.date().optional().nullable(), - resultType: ContestResultTypeSchema, - resultOrder: ContestResultOrderSchema, - winnerContestantId: z.string().optional().nullable() -}).strict(); -export const ContestCreateManyInputObjectSchema: z.ZodType = z.lazy(__makeSchema_ContestCreateManyInput_schema) as unknown as z.ZodType; -export const ContestCreateManyInputObjectZodSchema = z.lazy(__makeSchema_ContestCreateManyInput_schema); - - -// File: ContestUpdateManyMutationInput.schema.ts -const __makeSchema_ContestUpdateManyMutationInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - name: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - description: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - startDate: z.union([z.coerce.date(), NullableDateTimeFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - resultType: z.union([ContestResultTypeSchema, EnumContestResultTypeFieldUpdateOperationsInputObjectSchema]).optional(), - resultOrder: z.union([ContestResultOrderSchema, EnumContestResultOrderFieldUpdateOperationsInputObjectSchema]).optional() -}).strict(); -export const ContestUpdateManyMutationInputObjectSchema: z.ZodType = z.lazy(__makeSchema_ContestUpdateManyMutationInput_schema) as unknown as z.ZodType; -export const ContestUpdateManyMutationInputObjectZodSchema = z.lazy(__makeSchema_ContestUpdateManyMutationInput_schema); - - -// File: ContestUncheckedUpdateManyInput.schema.ts -const __makeSchema_ContestUncheckedUpdateManyInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - name: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - description: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - startDate: z.union([z.coerce.date(), NullableDateTimeFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - resultType: z.union([ContestResultTypeSchema, EnumContestResultTypeFieldUpdateOperationsInputObjectSchema]).optional(), - resultOrder: z.union([ContestResultOrderSchema, EnumContestResultOrderFieldUpdateOperationsInputObjectSchema]).optional(), - winnerContestantId: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable() -}).strict(); -export const ContestUncheckedUpdateManyInputObjectSchema: z.ZodType = z.lazy(__makeSchema_ContestUncheckedUpdateManyInput_schema) as unknown as z.ZodType; -export const ContestUncheckedUpdateManyInputObjectZodSchema = z.lazy(__makeSchema_ContestUncheckedUpdateManyInput_schema); - - -// File: FadderukeCreateInput.schema.ts -const __makeSchema_FadderukeCreateInput_schema = () => z.object({ - id: z.string().optional(), - year: z.number().int(), - createdAt: z.coerce.date().optional(), - get event(){ return EventCreateNestedOneWithoutFadderukeInputObjectSchema; } -}).strict(); -export const FadderukeCreateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FadderukeCreateInput_schema) as unknown as z.ZodType; -export const FadderukeCreateInputObjectZodSchema = z.lazy(__makeSchema_FadderukeCreateInput_schema); - - -// File: FadderukeUncheckedCreateInput.schema.ts -const __makeSchema_FadderukeUncheckedCreateInput_schema = () => z.object({ - id: z.string().optional(), - year: z.number().int(), - eventId: z.string(), - createdAt: z.coerce.date().optional() -}).strict(); -export const FadderukeUncheckedCreateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FadderukeUncheckedCreateInput_schema) as unknown as z.ZodType; -export const FadderukeUncheckedCreateInputObjectZodSchema = z.lazy(__makeSchema_FadderukeUncheckedCreateInput_schema); - - -// File: FadderukeUpdateInput.schema.ts -const __makeSchema_FadderukeUpdateInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - year: z.union([z.number().int(), IntFieldUpdateOperationsInputObjectSchema]).optional(), - createdAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - updatedAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - get event(){ return EventUpdateOneRequiredWithoutFadderukeNestedInputObjectSchema.optional(); } -}).strict(); -export const FadderukeUpdateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FadderukeUpdateInput_schema) as unknown as z.ZodType; -export const FadderukeUpdateInputObjectZodSchema = z.lazy(__makeSchema_FadderukeUpdateInput_schema); - - -// File: FadderukeUncheckedUpdateInput.schema.ts -const __makeSchema_FadderukeUncheckedUpdateInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - year: z.union([z.number().int(), IntFieldUpdateOperationsInputObjectSchema]).optional(), - eventId: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - createdAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - updatedAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional() -}).strict(); -export const FadderukeUncheckedUpdateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FadderukeUncheckedUpdateInput_schema) as unknown as z.ZodType; -export const FadderukeUncheckedUpdateInputObjectZodSchema = z.lazy(__makeSchema_FadderukeUncheckedUpdateInput_schema); - - -// File: FadderukeCreateManyInput.schema.ts -const __makeSchema_FadderukeCreateManyInput_schema = () => z.object({ - id: z.string().optional(), - year: z.number().int(), - eventId: z.string(), - createdAt: z.coerce.date().optional(), - updatedAt: z.coerce.date().optional() -}).strict(); -export const FadderukeCreateManyInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FadderukeCreateManyInput_schema) as unknown as z.ZodType; -export const FadderukeCreateManyInputObjectZodSchema = z.lazy(__makeSchema_FadderukeCreateManyInput_schema); - - -// File: FadderukeUpdateManyMutationInput.schema.ts -const __makeSchema_FadderukeUpdateManyMutationInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - year: z.union([z.number().int(), IntFieldUpdateOperationsInputObjectSchema]).optional(), - createdAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - updatedAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional() -}).strict(); -export const FadderukeUpdateManyMutationInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FadderukeUpdateManyMutationInput_schema) as unknown as z.ZodType; -export const FadderukeUpdateManyMutationInputObjectZodSchema = z.lazy(__makeSchema_FadderukeUpdateManyMutationInput_schema); - - -// File: FadderukeUncheckedUpdateManyInput.schema.ts -const __makeSchema_FadderukeUncheckedUpdateManyInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - year: z.union([z.number().int(), IntFieldUpdateOperationsInputObjectSchema]).optional(), - eventId: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - createdAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - updatedAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional() -}).strict(); -export const FadderukeUncheckedUpdateManyInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FadderukeUncheckedUpdateManyInput_schema) as unknown as z.ZodType; -export const FadderukeUncheckedUpdateManyInputObjectZodSchema = z.lazy(__makeSchema_FadderukeUncheckedUpdateManyInput_schema); - - -// File: ContestantCreateInput.schema.ts -const __makeSchema_ContestantCreateInput_schema = () => z.object({ - id: z.string().optional(), - resultValue: z.number().int().optional().nullable(), - get contest(){ return ContestCreateNestedOneWithoutContestantsInputObjectSchema; }, - get user(){ return UserCreateNestedOneWithoutContestantsInputObjectSchema.optional(); }, - get team(){ return ContestTeamCreateNestedOneWithoutContestantInputObjectSchema.optional(); }, - get wonContest(){ return ContestCreateNestedOneWithoutWinnerContestantInputObjectSchema.optional(); } -}).strict(); -export const ContestantCreateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_ContestantCreateInput_schema) as unknown as z.ZodType; -export const ContestantCreateInputObjectZodSchema = z.lazy(__makeSchema_ContestantCreateInput_schema); - - -// File: ContestantUncheckedCreateInput.schema.ts -const __makeSchema_ContestantUncheckedCreateInput_schema = () => z.object({ - id: z.string().optional(), - resultValue: z.number().int().optional().nullable(), - contestId: z.string(), - userId: z.string().optional().nullable(), - get team(){ return ContestTeamUncheckedCreateNestedOneWithoutContestantInputObjectSchema.optional(); }, - get wonContest(){ return ContestUncheckedCreateNestedOneWithoutWinnerContestantInputObjectSchema.optional(); } -}).strict(); -export const ContestantUncheckedCreateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_ContestantUncheckedCreateInput_schema) as unknown as z.ZodType; -export const ContestantUncheckedCreateInputObjectZodSchema = z.lazy(__makeSchema_ContestantUncheckedCreateInput_schema); - - -// File: ContestantUpdateInput.schema.ts -const __makeSchema_ContestantUpdateInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - resultValue: z.union([z.number().int(), NullableIntFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - get contest(){ return ContestUpdateOneRequiredWithoutContestantsNestedInputObjectSchema.optional(); }, - get user(){ return UserUpdateOneWithoutContestantsNestedInputObjectSchema.optional(); }, - get team(){ return ContestTeamUpdateOneWithoutContestantNestedInputObjectSchema.optional(); }, - get wonContest(){ return ContestUpdateOneWithoutWinnerContestantNestedInputObjectSchema.optional(); } -}).strict(); -export const ContestantUpdateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_ContestantUpdateInput_schema) as unknown as z.ZodType; -export const ContestantUpdateInputObjectZodSchema = z.lazy(__makeSchema_ContestantUpdateInput_schema); - - -// File: ContestantUncheckedUpdateInput.schema.ts -const __makeSchema_ContestantUncheckedUpdateInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - resultValue: z.union([z.number().int(), NullableIntFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - contestId: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - userId: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - get team(){ return ContestTeamUncheckedUpdateOneWithoutContestantNestedInputObjectSchema.optional(); }, - get wonContest(){ return ContestUncheckedUpdateOneWithoutWinnerContestantNestedInputObjectSchema.optional(); } -}).strict(); -export const ContestantUncheckedUpdateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_ContestantUncheckedUpdateInput_schema) as unknown as z.ZodType; -export const ContestantUncheckedUpdateInputObjectZodSchema = z.lazy(__makeSchema_ContestantUncheckedUpdateInput_schema); - - -// File: ContestantCreateManyInput.schema.ts -const __makeSchema_ContestantCreateManyInput_schema = () => z.object({ - id: z.string().optional(), - resultValue: z.number().int().optional().nullable(), - contestId: z.string(), - userId: z.string().optional().nullable() -}).strict(); -export const ContestantCreateManyInputObjectSchema: z.ZodType = z.lazy(__makeSchema_ContestantCreateManyInput_schema) as unknown as z.ZodType; -export const ContestantCreateManyInputObjectZodSchema = z.lazy(__makeSchema_ContestantCreateManyInput_schema); - - -// File: ContestantUpdateManyMutationInput.schema.ts -const __makeSchema_ContestantUpdateManyMutationInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - resultValue: z.union([z.number().int(), NullableIntFieldUpdateOperationsInputObjectSchema]).optional().nullable() -}).strict(); -export const ContestantUpdateManyMutationInputObjectSchema: z.ZodType = z.lazy(__makeSchema_ContestantUpdateManyMutationInput_schema) as unknown as z.ZodType; -export const ContestantUpdateManyMutationInputObjectZodSchema = z.lazy(__makeSchema_ContestantUpdateManyMutationInput_schema); - - -// File: ContestantUncheckedUpdateManyInput.schema.ts -const __makeSchema_ContestantUncheckedUpdateManyInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - resultValue: z.union([z.number().int(), NullableIntFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - contestId: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - userId: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable() -}).strict(); -export const ContestantUncheckedUpdateManyInputObjectSchema: z.ZodType = z.lazy(__makeSchema_ContestantUncheckedUpdateManyInput_schema) as unknown as z.ZodType; -export const ContestantUncheckedUpdateManyInputObjectZodSchema = z.lazy(__makeSchema_ContestantUncheckedUpdateManyInput_schema); - - -// File: ContestTeamCreateInput.schema.ts -const __makeSchema_ContestTeamCreateInput_schema = () => z.object({ - id: z.string().optional(), - name: z.string(), - get contestant(){ return ContestantCreateNestedOneWithoutTeamInputObjectSchema; }, - get members(){ return UserCreateNestedManyWithoutContestTeamsInputObjectSchema.optional(); } -}).strict(); -export const ContestTeamCreateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_ContestTeamCreateInput_schema) as unknown as z.ZodType; -export const ContestTeamCreateInputObjectZodSchema = z.lazy(__makeSchema_ContestTeamCreateInput_schema); - - -// File: ContestTeamUncheckedCreateInput.schema.ts -const __makeSchema_ContestTeamUncheckedCreateInput_schema = () => z.object({ - id: z.string().optional(), - name: z.string(), - contestantId: z.string(), - get members(){ return UserUncheckedCreateNestedManyWithoutContestTeamsInputObjectSchema.optional(); } -}).strict(); -export const ContestTeamUncheckedCreateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_ContestTeamUncheckedCreateInput_schema) as unknown as z.ZodType; -export const ContestTeamUncheckedCreateInputObjectZodSchema = z.lazy(__makeSchema_ContestTeamUncheckedCreateInput_schema); - - -// File: ContestTeamUpdateInput.schema.ts -const __makeSchema_ContestTeamUpdateInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - name: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - get contestant(){ return ContestantUpdateOneRequiredWithoutTeamNestedInputObjectSchema.optional(); }, - get members(){ return UserUpdateManyWithoutContestTeamsNestedInputObjectSchema.optional(); } -}).strict(); -export const ContestTeamUpdateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_ContestTeamUpdateInput_schema) as unknown as z.ZodType; -export const ContestTeamUpdateInputObjectZodSchema = z.lazy(__makeSchema_ContestTeamUpdateInput_schema); - - -// File: ContestTeamUncheckedUpdateInput.schema.ts -const __makeSchema_ContestTeamUncheckedUpdateInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - name: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - contestantId: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - get members(){ return UserUncheckedUpdateManyWithoutContestTeamsNestedInputObjectSchema.optional(); } -}).strict(); -export const ContestTeamUncheckedUpdateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_ContestTeamUncheckedUpdateInput_schema) as unknown as z.ZodType; -export const ContestTeamUncheckedUpdateInputObjectZodSchema = z.lazy(__makeSchema_ContestTeamUncheckedUpdateInput_schema); - - -// File: ContestTeamCreateManyInput.schema.ts -const __makeSchema_ContestTeamCreateManyInput_schema = () => z.object({ - id: z.string().optional(), - name: z.string(), - contestantId: z.string() -}).strict(); -export const ContestTeamCreateManyInputObjectSchema: z.ZodType = z.lazy(__makeSchema_ContestTeamCreateManyInput_schema) as unknown as z.ZodType; -export const ContestTeamCreateManyInputObjectZodSchema = z.lazy(__makeSchema_ContestTeamCreateManyInput_schema); - - -// File: ContestTeamUpdateManyMutationInput.schema.ts -const __makeSchema_ContestTeamUpdateManyMutationInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - name: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional() -}).strict(); -export const ContestTeamUpdateManyMutationInputObjectSchema: z.ZodType = z.lazy(__makeSchema_ContestTeamUpdateManyMutationInput_schema) as unknown as z.ZodType; -export const ContestTeamUpdateManyMutationInputObjectZodSchema = z.lazy(__makeSchema_ContestTeamUpdateManyMutationInput_schema); - - -// File: ContestTeamUncheckedUpdateManyInput.schema.ts -const __makeSchema_ContestTeamUncheckedUpdateManyInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - name: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - contestantId: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional() -}).strict(); -export const ContestTeamUncheckedUpdateManyInputObjectSchema: z.ZodType = z.lazy(__makeSchema_ContestTeamUncheckedUpdateManyInput_schema) as unknown as z.ZodType; -export const ContestTeamUncheckedUpdateManyInputObjectZodSchema = z.lazy(__makeSchema_ContestTeamUncheckedUpdateManyInput_schema); - - -// File: StringFilter.schema.ts -const __makeSchema_StringFilter_schema = () => z.object({ - equals: z.string().optional(), - in: z.string().array().optional(), - notIn: z.string().array().optional(), - lt: z.string().optional(), - lte: z.string().optional(), - gt: z.string().optional(), - gte: z.string().optional(), - contains: z.string().optional(), - startsWith: z.string().optional(), - endsWith: z.string().optional(), - mode: QueryModeSchema.optional(), - not: z.union([z.string(), NestedStringFilterObjectSchema]).optional() -}).strict(); -export const StringFilterObjectSchema: z.ZodType = z.lazy(__makeSchema_StringFilter_schema) as unknown as z.ZodType; -export const StringFilterObjectZodSchema = z.lazy(__makeSchema_StringFilter_schema); - - -// File: EnumMembershipTypeFilter.schema.ts -const __makeSchema_EnumMembershipTypeFilter_schema = () => z.object({ - equals: MembershipTypeSchema.optional(), - in: MembershipTypeSchema.array().optional(), - notIn: MembershipTypeSchema.array().optional(), - not: z.union([MembershipTypeSchema, NestedEnumMembershipTypeFilterObjectSchema]).optional() -}).strict(); -export const EnumMembershipTypeFilterObjectSchema: z.ZodType = z.lazy(__makeSchema_EnumMembershipTypeFilter_schema) as unknown as z.ZodType; -export const EnumMembershipTypeFilterObjectZodSchema = z.lazy(__makeSchema_EnumMembershipTypeFilter_schema); - - -// File: EnumMembershipSpecializationNullableFilter.schema.ts -const __makeSchema_EnumMembershipSpecializationNullableFilter_schema = () => z.object({ - equals: MembershipSpecializationSchema.optional().nullable(), - in: MembershipSpecializationSchema.array().optional().nullable(), - notIn: MembershipSpecializationSchema.array().optional().nullable(), - not: z.union([MembershipSpecializationSchema, NestedEnumMembershipSpecializationNullableFilterObjectSchema]).optional().nullable() -}).strict(); -export const EnumMembershipSpecializationNullableFilterObjectSchema: z.ZodType = z.lazy(__makeSchema_EnumMembershipSpecializationNullableFilter_schema) as unknown as z.ZodType; -export const EnumMembershipSpecializationNullableFilterObjectZodSchema = z.lazy(__makeSchema_EnumMembershipSpecializationNullableFilter_schema); - - -// File: DateTimeFilter.schema.ts -const __makeSchema_DateTimeFilter_schema = () => z.object({ - equals: z.date().optional(), - in: z.union([z.date().array(), z.iso.datetime().array()]).optional(), - notIn: z.union([z.date().array(), z.iso.datetime().array()]).optional(), - lt: z.date().optional(), - lte: z.date().optional(), - gt: z.date().optional(), - gte: z.date().optional(), - not: z.union([z.date(), NestedDateTimeFilterObjectSchema]).optional() -}).strict(); -export const DateTimeFilterObjectSchema: z.ZodType = z.lazy(__makeSchema_DateTimeFilter_schema) as unknown as z.ZodType; -export const DateTimeFilterObjectZodSchema = z.lazy(__makeSchema_DateTimeFilter_schema); - - -// File: DateTimeNullableFilter.schema.ts -const __makeSchema_DateTimeNullableFilter_schema = () => z.object({ - equals: z.date().optional().nullable(), - in: z.union([z.date().array(), z.iso.datetime().array()]).optional().nullable(), - notIn: z.union([z.date().array(), z.iso.datetime().array()]).optional().nullable(), - lt: z.date().optional(), - lte: z.date().optional(), - gt: z.date().optional(), - gte: z.date().optional(), - not: z.union([z.date(), NestedDateTimeNullableFilterObjectSchema]).optional().nullable() -}).strict(); -export const DateTimeNullableFilterObjectSchema: z.ZodType = z.lazy(__makeSchema_DateTimeNullableFilter_schema) as unknown as z.ZodType; -export const DateTimeNullableFilterObjectZodSchema = z.lazy(__makeSchema_DateTimeNullableFilter_schema); - - -// File: IntNullableFilter.schema.ts -const __makeSchema_IntNullableFilter_schema = () => z.object({ - equals: z.number().int().optional().nullable(), - in: z.number().int().array().optional().nullable(), - notIn: z.number().int().array().optional().nullable(), - lt: z.number().int().optional(), - lte: z.number().int().optional(), - gt: z.number().int().optional(), - gte: z.number().int().optional(), - not: z.union([z.number().int(), NestedIntNullableFilterObjectSchema]).optional().nullable() -}).strict(); -export const IntNullableFilterObjectSchema: z.ZodType = z.lazy(__makeSchema_IntNullableFilter_schema) as unknown as z.ZodType; -export const IntNullableFilterObjectZodSchema = z.lazy(__makeSchema_IntNullableFilter_schema); - - -// File: UserScalarRelationFilter.schema.ts -const __makeSchema_UserScalarRelationFilter_schema = () => z.object({ - get is(){ return UserWhereInputObjectSchema.optional(); }, - get isNot(){ return UserWhereInputObjectSchema.optional(); } -}).strict(); -export const UserScalarRelationFilterObjectSchema: z.ZodType = z.lazy(__makeSchema_UserScalarRelationFilter_schema) as unknown as z.ZodType; -export const UserScalarRelationFilterObjectZodSchema = z.lazy(__makeSchema_UserScalarRelationFilter_schema); - - -// File: SortOrderInput.schema.ts -const __makeSchema_SortOrderInput_schema = () => z.object({ - sort: SortOrderSchema, - nulls: NullsOrderSchema.optional() -}).strict(); -export const SortOrderInputObjectSchema: z.ZodType = z.lazy(__makeSchema_SortOrderInput_schema) as unknown as z.ZodType; -export const SortOrderInputObjectZodSchema = z.lazy(__makeSchema_SortOrderInput_schema); - - -// File: MembershipCountOrderByAggregateInput.schema.ts -const __makeSchema_MembershipCountOrderByAggregateInput_schema = () => z.object({ - id: SortOrderSchema.optional(), - type: SortOrderSchema.optional(), - specialization: SortOrderSchema.optional(), - start: SortOrderSchema.optional(), - end: SortOrderSchema.optional(), - semester: SortOrderSchema.optional(), - userId: SortOrderSchema.optional() -}).strict(); -export const MembershipCountOrderByAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_MembershipCountOrderByAggregateInput_schema) as unknown as z.ZodType; -export const MembershipCountOrderByAggregateInputObjectZodSchema = z.lazy(__makeSchema_MembershipCountOrderByAggregateInput_schema); - - -// File: MembershipAvgOrderByAggregateInput.schema.ts -const __makeSchema_MembershipAvgOrderByAggregateInput_schema = () => z.object({ - semester: SortOrderSchema.optional() -}).strict(); -export const MembershipAvgOrderByAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_MembershipAvgOrderByAggregateInput_schema) as unknown as z.ZodType; -export const MembershipAvgOrderByAggregateInputObjectZodSchema = z.lazy(__makeSchema_MembershipAvgOrderByAggregateInput_schema); - - -// File: MembershipMaxOrderByAggregateInput.schema.ts -const __makeSchema_MembershipMaxOrderByAggregateInput_schema = () => z.object({ - id: SortOrderSchema.optional(), - type: SortOrderSchema.optional(), - specialization: SortOrderSchema.optional(), - start: SortOrderSchema.optional(), - end: SortOrderSchema.optional(), - semester: SortOrderSchema.optional(), - userId: SortOrderSchema.optional() -}).strict(); -export const MembershipMaxOrderByAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_MembershipMaxOrderByAggregateInput_schema) as unknown as z.ZodType; -export const MembershipMaxOrderByAggregateInputObjectZodSchema = z.lazy(__makeSchema_MembershipMaxOrderByAggregateInput_schema); - - -// File: MembershipMinOrderByAggregateInput.schema.ts -const __makeSchema_MembershipMinOrderByAggregateInput_schema = () => z.object({ - id: SortOrderSchema.optional(), - type: SortOrderSchema.optional(), - specialization: SortOrderSchema.optional(), - start: SortOrderSchema.optional(), - end: SortOrderSchema.optional(), - semester: SortOrderSchema.optional(), - userId: SortOrderSchema.optional() -}).strict(); -export const MembershipMinOrderByAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_MembershipMinOrderByAggregateInput_schema) as unknown as z.ZodType; -export const MembershipMinOrderByAggregateInputObjectZodSchema = z.lazy(__makeSchema_MembershipMinOrderByAggregateInput_schema); - - -// File: MembershipSumOrderByAggregateInput.schema.ts -const __makeSchema_MembershipSumOrderByAggregateInput_schema = () => z.object({ - semester: SortOrderSchema.optional() -}).strict(); -export const MembershipSumOrderByAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_MembershipSumOrderByAggregateInput_schema) as unknown as z.ZodType; -export const MembershipSumOrderByAggregateInputObjectZodSchema = z.lazy(__makeSchema_MembershipSumOrderByAggregateInput_schema); - - -// File: StringWithAggregatesFilter.schema.ts -const __makeSchema_StringWithAggregatesFilter_schema = () => z.object({ - equals: z.string().optional(), - in: z.string().array().optional(), - notIn: z.string().array().optional(), - lt: z.string().optional(), - lte: z.string().optional(), - gt: z.string().optional(), - gte: z.string().optional(), - contains: z.string().optional(), - startsWith: z.string().optional(), - endsWith: z.string().optional(), - mode: QueryModeSchema.optional(), - not: z.union([z.string(), NestedStringWithAggregatesFilterObjectSchema]).optional(), - get _count(){ return NestedIntFilterObjectSchema.optional(); }, - get _min(){ return NestedStringFilterObjectSchema.optional(); }, - get _max(){ return NestedStringFilterObjectSchema.optional(); } -}).strict(); -export const StringWithAggregatesFilterObjectSchema: z.ZodType = z.lazy(__makeSchema_StringWithAggregatesFilter_schema) as unknown as z.ZodType; -export const StringWithAggregatesFilterObjectZodSchema = z.lazy(__makeSchema_StringWithAggregatesFilter_schema); - - -// File: EnumMembershipTypeWithAggregatesFilter.schema.ts -const __makeSchema_EnumMembershipTypeWithAggregatesFilter_schema = () => z.object({ - equals: MembershipTypeSchema.optional(), - in: MembershipTypeSchema.array().optional(), - notIn: MembershipTypeSchema.array().optional(), - not: z.union([MembershipTypeSchema, NestedEnumMembershipTypeWithAggregatesFilterObjectSchema]).optional(), - get _count(){ return NestedIntFilterObjectSchema.optional(); }, - get _min(){ return NestedEnumMembershipTypeFilterObjectSchema.optional(); }, - get _max(){ return NestedEnumMembershipTypeFilterObjectSchema.optional(); } -}).strict(); -export const EnumMembershipTypeWithAggregatesFilterObjectSchema: z.ZodType = z.lazy(__makeSchema_EnumMembershipTypeWithAggregatesFilter_schema) as unknown as z.ZodType; -export const EnumMembershipTypeWithAggregatesFilterObjectZodSchema = z.lazy(__makeSchema_EnumMembershipTypeWithAggregatesFilter_schema); - - -// File: EnumMembershipSpecializationNullableWithAggregatesFilter.schema.ts -const __makeSchema_EnumMembershipSpecializationNullableWithAggregatesFilter_schema = () => z.object({ - equals: MembershipSpecializationSchema.optional().nullable(), - in: MembershipSpecializationSchema.array().optional().nullable(), - notIn: MembershipSpecializationSchema.array().optional().nullable(), - not: z.union([MembershipSpecializationSchema, NestedEnumMembershipSpecializationNullableWithAggregatesFilterObjectSchema]).optional().nullable(), - get _count(){ return NestedIntNullableFilterObjectSchema.optional(); }, - get _min(){ return NestedEnumMembershipSpecializationNullableFilterObjectSchema.optional(); }, - get _max(){ return NestedEnumMembershipSpecializationNullableFilterObjectSchema.optional(); } -}).strict(); -export const EnumMembershipSpecializationNullableWithAggregatesFilterObjectSchema: z.ZodType = z.lazy(__makeSchema_EnumMembershipSpecializationNullableWithAggregatesFilter_schema) as unknown as z.ZodType; -export const EnumMembershipSpecializationNullableWithAggregatesFilterObjectZodSchema = z.lazy(__makeSchema_EnumMembershipSpecializationNullableWithAggregatesFilter_schema); - - -// File: DateTimeWithAggregatesFilter.schema.ts -const __makeSchema_DateTimeWithAggregatesFilter_schema = () => z.object({ - equals: z.date().optional(), - in: z.union([z.date().array(), z.iso.datetime().array()]).optional(), - notIn: z.union([z.date().array(), z.iso.datetime().array()]).optional(), - lt: z.date().optional(), - lte: z.date().optional(), - gt: z.date().optional(), - gte: z.date().optional(), - not: z.union([z.date(), NestedDateTimeWithAggregatesFilterObjectSchema]).optional(), - get _count(){ return NestedIntFilterObjectSchema.optional(); }, - get _min(){ return NestedDateTimeFilterObjectSchema.optional(); }, - get _max(){ return NestedDateTimeFilterObjectSchema.optional(); } -}).strict(); -export const DateTimeWithAggregatesFilterObjectSchema: z.ZodType = z.lazy(__makeSchema_DateTimeWithAggregatesFilter_schema) as unknown as z.ZodType; -export const DateTimeWithAggregatesFilterObjectZodSchema = z.lazy(__makeSchema_DateTimeWithAggregatesFilter_schema); - - -// File: DateTimeNullableWithAggregatesFilter.schema.ts -const __makeSchema_DateTimeNullableWithAggregatesFilter_schema = () => z.object({ - equals: z.date().optional().nullable(), - in: z.union([z.date().array(), z.iso.datetime().array()]).optional().nullable(), - notIn: z.union([z.date().array(), z.iso.datetime().array()]).optional().nullable(), - lt: z.date().optional(), - lte: z.date().optional(), - gt: z.date().optional(), - gte: z.date().optional(), - not: z.union([z.date(), NestedDateTimeNullableWithAggregatesFilterObjectSchema]).optional().nullable(), - get _count(){ return NestedIntNullableFilterObjectSchema.optional(); }, - get _min(){ return NestedDateTimeNullableFilterObjectSchema.optional(); }, - get _max(){ return NestedDateTimeNullableFilterObjectSchema.optional(); } -}).strict(); -export const DateTimeNullableWithAggregatesFilterObjectSchema: z.ZodType = z.lazy(__makeSchema_DateTimeNullableWithAggregatesFilter_schema) as unknown as z.ZodType; -export const DateTimeNullableWithAggregatesFilterObjectZodSchema = z.lazy(__makeSchema_DateTimeNullableWithAggregatesFilter_schema); - - -// File: IntNullableWithAggregatesFilter.schema.ts -const __makeSchema_IntNullableWithAggregatesFilter_schema = () => z.object({ - equals: z.number().int().optional().nullable(), - in: z.number().int().array().optional().nullable(), - notIn: z.number().int().array().optional().nullable(), - lt: z.number().int().optional(), - lte: z.number().int().optional(), - gt: z.number().int().optional(), - gte: z.number().int().optional(), - not: z.union([z.number().int(), NestedIntNullableWithAggregatesFilterObjectSchema]).optional().nullable(), - get _count(){ return NestedIntNullableFilterObjectSchema.optional(); }, - get _avg(){ return NestedFloatNullableFilterObjectSchema.optional(); }, - get _sum(){ return NestedIntNullableFilterObjectSchema.optional(); }, - get _min(){ return NestedIntNullableFilterObjectSchema.optional(); }, - get _max(){ return NestedIntNullableFilterObjectSchema.optional(); } -}).strict(); -export const IntNullableWithAggregatesFilterObjectSchema: z.ZodType = z.lazy(__makeSchema_IntNullableWithAggregatesFilter_schema) as unknown as z.ZodType; -export const IntNullableWithAggregatesFilterObjectZodSchema = z.lazy(__makeSchema_IntNullableWithAggregatesFilter_schema); - - -// File: StringNullableFilter.schema.ts -const __makeSchema_StringNullableFilter_schema = () => z.object({ - equals: z.string().optional().nullable(), - in: z.string().array().optional().nullable(), - notIn: z.string().array().optional().nullable(), - lt: z.string().optional(), - lte: z.string().optional(), - gt: z.string().optional(), - gte: z.string().optional(), - contains: z.string().optional(), - startsWith: z.string().optional(), - endsWith: z.string().optional(), - mode: QueryModeSchema.optional(), - not: z.union([z.string(), NestedStringNullableFilterObjectSchema]).optional().nullable() -}).strict(); -export const StringNullableFilterObjectSchema: z.ZodType = z.lazy(__makeSchema_StringNullableFilter_schema) as unknown as z.ZodType; -export const StringNullableFilterObjectZodSchema = z.lazy(__makeSchema_StringNullableFilter_schema); - - -// File: EnumGenderFilter.schema.ts -const __makeSchema_EnumGenderFilter_schema = () => z.object({ - equals: GenderSchema.optional(), - in: GenderSchema.array().optional(), - notIn: GenderSchema.array().optional(), - not: z.union([GenderSchema, NestedEnumGenderFilterObjectSchema]).optional() -}).strict(); -export const EnumGenderFilterObjectSchema: z.ZodType = z.lazy(__makeSchema_EnumGenderFilter_schema) as unknown as z.ZodType; -export const EnumGenderFilterObjectZodSchema = z.lazy(__makeSchema_EnumGenderFilter_schema); - - -// File: StringNullableListFilter.schema.ts -const __makeSchema_StringNullableListFilter_schema = () => z.object({ - equals: z.string().array().optional().nullable(), - has: z.string().optional().nullable(), - hasEvery: z.string().array().optional(), - hasSome: z.string().array().optional(), - isEmpty: z.boolean().optional() -}).strict(); -export const StringNullableListFilterObjectSchema: z.ZodType = z.lazy(__makeSchema_StringNullableListFilter_schema) as unknown as z.ZodType; -export const StringNullableListFilterObjectZodSchema = z.lazy(__makeSchema_StringNullableListFilter_schema); - - -// File: PrivacyPermissionsNullableScalarRelationFilter.schema.ts -const __makeSchema_PrivacyPermissionsNullableScalarRelationFilter_schema = () => z.object({ - is: PrivacyPermissionsWhereInputObjectSchema.optional().nullable(), - isNot: PrivacyPermissionsWhereInputObjectSchema.optional().nullable() -}).strict(); -export const PrivacyPermissionsNullableScalarRelationFilterObjectSchema: z.ZodType = z.lazy(__makeSchema_PrivacyPermissionsNullableScalarRelationFilter_schema) as unknown as z.ZodType; -export const PrivacyPermissionsNullableScalarRelationFilterObjectZodSchema = z.lazy(__makeSchema_PrivacyPermissionsNullableScalarRelationFilter_schema); - - -// File: NotificationPermissionsNullableScalarRelationFilter.schema.ts -const __makeSchema_NotificationPermissionsNullableScalarRelationFilter_schema = () => z.object({ - is: NotificationPermissionsWhereInputObjectSchema.optional().nullable(), - isNot: NotificationPermissionsWhereInputObjectSchema.optional().nullable() -}).strict(); -export const NotificationPermissionsNullableScalarRelationFilterObjectSchema: z.ZodType = z.lazy(__makeSchema_NotificationPermissionsNullableScalarRelationFilter_schema) as unknown as z.ZodType; -export const NotificationPermissionsNullableScalarRelationFilterObjectZodSchema = z.lazy(__makeSchema_NotificationPermissionsNullableScalarRelationFilter_schema); - - -// File: AttendeeListRelationFilter.schema.ts -const __makeSchema_AttendeeListRelationFilter_schema = () => z.object({ - get every(){ return AttendeeWhereInputObjectSchema.optional(); }, - get some(){ return AttendeeWhereInputObjectSchema.optional(); }, - get none(){ return AttendeeWhereInputObjectSchema.optional(); } -}).strict(); -export const AttendeeListRelationFilterObjectSchema: z.ZodType = z.lazy(__makeSchema_AttendeeListRelationFilter_schema) as unknown as z.ZodType; -export const AttendeeListRelationFilterObjectZodSchema = z.lazy(__makeSchema_AttendeeListRelationFilter_schema); - - -// File: PersonalMarkListRelationFilter.schema.ts -const __makeSchema_PersonalMarkListRelationFilter_schema = () => z.object({ - get every(){ return PersonalMarkWhereInputObjectSchema.optional(); }, - get some(){ return PersonalMarkWhereInputObjectSchema.optional(); }, - get none(){ return PersonalMarkWhereInputObjectSchema.optional(); } -}).strict(); -export const PersonalMarkListRelationFilterObjectSchema: z.ZodType = z.lazy(__makeSchema_PersonalMarkListRelationFilter_schema) as unknown as z.ZodType; -export const PersonalMarkListRelationFilterObjectZodSchema = z.lazy(__makeSchema_PersonalMarkListRelationFilter_schema); - - -// File: GroupMembershipListRelationFilter.schema.ts -const __makeSchema_GroupMembershipListRelationFilter_schema = () => z.object({ - get every(){ return GroupMembershipWhereInputObjectSchema.optional(); }, - get some(){ return GroupMembershipWhereInputObjectSchema.optional(); }, - get none(){ return GroupMembershipWhereInputObjectSchema.optional(); } -}).strict(); -export const GroupMembershipListRelationFilterObjectSchema: z.ZodType = z.lazy(__makeSchema_GroupMembershipListRelationFilter_schema) as unknown as z.ZodType; -export const GroupMembershipListRelationFilterObjectZodSchema = z.lazy(__makeSchema_GroupMembershipListRelationFilter_schema); - - -// File: MembershipListRelationFilter.schema.ts -const __makeSchema_MembershipListRelationFilter_schema = () => z.object({ - get every(){ return MembershipWhereInputObjectSchema.optional(); }, - get some(){ return MembershipWhereInputObjectSchema.optional(); }, - get none(){ return MembershipWhereInputObjectSchema.optional(); } -}).strict(); -export const MembershipListRelationFilterObjectSchema: z.ZodType = z.lazy(__makeSchema_MembershipListRelationFilter_schema) as unknown as z.ZodType; -export const MembershipListRelationFilterObjectZodSchema = z.lazy(__makeSchema_MembershipListRelationFilter_schema); - - -// File: AuditLogListRelationFilter.schema.ts -const __makeSchema_AuditLogListRelationFilter_schema = () => z.object({ - get every(){ return AuditLogWhereInputObjectSchema.optional(); }, - get some(){ return AuditLogWhereInputObjectSchema.optional(); }, - get none(){ return AuditLogWhereInputObjectSchema.optional(); } -}).strict(); -export const AuditLogListRelationFilterObjectSchema: z.ZodType = z.lazy(__makeSchema_AuditLogListRelationFilter_schema) as unknown as z.ZodType; -export const AuditLogListRelationFilterObjectZodSchema = z.lazy(__makeSchema_AuditLogListRelationFilter_schema); - - -// File: DeregisterReasonListRelationFilter.schema.ts -const __makeSchema_DeregisterReasonListRelationFilter_schema = () => z.object({ - get every(){ return DeregisterReasonWhereInputObjectSchema.optional(); }, - get some(){ return DeregisterReasonWhereInputObjectSchema.optional(); }, - get none(){ return DeregisterReasonWhereInputObjectSchema.optional(); } -}).strict(); -export const DeregisterReasonListRelationFilterObjectSchema: z.ZodType = z.lazy(__makeSchema_DeregisterReasonListRelationFilter_schema) as unknown as z.ZodType; -export const DeregisterReasonListRelationFilterObjectZodSchema = z.lazy(__makeSchema_DeregisterReasonListRelationFilter_schema); - - -// File: NotificationRecipientListRelationFilter.schema.ts -const __makeSchema_NotificationRecipientListRelationFilter_schema = () => z.object({ - get every(){ return NotificationRecipientWhereInputObjectSchema.optional(); }, - get some(){ return NotificationRecipientWhereInputObjectSchema.optional(); }, - get none(){ return NotificationRecipientWhereInputObjectSchema.optional(); } -}).strict(); -export const NotificationRecipientListRelationFilterObjectSchema: z.ZodType = z.lazy(__makeSchema_NotificationRecipientListRelationFilter_schema) as unknown as z.ZodType; -export const NotificationRecipientListRelationFilterObjectZodSchema = z.lazy(__makeSchema_NotificationRecipientListRelationFilter_schema); - - -// File: NotificationListRelationFilter.schema.ts -const __makeSchema_NotificationListRelationFilter_schema = () => z.object({ - get every(){ return NotificationWhereInputObjectSchema.optional(); }, - get some(){ return NotificationWhereInputObjectSchema.optional(); }, - get none(){ return NotificationWhereInputObjectSchema.optional(); } -}).strict(); -export const NotificationListRelationFilterObjectSchema: z.ZodType = z.lazy(__makeSchema_NotificationListRelationFilter_schema) as unknown as z.ZodType; -export const NotificationListRelationFilterObjectZodSchema = z.lazy(__makeSchema_NotificationListRelationFilter_schema); - - -// File: ContestantListRelationFilter.schema.ts -const __makeSchema_ContestantListRelationFilter_schema = () => z.object({ - get every(){ return ContestantWhereInputObjectSchema.optional(); }, - get some(){ return ContestantWhereInputObjectSchema.optional(); }, - get none(){ return ContestantWhereInputObjectSchema.optional(); } -}).strict(); -export const ContestantListRelationFilterObjectSchema: z.ZodType = z.lazy(__makeSchema_ContestantListRelationFilter_schema) as unknown as z.ZodType; -export const ContestantListRelationFilterObjectZodSchema = z.lazy(__makeSchema_ContestantListRelationFilter_schema); - - -// File: ContestTeamListRelationFilter.schema.ts -const __makeSchema_ContestTeamListRelationFilter_schema = () => z.object({ - get every(){ return ContestTeamWhereInputObjectSchema.optional(); }, - get some(){ return ContestTeamWhereInputObjectSchema.optional(); }, - get none(){ return ContestTeamWhereInputObjectSchema.optional(); } -}).strict(); -export const ContestTeamListRelationFilterObjectSchema: z.ZodType = z.lazy(__makeSchema_ContestTeamListRelationFilter_schema) as unknown as z.ZodType; -export const ContestTeamListRelationFilterObjectZodSchema = z.lazy(__makeSchema_ContestTeamListRelationFilter_schema); - - -// File: AttendeeOrderByRelationAggregateInput.schema.ts -const __makeSchema_AttendeeOrderByRelationAggregateInput_schema = () => z.object({ - _count: SortOrderSchema.optional() -}).strict(); -export const AttendeeOrderByRelationAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_AttendeeOrderByRelationAggregateInput_schema) as unknown as z.ZodType; -export const AttendeeOrderByRelationAggregateInputObjectZodSchema = z.lazy(__makeSchema_AttendeeOrderByRelationAggregateInput_schema); - - -// File: PersonalMarkOrderByRelationAggregateInput.schema.ts -const __makeSchema_PersonalMarkOrderByRelationAggregateInput_schema = () => z.object({ - _count: SortOrderSchema.optional() -}).strict(); -export const PersonalMarkOrderByRelationAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_PersonalMarkOrderByRelationAggregateInput_schema) as unknown as z.ZodType; -export const PersonalMarkOrderByRelationAggregateInputObjectZodSchema = z.lazy(__makeSchema_PersonalMarkOrderByRelationAggregateInput_schema); - - -// File: GroupMembershipOrderByRelationAggregateInput.schema.ts -const __makeSchema_GroupMembershipOrderByRelationAggregateInput_schema = () => z.object({ - _count: SortOrderSchema.optional() -}).strict(); -export const GroupMembershipOrderByRelationAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_GroupMembershipOrderByRelationAggregateInput_schema) as unknown as z.ZodType; -export const GroupMembershipOrderByRelationAggregateInputObjectZodSchema = z.lazy(__makeSchema_GroupMembershipOrderByRelationAggregateInput_schema); - - -// File: MembershipOrderByRelationAggregateInput.schema.ts -const __makeSchema_MembershipOrderByRelationAggregateInput_schema = () => z.object({ - _count: SortOrderSchema.optional() -}).strict(); -export const MembershipOrderByRelationAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_MembershipOrderByRelationAggregateInput_schema) as unknown as z.ZodType; -export const MembershipOrderByRelationAggregateInputObjectZodSchema = z.lazy(__makeSchema_MembershipOrderByRelationAggregateInput_schema); - - -// File: AuditLogOrderByRelationAggregateInput.schema.ts -const __makeSchema_AuditLogOrderByRelationAggregateInput_schema = () => z.object({ - _count: SortOrderSchema.optional() -}).strict(); -export const AuditLogOrderByRelationAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_AuditLogOrderByRelationAggregateInput_schema) as unknown as z.ZodType; -export const AuditLogOrderByRelationAggregateInputObjectZodSchema = z.lazy(__makeSchema_AuditLogOrderByRelationAggregateInput_schema); - - -// File: DeregisterReasonOrderByRelationAggregateInput.schema.ts -const __makeSchema_DeregisterReasonOrderByRelationAggregateInput_schema = () => z.object({ - _count: SortOrderSchema.optional() -}).strict(); -export const DeregisterReasonOrderByRelationAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_DeregisterReasonOrderByRelationAggregateInput_schema) as unknown as z.ZodType; -export const DeregisterReasonOrderByRelationAggregateInputObjectZodSchema = z.lazy(__makeSchema_DeregisterReasonOrderByRelationAggregateInput_schema); - - -// File: NotificationRecipientOrderByRelationAggregateInput.schema.ts -const __makeSchema_NotificationRecipientOrderByRelationAggregateInput_schema = () => z.object({ - _count: SortOrderSchema.optional() -}).strict(); -export const NotificationRecipientOrderByRelationAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_NotificationRecipientOrderByRelationAggregateInput_schema) as unknown as z.ZodType; -export const NotificationRecipientOrderByRelationAggregateInputObjectZodSchema = z.lazy(__makeSchema_NotificationRecipientOrderByRelationAggregateInput_schema); - - -// File: NotificationOrderByRelationAggregateInput.schema.ts -const __makeSchema_NotificationOrderByRelationAggregateInput_schema = () => z.object({ - _count: SortOrderSchema.optional() -}).strict(); -export const NotificationOrderByRelationAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_NotificationOrderByRelationAggregateInput_schema) as unknown as z.ZodType; -export const NotificationOrderByRelationAggregateInputObjectZodSchema = z.lazy(__makeSchema_NotificationOrderByRelationAggregateInput_schema); - - -// File: ContestantOrderByRelationAggregateInput.schema.ts -const __makeSchema_ContestantOrderByRelationAggregateInput_schema = () => z.object({ - _count: SortOrderSchema.optional() -}).strict(); -export const ContestantOrderByRelationAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_ContestantOrderByRelationAggregateInput_schema) as unknown as z.ZodType; -export const ContestantOrderByRelationAggregateInputObjectZodSchema = z.lazy(__makeSchema_ContestantOrderByRelationAggregateInput_schema); - - -// File: ContestTeamOrderByRelationAggregateInput.schema.ts -const __makeSchema_ContestTeamOrderByRelationAggregateInput_schema = () => z.object({ - _count: SortOrderSchema.optional() -}).strict(); -export const ContestTeamOrderByRelationAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_ContestTeamOrderByRelationAggregateInput_schema) as unknown as z.ZodType; -export const ContestTeamOrderByRelationAggregateInputObjectZodSchema = z.lazy(__makeSchema_ContestTeamOrderByRelationAggregateInput_schema); - - -// File: UserCountOrderByAggregateInput.schema.ts -const __makeSchema_UserCountOrderByAggregateInput_schema = () => z.object({ - id: SortOrderSchema.optional(), - username: SortOrderSchema.optional(), - name: SortOrderSchema.optional(), - email: SortOrderSchema.optional(), - imageUrl: SortOrderSchema.optional(), - biography: SortOrderSchema.optional(), - phone: SortOrderSchema.optional(), - gender: SortOrderSchema.optional(), - dietaryRestrictions: SortOrderSchema.optional(), - ntnuUsername: SortOrderSchema.optional(), - flags: SortOrderSchema.optional(), - workspaceUserId: SortOrderSchema.optional(), - createdAt: SortOrderSchema.optional(), - updatedAt: SortOrderSchema.optional(), - privacyPermissionsId: SortOrderSchema.optional(), - notificationPermissionsId: SortOrderSchema.optional() -}).strict(); -export const UserCountOrderByAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_UserCountOrderByAggregateInput_schema) as unknown as z.ZodType; -export const UserCountOrderByAggregateInputObjectZodSchema = z.lazy(__makeSchema_UserCountOrderByAggregateInput_schema); - - -// File: UserMaxOrderByAggregateInput.schema.ts -const __makeSchema_UserMaxOrderByAggregateInput_schema = () => z.object({ - id: SortOrderSchema.optional(), - username: SortOrderSchema.optional(), - name: SortOrderSchema.optional(), - email: SortOrderSchema.optional(), - imageUrl: SortOrderSchema.optional(), - biography: SortOrderSchema.optional(), - phone: SortOrderSchema.optional(), - gender: SortOrderSchema.optional(), - dietaryRestrictions: SortOrderSchema.optional(), - ntnuUsername: SortOrderSchema.optional(), - workspaceUserId: SortOrderSchema.optional(), - createdAt: SortOrderSchema.optional(), - updatedAt: SortOrderSchema.optional(), - privacyPermissionsId: SortOrderSchema.optional(), - notificationPermissionsId: SortOrderSchema.optional() -}).strict(); -export const UserMaxOrderByAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_UserMaxOrderByAggregateInput_schema) as unknown as z.ZodType; -export const UserMaxOrderByAggregateInputObjectZodSchema = z.lazy(__makeSchema_UserMaxOrderByAggregateInput_schema); - - -// File: UserMinOrderByAggregateInput.schema.ts -const __makeSchema_UserMinOrderByAggregateInput_schema = () => z.object({ - id: SortOrderSchema.optional(), - username: SortOrderSchema.optional(), - name: SortOrderSchema.optional(), - email: SortOrderSchema.optional(), - imageUrl: SortOrderSchema.optional(), - biography: SortOrderSchema.optional(), - phone: SortOrderSchema.optional(), - gender: SortOrderSchema.optional(), - dietaryRestrictions: SortOrderSchema.optional(), - ntnuUsername: SortOrderSchema.optional(), - workspaceUserId: SortOrderSchema.optional(), - createdAt: SortOrderSchema.optional(), - updatedAt: SortOrderSchema.optional(), - privacyPermissionsId: SortOrderSchema.optional(), - notificationPermissionsId: SortOrderSchema.optional() -}).strict(); -export const UserMinOrderByAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_UserMinOrderByAggregateInput_schema) as unknown as z.ZodType; -export const UserMinOrderByAggregateInputObjectZodSchema = z.lazy(__makeSchema_UserMinOrderByAggregateInput_schema); - - -// File: StringNullableWithAggregatesFilter.schema.ts -const __makeSchema_StringNullableWithAggregatesFilter_schema = () => z.object({ - equals: z.string().optional().nullable(), - in: z.string().array().optional().nullable(), - notIn: z.string().array().optional().nullable(), - lt: z.string().optional(), - lte: z.string().optional(), - gt: z.string().optional(), - gte: z.string().optional(), - contains: z.string().optional(), - startsWith: z.string().optional(), - endsWith: z.string().optional(), - mode: QueryModeSchema.optional(), - not: z.union([z.string(), NestedStringNullableWithAggregatesFilterObjectSchema]).optional().nullable(), - get _count(){ return NestedIntNullableFilterObjectSchema.optional(); }, - get _min(){ return NestedStringNullableFilterObjectSchema.optional(); }, - get _max(){ return NestedStringNullableFilterObjectSchema.optional(); } -}).strict(); -export const StringNullableWithAggregatesFilterObjectSchema: z.ZodType = z.lazy(__makeSchema_StringNullableWithAggregatesFilter_schema) as unknown as z.ZodType; -export const StringNullableWithAggregatesFilterObjectZodSchema = z.lazy(__makeSchema_StringNullableWithAggregatesFilter_schema); - - -// File: EnumGenderWithAggregatesFilter.schema.ts -const __makeSchema_EnumGenderWithAggregatesFilter_schema = () => z.object({ - equals: GenderSchema.optional(), - in: GenderSchema.array().optional(), - notIn: GenderSchema.array().optional(), - not: z.union([GenderSchema, NestedEnumGenderWithAggregatesFilterObjectSchema]).optional(), - get _count(){ return NestedIntFilterObjectSchema.optional(); }, - get _min(){ return NestedEnumGenderFilterObjectSchema.optional(); }, - get _max(){ return NestedEnumGenderFilterObjectSchema.optional(); } -}).strict(); -export const EnumGenderWithAggregatesFilterObjectSchema: z.ZodType = z.lazy(__makeSchema_EnumGenderWithAggregatesFilter_schema) as unknown as z.ZodType; -export const EnumGenderWithAggregatesFilterObjectZodSchema = z.lazy(__makeSchema_EnumGenderWithAggregatesFilter_schema); - - -// File: EventCompanyListRelationFilter.schema.ts -const __makeSchema_EventCompanyListRelationFilter_schema = () => z.object({ - get every(){ return EventCompanyWhereInputObjectSchema.optional(); }, - get some(){ return EventCompanyWhereInputObjectSchema.optional(); }, - get none(){ return EventCompanyWhereInputObjectSchema.optional(); } -}).strict(); -export const EventCompanyListRelationFilterObjectSchema: z.ZodType = z.lazy(__makeSchema_EventCompanyListRelationFilter_schema) as unknown as z.ZodType; -export const EventCompanyListRelationFilterObjectZodSchema = z.lazy(__makeSchema_EventCompanyListRelationFilter_schema); - - -// File: JobListingListRelationFilter.schema.ts -const __makeSchema_JobListingListRelationFilter_schema = () => z.object({ - get every(){ return JobListingWhereInputObjectSchema.optional(); }, - get some(){ return JobListingWhereInputObjectSchema.optional(); }, - get none(){ return JobListingWhereInputObjectSchema.optional(); } -}).strict(); -export const JobListingListRelationFilterObjectSchema: z.ZodType = z.lazy(__makeSchema_JobListingListRelationFilter_schema) as unknown as z.ZodType; -export const JobListingListRelationFilterObjectZodSchema = z.lazy(__makeSchema_JobListingListRelationFilter_schema); - - -// File: EventCompanyOrderByRelationAggregateInput.schema.ts -const __makeSchema_EventCompanyOrderByRelationAggregateInput_schema = () => z.object({ - _count: SortOrderSchema.optional() -}).strict(); -export const EventCompanyOrderByRelationAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_EventCompanyOrderByRelationAggregateInput_schema) as unknown as z.ZodType; -export const EventCompanyOrderByRelationAggregateInputObjectZodSchema = z.lazy(__makeSchema_EventCompanyOrderByRelationAggregateInput_schema); - - -// File: JobListingOrderByRelationAggregateInput.schema.ts -const __makeSchema_JobListingOrderByRelationAggregateInput_schema = () => z.object({ - _count: SortOrderSchema.optional() -}).strict(); -export const JobListingOrderByRelationAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_JobListingOrderByRelationAggregateInput_schema) as unknown as z.ZodType; -export const JobListingOrderByRelationAggregateInputObjectZodSchema = z.lazy(__makeSchema_JobListingOrderByRelationAggregateInput_schema); - - -// File: CompanyCountOrderByAggregateInput.schema.ts -const __makeSchema_CompanyCountOrderByAggregateInput_schema = () => z.object({ - id: SortOrderSchema.optional(), - name: SortOrderSchema.optional(), - slug: SortOrderSchema.optional(), - description: SortOrderSchema.optional(), - phone: SortOrderSchema.optional(), - email: SortOrderSchema.optional(), - website: SortOrderSchema.optional(), - location: SortOrderSchema.optional(), - imageUrl: SortOrderSchema.optional(), - createdAt: SortOrderSchema.optional(), - updatedAt: SortOrderSchema.optional() -}).strict(); -export const CompanyCountOrderByAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_CompanyCountOrderByAggregateInput_schema) as unknown as z.ZodType; -export const CompanyCountOrderByAggregateInputObjectZodSchema = z.lazy(__makeSchema_CompanyCountOrderByAggregateInput_schema); - - -// File: CompanyMaxOrderByAggregateInput.schema.ts -const __makeSchema_CompanyMaxOrderByAggregateInput_schema = () => z.object({ - id: SortOrderSchema.optional(), - name: SortOrderSchema.optional(), - slug: SortOrderSchema.optional(), - description: SortOrderSchema.optional(), - phone: SortOrderSchema.optional(), - email: SortOrderSchema.optional(), - website: SortOrderSchema.optional(), - location: SortOrderSchema.optional(), - imageUrl: SortOrderSchema.optional(), - createdAt: SortOrderSchema.optional(), - updatedAt: SortOrderSchema.optional() -}).strict(); -export const CompanyMaxOrderByAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_CompanyMaxOrderByAggregateInput_schema) as unknown as z.ZodType; -export const CompanyMaxOrderByAggregateInputObjectZodSchema = z.lazy(__makeSchema_CompanyMaxOrderByAggregateInput_schema); - - -// File: CompanyMinOrderByAggregateInput.schema.ts -const __makeSchema_CompanyMinOrderByAggregateInput_schema = () => z.object({ - id: SortOrderSchema.optional(), - name: SortOrderSchema.optional(), - slug: SortOrderSchema.optional(), - description: SortOrderSchema.optional(), - phone: SortOrderSchema.optional(), - email: SortOrderSchema.optional(), - website: SortOrderSchema.optional(), - location: SortOrderSchema.optional(), - imageUrl: SortOrderSchema.optional(), - createdAt: SortOrderSchema.optional(), - updatedAt: SortOrderSchema.optional() -}).strict(); -export const CompanyMinOrderByAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_CompanyMinOrderByAggregateInput_schema) as unknown as z.ZodType; -export const CompanyMinOrderByAggregateInputObjectZodSchema = z.lazy(__makeSchema_CompanyMinOrderByAggregateInput_schema); - - -// File: BoolFilter.schema.ts -const __makeSchema_BoolFilter_schema = () => z.object({ - equals: z.boolean().optional(), - not: z.union([z.boolean(), NestedBoolFilterObjectSchema]).optional() -}).strict(); -export const BoolFilterObjectSchema: z.ZodType = z.lazy(__makeSchema_BoolFilter_schema) as unknown as z.ZodType; -export const BoolFilterObjectZodSchema = z.lazy(__makeSchema_BoolFilter_schema); - - -// File: EnumGroupMemberVisibilityFilter.schema.ts -const __makeSchema_EnumGroupMemberVisibilityFilter_schema = () => z.object({ - equals: GroupMemberVisibilitySchema.optional(), - in: GroupMemberVisibilitySchema.array().optional(), - notIn: GroupMemberVisibilitySchema.array().optional(), - not: z.union([GroupMemberVisibilitySchema, NestedEnumGroupMemberVisibilityFilterObjectSchema]).optional() -}).strict(); -export const EnumGroupMemberVisibilityFilterObjectSchema: z.ZodType = z.lazy(__makeSchema_EnumGroupMemberVisibilityFilter_schema) as unknown as z.ZodType; -export const EnumGroupMemberVisibilityFilterObjectZodSchema = z.lazy(__makeSchema_EnumGroupMemberVisibilityFilter_schema); - - -// File: EnumGroupRecruitmentMethodFilter.schema.ts -const __makeSchema_EnumGroupRecruitmentMethodFilter_schema = () => z.object({ - equals: GroupRecruitmentMethodSchema.optional(), - in: GroupRecruitmentMethodSchema.array().optional(), - notIn: GroupRecruitmentMethodSchema.array().optional(), - not: z.union([GroupRecruitmentMethodSchema, NestedEnumGroupRecruitmentMethodFilterObjectSchema]).optional() -}).strict(); -export const EnumGroupRecruitmentMethodFilterObjectSchema: z.ZodType = z.lazy(__makeSchema_EnumGroupRecruitmentMethodFilter_schema) as unknown as z.ZodType; -export const EnumGroupRecruitmentMethodFilterObjectZodSchema = z.lazy(__makeSchema_EnumGroupRecruitmentMethodFilter_schema); - - -// File: EnumGroupTypeFilter.schema.ts -const __makeSchema_EnumGroupTypeFilter_schema = () => z.object({ - equals: GroupTypeSchema.optional(), - in: GroupTypeSchema.array().optional(), - notIn: GroupTypeSchema.array().optional(), - not: z.union([GroupTypeSchema, NestedEnumGroupTypeFilterObjectSchema]).optional() -}).strict(); -export const EnumGroupTypeFilterObjectSchema: z.ZodType = z.lazy(__makeSchema_EnumGroupTypeFilter_schema) as unknown as z.ZodType; -export const EnumGroupTypeFilterObjectZodSchema = z.lazy(__makeSchema_EnumGroupTypeFilter_schema); - - -// File: EventHostingGroupListRelationFilter.schema.ts -const __makeSchema_EventHostingGroupListRelationFilter_schema = () => z.object({ - get every(){ return EventHostingGroupWhereInputObjectSchema.optional(); }, - get some(){ return EventHostingGroupWhereInputObjectSchema.optional(); }, - get none(){ return EventHostingGroupWhereInputObjectSchema.optional(); } -}).strict(); -export const EventHostingGroupListRelationFilterObjectSchema: z.ZodType = z.lazy(__makeSchema_EventHostingGroupListRelationFilter_schema) as unknown as z.ZodType; -export const EventHostingGroupListRelationFilterObjectZodSchema = z.lazy(__makeSchema_EventHostingGroupListRelationFilter_schema); - - -// File: ContestListRelationFilter.schema.ts -const __makeSchema_ContestListRelationFilter_schema = () => z.object({ - get every(){ return ContestWhereInputObjectSchema.optional(); }, - get some(){ return ContestWhereInputObjectSchema.optional(); }, - get none(){ return ContestWhereInputObjectSchema.optional(); } -}).strict(); -export const ContestListRelationFilterObjectSchema: z.ZodType = z.lazy(__makeSchema_ContestListRelationFilter_schema) as unknown as z.ZodType; -export const ContestListRelationFilterObjectZodSchema = z.lazy(__makeSchema_ContestListRelationFilter_schema); - - -// File: MarkGroupListRelationFilter.schema.ts -const __makeSchema_MarkGroupListRelationFilter_schema = () => z.object({ - get every(){ return MarkGroupWhereInputObjectSchema.optional(); }, - get some(){ return MarkGroupWhereInputObjectSchema.optional(); }, - get none(){ return MarkGroupWhereInputObjectSchema.optional(); } -}).strict(); -export const MarkGroupListRelationFilterObjectSchema: z.ZodType = z.lazy(__makeSchema_MarkGroupListRelationFilter_schema) as unknown as z.ZodType; -export const MarkGroupListRelationFilterObjectZodSchema = z.lazy(__makeSchema_MarkGroupListRelationFilter_schema); - - -// File: GroupRoleListRelationFilter.schema.ts -const __makeSchema_GroupRoleListRelationFilter_schema = () => z.object({ - get every(){ return GroupRoleWhereInputObjectSchema.optional(); }, - get some(){ return GroupRoleWhereInputObjectSchema.optional(); }, - get none(){ return GroupRoleWhereInputObjectSchema.optional(); } -}).strict(); -export const GroupRoleListRelationFilterObjectSchema: z.ZodType = z.lazy(__makeSchema_GroupRoleListRelationFilter_schema) as unknown as z.ZodType; -export const GroupRoleListRelationFilterObjectZodSchema = z.lazy(__makeSchema_GroupRoleListRelationFilter_schema); - - -// File: EventHostingGroupOrderByRelationAggregateInput.schema.ts -const __makeSchema_EventHostingGroupOrderByRelationAggregateInput_schema = () => z.object({ - _count: SortOrderSchema.optional() -}).strict(); -export const EventHostingGroupOrderByRelationAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_EventHostingGroupOrderByRelationAggregateInput_schema) as unknown as z.ZodType; -export const EventHostingGroupOrderByRelationAggregateInputObjectZodSchema = z.lazy(__makeSchema_EventHostingGroupOrderByRelationAggregateInput_schema); - - -// File: ContestOrderByRelationAggregateInput.schema.ts -const __makeSchema_ContestOrderByRelationAggregateInput_schema = () => z.object({ - _count: SortOrderSchema.optional() -}).strict(); -export const ContestOrderByRelationAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_ContestOrderByRelationAggregateInput_schema) as unknown as z.ZodType; -export const ContestOrderByRelationAggregateInputObjectZodSchema = z.lazy(__makeSchema_ContestOrderByRelationAggregateInput_schema); - - -// File: MarkGroupOrderByRelationAggregateInput.schema.ts -const __makeSchema_MarkGroupOrderByRelationAggregateInput_schema = () => z.object({ - _count: SortOrderSchema.optional() -}).strict(); -export const MarkGroupOrderByRelationAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_MarkGroupOrderByRelationAggregateInput_schema) as unknown as z.ZodType; -export const MarkGroupOrderByRelationAggregateInputObjectZodSchema = z.lazy(__makeSchema_MarkGroupOrderByRelationAggregateInput_schema); - - -// File: GroupRoleOrderByRelationAggregateInput.schema.ts -const __makeSchema_GroupRoleOrderByRelationAggregateInput_schema = () => z.object({ - _count: SortOrderSchema.optional() -}).strict(); -export const GroupRoleOrderByRelationAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_GroupRoleOrderByRelationAggregateInput_schema) as unknown as z.ZodType; -export const GroupRoleOrderByRelationAggregateInputObjectZodSchema = z.lazy(__makeSchema_GroupRoleOrderByRelationAggregateInput_schema); - - -// File: GroupCountOrderByAggregateInput.schema.ts -const __makeSchema_GroupCountOrderByAggregateInput_schema = () => z.object({ - slug: SortOrderSchema.optional(), - abbreviation: SortOrderSchema.optional(), - name: SortOrderSchema.optional(), - shortDescription: SortOrderSchema.optional(), - description: SortOrderSchema.optional(), - imageUrl: SortOrderSchema.optional(), - email: SortOrderSchema.optional(), - contactUrl: SortOrderSchema.optional(), - slackUrl: SortOrderSchema.optional(), - showLeaderAsContact: SortOrderSchema.optional(), - createdAt: SortOrderSchema.optional(), - deactivatedAt: SortOrderSchema.optional(), - workspaceGroupId: SortOrderSchema.optional(), - memberVisibility: SortOrderSchema.optional(), - recruitmentMethod: SortOrderSchema.optional(), - type: SortOrderSchema.optional() -}).strict(); -export const GroupCountOrderByAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_GroupCountOrderByAggregateInput_schema) as unknown as z.ZodType; -export const GroupCountOrderByAggregateInputObjectZodSchema = z.lazy(__makeSchema_GroupCountOrderByAggregateInput_schema); - - -// File: GroupMaxOrderByAggregateInput.schema.ts -const __makeSchema_GroupMaxOrderByAggregateInput_schema = () => z.object({ - slug: SortOrderSchema.optional(), - abbreviation: SortOrderSchema.optional(), - name: SortOrderSchema.optional(), - shortDescription: SortOrderSchema.optional(), - description: SortOrderSchema.optional(), - imageUrl: SortOrderSchema.optional(), - email: SortOrderSchema.optional(), - contactUrl: SortOrderSchema.optional(), - slackUrl: SortOrderSchema.optional(), - showLeaderAsContact: SortOrderSchema.optional(), - createdAt: SortOrderSchema.optional(), - deactivatedAt: SortOrderSchema.optional(), - workspaceGroupId: SortOrderSchema.optional(), - memberVisibility: SortOrderSchema.optional(), - recruitmentMethod: SortOrderSchema.optional(), - type: SortOrderSchema.optional() -}).strict(); -export const GroupMaxOrderByAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_GroupMaxOrderByAggregateInput_schema) as unknown as z.ZodType; -export const GroupMaxOrderByAggregateInputObjectZodSchema = z.lazy(__makeSchema_GroupMaxOrderByAggregateInput_schema); - - -// File: GroupMinOrderByAggregateInput.schema.ts -const __makeSchema_GroupMinOrderByAggregateInput_schema = () => z.object({ - slug: SortOrderSchema.optional(), - abbreviation: SortOrderSchema.optional(), - name: SortOrderSchema.optional(), - shortDescription: SortOrderSchema.optional(), - description: SortOrderSchema.optional(), - imageUrl: SortOrderSchema.optional(), - email: SortOrderSchema.optional(), - contactUrl: SortOrderSchema.optional(), - slackUrl: SortOrderSchema.optional(), - showLeaderAsContact: SortOrderSchema.optional(), - createdAt: SortOrderSchema.optional(), - deactivatedAt: SortOrderSchema.optional(), - workspaceGroupId: SortOrderSchema.optional(), - memberVisibility: SortOrderSchema.optional(), - recruitmentMethod: SortOrderSchema.optional(), - type: SortOrderSchema.optional() -}).strict(); -export const GroupMinOrderByAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_GroupMinOrderByAggregateInput_schema) as unknown as z.ZodType; -export const GroupMinOrderByAggregateInputObjectZodSchema = z.lazy(__makeSchema_GroupMinOrderByAggregateInput_schema); - - -// File: BoolWithAggregatesFilter.schema.ts -const __makeSchema_BoolWithAggregatesFilter_schema = () => z.object({ - equals: z.boolean().optional(), - not: z.union([z.boolean(), NestedBoolWithAggregatesFilterObjectSchema]).optional(), - get _count(){ return NestedIntFilterObjectSchema.optional(); }, - get _min(){ return NestedBoolFilterObjectSchema.optional(); }, - get _max(){ return NestedBoolFilterObjectSchema.optional(); } -}).strict(); -export const BoolWithAggregatesFilterObjectSchema: z.ZodType = z.lazy(__makeSchema_BoolWithAggregatesFilter_schema) as unknown as z.ZodType; -export const BoolWithAggregatesFilterObjectZodSchema = z.lazy(__makeSchema_BoolWithAggregatesFilter_schema); - - -// File: EnumGroupMemberVisibilityWithAggregatesFilter.schema.ts -const __makeSchema_EnumGroupMemberVisibilityWithAggregatesFilter_schema = () => z.object({ - equals: GroupMemberVisibilitySchema.optional(), - in: GroupMemberVisibilitySchema.array().optional(), - notIn: GroupMemberVisibilitySchema.array().optional(), - not: z.union([GroupMemberVisibilitySchema, NestedEnumGroupMemberVisibilityWithAggregatesFilterObjectSchema]).optional(), - get _count(){ return NestedIntFilterObjectSchema.optional(); }, - get _min(){ return NestedEnumGroupMemberVisibilityFilterObjectSchema.optional(); }, - get _max(){ return NestedEnumGroupMemberVisibilityFilterObjectSchema.optional(); } -}).strict(); -export const EnumGroupMemberVisibilityWithAggregatesFilterObjectSchema: z.ZodType = z.lazy(__makeSchema_EnumGroupMemberVisibilityWithAggregatesFilter_schema) as unknown as z.ZodType; -export const EnumGroupMemberVisibilityWithAggregatesFilterObjectZodSchema = z.lazy(__makeSchema_EnumGroupMemberVisibilityWithAggregatesFilter_schema); - - -// File: EnumGroupRecruitmentMethodWithAggregatesFilter.schema.ts -const __makeSchema_EnumGroupRecruitmentMethodWithAggregatesFilter_schema = () => z.object({ - equals: GroupRecruitmentMethodSchema.optional(), - in: GroupRecruitmentMethodSchema.array().optional(), - notIn: GroupRecruitmentMethodSchema.array().optional(), - not: z.union([GroupRecruitmentMethodSchema, NestedEnumGroupRecruitmentMethodWithAggregatesFilterObjectSchema]).optional(), - get _count(){ return NestedIntFilterObjectSchema.optional(); }, - get _min(){ return NestedEnumGroupRecruitmentMethodFilterObjectSchema.optional(); }, - get _max(){ return NestedEnumGroupRecruitmentMethodFilterObjectSchema.optional(); } -}).strict(); -export const EnumGroupRecruitmentMethodWithAggregatesFilterObjectSchema: z.ZodType = z.lazy(__makeSchema_EnumGroupRecruitmentMethodWithAggregatesFilter_schema) as unknown as z.ZodType; -export const EnumGroupRecruitmentMethodWithAggregatesFilterObjectZodSchema = z.lazy(__makeSchema_EnumGroupRecruitmentMethodWithAggregatesFilter_schema); - - -// File: EnumGroupTypeWithAggregatesFilter.schema.ts -const __makeSchema_EnumGroupTypeWithAggregatesFilter_schema = () => z.object({ - equals: GroupTypeSchema.optional(), - in: GroupTypeSchema.array().optional(), - notIn: GroupTypeSchema.array().optional(), - not: z.union([GroupTypeSchema, NestedEnumGroupTypeWithAggregatesFilterObjectSchema]).optional(), - get _count(){ return NestedIntFilterObjectSchema.optional(); }, - get _min(){ return NestedEnumGroupTypeFilterObjectSchema.optional(); }, - get _max(){ return NestedEnumGroupTypeFilterObjectSchema.optional(); } -}).strict(); -export const EnumGroupTypeWithAggregatesFilterObjectSchema: z.ZodType = z.lazy(__makeSchema_EnumGroupTypeWithAggregatesFilter_schema) as unknown as z.ZodType; -export const EnumGroupTypeWithAggregatesFilterObjectZodSchema = z.lazy(__makeSchema_EnumGroupTypeWithAggregatesFilter_schema); - - -// File: GroupScalarRelationFilter.schema.ts -const __makeSchema_GroupScalarRelationFilter_schema = () => z.object({ - get is(){ return GroupWhereInputObjectSchema.optional(); }, - get isNot(){ return GroupWhereInputObjectSchema.optional(); } -}).strict(); -export const GroupScalarRelationFilterObjectSchema: z.ZodType = z.lazy(__makeSchema_GroupScalarRelationFilter_schema) as unknown as z.ZodType; -export const GroupScalarRelationFilterObjectZodSchema = z.lazy(__makeSchema_GroupScalarRelationFilter_schema); - - -// File: GroupMembershipRoleListRelationFilter.schema.ts -const __makeSchema_GroupMembershipRoleListRelationFilter_schema = () => z.object({ - get every(){ return GroupMembershipRoleWhereInputObjectSchema.optional(); }, - get some(){ return GroupMembershipRoleWhereInputObjectSchema.optional(); }, - get none(){ return GroupMembershipRoleWhereInputObjectSchema.optional(); } -}).strict(); -export const GroupMembershipRoleListRelationFilterObjectSchema: z.ZodType = z.lazy(__makeSchema_GroupMembershipRoleListRelationFilter_schema) as unknown as z.ZodType; -export const GroupMembershipRoleListRelationFilterObjectZodSchema = z.lazy(__makeSchema_GroupMembershipRoleListRelationFilter_schema); - - -// File: GroupMembershipRoleOrderByRelationAggregateInput.schema.ts -const __makeSchema_GroupMembershipRoleOrderByRelationAggregateInput_schema = () => z.object({ - _count: SortOrderSchema.optional() -}).strict(); -export const GroupMembershipRoleOrderByRelationAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_GroupMembershipRoleOrderByRelationAggregateInput_schema) as unknown as z.ZodType; -export const GroupMembershipRoleOrderByRelationAggregateInputObjectZodSchema = z.lazy(__makeSchema_GroupMembershipRoleOrderByRelationAggregateInput_schema); - - -// File: GroupMembershipCountOrderByAggregateInput.schema.ts -const __makeSchema_GroupMembershipCountOrderByAggregateInput_schema = () => z.object({ - id: SortOrderSchema.optional(), - start: SortOrderSchema.optional(), - end: SortOrderSchema.optional(), - createdAt: SortOrderSchema.optional(), - updatedAt: SortOrderSchema.optional(), - groupId: SortOrderSchema.optional(), - userId: SortOrderSchema.optional() -}).strict(); -export const GroupMembershipCountOrderByAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_GroupMembershipCountOrderByAggregateInput_schema) as unknown as z.ZodType; -export const GroupMembershipCountOrderByAggregateInputObjectZodSchema = z.lazy(__makeSchema_GroupMembershipCountOrderByAggregateInput_schema); - - -// File: GroupMembershipMaxOrderByAggregateInput.schema.ts -const __makeSchema_GroupMembershipMaxOrderByAggregateInput_schema = () => z.object({ - id: SortOrderSchema.optional(), - start: SortOrderSchema.optional(), - end: SortOrderSchema.optional(), - createdAt: SortOrderSchema.optional(), - updatedAt: SortOrderSchema.optional(), - groupId: SortOrderSchema.optional(), - userId: SortOrderSchema.optional() -}).strict(); -export const GroupMembershipMaxOrderByAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_GroupMembershipMaxOrderByAggregateInput_schema) as unknown as z.ZodType; -export const GroupMembershipMaxOrderByAggregateInputObjectZodSchema = z.lazy(__makeSchema_GroupMembershipMaxOrderByAggregateInput_schema); - - -// File: GroupMembershipMinOrderByAggregateInput.schema.ts -const __makeSchema_GroupMembershipMinOrderByAggregateInput_schema = () => z.object({ - id: SortOrderSchema.optional(), - start: SortOrderSchema.optional(), - end: SortOrderSchema.optional(), - createdAt: SortOrderSchema.optional(), - updatedAt: SortOrderSchema.optional(), - groupId: SortOrderSchema.optional(), - userId: SortOrderSchema.optional() -}).strict(); -export const GroupMembershipMinOrderByAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_GroupMembershipMinOrderByAggregateInput_schema) as unknown as z.ZodType; -export const GroupMembershipMinOrderByAggregateInputObjectZodSchema = z.lazy(__makeSchema_GroupMembershipMinOrderByAggregateInput_schema); - - -// File: GroupMembershipScalarRelationFilter.schema.ts -const __makeSchema_GroupMembershipScalarRelationFilter_schema = () => z.object({ - get is(){ return GroupMembershipWhereInputObjectSchema.optional(); }, - get isNot(){ return GroupMembershipWhereInputObjectSchema.optional(); } -}).strict(); -export const GroupMembershipScalarRelationFilterObjectSchema: z.ZodType = z.lazy(__makeSchema_GroupMembershipScalarRelationFilter_schema) as unknown as z.ZodType; -export const GroupMembershipScalarRelationFilterObjectZodSchema = z.lazy(__makeSchema_GroupMembershipScalarRelationFilter_schema); - - -// File: GroupRoleScalarRelationFilter.schema.ts -const __makeSchema_GroupRoleScalarRelationFilter_schema = () => z.object({ - get is(){ return GroupRoleWhereInputObjectSchema.optional(); }, - get isNot(){ return GroupRoleWhereInputObjectSchema.optional(); } -}).strict(); -export const GroupRoleScalarRelationFilterObjectSchema: z.ZodType = z.lazy(__makeSchema_GroupRoleScalarRelationFilter_schema) as unknown as z.ZodType; -export const GroupRoleScalarRelationFilterObjectZodSchema = z.lazy(__makeSchema_GroupRoleScalarRelationFilter_schema); - - -// File: GroupMembershipRoleMembershipIdRoleIdCompoundUniqueInput.schema.ts -const __makeSchema_GroupMembershipRoleMembershipIdRoleIdCompoundUniqueInput_schema = () => z.object({ - membershipId: z.string(), - roleId: z.string() -}).strict(); -export const GroupMembershipRoleMembershipIdRoleIdCompoundUniqueInputObjectSchema: z.ZodType = z.lazy(__makeSchema_GroupMembershipRoleMembershipIdRoleIdCompoundUniqueInput_schema) as unknown as z.ZodType; -export const GroupMembershipRoleMembershipIdRoleIdCompoundUniqueInputObjectZodSchema = z.lazy(__makeSchema_GroupMembershipRoleMembershipIdRoleIdCompoundUniqueInput_schema); - - -// File: GroupMembershipRoleCountOrderByAggregateInput.schema.ts -const __makeSchema_GroupMembershipRoleCountOrderByAggregateInput_schema = () => z.object({ - membershipId: SortOrderSchema.optional(), - roleId: SortOrderSchema.optional() -}).strict(); -export const GroupMembershipRoleCountOrderByAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_GroupMembershipRoleCountOrderByAggregateInput_schema) as unknown as z.ZodType; -export const GroupMembershipRoleCountOrderByAggregateInputObjectZodSchema = z.lazy(__makeSchema_GroupMembershipRoleCountOrderByAggregateInput_schema); - - -// File: GroupMembershipRoleMaxOrderByAggregateInput.schema.ts -const __makeSchema_GroupMembershipRoleMaxOrderByAggregateInput_schema = () => z.object({ - membershipId: SortOrderSchema.optional(), - roleId: SortOrderSchema.optional() -}).strict(); -export const GroupMembershipRoleMaxOrderByAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_GroupMembershipRoleMaxOrderByAggregateInput_schema) as unknown as z.ZodType; -export const GroupMembershipRoleMaxOrderByAggregateInputObjectZodSchema = z.lazy(__makeSchema_GroupMembershipRoleMaxOrderByAggregateInput_schema); - - -// File: GroupMembershipRoleMinOrderByAggregateInput.schema.ts -const __makeSchema_GroupMembershipRoleMinOrderByAggregateInput_schema = () => z.object({ - membershipId: SortOrderSchema.optional(), - roleId: SortOrderSchema.optional() -}).strict(); -export const GroupMembershipRoleMinOrderByAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_GroupMembershipRoleMinOrderByAggregateInput_schema) as unknown as z.ZodType; -export const GroupMembershipRoleMinOrderByAggregateInputObjectZodSchema = z.lazy(__makeSchema_GroupMembershipRoleMinOrderByAggregateInput_schema); - - -// File: EnumGroupRoleTypeFilter.schema.ts -const __makeSchema_EnumGroupRoleTypeFilter_schema = () => z.object({ - equals: GroupRoleTypeSchema.optional(), - in: GroupRoleTypeSchema.array().optional(), - notIn: GroupRoleTypeSchema.array().optional(), - not: z.union([GroupRoleTypeSchema, NestedEnumGroupRoleTypeFilterObjectSchema]).optional() -}).strict(); -export const EnumGroupRoleTypeFilterObjectSchema: z.ZodType = z.lazy(__makeSchema_EnumGroupRoleTypeFilter_schema) as unknown as z.ZodType; -export const EnumGroupRoleTypeFilterObjectZodSchema = z.lazy(__makeSchema_EnumGroupRoleTypeFilter_schema); - - -// File: GroupRoleGroupIdNameCompoundUniqueInput.schema.ts -const __makeSchema_GroupRoleGroupIdNameCompoundUniqueInput_schema = () => z.object({ - groupId: z.string(), - name: z.string() -}).strict(); -export const GroupRoleGroupIdNameCompoundUniqueInputObjectSchema: z.ZodType = z.lazy(__makeSchema_GroupRoleGroupIdNameCompoundUniqueInput_schema) as unknown as z.ZodType; -export const GroupRoleGroupIdNameCompoundUniqueInputObjectZodSchema = z.lazy(__makeSchema_GroupRoleGroupIdNameCompoundUniqueInput_schema); - - -// File: GroupRoleCountOrderByAggregateInput.schema.ts -const __makeSchema_GroupRoleCountOrderByAggregateInput_schema = () => z.object({ - id: SortOrderSchema.optional(), - name: SortOrderSchema.optional(), - type: SortOrderSchema.optional(), - groupId: SortOrderSchema.optional() -}).strict(); -export const GroupRoleCountOrderByAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_GroupRoleCountOrderByAggregateInput_schema) as unknown as z.ZodType; -export const GroupRoleCountOrderByAggregateInputObjectZodSchema = z.lazy(__makeSchema_GroupRoleCountOrderByAggregateInput_schema); - - -// File: GroupRoleMaxOrderByAggregateInput.schema.ts -const __makeSchema_GroupRoleMaxOrderByAggregateInput_schema = () => z.object({ - id: SortOrderSchema.optional(), - name: SortOrderSchema.optional(), - type: SortOrderSchema.optional(), - groupId: SortOrderSchema.optional() -}).strict(); -export const GroupRoleMaxOrderByAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_GroupRoleMaxOrderByAggregateInput_schema) as unknown as z.ZodType; -export const GroupRoleMaxOrderByAggregateInputObjectZodSchema = z.lazy(__makeSchema_GroupRoleMaxOrderByAggregateInput_schema); - - -// File: GroupRoleMinOrderByAggregateInput.schema.ts -const __makeSchema_GroupRoleMinOrderByAggregateInput_schema = () => z.object({ - id: SortOrderSchema.optional(), - name: SortOrderSchema.optional(), - type: SortOrderSchema.optional(), - groupId: SortOrderSchema.optional() -}).strict(); -export const GroupRoleMinOrderByAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_GroupRoleMinOrderByAggregateInput_schema) as unknown as z.ZodType; -export const GroupRoleMinOrderByAggregateInputObjectZodSchema = z.lazy(__makeSchema_GroupRoleMinOrderByAggregateInput_schema); - - -// File: EnumGroupRoleTypeWithAggregatesFilter.schema.ts -const __makeSchema_EnumGroupRoleTypeWithAggregatesFilter_schema = () => z.object({ - equals: GroupRoleTypeSchema.optional(), - in: GroupRoleTypeSchema.array().optional(), - notIn: GroupRoleTypeSchema.array().optional(), - not: z.union([GroupRoleTypeSchema, NestedEnumGroupRoleTypeWithAggregatesFilterObjectSchema]).optional(), - get _count(){ return NestedIntFilterObjectSchema.optional(); }, - get _min(){ return NestedEnumGroupRoleTypeFilterObjectSchema.optional(); }, - get _max(){ return NestedEnumGroupRoleTypeFilterObjectSchema.optional(); } -}).strict(); -export const EnumGroupRoleTypeWithAggregatesFilterObjectSchema: z.ZodType = z.lazy(__makeSchema_EnumGroupRoleTypeWithAggregatesFilter_schema) as unknown as z.ZodType; -export const EnumGroupRoleTypeWithAggregatesFilterObjectZodSchema = z.lazy(__makeSchema_EnumGroupRoleTypeWithAggregatesFilter_schema); - - -// File: JsonFilter.schema.ts -const __makeSchema_JsonFilter_schema = () => z.object({ - equals: jsonSchema.optional(), - path: z.string().array().optional(), - mode: QueryModeSchema.optional(), - string_contains: z.string().optional(), - string_starts_with: z.string().optional(), - string_ends_with: z.string().optional(), - array_starts_with: jsonSchema.optional().nullable(), - array_ends_with: jsonSchema.optional().nullable(), - array_contains: jsonSchema.optional().nullable(), - lt: jsonSchema.optional(), - lte: jsonSchema.optional(), - gt: jsonSchema.optional(), - gte: jsonSchema.optional(), - not: jsonSchema.optional() -}).strict(); -export const JsonFilterObjectSchema: z.ZodType = z.lazy(__makeSchema_JsonFilter_schema) as unknown as z.ZodType; -export const JsonFilterObjectZodSchema = z.lazy(__makeSchema_JsonFilter_schema); - - -// File: AttendancePoolListRelationFilter.schema.ts -const __makeSchema_AttendancePoolListRelationFilter_schema = () => z.object({ - get every(){ return AttendancePoolWhereInputObjectSchema.optional(); }, - get some(){ return AttendancePoolWhereInputObjectSchema.optional(); }, - get none(){ return AttendancePoolWhereInputObjectSchema.optional(); } -}).strict(); -export const AttendancePoolListRelationFilterObjectSchema: z.ZodType = z.lazy(__makeSchema_AttendancePoolListRelationFilter_schema) as unknown as z.ZodType; -export const AttendancePoolListRelationFilterObjectZodSchema = z.lazy(__makeSchema_AttendancePoolListRelationFilter_schema); - - -// File: EventListRelationFilter.schema.ts -const __makeSchema_EventListRelationFilter_schema = () => z.object({ - get every(){ return EventWhereInputObjectSchema.optional(); }, - get some(){ return EventWhereInputObjectSchema.optional(); }, - get none(){ return EventWhereInputObjectSchema.optional(); } -}).strict(); -export const EventListRelationFilterObjectSchema: z.ZodType = z.lazy(__makeSchema_EventListRelationFilter_schema) as unknown as z.ZodType; -export const EventListRelationFilterObjectZodSchema = z.lazy(__makeSchema_EventListRelationFilter_schema); - - -// File: AttendancePoolOrderByRelationAggregateInput.schema.ts -const __makeSchema_AttendancePoolOrderByRelationAggregateInput_schema = () => z.object({ - _count: SortOrderSchema.optional() -}).strict(); -export const AttendancePoolOrderByRelationAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_AttendancePoolOrderByRelationAggregateInput_schema) as unknown as z.ZodType; -export const AttendancePoolOrderByRelationAggregateInputObjectZodSchema = z.lazy(__makeSchema_AttendancePoolOrderByRelationAggregateInput_schema); - - -// File: EventOrderByRelationAggregateInput.schema.ts -const __makeSchema_EventOrderByRelationAggregateInput_schema = () => z.object({ - _count: SortOrderSchema.optional() -}).strict(); -export const EventOrderByRelationAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_EventOrderByRelationAggregateInput_schema) as unknown as z.ZodType; -export const EventOrderByRelationAggregateInputObjectZodSchema = z.lazy(__makeSchema_EventOrderByRelationAggregateInput_schema); - - -// File: AttendanceCountOrderByAggregateInput.schema.ts -const __makeSchema_AttendanceCountOrderByAggregateInput_schema = () => z.object({ - id: SortOrderSchema.optional(), - registerStart: SortOrderSchema.optional(), - registerEnd: SortOrderSchema.optional(), - deregisterDeadline: SortOrderSchema.optional(), - selections: SortOrderSchema.optional(), - createdAt: SortOrderSchema.optional(), - updatedAt: SortOrderSchema.optional(), - attendancePrice: SortOrderSchema.optional() -}).strict(); -export const AttendanceCountOrderByAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_AttendanceCountOrderByAggregateInput_schema) as unknown as z.ZodType; -export const AttendanceCountOrderByAggregateInputObjectZodSchema = z.lazy(__makeSchema_AttendanceCountOrderByAggregateInput_schema); - - -// File: AttendanceAvgOrderByAggregateInput.schema.ts -const __makeSchema_AttendanceAvgOrderByAggregateInput_schema = () => z.object({ - attendancePrice: SortOrderSchema.optional() -}).strict(); -export const AttendanceAvgOrderByAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_AttendanceAvgOrderByAggregateInput_schema) as unknown as z.ZodType; -export const AttendanceAvgOrderByAggregateInputObjectZodSchema = z.lazy(__makeSchema_AttendanceAvgOrderByAggregateInput_schema); - - -// File: AttendanceMaxOrderByAggregateInput.schema.ts -const __makeSchema_AttendanceMaxOrderByAggregateInput_schema = () => z.object({ - id: SortOrderSchema.optional(), - registerStart: SortOrderSchema.optional(), - registerEnd: SortOrderSchema.optional(), - deregisterDeadline: SortOrderSchema.optional(), - createdAt: SortOrderSchema.optional(), - updatedAt: SortOrderSchema.optional(), - attendancePrice: SortOrderSchema.optional() -}).strict(); -export const AttendanceMaxOrderByAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_AttendanceMaxOrderByAggregateInput_schema) as unknown as z.ZodType; -export const AttendanceMaxOrderByAggregateInputObjectZodSchema = z.lazy(__makeSchema_AttendanceMaxOrderByAggregateInput_schema); - - -// File: AttendanceMinOrderByAggregateInput.schema.ts -const __makeSchema_AttendanceMinOrderByAggregateInput_schema = () => z.object({ - id: SortOrderSchema.optional(), - registerStart: SortOrderSchema.optional(), - registerEnd: SortOrderSchema.optional(), - deregisterDeadline: SortOrderSchema.optional(), - createdAt: SortOrderSchema.optional(), - updatedAt: SortOrderSchema.optional(), - attendancePrice: SortOrderSchema.optional() -}).strict(); -export const AttendanceMinOrderByAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_AttendanceMinOrderByAggregateInput_schema) as unknown as z.ZodType; -export const AttendanceMinOrderByAggregateInputObjectZodSchema = z.lazy(__makeSchema_AttendanceMinOrderByAggregateInput_schema); - - -// File: AttendanceSumOrderByAggregateInput.schema.ts -const __makeSchema_AttendanceSumOrderByAggregateInput_schema = () => z.object({ - attendancePrice: SortOrderSchema.optional() -}).strict(); -export const AttendanceSumOrderByAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_AttendanceSumOrderByAggregateInput_schema) as unknown as z.ZodType; -export const AttendanceSumOrderByAggregateInputObjectZodSchema = z.lazy(__makeSchema_AttendanceSumOrderByAggregateInput_schema); - - -// File: JsonWithAggregatesFilter.schema.ts -const __makeSchema_JsonWithAggregatesFilter_schema = () => z.object({ - equals: jsonSchema.optional(), - path: z.string().array().optional(), - mode: QueryModeSchema.optional(), - string_contains: z.string().optional(), - string_starts_with: z.string().optional(), - string_ends_with: z.string().optional(), - array_starts_with: jsonSchema.optional().nullable(), - array_ends_with: jsonSchema.optional().nullable(), - array_contains: jsonSchema.optional().nullable(), - lt: jsonSchema.optional(), - lte: jsonSchema.optional(), - gt: jsonSchema.optional(), - gte: jsonSchema.optional(), - not: jsonSchema.optional(), - get _count(){ return NestedIntFilterObjectSchema.optional(); }, - get _min(){ return NestedJsonFilterObjectSchema.optional(); }, - get _max(){ return NestedJsonFilterObjectSchema.optional(); } -}).strict(); -export const JsonWithAggregatesFilterObjectSchema: z.ZodType = z.lazy(__makeSchema_JsonWithAggregatesFilter_schema) as unknown as z.ZodType; -export const JsonWithAggregatesFilterObjectZodSchema = z.lazy(__makeSchema_JsonWithAggregatesFilter_schema); - - -// File: IntFilter.schema.ts -const __makeSchema_IntFilter_schema = () => z.object({ - equals: z.number().int().optional(), - in: z.number().int().array().optional(), - notIn: z.number().int().array().optional(), - lt: z.number().int().optional(), - lte: z.number().int().optional(), - gt: z.number().int().optional(), - gte: z.number().int().optional(), - not: z.union([z.number().int(), NestedIntFilterObjectSchema]).optional() -}).strict(); -export const IntFilterObjectSchema: z.ZodType = z.lazy(__makeSchema_IntFilter_schema) as unknown as z.ZodType; -export const IntFilterObjectZodSchema = z.lazy(__makeSchema_IntFilter_schema); - - -// File: AttendanceScalarRelationFilter.schema.ts -const __makeSchema_AttendanceScalarRelationFilter_schema = () => z.object({ - get is(){ return AttendanceWhereInputObjectSchema.optional(); }, - get isNot(){ return AttendanceWhereInputObjectSchema.optional(); } -}).strict(); -export const AttendanceScalarRelationFilterObjectSchema: z.ZodType = z.lazy(__makeSchema_AttendanceScalarRelationFilter_schema) as unknown as z.ZodType; -export const AttendanceScalarRelationFilterObjectZodSchema = z.lazy(__makeSchema_AttendanceScalarRelationFilter_schema); - - -// File: TaskNullableScalarRelationFilter.schema.ts -const __makeSchema_TaskNullableScalarRelationFilter_schema = () => z.object({ - is: TaskWhereInputObjectSchema.optional().nullable(), - isNot: TaskWhereInputObjectSchema.optional().nullable() -}).strict(); -export const TaskNullableScalarRelationFilterObjectSchema: z.ZodType = z.lazy(__makeSchema_TaskNullableScalarRelationFilter_schema) as unknown as z.ZodType; -export const TaskNullableScalarRelationFilterObjectZodSchema = z.lazy(__makeSchema_TaskNullableScalarRelationFilter_schema); - - -// File: AttendancePoolCountOrderByAggregateInput.schema.ts -const __makeSchema_AttendancePoolCountOrderByAggregateInput_schema = () => z.object({ - id: SortOrderSchema.optional(), - title: SortOrderSchema.optional(), - mergeDelayHours: SortOrderSchema.optional(), - yearCriteria: SortOrderSchema.optional(), - capacity: SortOrderSchema.optional(), - createdAt: SortOrderSchema.optional(), - updatedAt: SortOrderSchema.optional(), - attendanceId: SortOrderSchema.optional(), - taskId: SortOrderSchema.optional() -}).strict(); -export const AttendancePoolCountOrderByAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_AttendancePoolCountOrderByAggregateInput_schema) as unknown as z.ZodType; -export const AttendancePoolCountOrderByAggregateInputObjectZodSchema = z.lazy(__makeSchema_AttendancePoolCountOrderByAggregateInput_schema); - - -// File: AttendancePoolAvgOrderByAggregateInput.schema.ts -const __makeSchema_AttendancePoolAvgOrderByAggregateInput_schema = () => z.object({ - mergeDelayHours: SortOrderSchema.optional(), - capacity: SortOrderSchema.optional() -}).strict(); -export const AttendancePoolAvgOrderByAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_AttendancePoolAvgOrderByAggregateInput_schema) as unknown as z.ZodType; -export const AttendancePoolAvgOrderByAggregateInputObjectZodSchema = z.lazy(__makeSchema_AttendancePoolAvgOrderByAggregateInput_schema); - - -// File: AttendancePoolMaxOrderByAggregateInput.schema.ts -const __makeSchema_AttendancePoolMaxOrderByAggregateInput_schema = () => z.object({ - id: SortOrderSchema.optional(), - title: SortOrderSchema.optional(), - mergeDelayHours: SortOrderSchema.optional(), - capacity: SortOrderSchema.optional(), - createdAt: SortOrderSchema.optional(), - updatedAt: SortOrderSchema.optional(), - attendanceId: SortOrderSchema.optional(), - taskId: SortOrderSchema.optional() -}).strict(); -export const AttendancePoolMaxOrderByAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_AttendancePoolMaxOrderByAggregateInput_schema) as unknown as z.ZodType; -export const AttendancePoolMaxOrderByAggregateInputObjectZodSchema = z.lazy(__makeSchema_AttendancePoolMaxOrderByAggregateInput_schema); - - -// File: AttendancePoolMinOrderByAggregateInput.schema.ts -const __makeSchema_AttendancePoolMinOrderByAggregateInput_schema = () => z.object({ - id: SortOrderSchema.optional(), - title: SortOrderSchema.optional(), - mergeDelayHours: SortOrderSchema.optional(), - capacity: SortOrderSchema.optional(), - createdAt: SortOrderSchema.optional(), - updatedAt: SortOrderSchema.optional(), - attendanceId: SortOrderSchema.optional(), - taskId: SortOrderSchema.optional() -}).strict(); -export const AttendancePoolMinOrderByAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_AttendancePoolMinOrderByAggregateInput_schema) as unknown as z.ZodType; -export const AttendancePoolMinOrderByAggregateInputObjectZodSchema = z.lazy(__makeSchema_AttendancePoolMinOrderByAggregateInput_schema); - - -// File: AttendancePoolSumOrderByAggregateInput.schema.ts -const __makeSchema_AttendancePoolSumOrderByAggregateInput_schema = () => z.object({ - mergeDelayHours: SortOrderSchema.optional(), - capacity: SortOrderSchema.optional() -}).strict(); -export const AttendancePoolSumOrderByAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_AttendancePoolSumOrderByAggregateInput_schema) as unknown as z.ZodType; -export const AttendancePoolSumOrderByAggregateInputObjectZodSchema = z.lazy(__makeSchema_AttendancePoolSumOrderByAggregateInput_schema); - - -// File: IntWithAggregatesFilter.schema.ts -const __makeSchema_IntWithAggregatesFilter_schema = () => z.object({ - equals: z.number().int().optional(), - in: z.number().int().array().optional(), - notIn: z.number().int().array().optional(), - lt: z.number().int().optional(), - lte: z.number().int().optional(), - gt: z.number().int().optional(), - gte: z.number().int().optional(), - not: z.union([z.number().int(), NestedIntWithAggregatesFilterObjectSchema]).optional(), - get _count(){ return NestedIntFilterObjectSchema.optional(); }, - get _avg(){ return NestedFloatFilterObjectSchema.optional(); }, - get _sum(){ return NestedIntFilterObjectSchema.optional(); }, - get _min(){ return NestedIntFilterObjectSchema.optional(); }, - get _max(){ return NestedIntFilterObjectSchema.optional(); } -}).strict(); -export const IntWithAggregatesFilterObjectSchema: z.ZodType = z.lazy(__makeSchema_IntWithAggregatesFilter_schema) as unknown as z.ZodType; -export const IntWithAggregatesFilterObjectZodSchema = z.lazy(__makeSchema_IntWithAggregatesFilter_schema); - - -// File: FeedbackFormAnswerNullableScalarRelationFilter.schema.ts -const __makeSchema_FeedbackFormAnswerNullableScalarRelationFilter_schema = () => z.object({ - is: FeedbackFormAnswerWhereInputObjectSchema.optional().nullable(), - isNot: FeedbackFormAnswerWhereInputObjectSchema.optional().nullable() -}).strict(); -export const FeedbackFormAnswerNullableScalarRelationFilterObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackFormAnswerNullableScalarRelationFilter_schema) as unknown as z.ZodType; -export const FeedbackFormAnswerNullableScalarRelationFilterObjectZodSchema = z.lazy(__makeSchema_FeedbackFormAnswerNullableScalarRelationFilter_schema); - - -// File: AttendancePoolScalarRelationFilter.schema.ts -const __makeSchema_AttendancePoolScalarRelationFilter_schema = () => z.object({ - get is(){ return AttendancePoolWhereInputObjectSchema.optional(); }, - get isNot(){ return AttendancePoolWhereInputObjectSchema.optional(); } -}).strict(); -export const AttendancePoolScalarRelationFilterObjectSchema: z.ZodType = z.lazy(__makeSchema_AttendancePoolScalarRelationFilter_schema) as unknown as z.ZodType; -export const AttendancePoolScalarRelationFilterObjectZodSchema = z.lazy(__makeSchema_AttendancePoolScalarRelationFilter_schema); - - -// File: UserNullableScalarRelationFilter.schema.ts -const __makeSchema_UserNullableScalarRelationFilter_schema = () => z.object({ - is: UserWhereInputObjectSchema.optional().nullable(), - isNot: UserWhereInputObjectSchema.optional().nullable() -}).strict(); -export const UserNullableScalarRelationFilterObjectSchema: z.ZodType = z.lazy(__makeSchema_UserNullableScalarRelationFilter_schema) as unknown as z.ZodType; -export const UserNullableScalarRelationFilterObjectZodSchema = z.lazy(__makeSchema_UserNullableScalarRelationFilter_schema); - - -// File: AttendeeAttendee_uniqueCompoundUniqueInput.schema.ts -const __makeSchema_AttendeeAttendee_uniqueCompoundUniqueInput_schema = () => z.object({ - attendanceId: z.string(), - userId: z.string() -}).strict(); -export const AttendeeAttendee_uniqueCompoundUniqueInputObjectSchema: z.ZodType = z.lazy(__makeSchema_AttendeeAttendee_uniqueCompoundUniqueInput_schema) as unknown as z.ZodType; -export const AttendeeAttendee_uniqueCompoundUniqueInputObjectZodSchema = z.lazy(__makeSchema_AttendeeAttendee_uniqueCompoundUniqueInput_schema); - - -// File: AttendeeCountOrderByAggregateInput.schema.ts -const __makeSchema_AttendeeCountOrderByAggregateInput_schema = () => z.object({ - id: SortOrderSchema.optional(), - userGrade: SortOrderSchema.optional(), - selections: SortOrderSchema.optional(), - reserved: SortOrderSchema.optional(), - earliestReservationAt: SortOrderSchema.optional(), - attendedAt: SortOrderSchema.optional(), - createdAt: SortOrderSchema.optional(), - updatedAt: SortOrderSchema.optional(), - paymentDeadline: SortOrderSchema.optional(), - paymentLink: SortOrderSchema.optional(), - paymentId: SortOrderSchema.optional(), - paymentReservedAt: SortOrderSchema.optional(), - paymentChargeDeadline: SortOrderSchema.optional(), - paymentChargedAt: SortOrderSchema.optional(), - paymentRefundedAt: SortOrderSchema.optional(), - paymentCheckoutUrl: SortOrderSchema.optional(), - attendanceId: SortOrderSchema.optional(), - userId: SortOrderSchema.optional(), - attendancePoolId: SortOrderSchema.optional(), - paymentRefundedById: SortOrderSchema.optional() -}).strict(); -export const AttendeeCountOrderByAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_AttendeeCountOrderByAggregateInput_schema) as unknown as z.ZodType; -export const AttendeeCountOrderByAggregateInputObjectZodSchema = z.lazy(__makeSchema_AttendeeCountOrderByAggregateInput_schema); - - -// File: AttendeeAvgOrderByAggregateInput.schema.ts -const __makeSchema_AttendeeAvgOrderByAggregateInput_schema = () => z.object({ - userGrade: SortOrderSchema.optional() -}).strict(); -export const AttendeeAvgOrderByAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_AttendeeAvgOrderByAggregateInput_schema) as unknown as z.ZodType; -export const AttendeeAvgOrderByAggregateInputObjectZodSchema = z.lazy(__makeSchema_AttendeeAvgOrderByAggregateInput_schema); - - -// File: AttendeeMaxOrderByAggregateInput.schema.ts -const __makeSchema_AttendeeMaxOrderByAggregateInput_schema = () => z.object({ - id: SortOrderSchema.optional(), - userGrade: SortOrderSchema.optional(), - reserved: SortOrderSchema.optional(), - earliestReservationAt: SortOrderSchema.optional(), - attendedAt: SortOrderSchema.optional(), - createdAt: SortOrderSchema.optional(), - updatedAt: SortOrderSchema.optional(), - paymentDeadline: SortOrderSchema.optional(), - paymentLink: SortOrderSchema.optional(), - paymentId: SortOrderSchema.optional(), - paymentReservedAt: SortOrderSchema.optional(), - paymentChargeDeadline: SortOrderSchema.optional(), - paymentChargedAt: SortOrderSchema.optional(), - paymentRefundedAt: SortOrderSchema.optional(), - paymentCheckoutUrl: SortOrderSchema.optional(), - attendanceId: SortOrderSchema.optional(), - userId: SortOrderSchema.optional(), - attendancePoolId: SortOrderSchema.optional(), - paymentRefundedById: SortOrderSchema.optional() -}).strict(); -export const AttendeeMaxOrderByAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_AttendeeMaxOrderByAggregateInput_schema) as unknown as z.ZodType; -export const AttendeeMaxOrderByAggregateInputObjectZodSchema = z.lazy(__makeSchema_AttendeeMaxOrderByAggregateInput_schema); - - -// File: AttendeeMinOrderByAggregateInput.schema.ts -const __makeSchema_AttendeeMinOrderByAggregateInput_schema = () => z.object({ - id: SortOrderSchema.optional(), - userGrade: SortOrderSchema.optional(), - reserved: SortOrderSchema.optional(), - earliestReservationAt: SortOrderSchema.optional(), - attendedAt: SortOrderSchema.optional(), - createdAt: SortOrderSchema.optional(), - updatedAt: SortOrderSchema.optional(), - paymentDeadline: SortOrderSchema.optional(), - paymentLink: SortOrderSchema.optional(), - paymentId: SortOrderSchema.optional(), - paymentReservedAt: SortOrderSchema.optional(), - paymentChargeDeadline: SortOrderSchema.optional(), - paymentChargedAt: SortOrderSchema.optional(), - paymentRefundedAt: SortOrderSchema.optional(), - paymentCheckoutUrl: SortOrderSchema.optional(), - attendanceId: SortOrderSchema.optional(), - userId: SortOrderSchema.optional(), - attendancePoolId: SortOrderSchema.optional(), - paymentRefundedById: SortOrderSchema.optional() -}).strict(); -export const AttendeeMinOrderByAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_AttendeeMinOrderByAggregateInput_schema) as unknown as z.ZodType; -export const AttendeeMinOrderByAggregateInputObjectZodSchema = z.lazy(__makeSchema_AttendeeMinOrderByAggregateInput_schema); - - -// File: AttendeeSumOrderByAggregateInput.schema.ts -const __makeSchema_AttendeeSumOrderByAggregateInput_schema = () => z.object({ - userGrade: SortOrderSchema.optional() -}).strict(); -export const AttendeeSumOrderByAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_AttendeeSumOrderByAggregateInput_schema) as unknown as z.ZodType; -export const AttendeeSumOrderByAggregateInputObjectZodSchema = z.lazy(__makeSchema_AttendeeSumOrderByAggregateInput_schema); - - -// File: EnumEventStatusFilter.schema.ts -const __makeSchema_EnumEventStatusFilter_schema = () => z.object({ - equals: EventStatusSchema.optional(), - in: EventStatusSchema.array().optional(), - notIn: EventStatusSchema.array().optional(), - not: z.union([EventStatusSchema, NestedEnumEventStatusFilterObjectSchema]).optional() -}).strict(); -export const EnumEventStatusFilterObjectSchema: z.ZodType = z.lazy(__makeSchema_EnumEventStatusFilter_schema) as unknown as z.ZodType; -export const EnumEventStatusFilterObjectZodSchema = z.lazy(__makeSchema_EnumEventStatusFilter_schema); - - -// File: EnumEventTypeFilter.schema.ts -const __makeSchema_EnumEventTypeFilter_schema = () => z.object({ - equals: EventTypeSchema.optional(), - in: EventTypeSchema.array().optional(), - notIn: EventTypeSchema.array().optional(), - not: z.union([EventTypeSchema, NestedEnumEventTypeFilterObjectSchema]).optional() -}).strict(); -export const EnumEventTypeFilterObjectSchema: z.ZodType = z.lazy(__makeSchema_EnumEventTypeFilter_schema) as unknown as z.ZodType; -export const EnumEventTypeFilterObjectZodSchema = z.lazy(__makeSchema_EnumEventTypeFilter_schema); - - -// File: FeedbackFormNullableScalarRelationFilter.schema.ts -const __makeSchema_FeedbackFormNullableScalarRelationFilter_schema = () => z.object({ - is: FeedbackFormWhereInputObjectSchema.optional().nullable(), - isNot: FeedbackFormWhereInputObjectSchema.optional().nullable() -}).strict(); -export const FeedbackFormNullableScalarRelationFilterObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackFormNullableScalarRelationFilter_schema) as unknown as z.ZodType; -export const FeedbackFormNullableScalarRelationFilterObjectZodSchema = z.lazy(__makeSchema_FeedbackFormNullableScalarRelationFilter_schema); - - -// File: FadderukeNullableScalarRelationFilter.schema.ts -const __makeSchema_FadderukeNullableScalarRelationFilter_schema = () => z.object({ - is: FadderukeWhereInputObjectSchema.optional().nullable(), - isNot: FadderukeWhereInputObjectSchema.optional().nullable() -}).strict(); -export const FadderukeNullableScalarRelationFilterObjectSchema: z.ZodType = z.lazy(__makeSchema_FadderukeNullableScalarRelationFilter_schema) as unknown as z.ZodType; -export const FadderukeNullableScalarRelationFilterObjectZodSchema = z.lazy(__makeSchema_FadderukeNullableScalarRelationFilter_schema); - - -// File: AttendanceNullableScalarRelationFilter.schema.ts -const __makeSchema_AttendanceNullableScalarRelationFilter_schema = () => z.object({ - is: AttendanceWhereInputObjectSchema.optional().nullable(), - isNot: AttendanceWhereInputObjectSchema.optional().nullable() -}).strict(); -export const AttendanceNullableScalarRelationFilterObjectSchema: z.ZodType = z.lazy(__makeSchema_AttendanceNullableScalarRelationFilter_schema) as unknown as z.ZodType; -export const AttendanceNullableScalarRelationFilterObjectZodSchema = z.lazy(__makeSchema_AttendanceNullableScalarRelationFilter_schema); - - -// File: EventNullableScalarRelationFilter.schema.ts -const __makeSchema_EventNullableScalarRelationFilter_schema = () => z.object({ - is: EventWhereInputObjectSchema.optional().nullable(), - isNot: EventWhereInputObjectSchema.optional().nullable() -}).strict(); -export const EventNullableScalarRelationFilterObjectSchema: z.ZodType = z.lazy(__makeSchema_EventNullableScalarRelationFilter_schema) as unknown as z.ZodType; -export const EventNullableScalarRelationFilterObjectZodSchema = z.lazy(__makeSchema_EventNullableScalarRelationFilter_schema); - - -// File: ContestNullableScalarRelationFilter.schema.ts -const __makeSchema_ContestNullableScalarRelationFilter_schema = () => z.object({ - is: ContestWhereInputObjectSchema.optional().nullable(), - isNot: ContestWhereInputObjectSchema.optional().nullable() -}).strict(); -export const ContestNullableScalarRelationFilterObjectSchema: z.ZodType = z.lazy(__makeSchema_ContestNullableScalarRelationFilter_schema) as unknown as z.ZodType; -export const ContestNullableScalarRelationFilterObjectZodSchema = z.lazy(__makeSchema_ContestNullableScalarRelationFilter_schema); - - -// File: EventCountOrderByAggregateInput.schema.ts -const __makeSchema_EventCountOrderByAggregateInput_schema = () => z.object({ - id: SortOrderSchema.optional(), - title: SortOrderSchema.optional(), - start: SortOrderSchema.optional(), - end: SortOrderSchema.optional(), - status: SortOrderSchema.optional(), - description: SortOrderSchema.optional(), - shortDescription: SortOrderSchema.optional(), - imageUrl: SortOrderSchema.optional(), - locationTitle: SortOrderSchema.optional(), - locationAddress: SortOrderSchema.optional(), - locationLink: SortOrderSchema.optional(), - type: SortOrderSchema.optional(), - markForMissedAttendance: SortOrderSchema.optional(), - createdAt: SortOrderSchema.optional(), - updatedAt: SortOrderSchema.optional(), - attendanceId: SortOrderSchema.optional(), - parentId: SortOrderSchema.optional(), - contestId: SortOrderSchema.optional(), - metadataImportId: SortOrderSchema.optional() -}).strict(); -export const EventCountOrderByAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_EventCountOrderByAggregateInput_schema) as unknown as z.ZodType; -export const EventCountOrderByAggregateInputObjectZodSchema = z.lazy(__makeSchema_EventCountOrderByAggregateInput_schema); - - -// File: EventAvgOrderByAggregateInput.schema.ts -const __makeSchema_EventAvgOrderByAggregateInput_schema = () => z.object({ - metadataImportId: SortOrderSchema.optional() -}).strict(); -export const EventAvgOrderByAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_EventAvgOrderByAggregateInput_schema) as unknown as z.ZodType; -export const EventAvgOrderByAggregateInputObjectZodSchema = z.lazy(__makeSchema_EventAvgOrderByAggregateInput_schema); - - -// File: EventMaxOrderByAggregateInput.schema.ts -const __makeSchema_EventMaxOrderByAggregateInput_schema = () => z.object({ - id: SortOrderSchema.optional(), - title: SortOrderSchema.optional(), - start: SortOrderSchema.optional(), - end: SortOrderSchema.optional(), - status: SortOrderSchema.optional(), - description: SortOrderSchema.optional(), - shortDescription: SortOrderSchema.optional(), - imageUrl: SortOrderSchema.optional(), - locationTitle: SortOrderSchema.optional(), - locationAddress: SortOrderSchema.optional(), - locationLink: SortOrderSchema.optional(), - type: SortOrderSchema.optional(), - markForMissedAttendance: SortOrderSchema.optional(), - createdAt: SortOrderSchema.optional(), - updatedAt: SortOrderSchema.optional(), - attendanceId: SortOrderSchema.optional(), - parentId: SortOrderSchema.optional(), - contestId: SortOrderSchema.optional(), - metadataImportId: SortOrderSchema.optional() -}).strict(); -export const EventMaxOrderByAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_EventMaxOrderByAggregateInput_schema) as unknown as z.ZodType; -export const EventMaxOrderByAggregateInputObjectZodSchema = z.lazy(__makeSchema_EventMaxOrderByAggregateInput_schema); - - -// File: EventMinOrderByAggregateInput.schema.ts -const __makeSchema_EventMinOrderByAggregateInput_schema = () => z.object({ - id: SortOrderSchema.optional(), - title: SortOrderSchema.optional(), - start: SortOrderSchema.optional(), - end: SortOrderSchema.optional(), - status: SortOrderSchema.optional(), - description: SortOrderSchema.optional(), - shortDescription: SortOrderSchema.optional(), - imageUrl: SortOrderSchema.optional(), - locationTitle: SortOrderSchema.optional(), - locationAddress: SortOrderSchema.optional(), - locationLink: SortOrderSchema.optional(), - type: SortOrderSchema.optional(), - markForMissedAttendance: SortOrderSchema.optional(), - createdAt: SortOrderSchema.optional(), - updatedAt: SortOrderSchema.optional(), - attendanceId: SortOrderSchema.optional(), - parentId: SortOrderSchema.optional(), - contestId: SortOrderSchema.optional(), - metadataImportId: SortOrderSchema.optional() -}).strict(); -export const EventMinOrderByAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_EventMinOrderByAggregateInput_schema) as unknown as z.ZodType; -export const EventMinOrderByAggregateInputObjectZodSchema = z.lazy(__makeSchema_EventMinOrderByAggregateInput_schema); - - -// File: EventSumOrderByAggregateInput.schema.ts -const __makeSchema_EventSumOrderByAggregateInput_schema = () => z.object({ - metadataImportId: SortOrderSchema.optional() -}).strict(); -export const EventSumOrderByAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_EventSumOrderByAggregateInput_schema) as unknown as z.ZodType; -export const EventSumOrderByAggregateInputObjectZodSchema = z.lazy(__makeSchema_EventSumOrderByAggregateInput_schema); - - -// File: EnumEventStatusWithAggregatesFilter.schema.ts -const __makeSchema_EnumEventStatusWithAggregatesFilter_schema = () => z.object({ - equals: EventStatusSchema.optional(), - in: EventStatusSchema.array().optional(), - notIn: EventStatusSchema.array().optional(), - not: z.union([EventStatusSchema, NestedEnumEventStatusWithAggregatesFilterObjectSchema]).optional(), - get _count(){ return NestedIntFilterObjectSchema.optional(); }, - get _min(){ return NestedEnumEventStatusFilterObjectSchema.optional(); }, - get _max(){ return NestedEnumEventStatusFilterObjectSchema.optional(); } -}).strict(); -export const EnumEventStatusWithAggregatesFilterObjectSchema: z.ZodType = z.lazy(__makeSchema_EnumEventStatusWithAggregatesFilter_schema) as unknown as z.ZodType; -export const EnumEventStatusWithAggregatesFilterObjectZodSchema = z.lazy(__makeSchema_EnumEventStatusWithAggregatesFilter_schema); - - -// File: EnumEventTypeWithAggregatesFilter.schema.ts -const __makeSchema_EnumEventTypeWithAggregatesFilter_schema = () => z.object({ - equals: EventTypeSchema.optional(), - in: EventTypeSchema.array().optional(), - notIn: EventTypeSchema.array().optional(), - not: z.union([EventTypeSchema, NestedEnumEventTypeWithAggregatesFilterObjectSchema]).optional(), - get _count(){ return NestedIntFilterObjectSchema.optional(); }, - get _min(){ return NestedEnumEventTypeFilterObjectSchema.optional(); }, - get _max(){ return NestedEnumEventTypeFilterObjectSchema.optional(); } -}).strict(); -export const EnumEventTypeWithAggregatesFilterObjectSchema: z.ZodType = z.lazy(__makeSchema_EnumEventTypeWithAggregatesFilter_schema) as unknown as z.ZodType; -export const EnumEventTypeWithAggregatesFilterObjectZodSchema = z.lazy(__makeSchema_EnumEventTypeWithAggregatesFilter_schema); - - -// File: EventScalarRelationFilter.schema.ts -const __makeSchema_EventScalarRelationFilter_schema = () => z.object({ - get is(){ return EventWhereInputObjectSchema.optional(); }, - get isNot(){ return EventWhereInputObjectSchema.optional(); } -}).strict(); -export const EventScalarRelationFilterObjectSchema: z.ZodType = z.lazy(__makeSchema_EventScalarRelationFilter_schema) as unknown as z.ZodType; -export const EventScalarRelationFilterObjectZodSchema = z.lazy(__makeSchema_EventScalarRelationFilter_schema); - - -// File: CompanyScalarRelationFilter.schema.ts -const __makeSchema_CompanyScalarRelationFilter_schema = () => z.object({ - get is(){ return CompanyWhereInputObjectSchema.optional(); }, - get isNot(){ return CompanyWhereInputObjectSchema.optional(); } -}).strict(); -export const CompanyScalarRelationFilterObjectSchema: z.ZodType = z.lazy(__makeSchema_CompanyScalarRelationFilter_schema) as unknown as z.ZodType; -export const CompanyScalarRelationFilterObjectZodSchema = z.lazy(__makeSchema_CompanyScalarRelationFilter_schema); - - -// File: EventCompanyEventIdCompanyIdCompoundUniqueInput.schema.ts -const __makeSchema_EventCompanyEventIdCompanyIdCompoundUniqueInput_schema = () => z.object({ - eventId: z.string(), - companyId: z.string() -}).strict(); -export const EventCompanyEventIdCompanyIdCompoundUniqueInputObjectSchema: z.ZodType = z.lazy(__makeSchema_EventCompanyEventIdCompanyIdCompoundUniqueInput_schema) as unknown as z.ZodType; -export const EventCompanyEventIdCompanyIdCompoundUniqueInputObjectZodSchema = z.lazy(__makeSchema_EventCompanyEventIdCompanyIdCompoundUniqueInput_schema); - - -// File: EventCompanyCountOrderByAggregateInput.schema.ts -const __makeSchema_EventCompanyCountOrderByAggregateInput_schema = () => z.object({ - eventId: SortOrderSchema.optional(), - companyId: SortOrderSchema.optional() -}).strict(); -export const EventCompanyCountOrderByAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_EventCompanyCountOrderByAggregateInput_schema) as unknown as z.ZodType; -export const EventCompanyCountOrderByAggregateInputObjectZodSchema = z.lazy(__makeSchema_EventCompanyCountOrderByAggregateInput_schema); - - -// File: EventCompanyMaxOrderByAggregateInput.schema.ts -const __makeSchema_EventCompanyMaxOrderByAggregateInput_schema = () => z.object({ - eventId: SortOrderSchema.optional(), - companyId: SortOrderSchema.optional() -}).strict(); -export const EventCompanyMaxOrderByAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_EventCompanyMaxOrderByAggregateInput_schema) as unknown as z.ZodType; -export const EventCompanyMaxOrderByAggregateInputObjectZodSchema = z.lazy(__makeSchema_EventCompanyMaxOrderByAggregateInput_schema); - - -// File: EventCompanyMinOrderByAggregateInput.schema.ts -const __makeSchema_EventCompanyMinOrderByAggregateInput_schema = () => z.object({ - eventId: SortOrderSchema.optional(), - companyId: SortOrderSchema.optional() -}).strict(); -export const EventCompanyMinOrderByAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_EventCompanyMinOrderByAggregateInput_schema) as unknown as z.ZodType; -export const EventCompanyMinOrderByAggregateInputObjectZodSchema = z.lazy(__makeSchema_EventCompanyMinOrderByAggregateInput_schema); - - -// File: EnumMarkTypeFilter.schema.ts -const __makeSchema_EnumMarkTypeFilter_schema = () => z.object({ - equals: MarkTypeSchema.optional(), - in: MarkTypeSchema.array().optional(), - notIn: MarkTypeSchema.array().optional(), - not: z.union([MarkTypeSchema, NestedEnumMarkTypeFilterObjectSchema]).optional() -}).strict(); -export const EnumMarkTypeFilterObjectSchema: z.ZodType = z.lazy(__makeSchema_EnumMarkTypeFilter_schema) as unknown as z.ZodType; -export const EnumMarkTypeFilterObjectZodSchema = z.lazy(__makeSchema_EnumMarkTypeFilter_schema); - - -// File: MarkCountOrderByAggregateInput.schema.ts -const __makeSchema_MarkCountOrderByAggregateInput_schema = () => z.object({ - id: SortOrderSchema.optional(), - title: SortOrderSchema.optional(), - details: SortOrderSchema.optional(), - duration: SortOrderSchema.optional(), - weight: SortOrderSchema.optional(), - type: SortOrderSchema.optional(), - createdAt: SortOrderSchema.optional(), - updatedAt: SortOrderSchema.optional() -}).strict(); -export const MarkCountOrderByAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_MarkCountOrderByAggregateInput_schema) as unknown as z.ZodType; -export const MarkCountOrderByAggregateInputObjectZodSchema = z.lazy(__makeSchema_MarkCountOrderByAggregateInput_schema); - - -// File: MarkAvgOrderByAggregateInput.schema.ts -const __makeSchema_MarkAvgOrderByAggregateInput_schema = () => z.object({ - duration: SortOrderSchema.optional(), - weight: SortOrderSchema.optional() -}).strict(); -export const MarkAvgOrderByAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_MarkAvgOrderByAggregateInput_schema) as unknown as z.ZodType; -export const MarkAvgOrderByAggregateInputObjectZodSchema = z.lazy(__makeSchema_MarkAvgOrderByAggregateInput_schema); - - -// File: MarkMaxOrderByAggregateInput.schema.ts -const __makeSchema_MarkMaxOrderByAggregateInput_schema = () => z.object({ - id: SortOrderSchema.optional(), - title: SortOrderSchema.optional(), - details: SortOrderSchema.optional(), - duration: SortOrderSchema.optional(), - weight: SortOrderSchema.optional(), - type: SortOrderSchema.optional(), - createdAt: SortOrderSchema.optional(), - updatedAt: SortOrderSchema.optional() -}).strict(); -export const MarkMaxOrderByAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_MarkMaxOrderByAggregateInput_schema) as unknown as z.ZodType; -export const MarkMaxOrderByAggregateInputObjectZodSchema = z.lazy(__makeSchema_MarkMaxOrderByAggregateInput_schema); - - -// File: MarkMinOrderByAggregateInput.schema.ts -const __makeSchema_MarkMinOrderByAggregateInput_schema = () => z.object({ - id: SortOrderSchema.optional(), - title: SortOrderSchema.optional(), - details: SortOrderSchema.optional(), - duration: SortOrderSchema.optional(), - weight: SortOrderSchema.optional(), - type: SortOrderSchema.optional(), - createdAt: SortOrderSchema.optional(), - updatedAt: SortOrderSchema.optional() -}).strict(); -export const MarkMinOrderByAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_MarkMinOrderByAggregateInput_schema) as unknown as z.ZodType; -export const MarkMinOrderByAggregateInputObjectZodSchema = z.lazy(__makeSchema_MarkMinOrderByAggregateInput_schema); - - -// File: MarkSumOrderByAggregateInput.schema.ts -const __makeSchema_MarkSumOrderByAggregateInput_schema = () => z.object({ - duration: SortOrderSchema.optional(), - weight: SortOrderSchema.optional() -}).strict(); -export const MarkSumOrderByAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_MarkSumOrderByAggregateInput_schema) as unknown as z.ZodType; -export const MarkSumOrderByAggregateInputObjectZodSchema = z.lazy(__makeSchema_MarkSumOrderByAggregateInput_schema); - - -// File: EnumMarkTypeWithAggregatesFilter.schema.ts -const __makeSchema_EnumMarkTypeWithAggregatesFilter_schema = () => z.object({ - equals: MarkTypeSchema.optional(), - in: MarkTypeSchema.array().optional(), - notIn: MarkTypeSchema.array().optional(), - not: z.union([MarkTypeSchema, NestedEnumMarkTypeWithAggregatesFilterObjectSchema]).optional(), - get _count(){ return NestedIntFilterObjectSchema.optional(); }, - get _min(){ return NestedEnumMarkTypeFilterObjectSchema.optional(); }, - get _max(){ return NestedEnumMarkTypeFilterObjectSchema.optional(); } -}).strict(); -export const EnumMarkTypeWithAggregatesFilterObjectSchema: z.ZodType = z.lazy(__makeSchema_EnumMarkTypeWithAggregatesFilter_schema) as unknown as z.ZodType; -export const EnumMarkTypeWithAggregatesFilterObjectZodSchema = z.lazy(__makeSchema_EnumMarkTypeWithAggregatesFilter_schema); - - -// File: MarkScalarRelationFilter.schema.ts -const __makeSchema_MarkScalarRelationFilter_schema = () => z.object({ - get is(){ return MarkWhereInputObjectSchema.optional(); }, - get isNot(){ return MarkWhereInputObjectSchema.optional(); } -}).strict(); -export const MarkScalarRelationFilterObjectSchema: z.ZodType = z.lazy(__makeSchema_MarkScalarRelationFilter_schema) as unknown as z.ZodType; -export const MarkScalarRelationFilterObjectZodSchema = z.lazy(__makeSchema_MarkScalarRelationFilter_schema); - - -// File: MarkGroupMarkIdGroupIdCompoundUniqueInput.schema.ts -const __makeSchema_MarkGroupMarkIdGroupIdCompoundUniqueInput_schema = () => z.object({ - markId: z.string(), - groupId: z.string() -}).strict(); -export const MarkGroupMarkIdGroupIdCompoundUniqueInputObjectSchema: z.ZodType = z.lazy(__makeSchema_MarkGroupMarkIdGroupIdCompoundUniqueInput_schema) as unknown as z.ZodType; -export const MarkGroupMarkIdGroupIdCompoundUniqueInputObjectZodSchema = z.lazy(__makeSchema_MarkGroupMarkIdGroupIdCompoundUniqueInput_schema); - - -// File: MarkGroupCountOrderByAggregateInput.schema.ts -const __makeSchema_MarkGroupCountOrderByAggregateInput_schema = () => z.object({ - markId: SortOrderSchema.optional(), - groupId: SortOrderSchema.optional() -}).strict(); -export const MarkGroupCountOrderByAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_MarkGroupCountOrderByAggregateInput_schema) as unknown as z.ZodType; -export const MarkGroupCountOrderByAggregateInputObjectZodSchema = z.lazy(__makeSchema_MarkGroupCountOrderByAggregateInput_schema); - - -// File: MarkGroupMaxOrderByAggregateInput.schema.ts -const __makeSchema_MarkGroupMaxOrderByAggregateInput_schema = () => z.object({ - markId: SortOrderSchema.optional(), - groupId: SortOrderSchema.optional() -}).strict(); -export const MarkGroupMaxOrderByAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_MarkGroupMaxOrderByAggregateInput_schema) as unknown as z.ZodType; -export const MarkGroupMaxOrderByAggregateInputObjectZodSchema = z.lazy(__makeSchema_MarkGroupMaxOrderByAggregateInput_schema); - - -// File: MarkGroupMinOrderByAggregateInput.schema.ts -const __makeSchema_MarkGroupMinOrderByAggregateInput_schema = () => z.object({ - markId: SortOrderSchema.optional(), - groupId: SortOrderSchema.optional() -}).strict(); -export const MarkGroupMinOrderByAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_MarkGroupMinOrderByAggregateInput_schema) as unknown as z.ZodType; -export const MarkGroupMinOrderByAggregateInputObjectZodSchema = z.lazy(__makeSchema_MarkGroupMinOrderByAggregateInput_schema); - - -// File: PersonalMarkMarkIdUserIdCompoundUniqueInput.schema.ts -const __makeSchema_PersonalMarkMarkIdUserIdCompoundUniqueInput_schema = () => z.object({ - markId: z.string(), - userId: z.string() -}).strict(); -export const PersonalMarkMarkIdUserIdCompoundUniqueInputObjectSchema: z.ZodType = z.lazy(__makeSchema_PersonalMarkMarkIdUserIdCompoundUniqueInput_schema) as unknown as z.ZodType; -export const PersonalMarkMarkIdUserIdCompoundUniqueInputObjectZodSchema = z.lazy(__makeSchema_PersonalMarkMarkIdUserIdCompoundUniqueInput_schema); - - -// File: PersonalMarkCountOrderByAggregateInput.schema.ts -const __makeSchema_PersonalMarkCountOrderByAggregateInput_schema = () => z.object({ - createdAt: SortOrderSchema.optional(), - markId: SortOrderSchema.optional(), - userId: SortOrderSchema.optional(), - givenById: SortOrderSchema.optional() -}).strict(); -export const PersonalMarkCountOrderByAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_PersonalMarkCountOrderByAggregateInput_schema) as unknown as z.ZodType; -export const PersonalMarkCountOrderByAggregateInputObjectZodSchema = z.lazy(__makeSchema_PersonalMarkCountOrderByAggregateInput_schema); - - -// File: PersonalMarkMaxOrderByAggregateInput.schema.ts -const __makeSchema_PersonalMarkMaxOrderByAggregateInput_schema = () => z.object({ - createdAt: SortOrderSchema.optional(), - markId: SortOrderSchema.optional(), - userId: SortOrderSchema.optional(), - givenById: SortOrderSchema.optional() -}).strict(); -export const PersonalMarkMaxOrderByAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_PersonalMarkMaxOrderByAggregateInput_schema) as unknown as z.ZodType; -export const PersonalMarkMaxOrderByAggregateInputObjectZodSchema = z.lazy(__makeSchema_PersonalMarkMaxOrderByAggregateInput_schema); - - -// File: PersonalMarkMinOrderByAggregateInput.schema.ts -const __makeSchema_PersonalMarkMinOrderByAggregateInput_schema = () => z.object({ - createdAt: SortOrderSchema.optional(), - markId: SortOrderSchema.optional(), - userId: SortOrderSchema.optional(), - givenById: SortOrderSchema.optional() -}).strict(); -export const PersonalMarkMinOrderByAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_PersonalMarkMinOrderByAggregateInput_schema) as unknown as z.ZodType; -export const PersonalMarkMinOrderByAggregateInputObjectZodSchema = z.lazy(__makeSchema_PersonalMarkMinOrderByAggregateInput_schema); - - -// File: PrivacyPermissionsCountOrderByAggregateInput.schema.ts -const __makeSchema_PrivacyPermissionsCountOrderByAggregateInput_schema = () => z.object({ - id: SortOrderSchema.optional(), - userId: SortOrderSchema.optional(), - profileVisible: SortOrderSchema.optional(), - usernameVisible: SortOrderSchema.optional(), - emailVisible: SortOrderSchema.optional(), - phoneVisible: SortOrderSchema.optional(), - addressVisible: SortOrderSchema.optional(), - attendanceVisible: SortOrderSchema.optional(), - createdAt: SortOrderSchema.optional(), - updatedAt: SortOrderSchema.optional() -}).strict(); -export const PrivacyPermissionsCountOrderByAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_PrivacyPermissionsCountOrderByAggregateInput_schema) as unknown as z.ZodType; -export const PrivacyPermissionsCountOrderByAggregateInputObjectZodSchema = z.lazy(__makeSchema_PrivacyPermissionsCountOrderByAggregateInput_schema); - - -// File: PrivacyPermissionsMaxOrderByAggregateInput.schema.ts -const __makeSchema_PrivacyPermissionsMaxOrderByAggregateInput_schema = () => z.object({ - id: SortOrderSchema.optional(), - userId: SortOrderSchema.optional(), - profileVisible: SortOrderSchema.optional(), - usernameVisible: SortOrderSchema.optional(), - emailVisible: SortOrderSchema.optional(), - phoneVisible: SortOrderSchema.optional(), - addressVisible: SortOrderSchema.optional(), - attendanceVisible: SortOrderSchema.optional(), - createdAt: SortOrderSchema.optional(), - updatedAt: SortOrderSchema.optional() -}).strict(); -export const PrivacyPermissionsMaxOrderByAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_PrivacyPermissionsMaxOrderByAggregateInput_schema) as unknown as z.ZodType; -export const PrivacyPermissionsMaxOrderByAggregateInputObjectZodSchema = z.lazy(__makeSchema_PrivacyPermissionsMaxOrderByAggregateInput_schema); - - -// File: PrivacyPermissionsMinOrderByAggregateInput.schema.ts -const __makeSchema_PrivacyPermissionsMinOrderByAggregateInput_schema = () => z.object({ - id: SortOrderSchema.optional(), - userId: SortOrderSchema.optional(), - profileVisible: SortOrderSchema.optional(), - usernameVisible: SortOrderSchema.optional(), - emailVisible: SortOrderSchema.optional(), - phoneVisible: SortOrderSchema.optional(), - addressVisible: SortOrderSchema.optional(), - attendanceVisible: SortOrderSchema.optional(), - createdAt: SortOrderSchema.optional(), - updatedAt: SortOrderSchema.optional() -}).strict(); -export const PrivacyPermissionsMinOrderByAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_PrivacyPermissionsMinOrderByAggregateInput_schema) as unknown as z.ZodType; -export const PrivacyPermissionsMinOrderByAggregateInputObjectZodSchema = z.lazy(__makeSchema_PrivacyPermissionsMinOrderByAggregateInput_schema); - - -// File: NotificationPermissionsCountOrderByAggregateInput.schema.ts -const __makeSchema_NotificationPermissionsCountOrderByAggregateInput_schema = () => z.object({ - id: SortOrderSchema.optional(), - userId: SortOrderSchema.optional(), - applications: SortOrderSchema.optional(), - newArticles: SortOrderSchema.optional(), - standardNotifications: SortOrderSchema.optional(), - groupMessages: SortOrderSchema.optional(), - markRulesUpdates: SortOrderSchema.optional(), - receipts: SortOrderSchema.optional(), - registrationByAdministrator: SortOrderSchema.optional(), - registrationStart: SortOrderSchema.optional(), - createdAt: SortOrderSchema.optional(), - updatedAt: SortOrderSchema.optional() -}).strict(); -export const NotificationPermissionsCountOrderByAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_NotificationPermissionsCountOrderByAggregateInput_schema) as unknown as z.ZodType; -export const NotificationPermissionsCountOrderByAggregateInputObjectZodSchema = z.lazy(__makeSchema_NotificationPermissionsCountOrderByAggregateInput_schema); - - -// File: NotificationPermissionsMaxOrderByAggregateInput.schema.ts -const __makeSchema_NotificationPermissionsMaxOrderByAggregateInput_schema = () => z.object({ - id: SortOrderSchema.optional(), - userId: SortOrderSchema.optional(), - applications: SortOrderSchema.optional(), - newArticles: SortOrderSchema.optional(), - standardNotifications: SortOrderSchema.optional(), - groupMessages: SortOrderSchema.optional(), - markRulesUpdates: SortOrderSchema.optional(), - receipts: SortOrderSchema.optional(), - registrationByAdministrator: SortOrderSchema.optional(), - registrationStart: SortOrderSchema.optional(), - createdAt: SortOrderSchema.optional(), - updatedAt: SortOrderSchema.optional() -}).strict(); -export const NotificationPermissionsMaxOrderByAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_NotificationPermissionsMaxOrderByAggregateInput_schema) as unknown as z.ZodType; -export const NotificationPermissionsMaxOrderByAggregateInputObjectZodSchema = z.lazy(__makeSchema_NotificationPermissionsMaxOrderByAggregateInput_schema); - - -// File: NotificationPermissionsMinOrderByAggregateInput.schema.ts -const __makeSchema_NotificationPermissionsMinOrderByAggregateInput_schema = () => z.object({ - id: SortOrderSchema.optional(), - userId: SortOrderSchema.optional(), - applications: SortOrderSchema.optional(), - newArticles: SortOrderSchema.optional(), - standardNotifications: SortOrderSchema.optional(), - groupMessages: SortOrderSchema.optional(), - markRulesUpdates: SortOrderSchema.optional(), - receipts: SortOrderSchema.optional(), - registrationByAdministrator: SortOrderSchema.optional(), - registrationStart: SortOrderSchema.optional(), - createdAt: SortOrderSchema.optional(), - updatedAt: SortOrderSchema.optional() -}).strict(); -export const NotificationPermissionsMinOrderByAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_NotificationPermissionsMinOrderByAggregateInput_schema) as unknown as z.ZodType; -export const NotificationPermissionsMinOrderByAggregateInputObjectZodSchema = z.lazy(__makeSchema_NotificationPermissionsMinOrderByAggregateInput_schema); - - -// File: EventHostingGroupGroupIdEventIdCompoundUniqueInput.schema.ts -const __makeSchema_EventHostingGroupGroupIdEventIdCompoundUniqueInput_schema = () => z.object({ - groupId: z.string(), - eventId: z.string() -}).strict(); -export const EventHostingGroupGroupIdEventIdCompoundUniqueInputObjectSchema: z.ZodType = z.lazy(__makeSchema_EventHostingGroupGroupIdEventIdCompoundUniqueInput_schema) as unknown as z.ZodType; -export const EventHostingGroupGroupIdEventIdCompoundUniqueInputObjectZodSchema = z.lazy(__makeSchema_EventHostingGroupGroupIdEventIdCompoundUniqueInput_schema); - - -// File: EventHostingGroupCountOrderByAggregateInput.schema.ts -const __makeSchema_EventHostingGroupCountOrderByAggregateInput_schema = () => z.object({ - groupId: SortOrderSchema.optional(), - eventId: SortOrderSchema.optional() -}).strict(); -export const EventHostingGroupCountOrderByAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_EventHostingGroupCountOrderByAggregateInput_schema) as unknown as z.ZodType; -export const EventHostingGroupCountOrderByAggregateInputObjectZodSchema = z.lazy(__makeSchema_EventHostingGroupCountOrderByAggregateInput_schema); - - -// File: EventHostingGroupMaxOrderByAggregateInput.schema.ts -const __makeSchema_EventHostingGroupMaxOrderByAggregateInput_schema = () => z.object({ - groupId: SortOrderSchema.optional(), - eventId: SortOrderSchema.optional() -}).strict(); -export const EventHostingGroupMaxOrderByAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_EventHostingGroupMaxOrderByAggregateInput_schema) as unknown as z.ZodType; -export const EventHostingGroupMaxOrderByAggregateInputObjectZodSchema = z.lazy(__makeSchema_EventHostingGroupMaxOrderByAggregateInput_schema); - - -// File: EventHostingGroupMinOrderByAggregateInput.schema.ts -const __makeSchema_EventHostingGroupMinOrderByAggregateInput_schema = () => z.object({ - groupId: SortOrderSchema.optional(), - eventId: SortOrderSchema.optional() -}).strict(); -export const EventHostingGroupMinOrderByAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_EventHostingGroupMinOrderByAggregateInput_schema) as unknown as z.ZodType; -export const EventHostingGroupMinOrderByAggregateInputObjectZodSchema = z.lazy(__makeSchema_EventHostingGroupMinOrderByAggregateInput_schema); - - -// File: EnumEmploymentTypeFilter.schema.ts -const __makeSchema_EnumEmploymentTypeFilter_schema = () => z.object({ - equals: EmploymentTypeSchema.optional(), - in: EmploymentTypeSchema.array().optional(), - notIn: EmploymentTypeSchema.array().optional(), - not: z.union([EmploymentTypeSchema, NestedEnumEmploymentTypeFilterObjectSchema]).optional() -}).strict(); -export const EnumEmploymentTypeFilterObjectSchema: z.ZodType = z.lazy(__makeSchema_EnumEmploymentTypeFilter_schema) as unknown as z.ZodType; -export const EnumEmploymentTypeFilterObjectZodSchema = z.lazy(__makeSchema_EnumEmploymentTypeFilter_schema); - - -// File: JobListingLocationListRelationFilter.schema.ts -const __makeSchema_JobListingLocationListRelationFilter_schema = () => z.object({ - get every(){ return JobListingLocationWhereInputObjectSchema.optional(); }, - get some(){ return JobListingLocationWhereInputObjectSchema.optional(); }, - get none(){ return JobListingLocationWhereInputObjectSchema.optional(); } -}).strict(); -export const JobListingLocationListRelationFilterObjectSchema: z.ZodType = z.lazy(__makeSchema_JobListingLocationListRelationFilter_schema) as unknown as z.ZodType; -export const JobListingLocationListRelationFilterObjectZodSchema = z.lazy(__makeSchema_JobListingLocationListRelationFilter_schema); - - -// File: JobListingLocationOrderByRelationAggregateInput.schema.ts -const __makeSchema_JobListingLocationOrderByRelationAggregateInput_schema = () => z.object({ - _count: SortOrderSchema.optional() -}).strict(); -export const JobListingLocationOrderByRelationAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_JobListingLocationOrderByRelationAggregateInput_schema) as unknown as z.ZodType; -export const JobListingLocationOrderByRelationAggregateInputObjectZodSchema = z.lazy(__makeSchema_JobListingLocationOrderByRelationAggregateInput_schema); - - -// File: JobListingCountOrderByAggregateInput.schema.ts -const __makeSchema_JobListingCountOrderByAggregateInput_schema = () => z.object({ - id: SortOrderSchema.optional(), - title: SortOrderSchema.optional(), - description: SortOrderSchema.optional(), - shortDescription: SortOrderSchema.optional(), - start: SortOrderSchema.optional(), - end: SortOrderSchema.optional(), - featured: SortOrderSchema.optional(), - hidden: SortOrderSchema.optional(), - deadline: SortOrderSchema.optional(), - employment: SortOrderSchema.optional(), - applicationLink: SortOrderSchema.optional(), - applicationEmail: SortOrderSchema.optional(), - rollingAdmission: SortOrderSchema.optional(), - createdAt: SortOrderSchema.optional(), - updatedAt: SortOrderSchema.optional(), - companyId: SortOrderSchema.optional() -}).strict(); -export const JobListingCountOrderByAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_JobListingCountOrderByAggregateInput_schema) as unknown as z.ZodType; -export const JobListingCountOrderByAggregateInputObjectZodSchema = z.lazy(__makeSchema_JobListingCountOrderByAggregateInput_schema); - - -// File: JobListingMaxOrderByAggregateInput.schema.ts -const __makeSchema_JobListingMaxOrderByAggregateInput_schema = () => z.object({ - id: SortOrderSchema.optional(), - title: SortOrderSchema.optional(), - description: SortOrderSchema.optional(), - shortDescription: SortOrderSchema.optional(), - start: SortOrderSchema.optional(), - end: SortOrderSchema.optional(), - featured: SortOrderSchema.optional(), - hidden: SortOrderSchema.optional(), - deadline: SortOrderSchema.optional(), - employment: SortOrderSchema.optional(), - applicationLink: SortOrderSchema.optional(), - applicationEmail: SortOrderSchema.optional(), - rollingAdmission: SortOrderSchema.optional(), - createdAt: SortOrderSchema.optional(), - updatedAt: SortOrderSchema.optional(), - companyId: SortOrderSchema.optional() -}).strict(); -export const JobListingMaxOrderByAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_JobListingMaxOrderByAggregateInput_schema) as unknown as z.ZodType; -export const JobListingMaxOrderByAggregateInputObjectZodSchema = z.lazy(__makeSchema_JobListingMaxOrderByAggregateInput_schema); - - -// File: JobListingMinOrderByAggregateInput.schema.ts -const __makeSchema_JobListingMinOrderByAggregateInput_schema = () => z.object({ - id: SortOrderSchema.optional(), - title: SortOrderSchema.optional(), - description: SortOrderSchema.optional(), - shortDescription: SortOrderSchema.optional(), - start: SortOrderSchema.optional(), - end: SortOrderSchema.optional(), - featured: SortOrderSchema.optional(), - hidden: SortOrderSchema.optional(), - deadline: SortOrderSchema.optional(), - employment: SortOrderSchema.optional(), - applicationLink: SortOrderSchema.optional(), - applicationEmail: SortOrderSchema.optional(), - rollingAdmission: SortOrderSchema.optional(), - createdAt: SortOrderSchema.optional(), - updatedAt: SortOrderSchema.optional(), - companyId: SortOrderSchema.optional() -}).strict(); -export const JobListingMinOrderByAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_JobListingMinOrderByAggregateInput_schema) as unknown as z.ZodType; -export const JobListingMinOrderByAggregateInputObjectZodSchema = z.lazy(__makeSchema_JobListingMinOrderByAggregateInput_schema); - - -// File: EnumEmploymentTypeWithAggregatesFilter.schema.ts -const __makeSchema_EnumEmploymentTypeWithAggregatesFilter_schema = () => z.object({ - equals: EmploymentTypeSchema.optional(), - in: EmploymentTypeSchema.array().optional(), - notIn: EmploymentTypeSchema.array().optional(), - not: z.union([EmploymentTypeSchema, NestedEnumEmploymentTypeWithAggregatesFilterObjectSchema]).optional(), - get _count(){ return NestedIntFilterObjectSchema.optional(); }, - get _min(){ return NestedEnumEmploymentTypeFilterObjectSchema.optional(); }, - get _max(){ return NestedEnumEmploymentTypeFilterObjectSchema.optional(); } -}).strict(); -export const EnumEmploymentTypeWithAggregatesFilterObjectSchema: z.ZodType = z.lazy(__makeSchema_EnumEmploymentTypeWithAggregatesFilter_schema) as unknown as z.ZodType; -export const EnumEmploymentTypeWithAggregatesFilterObjectZodSchema = z.lazy(__makeSchema_EnumEmploymentTypeWithAggregatesFilter_schema); - - -// File: JobListingScalarRelationFilter.schema.ts -const __makeSchema_JobListingScalarRelationFilter_schema = () => z.object({ - get is(){ return JobListingWhereInputObjectSchema.optional(); }, - get isNot(){ return JobListingWhereInputObjectSchema.optional(); } -}).strict(); -export const JobListingScalarRelationFilterObjectSchema: z.ZodType = z.lazy(__makeSchema_JobListingScalarRelationFilter_schema) as unknown as z.ZodType; -export const JobListingScalarRelationFilterObjectZodSchema = z.lazy(__makeSchema_JobListingScalarRelationFilter_schema); - - -// File: JobListingLocationNameJobListingIdCompoundUniqueInput.schema.ts -const __makeSchema_JobListingLocationNameJobListingIdCompoundUniqueInput_schema = () => z.object({ - name: z.string(), - jobListingId: z.string() -}).strict(); -export const JobListingLocationNameJobListingIdCompoundUniqueInputObjectSchema: z.ZodType = z.lazy(__makeSchema_JobListingLocationNameJobListingIdCompoundUniqueInput_schema) as unknown as z.ZodType; -export const JobListingLocationNameJobListingIdCompoundUniqueInputObjectZodSchema = z.lazy(__makeSchema_JobListingLocationNameJobListingIdCompoundUniqueInput_schema); - - -// File: JobListingLocationCountOrderByAggregateInput.schema.ts -const __makeSchema_JobListingLocationCountOrderByAggregateInput_schema = () => z.object({ - name: SortOrderSchema.optional(), - createdAt: SortOrderSchema.optional(), - jobListingId: SortOrderSchema.optional() -}).strict(); -export const JobListingLocationCountOrderByAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_JobListingLocationCountOrderByAggregateInput_schema) as unknown as z.ZodType; -export const JobListingLocationCountOrderByAggregateInputObjectZodSchema = z.lazy(__makeSchema_JobListingLocationCountOrderByAggregateInput_schema); - - -// File: JobListingLocationMaxOrderByAggregateInput.schema.ts -const __makeSchema_JobListingLocationMaxOrderByAggregateInput_schema = () => z.object({ - name: SortOrderSchema.optional(), - createdAt: SortOrderSchema.optional(), - jobListingId: SortOrderSchema.optional() -}).strict(); -export const JobListingLocationMaxOrderByAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_JobListingLocationMaxOrderByAggregateInput_schema) as unknown as z.ZodType; -export const JobListingLocationMaxOrderByAggregateInputObjectZodSchema = z.lazy(__makeSchema_JobListingLocationMaxOrderByAggregateInput_schema); - - -// File: JobListingLocationMinOrderByAggregateInput.schema.ts -const __makeSchema_JobListingLocationMinOrderByAggregateInput_schema = () => z.object({ - name: SortOrderSchema.optional(), - createdAt: SortOrderSchema.optional(), - jobListingId: SortOrderSchema.optional() -}).strict(); -export const JobListingLocationMinOrderByAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_JobListingLocationMinOrderByAggregateInput_schema) as unknown as z.ZodType; -export const JobListingLocationMinOrderByAggregateInputObjectZodSchema = z.lazy(__makeSchema_JobListingLocationMinOrderByAggregateInput_schema); - - -// File: OfflineCountOrderByAggregateInput.schema.ts -const __makeSchema_OfflineCountOrderByAggregateInput_schema = () => z.object({ - id: SortOrderSchema.optional(), - title: SortOrderSchema.optional(), - fileUrl: SortOrderSchema.optional(), - imageUrl: SortOrderSchema.optional(), - publishedAt: SortOrderSchema.optional(), - createdAt: SortOrderSchema.optional(), - updatedAt: SortOrderSchema.optional() -}).strict(); -export const OfflineCountOrderByAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_OfflineCountOrderByAggregateInput_schema) as unknown as z.ZodType; -export const OfflineCountOrderByAggregateInputObjectZodSchema = z.lazy(__makeSchema_OfflineCountOrderByAggregateInput_schema); - - -// File: OfflineMaxOrderByAggregateInput.schema.ts -const __makeSchema_OfflineMaxOrderByAggregateInput_schema = () => z.object({ - id: SortOrderSchema.optional(), - title: SortOrderSchema.optional(), - fileUrl: SortOrderSchema.optional(), - imageUrl: SortOrderSchema.optional(), - publishedAt: SortOrderSchema.optional(), - createdAt: SortOrderSchema.optional(), - updatedAt: SortOrderSchema.optional() -}).strict(); -export const OfflineMaxOrderByAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_OfflineMaxOrderByAggregateInput_schema) as unknown as z.ZodType; -export const OfflineMaxOrderByAggregateInputObjectZodSchema = z.lazy(__makeSchema_OfflineMaxOrderByAggregateInput_schema); - - -// File: OfflineMinOrderByAggregateInput.schema.ts -const __makeSchema_OfflineMinOrderByAggregateInput_schema = () => z.object({ - id: SortOrderSchema.optional(), - title: SortOrderSchema.optional(), - fileUrl: SortOrderSchema.optional(), - imageUrl: SortOrderSchema.optional(), - publishedAt: SortOrderSchema.optional(), - createdAt: SortOrderSchema.optional(), - updatedAt: SortOrderSchema.optional() -}).strict(); -export const OfflineMinOrderByAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_OfflineMinOrderByAggregateInput_schema) as unknown as z.ZodType; -export const OfflineMinOrderByAggregateInputObjectZodSchema = z.lazy(__makeSchema_OfflineMinOrderByAggregateInput_schema); - - -// File: ArticleTagLinkListRelationFilter.schema.ts -const __makeSchema_ArticleTagLinkListRelationFilter_schema = () => z.object({ - get every(){ return ArticleTagLinkWhereInputObjectSchema.optional(); }, - get some(){ return ArticleTagLinkWhereInputObjectSchema.optional(); }, - get none(){ return ArticleTagLinkWhereInputObjectSchema.optional(); } -}).strict(); -export const ArticleTagLinkListRelationFilterObjectSchema: z.ZodType = z.lazy(__makeSchema_ArticleTagLinkListRelationFilter_schema) as unknown as z.ZodType; -export const ArticleTagLinkListRelationFilterObjectZodSchema = z.lazy(__makeSchema_ArticleTagLinkListRelationFilter_schema); - - -// File: ArticleTagLinkOrderByRelationAggregateInput.schema.ts -const __makeSchema_ArticleTagLinkOrderByRelationAggregateInput_schema = () => z.object({ - _count: SortOrderSchema.optional() -}).strict(); -export const ArticleTagLinkOrderByRelationAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_ArticleTagLinkOrderByRelationAggregateInput_schema) as unknown as z.ZodType; -export const ArticleTagLinkOrderByRelationAggregateInputObjectZodSchema = z.lazy(__makeSchema_ArticleTagLinkOrderByRelationAggregateInput_schema); - - -// File: ArticleCountOrderByAggregateInput.schema.ts -const __makeSchema_ArticleCountOrderByAggregateInput_schema = () => z.object({ - id: SortOrderSchema.optional(), - slug: SortOrderSchema.optional(), - title: SortOrderSchema.optional(), - author: SortOrderSchema.optional(), - photographer: SortOrderSchema.optional(), - imageUrl: SortOrderSchema.optional(), - excerpt: SortOrderSchema.optional(), - content: SortOrderSchema.optional(), - isFeatured: SortOrderSchema.optional(), - vimeoId: SortOrderSchema.optional(), - createdAt: SortOrderSchema.optional(), - updatedAt: SortOrderSchema.optional() -}).strict(); -export const ArticleCountOrderByAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_ArticleCountOrderByAggregateInput_schema) as unknown as z.ZodType; -export const ArticleCountOrderByAggregateInputObjectZodSchema = z.lazy(__makeSchema_ArticleCountOrderByAggregateInput_schema); - - -// File: ArticleMaxOrderByAggregateInput.schema.ts -const __makeSchema_ArticleMaxOrderByAggregateInput_schema = () => z.object({ - id: SortOrderSchema.optional(), - slug: SortOrderSchema.optional(), - title: SortOrderSchema.optional(), - author: SortOrderSchema.optional(), - photographer: SortOrderSchema.optional(), - imageUrl: SortOrderSchema.optional(), - excerpt: SortOrderSchema.optional(), - content: SortOrderSchema.optional(), - isFeatured: SortOrderSchema.optional(), - vimeoId: SortOrderSchema.optional(), - createdAt: SortOrderSchema.optional(), - updatedAt: SortOrderSchema.optional() -}).strict(); -export const ArticleMaxOrderByAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_ArticleMaxOrderByAggregateInput_schema) as unknown as z.ZodType; -export const ArticleMaxOrderByAggregateInputObjectZodSchema = z.lazy(__makeSchema_ArticleMaxOrderByAggregateInput_schema); - - -// File: ArticleMinOrderByAggregateInput.schema.ts -const __makeSchema_ArticleMinOrderByAggregateInput_schema = () => z.object({ - id: SortOrderSchema.optional(), - slug: SortOrderSchema.optional(), - title: SortOrderSchema.optional(), - author: SortOrderSchema.optional(), - photographer: SortOrderSchema.optional(), - imageUrl: SortOrderSchema.optional(), - excerpt: SortOrderSchema.optional(), - content: SortOrderSchema.optional(), - isFeatured: SortOrderSchema.optional(), - vimeoId: SortOrderSchema.optional(), - createdAt: SortOrderSchema.optional(), - updatedAt: SortOrderSchema.optional() -}).strict(); -export const ArticleMinOrderByAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_ArticleMinOrderByAggregateInput_schema) as unknown as z.ZodType; -export const ArticleMinOrderByAggregateInputObjectZodSchema = z.lazy(__makeSchema_ArticleMinOrderByAggregateInput_schema); - - -// File: ArticleTagCountOrderByAggregateInput.schema.ts -const __makeSchema_ArticleTagCountOrderByAggregateInput_schema = () => z.object({ - name: SortOrderSchema.optional() -}).strict(); -export const ArticleTagCountOrderByAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_ArticleTagCountOrderByAggregateInput_schema) as unknown as z.ZodType; -export const ArticleTagCountOrderByAggregateInputObjectZodSchema = z.lazy(__makeSchema_ArticleTagCountOrderByAggregateInput_schema); - - -// File: ArticleTagMaxOrderByAggregateInput.schema.ts -const __makeSchema_ArticleTagMaxOrderByAggregateInput_schema = () => z.object({ - name: SortOrderSchema.optional() -}).strict(); -export const ArticleTagMaxOrderByAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_ArticleTagMaxOrderByAggregateInput_schema) as unknown as z.ZodType; -export const ArticleTagMaxOrderByAggregateInputObjectZodSchema = z.lazy(__makeSchema_ArticleTagMaxOrderByAggregateInput_schema); - - -// File: ArticleTagMinOrderByAggregateInput.schema.ts -const __makeSchema_ArticleTagMinOrderByAggregateInput_schema = () => z.object({ - name: SortOrderSchema.optional() -}).strict(); -export const ArticleTagMinOrderByAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_ArticleTagMinOrderByAggregateInput_schema) as unknown as z.ZodType; -export const ArticleTagMinOrderByAggregateInputObjectZodSchema = z.lazy(__makeSchema_ArticleTagMinOrderByAggregateInput_schema); - - -// File: ArticleScalarRelationFilter.schema.ts -const __makeSchema_ArticleScalarRelationFilter_schema = () => z.object({ - get is(){ return ArticleWhereInputObjectSchema.optional(); }, - get isNot(){ return ArticleWhereInputObjectSchema.optional(); } -}).strict(); -export const ArticleScalarRelationFilterObjectSchema: z.ZodType = z.lazy(__makeSchema_ArticleScalarRelationFilter_schema) as unknown as z.ZodType; -export const ArticleScalarRelationFilterObjectZodSchema = z.lazy(__makeSchema_ArticleScalarRelationFilter_schema); - - -// File: ArticleTagScalarRelationFilter.schema.ts -const __makeSchema_ArticleTagScalarRelationFilter_schema = () => z.object({ - get is(){ return ArticleTagWhereInputObjectSchema.optional(); }, - get isNot(){ return ArticleTagWhereInputObjectSchema.optional(); } -}).strict(); -export const ArticleTagScalarRelationFilterObjectSchema: z.ZodType = z.lazy(__makeSchema_ArticleTagScalarRelationFilter_schema) as unknown as z.ZodType; -export const ArticleTagScalarRelationFilterObjectZodSchema = z.lazy(__makeSchema_ArticleTagScalarRelationFilter_schema); - - -// File: ArticleTagLinkArticleIdTagNameCompoundUniqueInput.schema.ts -const __makeSchema_ArticleTagLinkArticleIdTagNameCompoundUniqueInput_schema = () => z.object({ - articleId: z.string(), - tagName: z.string() -}).strict(); -export const ArticleTagLinkArticleIdTagNameCompoundUniqueInputObjectSchema: z.ZodType = z.lazy(__makeSchema_ArticleTagLinkArticleIdTagNameCompoundUniqueInput_schema) as unknown as z.ZodType; -export const ArticleTagLinkArticleIdTagNameCompoundUniqueInputObjectZodSchema = z.lazy(__makeSchema_ArticleTagLinkArticleIdTagNameCompoundUniqueInput_schema); - - -// File: ArticleTagLinkCountOrderByAggregateInput.schema.ts -const __makeSchema_ArticleTagLinkCountOrderByAggregateInput_schema = () => z.object({ - articleId: SortOrderSchema.optional(), - tagName: SortOrderSchema.optional() -}).strict(); -export const ArticleTagLinkCountOrderByAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_ArticleTagLinkCountOrderByAggregateInput_schema) as unknown as z.ZodType; -export const ArticleTagLinkCountOrderByAggregateInputObjectZodSchema = z.lazy(__makeSchema_ArticleTagLinkCountOrderByAggregateInput_schema); - - -// File: ArticleTagLinkMaxOrderByAggregateInput.schema.ts -const __makeSchema_ArticleTagLinkMaxOrderByAggregateInput_schema = () => z.object({ - articleId: SortOrderSchema.optional(), - tagName: SortOrderSchema.optional() -}).strict(); -export const ArticleTagLinkMaxOrderByAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_ArticleTagLinkMaxOrderByAggregateInput_schema) as unknown as z.ZodType; -export const ArticleTagLinkMaxOrderByAggregateInputObjectZodSchema = z.lazy(__makeSchema_ArticleTagLinkMaxOrderByAggregateInput_schema); - - -// File: ArticleTagLinkMinOrderByAggregateInput.schema.ts -const __makeSchema_ArticleTagLinkMinOrderByAggregateInput_schema = () => z.object({ - articleId: SortOrderSchema.optional(), - tagName: SortOrderSchema.optional() -}).strict(); -export const ArticleTagLinkMinOrderByAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_ArticleTagLinkMinOrderByAggregateInput_schema) as unknown as z.ZodType; -export const ArticleTagLinkMinOrderByAggregateInputObjectZodSchema = z.lazy(__makeSchema_ArticleTagLinkMinOrderByAggregateInput_schema); - - -// File: EnumTaskTypeFilter.schema.ts -const __makeSchema_EnumTaskTypeFilter_schema = () => z.object({ - equals: TaskTypeSchema.optional(), - in: TaskTypeSchema.array().optional(), - notIn: TaskTypeSchema.array().optional(), - not: z.union([TaskTypeSchema, NestedEnumTaskTypeFilterObjectSchema]).optional() -}).strict(); -export const EnumTaskTypeFilterObjectSchema: z.ZodType = z.lazy(__makeSchema_EnumTaskTypeFilter_schema) as unknown as z.ZodType; -export const EnumTaskTypeFilterObjectZodSchema = z.lazy(__makeSchema_EnumTaskTypeFilter_schema); - - -// File: EnumTaskStatusFilter.schema.ts -const __makeSchema_EnumTaskStatusFilter_schema = () => z.object({ - equals: TaskStatusSchema.optional(), - in: TaskStatusSchema.array().optional(), - notIn: TaskStatusSchema.array().optional(), - not: z.union([TaskStatusSchema, NestedEnumTaskStatusFilterObjectSchema]).optional() -}).strict(); -export const EnumTaskStatusFilterObjectSchema: z.ZodType = z.lazy(__makeSchema_EnumTaskStatusFilter_schema) as unknown as z.ZodType; -export const EnumTaskStatusFilterObjectZodSchema = z.lazy(__makeSchema_EnumTaskStatusFilter_schema); - - -// File: RecurringTaskNullableScalarRelationFilter.schema.ts -const __makeSchema_RecurringTaskNullableScalarRelationFilter_schema = () => z.object({ - is: RecurringTaskWhereInputObjectSchema.optional().nullable(), - isNot: RecurringTaskWhereInputObjectSchema.optional().nullable() -}).strict(); -export const RecurringTaskNullableScalarRelationFilterObjectSchema: z.ZodType = z.lazy(__makeSchema_RecurringTaskNullableScalarRelationFilter_schema) as unknown as z.ZodType; -export const RecurringTaskNullableScalarRelationFilterObjectZodSchema = z.lazy(__makeSchema_RecurringTaskNullableScalarRelationFilter_schema); - - -// File: TaskCountOrderByAggregateInput.schema.ts -const __makeSchema_TaskCountOrderByAggregateInput_schema = () => z.object({ - id: SortOrderSchema.optional(), - type: SortOrderSchema.optional(), - status: SortOrderSchema.optional(), - payload: SortOrderSchema.optional(), - createdAt: SortOrderSchema.optional(), - scheduledAt: SortOrderSchema.optional(), - processedAt: SortOrderSchema.optional(), - recurringTaskId: SortOrderSchema.optional() -}).strict(); -export const TaskCountOrderByAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_TaskCountOrderByAggregateInput_schema) as unknown as z.ZodType; -export const TaskCountOrderByAggregateInputObjectZodSchema = z.lazy(__makeSchema_TaskCountOrderByAggregateInput_schema); - - -// File: TaskMaxOrderByAggregateInput.schema.ts -const __makeSchema_TaskMaxOrderByAggregateInput_schema = () => z.object({ - id: SortOrderSchema.optional(), - type: SortOrderSchema.optional(), - status: SortOrderSchema.optional(), - createdAt: SortOrderSchema.optional(), - scheduledAt: SortOrderSchema.optional(), - processedAt: SortOrderSchema.optional(), - recurringTaskId: SortOrderSchema.optional() -}).strict(); -export const TaskMaxOrderByAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_TaskMaxOrderByAggregateInput_schema) as unknown as z.ZodType; -export const TaskMaxOrderByAggregateInputObjectZodSchema = z.lazy(__makeSchema_TaskMaxOrderByAggregateInput_schema); - - -// File: TaskMinOrderByAggregateInput.schema.ts -const __makeSchema_TaskMinOrderByAggregateInput_schema = () => z.object({ - id: SortOrderSchema.optional(), - type: SortOrderSchema.optional(), - status: SortOrderSchema.optional(), - createdAt: SortOrderSchema.optional(), - scheduledAt: SortOrderSchema.optional(), - processedAt: SortOrderSchema.optional(), - recurringTaskId: SortOrderSchema.optional() -}).strict(); -export const TaskMinOrderByAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_TaskMinOrderByAggregateInput_schema) as unknown as z.ZodType; -export const TaskMinOrderByAggregateInputObjectZodSchema = z.lazy(__makeSchema_TaskMinOrderByAggregateInput_schema); - - -// File: EnumTaskTypeWithAggregatesFilter.schema.ts -const __makeSchema_EnumTaskTypeWithAggregatesFilter_schema = () => z.object({ - equals: TaskTypeSchema.optional(), - in: TaskTypeSchema.array().optional(), - notIn: TaskTypeSchema.array().optional(), - not: z.union([TaskTypeSchema, NestedEnumTaskTypeWithAggregatesFilterObjectSchema]).optional(), - get _count(){ return NestedIntFilterObjectSchema.optional(); }, - get _min(){ return NestedEnumTaskTypeFilterObjectSchema.optional(); }, - get _max(){ return NestedEnumTaskTypeFilterObjectSchema.optional(); } -}).strict(); -export const EnumTaskTypeWithAggregatesFilterObjectSchema: z.ZodType = z.lazy(__makeSchema_EnumTaskTypeWithAggregatesFilter_schema) as unknown as z.ZodType; -export const EnumTaskTypeWithAggregatesFilterObjectZodSchema = z.lazy(__makeSchema_EnumTaskTypeWithAggregatesFilter_schema); - - -// File: EnumTaskStatusWithAggregatesFilter.schema.ts -const __makeSchema_EnumTaskStatusWithAggregatesFilter_schema = () => z.object({ - equals: TaskStatusSchema.optional(), - in: TaskStatusSchema.array().optional(), - notIn: TaskStatusSchema.array().optional(), - not: z.union([TaskStatusSchema, NestedEnumTaskStatusWithAggregatesFilterObjectSchema]).optional(), - get _count(){ return NestedIntFilterObjectSchema.optional(); }, - get _min(){ return NestedEnumTaskStatusFilterObjectSchema.optional(); }, - get _max(){ return NestedEnumTaskStatusFilterObjectSchema.optional(); } -}).strict(); -export const EnumTaskStatusWithAggregatesFilterObjectSchema: z.ZodType = z.lazy(__makeSchema_EnumTaskStatusWithAggregatesFilter_schema) as unknown as z.ZodType; -export const EnumTaskStatusWithAggregatesFilterObjectZodSchema = z.lazy(__makeSchema_EnumTaskStatusWithAggregatesFilter_schema); - - -// File: TaskListRelationFilter.schema.ts -const __makeSchema_TaskListRelationFilter_schema = () => z.object({ - get every(){ return TaskWhereInputObjectSchema.optional(); }, - get some(){ return TaskWhereInputObjectSchema.optional(); }, - get none(){ return TaskWhereInputObjectSchema.optional(); } -}).strict(); -export const TaskListRelationFilterObjectSchema: z.ZodType = z.lazy(__makeSchema_TaskListRelationFilter_schema) as unknown as z.ZodType; -export const TaskListRelationFilterObjectZodSchema = z.lazy(__makeSchema_TaskListRelationFilter_schema); - - -// File: TaskOrderByRelationAggregateInput.schema.ts -const __makeSchema_TaskOrderByRelationAggregateInput_schema = () => z.object({ - _count: SortOrderSchema.optional() -}).strict(); -export const TaskOrderByRelationAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_TaskOrderByRelationAggregateInput_schema) as unknown as z.ZodType; -export const TaskOrderByRelationAggregateInputObjectZodSchema = z.lazy(__makeSchema_TaskOrderByRelationAggregateInput_schema); - - -// File: RecurringTaskCountOrderByAggregateInput.schema.ts -const __makeSchema_RecurringTaskCountOrderByAggregateInput_schema = () => z.object({ - id: SortOrderSchema.optional(), - type: SortOrderSchema.optional(), - payload: SortOrderSchema.optional(), - createdAt: SortOrderSchema.optional(), - schedule: SortOrderSchema.optional(), - lastRunAt: SortOrderSchema.optional(), - nextRunAt: SortOrderSchema.optional() -}).strict(); -export const RecurringTaskCountOrderByAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_RecurringTaskCountOrderByAggregateInput_schema) as unknown as z.ZodType; -export const RecurringTaskCountOrderByAggregateInputObjectZodSchema = z.lazy(__makeSchema_RecurringTaskCountOrderByAggregateInput_schema); - - -// File: RecurringTaskMaxOrderByAggregateInput.schema.ts -const __makeSchema_RecurringTaskMaxOrderByAggregateInput_schema = () => z.object({ - id: SortOrderSchema.optional(), - type: SortOrderSchema.optional(), - createdAt: SortOrderSchema.optional(), - schedule: SortOrderSchema.optional(), - lastRunAt: SortOrderSchema.optional(), - nextRunAt: SortOrderSchema.optional() -}).strict(); -export const RecurringTaskMaxOrderByAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_RecurringTaskMaxOrderByAggregateInput_schema) as unknown as z.ZodType; -export const RecurringTaskMaxOrderByAggregateInputObjectZodSchema = z.lazy(__makeSchema_RecurringTaskMaxOrderByAggregateInput_schema); - - -// File: RecurringTaskMinOrderByAggregateInput.schema.ts -const __makeSchema_RecurringTaskMinOrderByAggregateInput_schema = () => z.object({ - id: SortOrderSchema.optional(), - type: SortOrderSchema.optional(), - createdAt: SortOrderSchema.optional(), - schedule: SortOrderSchema.optional(), - lastRunAt: SortOrderSchema.optional(), - nextRunAt: SortOrderSchema.optional() -}).strict(); -export const RecurringTaskMinOrderByAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_RecurringTaskMinOrderByAggregateInput_schema) as unknown as z.ZodType; -export const RecurringTaskMinOrderByAggregateInputObjectZodSchema = z.lazy(__makeSchema_RecurringTaskMinOrderByAggregateInput_schema); - - -// File: FeedbackQuestionListRelationFilter.schema.ts -const __makeSchema_FeedbackQuestionListRelationFilter_schema = () => z.object({ - get every(){ return FeedbackQuestionWhereInputObjectSchema.optional(); }, - get some(){ return FeedbackQuestionWhereInputObjectSchema.optional(); }, - get none(){ return FeedbackQuestionWhereInputObjectSchema.optional(); } -}).strict(); -export const FeedbackQuestionListRelationFilterObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackQuestionListRelationFilter_schema) as unknown as z.ZodType; -export const FeedbackQuestionListRelationFilterObjectZodSchema = z.lazy(__makeSchema_FeedbackQuestionListRelationFilter_schema); - - -// File: FeedbackFormAnswerListRelationFilter.schema.ts -const __makeSchema_FeedbackFormAnswerListRelationFilter_schema = () => z.object({ - get every(){ return FeedbackFormAnswerWhereInputObjectSchema.optional(); }, - get some(){ return FeedbackFormAnswerWhereInputObjectSchema.optional(); }, - get none(){ return FeedbackFormAnswerWhereInputObjectSchema.optional(); } -}).strict(); -export const FeedbackFormAnswerListRelationFilterObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackFormAnswerListRelationFilter_schema) as unknown as z.ZodType; -export const FeedbackFormAnswerListRelationFilterObjectZodSchema = z.lazy(__makeSchema_FeedbackFormAnswerListRelationFilter_schema); - - -// File: FeedbackQuestionOrderByRelationAggregateInput.schema.ts -const __makeSchema_FeedbackQuestionOrderByRelationAggregateInput_schema = () => z.object({ - _count: SortOrderSchema.optional() -}).strict(); -export const FeedbackQuestionOrderByRelationAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackQuestionOrderByRelationAggregateInput_schema) as unknown as z.ZodType; -export const FeedbackQuestionOrderByRelationAggregateInputObjectZodSchema = z.lazy(__makeSchema_FeedbackQuestionOrderByRelationAggregateInput_schema); - - -// File: FeedbackFormAnswerOrderByRelationAggregateInput.schema.ts -const __makeSchema_FeedbackFormAnswerOrderByRelationAggregateInput_schema = () => z.object({ - _count: SortOrderSchema.optional() -}).strict(); -export const FeedbackFormAnswerOrderByRelationAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackFormAnswerOrderByRelationAggregateInput_schema) as unknown as z.ZodType; -export const FeedbackFormAnswerOrderByRelationAggregateInputObjectZodSchema = z.lazy(__makeSchema_FeedbackFormAnswerOrderByRelationAggregateInput_schema); - - -// File: FeedbackFormCountOrderByAggregateInput.schema.ts -const __makeSchema_FeedbackFormCountOrderByAggregateInput_schema = () => z.object({ - id: SortOrderSchema.optional(), - publicResultsToken: SortOrderSchema.optional(), - createdAt: SortOrderSchema.optional(), - updatedAt: SortOrderSchema.optional(), - answerDeadline: SortOrderSchema.optional(), - eventId: SortOrderSchema.optional() -}).strict(); -export const FeedbackFormCountOrderByAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackFormCountOrderByAggregateInput_schema) as unknown as z.ZodType; -export const FeedbackFormCountOrderByAggregateInputObjectZodSchema = z.lazy(__makeSchema_FeedbackFormCountOrderByAggregateInput_schema); - - -// File: FeedbackFormMaxOrderByAggregateInput.schema.ts -const __makeSchema_FeedbackFormMaxOrderByAggregateInput_schema = () => z.object({ - id: SortOrderSchema.optional(), - publicResultsToken: SortOrderSchema.optional(), - createdAt: SortOrderSchema.optional(), - updatedAt: SortOrderSchema.optional(), - answerDeadline: SortOrderSchema.optional(), - eventId: SortOrderSchema.optional() -}).strict(); -export const FeedbackFormMaxOrderByAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackFormMaxOrderByAggregateInput_schema) as unknown as z.ZodType; -export const FeedbackFormMaxOrderByAggregateInputObjectZodSchema = z.lazy(__makeSchema_FeedbackFormMaxOrderByAggregateInput_schema); - - -// File: FeedbackFormMinOrderByAggregateInput.schema.ts -const __makeSchema_FeedbackFormMinOrderByAggregateInput_schema = () => z.object({ - id: SortOrderSchema.optional(), - publicResultsToken: SortOrderSchema.optional(), - createdAt: SortOrderSchema.optional(), - updatedAt: SortOrderSchema.optional(), - answerDeadline: SortOrderSchema.optional(), - eventId: SortOrderSchema.optional() -}).strict(); -export const FeedbackFormMinOrderByAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackFormMinOrderByAggregateInput_schema) as unknown as z.ZodType; -export const FeedbackFormMinOrderByAggregateInputObjectZodSchema = z.lazy(__makeSchema_FeedbackFormMinOrderByAggregateInput_schema); - - -// File: EnumFeedbackQuestionTypeFilter.schema.ts -const __makeSchema_EnumFeedbackQuestionTypeFilter_schema = () => z.object({ - equals: FeedbackQuestionTypeSchema.optional(), - in: FeedbackQuestionTypeSchema.array().optional(), - notIn: FeedbackQuestionTypeSchema.array().optional(), - not: z.union([FeedbackQuestionTypeSchema, NestedEnumFeedbackQuestionTypeFilterObjectSchema]).optional() -}).strict(); -export const EnumFeedbackQuestionTypeFilterObjectSchema: z.ZodType = z.lazy(__makeSchema_EnumFeedbackQuestionTypeFilter_schema) as unknown as z.ZodType; -export const EnumFeedbackQuestionTypeFilterObjectZodSchema = z.lazy(__makeSchema_EnumFeedbackQuestionTypeFilter_schema); - - -// File: FeedbackFormScalarRelationFilter.schema.ts -const __makeSchema_FeedbackFormScalarRelationFilter_schema = () => z.object({ - get is(){ return FeedbackFormWhereInputObjectSchema.optional(); }, - get isNot(){ return FeedbackFormWhereInputObjectSchema.optional(); } -}).strict(); -export const FeedbackFormScalarRelationFilterObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackFormScalarRelationFilter_schema) as unknown as z.ZodType; -export const FeedbackFormScalarRelationFilterObjectZodSchema = z.lazy(__makeSchema_FeedbackFormScalarRelationFilter_schema); - - -// File: FeedbackQuestionOptionListRelationFilter.schema.ts -const __makeSchema_FeedbackQuestionOptionListRelationFilter_schema = () => z.object({ - get every(){ return FeedbackQuestionOptionWhereInputObjectSchema.optional(); }, - get some(){ return FeedbackQuestionOptionWhereInputObjectSchema.optional(); }, - get none(){ return FeedbackQuestionOptionWhereInputObjectSchema.optional(); } -}).strict(); -export const FeedbackQuestionOptionListRelationFilterObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackQuestionOptionListRelationFilter_schema) as unknown as z.ZodType; -export const FeedbackQuestionOptionListRelationFilterObjectZodSchema = z.lazy(__makeSchema_FeedbackQuestionOptionListRelationFilter_schema); - - -// File: FeedbackQuestionAnswerListRelationFilter.schema.ts -const __makeSchema_FeedbackQuestionAnswerListRelationFilter_schema = () => z.object({ - get every(){ return FeedbackQuestionAnswerWhereInputObjectSchema.optional(); }, - get some(){ return FeedbackQuestionAnswerWhereInputObjectSchema.optional(); }, - get none(){ return FeedbackQuestionAnswerWhereInputObjectSchema.optional(); } -}).strict(); -export const FeedbackQuestionAnswerListRelationFilterObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackQuestionAnswerListRelationFilter_schema) as unknown as z.ZodType; -export const FeedbackQuestionAnswerListRelationFilterObjectZodSchema = z.lazy(__makeSchema_FeedbackQuestionAnswerListRelationFilter_schema); - - -// File: FeedbackQuestionOptionOrderByRelationAggregateInput.schema.ts -const __makeSchema_FeedbackQuestionOptionOrderByRelationAggregateInput_schema = () => z.object({ - _count: SortOrderSchema.optional() -}).strict(); -export const FeedbackQuestionOptionOrderByRelationAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackQuestionOptionOrderByRelationAggregateInput_schema) as unknown as z.ZodType; -export const FeedbackQuestionOptionOrderByRelationAggregateInputObjectZodSchema = z.lazy(__makeSchema_FeedbackQuestionOptionOrderByRelationAggregateInput_schema); - - -// File: FeedbackQuestionAnswerOrderByRelationAggregateInput.schema.ts -const __makeSchema_FeedbackQuestionAnswerOrderByRelationAggregateInput_schema = () => z.object({ - _count: SortOrderSchema.optional() -}).strict(); -export const FeedbackQuestionAnswerOrderByRelationAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackQuestionAnswerOrderByRelationAggregateInput_schema) as unknown as z.ZodType; -export const FeedbackQuestionAnswerOrderByRelationAggregateInputObjectZodSchema = z.lazy(__makeSchema_FeedbackQuestionAnswerOrderByRelationAggregateInput_schema); - - -// File: FeedbackQuestionCountOrderByAggregateInput.schema.ts -const __makeSchema_FeedbackQuestionCountOrderByAggregateInput_schema = () => z.object({ - id: SortOrderSchema.optional(), - label: SortOrderSchema.optional(), - required: SortOrderSchema.optional(), - showInPublicResults: SortOrderSchema.optional(), - type: SortOrderSchema.optional(), - order: SortOrderSchema.optional(), - createdAt: SortOrderSchema.optional(), - updatedAt: SortOrderSchema.optional(), - feedbackFormId: SortOrderSchema.optional() -}).strict(); -export const FeedbackQuestionCountOrderByAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackQuestionCountOrderByAggregateInput_schema) as unknown as z.ZodType; -export const FeedbackQuestionCountOrderByAggregateInputObjectZodSchema = z.lazy(__makeSchema_FeedbackQuestionCountOrderByAggregateInput_schema); - - -// File: FeedbackQuestionAvgOrderByAggregateInput.schema.ts -const __makeSchema_FeedbackQuestionAvgOrderByAggregateInput_schema = () => z.object({ - order: SortOrderSchema.optional() -}).strict(); -export const FeedbackQuestionAvgOrderByAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackQuestionAvgOrderByAggregateInput_schema) as unknown as z.ZodType; -export const FeedbackQuestionAvgOrderByAggregateInputObjectZodSchema = z.lazy(__makeSchema_FeedbackQuestionAvgOrderByAggregateInput_schema); - - -// File: FeedbackQuestionMaxOrderByAggregateInput.schema.ts -const __makeSchema_FeedbackQuestionMaxOrderByAggregateInput_schema = () => z.object({ - id: SortOrderSchema.optional(), - label: SortOrderSchema.optional(), - required: SortOrderSchema.optional(), - showInPublicResults: SortOrderSchema.optional(), - type: SortOrderSchema.optional(), - order: SortOrderSchema.optional(), - createdAt: SortOrderSchema.optional(), - updatedAt: SortOrderSchema.optional(), - feedbackFormId: SortOrderSchema.optional() -}).strict(); -export const FeedbackQuestionMaxOrderByAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackQuestionMaxOrderByAggregateInput_schema) as unknown as z.ZodType; -export const FeedbackQuestionMaxOrderByAggregateInputObjectZodSchema = z.lazy(__makeSchema_FeedbackQuestionMaxOrderByAggregateInput_schema); - - -// File: FeedbackQuestionMinOrderByAggregateInput.schema.ts -const __makeSchema_FeedbackQuestionMinOrderByAggregateInput_schema = () => z.object({ - id: SortOrderSchema.optional(), - label: SortOrderSchema.optional(), - required: SortOrderSchema.optional(), - showInPublicResults: SortOrderSchema.optional(), - type: SortOrderSchema.optional(), - order: SortOrderSchema.optional(), - createdAt: SortOrderSchema.optional(), - updatedAt: SortOrderSchema.optional(), - feedbackFormId: SortOrderSchema.optional() -}).strict(); -export const FeedbackQuestionMinOrderByAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackQuestionMinOrderByAggregateInput_schema) as unknown as z.ZodType; -export const FeedbackQuestionMinOrderByAggregateInputObjectZodSchema = z.lazy(__makeSchema_FeedbackQuestionMinOrderByAggregateInput_schema); - - -// File: FeedbackQuestionSumOrderByAggregateInput.schema.ts -const __makeSchema_FeedbackQuestionSumOrderByAggregateInput_schema = () => z.object({ - order: SortOrderSchema.optional() -}).strict(); -export const FeedbackQuestionSumOrderByAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackQuestionSumOrderByAggregateInput_schema) as unknown as z.ZodType; -export const FeedbackQuestionSumOrderByAggregateInputObjectZodSchema = z.lazy(__makeSchema_FeedbackQuestionSumOrderByAggregateInput_schema); - - -// File: EnumFeedbackQuestionTypeWithAggregatesFilter.schema.ts -const __makeSchema_EnumFeedbackQuestionTypeWithAggregatesFilter_schema = () => z.object({ - equals: FeedbackQuestionTypeSchema.optional(), - in: FeedbackQuestionTypeSchema.array().optional(), - notIn: FeedbackQuestionTypeSchema.array().optional(), - not: z.union([FeedbackQuestionTypeSchema, NestedEnumFeedbackQuestionTypeWithAggregatesFilterObjectSchema]).optional(), - get _count(){ return NestedIntFilterObjectSchema.optional(); }, - get _min(){ return NestedEnumFeedbackQuestionTypeFilterObjectSchema.optional(); }, - get _max(){ return NestedEnumFeedbackQuestionTypeFilterObjectSchema.optional(); } -}).strict(); -export const EnumFeedbackQuestionTypeWithAggregatesFilterObjectSchema: z.ZodType = z.lazy(__makeSchema_EnumFeedbackQuestionTypeWithAggregatesFilter_schema) as unknown as z.ZodType; -export const EnumFeedbackQuestionTypeWithAggregatesFilterObjectZodSchema = z.lazy(__makeSchema_EnumFeedbackQuestionTypeWithAggregatesFilter_schema); - - -// File: FeedbackQuestionScalarRelationFilter.schema.ts -const __makeSchema_FeedbackQuestionScalarRelationFilter_schema = () => z.object({ - get is(){ return FeedbackQuestionWhereInputObjectSchema.optional(); }, - get isNot(){ return FeedbackQuestionWhereInputObjectSchema.optional(); } -}).strict(); -export const FeedbackQuestionScalarRelationFilterObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackQuestionScalarRelationFilter_schema) as unknown as z.ZodType; -export const FeedbackQuestionScalarRelationFilterObjectZodSchema = z.lazy(__makeSchema_FeedbackQuestionScalarRelationFilter_schema); - - -// File: FeedbackQuestionAnswerOptionLinkListRelationFilter.schema.ts -const __makeSchema_FeedbackQuestionAnswerOptionLinkListRelationFilter_schema = () => z.object({ - get every(){ return FeedbackQuestionAnswerOptionLinkWhereInputObjectSchema.optional(); }, - get some(){ return FeedbackQuestionAnswerOptionLinkWhereInputObjectSchema.optional(); }, - get none(){ return FeedbackQuestionAnswerOptionLinkWhereInputObjectSchema.optional(); } -}).strict(); -export const FeedbackQuestionAnswerOptionLinkListRelationFilterObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackQuestionAnswerOptionLinkListRelationFilter_schema) as unknown as z.ZodType; -export const FeedbackQuestionAnswerOptionLinkListRelationFilterObjectZodSchema = z.lazy(__makeSchema_FeedbackQuestionAnswerOptionLinkListRelationFilter_schema); - - -// File: FeedbackQuestionAnswerOptionLinkOrderByRelationAggregateInput.schema.ts -const __makeSchema_FeedbackQuestionAnswerOptionLinkOrderByRelationAggregateInput_schema = () => z.object({ - _count: SortOrderSchema.optional() -}).strict(); -export const FeedbackQuestionAnswerOptionLinkOrderByRelationAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackQuestionAnswerOptionLinkOrderByRelationAggregateInput_schema) as unknown as z.ZodType; -export const FeedbackQuestionAnswerOptionLinkOrderByRelationAggregateInputObjectZodSchema = z.lazy(__makeSchema_FeedbackQuestionAnswerOptionLinkOrderByRelationAggregateInput_schema); - - -// File: FeedbackQuestionOptionQuestionIdNameCompoundUniqueInput.schema.ts -const __makeSchema_FeedbackQuestionOptionQuestionIdNameCompoundUniqueInput_schema = () => z.object({ - questionId: z.string(), - name: z.string() -}).strict(); -export const FeedbackQuestionOptionQuestionIdNameCompoundUniqueInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackQuestionOptionQuestionIdNameCompoundUniqueInput_schema) as unknown as z.ZodType; -export const FeedbackQuestionOptionQuestionIdNameCompoundUniqueInputObjectZodSchema = z.lazy(__makeSchema_FeedbackQuestionOptionQuestionIdNameCompoundUniqueInput_schema); - - -// File: FeedbackQuestionOptionCountOrderByAggregateInput.schema.ts -const __makeSchema_FeedbackQuestionOptionCountOrderByAggregateInput_schema = () => z.object({ - id: SortOrderSchema.optional(), - name: SortOrderSchema.optional(), - questionId: SortOrderSchema.optional() -}).strict(); -export const FeedbackQuestionOptionCountOrderByAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackQuestionOptionCountOrderByAggregateInput_schema) as unknown as z.ZodType; -export const FeedbackQuestionOptionCountOrderByAggregateInputObjectZodSchema = z.lazy(__makeSchema_FeedbackQuestionOptionCountOrderByAggregateInput_schema); - - -// File: FeedbackQuestionOptionMaxOrderByAggregateInput.schema.ts -const __makeSchema_FeedbackQuestionOptionMaxOrderByAggregateInput_schema = () => z.object({ - id: SortOrderSchema.optional(), - name: SortOrderSchema.optional(), - questionId: SortOrderSchema.optional() -}).strict(); -export const FeedbackQuestionOptionMaxOrderByAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackQuestionOptionMaxOrderByAggregateInput_schema) as unknown as z.ZodType; -export const FeedbackQuestionOptionMaxOrderByAggregateInputObjectZodSchema = z.lazy(__makeSchema_FeedbackQuestionOptionMaxOrderByAggregateInput_schema); - - -// File: FeedbackQuestionOptionMinOrderByAggregateInput.schema.ts -const __makeSchema_FeedbackQuestionOptionMinOrderByAggregateInput_schema = () => z.object({ - id: SortOrderSchema.optional(), - name: SortOrderSchema.optional(), - questionId: SortOrderSchema.optional() -}).strict(); -export const FeedbackQuestionOptionMinOrderByAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackQuestionOptionMinOrderByAggregateInput_schema) as unknown as z.ZodType; -export const FeedbackQuestionOptionMinOrderByAggregateInputObjectZodSchema = z.lazy(__makeSchema_FeedbackQuestionOptionMinOrderByAggregateInput_schema); - - -// File: JsonNullableFilter.schema.ts -const __makeSchema_JsonNullableFilter_schema = () => z.object({ - equals: jsonSchema.optional(), - path: z.string().array().optional(), - mode: QueryModeSchema.optional(), - string_contains: z.string().optional(), - string_starts_with: z.string().optional(), - string_ends_with: z.string().optional(), - array_starts_with: jsonSchema.optional().nullable(), - array_ends_with: jsonSchema.optional().nullable(), - array_contains: jsonSchema.optional().nullable(), - lt: jsonSchema.optional(), - lte: jsonSchema.optional(), - gt: jsonSchema.optional(), - gte: jsonSchema.optional(), - not: jsonSchema.optional() -}).strict(); -export const JsonNullableFilterObjectSchema: z.ZodType = z.lazy(__makeSchema_JsonNullableFilter_schema) as unknown as z.ZodType; -export const JsonNullableFilterObjectZodSchema = z.lazy(__makeSchema_JsonNullableFilter_schema); - - -// File: FeedbackFormAnswerScalarRelationFilter.schema.ts -const __makeSchema_FeedbackFormAnswerScalarRelationFilter_schema = () => z.object({ - get is(){ return FeedbackFormAnswerWhereInputObjectSchema.optional(); }, - get isNot(){ return FeedbackFormAnswerWhereInputObjectSchema.optional(); } -}).strict(); -export const FeedbackFormAnswerScalarRelationFilterObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackFormAnswerScalarRelationFilter_schema) as unknown as z.ZodType; -export const FeedbackFormAnswerScalarRelationFilterObjectZodSchema = z.lazy(__makeSchema_FeedbackFormAnswerScalarRelationFilter_schema); - - -// File: FeedbackQuestionAnswerCountOrderByAggregateInput.schema.ts -const __makeSchema_FeedbackQuestionAnswerCountOrderByAggregateInput_schema = () => z.object({ - id: SortOrderSchema.optional(), - value: SortOrderSchema.optional(), - questionId: SortOrderSchema.optional(), - formAnswerId: SortOrderSchema.optional() -}).strict(); -export const FeedbackQuestionAnswerCountOrderByAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackQuestionAnswerCountOrderByAggregateInput_schema) as unknown as z.ZodType; -export const FeedbackQuestionAnswerCountOrderByAggregateInputObjectZodSchema = z.lazy(__makeSchema_FeedbackQuestionAnswerCountOrderByAggregateInput_schema); - - -// File: FeedbackQuestionAnswerMaxOrderByAggregateInput.schema.ts -const __makeSchema_FeedbackQuestionAnswerMaxOrderByAggregateInput_schema = () => z.object({ - id: SortOrderSchema.optional(), - questionId: SortOrderSchema.optional(), - formAnswerId: SortOrderSchema.optional() -}).strict(); -export const FeedbackQuestionAnswerMaxOrderByAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackQuestionAnswerMaxOrderByAggregateInput_schema) as unknown as z.ZodType; -export const FeedbackQuestionAnswerMaxOrderByAggregateInputObjectZodSchema = z.lazy(__makeSchema_FeedbackQuestionAnswerMaxOrderByAggregateInput_schema); - - -// File: FeedbackQuestionAnswerMinOrderByAggregateInput.schema.ts -const __makeSchema_FeedbackQuestionAnswerMinOrderByAggregateInput_schema = () => z.object({ - id: SortOrderSchema.optional(), - questionId: SortOrderSchema.optional(), - formAnswerId: SortOrderSchema.optional() -}).strict(); -export const FeedbackQuestionAnswerMinOrderByAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackQuestionAnswerMinOrderByAggregateInput_schema) as unknown as z.ZodType; -export const FeedbackQuestionAnswerMinOrderByAggregateInputObjectZodSchema = z.lazy(__makeSchema_FeedbackQuestionAnswerMinOrderByAggregateInput_schema); - - -// File: JsonNullableWithAggregatesFilter.schema.ts -const __makeSchema_JsonNullableWithAggregatesFilter_schema = () => z.object({ - equals: jsonSchema.optional(), - path: z.string().array().optional(), - mode: QueryModeSchema.optional(), - string_contains: z.string().optional(), - string_starts_with: z.string().optional(), - string_ends_with: z.string().optional(), - array_starts_with: jsonSchema.optional().nullable(), - array_ends_with: jsonSchema.optional().nullable(), - array_contains: jsonSchema.optional().nullable(), - lt: jsonSchema.optional(), - lte: jsonSchema.optional(), - gt: jsonSchema.optional(), - gte: jsonSchema.optional(), - not: jsonSchema.optional(), - get _count(){ return NestedIntNullableFilterObjectSchema.optional(); }, - get _min(){ return NestedJsonNullableFilterObjectSchema.optional(); }, - get _max(){ return NestedJsonNullableFilterObjectSchema.optional(); } -}).strict(); -export const JsonNullableWithAggregatesFilterObjectSchema: z.ZodType = z.lazy(__makeSchema_JsonNullableWithAggregatesFilter_schema) as unknown as z.ZodType; -export const JsonNullableWithAggregatesFilterObjectZodSchema = z.lazy(__makeSchema_JsonNullableWithAggregatesFilter_schema); - - -// File: FeedbackQuestionOptionScalarRelationFilter.schema.ts -const __makeSchema_FeedbackQuestionOptionScalarRelationFilter_schema = () => z.object({ - get is(){ return FeedbackQuestionOptionWhereInputObjectSchema.optional(); }, - get isNot(){ return FeedbackQuestionOptionWhereInputObjectSchema.optional(); } -}).strict(); -export const FeedbackQuestionOptionScalarRelationFilterObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackQuestionOptionScalarRelationFilter_schema) as unknown as z.ZodType; -export const FeedbackQuestionOptionScalarRelationFilterObjectZodSchema = z.lazy(__makeSchema_FeedbackQuestionOptionScalarRelationFilter_schema); - - -// File: FeedbackQuestionAnswerScalarRelationFilter.schema.ts -const __makeSchema_FeedbackQuestionAnswerScalarRelationFilter_schema = () => z.object({ - get is(){ return FeedbackQuestionAnswerWhereInputObjectSchema.optional(); }, - get isNot(){ return FeedbackQuestionAnswerWhereInputObjectSchema.optional(); } -}).strict(); -export const FeedbackQuestionAnswerScalarRelationFilterObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackQuestionAnswerScalarRelationFilter_schema) as unknown as z.ZodType; -export const FeedbackQuestionAnswerScalarRelationFilterObjectZodSchema = z.lazy(__makeSchema_FeedbackQuestionAnswerScalarRelationFilter_schema); - - -// File: FeedbackQuestionAnswerOptionLinkFeedbackQuestionOptionIdFeedbackQuestionAnswerIdCompoundUniqueInput.schema.ts -const __makeSchema_FeedbackQuestionAnswerOptionLinkFeedbackQuestionOptionIdFeedbackQuestionAnswerIdCompoundUniqueInput_schema = () => z.object({ - feedbackQuestionOptionId: z.string(), - feedbackQuestionAnswerId: z.string() -}).strict(); -export const FeedbackQuestionAnswerOptionLinkFeedbackQuestionOptionIdFeedbackQuestionAnswerIdCompoundUniqueInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackQuestionAnswerOptionLinkFeedbackQuestionOptionIdFeedbackQuestionAnswerIdCompoundUniqueInput_schema) as unknown as z.ZodType; -export const FeedbackQuestionAnswerOptionLinkFeedbackQuestionOptionIdFeedbackQuestionAnswerIdCompoundUniqueInputObjectZodSchema = z.lazy(__makeSchema_FeedbackQuestionAnswerOptionLinkFeedbackQuestionOptionIdFeedbackQuestionAnswerIdCompoundUniqueInput_schema); - - -// File: FeedbackQuestionAnswerOptionLinkCountOrderByAggregateInput.schema.ts -const __makeSchema_FeedbackQuestionAnswerOptionLinkCountOrderByAggregateInput_schema = () => z.object({ - feedbackQuestionOptionId: SortOrderSchema.optional(), - feedbackQuestionAnswerId: SortOrderSchema.optional() -}).strict(); -export const FeedbackQuestionAnswerOptionLinkCountOrderByAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackQuestionAnswerOptionLinkCountOrderByAggregateInput_schema) as unknown as z.ZodType; -export const FeedbackQuestionAnswerOptionLinkCountOrderByAggregateInputObjectZodSchema = z.lazy(__makeSchema_FeedbackQuestionAnswerOptionLinkCountOrderByAggregateInput_schema); - - -// File: FeedbackQuestionAnswerOptionLinkMaxOrderByAggregateInput.schema.ts -const __makeSchema_FeedbackQuestionAnswerOptionLinkMaxOrderByAggregateInput_schema = () => z.object({ - feedbackQuestionOptionId: SortOrderSchema.optional(), - feedbackQuestionAnswerId: SortOrderSchema.optional() -}).strict(); -export const FeedbackQuestionAnswerOptionLinkMaxOrderByAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackQuestionAnswerOptionLinkMaxOrderByAggregateInput_schema) as unknown as z.ZodType; -export const FeedbackQuestionAnswerOptionLinkMaxOrderByAggregateInputObjectZodSchema = z.lazy(__makeSchema_FeedbackQuestionAnswerOptionLinkMaxOrderByAggregateInput_schema); - - -// File: FeedbackQuestionAnswerOptionLinkMinOrderByAggregateInput.schema.ts -const __makeSchema_FeedbackQuestionAnswerOptionLinkMinOrderByAggregateInput_schema = () => z.object({ - feedbackQuestionOptionId: SortOrderSchema.optional(), - feedbackQuestionAnswerId: SortOrderSchema.optional() -}).strict(); -export const FeedbackQuestionAnswerOptionLinkMinOrderByAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackQuestionAnswerOptionLinkMinOrderByAggregateInput_schema) as unknown as z.ZodType; -export const FeedbackQuestionAnswerOptionLinkMinOrderByAggregateInputObjectZodSchema = z.lazy(__makeSchema_FeedbackQuestionAnswerOptionLinkMinOrderByAggregateInput_schema); - - -// File: AttendeeScalarRelationFilter.schema.ts -const __makeSchema_AttendeeScalarRelationFilter_schema = () => z.object({ - get is(){ return AttendeeWhereInputObjectSchema.optional(); }, - get isNot(){ return AttendeeWhereInputObjectSchema.optional(); } -}).strict(); -export const AttendeeScalarRelationFilterObjectSchema: z.ZodType = z.lazy(__makeSchema_AttendeeScalarRelationFilter_schema) as unknown as z.ZodType; -export const AttendeeScalarRelationFilterObjectZodSchema = z.lazy(__makeSchema_AttendeeScalarRelationFilter_schema); - - -// File: FeedbackFormAnswerCountOrderByAggregateInput.schema.ts -const __makeSchema_FeedbackFormAnswerCountOrderByAggregateInput_schema = () => z.object({ - id: SortOrderSchema.optional(), - createdAt: SortOrderSchema.optional(), - updatedAt: SortOrderSchema.optional(), - feedbackFormId: SortOrderSchema.optional(), - attendeeId: SortOrderSchema.optional() -}).strict(); -export const FeedbackFormAnswerCountOrderByAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackFormAnswerCountOrderByAggregateInput_schema) as unknown as z.ZodType; -export const FeedbackFormAnswerCountOrderByAggregateInputObjectZodSchema = z.lazy(__makeSchema_FeedbackFormAnswerCountOrderByAggregateInput_schema); - - -// File: FeedbackFormAnswerMaxOrderByAggregateInput.schema.ts -const __makeSchema_FeedbackFormAnswerMaxOrderByAggregateInput_schema = () => z.object({ - id: SortOrderSchema.optional(), - createdAt: SortOrderSchema.optional(), - updatedAt: SortOrderSchema.optional(), - feedbackFormId: SortOrderSchema.optional(), - attendeeId: SortOrderSchema.optional() -}).strict(); -export const FeedbackFormAnswerMaxOrderByAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackFormAnswerMaxOrderByAggregateInput_schema) as unknown as z.ZodType; -export const FeedbackFormAnswerMaxOrderByAggregateInputObjectZodSchema = z.lazy(__makeSchema_FeedbackFormAnswerMaxOrderByAggregateInput_schema); - - -// File: FeedbackFormAnswerMinOrderByAggregateInput.schema.ts -const __makeSchema_FeedbackFormAnswerMinOrderByAggregateInput_schema = () => z.object({ - id: SortOrderSchema.optional(), - createdAt: SortOrderSchema.optional(), - updatedAt: SortOrderSchema.optional(), - feedbackFormId: SortOrderSchema.optional(), - attendeeId: SortOrderSchema.optional() -}).strict(); -export const FeedbackFormAnswerMinOrderByAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackFormAnswerMinOrderByAggregateInput_schema) as unknown as z.ZodType; -export const FeedbackFormAnswerMinOrderByAggregateInputObjectZodSchema = z.lazy(__makeSchema_FeedbackFormAnswerMinOrderByAggregateInput_schema); - - -// File: BigIntFilter.schema.ts -const __makeSchema_BigIntFilter_schema = () => z.object({ - equals: z.bigint().optional(), - in: z.bigint().array().optional(), - notIn: z.bigint().array().optional(), - lt: z.bigint().optional(), - lte: z.bigint().optional(), - gt: z.bigint().optional(), - gte: z.bigint().optional(), - not: z.union([z.bigint(), NestedBigIntFilterObjectSchema]).optional() -}).strict(); -export const BigIntFilterObjectSchema: z.ZodType = z.lazy(__makeSchema_BigIntFilter_schema) as unknown as z.ZodType; -export const BigIntFilterObjectZodSchema = z.lazy(__makeSchema_BigIntFilter_schema); - - -// File: AuditLogCountOrderByAggregateInput.schema.ts -const __makeSchema_AuditLogCountOrderByAggregateInput_schema = () => z.object({ - id: SortOrderSchema.optional(), - tableName: SortOrderSchema.optional(), - rowId: SortOrderSchema.optional(), - createdAt: SortOrderSchema.optional(), - operation: SortOrderSchema.optional(), - rowData: SortOrderSchema.optional(), - transactionId: SortOrderSchema.optional(), - userId: SortOrderSchema.optional() -}).strict(); -export const AuditLogCountOrderByAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_AuditLogCountOrderByAggregateInput_schema) as unknown as z.ZodType; -export const AuditLogCountOrderByAggregateInputObjectZodSchema = z.lazy(__makeSchema_AuditLogCountOrderByAggregateInput_schema); - - -// File: AuditLogAvgOrderByAggregateInput.schema.ts -const __makeSchema_AuditLogAvgOrderByAggregateInput_schema = () => z.object({ - transactionId: SortOrderSchema.optional() -}).strict(); -export const AuditLogAvgOrderByAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_AuditLogAvgOrderByAggregateInput_schema) as unknown as z.ZodType; -export const AuditLogAvgOrderByAggregateInputObjectZodSchema = z.lazy(__makeSchema_AuditLogAvgOrderByAggregateInput_schema); - - -// File: AuditLogMaxOrderByAggregateInput.schema.ts -const __makeSchema_AuditLogMaxOrderByAggregateInput_schema = () => z.object({ - id: SortOrderSchema.optional(), - tableName: SortOrderSchema.optional(), - rowId: SortOrderSchema.optional(), - createdAt: SortOrderSchema.optional(), - operation: SortOrderSchema.optional(), - transactionId: SortOrderSchema.optional(), - userId: SortOrderSchema.optional() -}).strict(); -export const AuditLogMaxOrderByAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_AuditLogMaxOrderByAggregateInput_schema) as unknown as z.ZodType; -export const AuditLogMaxOrderByAggregateInputObjectZodSchema = z.lazy(__makeSchema_AuditLogMaxOrderByAggregateInput_schema); - - -// File: AuditLogMinOrderByAggregateInput.schema.ts -const __makeSchema_AuditLogMinOrderByAggregateInput_schema = () => z.object({ - id: SortOrderSchema.optional(), - tableName: SortOrderSchema.optional(), - rowId: SortOrderSchema.optional(), - createdAt: SortOrderSchema.optional(), - operation: SortOrderSchema.optional(), - transactionId: SortOrderSchema.optional(), - userId: SortOrderSchema.optional() -}).strict(); -export const AuditLogMinOrderByAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_AuditLogMinOrderByAggregateInput_schema) as unknown as z.ZodType; -export const AuditLogMinOrderByAggregateInputObjectZodSchema = z.lazy(__makeSchema_AuditLogMinOrderByAggregateInput_schema); - - -// File: AuditLogSumOrderByAggregateInput.schema.ts -const __makeSchema_AuditLogSumOrderByAggregateInput_schema = () => z.object({ - transactionId: SortOrderSchema.optional() -}).strict(); -export const AuditLogSumOrderByAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_AuditLogSumOrderByAggregateInput_schema) as unknown as z.ZodType; -export const AuditLogSumOrderByAggregateInputObjectZodSchema = z.lazy(__makeSchema_AuditLogSumOrderByAggregateInput_schema); - - -// File: BigIntWithAggregatesFilter.schema.ts -const __makeSchema_BigIntWithAggregatesFilter_schema = () => z.object({ - equals: z.bigint().optional(), - in: z.bigint().array().optional(), - notIn: z.bigint().array().optional(), - lt: z.bigint().optional(), - lte: z.bigint().optional(), - gt: z.bigint().optional(), - gte: z.bigint().optional(), - not: z.union([z.bigint(), NestedBigIntWithAggregatesFilterObjectSchema]).optional(), - get _count(){ return NestedIntFilterObjectSchema.optional(); }, - get _avg(){ return NestedFloatFilterObjectSchema.optional(); }, - get _sum(){ return NestedBigIntFilterObjectSchema.optional(); }, - get _min(){ return NestedBigIntFilterObjectSchema.optional(); }, - get _max(){ return NestedBigIntFilterObjectSchema.optional(); } -}).strict(); -export const BigIntWithAggregatesFilterObjectSchema: z.ZodType = z.lazy(__makeSchema_BigIntWithAggregatesFilter_schema) as unknown as z.ZodType; -export const BigIntWithAggregatesFilterObjectZodSchema = z.lazy(__makeSchema_BigIntWithAggregatesFilter_schema); - - -// File: EnumDeregisterReasonTypeFilter.schema.ts -const __makeSchema_EnumDeregisterReasonTypeFilter_schema = () => z.object({ - equals: DeregisterReasonTypeSchema.optional(), - in: DeregisterReasonTypeSchema.array().optional(), - notIn: DeregisterReasonTypeSchema.array().optional(), - not: z.union([DeregisterReasonTypeSchema, NestedEnumDeregisterReasonTypeFilterObjectSchema]).optional() -}).strict(); -export const EnumDeregisterReasonTypeFilterObjectSchema: z.ZodType = z.lazy(__makeSchema_EnumDeregisterReasonTypeFilter_schema) as unknown as z.ZodType; -export const EnumDeregisterReasonTypeFilterObjectZodSchema = z.lazy(__makeSchema_EnumDeregisterReasonTypeFilter_schema); - - -// File: DeregisterReasonCountOrderByAggregateInput.schema.ts -const __makeSchema_DeregisterReasonCountOrderByAggregateInput_schema = () => z.object({ - id: SortOrderSchema.optional(), - createdAt: SortOrderSchema.optional(), - registeredAt: SortOrderSchema.optional(), - type: SortOrderSchema.optional(), - details: SortOrderSchema.optional(), - userGrade: SortOrderSchema.optional(), - userId: SortOrderSchema.optional(), - eventId: SortOrderSchema.optional() -}).strict(); -export const DeregisterReasonCountOrderByAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_DeregisterReasonCountOrderByAggregateInput_schema) as unknown as z.ZodType; -export const DeregisterReasonCountOrderByAggregateInputObjectZodSchema = z.lazy(__makeSchema_DeregisterReasonCountOrderByAggregateInput_schema); - - -// File: DeregisterReasonAvgOrderByAggregateInput.schema.ts -const __makeSchema_DeregisterReasonAvgOrderByAggregateInput_schema = () => z.object({ - userGrade: SortOrderSchema.optional() -}).strict(); -export const DeregisterReasonAvgOrderByAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_DeregisterReasonAvgOrderByAggregateInput_schema) as unknown as z.ZodType; -export const DeregisterReasonAvgOrderByAggregateInputObjectZodSchema = z.lazy(__makeSchema_DeregisterReasonAvgOrderByAggregateInput_schema); - - -// File: DeregisterReasonMaxOrderByAggregateInput.schema.ts -const __makeSchema_DeregisterReasonMaxOrderByAggregateInput_schema = () => z.object({ - id: SortOrderSchema.optional(), - createdAt: SortOrderSchema.optional(), - registeredAt: SortOrderSchema.optional(), - type: SortOrderSchema.optional(), - details: SortOrderSchema.optional(), - userGrade: SortOrderSchema.optional(), - userId: SortOrderSchema.optional(), - eventId: SortOrderSchema.optional() -}).strict(); -export const DeregisterReasonMaxOrderByAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_DeregisterReasonMaxOrderByAggregateInput_schema) as unknown as z.ZodType; -export const DeregisterReasonMaxOrderByAggregateInputObjectZodSchema = z.lazy(__makeSchema_DeregisterReasonMaxOrderByAggregateInput_schema); - - -// File: DeregisterReasonMinOrderByAggregateInput.schema.ts -const __makeSchema_DeregisterReasonMinOrderByAggregateInput_schema = () => z.object({ - id: SortOrderSchema.optional(), - createdAt: SortOrderSchema.optional(), - registeredAt: SortOrderSchema.optional(), - type: SortOrderSchema.optional(), - details: SortOrderSchema.optional(), - userGrade: SortOrderSchema.optional(), - userId: SortOrderSchema.optional(), - eventId: SortOrderSchema.optional() -}).strict(); -export const DeregisterReasonMinOrderByAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_DeregisterReasonMinOrderByAggregateInput_schema) as unknown as z.ZodType; -export const DeregisterReasonMinOrderByAggregateInputObjectZodSchema = z.lazy(__makeSchema_DeregisterReasonMinOrderByAggregateInput_schema); - - -// File: DeregisterReasonSumOrderByAggregateInput.schema.ts -const __makeSchema_DeregisterReasonSumOrderByAggregateInput_schema = () => z.object({ - userGrade: SortOrderSchema.optional() -}).strict(); -export const DeregisterReasonSumOrderByAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_DeregisterReasonSumOrderByAggregateInput_schema) as unknown as z.ZodType; -export const DeregisterReasonSumOrderByAggregateInputObjectZodSchema = z.lazy(__makeSchema_DeregisterReasonSumOrderByAggregateInput_schema); - - -// File: EnumDeregisterReasonTypeWithAggregatesFilter.schema.ts -const __makeSchema_EnumDeregisterReasonTypeWithAggregatesFilter_schema = () => z.object({ - equals: DeregisterReasonTypeSchema.optional(), - in: DeregisterReasonTypeSchema.array().optional(), - notIn: DeregisterReasonTypeSchema.array().optional(), - not: z.union([DeregisterReasonTypeSchema, NestedEnumDeregisterReasonTypeWithAggregatesFilterObjectSchema]).optional(), - get _count(){ return NestedIntFilterObjectSchema.optional(); }, - get _min(){ return NestedEnumDeregisterReasonTypeFilterObjectSchema.optional(); }, - get _max(){ return NestedEnumDeregisterReasonTypeFilterObjectSchema.optional(); } -}).strict(); -export const EnumDeregisterReasonTypeWithAggregatesFilterObjectSchema: z.ZodType = z.lazy(__makeSchema_EnumDeregisterReasonTypeWithAggregatesFilter_schema) as unknown as z.ZodType; -export const EnumDeregisterReasonTypeWithAggregatesFilterObjectZodSchema = z.lazy(__makeSchema_EnumDeregisterReasonTypeWithAggregatesFilter_schema); - - -// File: NotificationScalarRelationFilter.schema.ts -const __makeSchema_NotificationScalarRelationFilter_schema = () => z.object({ - get is(){ return NotificationWhereInputObjectSchema.optional(); }, - get isNot(){ return NotificationWhereInputObjectSchema.optional(); } -}).strict(); -export const NotificationScalarRelationFilterObjectSchema: z.ZodType = z.lazy(__makeSchema_NotificationScalarRelationFilter_schema) as unknown as z.ZodType; -export const NotificationScalarRelationFilterObjectZodSchema = z.lazy(__makeSchema_NotificationScalarRelationFilter_schema); - - -// File: NotificationRecipientCountOrderByAggregateInput.schema.ts -const __makeSchema_NotificationRecipientCountOrderByAggregateInput_schema = () => z.object({ - id: SortOrderSchema.optional(), - readAt: SortOrderSchema.optional(), - notificationId: SortOrderSchema.optional(), - userId: SortOrderSchema.optional() -}).strict(); -export const NotificationRecipientCountOrderByAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_NotificationRecipientCountOrderByAggregateInput_schema) as unknown as z.ZodType; -export const NotificationRecipientCountOrderByAggregateInputObjectZodSchema = z.lazy(__makeSchema_NotificationRecipientCountOrderByAggregateInput_schema); - - -// File: NotificationRecipientMaxOrderByAggregateInput.schema.ts -const __makeSchema_NotificationRecipientMaxOrderByAggregateInput_schema = () => z.object({ - id: SortOrderSchema.optional(), - readAt: SortOrderSchema.optional(), - notificationId: SortOrderSchema.optional(), - userId: SortOrderSchema.optional() -}).strict(); -export const NotificationRecipientMaxOrderByAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_NotificationRecipientMaxOrderByAggregateInput_schema) as unknown as z.ZodType; -export const NotificationRecipientMaxOrderByAggregateInputObjectZodSchema = z.lazy(__makeSchema_NotificationRecipientMaxOrderByAggregateInput_schema); - - -// File: NotificationRecipientMinOrderByAggregateInput.schema.ts -const __makeSchema_NotificationRecipientMinOrderByAggregateInput_schema = () => z.object({ - id: SortOrderSchema.optional(), - readAt: SortOrderSchema.optional(), - notificationId: SortOrderSchema.optional(), - userId: SortOrderSchema.optional() -}).strict(); -export const NotificationRecipientMinOrderByAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_NotificationRecipientMinOrderByAggregateInput_schema) as unknown as z.ZodType; -export const NotificationRecipientMinOrderByAggregateInputObjectZodSchema = z.lazy(__makeSchema_NotificationRecipientMinOrderByAggregateInput_schema); - - -// File: EnumNotificationTypeFilter.schema.ts -const __makeSchema_EnumNotificationTypeFilter_schema = () => z.object({ - equals: NotificationTypeSchema.optional(), - in: NotificationTypeSchema.array().optional(), - notIn: NotificationTypeSchema.array().optional(), - not: z.union([NotificationTypeSchema, NestedEnumNotificationTypeFilterObjectSchema]).optional() -}).strict(); -export const EnumNotificationTypeFilterObjectSchema: z.ZodType = z.lazy(__makeSchema_EnumNotificationTypeFilter_schema) as unknown as z.ZodType; -export const EnumNotificationTypeFilterObjectZodSchema = z.lazy(__makeSchema_EnumNotificationTypeFilter_schema); - - -// File: EnumNotificationPayloadTypeFilter.schema.ts -const __makeSchema_EnumNotificationPayloadTypeFilter_schema = () => z.object({ - equals: NotificationPayloadTypeSchema.optional(), - in: NotificationPayloadTypeSchema.array().optional(), - notIn: NotificationPayloadTypeSchema.array().optional(), - not: z.union([NotificationPayloadTypeSchema, NestedEnumNotificationPayloadTypeFilterObjectSchema]).optional() -}).strict(); -export const EnumNotificationPayloadTypeFilterObjectSchema: z.ZodType = z.lazy(__makeSchema_EnumNotificationPayloadTypeFilter_schema) as unknown as z.ZodType; -export const EnumNotificationPayloadTypeFilterObjectZodSchema = z.lazy(__makeSchema_EnumNotificationPayloadTypeFilter_schema); - - -// File: NotificationCountOrderByAggregateInput.schema.ts -const __makeSchema_NotificationCountOrderByAggregateInput_schema = () => z.object({ - id: SortOrderSchema.optional(), - createdAt: SortOrderSchema.optional(), - updatedAt: SortOrderSchema.optional(), - title: SortOrderSchema.optional(), - shortDescription: SortOrderSchema.optional(), - content: SortOrderSchema.optional(), - type: SortOrderSchema.optional(), - payload: SortOrderSchema.optional(), - payloadType: SortOrderSchema.optional(), - actorGroupId: SortOrderSchema.optional(), - createdById: SortOrderSchema.optional(), - lastUpdatedById: SortOrderSchema.optional(), - taskId: SortOrderSchema.optional() -}).strict(); -export const NotificationCountOrderByAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_NotificationCountOrderByAggregateInput_schema) as unknown as z.ZodType; -export const NotificationCountOrderByAggregateInputObjectZodSchema = z.lazy(__makeSchema_NotificationCountOrderByAggregateInput_schema); - - -// File: NotificationMaxOrderByAggregateInput.schema.ts -const __makeSchema_NotificationMaxOrderByAggregateInput_schema = () => z.object({ - id: SortOrderSchema.optional(), - createdAt: SortOrderSchema.optional(), - updatedAt: SortOrderSchema.optional(), - title: SortOrderSchema.optional(), - shortDescription: SortOrderSchema.optional(), - content: SortOrderSchema.optional(), - type: SortOrderSchema.optional(), - payload: SortOrderSchema.optional(), - payloadType: SortOrderSchema.optional(), - actorGroupId: SortOrderSchema.optional(), - createdById: SortOrderSchema.optional(), - lastUpdatedById: SortOrderSchema.optional(), - taskId: SortOrderSchema.optional() -}).strict(); -export const NotificationMaxOrderByAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_NotificationMaxOrderByAggregateInput_schema) as unknown as z.ZodType; -export const NotificationMaxOrderByAggregateInputObjectZodSchema = z.lazy(__makeSchema_NotificationMaxOrderByAggregateInput_schema); - - -// File: NotificationMinOrderByAggregateInput.schema.ts -const __makeSchema_NotificationMinOrderByAggregateInput_schema = () => z.object({ - id: SortOrderSchema.optional(), - createdAt: SortOrderSchema.optional(), - updatedAt: SortOrderSchema.optional(), - title: SortOrderSchema.optional(), - shortDescription: SortOrderSchema.optional(), - content: SortOrderSchema.optional(), - type: SortOrderSchema.optional(), - payload: SortOrderSchema.optional(), - payloadType: SortOrderSchema.optional(), - actorGroupId: SortOrderSchema.optional(), - createdById: SortOrderSchema.optional(), - lastUpdatedById: SortOrderSchema.optional(), - taskId: SortOrderSchema.optional() -}).strict(); -export const NotificationMinOrderByAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_NotificationMinOrderByAggregateInput_schema) as unknown as z.ZodType; -export const NotificationMinOrderByAggregateInputObjectZodSchema = z.lazy(__makeSchema_NotificationMinOrderByAggregateInput_schema); - - -// File: EnumNotificationTypeWithAggregatesFilter.schema.ts -const __makeSchema_EnumNotificationTypeWithAggregatesFilter_schema = () => z.object({ - equals: NotificationTypeSchema.optional(), - in: NotificationTypeSchema.array().optional(), - notIn: NotificationTypeSchema.array().optional(), - not: z.union([NotificationTypeSchema, NestedEnumNotificationTypeWithAggregatesFilterObjectSchema]).optional(), - get _count(){ return NestedIntFilterObjectSchema.optional(); }, - get _min(){ return NestedEnumNotificationTypeFilterObjectSchema.optional(); }, - get _max(){ return NestedEnumNotificationTypeFilterObjectSchema.optional(); } -}).strict(); -export const EnumNotificationTypeWithAggregatesFilterObjectSchema: z.ZodType = z.lazy(__makeSchema_EnumNotificationTypeWithAggregatesFilter_schema) as unknown as z.ZodType; -export const EnumNotificationTypeWithAggregatesFilterObjectZodSchema = z.lazy(__makeSchema_EnumNotificationTypeWithAggregatesFilter_schema); - - -// File: EnumNotificationPayloadTypeWithAggregatesFilter.schema.ts -const __makeSchema_EnumNotificationPayloadTypeWithAggregatesFilter_schema = () => z.object({ - equals: NotificationPayloadTypeSchema.optional(), - in: NotificationPayloadTypeSchema.array().optional(), - notIn: NotificationPayloadTypeSchema.array().optional(), - not: z.union([NotificationPayloadTypeSchema, NestedEnumNotificationPayloadTypeWithAggregatesFilterObjectSchema]).optional(), - get _count(){ return NestedIntFilterObjectSchema.optional(); }, - get _min(){ return NestedEnumNotificationPayloadTypeFilterObjectSchema.optional(); }, - get _max(){ return NestedEnumNotificationPayloadTypeFilterObjectSchema.optional(); } -}).strict(); -export const EnumNotificationPayloadTypeWithAggregatesFilterObjectSchema: z.ZodType = z.lazy(__makeSchema_EnumNotificationPayloadTypeWithAggregatesFilter_schema) as unknown as z.ZodType; -export const EnumNotificationPayloadTypeWithAggregatesFilterObjectZodSchema = z.lazy(__makeSchema_EnumNotificationPayloadTypeWithAggregatesFilter_schema); - - -// File: EnumContestResultTypeFilter.schema.ts -const __makeSchema_EnumContestResultTypeFilter_schema = () => z.object({ - equals: ContestResultTypeSchema.optional(), - in: ContestResultTypeSchema.array().optional(), - notIn: ContestResultTypeSchema.array().optional(), - not: z.union([ContestResultTypeSchema, NestedEnumContestResultTypeFilterObjectSchema]).optional() -}).strict(); -export const EnumContestResultTypeFilterObjectSchema: z.ZodType = z.lazy(__makeSchema_EnumContestResultTypeFilter_schema) as unknown as z.ZodType; -export const EnumContestResultTypeFilterObjectZodSchema = z.lazy(__makeSchema_EnumContestResultTypeFilter_schema); - - -// File: EnumContestResultOrderFilter.schema.ts -const __makeSchema_EnumContestResultOrderFilter_schema = () => z.object({ - equals: ContestResultOrderSchema.optional(), - in: ContestResultOrderSchema.array().optional(), - notIn: ContestResultOrderSchema.array().optional(), - not: z.union([ContestResultOrderSchema, NestedEnumContestResultOrderFilterObjectSchema]).optional() -}).strict(); -export const EnumContestResultOrderFilterObjectSchema: z.ZodType = z.lazy(__makeSchema_EnumContestResultOrderFilter_schema) as unknown as z.ZodType; -export const EnumContestResultOrderFilterObjectZodSchema = z.lazy(__makeSchema_EnumContestResultOrderFilter_schema); - - -// File: ContestantNullableScalarRelationFilter.schema.ts -const __makeSchema_ContestantNullableScalarRelationFilter_schema = () => z.object({ - is: ContestantWhereInputObjectSchema.optional().nullable(), - isNot: ContestantWhereInputObjectSchema.optional().nullable() -}).strict(); -export const ContestantNullableScalarRelationFilterObjectSchema: z.ZodType = z.lazy(__makeSchema_ContestantNullableScalarRelationFilter_schema) as unknown as z.ZodType; -export const ContestantNullableScalarRelationFilterObjectZodSchema = z.lazy(__makeSchema_ContestantNullableScalarRelationFilter_schema); - - -// File: GroupListRelationFilter.schema.ts -const __makeSchema_GroupListRelationFilter_schema = () => z.object({ - get every(){ return GroupWhereInputObjectSchema.optional(); }, - get some(){ return GroupWhereInputObjectSchema.optional(); }, - get none(){ return GroupWhereInputObjectSchema.optional(); } -}).strict(); -export const GroupListRelationFilterObjectSchema: z.ZodType = z.lazy(__makeSchema_GroupListRelationFilter_schema) as unknown as z.ZodType; -export const GroupListRelationFilterObjectZodSchema = z.lazy(__makeSchema_GroupListRelationFilter_schema); - - -// File: GroupOrderByRelationAggregateInput.schema.ts -const __makeSchema_GroupOrderByRelationAggregateInput_schema = () => z.object({ - _count: SortOrderSchema.optional() -}).strict(); -export const GroupOrderByRelationAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_GroupOrderByRelationAggregateInput_schema) as unknown as z.ZodType; -export const GroupOrderByRelationAggregateInputObjectZodSchema = z.lazy(__makeSchema_GroupOrderByRelationAggregateInput_schema); - - -// File: ContestCountOrderByAggregateInput.schema.ts -const __makeSchema_ContestCountOrderByAggregateInput_schema = () => z.object({ - id: SortOrderSchema.optional(), - name: SortOrderSchema.optional(), - description: SortOrderSchema.optional(), - startDate: SortOrderSchema.optional(), - resultType: SortOrderSchema.optional(), - resultOrder: SortOrderSchema.optional(), - winnerContestantId: SortOrderSchema.optional() -}).strict(); -export const ContestCountOrderByAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_ContestCountOrderByAggregateInput_schema) as unknown as z.ZodType; -export const ContestCountOrderByAggregateInputObjectZodSchema = z.lazy(__makeSchema_ContestCountOrderByAggregateInput_schema); - - -// File: ContestMaxOrderByAggregateInput.schema.ts -const __makeSchema_ContestMaxOrderByAggregateInput_schema = () => z.object({ - id: SortOrderSchema.optional(), - name: SortOrderSchema.optional(), - description: SortOrderSchema.optional(), - startDate: SortOrderSchema.optional(), - resultType: SortOrderSchema.optional(), - resultOrder: SortOrderSchema.optional(), - winnerContestantId: SortOrderSchema.optional() -}).strict(); -export const ContestMaxOrderByAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_ContestMaxOrderByAggregateInput_schema) as unknown as z.ZodType; -export const ContestMaxOrderByAggregateInputObjectZodSchema = z.lazy(__makeSchema_ContestMaxOrderByAggregateInput_schema); - - -// File: ContestMinOrderByAggregateInput.schema.ts -const __makeSchema_ContestMinOrderByAggregateInput_schema = () => z.object({ - id: SortOrderSchema.optional(), - name: SortOrderSchema.optional(), - description: SortOrderSchema.optional(), - startDate: SortOrderSchema.optional(), - resultType: SortOrderSchema.optional(), - resultOrder: SortOrderSchema.optional(), - winnerContestantId: SortOrderSchema.optional() -}).strict(); -export const ContestMinOrderByAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_ContestMinOrderByAggregateInput_schema) as unknown as z.ZodType; -export const ContestMinOrderByAggregateInputObjectZodSchema = z.lazy(__makeSchema_ContestMinOrderByAggregateInput_schema); - - -// File: EnumContestResultTypeWithAggregatesFilter.schema.ts -const __makeSchema_EnumContestResultTypeWithAggregatesFilter_schema = () => z.object({ - equals: ContestResultTypeSchema.optional(), - in: ContestResultTypeSchema.array().optional(), - notIn: ContestResultTypeSchema.array().optional(), - not: z.union([ContestResultTypeSchema, NestedEnumContestResultTypeWithAggregatesFilterObjectSchema]).optional(), - get _count(){ return NestedIntFilterObjectSchema.optional(); }, - get _min(){ return NestedEnumContestResultTypeFilterObjectSchema.optional(); }, - get _max(){ return NestedEnumContestResultTypeFilterObjectSchema.optional(); } -}).strict(); -export const EnumContestResultTypeWithAggregatesFilterObjectSchema: z.ZodType = z.lazy(__makeSchema_EnumContestResultTypeWithAggregatesFilter_schema) as unknown as z.ZodType; -export const EnumContestResultTypeWithAggregatesFilterObjectZodSchema = z.lazy(__makeSchema_EnumContestResultTypeWithAggregatesFilter_schema); - - -// File: EnumContestResultOrderWithAggregatesFilter.schema.ts -const __makeSchema_EnumContestResultOrderWithAggregatesFilter_schema = () => z.object({ - equals: ContestResultOrderSchema.optional(), - in: ContestResultOrderSchema.array().optional(), - notIn: ContestResultOrderSchema.array().optional(), - not: z.union([ContestResultOrderSchema, NestedEnumContestResultOrderWithAggregatesFilterObjectSchema]).optional(), - get _count(){ return NestedIntFilterObjectSchema.optional(); }, - get _min(){ return NestedEnumContestResultOrderFilterObjectSchema.optional(); }, - get _max(){ return NestedEnumContestResultOrderFilterObjectSchema.optional(); } -}).strict(); -export const EnumContestResultOrderWithAggregatesFilterObjectSchema: z.ZodType = z.lazy(__makeSchema_EnumContestResultOrderWithAggregatesFilter_schema) as unknown as z.ZodType; -export const EnumContestResultOrderWithAggregatesFilterObjectZodSchema = z.lazy(__makeSchema_EnumContestResultOrderWithAggregatesFilter_schema); - - -// File: FadderukeCountOrderByAggregateInput.schema.ts -const __makeSchema_FadderukeCountOrderByAggregateInput_schema = () => z.object({ - id: SortOrderSchema.optional(), - year: SortOrderSchema.optional(), - eventId: SortOrderSchema.optional(), - createdAt: SortOrderSchema.optional(), - updatedAt: SortOrderSchema.optional() -}).strict(); -export const FadderukeCountOrderByAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FadderukeCountOrderByAggregateInput_schema) as unknown as z.ZodType; -export const FadderukeCountOrderByAggregateInputObjectZodSchema = z.lazy(__makeSchema_FadderukeCountOrderByAggregateInput_schema); - - -// File: FadderukeAvgOrderByAggregateInput.schema.ts -const __makeSchema_FadderukeAvgOrderByAggregateInput_schema = () => z.object({ - year: SortOrderSchema.optional() -}).strict(); -export const FadderukeAvgOrderByAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FadderukeAvgOrderByAggregateInput_schema) as unknown as z.ZodType; -export const FadderukeAvgOrderByAggregateInputObjectZodSchema = z.lazy(__makeSchema_FadderukeAvgOrderByAggregateInput_schema); - - -// File: FadderukeMaxOrderByAggregateInput.schema.ts -const __makeSchema_FadderukeMaxOrderByAggregateInput_schema = () => z.object({ - id: SortOrderSchema.optional(), - year: SortOrderSchema.optional(), - eventId: SortOrderSchema.optional(), - createdAt: SortOrderSchema.optional(), - updatedAt: SortOrderSchema.optional() -}).strict(); -export const FadderukeMaxOrderByAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FadderukeMaxOrderByAggregateInput_schema) as unknown as z.ZodType; -export const FadderukeMaxOrderByAggregateInputObjectZodSchema = z.lazy(__makeSchema_FadderukeMaxOrderByAggregateInput_schema); - - -// File: FadderukeMinOrderByAggregateInput.schema.ts -const __makeSchema_FadderukeMinOrderByAggregateInput_schema = () => z.object({ - id: SortOrderSchema.optional(), - year: SortOrderSchema.optional(), - eventId: SortOrderSchema.optional(), - createdAt: SortOrderSchema.optional(), - updatedAt: SortOrderSchema.optional() -}).strict(); -export const FadderukeMinOrderByAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FadderukeMinOrderByAggregateInput_schema) as unknown as z.ZodType; -export const FadderukeMinOrderByAggregateInputObjectZodSchema = z.lazy(__makeSchema_FadderukeMinOrderByAggregateInput_schema); - - -// File: FadderukeSumOrderByAggregateInput.schema.ts -const __makeSchema_FadderukeSumOrderByAggregateInput_schema = () => z.object({ - year: SortOrderSchema.optional() -}).strict(); -export const FadderukeSumOrderByAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FadderukeSumOrderByAggregateInput_schema) as unknown as z.ZodType; -export const FadderukeSumOrderByAggregateInputObjectZodSchema = z.lazy(__makeSchema_FadderukeSumOrderByAggregateInput_schema); - - -// File: ContestScalarRelationFilter.schema.ts -const __makeSchema_ContestScalarRelationFilter_schema = () => z.object({ - get is(){ return ContestWhereInputObjectSchema.optional(); }, - get isNot(){ return ContestWhereInputObjectSchema.optional(); } -}).strict(); -export const ContestScalarRelationFilterObjectSchema: z.ZodType = z.lazy(__makeSchema_ContestScalarRelationFilter_schema) as unknown as z.ZodType; -export const ContestScalarRelationFilterObjectZodSchema = z.lazy(__makeSchema_ContestScalarRelationFilter_schema); - - -// File: ContestTeamNullableScalarRelationFilter.schema.ts -const __makeSchema_ContestTeamNullableScalarRelationFilter_schema = () => z.object({ - is: ContestTeamWhereInputObjectSchema.optional().nullable(), - isNot: ContestTeamWhereInputObjectSchema.optional().nullable() -}).strict(); -export const ContestTeamNullableScalarRelationFilterObjectSchema: z.ZodType = z.lazy(__makeSchema_ContestTeamNullableScalarRelationFilter_schema) as unknown as z.ZodType; -export const ContestTeamNullableScalarRelationFilterObjectZodSchema = z.lazy(__makeSchema_ContestTeamNullableScalarRelationFilter_schema); - - -// File: ContestantContestIdUserIdCompoundUniqueInput.schema.ts -const __makeSchema_ContestantContestIdUserIdCompoundUniqueInput_schema = () => z.object({ - contestId: z.string(), - userId: z.string() -}).strict(); -export const ContestantContestIdUserIdCompoundUniqueInputObjectSchema: z.ZodType = z.lazy(__makeSchema_ContestantContestIdUserIdCompoundUniqueInput_schema) as unknown as z.ZodType; -export const ContestantContestIdUserIdCompoundUniqueInputObjectZodSchema = z.lazy(__makeSchema_ContestantContestIdUserIdCompoundUniqueInput_schema); - - -// File: ContestantCountOrderByAggregateInput.schema.ts -const __makeSchema_ContestantCountOrderByAggregateInput_schema = () => z.object({ - id: SortOrderSchema.optional(), - resultValue: SortOrderSchema.optional(), - contestId: SortOrderSchema.optional(), - userId: SortOrderSchema.optional() -}).strict(); -export const ContestantCountOrderByAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_ContestantCountOrderByAggregateInput_schema) as unknown as z.ZodType; -export const ContestantCountOrderByAggregateInputObjectZodSchema = z.lazy(__makeSchema_ContestantCountOrderByAggregateInput_schema); - - -// File: ContestantAvgOrderByAggregateInput.schema.ts -const __makeSchema_ContestantAvgOrderByAggregateInput_schema = () => z.object({ - resultValue: SortOrderSchema.optional() -}).strict(); -export const ContestantAvgOrderByAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_ContestantAvgOrderByAggregateInput_schema) as unknown as z.ZodType; -export const ContestantAvgOrderByAggregateInputObjectZodSchema = z.lazy(__makeSchema_ContestantAvgOrderByAggregateInput_schema); - - -// File: ContestantMaxOrderByAggregateInput.schema.ts -const __makeSchema_ContestantMaxOrderByAggregateInput_schema = () => z.object({ - id: SortOrderSchema.optional(), - resultValue: SortOrderSchema.optional(), - contestId: SortOrderSchema.optional(), - userId: SortOrderSchema.optional() -}).strict(); -export const ContestantMaxOrderByAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_ContestantMaxOrderByAggregateInput_schema) as unknown as z.ZodType; -export const ContestantMaxOrderByAggregateInputObjectZodSchema = z.lazy(__makeSchema_ContestantMaxOrderByAggregateInput_schema); - - -// File: ContestantMinOrderByAggregateInput.schema.ts -const __makeSchema_ContestantMinOrderByAggregateInput_schema = () => z.object({ - id: SortOrderSchema.optional(), - resultValue: SortOrderSchema.optional(), - contestId: SortOrderSchema.optional(), - userId: SortOrderSchema.optional() -}).strict(); -export const ContestantMinOrderByAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_ContestantMinOrderByAggregateInput_schema) as unknown as z.ZodType; -export const ContestantMinOrderByAggregateInputObjectZodSchema = z.lazy(__makeSchema_ContestantMinOrderByAggregateInput_schema); - - -// File: ContestantSumOrderByAggregateInput.schema.ts -const __makeSchema_ContestantSumOrderByAggregateInput_schema = () => z.object({ - resultValue: SortOrderSchema.optional() -}).strict(); -export const ContestantSumOrderByAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_ContestantSumOrderByAggregateInput_schema) as unknown as z.ZodType; -export const ContestantSumOrderByAggregateInputObjectZodSchema = z.lazy(__makeSchema_ContestantSumOrderByAggregateInput_schema); - - -// File: ContestantScalarRelationFilter.schema.ts -const __makeSchema_ContestantScalarRelationFilter_schema = () => z.object({ - get is(){ return ContestantWhereInputObjectSchema.optional(); }, - get isNot(){ return ContestantWhereInputObjectSchema.optional(); } -}).strict(); -export const ContestantScalarRelationFilterObjectSchema: z.ZodType = z.lazy(__makeSchema_ContestantScalarRelationFilter_schema) as unknown as z.ZodType; -export const ContestantScalarRelationFilterObjectZodSchema = z.lazy(__makeSchema_ContestantScalarRelationFilter_schema); - - -// File: UserListRelationFilter.schema.ts -const __makeSchema_UserListRelationFilter_schema = () => z.object({ - get every(){ return UserWhereInputObjectSchema.optional(); }, - get some(){ return UserWhereInputObjectSchema.optional(); }, - get none(){ return UserWhereInputObjectSchema.optional(); } -}).strict(); -export const UserListRelationFilterObjectSchema: z.ZodType = z.lazy(__makeSchema_UserListRelationFilter_schema) as unknown as z.ZodType; -export const UserListRelationFilterObjectZodSchema = z.lazy(__makeSchema_UserListRelationFilter_schema); - - -// File: UserOrderByRelationAggregateInput.schema.ts -const __makeSchema_UserOrderByRelationAggregateInput_schema = () => z.object({ - _count: SortOrderSchema.optional() -}).strict(); -export const UserOrderByRelationAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_UserOrderByRelationAggregateInput_schema) as unknown as z.ZodType; -export const UserOrderByRelationAggregateInputObjectZodSchema = z.lazy(__makeSchema_UserOrderByRelationAggregateInput_schema); - - -// File: ContestTeamCountOrderByAggregateInput.schema.ts -const __makeSchema_ContestTeamCountOrderByAggregateInput_schema = () => z.object({ - id: SortOrderSchema.optional(), - name: SortOrderSchema.optional(), - contestantId: SortOrderSchema.optional() -}).strict(); -export const ContestTeamCountOrderByAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_ContestTeamCountOrderByAggregateInput_schema) as unknown as z.ZodType; -export const ContestTeamCountOrderByAggregateInputObjectZodSchema = z.lazy(__makeSchema_ContestTeamCountOrderByAggregateInput_schema); - - -// File: ContestTeamMaxOrderByAggregateInput.schema.ts -const __makeSchema_ContestTeamMaxOrderByAggregateInput_schema = () => z.object({ - id: SortOrderSchema.optional(), - name: SortOrderSchema.optional(), - contestantId: SortOrderSchema.optional() -}).strict(); -export const ContestTeamMaxOrderByAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_ContestTeamMaxOrderByAggregateInput_schema) as unknown as z.ZodType; -export const ContestTeamMaxOrderByAggregateInputObjectZodSchema = z.lazy(__makeSchema_ContestTeamMaxOrderByAggregateInput_schema); - - -// File: ContestTeamMinOrderByAggregateInput.schema.ts -const __makeSchema_ContestTeamMinOrderByAggregateInput_schema = () => z.object({ - id: SortOrderSchema.optional(), - name: SortOrderSchema.optional(), - contestantId: SortOrderSchema.optional() -}).strict(); -export const ContestTeamMinOrderByAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_ContestTeamMinOrderByAggregateInput_schema) as unknown as z.ZodType; -export const ContestTeamMinOrderByAggregateInputObjectZodSchema = z.lazy(__makeSchema_ContestTeamMinOrderByAggregateInput_schema); - - -// File: UserCreateNestedOneWithoutMembershipsInput.schema.ts -const __makeSchema_UserCreateNestedOneWithoutMembershipsInput_schema = () => z.object({ - create: z.union([UserCreateWithoutMembershipsInputObjectSchema, UserUncheckedCreateWithoutMembershipsInputObjectSchema]).optional(), - get connectOrCreate(){ return UserCreateOrConnectWithoutMembershipsInputObjectSchema.optional(); }, - get connect(){ return UserWhereUniqueInputObjectSchema.optional(); } -}).strict(); -export const UserCreateNestedOneWithoutMembershipsInputObjectSchema: z.ZodType = z.lazy(__makeSchema_UserCreateNestedOneWithoutMembershipsInput_schema) as unknown as z.ZodType; -export const UserCreateNestedOneWithoutMembershipsInputObjectZodSchema = z.lazy(__makeSchema_UserCreateNestedOneWithoutMembershipsInput_schema); - - -// File: StringFieldUpdateOperationsInput.schema.ts -const __makeSchema_StringFieldUpdateOperationsInput_schema = () => z.object({ - set: z.string().optional() -}).strict(); -export const StringFieldUpdateOperationsInputObjectSchema: z.ZodType = z.lazy(__makeSchema_StringFieldUpdateOperationsInput_schema) as unknown as z.ZodType; -export const StringFieldUpdateOperationsInputObjectZodSchema = z.lazy(__makeSchema_StringFieldUpdateOperationsInput_schema); - - -// File: EnumMembershipTypeFieldUpdateOperationsInput.schema.ts -const __makeSchema_EnumMembershipTypeFieldUpdateOperationsInput_schema = () => z.object({ - set: MembershipTypeSchema.optional() -}).strict(); -export const EnumMembershipTypeFieldUpdateOperationsInputObjectSchema: z.ZodType = z.lazy(__makeSchema_EnumMembershipTypeFieldUpdateOperationsInput_schema) as unknown as z.ZodType; -export const EnumMembershipTypeFieldUpdateOperationsInputObjectZodSchema = z.lazy(__makeSchema_EnumMembershipTypeFieldUpdateOperationsInput_schema); - - -// File: NullableEnumMembershipSpecializationFieldUpdateOperationsInput.schema.ts -const __makeSchema_NullableEnumMembershipSpecializationFieldUpdateOperationsInput_schema = () => z.object({ - set: MembershipSpecializationSchema.optional() -}).strict(); -export const NullableEnumMembershipSpecializationFieldUpdateOperationsInputObjectSchema: z.ZodType = z.lazy(__makeSchema_NullableEnumMembershipSpecializationFieldUpdateOperationsInput_schema) as unknown as z.ZodType; -export const NullableEnumMembershipSpecializationFieldUpdateOperationsInputObjectZodSchema = z.lazy(__makeSchema_NullableEnumMembershipSpecializationFieldUpdateOperationsInput_schema); - - -// File: DateTimeFieldUpdateOperationsInput.schema.ts -const __makeSchema_DateTimeFieldUpdateOperationsInput_schema = () => z.object({ - set: z.coerce.date().optional() -}).strict(); -export const DateTimeFieldUpdateOperationsInputObjectSchema: z.ZodType = z.lazy(__makeSchema_DateTimeFieldUpdateOperationsInput_schema) as unknown as z.ZodType; -export const DateTimeFieldUpdateOperationsInputObjectZodSchema = z.lazy(__makeSchema_DateTimeFieldUpdateOperationsInput_schema); - - -// File: NullableDateTimeFieldUpdateOperationsInput.schema.ts -const __makeSchema_NullableDateTimeFieldUpdateOperationsInput_schema = () => z.object({ - set: z.coerce.date().optional() -}).strict(); -export const NullableDateTimeFieldUpdateOperationsInputObjectSchema: z.ZodType = z.lazy(__makeSchema_NullableDateTimeFieldUpdateOperationsInput_schema) as unknown as z.ZodType; -export const NullableDateTimeFieldUpdateOperationsInputObjectZodSchema = z.lazy(__makeSchema_NullableDateTimeFieldUpdateOperationsInput_schema); - - -// File: NullableIntFieldUpdateOperationsInput.schema.ts -const __makeSchema_NullableIntFieldUpdateOperationsInput_schema = () => z.object({ - set: z.number().int().optional(), - increment: z.number().int().optional(), - decrement: z.number().int().optional(), - multiply: z.number().int().optional(), - divide: z.number().int().optional() -}).strict(); -export const NullableIntFieldUpdateOperationsInputObjectSchema: z.ZodType = z.lazy(__makeSchema_NullableIntFieldUpdateOperationsInput_schema) as unknown as z.ZodType; -export const NullableIntFieldUpdateOperationsInputObjectZodSchema = z.lazy(__makeSchema_NullableIntFieldUpdateOperationsInput_schema); - - -// File: UserUpdateOneRequiredWithoutMembershipsNestedInput.schema.ts -const __makeSchema_UserUpdateOneRequiredWithoutMembershipsNestedInput_schema = () => z.object({ - create: z.union([UserCreateWithoutMembershipsInputObjectSchema, UserUncheckedCreateWithoutMembershipsInputObjectSchema]).optional(), - get connectOrCreate(){ return UserCreateOrConnectWithoutMembershipsInputObjectSchema.optional(); }, - get upsert(){ return UserUpsertWithoutMembershipsInputObjectSchema.optional(); }, - get connect(){ return UserWhereUniqueInputObjectSchema.optional(); }, - update: z.union([UserUpdateToOneWithWhereWithoutMembershipsInputObjectSchema, UserUpdateWithoutMembershipsInputObjectSchema, UserUncheckedUpdateWithoutMembershipsInputObjectSchema]).optional() -}).strict(); -export const UserUpdateOneRequiredWithoutMembershipsNestedInputObjectSchema: z.ZodType = z.lazy(__makeSchema_UserUpdateOneRequiredWithoutMembershipsNestedInput_schema) as unknown as z.ZodType; -export const UserUpdateOneRequiredWithoutMembershipsNestedInputObjectZodSchema = z.lazy(__makeSchema_UserUpdateOneRequiredWithoutMembershipsNestedInput_schema); - - -// File: UserCreateflagsInput.schema.ts -const __makeSchema_UserCreateflagsInput_schema = () => z.object({ - set: z.string().array() -}).strict(); -export const UserCreateflagsInputObjectSchema: z.ZodType = z.lazy(__makeSchema_UserCreateflagsInput_schema) as unknown as z.ZodType; -export const UserCreateflagsInputObjectZodSchema = z.lazy(__makeSchema_UserCreateflagsInput_schema); - - -// File: PrivacyPermissionsCreateNestedOneWithoutUserInput.schema.ts -const __makeSchema_PrivacyPermissionsCreateNestedOneWithoutUserInput_schema = () => z.object({ - create: z.union([PrivacyPermissionsCreateWithoutUserInputObjectSchema, PrivacyPermissionsUncheckedCreateWithoutUserInputObjectSchema]).optional(), - get connectOrCreate(){ return PrivacyPermissionsCreateOrConnectWithoutUserInputObjectSchema.optional(); }, - get connect(){ return PrivacyPermissionsWhereUniqueInputObjectSchema.optional(); } -}).strict(); -export const PrivacyPermissionsCreateNestedOneWithoutUserInputObjectSchema: z.ZodType = z.lazy(__makeSchema_PrivacyPermissionsCreateNestedOneWithoutUserInput_schema) as unknown as z.ZodType; -export const PrivacyPermissionsCreateNestedOneWithoutUserInputObjectZodSchema = z.lazy(__makeSchema_PrivacyPermissionsCreateNestedOneWithoutUserInput_schema); - - -// File: NotificationPermissionsCreateNestedOneWithoutUserInput.schema.ts -const __makeSchema_NotificationPermissionsCreateNestedOneWithoutUserInput_schema = () => z.object({ - create: z.union([NotificationPermissionsCreateWithoutUserInputObjectSchema, NotificationPermissionsUncheckedCreateWithoutUserInputObjectSchema]).optional(), - get connectOrCreate(){ return NotificationPermissionsCreateOrConnectWithoutUserInputObjectSchema.optional(); }, - get connect(){ return NotificationPermissionsWhereUniqueInputObjectSchema.optional(); } -}).strict(); -export const NotificationPermissionsCreateNestedOneWithoutUserInputObjectSchema: z.ZodType = z.lazy(__makeSchema_NotificationPermissionsCreateNestedOneWithoutUserInput_schema) as unknown as z.ZodType; -export const NotificationPermissionsCreateNestedOneWithoutUserInputObjectZodSchema = z.lazy(__makeSchema_NotificationPermissionsCreateNestedOneWithoutUserInput_schema); - - -// File: AttendeeCreateNestedManyWithoutUserInput.schema.ts -const __makeSchema_AttendeeCreateNestedManyWithoutUserInput_schema = () => z.object({ - create: z.union([AttendeeCreateWithoutUserInputObjectSchema, AttendeeCreateWithoutUserInputObjectSchema.array(), AttendeeUncheckedCreateWithoutUserInputObjectSchema, AttendeeUncheckedCreateWithoutUserInputObjectSchema.array()]).optional(), - connectOrCreate: z.union([AttendeeCreateOrConnectWithoutUserInputObjectSchema, AttendeeCreateOrConnectWithoutUserInputObjectSchema.array()]).optional(), - get createMany(){ return AttendeeCreateManyUserInputEnvelopeObjectSchema.optional(); }, - connect: z.union([AttendeeWhereUniqueInputObjectSchema, AttendeeWhereUniqueInputObjectSchema.array()]).optional() -}).strict(); -export const AttendeeCreateNestedManyWithoutUserInputObjectSchema: z.ZodType = z.lazy(__makeSchema_AttendeeCreateNestedManyWithoutUserInput_schema) as unknown as z.ZodType; -export const AttendeeCreateNestedManyWithoutUserInputObjectZodSchema = z.lazy(__makeSchema_AttendeeCreateNestedManyWithoutUserInput_schema); - - -// File: PersonalMarkCreateNestedManyWithoutUserInput.schema.ts -const __makeSchema_PersonalMarkCreateNestedManyWithoutUserInput_schema = () => z.object({ - create: z.union([PersonalMarkCreateWithoutUserInputObjectSchema, PersonalMarkCreateWithoutUserInputObjectSchema.array(), PersonalMarkUncheckedCreateWithoutUserInputObjectSchema, PersonalMarkUncheckedCreateWithoutUserInputObjectSchema.array()]).optional(), - connectOrCreate: z.union([PersonalMarkCreateOrConnectWithoutUserInputObjectSchema, PersonalMarkCreateOrConnectWithoutUserInputObjectSchema.array()]).optional(), - get createMany(){ return PersonalMarkCreateManyUserInputEnvelopeObjectSchema.optional(); }, - connect: z.union([PersonalMarkWhereUniqueInputObjectSchema, PersonalMarkWhereUniqueInputObjectSchema.array()]).optional() -}).strict(); -export const PersonalMarkCreateNestedManyWithoutUserInputObjectSchema: z.ZodType = z.lazy(__makeSchema_PersonalMarkCreateNestedManyWithoutUserInput_schema) as unknown as z.ZodType; -export const PersonalMarkCreateNestedManyWithoutUserInputObjectZodSchema = z.lazy(__makeSchema_PersonalMarkCreateNestedManyWithoutUserInput_schema); - - -// File: GroupMembershipCreateNestedManyWithoutUserInput.schema.ts -const __makeSchema_GroupMembershipCreateNestedManyWithoutUserInput_schema = () => z.object({ - create: z.union([GroupMembershipCreateWithoutUserInputObjectSchema, GroupMembershipCreateWithoutUserInputObjectSchema.array(), GroupMembershipUncheckedCreateWithoutUserInputObjectSchema, GroupMembershipUncheckedCreateWithoutUserInputObjectSchema.array()]).optional(), - connectOrCreate: z.union([GroupMembershipCreateOrConnectWithoutUserInputObjectSchema, GroupMembershipCreateOrConnectWithoutUserInputObjectSchema.array()]).optional(), - get createMany(){ return GroupMembershipCreateManyUserInputEnvelopeObjectSchema.optional(); }, - connect: z.union([GroupMembershipWhereUniqueInputObjectSchema, GroupMembershipWhereUniqueInputObjectSchema.array()]).optional() -}).strict(); -export const GroupMembershipCreateNestedManyWithoutUserInputObjectSchema: z.ZodType = z.lazy(__makeSchema_GroupMembershipCreateNestedManyWithoutUserInput_schema) as unknown as z.ZodType; -export const GroupMembershipCreateNestedManyWithoutUserInputObjectZodSchema = z.lazy(__makeSchema_GroupMembershipCreateNestedManyWithoutUserInput_schema); - - -// File: MembershipCreateNestedManyWithoutUserInput.schema.ts -const __makeSchema_MembershipCreateNestedManyWithoutUserInput_schema = () => z.object({ - create: z.union([MembershipCreateWithoutUserInputObjectSchema, MembershipCreateWithoutUserInputObjectSchema.array(), MembershipUncheckedCreateWithoutUserInputObjectSchema, MembershipUncheckedCreateWithoutUserInputObjectSchema.array()]).optional(), - connectOrCreate: z.union([MembershipCreateOrConnectWithoutUserInputObjectSchema, MembershipCreateOrConnectWithoutUserInputObjectSchema.array()]).optional(), - get createMany(){ return MembershipCreateManyUserInputEnvelopeObjectSchema.optional(); }, - connect: z.union([MembershipWhereUniqueInputObjectSchema, MembershipWhereUniqueInputObjectSchema.array()]).optional() -}).strict(); -export const MembershipCreateNestedManyWithoutUserInputObjectSchema: z.ZodType = z.lazy(__makeSchema_MembershipCreateNestedManyWithoutUserInput_schema) as unknown as z.ZodType; -export const MembershipCreateNestedManyWithoutUserInputObjectZodSchema = z.lazy(__makeSchema_MembershipCreateNestedManyWithoutUserInput_schema); - - -// File: PersonalMarkCreateNestedManyWithoutGivenByInput.schema.ts -const __makeSchema_PersonalMarkCreateNestedManyWithoutGivenByInput_schema = () => z.object({ - create: z.union([PersonalMarkCreateWithoutGivenByInputObjectSchema, PersonalMarkCreateWithoutGivenByInputObjectSchema.array(), PersonalMarkUncheckedCreateWithoutGivenByInputObjectSchema, PersonalMarkUncheckedCreateWithoutGivenByInputObjectSchema.array()]).optional(), - connectOrCreate: z.union([PersonalMarkCreateOrConnectWithoutGivenByInputObjectSchema, PersonalMarkCreateOrConnectWithoutGivenByInputObjectSchema.array()]).optional(), - get createMany(){ return PersonalMarkCreateManyGivenByInputEnvelopeObjectSchema.optional(); }, - connect: z.union([PersonalMarkWhereUniqueInputObjectSchema, PersonalMarkWhereUniqueInputObjectSchema.array()]).optional() -}).strict(); -export const PersonalMarkCreateNestedManyWithoutGivenByInputObjectSchema: z.ZodType = z.lazy(__makeSchema_PersonalMarkCreateNestedManyWithoutGivenByInput_schema) as unknown as z.ZodType; -export const PersonalMarkCreateNestedManyWithoutGivenByInputObjectZodSchema = z.lazy(__makeSchema_PersonalMarkCreateNestedManyWithoutGivenByInput_schema); - - -// File: AttendeeCreateNestedManyWithoutPaymentRefundedByInput.schema.ts -const __makeSchema_AttendeeCreateNestedManyWithoutPaymentRefundedByInput_schema = () => z.object({ - create: z.union([AttendeeCreateWithoutPaymentRefundedByInputObjectSchema, AttendeeCreateWithoutPaymentRefundedByInputObjectSchema.array(), AttendeeUncheckedCreateWithoutPaymentRefundedByInputObjectSchema, AttendeeUncheckedCreateWithoutPaymentRefundedByInputObjectSchema.array()]).optional(), - connectOrCreate: z.union([AttendeeCreateOrConnectWithoutPaymentRefundedByInputObjectSchema, AttendeeCreateOrConnectWithoutPaymentRefundedByInputObjectSchema.array()]).optional(), - get createMany(){ return AttendeeCreateManyPaymentRefundedByInputEnvelopeObjectSchema.optional(); }, - connect: z.union([AttendeeWhereUniqueInputObjectSchema, AttendeeWhereUniqueInputObjectSchema.array()]).optional() -}).strict(); -export const AttendeeCreateNestedManyWithoutPaymentRefundedByInputObjectSchema: z.ZodType = z.lazy(__makeSchema_AttendeeCreateNestedManyWithoutPaymentRefundedByInput_schema) as unknown as z.ZodType; -export const AttendeeCreateNestedManyWithoutPaymentRefundedByInputObjectZodSchema = z.lazy(__makeSchema_AttendeeCreateNestedManyWithoutPaymentRefundedByInput_schema); - - -// File: AuditLogCreateNestedManyWithoutUserInput.schema.ts -const __makeSchema_AuditLogCreateNestedManyWithoutUserInput_schema = () => z.object({ - create: z.union([AuditLogCreateWithoutUserInputObjectSchema, AuditLogCreateWithoutUserInputObjectSchema.array(), AuditLogUncheckedCreateWithoutUserInputObjectSchema, AuditLogUncheckedCreateWithoutUserInputObjectSchema.array()]).optional(), - connectOrCreate: z.union([AuditLogCreateOrConnectWithoutUserInputObjectSchema, AuditLogCreateOrConnectWithoutUserInputObjectSchema.array()]).optional(), - get createMany(){ return AuditLogCreateManyUserInputEnvelopeObjectSchema.optional(); }, - connect: z.union([AuditLogWhereUniqueInputObjectSchema, AuditLogWhereUniqueInputObjectSchema.array()]).optional() -}).strict(); -export const AuditLogCreateNestedManyWithoutUserInputObjectSchema: z.ZodType = z.lazy(__makeSchema_AuditLogCreateNestedManyWithoutUserInput_schema) as unknown as z.ZodType; -export const AuditLogCreateNestedManyWithoutUserInputObjectZodSchema = z.lazy(__makeSchema_AuditLogCreateNestedManyWithoutUserInput_schema); - - -// File: DeregisterReasonCreateNestedManyWithoutUserInput.schema.ts -const __makeSchema_DeregisterReasonCreateNestedManyWithoutUserInput_schema = () => z.object({ - create: z.union([DeregisterReasonCreateWithoutUserInputObjectSchema, DeregisterReasonCreateWithoutUserInputObjectSchema.array(), DeregisterReasonUncheckedCreateWithoutUserInputObjectSchema, DeregisterReasonUncheckedCreateWithoutUserInputObjectSchema.array()]).optional(), - connectOrCreate: z.union([DeregisterReasonCreateOrConnectWithoutUserInputObjectSchema, DeregisterReasonCreateOrConnectWithoutUserInputObjectSchema.array()]).optional(), - get createMany(){ return DeregisterReasonCreateManyUserInputEnvelopeObjectSchema.optional(); }, - connect: z.union([DeregisterReasonWhereUniqueInputObjectSchema, DeregisterReasonWhereUniqueInputObjectSchema.array()]).optional() -}).strict(); -export const DeregisterReasonCreateNestedManyWithoutUserInputObjectSchema: z.ZodType = z.lazy(__makeSchema_DeregisterReasonCreateNestedManyWithoutUserInput_schema) as unknown as z.ZodType; -export const DeregisterReasonCreateNestedManyWithoutUserInputObjectZodSchema = z.lazy(__makeSchema_DeregisterReasonCreateNestedManyWithoutUserInput_schema); - - -// File: NotificationRecipientCreateNestedManyWithoutUserInput.schema.ts -const __makeSchema_NotificationRecipientCreateNestedManyWithoutUserInput_schema = () => z.object({ - create: z.union([NotificationRecipientCreateWithoutUserInputObjectSchema, NotificationRecipientCreateWithoutUserInputObjectSchema.array(), NotificationRecipientUncheckedCreateWithoutUserInputObjectSchema, NotificationRecipientUncheckedCreateWithoutUserInputObjectSchema.array()]).optional(), - connectOrCreate: z.union([NotificationRecipientCreateOrConnectWithoutUserInputObjectSchema, NotificationRecipientCreateOrConnectWithoutUserInputObjectSchema.array()]).optional(), - get createMany(){ return NotificationRecipientCreateManyUserInputEnvelopeObjectSchema.optional(); }, - connect: z.union([NotificationRecipientWhereUniqueInputObjectSchema, NotificationRecipientWhereUniqueInputObjectSchema.array()]).optional() -}).strict(); -export const NotificationRecipientCreateNestedManyWithoutUserInputObjectSchema: z.ZodType = z.lazy(__makeSchema_NotificationRecipientCreateNestedManyWithoutUserInput_schema) as unknown as z.ZodType; -export const NotificationRecipientCreateNestedManyWithoutUserInputObjectZodSchema = z.lazy(__makeSchema_NotificationRecipientCreateNestedManyWithoutUserInput_schema); - - -// File: NotificationCreateNestedManyWithoutCreatedByInput.schema.ts -const __makeSchema_NotificationCreateNestedManyWithoutCreatedByInput_schema = () => z.object({ - create: z.union([NotificationCreateWithoutCreatedByInputObjectSchema, NotificationCreateWithoutCreatedByInputObjectSchema.array(), NotificationUncheckedCreateWithoutCreatedByInputObjectSchema, NotificationUncheckedCreateWithoutCreatedByInputObjectSchema.array()]).optional(), - connectOrCreate: z.union([NotificationCreateOrConnectWithoutCreatedByInputObjectSchema, NotificationCreateOrConnectWithoutCreatedByInputObjectSchema.array()]).optional(), - get createMany(){ return NotificationCreateManyCreatedByInputEnvelopeObjectSchema.optional(); }, - connect: z.union([NotificationWhereUniqueInputObjectSchema, NotificationWhereUniqueInputObjectSchema.array()]).optional() -}).strict(); -export const NotificationCreateNestedManyWithoutCreatedByInputObjectSchema: z.ZodType = z.lazy(__makeSchema_NotificationCreateNestedManyWithoutCreatedByInput_schema) as unknown as z.ZodType; -export const NotificationCreateNestedManyWithoutCreatedByInputObjectZodSchema = z.lazy(__makeSchema_NotificationCreateNestedManyWithoutCreatedByInput_schema); - - -// File: NotificationCreateNestedManyWithoutLastUpdatedByInput.schema.ts -const __makeSchema_NotificationCreateNestedManyWithoutLastUpdatedByInput_schema = () => z.object({ - create: z.union([NotificationCreateWithoutLastUpdatedByInputObjectSchema, NotificationCreateWithoutLastUpdatedByInputObjectSchema.array(), NotificationUncheckedCreateWithoutLastUpdatedByInputObjectSchema, NotificationUncheckedCreateWithoutLastUpdatedByInputObjectSchema.array()]).optional(), - connectOrCreate: z.union([NotificationCreateOrConnectWithoutLastUpdatedByInputObjectSchema, NotificationCreateOrConnectWithoutLastUpdatedByInputObjectSchema.array()]).optional(), - get createMany(){ return NotificationCreateManyLastUpdatedByInputEnvelopeObjectSchema.optional(); }, - connect: z.union([NotificationWhereUniqueInputObjectSchema, NotificationWhereUniqueInputObjectSchema.array()]).optional() -}).strict(); -export const NotificationCreateNestedManyWithoutLastUpdatedByInputObjectSchema: z.ZodType = z.lazy(__makeSchema_NotificationCreateNestedManyWithoutLastUpdatedByInput_schema) as unknown as z.ZodType; -export const NotificationCreateNestedManyWithoutLastUpdatedByInputObjectZodSchema = z.lazy(__makeSchema_NotificationCreateNestedManyWithoutLastUpdatedByInput_schema); - - -// File: ContestantCreateNestedManyWithoutUserInput.schema.ts -const __makeSchema_ContestantCreateNestedManyWithoutUserInput_schema = () => z.object({ - create: z.union([ContestantCreateWithoutUserInputObjectSchema, ContestantCreateWithoutUserInputObjectSchema.array(), ContestantUncheckedCreateWithoutUserInputObjectSchema, ContestantUncheckedCreateWithoutUserInputObjectSchema.array()]).optional(), - connectOrCreate: z.union([ContestantCreateOrConnectWithoutUserInputObjectSchema, ContestantCreateOrConnectWithoutUserInputObjectSchema.array()]).optional(), - get createMany(){ return ContestantCreateManyUserInputEnvelopeObjectSchema.optional(); }, - connect: z.union([ContestantWhereUniqueInputObjectSchema, ContestantWhereUniqueInputObjectSchema.array()]).optional() -}).strict(); -export const ContestantCreateNestedManyWithoutUserInputObjectSchema: z.ZodType = z.lazy(__makeSchema_ContestantCreateNestedManyWithoutUserInput_schema) as unknown as z.ZodType; -export const ContestantCreateNestedManyWithoutUserInputObjectZodSchema = z.lazy(__makeSchema_ContestantCreateNestedManyWithoutUserInput_schema); - - -// File: ContestTeamCreateNestedManyWithoutMembersInput.schema.ts -const __makeSchema_ContestTeamCreateNestedManyWithoutMembersInput_schema = () => z.object({ - create: z.union([ContestTeamCreateWithoutMembersInputObjectSchema, ContestTeamCreateWithoutMembersInputObjectSchema.array(), ContestTeamUncheckedCreateWithoutMembersInputObjectSchema, ContestTeamUncheckedCreateWithoutMembersInputObjectSchema.array()]).optional(), - connectOrCreate: z.union([ContestTeamCreateOrConnectWithoutMembersInputObjectSchema, ContestTeamCreateOrConnectWithoutMembersInputObjectSchema.array()]).optional(), - connect: z.union([ContestTeamWhereUniqueInputObjectSchema, ContestTeamWhereUniqueInputObjectSchema.array()]).optional() -}).strict(); -export const ContestTeamCreateNestedManyWithoutMembersInputObjectSchema: z.ZodType = z.lazy(__makeSchema_ContestTeamCreateNestedManyWithoutMembersInput_schema) as unknown as z.ZodType; -export const ContestTeamCreateNestedManyWithoutMembersInputObjectZodSchema = z.lazy(__makeSchema_ContestTeamCreateNestedManyWithoutMembersInput_schema); - - -// File: PrivacyPermissionsUncheckedCreateNestedOneWithoutUserInput.schema.ts -const __makeSchema_PrivacyPermissionsUncheckedCreateNestedOneWithoutUserInput_schema = () => z.object({ - create: z.union([PrivacyPermissionsCreateWithoutUserInputObjectSchema, PrivacyPermissionsUncheckedCreateWithoutUserInputObjectSchema]).optional(), - get connectOrCreate(){ return PrivacyPermissionsCreateOrConnectWithoutUserInputObjectSchema.optional(); }, - get connect(){ return PrivacyPermissionsWhereUniqueInputObjectSchema.optional(); } -}).strict(); -export const PrivacyPermissionsUncheckedCreateNestedOneWithoutUserInputObjectSchema: z.ZodType = z.lazy(__makeSchema_PrivacyPermissionsUncheckedCreateNestedOneWithoutUserInput_schema) as unknown as z.ZodType; -export const PrivacyPermissionsUncheckedCreateNestedOneWithoutUserInputObjectZodSchema = z.lazy(__makeSchema_PrivacyPermissionsUncheckedCreateNestedOneWithoutUserInput_schema); - - -// File: NotificationPermissionsUncheckedCreateNestedOneWithoutUserInput.schema.ts -const __makeSchema_NotificationPermissionsUncheckedCreateNestedOneWithoutUserInput_schema = () => z.object({ - create: z.union([NotificationPermissionsCreateWithoutUserInputObjectSchema, NotificationPermissionsUncheckedCreateWithoutUserInputObjectSchema]).optional(), - get connectOrCreate(){ return NotificationPermissionsCreateOrConnectWithoutUserInputObjectSchema.optional(); }, - get connect(){ return NotificationPermissionsWhereUniqueInputObjectSchema.optional(); } -}).strict(); -export const NotificationPermissionsUncheckedCreateNestedOneWithoutUserInputObjectSchema: z.ZodType = z.lazy(__makeSchema_NotificationPermissionsUncheckedCreateNestedOneWithoutUserInput_schema) as unknown as z.ZodType; -export const NotificationPermissionsUncheckedCreateNestedOneWithoutUserInputObjectZodSchema = z.lazy(__makeSchema_NotificationPermissionsUncheckedCreateNestedOneWithoutUserInput_schema); - - -// File: AttendeeUncheckedCreateNestedManyWithoutUserInput.schema.ts -const __makeSchema_AttendeeUncheckedCreateNestedManyWithoutUserInput_schema = () => z.object({ - create: z.union([AttendeeCreateWithoutUserInputObjectSchema, AttendeeCreateWithoutUserInputObjectSchema.array(), AttendeeUncheckedCreateWithoutUserInputObjectSchema, AttendeeUncheckedCreateWithoutUserInputObjectSchema.array()]).optional(), - connectOrCreate: z.union([AttendeeCreateOrConnectWithoutUserInputObjectSchema, AttendeeCreateOrConnectWithoutUserInputObjectSchema.array()]).optional(), - get createMany(){ return AttendeeCreateManyUserInputEnvelopeObjectSchema.optional(); }, - connect: z.union([AttendeeWhereUniqueInputObjectSchema, AttendeeWhereUniqueInputObjectSchema.array()]).optional() -}).strict(); -export const AttendeeUncheckedCreateNestedManyWithoutUserInputObjectSchema: z.ZodType = z.lazy(__makeSchema_AttendeeUncheckedCreateNestedManyWithoutUserInput_schema) as unknown as z.ZodType; -export const AttendeeUncheckedCreateNestedManyWithoutUserInputObjectZodSchema = z.lazy(__makeSchema_AttendeeUncheckedCreateNestedManyWithoutUserInput_schema); - - -// File: PersonalMarkUncheckedCreateNestedManyWithoutUserInput.schema.ts -const __makeSchema_PersonalMarkUncheckedCreateNestedManyWithoutUserInput_schema = () => z.object({ - create: z.union([PersonalMarkCreateWithoutUserInputObjectSchema, PersonalMarkCreateWithoutUserInputObjectSchema.array(), PersonalMarkUncheckedCreateWithoutUserInputObjectSchema, PersonalMarkUncheckedCreateWithoutUserInputObjectSchema.array()]).optional(), - connectOrCreate: z.union([PersonalMarkCreateOrConnectWithoutUserInputObjectSchema, PersonalMarkCreateOrConnectWithoutUserInputObjectSchema.array()]).optional(), - get createMany(){ return PersonalMarkCreateManyUserInputEnvelopeObjectSchema.optional(); }, - connect: z.union([PersonalMarkWhereUniqueInputObjectSchema, PersonalMarkWhereUniqueInputObjectSchema.array()]).optional() -}).strict(); -export const PersonalMarkUncheckedCreateNestedManyWithoutUserInputObjectSchema: z.ZodType = z.lazy(__makeSchema_PersonalMarkUncheckedCreateNestedManyWithoutUserInput_schema) as unknown as z.ZodType; -export const PersonalMarkUncheckedCreateNestedManyWithoutUserInputObjectZodSchema = z.lazy(__makeSchema_PersonalMarkUncheckedCreateNestedManyWithoutUserInput_schema); - - -// File: GroupMembershipUncheckedCreateNestedManyWithoutUserInput.schema.ts -const __makeSchema_GroupMembershipUncheckedCreateNestedManyWithoutUserInput_schema = () => z.object({ - create: z.union([GroupMembershipCreateWithoutUserInputObjectSchema, GroupMembershipCreateWithoutUserInputObjectSchema.array(), GroupMembershipUncheckedCreateWithoutUserInputObjectSchema, GroupMembershipUncheckedCreateWithoutUserInputObjectSchema.array()]).optional(), - connectOrCreate: z.union([GroupMembershipCreateOrConnectWithoutUserInputObjectSchema, GroupMembershipCreateOrConnectWithoutUserInputObjectSchema.array()]).optional(), - get createMany(){ return GroupMembershipCreateManyUserInputEnvelopeObjectSchema.optional(); }, - connect: z.union([GroupMembershipWhereUniqueInputObjectSchema, GroupMembershipWhereUniqueInputObjectSchema.array()]).optional() -}).strict(); -export const GroupMembershipUncheckedCreateNestedManyWithoutUserInputObjectSchema: z.ZodType = z.lazy(__makeSchema_GroupMembershipUncheckedCreateNestedManyWithoutUserInput_schema) as unknown as z.ZodType; -export const GroupMembershipUncheckedCreateNestedManyWithoutUserInputObjectZodSchema = z.lazy(__makeSchema_GroupMembershipUncheckedCreateNestedManyWithoutUserInput_schema); - - -// File: MembershipUncheckedCreateNestedManyWithoutUserInput.schema.ts -const __makeSchema_MembershipUncheckedCreateNestedManyWithoutUserInput_schema = () => z.object({ - create: z.union([MembershipCreateWithoutUserInputObjectSchema, MembershipCreateWithoutUserInputObjectSchema.array(), MembershipUncheckedCreateWithoutUserInputObjectSchema, MembershipUncheckedCreateWithoutUserInputObjectSchema.array()]).optional(), - connectOrCreate: z.union([MembershipCreateOrConnectWithoutUserInputObjectSchema, MembershipCreateOrConnectWithoutUserInputObjectSchema.array()]).optional(), - get createMany(){ return MembershipCreateManyUserInputEnvelopeObjectSchema.optional(); }, - connect: z.union([MembershipWhereUniqueInputObjectSchema, MembershipWhereUniqueInputObjectSchema.array()]).optional() -}).strict(); -export const MembershipUncheckedCreateNestedManyWithoutUserInputObjectSchema: z.ZodType = z.lazy(__makeSchema_MembershipUncheckedCreateNestedManyWithoutUserInput_schema) as unknown as z.ZodType; -export const MembershipUncheckedCreateNestedManyWithoutUserInputObjectZodSchema = z.lazy(__makeSchema_MembershipUncheckedCreateNestedManyWithoutUserInput_schema); - - -// File: PersonalMarkUncheckedCreateNestedManyWithoutGivenByInput.schema.ts -const __makeSchema_PersonalMarkUncheckedCreateNestedManyWithoutGivenByInput_schema = () => z.object({ - create: z.union([PersonalMarkCreateWithoutGivenByInputObjectSchema, PersonalMarkCreateWithoutGivenByInputObjectSchema.array(), PersonalMarkUncheckedCreateWithoutGivenByInputObjectSchema, PersonalMarkUncheckedCreateWithoutGivenByInputObjectSchema.array()]).optional(), - connectOrCreate: z.union([PersonalMarkCreateOrConnectWithoutGivenByInputObjectSchema, PersonalMarkCreateOrConnectWithoutGivenByInputObjectSchema.array()]).optional(), - get createMany(){ return PersonalMarkCreateManyGivenByInputEnvelopeObjectSchema.optional(); }, - connect: z.union([PersonalMarkWhereUniqueInputObjectSchema, PersonalMarkWhereUniqueInputObjectSchema.array()]).optional() -}).strict(); -export const PersonalMarkUncheckedCreateNestedManyWithoutGivenByInputObjectSchema: z.ZodType = z.lazy(__makeSchema_PersonalMarkUncheckedCreateNestedManyWithoutGivenByInput_schema) as unknown as z.ZodType; -export const PersonalMarkUncheckedCreateNestedManyWithoutGivenByInputObjectZodSchema = z.lazy(__makeSchema_PersonalMarkUncheckedCreateNestedManyWithoutGivenByInput_schema); - - -// File: AttendeeUncheckedCreateNestedManyWithoutPaymentRefundedByInput.schema.ts -const __makeSchema_AttendeeUncheckedCreateNestedManyWithoutPaymentRefundedByInput_schema = () => z.object({ - create: z.union([AttendeeCreateWithoutPaymentRefundedByInputObjectSchema, AttendeeCreateWithoutPaymentRefundedByInputObjectSchema.array(), AttendeeUncheckedCreateWithoutPaymentRefundedByInputObjectSchema, AttendeeUncheckedCreateWithoutPaymentRefundedByInputObjectSchema.array()]).optional(), - connectOrCreate: z.union([AttendeeCreateOrConnectWithoutPaymentRefundedByInputObjectSchema, AttendeeCreateOrConnectWithoutPaymentRefundedByInputObjectSchema.array()]).optional(), - get createMany(){ return AttendeeCreateManyPaymentRefundedByInputEnvelopeObjectSchema.optional(); }, - connect: z.union([AttendeeWhereUniqueInputObjectSchema, AttendeeWhereUniqueInputObjectSchema.array()]).optional() -}).strict(); -export const AttendeeUncheckedCreateNestedManyWithoutPaymentRefundedByInputObjectSchema: z.ZodType = z.lazy(__makeSchema_AttendeeUncheckedCreateNestedManyWithoutPaymentRefundedByInput_schema) as unknown as z.ZodType; -export const AttendeeUncheckedCreateNestedManyWithoutPaymentRefundedByInputObjectZodSchema = z.lazy(__makeSchema_AttendeeUncheckedCreateNestedManyWithoutPaymentRefundedByInput_schema); - - -// File: AuditLogUncheckedCreateNestedManyWithoutUserInput.schema.ts -const __makeSchema_AuditLogUncheckedCreateNestedManyWithoutUserInput_schema = () => z.object({ - create: z.union([AuditLogCreateWithoutUserInputObjectSchema, AuditLogCreateWithoutUserInputObjectSchema.array(), AuditLogUncheckedCreateWithoutUserInputObjectSchema, AuditLogUncheckedCreateWithoutUserInputObjectSchema.array()]).optional(), - connectOrCreate: z.union([AuditLogCreateOrConnectWithoutUserInputObjectSchema, AuditLogCreateOrConnectWithoutUserInputObjectSchema.array()]).optional(), - get createMany(){ return AuditLogCreateManyUserInputEnvelopeObjectSchema.optional(); }, - connect: z.union([AuditLogWhereUniqueInputObjectSchema, AuditLogWhereUniqueInputObjectSchema.array()]).optional() -}).strict(); -export const AuditLogUncheckedCreateNestedManyWithoutUserInputObjectSchema: z.ZodType = z.lazy(__makeSchema_AuditLogUncheckedCreateNestedManyWithoutUserInput_schema) as unknown as z.ZodType; -export const AuditLogUncheckedCreateNestedManyWithoutUserInputObjectZodSchema = z.lazy(__makeSchema_AuditLogUncheckedCreateNestedManyWithoutUserInput_schema); - - -// File: DeregisterReasonUncheckedCreateNestedManyWithoutUserInput.schema.ts -const __makeSchema_DeregisterReasonUncheckedCreateNestedManyWithoutUserInput_schema = () => z.object({ - create: z.union([DeregisterReasonCreateWithoutUserInputObjectSchema, DeregisterReasonCreateWithoutUserInputObjectSchema.array(), DeregisterReasonUncheckedCreateWithoutUserInputObjectSchema, DeregisterReasonUncheckedCreateWithoutUserInputObjectSchema.array()]).optional(), - connectOrCreate: z.union([DeregisterReasonCreateOrConnectWithoutUserInputObjectSchema, DeregisterReasonCreateOrConnectWithoutUserInputObjectSchema.array()]).optional(), - get createMany(){ return DeregisterReasonCreateManyUserInputEnvelopeObjectSchema.optional(); }, - connect: z.union([DeregisterReasonWhereUniqueInputObjectSchema, DeregisterReasonWhereUniqueInputObjectSchema.array()]).optional() -}).strict(); -export const DeregisterReasonUncheckedCreateNestedManyWithoutUserInputObjectSchema: z.ZodType = z.lazy(__makeSchema_DeregisterReasonUncheckedCreateNestedManyWithoutUserInput_schema) as unknown as z.ZodType; -export const DeregisterReasonUncheckedCreateNestedManyWithoutUserInputObjectZodSchema = z.lazy(__makeSchema_DeregisterReasonUncheckedCreateNestedManyWithoutUserInput_schema); - - -// File: NotificationRecipientUncheckedCreateNestedManyWithoutUserInput.schema.ts -const __makeSchema_NotificationRecipientUncheckedCreateNestedManyWithoutUserInput_schema = () => z.object({ - create: z.union([NotificationRecipientCreateWithoutUserInputObjectSchema, NotificationRecipientCreateWithoutUserInputObjectSchema.array(), NotificationRecipientUncheckedCreateWithoutUserInputObjectSchema, NotificationRecipientUncheckedCreateWithoutUserInputObjectSchema.array()]).optional(), - connectOrCreate: z.union([NotificationRecipientCreateOrConnectWithoutUserInputObjectSchema, NotificationRecipientCreateOrConnectWithoutUserInputObjectSchema.array()]).optional(), - get createMany(){ return NotificationRecipientCreateManyUserInputEnvelopeObjectSchema.optional(); }, - connect: z.union([NotificationRecipientWhereUniqueInputObjectSchema, NotificationRecipientWhereUniqueInputObjectSchema.array()]).optional() -}).strict(); -export const NotificationRecipientUncheckedCreateNestedManyWithoutUserInputObjectSchema: z.ZodType = z.lazy(__makeSchema_NotificationRecipientUncheckedCreateNestedManyWithoutUserInput_schema) as unknown as z.ZodType; -export const NotificationRecipientUncheckedCreateNestedManyWithoutUserInputObjectZodSchema = z.lazy(__makeSchema_NotificationRecipientUncheckedCreateNestedManyWithoutUserInput_schema); - - -// File: NotificationUncheckedCreateNestedManyWithoutCreatedByInput.schema.ts -const __makeSchema_NotificationUncheckedCreateNestedManyWithoutCreatedByInput_schema = () => z.object({ - create: z.union([NotificationCreateWithoutCreatedByInputObjectSchema, NotificationCreateWithoutCreatedByInputObjectSchema.array(), NotificationUncheckedCreateWithoutCreatedByInputObjectSchema, NotificationUncheckedCreateWithoutCreatedByInputObjectSchema.array()]).optional(), - connectOrCreate: z.union([NotificationCreateOrConnectWithoutCreatedByInputObjectSchema, NotificationCreateOrConnectWithoutCreatedByInputObjectSchema.array()]).optional(), - get createMany(){ return NotificationCreateManyCreatedByInputEnvelopeObjectSchema.optional(); }, - connect: z.union([NotificationWhereUniqueInputObjectSchema, NotificationWhereUniqueInputObjectSchema.array()]).optional() -}).strict(); -export const NotificationUncheckedCreateNestedManyWithoutCreatedByInputObjectSchema: z.ZodType = z.lazy(__makeSchema_NotificationUncheckedCreateNestedManyWithoutCreatedByInput_schema) as unknown as z.ZodType; -export const NotificationUncheckedCreateNestedManyWithoutCreatedByInputObjectZodSchema = z.lazy(__makeSchema_NotificationUncheckedCreateNestedManyWithoutCreatedByInput_schema); - - -// File: NotificationUncheckedCreateNestedManyWithoutLastUpdatedByInput.schema.ts -const __makeSchema_NotificationUncheckedCreateNestedManyWithoutLastUpdatedByInput_schema = () => z.object({ - create: z.union([NotificationCreateWithoutLastUpdatedByInputObjectSchema, NotificationCreateWithoutLastUpdatedByInputObjectSchema.array(), NotificationUncheckedCreateWithoutLastUpdatedByInputObjectSchema, NotificationUncheckedCreateWithoutLastUpdatedByInputObjectSchema.array()]).optional(), - connectOrCreate: z.union([NotificationCreateOrConnectWithoutLastUpdatedByInputObjectSchema, NotificationCreateOrConnectWithoutLastUpdatedByInputObjectSchema.array()]).optional(), - get createMany(){ return NotificationCreateManyLastUpdatedByInputEnvelopeObjectSchema.optional(); }, - connect: z.union([NotificationWhereUniqueInputObjectSchema, NotificationWhereUniqueInputObjectSchema.array()]).optional() -}).strict(); -export const NotificationUncheckedCreateNestedManyWithoutLastUpdatedByInputObjectSchema: z.ZodType = z.lazy(__makeSchema_NotificationUncheckedCreateNestedManyWithoutLastUpdatedByInput_schema) as unknown as z.ZodType; -export const NotificationUncheckedCreateNestedManyWithoutLastUpdatedByInputObjectZodSchema = z.lazy(__makeSchema_NotificationUncheckedCreateNestedManyWithoutLastUpdatedByInput_schema); - - -// File: ContestantUncheckedCreateNestedManyWithoutUserInput.schema.ts -const __makeSchema_ContestantUncheckedCreateNestedManyWithoutUserInput_schema = () => z.object({ - create: z.union([ContestantCreateWithoutUserInputObjectSchema, ContestantCreateWithoutUserInputObjectSchema.array(), ContestantUncheckedCreateWithoutUserInputObjectSchema, ContestantUncheckedCreateWithoutUserInputObjectSchema.array()]).optional(), - connectOrCreate: z.union([ContestantCreateOrConnectWithoutUserInputObjectSchema, ContestantCreateOrConnectWithoutUserInputObjectSchema.array()]).optional(), - get createMany(){ return ContestantCreateManyUserInputEnvelopeObjectSchema.optional(); }, - connect: z.union([ContestantWhereUniqueInputObjectSchema, ContestantWhereUniqueInputObjectSchema.array()]).optional() -}).strict(); -export const ContestantUncheckedCreateNestedManyWithoutUserInputObjectSchema: z.ZodType = z.lazy(__makeSchema_ContestantUncheckedCreateNestedManyWithoutUserInput_schema) as unknown as z.ZodType; -export const ContestantUncheckedCreateNestedManyWithoutUserInputObjectZodSchema = z.lazy(__makeSchema_ContestantUncheckedCreateNestedManyWithoutUserInput_schema); - - -// File: ContestTeamUncheckedCreateNestedManyWithoutMembersInput.schema.ts -const __makeSchema_ContestTeamUncheckedCreateNestedManyWithoutMembersInput_schema = () => z.object({ - create: z.union([ContestTeamCreateWithoutMembersInputObjectSchema, ContestTeamCreateWithoutMembersInputObjectSchema.array(), ContestTeamUncheckedCreateWithoutMembersInputObjectSchema, ContestTeamUncheckedCreateWithoutMembersInputObjectSchema.array()]).optional(), - connectOrCreate: z.union([ContestTeamCreateOrConnectWithoutMembersInputObjectSchema, ContestTeamCreateOrConnectWithoutMembersInputObjectSchema.array()]).optional(), - connect: z.union([ContestTeamWhereUniqueInputObjectSchema, ContestTeamWhereUniqueInputObjectSchema.array()]).optional() -}).strict(); -export const ContestTeamUncheckedCreateNestedManyWithoutMembersInputObjectSchema: z.ZodType = z.lazy(__makeSchema_ContestTeamUncheckedCreateNestedManyWithoutMembersInput_schema) as unknown as z.ZodType; -export const ContestTeamUncheckedCreateNestedManyWithoutMembersInputObjectZodSchema = z.lazy(__makeSchema_ContestTeamUncheckedCreateNestedManyWithoutMembersInput_schema); - - -// File: NullableStringFieldUpdateOperationsInput.schema.ts -const __makeSchema_NullableStringFieldUpdateOperationsInput_schema = () => z.object({ - set: z.string().optional() -}).strict(); -export const NullableStringFieldUpdateOperationsInputObjectSchema: z.ZodType = z.lazy(__makeSchema_NullableStringFieldUpdateOperationsInput_schema) as unknown as z.ZodType; -export const NullableStringFieldUpdateOperationsInputObjectZodSchema = z.lazy(__makeSchema_NullableStringFieldUpdateOperationsInput_schema); - - -// File: EnumGenderFieldUpdateOperationsInput.schema.ts -const __makeSchema_EnumGenderFieldUpdateOperationsInput_schema = () => z.object({ - set: GenderSchema.optional() -}).strict(); -export const EnumGenderFieldUpdateOperationsInputObjectSchema: z.ZodType = z.lazy(__makeSchema_EnumGenderFieldUpdateOperationsInput_schema) as unknown as z.ZodType; -export const EnumGenderFieldUpdateOperationsInputObjectZodSchema = z.lazy(__makeSchema_EnumGenderFieldUpdateOperationsInput_schema); - - -// File: UserUpdateflagsInput.schema.ts -const __makeSchema_UserUpdateflagsInput_schema = () => z.object({ - set: z.string().array().optional(), - push: z.union([z.string(), z.string().array()]).optional() -}).strict(); -export const UserUpdateflagsInputObjectSchema: z.ZodType = z.lazy(__makeSchema_UserUpdateflagsInput_schema) as unknown as z.ZodType; -export const UserUpdateflagsInputObjectZodSchema = z.lazy(__makeSchema_UserUpdateflagsInput_schema); - - -// File: PrivacyPermissionsUpdateOneWithoutUserNestedInput.schema.ts -const __makeSchema_PrivacyPermissionsUpdateOneWithoutUserNestedInput_schema = () => z.object({ - create: z.union([PrivacyPermissionsCreateWithoutUserInputObjectSchema, PrivacyPermissionsUncheckedCreateWithoutUserInputObjectSchema]).optional(), - get connectOrCreate(){ return PrivacyPermissionsCreateOrConnectWithoutUserInputObjectSchema.optional(); }, - get upsert(){ return PrivacyPermissionsUpsertWithoutUserInputObjectSchema.optional(); }, - disconnect: z.union([z.boolean(), PrivacyPermissionsWhereInputObjectSchema]).optional(), - delete: z.union([z.boolean(), PrivacyPermissionsWhereInputObjectSchema]).optional(), - get connect(){ return PrivacyPermissionsWhereUniqueInputObjectSchema.optional(); }, - update: z.union([PrivacyPermissionsUpdateToOneWithWhereWithoutUserInputObjectSchema, PrivacyPermissionsUpdateWithoutUserInputObjectSchema, PrivacyPermissionsUncheckedUpdateWithoutUserInputObjectSchema]).optional() -}).strict(); -export const PrivacyPermissionsUpdateOneWithoutUserNestedInputObjectSchema: z.ZodType = z.lazy(__makeSchema_PrivacyPermissionsUpdateOneWithoutUserNestedInput_schema) as unknown as z.ZodType; -export const PrivacyPermissionsUpdateOneWithoutUserNestedInputObjectZodSchema = z.lazy(__makeSchema_PrivacyPermissionsUpdateOneWithoutUserNestedInput_schema); - - -// File: NotificationPermissionsUpdateOneWithoutUserNestedInput.schema.ts -const __makeSchema_NotificationPermissionsUpdateOneWithoutUserNestedInput_schema = () => z.object({ - create: z.union([NotificationPermissionsCreateWithoutUserInputObjectSchema, NotificationPermissionsUncheckedCreateWithoutUserInputObjectSchema]).optional(), - get connectOrCreate(){ return NotificationPermissionsCreateOrConnectWithoutUserInputObjectSchema.optional(); }, - get upsert(){ return NotificationPermissionsUpsertWithoutUserInputObjectSchema.optional(); }, - disconnect: z.union([z.boolean(), NotificationPermissionsWhereInputObjectSchema]).optional(), - delete: z.union([z.boolean(), NotificationPermissionsWhereInputObjectSchema]).optional(), - get connect(){ return NotificationPermissionsWhereUniqueInputObjectSchema.optional(); }, - update: z.union([NotificationPermissionsUpdateToOneWithWhereWithoutUserInputObjectSchema, NotificationPermissionsUpdateWithoutUserInputObjectSchema, NotificationPermissionsUncheckedUpdateWithoutUserInputObjectSchema]).optional() -}).strict(); -export const NotificationPermissionsUpdateOneWithoutUserNestedInputObjectSchema: z.ZodType = z.lazy(__makeSchema_NotificationPermissionsUpdateOneWithoutUserNestedInput_schema) as unknown as z.ZodType; -export const NotificationPermissionsUpdateOneWithoutUserNestedInputObjectZodSchema = z.lazy(__makeSchema_NotificationPermissionsUpdateOneWithoutUserNestedInput_schema); - - -// File: AttendeeUpdateManyWithoutUserNestedInput.schema.ts -const __makeSchema_AttendeeUpdateManyWithoutUserNestedInput_schema = () => z.object({ - create: z.union([AttendeeCreateWithoutUserInputObjectSchema, AttendeeCreateWithoutUserInputObjectSchema.array(), AttendeeUncheckedCreateWithoutUserInputObjectSchema, AttendeeUncheckedCreateWithoutUserInputObjectSchema.array()]).optional(), - connectOrCreate: z.union([AttendeeCreateOrConnectWithoutUserInputObjectSchema, AttendeeCreateOrConnectWithoutUserInputObjectSchema.array()]).optional(), - upsert: z.union([AttendeeUpsertWithWhereUniqueWithoutUserInputObjectSchema, AttendeeUpsertWithWhereUniqueWithoutUserInputObjectSchema.array()]).optional(), - get createMany(){ return AttendeeCreateManyUserInputEnvelopeObjectSchema.optional(); }, - set: z.union([AttendeeWhereUniqueInputObjectSchema, AttendeeWhereUniqueInputObjectSchema.array()]).optional(), - disconnect: z.union([AttendeeWhereUniqueInputObjectSchema, AttendeeWhereUniqueInputObjectSchema.array()]).optional(), - delete: z.union([AttendeeWhereUniqueInputObjectSchema, AttendeeWhereUniqueInputObjectSchema.array()]).optional(), - connect: z.union([AttendeeWhereUniqueInputObjectSchema, AttendeeWhereUniqueInputObjectSchema.array()]).optional(), - update: z.union([AttendeeUpdateWithWhereUniqueWithoutUserInputObjectSchema, AttendeeUpdateWithWhereUniqueWithoutUserInputObjectSchema.array()]).optional(), - updateMany: z.union([AttendeeUpdateManyWithWhereWithoutUserInputObjectSchema, AttendeeUpdateManyWithWhereWithoutUserInputObjectSchema.array()]).optional(), - deleteMany: z.union([AttendeeScalarWhereInputObjectSchema, AttendeeScalarWhereInputObjectSchema.array()]).optional() -}).strict(); -export const AttendeeUpdateManyWithoutUserNestedInputObjectSchema: z.ZodType = z.lazy(__makeSchema_AttendeeUpdateManyWithoutUserNestedInput_schema) as unknown as z.ZodType; -export const AttendeeUpdateManyWithoutUserNestedInputObjectZodSchema = z.lazy(__makeSchema_AttendeeUpdateManyWithoutUserNestedInput_schema); - - -// File: PersonalMarkUpdateManyWithoutUserNestedInput.schema.ts -const __makeSchema_PersonalMarkUpdateManyWithoutUserNestedInput_schema = () => z.object({ - create: z.union([PersonalMarkCreateWithoutUserInputObjectSchema, PersonalMarkCreateWithoutUserInputObjectSchema.array(), PersonalMarkUncheckedCreateWithoutUserInputObjectSchema, PersonalMarkUncheckedCreateWithoutUserInputObjectSchema.array()]).optional(), - connectOrCreate: z.union([PersonalMarkCreateOrConnectWithoutUserInputObjectSchema, PersonalMarkCreateOrConnectWithoutUserInputObjectSchema.array()]).optional(), - upsert: z.union([PersonalMarkUpsertWithWhereUniqueWithoutUserInputObjectSchema, PersonalMarkUpsertWithWhereUniqueWithoutUserInputObjectSchema.array()]).optional(), - get createMany(){ return PersonalMarkCreateManyUserInputEnvelopeObjectSchema.optional(); }, - set: z.union([PersonalMarkWhereUniqueInputObjectSchema, PersonalMarkWhereUniqueInputObjectSchema.array()]).optional(), - disconnect: z.union([PersonalMarkWhereUniqueInputObjectSchema, PersonalMarkWhereUniqueInputObjectSchema.array()]).optional(), - delete: z.union([PersonalMarkWhereUniqueInputObjectSchema, PersonalMarkWhereUniqueInputObjectSchema.array()]).optional(), - connect: z.union([PersonalMarkWhereUniqueInputObjectSchema, PersonalMarkWhereUniqueInputObjectSchema.array()]).optional(), - update: z.union([PersonalMarkUpdateWithWhereUniqueWithoutUserInputObjectSchema, PersonalMarkUpdateWithWhereUniqueWithoutUserInputObjectSchema.array()]).optional(), - updateMany: z.union([PersonalMarkUpdateManyWithWhereWithoutUserInputObjectSchema, PersonalMarkUpdateManyWithWhereWithoutUserInputObjectSchema.array()]).optional(), - deleteMany: z.union([PersonalMarkScalarWhereInputObjectSchema, PersonalMarkScalarWhereInputObjectSchema.array()]).optional() -}).strict(); -export const PersonalMarkUpdateManyWithoutUserNestedInputObjectSchema: z.ZodType = z.lazy(__makeSchema_PersonalMarkUpdateManyWithoutUserNestedInput_schema) as unknown as z.ZodType; -export const PersonalMarkUpdateManyWithoutUserNestedInputObjectZodSchema = z.lazy(__makeSchema_PersonalMarkUpdateManyWithoutUserNestedInput_schema); - - -// File: GroupMembershipUpdateManyWithoutUserNestedInput.schema.ts -const __makeSchema_GroupMembershipUpdateManyWithoutUserNestedInput_schema = () => z.object({ - create: z.union([GroupMembershipCreateWithoutUserInputObjectSchema, GroupMembershipCreateWithoutUserInputObjectSchema.array(), GroupMembershipUncheckedCreateWithoutUserInputObjectSchema, GroupMembershipUncheckedCreateWithoutUserInputObjectSchema.array()]).optional(), - connectOrCreate: z.union([GroupMembershipCreateOrConnectWithoutUserInputObjectSchema, GroupMembershipCreateOrConnectWithoutUserInputObjectSchema.array()]).optional(), - upsert: z.union([GroupMembershipUpsertWithWhereUniqueWithoutUserInputObjectSchema, GroupMembershipUpsertWithWhereUniqueWithoutUserInputObjectSchema.array()]).optional(), - get createMany(){ return GroupMembershipCreateManyUserInputEnvelopeObjectSchema.optional(); }, - set: z.union([GroupMembershipWhereUniqueInputObjectSchema, GroupMembershipWhereUniqueInputObjectSchema.array()]).optional(), - disconnect: z.union([GroupMembershipWhereUniqueInputObjectSchema, GroupMembershipWhereUniqueInputObjectSchema.array()]).optional(), - delete: z.union([GroupMembershipWhereUniqueInputObjectSchema, GroupMembershipWhereUniqueInputObjectSchema.array()]).optional(), - connect: z.union([GroupMembershipWhereUniqueInputObjectSchema, GroupMembershipWhereUniqueInputObjectSchema.array()]).optional(), - update: z.union([GroupMembershipUpdateWithWhereUniqueWithoutUserInputObjectSchema, GroupMembershipUpdateWithWhereUniqueWithoutUserInputObjectSchema.array()]).optional(), - updateMany: z.union([GroupMembershipUpdateManyWithWhereWithoutUserInputObjectSchema, GroupMembershipUpdateManyWithWhereWithoutUserInputObjectSchema.array()]).optional(), - deleteMany: z.union([GroupMembershipScalarWhereInputObjectSchema, GroupMembershipScalarWhereInputObjectSchema.array()]).optional() -}).strict(); -export const GroupMembershipUpdateManyWithoutUserNestedInputObjectSchema: z.ZodType = z.lazy(__makeSchema_GroupMembershipUpdateManyWithoutUserNestedInput_schema) as unknown as z.ZodType; -export const GroupMembershipUpdateManyWithoutUserNestedInputObjectZodSchema = z.lazy(__makeSchema_GroupMembershipUpdateManyWithoutUserNestedInput_schema); - - -// File: MembershipUpdateManyWithoutUserNestedInput.schema.ts -const __makeSchema_MembershipUpdateManyWithoutUserNestedInput_schema = () => z.object({ - create: z.union([MembershipCreateWithoutUserInputObjectSchema, MembershipCreateWithoutUserInputObjectSchema.array(), MembershipUncheckedCreateWithoutUserInputObjectSchema, MembershipUncheckedCreateWithoutUserInputObjectSchema.array()]).optional(), - connectOrCreate: z.union([MembershipCreateOrConnectWithoutUserInputObjectSchema, MembershipCreateOrConnectWithoutUserInputObjectSchema.array()]).optional(), - upsert: z.union([MembershipUpsertWithWhereUniqueWithoutUserInputObjectSchema, MembershipUpsertWithWhereUniqueWithoutUserInputObjectSchema.array()]).optional(), - get createMany(){ return MembershipCreateManyUserInputEnvelopeObjectSchema.optional(); }, - set: z.union([MembershipWhereUniqueInputObjectSchema, MembershipWhereUniqueInputObjectSchema.array()]).optional(), - disconnect: z.union([MembershipWhereUniqueInputObjectSchema, MembershipWhereUniqueInputObjectSchema.array()]).optional(), - delete: z.union([MembershipWhereUniqueInputObjectSchema, MembershipWhereUniqueInputObjectSchema.array()]).optional(), - connect: z.union([MembershipWhereUniqueInputObjectSchema, MembershipWhereUniqueInputObjectSchema.array()]).optional(), - update: z.union([MembershipUpdateWithWhereUniqueWithoutUserInputObjectSchema, MembershipUpdateWithWhereUniqueWithoutUserInputObjectSchema.array()]).optional(), - updateMany: z.union([MembershipUpdateManyWithWhereWithoutUserInputObjectSchema, MembershipUpdateManyWithWhereWithoutUserInputObjectSchema.array()]).optional(), - deleteMany: z.union([MembershipScalarWhereInputObjectSchema, MembershipScalarWhereInputObjectSchema.array()]).optional() -}).strict(); -export const MembershipUpdateManyWithoutUserNestedInputObjectSchema: z.ZodType = z.lazy(__makeSchema_MembershipUpdateManyWithoutUserNestedInput_schema) as unknown as z.ZodType; -export const MembershipUpdateManyWithoutUserNestedInputObjectZodSchema = z.lazy(__makeSchema_MembershipUpdateManyWithoutUserNestedInput_schema); - - -// File: PersonalMarkUpdateManyWithoutGivenByNestedInput.schema.ts -const __makeSchema_PersonalMarkUpdateManyWithoutGivenByNestedInput_schema = () => z.object({ - create: z.union([PersonalMarkCreateWithoutGivenByInputObjectSchema, PersonalMarkCreateWithoutGivenByInputObjectSchema.array(), PersonalMarkUncheckedCreateWithoutGivenByInputObjectSchema, PersonalMarkUncheckedCreateWithoutGivenByInputObjectSchema.array()]).optional(), - connectOrCreate: z.union([PersonalMarkCreateOrConnectWithoutGivenByInputObjectSchema, PersonalMarkCreateOrConnectWithoutGivenByInputObjectSchema.array()]).optional(), - upsert: z.union([PersonalMarkUpsertWithWhereUniqueWithoutGivenByInputObjectSchema, PersonalMarkUpsertWithWhereUniqueWithoutGivenByInputObjectSchema.array()]).optional(), - get createMany(){ return PersonalMarkCreateManyGivenByInputEnvelopeObjectSchema.optional(); }, - set: z.union([PersonalMarkWhereUniqueInputObjectSchema, PersonalMarkWhereUniqueInputObjectSchema.array()]).optional(), - disconnect: z.union([PersonalMarkWhereUniqueInputObjectSchema, PersonalMarkWhereUniqueInputObjectSchema.array()]).optional(), - delete: z.union([PersonalMarkWhereUniqueInputObjectSchema, PersonalMarkWhereUniqueInputObjectSchema.array()]).optional(), - connect: z.union([PersonalMarkWhereUniqueInputObjectSchema, PersonalMarkWhereUniqueInputObjectSchema.array()]).optional(), - update: z.union([PersonalMarkUpdateWithWhereUniqueWithoutGivenByInputObjectSchema, PersonalMarkUpdateWithWhereUniqueWithoutGivenByInputObjectSchema.array()]).optional(), - updateMany: z.union([PersonalMarkUpdateManyWithWhereWithoutGivenByInputObjectSchema, PersonalMarkUpdateManyWithWhereWithoutGivenByInputObjectSchema.array()]).optional(), - deleteMany: z.union([PersonalMarkScalarWhereInputObjectSchema, PersonalMarkScalarWhereInputObjectSchema.array()]).optional() -}).strict(); -export const PersonalMarkUpdateManyWithoutGivenByNestedInputObjectSchema: z.ZodType = z.lazy(__makeSchema_PersonalMarkUpdateManyWithoutGivenByNestedInput_schema) as unknown as z.ZodType; -export const PersonalMarkUpdateManyWithoutGivenByNestedInputObjectZodSchema = z.lazy(__makeSchema_PersonalMarkUpdateManyWithoutGivenByNestedInput_schema); - - -// File: AttendeeUpdateManyWithoutPaymentRefundedByNestedInput.schema.ts -const __makeSchema_AttendeeUpdateManyWithoutPaymentRefundedByNestedInput_schema = () => z.object({ - create: z.union([AttendeeCreateWithoutPaymentRefundedByInputObjectSchema, AttendeeCreateWithoutPaymentRefundedByInputObjectSchema.array(), AttendeeUncheckedCreateWithoutPaymentRefundedByInputObjectSchema, AttendeeUncheckedCreateWithoutPaymentRefundedByInputObjectSchema.array()]).optional(), - connectOrCreate: z.union([AttendeeCreateOrConnectWithoutPaymentRefundedByInputObjectSchema, AttendeeCreateOrConnectWithoutPaymentRefundedByInputObjectSchema.array()]).optional(), - upsert: z.union([AttendeeUpsertWithWhereUniqueWithoutPaymentRefundedByInputObjectSchema, AttendeeUpsertWithWhereUniqueWithoutPaymentRefundedByInputObjectSchema.array()]).optional(), - get createMany(){ return AttendeeCreateManyPaymentRefundedByInputEnvelopeObjectSchema.optional(); }, - set: z.union([AttendeeWhereUniqueInputObjectSchema, AttendeeWhereUniqueInputObjectSchema.array()]).optional(), - disconnect: z.union([AttendeeWhereUniqueInputObjectSchema, AttendeeWhereUniqueInputObjectSchema.array()]).optional(), - delete: z.union([AttendeeWhereUniqueInputObjectSchema, AttendeeWhereUniqueInputObjectSchema.array()]).optional(), - connect: z.union([AttendeeWhereUniqueInputObjectSchema, AttendeeWhereUniqueInputObjectSchema.array()]).optional(), - update: z.union([AttendeeUpdateWithWhereUniqueWithoutPaymentRefundedByInputObjectSchema, AttendeeUpdateWithWhereUniqueWithoutPaymentRefundedByInputObjectSchema.array()]).optional(), - updateMany: z.union([AttendeeUpdateManyWithWhereWithoutPaymentRefundedByInputObjectSchema, AttendeeUpdateManyWithWhereWithoutPaymentRefundedByInputObjectSchema.array()]).optional(), - deleteMany: z.union([AttendeeScalarWhereInputObjectSchema, AttendeeScalarWhereInputObjectSchema.array()]).optional() -}).strict(); -export const AttendeeUpdateManyWithoutPaymentRefundedByNestedInputObjectSchema: z.ZodType = z.lazy(__makeSchema_AttendeeUpdateManyWithoutPaymentRefundedByNestedInput_schema) as unknown as z.ZodType; -export const AttendeeUpdateManyWithoutPaymentRefundedByNestedInputObjectZodSchema = z.lazy(__makeSchema_AttendeeUpdateManyWithoutPaymentRefundedByNestedInput_schema); - - -// File: AuditLogUpdateManyWithoutUserNestedInput.schema.ts -const __makeSchema_AuditLogUpdateManyWithoutUserNestedInput_schema = () => z.object({ - create: z.union([AuditLogCreateWithoutUserInputObjectSchema, AuditLogCreateWithoutUserInputObjectSchema.array(), AuditLogUncheckedCreateWithoutUserInputObjectSchema, AuditLogUncheckedCreateWithoutUserInputObjectSchema.array()]).optional(), - connectOrCreate: z.union([AuditLogCreateOrConnectWithoutUserInputObjectSchema, AuditLogCreateOrConnectWithoutUserInputObjectSchema.array()]).optional(), - upsert: z.union([AuditLogUpsertWithWhereUniqueWithoutUserInputObjectSchema, AuditLogUpsertWithWhereUniqueWithoutUserInputObjectSchema.array()]).optional(), - get createMany(){ return AuditLogCreateManyUserInputEnvelopeObjectSchema.optional(); }, - set: z.union([AuditLogWhereUniqueInputObjectSchema, AuditLogWhereUniqueInputObjectSchema.array()]).optional(), - disconnect: z.union([AuditLogWhereUniqueInputObjectSchema, AuditLogWhereUniqueInputObjectSchema.array()]).optional(), - delete: z.union([AuditLogWhereUniqueInputObjectSchema, AuditLogWhereUniqueInputObjectSchema.array()]).optional(), - connect: z.union([AuditLogWhereUniqueInputObjectSchema, AuditLogWhereUniqueInputObjectSchema.array()]).optional(), - update: z.union([AuditLogUpdateWithWhereUniqueWithoutUserInputObjectSchema, AuditLogUpdateWithWhereUniqueWithoutUserInputObjectSchema.array()]).optional(), - updateMany: z.union([AuditLogUpdateManyWithWhereWithoutUserInputObjectSchema, AuditLogUpdateManyWithWhereWithoutUserInputObjectSchema.array()]).optional(), - deleteMany: z.union([AuditLogScalarWhereInputObjectSchema, AuditLogScalarWhereInputObjectSchema.array()]).optional() -}).strict(); -export const AuditLogUpdateManyWithoutUserNestedInputObjectSchema: z.ZodType = z.lazy(__makeSchema_AuditLogUpdateManyWithoutUserNestedInput_schema) as unknown as z.ZodType; -export const AuditLogUpdateManyWithoutUserNestedInputObjectZodSchema = z.lazy(__makeSchema_AuditLogUpdateManyWithoutUserNestedInput_schema); - - -// File: DeregisterReasonUpdateManyWithoutUserNestedInput.schema.ts -const __makeSchema_DeregisterReasonUpdateManyWithoutUserNestedInput_schema = () => z.object({ - create: z.union([DeregisterReasonCreateWithoutUserInputObjectSchema, DeregisterReasonCreateWithoutUserInputObjectSchema.array(), DeregisterReasonUncheckedCreateWithoutUserInputObjectSchema, DeregisterReasonUncheckedCreateWithoutUserInputObjectSchema.array()]).optional(), - connectOrCreate: z.union([DeregisterReasonCreateOrConnectWithoutUserInputObjectSchema, DeregisterReasonCreateOrConnectWithoutUserInputObjectSchema.array()]).optional(), - upsert: z.union([DeregisterReasonUpsertWithWhereUniqueWithoutUserInputObjectSchema, DeregisterReasonUpsertWithWhereUniqueWithoutUserInputObjectSchema.array()]).optional(), - get createMany(){ return DeregisterReasonCreateManyUserInputEnvelopeObjectSchema.optional(); }, - set: z.union([DeregisterReasonWhereUniqueInputObjectSchema, DeregisterReasonWhereUniqueInputObjectSchema.array()]).optional(), - disconnect: z.union([DeregisterReasonWhereUniqueInputObjectSchema, DeregisterReasonWhereUniqueInputObjectSchema.array()]).optional(), - delete: z.union([DeregisterReasonWhereUniqueInputObjectSchema, DeregisterReasonWhereUniqueInputObjectSchema.array()]).optional(), - connect: z.union([DeregisterReasonWhereUniqueInputObjectSchema, DeregisterReasonWhereUniqueInputObjectSchema.array()]).optional(), - update: z.union([DeregisterReasonUpdateWithWhereUniqueWithoutUserInputObjectSchema, DeregisterReasonUpdateWithWhereUniqueWithoutUserInputObjectSchema.array()]).optional(), - updateMany: z.union([DeregisterReasonUpdateManyWithWhereWithoutUserInputObjectSchema, DeregisterReasonUpdateManyWithWhereWithoutUserInputObjectSchema.array()]).optional(), - deleteMany: z.union([DeregisterReasonScalarWhereInputObjectSchema, DeregisterReasonScalarWhereInputObjectSchema.array()]).optional() -}).strict(); -export const DeregisterReasonUpdateManyWithoutUserNestedInputObjectSchema: z.ZodType = z.lazy(__makeSchema_DeregisterReasonUpdateManyWithoutUserNestedInput_schema) as unknown as z.ZodType; -export const DeregisterReasonUpdateManyWithoutUserNestedInputObjectZodSchema = z.lazy(__makeSchema_DeregisterReasonUpdateManyWithoutUserNestedInput_schema); - - -// File: NotificationRecipientUpdateManyWithoutUserNestedInput.schema.ts -const __makeSchema_NotificationRecipientUpdateManyWithoutUserNestedInput_schema = () => z.object({ - create: z.union([NotificationRecipientCreateWithoutUserInputObjectSchema, NotificationRecipientCreateWithoutUserInputObjectSchema.array(), NotificationRecipientUncheckedCreateWithoutUserInputObjectSchema, NotificationRecipientUncheckedCreateWithoutUserInputObjectSchema.array()]).optional(), - connectOrCreate: z.union([NotificationRecipientCreateOrConnectWithoutUserInputObjectSchema, NotificationRecipientCreateOrConnectWithoutUserInputObjectSchema.array()]).optional(), - upsert: z.union([NotificationRecipientUpsertWithWhereUniqueWithoutUserInputObjectSchema, NotificationRecipientUpsertWithWhereUniqueWithoutUserInputObjectSchema.array()]).optional(), - get createMany(){ return NotificationRecipientCreateManyUserInputEnvelopeObjectSchema.optional(); }, - set: z.union([NotificationRecipientWhereUniqueInputObjectSchema, NotificationRecipientWhereUniqueInputObjectSchema.array()]).optional(), - disconnect: z.union([NotificationRecipientWhereUniqueInputObjectSchema, NotificationRecipientWhereUniqueInputObjectSchema.array()]).optional(), - delete: z.union([NotificationRecipientWhereUniqueInputObjectSchema, NotificationRecipientWhereUniqueInputObjectSchema.array()]).optional(), - connect: z.union([NotificationRecipientWhereUniqueInputObjectSchema, NotificationRecipientWhereUniqueInputObjectSchema.array()]).optional(), - update: z.union([NotificationRecipientUpdateWithWhereUniqueWithoutUserInputObjectSchema, NotificationRecipientUpdateWithWhereUniqueWithoutUserInputObjectSchema.array()]).optional(), - updateMany: z.union([NotificationRecipientUpdateManyWithWhereWithoutUserInputObjectSchema, NotificationRecipientUpdateManyWithWhereWithoutUserInputObjectSchema.array()]).optional(), - deleteMany: z.union([NotificationRecipientScalarWhereInputObjectSchema, NotificationRecipientScalarWhereInputObjectSchema.array()]).optional() -}).strict(); -export const NotificationRecipientUpdateManyWithoutUserNestedInputObjectSchema: z.ZodType = z.lazy(__makeSchema_NotificationRecipientUpdateManyWithoutUserNestedInput_schema) as unknown as z.ZodType; -export const NotificationRecipientUpdateManyWithoutUserNestedInputObjectZodSchema = z.lazy(__makeSchema_NotificationRecipientUpdateManyWithoutUserNestedInput_schema); - - -// File: NotificationUpdateManyWithoutCreatedByNestedInput.schema.ts -const __makeSchema_NotificationUpdateManyWithoutCreatedByNestedInput_schema = () => z.object({ - create: z.union([NotificationCreateWithoutCreatedByInputObjectSchema, NotificationCreateWithoutCreatedByInputObjectSchema.array(), NotificationUncheckedCreateWithoutCreatedByInputObjectSchema, NotificationUncheckedCreateWithoutCreatedByInputObjectSchema.array()]).optional(), - connectOrCreate: z.union([NotificationCreateOrConnectWithoutCreatedByInputObjectSchema, NotificationCreateOrConnectWithoutCreatedByInputObjectSchema.array()]).optional(), - upsert: z.union([NotificationUpsertWithWhereUniqueWithoutCreatedByInputObjectSchema, NotificationUpsertWithWhereUniqueWithoutCreatedByInputObjectSchema.array()]).optional(), - get createMany(){ return NotificationCreateManyCreatedByInputEnvelopeObjectSchema.optional(); }, - set: z.union([NotificationWhereUniqueInputObjectSchema, NotificationWhereUniqueInputObjectSchema.array()]).optional(), - disconnect: z.union([NotificationWhereUniqueInputObjectSchema, NotificationWhereUniqueInputObjectSchema.array()]).optional(), - delete: z.union([NotificationWhereUniqueInputObjectSchema, NotificationWhereUniqueInputObjectSchema.array()]).optional(), - connect: z.union([NotificationWhereUniqueInputObjectSchema, NotificationWhereUniqueInputObjectSchema.array()]).optional(), - update: z.union([NotificationUpdateWithWhereUniqueWithoutCreatedByInputObjectSchema, NotificationUpdateWithWhereUniqueWithoutCreatedByInputObjectSchema.array()]).optional(), - updateMany: z.union([NotificationUpdateManyWithWhereWithoutCreatedByInputObjectSchema, NotificationUpdateManyWithWhereWithoutCreatedByInputObjectSchema.array()]).optional(), - deleteMany: z.union([NotificationScalarWhereInputObjectSchema, NotificationScalarWhereInputObjectSchema.array()]).optional() -}).strict(); -export const NotificationUpdateManyWithoutCreatedByNestedInputObjectSchema: z.ZodType = z.lazy(__makeSchema_NotificationUpdateManyWithoutCreatedByNestedInput_schema) as unknown as z.ZodType; -export const NotificationUpdateManyWithoutCreatedByNestedInputObjectZodSchema = z.lazy(__makeSchema_NotificationUpdateManyWithoutCreatedByNestedInput_schema); - - -// File: NotificationUpdateManyWithoutLastUpdatedByNestedInput.schema.ts -const __makeSchema_NotificationUpdateManyWithoutLastUpdatedByNestedInput_schema = () => z.object({ - create: z.union([NotificationCreateWithoutLastUpdatedByInputObjectSchema, NotificationCreateWithoutLastUpdatedByInputObjectSchema.array(), NotificationUncheckedCreateWithoutLastUpdatedByInputObjectSchema, NotificationUncheckedCreateWithoutLastUpdatedByInputObjectSchema.array()]).optional(), - connectOrCreate: z.union([NotificationCreateOrConnectWithoutLastUpdatedByInputObjectSchema, NotificationCreateOrConnectWithoutLastUpdatedByInputObjectSchema.array()]).optional(), - upsert: z.union([NotificationUpsertWithWhereUniqueWithoutLastUpdatedByInputObjectSchema, NotificationUpsertWithWhereUniqueWithoutLastUpdatedByInputObjectSchema.array()]).optional(), - get createMany(){ return NotificationCreateManyLastUpdatedByInputEnvelopeObjectSchema.optional(); }, - set: z.union([NotificationWhereUniqueInputObjectSchema, NotificationWhereUniqueInputObjectSchema.array()]).optional(), - disconnect: z.union([NotificationWhereUniqueInputObjectSchema, NotificationWhereUniqueInputObjectSchema.array()]).optional(), - delete: z.union([NotificationWhereUniqueInputObjectSchema, NotificationWhereUniqueInputObjectSchema.array()]).optional(), - connect: z.union([NotificationWhereUniqueInputObjectSchema, NotificationWhereUniqueInputObjectSchema.array()]).optional(), - update: z.union([NotificationUpdateWithWhereUniqueWithoutLastUpdatedByInputObjectSchema, NotificationUpdateWithWhereUniqueWithoutLastUpdatedByInputObjectSchema.array()]).optional(), - updateMany: z.union([NotificationUpdateManyWithWhereWithoutLastUpdatedByInputObjectSchema, NotificationUpdateManyWithWhereWithoutLastUpdatedByInputObjectSchema.array()]).optional(), - deleteMany: z.union([NotificationScalarWhereInputObjectSchema, NotificationScalarWhereInputObjectSchema.array()]).optional() -}).strict(); -export const NotificationUpdateManyWithoutLastUpdatedByNestedInputObjectSchema: z.ZodType = z.lazy(__makeSchema_NotificationUpdateManyWithoutLastUpdatedByNestedInput_schema) as unknown as z.ZodType; -export const NotificationUpdateManyWithoutLastUpdatedByNestedInputObjectZodSchema = z.lazy(__makeSchema_NotificationUpdateManyWithoutLastUpdatedByNestedInput_schema); - - -// File: ContestantUpdateManyWithoutUserNestedInput.schema.ts -const __makeSchema_ContestantUpdateManyWithoutUserNestedInput_schema = () => z.object({ - create: z.union([ContestantCreateWithoutUserInputObjectSchema, ContestantCreateWithoutUserInputObjectSchema.array(), ContestantUncheckedCreateWithoutUserInputObjectSchema, ContestantUncheckedCreateWithoutUserInputObjectSchema.array()]).optional(), - connectOrCreate: z.union([ContestantCreateOrConnectWithoutUserInputObjectSchema, ContestantCreateOrConnectWithoutUserInputObjectSchema.array()]).optional(), - upsert: z.union([ContestantUpsertWithWhereUniqueWithoutUserInputObjectSchema, ContestantUpsertWithWhereUniqueWithoutUserInputObjectSchema.array()]).optional(), - get createMany(){ return ContestantCreateManyUserInputEnvelopeObjectSchema.optional(); }, - set: z.union([ContestantWhereUniqueInputObjectSchema, ContestantWhereUniqueInputObjectSchema.array()]).optional(), - disconnect: z.union([ContestantWhereUniqueInputObjectSchema, ContestantWhereUniqueInputObjectSchema.array()]).optional(), - delete: z.union([ContestantWhereUniqueInputObjectSchema, ContestantWhereUniqueInputObjectSchema.array()]).optional(), - connect: z.union([ContestantWhereUniqueInputObjectSchema, ContestantWhereUniqueInputObjectSchema.array()]).optional(), - update: z.union([ContestantUpdateWithWhereUniqueWithoutUserInputObjectSchema, ContestantUpdateWithWhereUniqueWithoutUserInputObjectSchema.array()]).optional(), - updateMany: z.union([ContestantUpdateManyWithWhereWithoutUserInputObjectSchema, ContestantUpdateManyWithWhereWithoutUserInputObjectSchema.array()]).optional(), - deleteMany: z.union([ContestantScalarWhereInputObjectSchema, ContestantScalarWhereInputObjectSchema.array()]).optional() -}).strict(); -export const ContestantUpdateManyWithoutUserNestedInputObjectSchema: z.ZodType = z.lazy(__makeSchema_ContestantUpdateManyWithoutUserNestedInput_schema) as unknown as z.ZodType; -export const ContestantUpdateManyWithoutUserNestedInputObjectZodSchema = z.lazy(__makeSchema_ContestantUpdateManyWithoutUserNestedInput_schema); - - -// File: ContestTeamUpdateManyWithoutMembersNestedInput.schema.ts -const __makeSchema_ContestTeamUpdateManyWithoutMembersNestedInput_schema = () => z.object({ - create: z.union([ContestTeamCreateWithoutMembersInputObjectSchema, ContestTeamCreateWithoutMembersInputObjectSchema.array(), ContestTeamUncheckedCreateWithoutMembersInputObjectSchema, ContestTeamUncheckedCreateWithoutMembersInputObjectSchema.array()]).optional(), - connectOrCreate: z.union([ContestTeamCreateOrConnectWithoutMembersInputObjectSchema, ContestTeamCreateOrConnectWithoutMembersInputObjectSchema.array()]).optional(), - upsert: z.union([ContestTeamUpsertWithWhereUniqueWithoutMembersInputObjectSchema, ContestTeamUpsertWithWhereUniqueWithoutMembersInputObjectSchema.array()]).optional(), - set: z.union([ContestTeamWhereUniqueInputObjectSchema, ContestTeamWhereUniqueInputObjectSchema.array()]).optional(), - disconnect: z.union([ContestTeamWhereUniqueInputObjectSchema, ContestTeamWhereUniqueInputObjectSchema.array()]).optional(), - delete: z.union([ContestTeamWhereUniqueInputObjectSchema, ContestTeamWhereUniqueInputObjectSchema.array()]).optional(), - connect: z.union([ContestTeamWhereUniqueInputObjectSchema, ContestTeamWhereUniqueInputObjectSchema.array()]).optional(), - update: z.union([ContestTeamUpdateWithWhereUniqueWithoutMembersInputObjectSchema, ContestTeamUpdateWithWhereUniqueWithoutMembersInputObjectSchema.array()]).optional(), - updateMany: z.union([ContestTeamUpdateManyWithWhereWithoutMembersInputObjectSchema, ContestTeamUpdateManyWithWhereWithoutMembersInputObjectSchema.array()]).optional(), - deleteMany: z.union([ContestTeamScalarWhereInputObjectSchema, ContestTeamScalarWhereInputObjectSchema.array()]).optional() -}).strict(); -export const ContestTeamUpdateManyWithoutMembersNestedInputObjectSchema: z.ZodType = z.lazy(__makeSchema_ContestTeamUpdateManyWithoutMembersNestedInput_schema) as unknown as z.ZodType; -export const ContestTeamUpdateManyWithoutMembersNestedInputObjectZodSchema = z.lazy(__makeSchema_ContestTeamUpdateManyWithoutMembersNestedInput_schema); - - -// File: PrivacyPermissionsUncheckedUpdateOneWithoutUserNestedInput.schema.ts -const __makeSchema_PrivacyPermissionsUncheckedUpdateOneWithoutUserNestedInput_schema = () => z.object({ - create: z.union([PrivacyPermissionsCreateWithoutUserInputObjectSchema, PrivacyPermissionsUncheckedCreateWithoutUserInputObjectSchema]).optional(), - get connectOrCreate(){ return PrivacyPermissionsCreateOrConnectWithoutUserInputObjectSchema.optional(); }, - get upsert(){ return PrivacyPermissionsUpsertWithoutUserInputObjectSchema.optional(); }, - disconnect: z.union([z.boolean(), PrivacyPermissionsWhereInputObjectSchema]).optional(), - delete: z.union([z.boolean(), PrivacyPermissionsWhereInputObjectSchema]).optional(), - get connect(){ return PrivacyPermissionsWhereUniqueInputObjectSchema.optional(); }, - update: z.union([PrivacyPermissionsUpdateToOneWithWhereWithoutUserInputObjectSchema, PrivacyPermissionsUpdateWithoutUserInputObjectSchema, PrivacyPermissionsUncheckedUpdateWithoutUserInputObjectSchema]).optional() -}).strict(); -export const PrivacyPermissionsUncheckedUpdateOneWithoutUserNestedInputObjectSchema: z.ZodType = z.lazy(__makeSchema_PrivacyPermissionsUncheckedUpdateOneWithoutUserNestedInput_schema) as unknown as z.ZodType; -export const PrivacyPermissionsUncheckedUpdateOneWithoutUserNestedInputObjectZodSchema = z.lazy(__makeSchema_PrivacyPermissionsUncheckedUpdateOneWithoutUserNestedInput_schema); - - -// File: NotificationPermissionsUncheckedUpdateOneWithoutUserNestedInput.schema.ts -const __makeSchema_NotificationPermissionsUncheckedUpdateOneWithoutUserNestedInput_schema = () => z.object({ - create: z.union([NotificationPermissionsCreateWithoutUserInputObjectSchema, NotificationPermissionsUncheckedCreateWithoutUserInputObjectSchema]).optional(), - get connectOrCreate(){ return NotificationPermissionsCreateOrConnectWithoutUserInputObjectSchema.optional(); }, - get upsert(){ return NotificationPermissionsUpsertWithoutUserInputObjectSchema.optional(); }, - disconnect: z.union([z.boolean(), NotificationPermissionsWhereInputObjectSchema]).optional(), - delete: z.union([z.boolean(), NotificationPermissionsWhereInputObjectSchema]).optional(), - get connect(){ return NotificationPermissionsWhereUniqueInputObjectSchema.optional(); }, - update: z.union([NotificationPermissionsUpdateToOneWithWhereWithoutUserInputObjectSchema, NotificationPermissionsUpdateWithoutUserInputObjectSchema, NotificationPermissionsUncheckedUpdateWithoutUserInputObjectSchema]).optional() -}).strict(); -export const NotificationPermissionsUncheckedUpdateOneWithoutUserNestedInputObjectSchema: z.ZodType = z.lazy(__makeSchema_NotificationPermissionsUncheckedUpdateOneWithoutUserNestedInput_schema) as unknown as z.ZodType; -export const NotificationPermissionsUncheckedUpdateOneWithoutUserNestedInputObjectZodSchema = z.lazy(__makeSchema_NotificationPermissionsUncheckedUpdateOneWithoutUserNestedInput_schema); - - -// File: AttendeeUncheckedUpdateManyWithoutUserNestedInput.schema.ts -const __makeSchema_AttendeeUncheckedUpdateManyWithoutUserNestedInput_schema = () => z.object({ - create: z.union([AttendeeCreateWithoutUserInputObjectSchema, AttendeeCreateWithoutUserInputObjectSchema.array(), AttendeeUncheckedCreateWithoutUserInputObjectSchema, AttendeeUncheckedCreateWithoutUserInputObjectSchema.array()]).optional(), - connectOrCreate: z.union([AttendeeCreateOrConnectWithoutUserInputObjectSchema, AttendeeCreateOrConnectWithoutUserInputObjectSchema.array()]).optional(), - upsert: z.union([AttendeeUpsertWithWhereUniqueWithoutUserInputObjectSchema, AttendeeUpsertWithWhereUniqueWithoutUserInputObjectSchema.array()]).optional(), - get createMany(){ return AttendeeCreateManyUserInputEnvelopeObjectSchema.optional(); }, - set: z.union([AttendeeWhereUniqueInputObjectSchema, AttendeeWhereUniqueInputObjectSchema.array()]).optional(), - disconnect: z.union([AttendeeWhereUniqueInputObjectSchema, AttendeeWhereUniqueInputObjectSchema.array()]).optional(), - delete: z.union([AttendeeWhereUniqueInputObjectSchema, AttendeeWhereUniqueInputObjectSchema.array()]).optional(), - connect: z.union([AttendeeWhereUniqueInputObjectSchema, AttendeeWhereUniqueInputObjectSchema.array()]).optional(), - update: z.union([AttendeeUpdateWithWhereUniqueWithoutUserInputObjectSchema, AttendeeUpdateWithWhereUniqueWithoutUserInputObjectSchema.array()]).optional(), - updateMany: z.union([AttendeeUpdateManyWithWhereWithoutUserInputObjectSchema, AttendeeUpdateManyWithWhereWithoutUserInputObjectSchema.array()]).optional(), - deleteMany: z.union([AttendeeScalarWhereInputObjectSchema, AttendeeScalarWhereInputObjectSchema.array()]).optional() -}).strict(); -export const AttendeeUncheckedUpdateManyWithoutUserNestedInputObjectSchema: z.ZodType = z.lazy(__makeSchema_AttendeeUncheckedUpdateManyWithoutUserNestedInput_schema) as unknown as z.ZodType; -export const AttendeeUncheckedUpdateManyWithoutUserNestedInputObjectZodSchema = z.lazy(__makeSchema_AttendeeUncheckedUpdateManyWithoutUserNestedInput_schema); - - -// File: PersonalMarkUncheckedUpdateManyWithoutUserNestedInput.schema.ts -const __makeSchema_PersonalMarkUncheckedUpdateManyWithoutUserNestedInput_schema = () => z.object({ - create: z.union([PersonalMarkCreateWithoutUserInputObjectSchema, PersonalMarkCreateWithoutUserInputObjectSchema.array(), PersonalMarkUncheckedCreateWithoutUserInputObjectSchema, PersonalMarkUncheckedCreateWithoutUserInputObjectSchema.array()]).optional(), - connectOrCreate: z.union([PersonalMarkCreateOrConnectWithoutUserInputObjectSchema, PersonalMarkCreateOrConnectWithoutUserInputObjectSchema.array()]).optional(), - upsert: z.union([PersonalMarkUpsertWithWhereUniqueWithoutUserInputObjectSchema, PersonalMarkUpsertWithWhereUniqueWithoutUserInputObjectSchema.array()]).optional(), - get createMany(){ return PersonalMarkCreateManyUserInputEnvelopeObjectSchema.optional(); }, - set: z.union([PersonalMarkWhereUniqueInputObjectSchema, PersonalMarkWhereUniqueInputObjectSchema.array()]).optional(), - disconnect: z.union([PersonalMarkWhereUniqueInputObjectSchema, PersonalMarkWhereUniqueInputObjectSchema.array()]).optional(), - delete: z.union([PersonalMarkWhereUniqueInputObjectSchema, PersonalMarkWhereUniqueInputObjectSchema.array()]).optional(), - connect: z.union([PersonalMarkWhereUniqueInputObjectSchema, PersonalMarkWhereUniqueInputObjectSchema.array()]).optional(), - update: z.union([PersonalMarkUpdateWithWhereUniqueWithoutUserInputObjectSchema, PersonalMarkUpdateWithWhereUniqueWithoutUserInputObjectSchema.array()]).optional(), - updateMany: z.union([PersonalMarkUpdateManyWithWhereWithoutUserInputObjectSchema, PersonalMarkUpdateManyWithWhereWithoutUserInputObjectSchema.array()]).optional(), - deleteMany: z.union([PersonalMarkScalarWhereInputObjectSchema, PersonalMarkScalarWhereInputObjectSchema.array()]).optional() -}).strict(); -export const PersonalMarkUncheckedUpdateManyWithoutUserNestedInputObjectSchema: z.ZodType = z.lazy(__makeSchema_PersonalMarkUncheckedUpdateManyWithoutUserNestedInput_schema) as unknown as z.ZodType; -export const PersonalMarkUncheckedUpdateManyWithoutUserNestedInputObjectZodSchema = z.lazy(__makeSchema_PersonalMarkUncheckedUpdateManyWithoutUserNestedInput_schema); - - -// File: GroupMembershipUncheckedUpdateManyWithoutUserNestedInput.schema.ts -const __makeSchema_GroupMembershipUncheckedUpdateManyWithoutUserNestedInput_schema = () => z.object({ - create: z.union([GroupMembershipCreateWithoutUserInputObjectSchema, GroupMembershipCreateWithoutUserInputObjectSchema.array(), GroupMembershipUncheckedCreateWithoutUserInputObjectSchema, GroupMembershipUncheckedCreateWithoutUserInputObjectSchema.array()]).optional(), - connectOrCreate: z.union([GroupMembershipCreateOrConnectWithoutUserInputObjectSchema, GroupMembershipCreateOrConnectWithoutUserInputObjectSchema.array()]).optional(), - upsert: z.union([GroupMembershipUpsertWithWhereUniqueWithoutUserInputObjectSchema, GroupMembershipUpsertWithWhereUniqueWithoutUserInputObjectSchema.array()]).optional(), - get createMany(){ return GroupMembershipCreateManyUserInputEnvelopeObjectSchema.optional(); }, - set: z.union([GroupMembershipWhereUniqueInputObjectSchema, GroupMembershipWhereUniqueInputObjectSchema.array()]).optional(), - disconnect: z.union([GroupMembershipWhereUniqueInputObjectSchema, GroupMembershipWhereUniqueInputObjectSchema.array()]).optional(), - delete: z.union([GroupMembershipWhereUniqueInputObjectSchema, GroupMembershipWhereUniqueInputObjectSchema.array()]).optional(), - connect: z.union([GroupMembershipWhereUniqueInputObjectSchema, GroupMembershipWhereUniqueInputObjectSchema.array()]).optional(), - update: z.union([GroupMembershipUpdateWithWhereUniqueWithoutUserInputObjectSchema, GroupMembershipUpdateWithWhereUniqueWithoutUserInputObjectSchema.array()]).optional(), - updateMany: z.union([GroupMembershipUpdateManyWithWhereWithoutUserInputObjectSchema, GroupMembershipUpdateManyWithWhereWithoutUserInputObjectSchema.array()]).optional(), - deleteMany: z.union([GroupMembershipScalarWhereInputObjectSchema, GroupMembershipScalarWhereInputObjectSchema.array()]).optional() -}).strict(); -export const GroupMembershipUncheckedUpdateManyWithoutUserNestedInputObjectSchema: z.ZodType = z.lazy(__makeSchema_GroupMembershipUncheckedUpdateManyWithoutUserNestedInput_schema) as unknown as z.ZodType; -export const GroupMembershipUncheckedUpdateManyWithoutUserNestedInputObjectZodSchema = z.lazy(__makeSchema_GroupMembershipUncheckedUpdateManyWithoutUserNestedInput_schema); - - -// File: MembershipUncheckedUpdateManyWithoutUserNestedInput.schema.ts -const __makeSchema_MembershipUncheckedUpdateManyWithoutUserNestedInput_schema = () => z.object({ - create: z.union([MembershipCreateWithoutUserInputObjectSchema, MembershipCreateWithoutUserInputObjectSchema.array(), MembershipUncheckedCreateWithoutUserInputObjectSchema, MembershipUncheckedCreateWithoutUserInputObjectSchema.array()]).optional(), - connectOrCreate: z.union([MembershipCreateOrConnectWithoutUserInputObjectSchema, MembershipCreateOrConnectWithoutUserInputObjectSchema.array()]).optional(), - upsert: z.union([MembershipUpsertWithWhereUniqueWithoutUserInputObjectSchema, MembershipUpsertWithWhereUniqueWithoutUserInputObjectSchema.array()]).optional(), - get createMany(){ return MembershipCreateManyUserInputEnvelopeObjectSchema.optional(); }, - set: z.union([MembershipWhereUniqueInputObjectSchema, MembershipWhereUniqueInputObjectSchema.array()]).optional(), - disconnect: z.union([MembershipWhereUniqueInputObjectSchema, MembershipWhereUniqueInputObjectSchema.array()]).optional(), - delete: z.union([MembershipWhereUniqueInputObjectSchema, MembershipWhereUniqueInputObjectSchema.array()]).optional(), - connect: z.union([MembershipWhereUniqueInputObjectSchema, MembershipWhereUniqueInputObjectSchema.array()]).optional(), - update: z.union([MembershipUpdateWithWhereUniqueWithoutUserInputObjectSchema, MembershipUpdateWithWhereUniqueWithoutUserInputObjectSchema.array()]).optional(), - updateMany: z.union([MembershipUpdateManyWithWhereWithoutUserInputObjectSchema, MembershipUpdateManyWithWhereWithoutUserInputObjectSchema.array()]).optional(), - deleteMany: z.union([MembershipScalarWhereInputObjectSchema, MembershipScalarWhereInputObjectSchema.array()]).optional() -}).strict(); -export const MembershipUncheckedUpdateManyWithoutUserNestedInputObjectSchema: z.ZodType = z.lazy(__makeSchema_MembershipUncheckedUpdateManyWithoutUserNestedInput_schema) as unknown as z.ZodType; -export const MembershipUncheckedUpdateManyWithoutUserNestedInputObjectZodSchema = z.lazy(__makeSchema_MembershipUncheckedUpdateManyWithoutUserNestedInput_schema); - - -// File: PersonalMarkUncheckedUpdateManyWithoutGivenByNestedInput.schema.ts -const __makeSchema_PersonalMarkUncheckedUpdateManyWithoutGivenByNestedInput_schema = () => z.object({ - create: z.union([PersonalMarkCreateWithoutGivenByInputObjectSchema, PersonalMarkCreateWithoutGivenByInputObjectSchema.array(), PersonalMarkUncheckedCreateWithoutGivenByInputObjectSchema, PersonalMarkUncheckedCreateWithoutGivenByInputObjectSchema.array()]).optional(), - connectOrCreate: z.union([PersonalMarkCreateOrConnectWithoutGivenByInputObjectSchema, PersonalMarkCreateOrConnectWithoutGivenByInputObjectSchema.array()]).optional(), - upsert: z.union([PersonalMarkUpsertWithWhereUniqueWithoutGivenByInputObjectSchema, PersonalMarkUpsertWithWhereUniqueWithoutGivenByInputObjectSchema.array()]).optional(), - get createMany(){ return PersonalMarkCreateManyGivenByInputEnvelopeObjectSchema.optional(); }, - set: z.union([PersonalMarkWhereUniqueInputObjectSchema, PersonalMarkWhereUniqueInputObjectSchema.array()]).optional(), - disconnect: z.union([PersonalMarkWhereUniqueInputObjectSchema, PersonalMarkWhereUniqueInputObjectSchema.array()]).optional(), - delete: z.union([PersonalMarkWhereUniqueInputObjectSchema, PersonalMarkWhereUniqueInputObjectSchema.array()]).optional(), - connect: z.union([PersonalMarkWhereUniqueInputObjectSchema, PersonalMarkWhereUniqueInputObjectSchema.array()]).optional(), - update: z.union([PersonalMarkUpdateWithWhereUniqueWithoutGivenByInputObjectSchema, PersonalMarkUpdateWithWhereUniqueWithoutGivenByInputObjectSchema.array()]).optional(), - updateMany: z.union([PersonalMarkUpdateManyWithWhereWithoutGivenByInputObjectSchema, PersonalMarkUpdateManyWithWhereWithoutGivenByInputObjectSchema.array()]).optional(), - deleteMany: z.union([PersonalMarkScalarWhereInputObjectSchema, PersonalMarkScalarWhereInputObjectSchema.array()]).optional() -}).strict(); -export const PersonalMarkUncheckedUpdateManyWithoutGivenByNestedInputObjectSchema: z.ZodType = z.lazy(__makeSchema_PersonalMarkUncheckedUpdateManyWithoutGivenByNestedInput_schema) as unknown as z.ZodType; -export const PersonalMarkUncheckedUpdateManyWithoutGivenByNestedInputObjectZodSchema = z.lazy(__makeSchema_PersonalMarkUncheckedUpdateManyWithoutGivenByNestedInput_schema); - - -// File: AttendeeUncheckedUpdateManyWithoutPaymentRefundedByNestedInput.schema.ts -const __makeSchema_AttendeeUncheckedUpdateManyWithoutPaymentRefundedByNestedInput_schema = () => z.object({ - create: z.union([AttendeeCreateWithoutPaymentRefundedByInputObjectSchema, AttendeeCreateWithoutPaymentRefundedByInputObjectSchema.array(), AttendeeUncheckedCreateWithoutPaymentRefundedByInputObjectSchema, AttendeeUncheckedCreateWithoutPaymentRefundedByInputObjectSchema.array()]).optional(), - connectOrCreate: z.union([AttendeeCreateOrConnectWithoutPaymentRefundedByInputObjectSchema, AttendeeCreateOrConnectWithoutPaymentRefundedByInputObjectSchema.array()]).optional(), - upsert: z.union([AttendeeUpsertWithWhereUniqueWithoutPaymentRefundedByInputObjectSchema, AttendeeUpsertWithWhereUniqueWithoutPaymentRefundedByInputObjectSchema.array()]).optional(), - get createMany(){ return AttendeeCreateManyPaymentRefundedByInputEnvelopeObjectSchema.optional(); }, - set: z.union([AttendeeWhereUniqueInputObjectSchema, AttendeeWhereUniqueInputObjectSchema.array()]).optional(), - disconnect: z.union([AttendeeWhereUniqueInputObjectSchema, AttendeeWhereUniqueInputObjectSchema.array()]).optional(), - delete: z.union([AttendeeWhereUniqueInputObjectSchema, AttendeeWhereUniqueInputObjectSchema.array()]).optional(), - connect: z.union([AttendeeWhereUniqueInputObjectSchema, AttendeeWhereUniqueInputObjectSchema.array()]).optional(), - update: z.union([AttendeeUpdateWithWhereUniqueWithoutPaymentRefundedByInputObjectSchema, AttendeeUpdateWithWhereUniqueWithoutPaymentRefundedByInputObjectSchema.array()]).optional(), - updateMany: z.union([AttendeeUpdateManyWithWhereWithoutPaymentRefundedByInputObjectSchema, AttendeeUpdateManyWithWhereWithoutPaymentRefundedByInputObjectSchema.array()]).optional(), - deleteMany: z.union([AttendeeScalarWhereInputObjectSchema, AttendeeScalarWhereInputObjectSchema.array()]).optional() -}).strict(); -export const AttendeeUncheckedUpdateManyWithoutPaymentRefundedByNestedInputObjectSchema: z.ZodType = z.lazy(__makeSchema_AttendeeUncheckedUpdateManyWithoutPaymentRefundedByNestedInput_schema) as unknown as z.ZodType; -export const AttendeeUncheckedUpdateManyWithoutPaymentRefundedByNestedInputObjectZodSchema = z.lazy(__makeSchema_AttendeeUncheckedUpdateManyWithoutPaymentRefundedByNestedInput_schema); - - -// File: AuditLogUncheckedUpdateManyWithoutUserNestedInput.schema.ts -const __makeSchema_AuditLogUncheckedUpdateManyWithoutUserNestedInput_schema = () => z.object({ - create: z.union([AuditLogCreateWithoutUserInputObjectSchema, AuditLogCreateWithoutUserInputObjectSchema.array(), AuditLogUncheckedCreateWithoutUserInputObjectSchema, AuditLogUncheckedCreateWithoutUserInputObjectSchema.array()]).optional(), - connectOrCreate: z.union([AuditLogCreateOrConnectWithoutUserInputObjectSchema, AuditLogCreateOrConnectWithoutUserInputObjectSchema.array()]).optional(), - upsert: z.union([AuditLogUpsertWithWhereUniqueWithoutUserInputObjectSchema, AuditLogUpsertWithWhereUniqueWithoutUserInputObjectSchema.array()]).optional(), - get createMany(){ return AuditLogCreateManyUserInputEnvelopeObjectSchema.optional(); }, - set: z.union([AuditLogWhereUniqueInputObjectSchema, AuditLogWhereUniqueInputObjectSchema.array()]).optional(), - disconnect: z.union([AuditLogWhereUniqueInputObjectSchema, AuditLogWhereUniqueInputObjectSchema.array()]).optional(), - delete: z.union([AuditLogWhereUniqueInputObjectSchema, AuditLogWhereUniqueInputObjectSchema.array()]).optional(), - connect: z.union([AuditLogWhereUniqueInputObjectSchema, AuditLogWhereUniqueInputObjectSchema.array()]).optional(), - update: z.union([AuditLogUpdateWithWhereUniqueWithoutUserInputObjectSchema, AuditLogUpdateWithWhereUniqueWithoutUserInputObjectSchema.array()]).optional(), - updateMany: z.union([AuditLogUpdateManyWithWhereWithoutUserInputObjectSchema, AuditLogUpdateManyWithWhereWithoutUserInputObjectSchema.array()]).optional(), - deleteMany: z.union([AuditLogScalarWhereInputObjectSchema, AuditLogScalarWhereInputObjectSchema.array()]).optional() -}).strict(); -export const AuditLogUncheckedUpdateManyWithoutUserNestedInputObjectSchema: z.ZodType = z.lazy(__makeSchema_AuditLogUncheckedUpdateManyWithoutUserNestedInput_schema) as unknown as z.ZodType; -export const AuditLogUncheckedUpdateManyWithoutUserNestedInputObjectZodSchema = z.lazy(__makeSchema_AuditLogUncheckedUpdateManyWithoutUserNestedInput_schema); - - -// File: DeregisterReasonUncheckedUpdateManyWithoutUserNestedInput.schema.ts -const __makeSchema_DeregisterReasonUncheckedUpdateManyWithoutUserNestedInput_schema = () => z.object({ - create: z.union([DeregisterReasonCreateWithoutUserInputObjectSchema, DeregisterReasonCreateWithoutUserInputObjectSchema.array(), DeregisterReasonUncheckedCreateWithoutUserInputObjectSchema, DeregisterReasonUncheckedCreateWithoutUserInputObjectSchema.array()]).optional(), - connectOrCreate: z.union([DeregisterReasonCreateOrConnectWithoutUserInputObjectSchema, DeregisterReasonCreateOrConnectWithoutUserInputObjectSchema.array()]).optional(), - upsert: z.union([DeregisterReasonUpsertWithWhereUniqueWithoutUserInputObjectSchema, DeregisterReasonUpsertWithWhereUniqueWithoutUserInputObjectSchema.array()]).optional(), - get createMany(){ return DeregisterReasonCreateManyUserInputEnvelopeObjectSchema.optional(); }, - set: z.union([DeregisterReasonWhereUniqueInputObjectSchema, DeregisterReasonWhereUniqueInputObjectSchema.array()]).optional(), - disconnect: z.union([DeregisterReasonWhereUniqueInputObjectSchema, DeregisterReasonWhereUniqueInputObjectSchema.array()]).optional(), - delete: z.union([DeregisterReasonWhereUniqueInputObjectSchema, DeregisterReasonWhereUniqueInputObjectSchema.array()]).optional(), - connect: z.union([DeregisterReasonWhereUniqueInputObjectSchema, DeregisterReasonWhereUniqueInputObjectSchema.array()]).optional(), - update: z.union([DeregisterReasonUpdateWithWhereUniqueWithoutUserInputObjectSchema, DeregisterReasonUpdateWithWhereUniqueWithoutUserInputObjectSchema.array()]).optional(), - updateMany: z.union([DeregisterReasonUpdateManyWithWhereWithoutUserInputObjectSchema, DeregisterReasonUpdateManyWithWhereWithoutUserInputObjectSchema.array()]).optional(), - deleteMany: z.union([DeregisterReasonScalarWhereInputObjectSchema, DeregisterReasonScalarWhereInputObjectSchema.array()]).optional() -}).strict(); -export const DeregisterReasonUncheckedUpdateManyWithoutUserNestedInputObjectSchema: z.ZodType = z.lazy(__makeSchema_DeregisterReasonUncheckedUpdateManyWithoutUserNestedInput_schema) as unknown as z.ZodType; -export const DeregisterReasonUncheckedUpdateManyWithoutUserNestedInputObjectZodSchema = z.lazy(__makeSchema_DeregisterReasonUncheckedUpdateManyWithoutUserNestedInput_schema); - - -// File: NotificationRecipientUncheckedUpdateManyWithoutUserNestedInput.schema.ts -const __makeSchema_NotificationRecipientUncheckedUpdateManyWithoutUserNestedInput_schema = () => z.object({ - create: z.union([NotificationRecipientCreateWithoutUserInputObjectSchema, NotificationRecipientCreateWithoutUserInputObjectSchema.array(), NotificationRecipientUncheckedCreateWithoutUserInputObjectSchema, NotificationRecipientUncheckedCreateWithoutUserInputObjectSchema.array()]).optional(), - connectOrCreate: z.union([NotificationRecipientCreateOrConnectWithoutUserInputObjectSchema, NotificationRecipientCreateOrConnectWithoutUserInputObjectSchema.array()]).optional(), - upsert: z.union([NotificationRecipientUpsertWithWhereUniqueWithoutUserInputObjectSchema, NotificationRecipientUpsertWithWhereUniqueWithoutUserInputObjectSchema.array()]).optional(), - get createMany(){ return NotificationRecipientCreateManyUserInputEnvelopeObjectSchema.optional(); }, - set: z.union([NotificationRecipientWhereUniqueInputObjectSchema, NotificationRecipientWhereUniqueInputObjectSchema.array()]).optional(), - disconnect: z.union([NotificationRecipientWhereUniqueInputObjectSchema, NotificationRecipientWhereUniqueInputObjectSchema.array()]).optional(), - delete: z.union([NotificationRecipientWhereUniqueInputObjectSchema, NotificationRecipientWhereUniqueInputObjectSchema.array()]).optional(), - connect: z.union([NotificationRecipientWhereUniqueInputObjectSchema, NotificationRecipientWhereUniqueInputObjectSchema.array()]).optional(), - update: z.union([NotificationRecipientUpdateWithWhereUniqueWithoutUserInputObjectSchema, NotificationRecipientUpdateWithWhereUniqueWithoutUserInputObjectSchema.array()]).optional(), - updateMany: z.union([NotificationRecipientUpdateManyWithWhereWithoutUserInputObjectSchema, NotificationRecipientUpdateManyWithWhereWithoutUserInputObjectSchema.array()]).optional(), - deleteMany: z.union([NotificationRecipientScalarWhereInputObjectSchema, NotificationRecipientScalarWhereInputObjectSchema.array()]).optional() -}).strict(); -export const NotificationRecipientUncheckedUpdateManyWithoutUserNestedInputObjectSchema: z.ZodType = z.lazy(__makeSchema_NotificationRecipientUncheckedUpdateManyWithoutUserNestedInput_schema) as unknown as z.ZodType; -export const NotificationRecipientUncheckedUpdateManyWithoutUserNestedInputObjectZodSchema = z.lazy(__makeSchema_NotificationRecipientUncheckedUpdateManyWithoutUserNestedInput_schema); - - -// File: NotificationUncheckedUpdateManyWithoutCreatedByNestedInput.schema.ts -const __makeSchema_NotificationUncheckedUpdateManyWithoutCreatedByNestedInput_schema = () => z.object({ - create: z.union([NotificationCreateWithoutCreatedByInputObjectSchema, NotificationCreateWithoutCreatedByInputObjectSchema.array(), NotificationUncheckedCreateWithoutCreatedByInputObjectSchema, NotificationUncheckedCreateWithoutCreatedByInputObjectSchema.array()]).optional(), - connectOrCreate: z.union([NotificationCreateOrConnectWithoutCreatedByInputObjectSchema, NotificationCreateOrConnectWithoutCreatedByInputObjectSchema.array()]).optional(), - upsert: z.union([NotificationUpsertWithWhereUniqueWithoutCreatedByInputObjectSchema, NotificationUpsertWithWhereUniqueWithoutCreatedByInputObjectSchema.array()]).optional(), - get createMany(){ return NotificationCreateManyCreatedByInputEnvelopeObjectSchema.optional(); }, - set: z.union([NotificationWhereUniqueInputObjectSchema, NotificationWhereUniqueInputObjectSchema.array()]).optional(), - disconnect: z.union([NotificationWhereUniqueInputObjectSchema, NotificationWhereUniqueInputObjectSchema.array()]).optional(), - delete: z.union([NotificationWhereUniqueInputObjectSchema, NotificationWhereUniqueInputObjectSchema.array()]).optional(), - connect: z.union([NotificationWhereUniqueInputObjectSchema, NotificationWhereUniqueInputObjectSchema.array()]).optional(), - update: z.union([NotificationUpdateWithWhereUniqueWithoutCreatedByInputObjectSchema, NotificationUpdateWithWhereUniqueWithoutCreatedByInputObjectSchema.array()]).optional(), - updateMany: z.union([NotificationUpdateManyWithWhereWithoutCreatedByInputObjectSchema, NotificationUpdateManyWithWhereWithoutCreatedByInputObjectSchema.array()]).optional(), - deleteMany: z.union([NotificationScalarWhereInputObjectSchema, NotificationScalarWhereInputObjectSchema.array()]).optional() -}).strict(); -export const NotificationUncheckedUpdateManyWithoutCreatedByNestedInputObjectSchema: z.ZodType = z.lazy(__makeSchema_NotificationUncheckedUpdateManyWithoutCreatedByNestedInput_schema) as unknown as z.ZodType; -export const NotificationUncheckedUpdateManyWithoutCreatedByNestedInputObjectZodSchema = z.lazy(__makeSchema_NotificationUncheckedUpdateManyWithoutCreatedByNestedInput_schema); - - -// File: NotificationUncheckedUpdateManyWithoutLastUpdatedByNestedInput.schema.ts -const __makeSchema_NotificationUncheckedUpdateManyWithoutLastUpdatedByNestedInput_schema = () => z.object({ - create: z.union([NotificationCreateWithoutLastUpdatedByInputObjectSchema, NotificationCreateWithoutLastUpdatedByInputObjectSchema.array(), NotificationUncheckedCreateWithoutLastUpdatedByInputObjectSchema, NotificationUncheckedCreateWithoutLastUpdatedByInputObjectSchema.array()]).optional(), - connectOrCreate: z.union([NotificationCreateOrConnectWithoutLastUpdatedByInputObjectSchema, NotificationCreateOrConnectWithoutLastUpdatedByInputObjectSchema.array()]).optional(), - upsert: z.union([NotificationUpsertWithWhereUniqueWithoutLastUpdatedByInputObjectSchema, NotificationUpsertWithWhereUniqueWithoutLastUpdatedByInputObjectSchema.array()]).optional(), - get createMany(){ return NotificationCreateManyLastUpdatedByInputEnvelopeObjectSchema.optional(); }, - set: z.union([NotificationWhereUniqueInputObjectSchema, NotificationWhereUniqueInputObjectSchema.array()]).optional(), - disconnect: z.union([NotificationWhereUniqueInputObjectSchema, NotificationWhereUniqueInputObjectSchema.array()]).optional(), - delete: z.union([NotificationWhereUniqueInputObjectSchema, NotificationWhereUniqueInputObjectSchema.array()]).optional(), - connect: z.union([NotificationWhereUniqueInputObjectSchema, NotificationWhereUniqueInputObjectSchema.array()]).optional(), - update: z.union([NotificationUpdateWithWhereUniqueWithoutLastUpdatedByInputObjectSchema, NotificationUpdateWithWhereUniqueWithoutLastUpdatedByInputObjectSchema.array()]).optional(), - updateMany: z.union([NotificationUpdateManyWithWhereWithoutLastUpdatedByInputObjectSchema, NotificationUpdateManyWithWhereWithoutLastUpdatedByInputObjectSchema.array()]).optional(), - deleteMany: z.union([NotificationScalarWhereInputObjectSchema, NotificationScalarWhereInputObjectSchema.array()]).optional() -}).strict(); -export const NotificationUncheckedUpdateManyWithoutLastUpdatedByNestedInputObjectSchema: z.ZodType = z.lazy(__makeSchema_NotificationUncheckedUpdateManyWithoutLastUpdatedByNestedInput_schema) as unknown as z.ZodType; -export const NotificationUncheckedUpdateManyWithoutLastUpdatedByNestedInputObjectZodSchema = z.lazy(__makeSchema_NotificationUncheckedUpdateManyWithoutLastUpdatedByNestedInput_schema); - - -// File: ContestantUncheckedUpdateManyWithoutUserNestedInput.schema.ts -const __makeSchema_ContestantUncheckedUpdateManyWithoutUserNestedInput_schema = () => z.object({ - create: z.union([ContestantCreateWithoutUserInputObjectSchema, ContestantCreateWithoutUserInputObjectSchema.array(), ContestantUncheckedCreateWithoutUserInputObjectSchema, ContestantUncheckedCreateWithoutUserInputObjectSchema.array()]).optional(), - connectOrCreate: z.union([ContestantCreateOrConnectWithoutUserInputObjectSchema, ContestantCreateOrConnectWithoutUserInputObjectSchema.array()]).optional(), - upsert: z.union([ContestantUpsertWithWhereUniqueWithoutUserInputObjectSchema, ContestantUpsertWithWhereUniqueWithoutUserInputObjectSchema.array()]).optional(), - get createMany(){ return ContestantCreateManyUserInputEnvelopeObjectSchema.optional(); }, - set: z.union([ContestantWhereUniqueInputObjectSchema, ContestantWhereUniqueInputObjectSchema.array()]).optional(), - disconnect: z.union([ContestantWhereUniqueInputObjectSchema, ContestantWhereUniqueInputObjectSchema.array()]).optional(), - delete: z.union([ContestantWhereUniqueInputObjectSchema, ContestantWhereUniqueInputObjectSchema.array()]).optional(), - connect: z.union([ContestantWhereUniqueInputObjectSchema, ContestantWhereUniqueInputObjectSchema.array()]).optional(), - update: z.union([ContestantUpdateWithWhereUniqueWithoutUserInputObjectSchema, ContestantUpdateWithWhereUniqueWithoutUserInputObjectSchema.array()]).optional(), - updateMany: z.union([ContestantUpdateManyWithWhereWithoutUserInputObjectSchema, ContestantUpdateManyWithWhereWithoutUserInputObjectSchema.array()]).optional(), - deleteMany: z.union([ContestantScalarWhereInputObjectSchema, ContestantScalarWhereInputObjectSchema.array()]).optional() -}).strict(); -export const ContestantUncheckedUpdateManyWithoutUserNestedInputObjectSchema: z.ZodType = z.lazy(__makeSchema_ContestantUncheckedUpdateManyWithoutUserNestedInput_schema) as unknown as z.ZodType; -export const ContestantUncheckedUpdateManyWithoutUserNestedInputObjectZodSchema = z.lazy(__makeSchema_ContestantUncheckedUpdateManyWithoutUserNestedInput_schema); - - -// File: ContestTeamUncheckedUpdateManyWithoutMembersNestedInput.schema.ts -const __makeSchema_ContestTeamUncheckedUpdateManyWithoutMembersNestedInput_schema = () => z.object({ - create: z.union([ContestTeamCreateWithoutMembersInputObjectSchema, ContestTeamCreateWithoutMembersInputObjectSchema.array(), ContestTeamUncheckedCreateWithoutMembersInputObjectSchema, ContestTeamUncheckedCreateWithoutMembersInputObjectSchema.array()]).optional(), - connectOrCreate: z.union([ContestTeamCreateOrConnectWithoutMembersInputObjectSchema, ContestTeamCreateOrConnectWithoutMembersInputObjectSchema.array()]).optional(), - upsert: z.union([ContestTeamUpsertWithWhereUniqueWithoutMembersInputObjectSchema, ContestTeamUpsertWithWhereUniqueWithoutMembersInputObjectSchema.array()]).optional(), - set: z.union([ContestTeamWhereUniqueInputObjectSchema, ContestTeamWhereUniqueInputObjectSchema.array()]).optional(), - disconnect: z.union([ContestTeamWhereUniqueInputObjectSchema, ContestTeamWhereUniqueInputObjectSchema.array()]).optional(), - delete: z.union([ContestTeamWhereUniqueInputObjectSchema, ContestTeamWhereUniqueInputObjectSchema.array()]).optional(), - connect: z.union([ContestTeamWhereUniqueInputObjectSchema, ContestTeamWhereUniqueInputObjectSchema.array()]).optional(), - update: z.union([ContestTeamUpdateWithWhereUniqueWithoutMembersInputObjectSchema, ContestTeamUpdateWithWhereUniqueWithoutMembersInputObjectSchema.array()]).optional(), - updateMany: z.union([ContestTeamUpdateManyWithWhereWithoutMembersInputObjectSchema, ContestTeamUpdateManyWithWhereWithoutMembersInputObjectSchema.array()]).optional(), - deleteMany: z.union([ContestTeamScalarWhereInputObjectSchema, ContestTeamScalarWhereInputObjectSchema.array()]).optional() -}).strict(); -export const ContestTeamUncheckedUpdateManyWithoutMembersNestedInputObjectSchema: z.ZodType = z.lazy(__makeSchema_ContestTeamUncheckedUpdateManyWithoutMembersNestedInput_schema) as unknown as z.ZodType; -export const ContestTeamUncheckedUpdateManyWithoutMembersNestedInputObjectZodSchema = z.lazy(__makeSchema_ContestTeamUncheckedUpdateManyWithoutMembersNestedInput_schema); - - -// File: EventCompanyCreateNestedManyWithoutCompanyInput.schema.ts -const __makeSchema_EventCompanyCreateNestedManyWithoutCompanyInput_schema = () => z.object({ - create: z.union([EventCompanyCreateWithoutCompanyInputObjectSchema, EventCompanyCreateWithoutCompanyInputObjectSchema.array(), EventCompanyUncheckedCreateWithoutCompanyInputObjectSchema, EventCompanyUncheckedCreateWithoutCompanyInputObjectSchema.array()]).optional(), - connectOrCreate: z.union([EventCompanyCreateOrConnectWithoutCompanyInputObjectSchema, EventCompanyCreateOrConnectWithoutCompanyInputObjectSchema.array()]).optional(), - get createMany(){ return EventCompanyCreateManyCompanyInputEnvelopeObjectSchema.optional(); }, - connect: z.union([EventCompanyWhereUniqueInputObjectSchema, EventCompanyWhereUniqueInputObjectSchema.array()]).optional() -}).strict(); -export const EventCompanyCreateNestedManyWithoutCompanyInputObjectSchema: z.ZodType = z.lazy(__makeSchema_EventCompanyCreateNestedManyWithoutCompanyInput_schema) as unknown as z.ZodType; -export const EventCompanyCreateNestedManyWithoutCompanyInputObjectZodSchema = z.lazy(__makeSchema_EventCompanyCreateNestedManyWithoutCompanyInput_schema); - - -// File: JobListingCreateNestedManyWithoutCompanyInput.schema.ts -const __makeSchema_JobListingCreateNestedManyWithoutCompanyInput_schema = () => z.object({ - create: z.union([JobListingCreateWithoutCompanyInputObjectSchema, JobListingCreateWithoutCompanyInputObjectSchema.array(), JobListingUncheckedCreateWithoutCompanyInputObjectSchema, JobListingUncheckedCreateWithoutCompanyInputObjectSchema.array()]).optional(), - connectOrCreate: z.union([JobListingCreateOrConnectWithoutCompanyInputObjectSchema, JobListingCreateOrConnectWithoutCompanyInputObjectSchema.array()]).optional(), - get createMany(){ return JobListingCreateManyCompanyInputEnvelopeObjectSchema.optional(); }, - connect: z.union([JobListingWhereUniqueInputObjectSchema, JobListingWhereUniqueInputObjectSchema.array()]).optional() -}).strict(); -export const JobListingCreateNestedManyWithoutCompanyInputObjectSchema: z.ZodType = z.lazy(__makeSchema_JobListingCreateNestedManyWithoutCompanyInput_schema) as unknown as z.ZodType; -export const JobListingCreateNestedManyWithoutCompanyInputObjectZodSchema = z.lazy(__makeSchema_JobListingCreateNestedManyWithoutCompanyInput_schema); - - -// File: EventCompanyUncheckedCreateNestedManyWithoutCompanyInput.schema.ts -const __makeSchema_EventCompanyUncheckedCreateNestedManyWithoutCompanyInput_schema = () => z.object({ - create: z.union([EventCompanyCreateWithoutCompanyInputObjectSchema, EventCompanyCreateWithoutCompanyInputObjectSchema.array(), EventCompanyUncheckedCreateWithoutCompanyInputObjectSchema, EventCompanyUncheckedCreateWithoutCompanyInputObjectSchema.array()]).optional(), - connectOrCreate: z.union([EventCompanyCreateOrConnectWithoutCompanyInputObjectSchema, EventCompanyCreateOrConnectWithoutCompanyInputObjectSchema.array()]).optional(), - get createMany(){ return EventCompanyCreateManyCompanyInputEnvelopeObjectSchema.optional(); }, - connect: z.union([EventCompanyWhereUniqueInputObjectSchema, EventCompanyWhereUniqueInputObjectSchema.array()]).optional() -}).strict(); -export const EventCompanyUncheckedCreateNestedManyWithoutCompanyInputObjectSchema: z.ZodType = z.lazy(__makeSchema_EventCompanyUncheckedCreateNestedManyWithoutCompanyInput_schema) as unknown as z.ZodType; -export const EventCompanyUncheckedCreateNestedManyWithoutCompanyInputObjectZodSchema = z.lazy(__makeSchema_EventCompanyUncheckedCreateNestedManyWithoutCompanyInput_schema); - - -// File: JobListingUncheckedCreateNestedManyWithoutCompanyInput.schema.ts -const __makeSchema_JobListingUncheckedCreateNestedManyWithoutCompanyInput_schema = () => z.object({ - create: z.union([JobListingCreateWithoutCompanyInputObjectSchema, JobListingCreateWithoutCompanyInputObjectSchema.array(), JobListingUncheckedCreateWithoutCompanyInputObjectSchema, JobListingUncheckedCreateWithoutCompanyInputObjectSchema.array()]).optional(), - connectOrCreate: z.union([JobListingCreateOrConnectWithoutCompanyInputObjectSchema, JobListingCreateOrConnectWithoutCompanyInputObjectSchema.array()]).optional(), - get createMany(){ return JobListingCreateManyCompanyInputEnvelopeObjectSchema.optional(); }, - connect: z.union([JobListingWhereUniqueInputObjectSchema, JobListingWhereUniqueInputObjectSchema.array()]).optional() -}).strict(); -export const JobListingUncheckedCreateNestedManyWithoutCompanyInputObjectSchema: z.ZodType = z.lazy(__makeSchema_JobListingUncheckedCreateNestedManyWithoutCompanyInput_schema) as unknown as z.ZodType; -export const JobListingUncheckedCreateNestedManyWithoutCompanyInputObjectZodSchema = z.lazy(__makeSchema_JobListingUncheckedCreateNestedManyWithoutCompanyInput_schema); - - -// File: EventCompanyUpdateManyWithoutCompanyNestedInput.schema.ts -const __makeSchema_EventCompanyUpdateManyWithoutCompanyNestedInput_schema = () => z.object({ - create: z.union([EventCompanyCreateWithoutCompanyInputObjectSchema, EventCompanyCreateWithoutCompanyInputObjectSchema.array(), EventCompanyUncheckedCreateWithoutCompanyInputObjectSchema, EventCompanyUncheckedCreateWithoutCompanyInputObjectSchema.array()]).optional(), - connectOrCreate: z.union([EventCompanyCreateOrConnectWithoutCompanyInputObjectSchema, EventCompanyCreateOrConnectWithoutCompanyInputObjectSchema.array()]).optional(), - upsert: z.union([EventCompanyUpsertWithWhereUniqueWithoutCompanyInputObjectSchema, EventCompanyUpsertWithWhereUniqueWithoutCompanyInputObjectSchema.array()]).optional(), - get createMany(){ return EventCompanyCreateManyCompanyInputEnvelopeObjectSchema.optional(); }, - set: z.union([EventCompanyWhereUniqueInputObjectSchema, EventCompanyWhereUniqueInputObjectSchema.array()]).optional(), - disconnect: z.union([EventCompanyWhereUniqueInputObjectSchema, EventCompanyWhereUniqueInputObjectSchema.array()]).optional(), - delete: z.union([EventCompanyWhereUniqueInputObjectSchema, EventCompanyWhereUniqueInputObjectSchema.array()]).optional(), - connect: z.union([EventCompanyWhereUniqueInputObjectSchema, EventCompanyWhereUniqueInputObjectSchema.array()]).optional(), - update: z.union([EventCompanyUpdateWithWhereUniqueWithoutCompanyInputObjectSchema, EventCompanyUpdateWithWhereUniqueWithoutCompanyInputObjectSchema.array()]).optional(), - updateMany: z.union([EventCompanyUpdateManyWithWhereWithoutCompanyInputObjectSchema, EventCompanyUpdateManyWithWhereWithoutCompanyInputObjectSchema.array()]).optional(), - deleteMany: z.union([EventCompanyScalarWhereInputObjectSchema, EventCompanyScalarWhereInputObjectSchema.array()]).optional() -}).strict(); -export const EventCompanyUpdateManyWithoutCompanyNestedInputObjectSchema: z.ZodType = z.lazy(__makeSchema_EventCompanyUpdateManyWithoutCompanyNestedInput_schema) as unknown as z.ZodType; -export const EventCompanyUpdateManyWithoutCompanyNestedInputObjectZodSchema = z.lazy(__makeSchema_EventCompanyUpdateManyWithoutCompanyNestedInput_schema); - - -// File: JobListingUpdateManyWithoutCompanyNestedInput.schema.ts -const __makeSchema_JobListingUpdateManyWithoutCompanyNestedInput_schema = () => z.object({ - create: z.union([JobListingCreateWithoutCompanyInputObjectSchema, JobListingCreateWithoutCompanyInputObjectSchema.array(), JobListingUncheckedCreateWithoutCompanyInputObjectSchema, JobListingUncheckedCreateWithoutCompanyInputObjectSchema.array()]).optional(), - connectOrCreate: z.union([JobListingCreateOrConnectWithoutCompanyInputObjectSchema, JobListingCreateOrConnectWithoutCompanyInputObjectSchema.array()]).optional(), - upsert: z.union([JobListingUpsertWithWhereUniqueWithoutCompanyInputObjectSchema, JobListingUpsertWithWhereUniqueWithoutCompanyInputObjectSchema.array()]).optional(), - get createMany(){ return JobListingCreateManyCompanyInputEnvelopeObjectSchema.optional(); }, - set: z.union([JobListingWhereUniqueInputObjectSchema, JobListingWhereUniqueInputObjectSchema.array()]).optional(), - disconnect: z.union([JobListingWhereUniqueInputObjectSchema, JobListingWhereUniqueInputObjectSchema.array()]).optional(), - delete: z.union([JobListingWhereUniqueInputObjectSchema, JobListingWhereUniqueInputObjectSchema.array()]).optional(), - connect: z.union([JobListingWhereUniqueInputObjectSchema, JobListingWhereUniqueInputObjectSchema.array()]).optional(), - update: z.union([JobListingUpdateWithWhereUniqueWithoutCompanyInputObjectSchema, JobListingUpdateWithWhereUniqueWithoutCompanyInputObjectSchema.array()]).optional(), - updateMany: z.union([JobListingUpdateManyWithWhereWithoutCompanyInputObjectSchema, JobListingUpdateManyWithWhereWithoutCompanyInputObjectSchema.array()]).optional(), - deleteMany: z.union([JobListingScalarWhereInputObjectSchema, JobListingScalarWhereInputObjectSchema.array()]).optional() -}).strict(); -export const JobListingUpdateManyWithoutCompanyNestedInputObjectSchema: z.ZodType = z.lazy(__makeSchema_JobListingUpdateManyWithoutCompanyNestedInput_schema) as unknown as z.ZodType; -export const JobListingUpdateManyWithoutCompanyNestedInputObjectZodSchema = z.lazy(__makeSchema_JobListingUpdateManyWithoutCompanyNestedInput_schema); - - -// File: EventCompanyUncheckedUpdateManyWithoutCompanyNestedInput.schema.ts -const __makeSchema_EventCompanyUncheckedUpdateManyWithoutCompanyNestedInput_schema = () => z.object({ - create: z.union([EventCompanyCreateWithoutCompanyInputObjectSchema, EventCompanyCreateWithoutCompanyInputObjectSchema.array(), EventCompanyUncheckedCreateWithoutCompanyInputObjectSchema, EventCompanyUncheckedCreateWithoutCompanyInputObjectSchema.array()]).optional(), - connectOrCreate: z.union([EventCompanyCreateOrConnectWithoutCompanyInputObjectSchema, EventCompanyCreateOrConnectWithoutCompanyInputObjectSchema.array()]).optional(), - upsert: z.union([EventCompanyUpsertWithWhereUniqueWithoutCompanyInputObjectSchema, EventCompanyUpsertWithWhereUniqueWithoutCompanyInputObjectSchema.array()]).optional(), - get createMany(){ return EventCompanyCreateManyCompanyInputEnvelopeObjectSchema.optional(); }, - set: z.union([EventCompanyWhereUniqueInputObjectSchema, EventCompanyWhereUniqueInputObjectSchema.array()]).optional(), - disconnect: z.union([EventCompanyWhereUniqueInputObjectSchema, EventCompanyWhereUniqueInputObjectSchema.array()]).optional(), - delete: z.union([EventCompanyWhereUniqueInputObjectSchema, EventCompanyWhereUniqueInputObjectSchema.array()]).optional(), - connect: z.union([EventCompanyWhereUniqueInputObjectSchema, EventCompanyWhereUniqueInputObjectSchema.array()]).optional(), - update: z.union([EventCompanyUpdateWithWhereUniqueWithoutCompanyInputObjectSchema, EventCompanyUpdateWithWhereUniqueWithoutCompanyInputObjectSchema.array()]).optional(), - updateMany: z.union([EventCompanyUpdateManyWithWhereWithoutCompanyInputObjectSchema, EventCompanyUpdateManyWithWhereWithoutCompanyInputObjectSchema.array()]).optional(), - deleteMany: z.union([EventCompanyScalarWhereInputObjectSchema, EventCompanyScalarWhereInputObjectSchema.array()]).optional() -}).strict(); -export const EventCompanyUncheckedUpdateManyWithoutCompanyNestedInputObjectSchema: z.ZodType = z.lazy(__makeSchema_EventCompanyUncheckedUpdateManyWithoutCompanyNestedInput_schema) as unknown as z.ZodType; -export const EventCompanyUncheckedUpdateManyWithoutCompanyNestedInputObjectZodSchema = z.lazy(__makeSchema_EventCompanyUncheckedUpdateManyWithoutCompanyNestedInput_schema); - - -// File: JobListingUncheckedUpdateManyWithoutCompanyNestedInput.schema.ts -const __makeSchema_JobListingUncheckedUpdateManyWithoutCompanyNestedInput_schema = () => z.object({ - create: z.union([JobListingCreateWithoutCompanyInputObjectSchema, JobListingCreateWithoutCompanyInputObjectSchema.array(), JobListingUncheckedCreateWithoutCompanyInputObjectSchema, JobListingUncheckedCreateWithoutCompanyInputObjectSchema.array()]).optional(), - connectOrCreate: z.union([JobListingCreateOrConnectWithoutCompanyInputObjectSchema, JobListingCreateOrConnectWithoutCompanyInputObjectSchema.array()]).optional(), - upsert: z.union([JobListingUpsertWithWhereUniqueWithoutCompanyInputObjectSchema, JobListingUpsertWithWhereUniqueWithoutCompanyInputObjectSchema.array()]).optional(), - get createMany(){ return JobListingCreateManyCompanyInputEnvelopeObjectSchema.optional(); }, - set: z.union([JobListingWhereUniqueInputObjectSchema, JobListingWhereUniqueInputObjectSchema.array()]).optional(), - disconnect: z.union([JobListingWhereUniqueInputObjectSchema, JobListingWhereUniqueInputObjectSchema.array()]).optional(), - delete: z.union([JobListingWhereUniqueInputObjectSchema, JobListingWhereUniqueInputObjectSchema.array()]).optional(), - connect: z.union([JobListingWhereUniqueInputObjectSchema, JobListingWhereUniqueInputObjectSchema.array()]).optional(), - update: z.union([JobListingUpdateWithWhereUniqueWithoutCompanyInputObjectSchema, JobListingUpdateWithWhereUniqueWithoutCompanyInputObjectSchema.array()]).optional(), - updateMany: z.union([JobListingUpdateManyWithWhereWithoutCompanyInputObjectSchema, JobListingUpdateManyWithWhereWithoutCompanyInputObjectSchema.array()]).optional(), - deleteMany: z.union([JobListingScalarWhereInputObjectSchema, JobListingScalarWhereInputObjectSchema.array()]).optional() -}).strict(); -export const JobListingUncheckedUpdateManyWithoutCompanyNestedInputObjectSchema: z.ZodType = z.lazy(__makeSchema_JobListingUncheckedUpdateManyWithoutCompanyNestedInput_schema) as unknown as z.ZodType; -export const JobListingUncheckedUpdateManyWithoutCompanyNestedInputObjectZodSchema = z.lazy(__makeSchema_JobListingUncheckedUpdateManyWithoutCompanyNestedInput_schema); - - -// File: EventHostingGroupCreateNestedManyWithoutGroupInput.schema.ts -const __makeSchema_EventHostingGroupCreateNestedManyWithoutGroupInput_schema = () => z.object({ - create: z.union([EventHostingGroupCreateWithoutGroupInputObjectSchema, EventHostingGroupCreateWithoutGroupInputObjectSchema.array(), EventHostingGroupUncheckedCreateWithoutGroupInputObjectSchema, EventHostingGroupUncheckedCreateWithoutGroupInputObjectSchema.array()]).optional(), - connectOrCreate: z.union([EventHostingGroupCreateOrConnectWithoutGroupInputObjectSchema, EventHostingGroupCreateOrConnectWithoutGroupInputObjectSchema.array()]).optional(), - get createMany(){ return EventHostingGroupCreateManyGroupInputEnvelopeObjectSchema.optional(); }, - connect: z.union([EventHostingGroupWhereUniqueInputObjectSchema, EventHostingGroupWhereUniqueInputObjectSchema.array()]).optional() -}).strict(); -export const EventHostingGroupCreateNestedManyWithoutGroupInputObjectSchema: z.ZodType = z.lazy(__makeSchema_EventHostingGroupCreateNestedManyWithoutGroupInput_schema) as unknown as z.ZodType; -export const EventHostingGroupCreateNestedManyWithoutGroupInputObjectZodSchema = z.lazy(__makeSchema_EventHostingGroupCreateNestedManyWithoutGroupInput_schema); - - -// File: ContestCreateNestedManyWithoutGroupsInput.schema.ts -const __makeSchema_ContestCreateNestedManyWithoutGroupsInput_schema = () => z.object({ - create: z.union([ContestCreateWithoutGroupsInputObjectSchema, ContestCreateWithoutGroupsInputObjectSchema.array(), ContestUncheckedCreateWithoutGroupsInputObjectSchema, ContestUncheckedCreateWithoutGroupsInputObjectSchema.array()]).optional(), - connectOrCreate: z.union([ContestCreateOrConnectWithoutGroupsInputObjectSchema, ContestCreateOrConnectWithoutGroupsInputObjectSchema.array()]).optional(), - connect: z.union([ContestWhereUniqueInputObjectSchema, ContestWhereUniqueInputObjectSchema.array()]).optional() -}).strict(); -export const ContestCreateNestedManyWithoutGroupsInputObjectSchema: z.ZodType = z.lazy(__makeSchema_ContestCreateNestedManyWithoutGroupsInput_schema) as unknown as z.ZodType; -export const ContestCreateNestedManyWithoutGroupsInputObjectZodSchema = z.lazy(__makeSchema_ContestCreateNestedManyWithoutGroupsInput_schema); - - -// File: GroupMembershipCreateNestedManyWithoutGroupInput.schema.ts -const __makeSchema_GroupMembershipCreateNestedManyWithoutGroupInput_schema = () => z.object({ - create: z.union([GroupMembershipCreateWithoutGroupInputObjectSchema, GroupMembershipCreateWithoutGroupInputObjectSchema.array(), GroupMembershipUncheckedCreateWithoutGroupInputObjectSchema, GroupMembershipUncheckedCreateWithoutGroupInputObjectSchema.array()]).optional(), - connectOrCreate: z.union([GroupMembershipCreateOrConnectWithoutGroupInputObjectSchema, GroupMembershipCreateOrConnectWithoutGroupInputObjectSchema.array()]).optional(), - get createMany(){ return GroupMembershipCreateManyGroupInputEnvelopeObjectSchema.optional(); }, - connect: z.union([GroupMembershipWhereUniqueInputObjectSchema, GroupMembershipWhereUniqueInputObjectSchema.array()]).optional() -}).strict(); -export const GroupMembershipCreateNestedManyWithoutGroupInputObjectSchema: z.ZodType = z.lazy(__makeSchema_GroupMembershipCreateNestedManyWithoutGroupInput_schema) as unknown as z.ZodType; -export const GroupMembershipCreateNestedManyWithoutGroupInputObjectZodSchema = z.lazy(__makeSchema_GroupMembershipCreateNestedManyWithoutGroupInput_schema); - - -// File: MarkGroupCreateNestedManyWithoutGroupInput.schema.ts -const __makeSchema_MarkGroupCreateNestedManyWithoutGroupInput_schema = () => z.object({ - create: z.union([MarkGroupCreateWithoutGroupInputObjectSchema, MarkGroupCreateWithoutGroupInputObjectSchema.array(), MarkGroupUncheckedCreateWithoutGroupInputObjectSchema, MarkGroupUncheckedCreateWithoutGroupInputObjectSchema.array()]).optional(), - connectOrCreate: z.union([MarkGroupCreateOrConnectWithoutGroupInputObjectSchema, MarkGroupCreateOrConnectWithoutGroupInputObjectSchema.array()]).optional(), - get createMany(){ return MarkGroupCreateManyGroupInputEnvelopeObjectSchema.optional(); }, - connect: z.union([MarkGroupWhereUniqueInputObjectSchema, MarkGroupWhereUniqueInputObjectSchema.array()]).optional() -}).strict(); -export const MarkGroupCreateNestedManyWithoutGroupInputObjectSchema: z.ZodType = z.lazy(__makeSchema_MarkGroupCreateNestedManyWithoutGroupInput_schema) as unknown as z.ZodType; -export const MarkGroupCreateNestedManyWithoutGroupInputObjectZodSchema = z.lazy(__makeSchema_MarkGroupCreateNestedManyWithoutGroupInput_schema); - - -// File: GroupRoleCreateNestedManyWithoutGroupInput.schema.ts -const __makeSchema_GroupRoleCreateNestedManyWithoutGroupInput_schema = () => z.object({ - create: z.union([GroupRoleCreateWithoutGroupInputObjectSchema, GroupRoleCreateWithoutGroupInputObjectSchema.array(), GroupRoleUncheckedCreateWithoutGroupInputObjectSchema, GroupRoleUncheckedCreateWithoutGroupInputObjectSchema.array()]).optional(), - connectOrCreate: z.union([GroupRoleCreateOrConnectWithoutGroupInputObjectSchema, GroupRoleCreateOrConnectWithoutGroupInputObjectSchema.array()]).optional(), - get createMany(){ return GroupRoleCreateManyGroupInputEnvelopeObjectSchema.optional(); }, - connect: z.union([GroupRoleWhereUniqueInputObjectSchema, GroupRoleWhereUniqueInputObjectSchema.array()]).optional() -}).strict(); -export const GroupRoleCreateNestedManyWithoutGroupInputObjectSchema: z.ZodType = z.lazy(__makeSchema_GroupRoleCreateNestedManyWithoutGroupInput_schema) as unknown as z.ZodType; -export const GroupRoleCreateNestedManyWithoutGroupInputObjectZodSchema = z.lazy(__makeSchema_GroupRoleCreateNestedManyWithoutGroupInput_schema); - - -// File: NotificationCreateNestedManyWithoutActorGroupInput.schema.ts -const __makeSchema_NotificationCreateNestedManyWithoutActorGroupInput_schema = () => z.object({ - create: z.union([NotificationCreateWithoutActorGroupInputObjectSchema, NotificationCreateWithoutActorGroupInputObjectSchema.array(), NotificationUncheckedCreateWithoutActorGroupInputObjectSchema, NotificationUncheckedCreateWithoutActorGroupInputObjectSchema.array()]).optional(), - connectOrCreate: z.union([NotificationCreateOrConnectWithoutActorGroupInputObjectSchema, NotificationCreateOrConnectWithoutActorGroupInputObjectSchema.array()]).optional(), - get createMany(){ return NotificationCreateManyActorGroupInputEnvelopeObjectSchema.optional(); }, - connect: z.union([NotificationWhereUniqueInputObjectSchema, NotificationWhereUniqueInputObjectSchema.array()]).optional() -}).strict(); -export const NotificationCreateNestedManyWithoutActorGroupInputObjectSchema: z.ZodType = z.lazy(__makeSchema_NotificationCreateNestedManyWithoutActorGroupInput_schema) as unknown as z.ZodType; -export const NotificationCreateNestedManyWithoutActorGroupInputObjectZodSchema = z.lazy(__makeSchema_NotificationCreateNestedManyWithoutActorGroupInput_schema); - - -// File: EventHostingGroupUncheckedCreateNestedManyWithoutGroupInput.schema.ts -const __makeSchema_EventHostingGroupUncheckedCreateNestedManyWithoutGroupInput_schema = () => z.object({ - create: z.union([EventHostingGroupCreateWithoutGroupInputObjectSchema, EventHostingGroupCreateWithoutGroupInputObjectSchema.array(), EventHostingGroupUncheckedCreateWithoutGroupInputObjectSchema, EventHostingGroupUncheckedCreateWithoutGroupInputObjectSchema.array()]).optional(), - connectOrCreate: z.union([EventHostingGroupCreateOrConnectWithoutGroupInputObjectSchema, EventHostingGroupCreateOrConnectWithoutGroupInputObjectSchema.array()]).optional(), - get createMany(){ return EventHostingGroupCreateManyGroupInputEnvelopeObjectSchema.optional(); }, - connect: z.union([EventHostingGroupWhereUniqueInputObjectSchema, EventHostingGroupWhereUniqueInputObjectSchema.array()]).optional() -}).strict(); -export const EventHostingGroupUncheckedCreateNestedManyWithoutGroupInputObjectSchema: z.ZodType = z.lazy(__makeSchema_EventHostingGroupUncheckedCreateNestedManyWithoutGroupInput_schema) as unknown as z.ZodType; -export const EventHostingGroupUncheckedCreateNestedManyWithoutGroupInputObjectZodSchema = z.lazy(__makeSchema_EventHostingGroupUncheckedCreateNestedManyWithoutGroupInput_schema); - - -// File: ContestUncheckedCreateNestedManyWithoutGroupsInput.schema.ts -const __makeSchema_ContestUncheckedCreateNestedManyWithoutGroupsInput_schema = () => z.object({ - create: z.union([ContestCreateWithoutGroupsInputObjectSchema, ContestCreateWithoutGroupsInputObjectSchema.array(), ContestUncheckedCreateWithoutGroupsInputObjectSchema, ContestUncheckedCreateWithoutGroupsInputObjectSchema.array()]).optional(), - connectOrCreate: z.union([ContestCreateOrConnectWithoutGroupsInputObjectSchema, ContestCreateOrConnectWithoutGroupsInputObjectSchema.array()]).optional(), - connect: z.union([ContestWhereUniqueInputObjectSchema, ContestWhereUniqueInputObjectSchema.array()]).optional() -}).strict(); -export const ContestUncheckedCreateNestedManyWithoutGroupsInputObjectSchema: z.ZodType = z.lazy(__makeSchema_ContestUncheckedCreateNestedManyWithoutGroupsInput_schema) as unknown as z.ZodType; -export const ContestUncheckedCreateNestedManyWithoutGroupsInputObjectZodSchema = z.lazy(__makeSchema_ContestUncheckedCreateNestedManyWithoutGroupsInput_schema); - - -// File: GroupMembershipUncheckedCreateNestedManyWithoutGroupInput.schema.ts -const __makeSchema_GroupMembershipUncheckedCreateNestedManyWithoutGroupInput_schema = () => z.object({ - create: z.union([GroupMembershipCreateWithoutGroupInputObjectSchema, GroupMembershipCreateWithoutGroupInputObjectSchema.array(), GroupMembershipUncheckedCreateWithoutGroupInputObjectSchema, GroupMembershipUncheckedCreateWithoutGroupInputObjectSchema.array()]).optional(), - connectOrCreate: z.union([GroupMembershipCreateOrConnectWithoutGroupInputObjectSchema, GroupMembershipCreateOrConnectWithoutGroupInputObjectSchema.array()]).optional(), - get createMany(){ return GroupMembershipCreateManyGroupInputEnvelopeObjectSchema.optional(); }, - connect: z.union([GroupMembershipWhereUniqueInputObjectSchema, GroupMembershipWhereUniqueInputObjectSchema.array()]).optional() -}).strict(); -export const GroupMembershipUncheckedCreateNestedManyWithoutGroupInputObjectSchema: z.ZodType = z.lazy(__makeSchema_GroupMembershipUncheckedCreateNestedManyWithoutGroupInput_schema) as unknown as z.ZodType; -export const GroupMembershipUncheckedCreateNestedManyWithoutGroupInputObjectZodSchema = z.lazy(__makeSchema_GroupMembershipUncheckedCreateNestedManyWithoutGroupInput_schema); - - -// File: MarkGroupUncheckedCreateNestedManyWithoutGroupInput.schema.ts -const __makeSchema_MarkGroupUncheckedCreateNestedManyWithoutGroupInput_schema = () => z.object({ - create: z.union([MarkGroupCreateWithoutGroupInputObjectSchema, MarkGroupCreateWithoutGroupInputObjectSchema.array(), MarkGroupUncheckedCreateWithoutGroupInputObjectSchema, MarkGroupUncheckedCreateWithoutGroupInputObjectSchema.array()]).optional(), - connectOrCreate: z.union([MarkGroupCreateOrConnectWithoutGroupInputObjectSchema, MarkGroupCreateOrConnectWithoutGroupInputObjectSchema.array()]).optional(), - get createMany(){ return MarkGroupCreateManyGroupInputEnvelopeObjectSchema.optional(); }, - connect: z.union([MarkGroupWhereUniqueInputObjectSchema, MarkGroupWhereUniqueInputObjectSchema.array()]).optional() -}).strict(); -export const MarkGroupUncheckedCreateNestedManyWithoutGroupInputObjectSchema: z.ZodType = z.lazy(__makeSchema_MarkGroupUncheckedCreateNestedManyWithoutGroupInput_schema) as unknown as z.ZodType; -export const MarkGroupUncheckedCreateNestedManyWithoutGroupInputObjectZodSchema = z.lazy(__makeSchema_MarkGroupUncheckedCreateNestedManyWithoutGroupInput_schema); - - -// File: GroupRoleUncheckedCreateNestedManyWithoutGroupInput.schema.ts -const __makeSchema_GroupRoleUncheckedCreateNestedManyWithoutGroupInput_schema = () => z.object({ - create: z.union([GroupRoleCreateWithoutGroupInputObjectSchema, GroupRoleCreateWithoutGroupInputObjectSchema.array(), GroupRoleUncheckedCreateWithoutGroupInputObjectSchema, GroupRoleUncheckedCreateWithoutGroupInputObjectSchema.array()]).optional(), - connectOrCreate: z.union([GroupRoleCreateOrConnectWithoutGroupInputObjectSchema, GroupRoleCreateOrConnectWithoutGroupInputObjectSchema.array()]).optional(), - get createMany(){ return GroupRoleCreateManyGroupInputEnvelopeObjectSchema.optional(); }, - connect: z.union([GroupRoleWhereUniqueInputObjectSchema, GroupRoleWhereUniqueInputObjectSchema.array()]).optional() -}).strict(); -export const GroupRoleUncheckedCreateNestedManyWithoutGroupInputObjectSchema: z.ZodType = z.lazy(__makeSchema_GroupRoleUncheckedCreateNestedManyWithoutGroupInput_schema) as unknown as z.ZodType; -export const GroupRoleUncheckedCreateNestedManyWithoutGroupInputObjectZodSchema = z.lazy(__makeSchema_GroupRoleUncheckedCreateNestedManyWithoutGroupInput_schema); - - -// File: NotificationUncheckedCreateNestedManyWithoutActorGroupInput.schema.ts -const __makeSchema_NotificationUncheckedCreateNestedManyWithoutActorGroupInput_schema = () => z.object({ - create: z.union([NotificationCreateWithoutActorGroupInputObjectSchema, NotificationCreateWithoutActorGroupInputObjectSchema.array(), NotificationUncheckedCreateWithoutActorGroupInputObjectSchema, NotificationUncheckedCreateWithoutActorGroupInputObjectSchema.array()]).optional(), - connectOrCreate: z.union([NotificationCreateOrConnectWithoutActorGroupInputObjectSchema, NotificationCreateOrConnectWithoutActorGroupInputObjectSchema.array()]).optional(), - get createMany(){ return NotificationCreateManyActorGroupInputEnvelopeObjectSchema.optional(); }, - connect: z.union([NotificationWhereUniqueInputObjectSchema, NotificationWhereUniqueInputObjectSchema.array()]).optional() -}).strict(); -export const NotificationUncheckedCreateNestedManyWithoutActorGroupInputObjectSchema: z.ZodType = z.lazy(__makeSchema_NotificationUncheckedCreateNestedManyWithoutActorGroupInput_schema) as unknown as z.ZodType; -export const NotificationUncheckedCreateNestedManyWithoutActorGroupInputObjectZodSchema = z.lazy(__makeSchema_NotificationUncheckedCreateNestedManyWithoutActorGroupInput_schema); - - -// File: BoolFieldUpdateOperationsInput.schema.ts -const __makeSchema_BoolFieldUpdateOperationsInput_schema = () => z.object({ - set: z.boolean().optional() -}).strict(); -export const BoolFieldUpdateOperationsInputObjectSchema: z.ZodType = z.lazy(__makeSchema_BoolFieldUpdateOperationsInput_schema) as unknown as z.ZodType; -export const BoolFieldUpdateOperationsInputObjectZodSchema = z.lazy(__makeSchema_BoolFieldUpdateOperationsInput_schema); - - -// File: EnumGroupMemberVisibilityFieldUpdateOperationsInput.schema.ts -const __makeSchema_EnumGroupMemberVisibilityFieldUpdateOperationsInput_schema = () => z.object({ - set: GroupMemberVisibilitySchema.optional() -}).strict(); -export const EnumGroupMemberVisibilityFieldUpdateOperationsInputObjectSchema: z.ZodType = z.lazy(__makeSchema_EnumGroupMemberVisibilityFieldUpdateOperationsInput_schema) as unknown as z.ZodType; -export const EnumGroupMemberVisibilityFieldUpdateOperationsInputObjectZodSchema = z.lazy(__makeSchema_EnumGroupMemberVisibilityFieldUpdateOperationsInput_schema); - - -// File: EnumGroupRecruitmentMethodFieldUpdateOperationsInput.schema.ts -const __makeSchema_EnumGroupRecruitmentMethodFieldUpdateOperationsInput_schema = () => z.object({ - set: GroupRecruitmentMethodSchema.optional() -}).strict(); -export const EnumGroupRecruitmentMethodFieldUpdateOperationsInputObjectSchema: z.ZodType = z.lazy(__makeSchema_EnumGroupRecruitmentMethodFieldUpdateOperationsInput_schema) as unknown as z.ZodType; -export const EnumGroupRecruitmentMethodFieldUpdateOperationsInputObjectZodSchema = z.lazy(__makeSchema_EnumGroupRecruitmentMethodFieldUpdateOperationsInput_schema); - - -// File: EnumGroupTypeFieldUpdateOperationsInput.schema.ts -const __makeSchema_EnumGroupTypeFieldUpdateOperationsInput_schema = () => z.object({ - set: GroupTypeSchema.optional() -}).strict(); -export const EnumGroupTypeFieldUpdateOperationsInputObjectSchema: z.ZodType = z.lazy(__makeSchema_EnumGroupTypeFieldUpdateOperationsInput_schema) as unknown as z.ZodType; -export const EnumGroupTypeFieldUpdateOperationsInputObjectZodSchema = z.lazy(__makeSchema_EnumGroupTypeFieldUpdateOperationsInput_schema); - - -// File: EventHostingGroupUpdateManyWithoutGroupNestedInput.schema.ts -const __makeSchema_EventHostingGroupUpdateManyWithoutGroupNestedInput_schema = () => z.object({ - create: z.union([EventHostingGroupCreateWithoutGroupInputObjectSchema, EventHostingGroupCreateWithoutGroupInputObjectSchema.array(), EventHostingGroupUncheckedCreateWithoutGroupInputObjectSchema, EventHostingGroupUncheckedCreateWithoutGroupInputObjectSchema.array()]).optional(), - connectOrCreate: z.union([EventHostingGroupCreateOrConnectWithoutGroupInputObjectSchema, EventHostingGroupCreateOrConnectWithoutGroupInputObjectSchema.array()]).optional(), - upsert: z.union([EventHostingGroupUpsertWithWhereUniqueWithoutGroupInputObjectSchema, EventHostingGroupUpsertWithWhereUniqueWithoutGroupInputObjectSchema.array()]).optional(), - get createMany(){ return EventHostingGroupCreateManyGroupInputEnvelopeObjectSchema.optional(); }, - set: z.union([EventHostingGroupWhereUniqueInputObjectSchema, EventHostingGroupWhereUniqueInputObjectSchema.array()]).optional(), - disconnect: z.union([EventHostingGroupWhereUniqueInputObjectSchema, EventHostingGroupWhereUniqueInputObjectSchema.array()]).optional(), - delete: z.union([EventHostingGroupWhereUniqueInputObjectSchema, EventHostingGroupWhereUniqueInputObjectSchema.array()]).optional(), - connect: z.union([EventHostingGroupWhereUniqueInputObjectSchema, EventHostingGroupWhereUniqueInputObjectSchema.array()]).optional(), - update: z.union([EventHostingGroupUpdateWithWhereUniqueWithoutGroupInputObjectSchema, EventHostingGroupUpdateWithWhereUniqueWithoutGroupInputObjectSchema.array()]).optional(), - updateMany: z.union([EventHostingGroupUpdateManyWithWhereWithoutGroupInputObjectSchema, EventHostingGroupUpdateManyWithWhereWithoutGroupInputObjectSchema.array()]).optional(), - deleteMany: z.union([EventHostingGroupScalarWhereInputObjectSchema, EventHostingGroupScalarWhereInputObjectSchema.array()]).optional() -}).strict(); -export const EventHostingGroupUpdateManyWithoutGroupNestedInputObjectSchema: z.ZodType = z.lazy(__makeSchema_EventHostingGroupUpdateManyWithoutGroupNestedInput_schema) as unknown as z.ZodType; -export const EventHostingGroupUpdateManyWithoutGroupNestedInputObjectZodSchema = z.lazy(__makeSchema_EventHostingGroupUpdateManyWithoutGroupNestedInput_schema); - - -// File: ContestUpdateManyWithoutGroupsNestedInput.schema.ts -const __makeSchema_ContestUpdateManyWithoutGroupsNestedInput_schema = () => z.object({ - create: z.union([ContestCreateWithoutGroupsInputObjectSchema, ContestCreateWithoutGroupsInputObjectSchema.array(), ContestUncheckedCreateWithoutGroupsInputObjectSchema, ContestUncheckedCreateWithoutGroupsInputObjectSchema.array()]).optional(), - connectOrCreate: z.union([ContestCreateOrConnectWithoutGroupsInputObjectSchema, ContestCreateOrConnectWithoutGroupsInputObjectSchema.array()]).optional(), - upsert: z.union([ContestUpsertWithWhereUniqueWithoutGroupsInputObjectSchema, ContestUpsertWithWhereUniqueWithoutGroupsInputObjectSchema.array()]).optional(), - set: z.union([ContestWhereUniqueInputObjectSchema, ContestWhereUniqueInputObjectSchema.array()]).optional(), - disconnect: z.union([ContestWhereUniqueInputObjectSchema, ContestWhereUniqueInputObjectSchema.array()]).optional(), - delete: z.union([ContestWhereUniqueInputObjectSchema, ContestWhereUniqueInputObjectSchema.array()]).optional(), - connect: z.union([ContestWhereUniqueInputObjectSchema, ContestWhereUniqueInputObjectSchema.array()]).optional(), - update: z.union([ContestUpdateWithWhereUniqueWithoutGroupsInputObjectSchema, ContestUpdateWithWhereUniqueWithoutGroupsInputObjectSchema.array()]).optional(), - updateMany: z.union([ContestUpdateManyWithWhereWithoutGroupsInputObjectSchema, ContestUpdateManyWithWhereWithoutGroupsInputObjectSchema.array()]).optional(), - deleteMany: z.union([ContestScalarWhereInputObjectSchema, ContestScalarWhereInputObjectSchema.array()]).optional() -}).strict(); -export const ContestUpdateManyWithoutGroupsNestedInputObjectSchema: z.ZodType = z.lazy(__makeSchema_ContestUpdateManyWithoutGroupsNestedInput_schema) as unknown as z.ZodType; -export const ContestUpdateManyWithoutGroupsNestedInputObjectZodSchema = z.lazy(__makeSchema_ContestUpdateManyWithoutGroupsNestedInput_schema); - - -// File: GroupMembershipUpdateManyWithoutGroupNestedInput.schema.ts -const __makeSchema_GroupMembershipUpdateManyWithoutGroupNestedInput_schema = () => z.object({ - create: z.union([GroupMembershipCreateWithoutGroupInputObjectSchema, GroupMembershipCreateWithoutGroupInputObjectSchema.array(), GroupMembershipUncheckedCreateWithoutGroupInputObjectSchema, GroupMembershipUncheckedCreateWithoutGroupInputObjectSchema.array()]).optional(), - connectOrCreate: z.union([GroupMembershipCreateOrConnectWithoutGroupInputObjectSchema, GroupMembershipCreateOrConnectWithoutGroupInputObjectSchema.array()]).optional(), - upsert: z.union([GroupMembershipUpsertWithWhereUniqueWithoutGroupInputObjectSchema, GroupMembershipUpsertWithWhereUniqueWithoutGroupInputObjectSchema.array()]).optional(), - get createMany(){ return GroupMembershipCreateManyGroupInputEnvelopeObjectSchema.optional(); }, - set: z.union([GroupMembershipWhereUniqueInputObjectSchema, GroupMembershipWhereUniqueInputObjectSchema.array()]).optional(), - disconnect: z.union([GroupMembershipWhereUniqueInputObjectSchema, GroupMembershipWhereUniqueInputObjectSchema.array()]).optional(), - delete: z.union([GroupMembershipWhereUniqueInputObjectSchema, GroupMembershipWhereUniqueInputObjectSchema.array()]).optional(), - connect: z.union([GroupMembershipWhereUniqueInputObjectSchema, GroupMembershipWhereUniqueInputObjectSchema.array()]).optional(), - update: z.union([GroupMembershipUpdateWithWhereUniqueWithoutGroupInputObjectSchema, GroupMembershipUpdateWithWhereUniqueWithoutGroupInputObjectSchema.array()]).optional(), - updateMany: z.union([GroupMembershipUpdateManyWithWhereWithoutGroupInputObjectSchema, GroupMembershipUpdateManyWithWhereWithoutGroupInputObjectSchema.array()]).optional(), - deleteMany: z.union([GroupMembershipScalarWhereInputObjectSchema, GroupMembershipScalarWhereInputObjectSchema.array()]).optional() -}).strict(); -export const GroupMembershipUpdateManyWithoutGroupNestedInputObjectSchema: z.ZodType = z.lazy(__makeSchema_GroupMembershipUpdateManyWithoutGroupNestedInput_schema) as unknown as z.ZodType; -export const GroupMembershipUpdateManyWithoutGroupNestedInputObjectZodSchema = z.lazy(__makeSchema_GroupMembershipUpdateManyWithoutGroupNestedInput_schema); - - -// File: MarkGroupUpdateManyWithoutGroupNestedInput.schema.ts -const __makeSchema_MarkGroupUpdateManyWithoutGroupNestedInput_schema = () => z.object({ - create: z.union([MarkGroupCreateWithoutGroupInputObjectSchema, MarkGroupCreateWithoutGroupInputObjectSchema.array(), MarkGroupUncheckedCreateWithoutGroupInputObjectSchema, MarkGroupUncheckedCreateWithoutGroupInputObjectSchema.array()]).optional(), - connectOrCreate: z.union([MarkGroupCreateOrConnectWithoutGroupInputObjectSchema, MarkGroupCreateOrConnectWithoutGroupInputObjectSchema.array()]).optional(), - upsert: z.union([MarkGroupUpsertWithWhereUniqueWithoutGroupInputObjectSchema, MarkGroupUpsertWithWhereUniqueWithoutGroupInputObjectSchema.array()]).optional(), - get createMany(){ return MarkGroupCreateManyGroupInputEnvelopeObjectSchema.optional(); }, - set: z.union([MarkGroupWhereUniqueInputObjectSchema, MarkGroupWhereUniqueInputObjectSchema.array()]).optional(), - disconnect: z.union([MarkGroupWhereUniqueInputObjectSchema, MarkGroupWhereUniqueInputObjectSchema.array()]).optional(), - delete: z.union([MarkGroupWhereUniqueInputObjectSchema, MarkGroupWhereUniqueInputObjectSchema.array()]).optional(), - connect: z.union([MarkGroupWhereUniqueInputObjectSchema, MarkGroupWhereUniqueInputObjectSchema.array()]).optional(), - update: z.union([MarkGroupUpdateWithWhereUniqueWithoutGroupInputObjectSchema, MarkGroupUpdateWithWhereUniqueWithoutGroupInputObjectSchema.array()]).optional(), - updateMany: z.union([MarkGroupUpdateManyWithWhereWithoutGroupInputObjectSchema, MarkGroupUpdateManyWithWhereWithoutGroupInputObjectSchema.array()]).optional(), - deleteMany: z.union([MarkGroupScalarWhereInputObjectSchema, MarkGroupScalarWhereInputObjectSchema.array()]).optional() -}).strict(); -export const MarkGroupUpdateManyWithoutGroupNestedInputObjectSchema: z.ZodType = z.lazy(__makeSchema_MarkGroupUpdateManyWithoutGroupNestedInput_schema) as unknown as z.ZodType; -export const MarkGroupUpdateManyWithoutGroupNestedInputObjectZodSchema = z.lazy(__makeSchema_MarkGroupUpdateManyWithoutGroupNestedInput_schema); - - -// File: GroupRoleUpdateManyWithoutGroupNestedInput.schema.ts -const __makeSchema_GroupRoleUpdateManyWithoutGroupNestedInput_schema = () => z.object({ - create: z.union([GroupRoleCreateWithoutGroupInputObjectSchema, GroupRoleCreateWithoutGroupInputObjectSchema.array(), GroupRoleUncheckedCreateWithoutGroupInputObjectSchema, GroupRoleUncheckedCreateWithoutGroupInputObjectSchema.array()]).optional(), - connectOrCreate: z.union([GroupRoleCreateOrConnectWithoutGroupInputObjectSchema, GroupRoleCreateOrConnectWithoutGroupInputObjectSchema.array()]).optional(), - upsert: z.union([GroupRoleUpsertWithWhereUniqueWithoutGroupInputObjectSchema, GroupRoleUpsertWithWhereUniqueWithoutGroupInputObjectSchema.array()]).optional(), - get createMany(){ return GroupRoleCreateManyGroupInputEnvelopeObjectSchema.optional(); }, - set: z.union([GroupRoleWhereUniqueInputObjectSchema, GroupRoleWhereUniqueInputObjectSchema.array()]).optional(), - disconnect: z.union([GroupRoleWhereUniqueInputObjectSchema, GroupRoleWhereUniqueInputObjectSchema.array()]).optional(), - delete: z.union([GroupRoleWhereUniqueInputObjectSchema, GroupRoleWhereUniqueInputObjectSchema.array()]).optional(), - connect: z.union([GroupRoleWhereUniqueInputObjectSchema, GroupRoleWhereUniqueInputObjectSchema.array()]).optional(), - update: z.union([GroupRoleUpdateWithWhereUniqueWithoutGroupInputObjectSchema, GroupRoleUpdateWithWhereUniqueWithoutGroupInputObjectSchema.array()]).optional(), - updateMany: z.union([GroupRoleUpdateManyWithWhereWithoutGroupInputObjectSchema, GroupRoleUpdateManyWithWhereWithoutGroupInputObjectSchema.array()]).optional(), - deleteMany: z.union([GroupRoleScalarWhereInputObjectSchema, GroupRoleScalarWhereInputObjectSchema.array()]).optional() -}).strict(); -export const GroupRoleUpdateManyWithoutGroupNestedInputObjectSchema: z.ZodType = z.lazy(__makeSchema_GroupRoleUpdateManyWithoutGroupNestedInput_schema) as unknown as z.ZodType; -export const GroupRoleUpdateManyWithoutGroupNestedInputObjectZodSchema = z.lazy(__makeSchema_GroupRoleUpdateManyWithoutGroupNestedInput_schema); - - -// File: NotificationUpdateManyWithoutActorGroupNestedInput.schema.ts -const __makeSchema_NotificationUpdateManyWithoutActorGroupNestedInput_schema = () => z.object({ - create: z.union([NotificationCreateWithoutActorGroupInputObjectSchema, NotificationCreateWithoutActorGroupInputObjectSchema.array(), NotificationUncheckedCreateWithoutActorGroupInputObjectSchema, NotificationUncheckedCreateWithoutActorGroupInputObjectSchema.array()]).optional(), - connectOrCreate: z.union([NotificationCreateOrConnectWithoutActorGroupInputObjectSchema, NotificationCreateOrConnectWithoutActorGroupInputObjectSchema.array()]).optional(), - upsert: z.union([NotificationUpsertWithWhereUniqueWithoutActorGroupInputObjectSchema, NotificationUpsertWithWhereUniqueWithoutActorGroupInputObjectSchema.array()]).optional(), - get createMany(){ return NotificationCreateManyActorGroupInputEnvelopeObjectSchema.optional(); }, - set: z.union([NotificationWhereUniqueInputObjectSchema, NotificationWhereUniqueInputObjectSchema.array()]).optional(), - disconnect: z.union([NotificationWhereUniqueInputObjectSchema, NotificationWhereUniqueInputObjectSchema.array()]).optional(), - delete: z.union([NotificationWhereUniqueInputObjectSchema, NotificationWhereUniqueInputObjectSchema.array()]).optional(), - connect: z.union([NotificationWhereUniqueInputObjectSchema, NotificationWhereUniqueInputObjectSchema.array()]).optional(), - update: z.union([NotificationUpdateWithWhereUniqueWithoutActorGroupInputObjectSchema, NotificationUpdateWithWhereUniqueWithoutActorGroupInputObjectSchema.array()]).optional(), - updateMany: z.union([NotificationUpdateManyWithWhereWithoutActorGroupInputObjectSchema, NotificationUpdateManyWithWhereWithoutActorGroupInputObjectSchema.array()]).optional(), - deleteMany: z.union([NotificationScalarWhereInputObjectSchema, NotificationScalarWhereInputObjectSchema.array()]).optional() -}).strict(); -export const NotificationUpdateManyWithoutActorGroupNestedInputObjectSchema: z.ZodType = z.lazy(__makeSchema_NotificationUpdateManyWithoutActorGroupNestedInput_schema) as unknown as z.ZodType; -export const NotificationUpdateManyWithoutActorGroupNestedInputObjectZodSchema = z.lazy(__makeSchema_NotificationUpdateManyWithoutActorGroupNestedInput_schema); - - -// File: EventHostingGroupUncheckedUpdateManyWithoutGroupNestedInput.schema.ts -const __makeSchema_EventHostingGroupUncheckedUpdateManyWithoutGroupNestedInput_schema = () => z.object({ - create: z.union([EventHostingGroupCreateWithoutGroupInputObjectSchema, EventHostingGroupCreateWithoutGroupInputObjectSchema.array(), EventHostingGroupUncheckedCreateWithoutGroupInputObjectSchema, EventHostingGroupUncheckedCreateWithoutGroupInputObjectSchema.array()]).optional(), - connectOrCreate: z.union([EventHostingGroupCreateOrConnectWithoutGroupInputObjectSchema, EventHostingGroupCreateOrConnectWithoutGroupInputObjectSchema.array()]).optional(), - upsert: z.union([EventHostingGroupUpsertWithWhereUniqueWithoutGroupInputObjectSchema, EventHostingGroupUpsertWithWhereUniqueWithoutGroupInputObjectSchema.array()]).optional(), - get createMany(){ return EventHostingGroupCreateManyGroupInputEnvelopeObjectSchema.optional(); }, - set: z.union([EventHostingGroupWhereUniqueInputObjectSchema, EventHostingGroupWhereUniqueInputObjectSchema.array()]).optional(), - disconnect: z.union([EventHostingGroupWhereUniqueInputObjectSchema, EventHostingGroupWhereUniqueInputObjectSchema.array()]).optional(), - delete: z.union([EventHostingGroupWhereUniqueInputObjectSchema, EventHostingGroupWhereUniqueInputObjectSchema.array()]).optional(), - connect: z.union([EventHostingGroupWhereUniqueInputObjectSchema, EventHostingGroupWhereUniqueInputObjectSchema.array()]).optional(), - update: z.union([EventHostingGroupUpdateWithWhereUniqueWithoutGroupInputObjectSchema, EventHostingGroupUpdateWithWhereUniqueWithoutGroupInputObjectSchema.array()]).optional(), - updateMany: z.union([EventHostingGroupUpdateManyWithWhereWithoutGroupInputObjectSchema, EventHostingGroupUpdateManyWithWhereWithoutGroupInputObjectSchema.array()]).optional(), - deleteMany: z.union([EventHostingGroupScalarWhereInputObjectSchema, EventHostingGroupScalarWhereInputObjectSchema.array()]).optional() -}).strict(); -export const EventHostingGroupUncheckedUpdateManyWithoutGroupNestedInputObjectSchema: z.ZodType = z.lazy(__makeSchema_EventHostingGroupUncheckedUpdateManyWithoutGroupNestedInput_schema) as unknown as z.ZodType; -export const EventHostingGroupUncheckedUpdateManyWithoutGroupNestedInputObjectZodSchema = z.lazy(__makeSchema_EventHostingGroupUncheckedUpdateManyWithoutGroupNestedInput_schema); - - -// File: ContestUncheckedUpdateManyWithoutGroupsNestedInput.schema.ts -const __makeSchema_ContestUncheckedUpdateManyWithoutGroupsNestedInput_schema = () => z.object({ - create: z.union([ContestCreateWithoutGroupsInputObjectSchema, ContestCreateWithoutGroupsInputObjectSchema.array(), ContestUncheckedCreateWithoutGroupsInputObjectSchema, ContestUncheckedCreateWithoutGroupsInputObjectSchema.array()]).optional(), - connectOrCreate: z.union([ContestCreateOrConnectWithoutGroupsInputObjectSchema, ContestCreateOrConnectWithoutGroupsInputObjectSchema.array()]).optional(), - upsert: z.union([ContestUpsertWithWhereUniqueWithoutGroupsInputObjectSchema, ContestUpsertWithWhereUniqueWithoutGroupsInputObjectSchema.array()]).optional(), - set: z.union([ContestWhereUniqueInputObjectSchema, ContestWhereUniqueInputObjectSchema.array()]).optional(), - disconnect: z.union([ContestWhereUniqueInputObjectSchema, ContestWhereUniqueInputObjectSchema.array()]).optional(), - delete: z.union([ContestWhereUniqueInputObjectSchema, ContestWhereUniqueInputObjectSchema.array()]).optional(), - connect: z.union([ContestWhereUniqueInputObjectSchema, ContestWhereUniqueInputObjectSchema.array()]).optional(), - update: z.union([ContestUpdateWithWhereUniqueWithoutGroupsInputObjectSchema, ContestUpdateWithWhereUniqueWithoutGroupsInputObjectSchema.array()]).optional(), - updateMany: z.union([ContestUpdateManyWithWhereWithoutGroupsInputObjectSchema, ContestUpdateManyWithWhereWithoutGroupsInputObjectSchema.array()]).optional(), - deleteMany: z.union([ContestScalarWhereInputObjectSchema, ContestScalarWhereInputObjectSchema.array()]).optional() -}).strict(); -export const ContestUncheckedUpdateManyWithoutGroupsNestedInputObjectSchema: z.ZodType = z.lazy(__makeSchema_ContestUncheckedUpdateManyWithoutGroupsNestedInput_schema) as unknown as z.ZodType; -export const ContestUncheckedUpdateManyWithoutGroupsNestedInputObjectZodSchema = z.lazy(__makeSchema_ContestUncheckedUpdateManyWithoutGroupsNestedInput_schema); - - -// File: GroupMembershipUncheckedUpdateManyWithoutGroupNestedInput.schema.ts -const __makeSchema_GroupMembershipUncheckedUpdateManyWithoutGroupNestedInput_schema = () => z.object({ - create: z.union([GroupMembershipCreateWithoutGroupInputObjectSchema, GroupMembershipCreateWithoutGroupInputObjectSchema.array(), GroupMembershipUncheckedCreateWithoutGroupInputObjectSchema, GroupMembershipUncheckedCreateWithoutGroupInputObjectSchema.array()]).optional(), - connectOrCreate: z.union([GroupMembershipCreateOrConnectWithoutGroupInputObjectSchema, GroupMembershipCreateOrConnectWithoutGroupInputObjectSchema.array()]).optional(), - upsert: z.union([GroupMembershipUpsertWithWhereUniqueWithoutGroupInputObjectSchema, GroupMembershipUpsertWithWhereUniqueWithoutGroupInputObjectSchema.array()]).optional(), - get createMany(){ return GroupMembershipCreateManyGroupInputEnvelopeObjectSchema.optional(); }, - set: z.union([GroupMembershipWhereUniqueInputObjectSchema, GroupMembershipWhereUniqueInputObjectSchema.array()]).optional(), - disconnect: z.union([GroupMembershipWhereUniqueInputObjectSchema, GroupMembershipWhereUniqueInputObjectSchema.array()]).optional(), - delete: z.union([GroupMembershipWhereUniqueInputObjectSchema, GroupMembershipWhereUniqueInputObjectSchema.array()]).optional(), - connect: z.union([GroupMembershipWhereUniqueInputObjectSchema, GroupMembershipWhereUniqueInputObjectSchema.array()]).optional(), - update: z.union([GroupMembershipUpdateWithWhereUniqueWithoutGroupInputObjectSchema, GroupMembershipUpdateWithWhereUniqueWithoutGroupInputObjectSchema.array()]).optional(), - updateMany: z.union([GroupMembershipUpdateManyWithWhereWithoutGroupInputObjectSchema, GroupMembershipUpdateManyWithWhereWithoutGroupInputObjectSchema.array()]).optional(), - deleteMany: z.union([GroupMembershipScalarWhereInputObjectSchema, GroupMembershipScalarWhereInputObjectSchema.array()]).optional() -}).strict(); -export const GroupMembershipUncheckedUpdateManyWithoutGroupNestedInputObjectSchema: z.ZodType = z.lazy(__makeSchema_GroupMembershipUncheckedUpdateManyWithoutGroupNestedInput_schema) as unknown as z.ZodType; -export const GroupMembershipUncheckedUpdateManyWithoutGroupNestedInputObjectZodSchema = z.lazy(__makeSchema_GroupMembershipUncheckedUpdateManyWithoutGroupNestedInput_schema); - - -// File: MarkGroupUncheckedUpdateManyWithoutGroupNestedInput.schema.ts -const __makeSchema_MarkGroupUncheckedUpdateManyWithoutGroupNestedInput_schema = () => z.object({ - create: z.union([MarkGroupCreateWithoutGroupInputObjectSchema, MarkGroupCreateWithoutGroupInputObjectSchema.array(), MarkGroupUncheckedCreateWithoutGroupInputObjectSchema, MarkGroupUncheckedCreateWithoutGroupInputObjectSchema.array()]).optional(), - connectOrCreate: z.union([MarkGroupCreateOrConnectWithoutGroupInputObjectSchema, MarkGroupCreateOrConnectWithoutGroupInputObjectSchema.array()]).optional(), - upsert: z.union([MarkGroupUpsertWithWhereUniqueWithoutGroupInputObjectSchema, MarkGroupUpsertWithWhereUniqueWithoutGroupInputObjectSchema.array()]).optional(), - get createMany(){ return MarkGroupCreateManyGroupInputEnvelopeObjectSchema.optional(); }, - set: z.union([MarkGroupWhereUniqueInputObjectSchema, MarkGroupWhereUniqueInputObjectSchema.array()]).optional(), - disconnect: z.union([MarkGroupWhereUniqueInputObjectSchema, MarkGroupWhereUniqueInputObjectSchema.array()]).optional(), - delete: z.union([MarkGroupWhereUniqueInputObjectSchema, MarkGroupWhereUniqueInputObjectSchema.array()]).optional(), - connect: z.union([MarkGroupWhereUniqueInputObjectSchema, MarkGroupWhereUniqueInputObjectSchema.array()]).optional(), - update: z.union([MarkGroupUpdateWithWhereUniqueWithoutGroupInputObjectSchema, MarkGroupUpdateWithWhereUniqueWithoutGroupInputObjectSchema.array()]).optional(), - updateMany: z.union([MarkGroupUpdateManyWithWhereWithoutGroupInputObjectSchema, MarkGroupUpdateManyWithWhereWithoutGroupInputObjectSchema.array()]).optional(), - deleteMany: z.union([MarkGroupScalarWhereInputObjectSchema, MarkGroupScalarWhereInputObjectSchema.array()]).optional() -}).strict(); -export const MarkGroupUncheckedUpdateManyWithoutGroupNestedInputObjectSchema: z.ZodType = z.lazy(__makeSchema_MarkGroupUncheckedUpdateManyWithoutGroupNestedInput_schema) as unknown as z.ZodType; -export const MarkGroupUncheckedUpdateManyWithoutGroupNestedInputObjectZodSchema = z.lazy(__makeSchema_MarkGroupUncheckedUpdateManyWithoutGroupNestedInput_schema); - - -// File: GroupRoleUncheckedUpdateManyWithoutGroupNestedInput.schema.ts -const __makeSchema_GroupRoleUncheckedUpdateManyWithoutGroupNestedInput_schema = () => z.object({ - create: z.union([GroupRoleCreateWithoutGroupInputObjectSchema, GroupRoleCreateWithoutGroupInputObjectSchema.array(), GroupRoleUncheckedCreateWithoutGroupInputObjectSchema, GroupRoleUncheckedCreateWithoutGroupInputObjectSchema.array()]).optional(), - connectOrCreate: z.union([GroupRoleCreateOrConnectWithoutGroupInputObjectSchema, GroupRoleCreateOrConnectWithoutGroupInputObjectSchema.array()]).optional(), - upsert: z.union([GroupRoleUpsertWithWhereUniqueWithoutGroupInputObjectSchema, GroupRoleUpsertWithWhereUniqueWithoutGroupInputObjectSchema.array()]).optional(), - get createMany(){ return GroupRoleCreateManyGroupInputEnvelopeObjectSchema.optional(); }, - set: z.union([GroupRoleWhereUniqueInputObjectSchema, GroupRoleWhereUniqueInputObjectSchema.array()]).optional(), - disconnect: z.union([GroupRoleWhereUniqueInputObjectSchema, GroupRoleWhereUniqueInputObjectSchema.array()]).optional(), - delete: z.union([GroupRoleWhereUniqueInputObjectSchema, GroupRoleWhereUniqueInputObjectSchema.array()]).optional(), - connect: z.union([GroupRoleWhereUniqueInputObjectSchema, GroupRoleWhereUniqueInputObjectSchema.array()]).optional(), - update: z.union([GroupRoleUpdateWithWhereUniqueWithoutGroupInputObjectSchema, GroupRoleUpdateWithWhereUniqueWithoutGroupInputObjectSchema.array()]).optional(), - updateMany: z.union([GroupRoleUpdateManyWithWhereWithoutGroupInputObjectSchema, GroupRoleUpdateManyWithWhereWithoutGroupInputObjectSchema.array()]).optional(), - deleteMany: z.union([GroupRoleScalarWhereInputObjectSchema, GroupRoleScalarWhereInputObjectSchema.array()]).optional() -}).strict(); -export const GroupRoleUncheckedUpdateManyWithoutGroupNestedInputObjectSchema: z.ZodType = z.lazy(__makeSchema_GroupRoleUncheckedUpdateManyWithoutGroupNestedInput_schema) as unknown as z.ZodType; -export const GroupRoleUncheckedUpdateManyWithoutGroupNestedInputObjectZodSchema = z.lazy(__makeSchema_GroupRoleUncheckedUpdateManyWithoutGroupNestedInput_schema); - - -// File: NotificationUncheckedUpdateManyWithoutActorGroupNestedInput.schema.ts -const __makeSchema_NotificationUncheckedUpdateManyWithoutActorGroupNestedInput_schema = () => z.object({ - create: z.union([NotificationCreateWithoutActorGroupInputObjectSchema, NotificationCreateWithoutActorGroupInputObjectSchema.array(), NotificationUncheckedCreateWithoutActorGroupInputObjectSchema, NotificationUncheckedCreateWithoutActorGroupInputObjectSchema.array()]).optional(), - connectOrCreate: z.union([NotificationCreateOrConnectWithoutActorGroupInputObjectSchema, NotificationCreateOrConnectWithoutActorGroupInputObjectSchema.array()]).optional(), - upsert: z.union([NotificationUpsertWithWhereUniqueWithoutActorGroupInputObjectSchema, NotificationUpsertWithWhereUniqueWithoutActorGroupInputObjectSchema.array()]).optional(), - get createMany(){ return NotificationCreateManyActorGroupInputEnvelopeObjectSchema.optional(); }, - set: z.union([NotificationWhereUniqueInputObjectSchema, NotificationWhereUniqueInputObjectSchema.array()]).optional(), - disconnect: z.union([NotificationWhereUniqueInputObjectSchema, NotificationWhereUniqueInputObjectSchema.array()]).optional(), - delete: z.union([NotificationWhereUniqueInputObjectSchema, NotificationWhereUniqueInputObjectSchema.array()]).optional(), - connect: z.union([NotificationWhereUniqueInputObjectSchema, NotificationWhereUniqueInputObjectSchema.array()]).optional(), - update: z.union([NotificationUpdateWithWhereUniqueWithoutActorGroupInputObjectSchema, NotificationUpdateWithWhereUniqueWithoutActorGroupInputObjectSchema.array()]).optional(), - updateMany: z.union([NotificationUpdateManyWithWhereWithoutActorGroupInputObjectSchema, NotificationUpdateManyWithWhereWithoutActorGroupInputObjectSchema.array()]).optional(), - deleteMany: z.union([NotificationScalarWhereInputObjectSchema, NotificationScalarWhereInputObjectSchema.array()]).optional() -}).strict(); -export const NotificationUncheckedUpdateManyWithoutActorGroupNestedInputObjectSchema: z.ZodType = z.lazy(__makeSchema_NotificationUncheckedUpdateManyWithoutActorGroupNestedInput_schema) as unknown as z.ZodType; -export const NotificationUncheckedUpdateManyWithoutActorGroupNestedInputObjectZodSchema = z.lazy(__makeSchema_NotificationUncheckedUpdateManyWithoutActorGroupNestedInput_schema); - - -// File: GroupCreateNestedOneWithoutMembershipsInput.schema.ts -const __makeSchema_GroupCreateNestedOneWithoutMembershipsInput_schema = () => z.object({ - create: z.union([GroupCreateWithoutMembershipsInputObjectSchema, GroupUncheckedCreateWithoutMembershipsInputObjectSchema]).optional(), - get connectOrCreate(){ return GroupCreateOrConnectWithoutMembershipsInputObjectSchema.optional(); }, - get connect(){ return GroupWhereUniqueInputObjectSchema.optional(); } -}).strict(); -export const GroupCreateNestedOneWithoutMembershipsInputObjectSchema: z.ZodType = z.lazy(__makeSchema_GroupCreateNestedOneWithoutMembershipsInput_schema) as unknown as z.ZodType; -export const GroupCreateNestedOneWithoutMembershipsInputObjectZodSchema = z.lazy(__makeSchema_GroupCreateNestedOneWithoutMembershipsInput_schema); - - -// File: UserCreateNestedOneWithoutGroupMembershipsInput.schema.ts -const __makeSchema_UserCreateNestedOneWithoutGroupMembershipsInput_schema = () => z.object({ - create: z.union([UserCreateWithoutGroupMembershipsInputObjectSchema, UserUncheckedCreateWithoutGroupMembershipsInputObjectSchema]).optional(), - get connectOrCreate(){ return UserCreateOrConnectWithoutGroupMembershipsInputObjectSchema.optional(); }, - get connect(){ return UserWhereUniqueInputObjectSchema.optional(); } -}).strict(); -export const UserCreateNestedOneWithoutGroupMembershipsInputObjectSchema: z.ZodType = z.lazy(__makeSchema_UserCreateNestedOneWithoutGroupMembershipsInput_schema) as unknown as z.ZodType; -export const UserCreateNestedOneWithoutGroupMembershipsInputObjectZodSchema = z.lazy(__makeSchema_UserCreateNestedOneWithoutGroupMembershipsInput_schema); - - -// File: GroupMembershipRoleCreateNestedManyWithoutMembershipInput.schema.ts -const __makeSchema_GroupMembershipRoleCreateNestedManyWithoutMembershipInput_schema = () => z.object({ - create: z.union([GroupMembershipRoleCreateWithoutMembershipInputObjectSchema, GroupMembershipRoleCreateWithoutMembershipInputObjectSchema.array(), GroupMembershipRoleUncheckedCreateWithoutMembershipInputObjectSchema, GroupMembershipRoleUncheckedCreateWithoutMembershipInputObjectSchema.array()]).optional(), - connectOrCreate: z.union([GroupMembershipRoleCreateOrConnectWithoutMembershipInputObjectSchema, GroupMembershipRoleCreateOrConnectWithoutMembershipInputObjectSchema.array()]).optional(), - get createMany(){ return GroupMembershipRoleCreateManyMembershipInputEnvelopeObjectSchema.optional(); }, - connect: z.union([GroupMembershipRoleWhereUniqueInputObjectSchema, GroupMembershipRoleWhereUniqueInputObjectSchema.array()]).optional() -}).strict(); -export const GroupMembershipRoleCreateNestedManyWithoutMembershipInputObjectSchema: z.ZodType = z.lazy(__makeSchema_GroupMembershipRoleCreateNestedManyWithoutMembershipInput_schema) as unknown as z.ZodType; -export const GroupMembershipRoleCreateNestedManyWithoutMembershipInputObjectZodSchema = z.lazy(__makeSchema_GroupMembershipRoleCreateNestedManyWithoutMembershipInput_schema); - - -// File: GroupMembershipRoleUncheckedCreateNestedManyWithoutMembershipInput.schema.ts -const __makeSchema_GroupMembershipRoleUncheckedCreateNestedManyWithoutMembershipInput_schema = () => z.object({ - create: z.union([GroupMembershipRoleCreateWithoutMembershipInputObjectSchema, GroupMembershipRoleCreateWithoutMembershipInputObjectSchema.array(), GroupMembershipRoleUncheckedCreateWithoutMembershipInputObjectSchema, GroupMembershipRoleUncheckedCreateWithoutMembershipInputObjectSchema.array()]).optional(), - connectOrCreate: z.union([GroupMembershipRoleCreateOrConnectWithoutMembershipInputObjectSchema, GroupMembershipRoleCreateOrConnectWithoutMembershipInputObjectSchema.array()]).optional(), - get createMany(){ return GroupMembershipRoleCreateManyMembershipInputEnvelopeObjectSchema.optional(); }, - connect: z.union([GroupMembershipRoleWhereUniqueInputObjectSchema, GroupMembershipRoleWhereUniqueInputObjectSchema.array()]).optional() -}).strict(); -export const GroupMembershipRoleUncheckedCreateNestedManyWithoutMembershipInputObjectSchema: z.ZodType = z.lazy(__makeSchema_GroupMembershipRoleUncheckedCreateNestedManyWithoutMembershipInput_schema) as unknown as z.ZodType; -export const GroupMembershipRoleUncheckedCreateNestedManyWithoutMembershipInputObjectZodSchema = z.lazy(__makeSchema_GroupMembershipRoleUncheckedCreateNestedManyWithoutMembershipInput_schema); - - -// File: GroupUpdateOneRequiredWithoutMembershipsNestedInput.schema.ts -const __makeSchema_GroupUpdateOneRequiredWithoutMembershipsNestedInput_schema = () => z.object({ - create: z.union([GroupCreateWithoutMembershipsInputObjectSchema, GroupUncheckedCreateWithoutMembershipsInputObjectSchema]).optional(), - get connectOrCreate(){ return GroupCreateOrConnectWithoutMembershipsInputObjectSchema.optional(); }, - get upsert(){ return GroupUpsertWithoutMembershipsInputObjectSchema.optional(); }, - get connect(){ return GroupWhereUniqueInputObjectSchema.optional(); }, - update: z.union([GroupUpdateToOneWithWhereWithoutMembershipsInputObjectSchema, GroupUpdateWithoutMembershipsInputObjectSchema, GroupUncheckedUpdateWithoutMembershipsInputObjectSchema]).optional() -}).strict(); -export const GroupUpdateOneRequiredWithoutMembershipsNestedInputObjectSchema: z.ZodType = z.lazy(__makeSchema_GroupUpdateOneRequiredWithoutMembershipsNestedInput_schema) as unknown as z.ZodType; -export const GroupUpdateOneRequiredWithoutMembershipsNestedInputObjectZodSchema = z.lazy(__makeSchema_GroupUpdateOneRequiredWithoutMembershipsNestedInput_schema); - - -// File: UserUpdateOneRequiredWithoutGroupMembershipsNestedInput.schema.ts -const __makeSchema_UserUpdateOneRequiredWithoutGroupMembershipsNestedInput_schema = () => z.object({ - create: z.union([UserCreateWithoutGroupMembershipsInputObjectSchema, UserUncheckedCreateWithoutGroupMembershipsInputObjectSchema]).optional(), - get connectOrCreate(){ return UserCreateOrConnectWithoutGroupMembershipsInputObjectSchema.optional(); }, - get upsert(){ return UserUpsertWithoutGroupMembershipsInputObjectSchema.optional(); }, - get connect(){ return UserWhereUniqueInputObjectSchema.optional(); }, - update: z.union([UserUpdateToOneWithWhereWithoutGroupMembershipsInputObjectSchema, UserUpdateWithoutGroupMembershipsInputObjectSchema, UserUncheckedUpdateWithoutGroupMembershipsInputObjectSchema]).optional() -}).strict(); -export const UserUpdateOneRequiredWithoutGroupMembershipsNestedInputObjectSchema: z.ZodType = z.lazy(__makeSchema_UserUpdateOneRequiredWithoutGroupMembershipsNestedInput_schema) as unknown as z.ZodType; -export const UserUpdateOneRequiredWithoutGroupMembershipsNestedInputObjectZodSchema = z.lazy(__makeSchema_UserUpdateOneRequiredWithoutGroupMembershipsNestedInput_schema); - - -// File: GroupMembershipRoleUpdateManyWithoutMembershipNestedInput.schema.ts -const __makeSchema_GroupMembershipRoleUpdateManyWithoutMembershipNestedInput_schema = () => z.object({ - create: z.union([GroupMembershipRoleCreateWithoutMembershipInputObjectSchema, GroupMembershipRoleCreateWithoutMembershipInputObjectSchema.array(), GroupMembershipRoleUncheckedCreateWithoutMembershipInputObjectSchema, GroupMembershipRoleUncheckedCreateWithoutMembershipInputObjectSchema.array()]).optional(), - connectOrCreate: z.union([GroupMembershipRoleCreateOrConnectWithoutMembershipInputObjectSchema, GroupMembershipRoleCreateOrConnectWithoutMembershipInputObjectSchema.array()]).optional(), - upsert: z.union([GroupMembershipRoleUpsertWithWhereUniqueWithoutMembershipInputObjectSchema, GroupMembershipRoleUpsertWithWhereUniqueWithoutMembershipInputObjectSchema.array()]).optional(), - get createMany(){ return GroupMembershipRoleCreateManyMembershipInputEnvelopeObjectSchema.optional(); }, - set: z.union([GroupMembershipRoleWhereUniqueInputObjectSchema, GroupMembershipRoleWhereUniqueInputObjectSchema.array()]).optional(), - disconnect: z.union([GroupMembershipRoleWhereUniqueInputObjectSchema, GroupMembershipRoleWhereUniqueInputObjectSchema.array()]).optional(), - delete: z.union([GroupMembershipRoleWhereUniqueInputObjectSchema, GroupMembershipRoleWhereUniqueInputObjectSchema.array()]).optional(), - connect: z.union([GroupMembershipRoleWhereUniqueInputObjectSchema, GroupMembershipRoleWhereUniqueInputObjectSchema.array()]).optional(), - update: z.union([GroupMembershipRoleUpdateWithWhereUniqueWithoutMembershipInputObjectSchema, GroupMembershipRoleUpdateWithWhereUniqueWithoutMembershipInputObjectSchema.array()]).optional(), - updateMany: z.union([GroupMembershipRoleUpdateManyWithWhereWithoutMembershipInputObjectSchema, GroupMembershipRoleUpdateManyWithWhereWithoutMembershipInputObjectSchema.array()]).optional(), - deleteMany: z.union([GroupMembershipRoleScalarWhereInputObjectSchema, GroupMembershipRoleScalarWhereInputObjectSchema.array()]).optional() -}).strict(); -export const GroupMembershipRoleUpdateManyWithoutMembershipNestedInputObjectSchema: z.ZodType = z.lazy(__makeSchema_GroupMembershipRoleUpdateManyWithoutMembershipNestedInput_schema) as unknown as z.ZodType; -export const GroupMembershipRoleUpdateManyWithoutMembershipNestedInputObjectZodSchema = z.lazy(__makeSchema_GroupMembershipRoleUpdateManyWithoutMembershipNestedInput_schema); - - -// File: GroupMembershipRoleUncheckedUpdateManyWithoutMembershipNestedInput.schema.ts -const __makeSchema_GroupMembershipRoleUncheckedUpdateManyWithoutMembershipNestedInput_schema = () => z.object({ - create: z.union([GroupMembershipRoleCreateWithoutMembershipInputObjectSchema, GroupMembershipRoleCreateWithoutMembershipInputObjectSchema.array(), GroupMembershipRoleUncheckedCreateWithoutMembershipInputObjectSchema, GroupMembershipRoleUncheckedCreateWithoutMembershipInputObjectSchema.array()]).optional(), - connectOrCreate: z.union([GroupMembershipRoleCreateOrConnectWithoutMembershipInputObjectSchema, GroupMembershipRoleCreateOrConnectWithoutMembershipInputObjectSchema.array()]).optional(), - upsert: z.union([GroupMembershipRoleUpsertWithWhereUniqueWithoutMembershipInputObjectSchema, GroupMembershipRoleUpsertWithWhereUniqueWithoutMembershipInputObjectSchema.array()]).optional(), - get createMany(){ return GroupMembershipRoleCreateManyMembershipInputEnvelopeObjectSchema.optional(); }, - set: z.union([GroupMembershipRoleWhereUniqueInputObjectSchema, GroupMembershipRoleWhereUniqueInputObjectSchema.array()]).optional(), - disconnect: z.union([GroupMembershipRoleWhereUniqueInputObjectSchema, GroupMembershipRoleWhereUniqueInputObjectSchema.array()]).optional(), - delete: z.union([GroupMembershipRoleWhereUniqueInputObjectSchema, GroupMembershipRoleWhereUniqueInputObjectSchema.array()]).optional(), - connect: z.union([GroupMembershipRoleWhereUniqueInputObjectSchema, GroupMembershipRoleWhereUniqueInputObjectSchema.array()]).optional(), - update: z.union([GroupMembershipRoleUpdateWithWhereUniqueWithoutMembershipInputObjectSchema, GroupMembershipRoleUpdateWithWhereUniqueWithoutMembershipInputObjectSchema.array()]).optional(), - updateMany: z.union([GroupMembershipRoleUpdateManyWithWhereWithoutMembershipInputObjectSchema, GroupMembershipRoleUpdateManyWithWhereWithoutMembershipInputObjectSchema.array()]).optional(), - deleteMany: z.union([GroupMembershipRoleScalarWhereInputObjectSchema, GroupMembershipRoleScalarWhereInputObjectSchema.array()]).optional() -}).strict(); -export const GroupMembershipRoleUncheckedUpdateManyWithoutMembershipNestedInputObjectSchema: z.ZodType = z.lazy(__makeSchema_GroupMembershipRoleUncheckedUpdateManyWithoutMembershipNestedInput_schema) as unknown as z.ZodType; -export const GroupMembershipRoleUncheckedUpdateManyWithoutMembershipNestedInputObjectZodSchema = z.lazy(__makeSchema_GroupMembershipRoleUncheckedUpdateManyWithoutMembershipNestedInput_schema); - - -// File: GroupMembershipCreateNestedOneWithoutRolesInput.schema.ts -const __makeSchema_GroupMembershipCreateNestedOneWithoutRolesInput_schema = () => z.object({ - create: z.union([GroupMembershipCreateWithoutRolesInputObjectSchema, GroupMembershipUncheckedCreateWithoutRolesInputObjectSchema]).optional(), - get connectOrCreate(){ return GroupMembershipCreateOrConnectWithoutRolesInputObjectSchema.optional(); }, - get connect(){ return GroupMembershipWhereUniqueInputObjectSchema.optional(); } -}).strict(); -export const GroupMembershipCreateNestedOneWithoutRolesInputObjectSchema: z.ZodType = z.lazy(__makeSchema_GroupMembershipCreateNestedOneWithoutRolesInput_schema) as unknown as z.ZodType; -export const GroupMembershipCreateNestedOneWithoutRolesInputObjectZodSchema = z.lazy(__makeSchema_GroupMembershipCreateNestedOneWithoutRolesInput_schema); - - -// File: GroupRoleCreateNestedOneWithoutGroupMembershipRolesInput.schema.ts -const __makeSchema_GroupRoleCreateNestedOneWithoutGroupMembershipRolesInput_schema = () => z.object({ - create: z.union([GroupRoleCreateWithoutGroupMembershipRolesInputObjectSchema, GroupRoleUncheckedCreateWithoutGroupMembershipRolesInputObjectSchema]).optional(), - get connectOrCreate(){ return GroupRoleCreateOrConnectWithoutGroupMembershipRolesInputObjectSchema.optional(); }, - get connect(){ return GroupRoleWhereUniqueInputObjectSchema.optional(); } -}).strict(); -export const GroupRoleCreateNestedOneWithoutGroupMembershipRolesInputObjectSchema: z.ZodType = z.lazy(__makeSchema_GroupRoleCreateNestedOneWithoutGroupMembershipRolesInput_schema) as unknown as z.ZodType; -export const GroupRoleCreateNestedOneWithoutGroupMembershipRolesInputObjectZodSchema = z.lazy(__makeSchema_GroupRoleCreateNestedOneWithoutGroupMembershipRolesInput_schema); - - -// File: GroupMembershipUpdateOneRequiredWithoutRolesNestedInput.schema.ts -const __makeSchema_GroupMembershipUpdateOneRequiredWithoutRolesNestedInput_schema = () => z.object({ - create: z.union([GroupMembershipCreateWithoutRolesInputObjectSchema, GroupMembershipUncheckedCreateWithoutRolesInputObjectSchema]).optional(), - get connectOrCreate(){ return GroupMembershipCreateOrConnectWithoutRolesInputObjectSchema.optional(); }, - get upsert(){ return GroupMembershipUpsertWithoutRolesInputObjectSchema.optional(); }, - get connect(){ return GroupMembershipWhereUniqueInputObjectSchema.optional(); }, - update: z.union([GroupMembershipUpdateToOneWithWhereWithoutRolesInputObjectSchema, GroupMembershipUpdateWithoutRolesInputObjectSchema, GroupMembershipUncheckedUpdateWithoutRolesInputObjectSchema]).optional() -}).strict(); -export const GroupMembershipUpdateOneRequiredWithoutRolesNestedInputObjectSchema: z.ZodType = z.lazy(__makeSchema_GroupMembershipUpdateOneRequiredWithoutRolesNestedInput_schema) as unknown as z.ZodType; -export const GroupMembershipUpdateOneRequiredWithoutRolesNestedInputObjectZodSchema = z.lazy(__makeSchema_GroupMembershipUpdateOneRequiredWithoutRolesNestedInput_schema); - - -// File: GroupRoleUpdateOneRequiredWithoutGroupMembershipRolesNestedInput.schema.ts -const __makeSchema_GroupRoleUpdateOneRequiredWithoutGroupMembershipRolesNestedInput_schema = () => z.object({ - create: z.union([GroupRoleCreateWithoutGroupMembershipRolesInputObjectSchema, GroupRoleUncheckedCreateWithoutGroupMembershipRolesInputObjectSchema]).optional(), - get connectOrCreate(){ return GroupRoleCreateOrConnectWithoutGroupMembershipRolesInputObjectSchema.optional(); }, - get upsert(){ return GroupRoleUpsertWithoutGroupMembershipRolesInputObjectSchema.optional(); }, - get connect(){ return GroupRoleWhereUniqueInputObjectSchema.optional(); }, - update: z.union([GroupRoleUpdateToOneWithWhereWithoutGroupMembershipRolesInputObjectSchema, GroupRoleUpdateWithoutGroupMembershipRolesInputObjectSchema, GroupRoleUncheckedUpdateWithoutGroupMembershipRolesInputObjectSchema]).optional() -}).strict(); -export const GroupRoleUpdateOneRequiredWithoutGroupMembershipRolesNestedInputObjectSchema: z.ZodType = z.lazy(__makeSchema_GroupRoleUpdateOneRequiredWithoutGroupMembershipRolesNestedInput_schema) as unknown as z.ZodType; -export const GroupRoleUpdateOneRequiredWithoutGroupMembershipRolesNestedInputObjectZodSchema = z.lazy(__makeSchema_GroupRoleUpdateOneRequiredWithoutGroupMembershipRolesNestedInput_schema); - - -// File: GroupCreateNestedOneWithoutRolesInput.schema.ts -const __makeSchema_GroupCreateNestedOneWithoutRolesInput_schema = () => z.object({ - create: z.union([GroupCreateWithoutRolesInputObjectSchema, GroupUncheckedCreateWithoutRolesInputObjectSchema]).optional(), - get connectOrCreate(){ return GroupCreateOrConnectWithoutRolesInputObjectSchema.optional(); }, - get connect(){ return GroupWhereUniqueInputObjectSchema.optional(); } -}).strict(); -export const GroupCreateNestedOneWithoutRolesInputObjectSchema: z.ZodType = z.lazy(__makeSchema_GroupCreateNestedOneWithoutRolesInput_schema) as unknown as z.ZodType; -export const GroupCreateNestedOneWithoutRolesInputObjectZodSchema = z.lazy(__makeSchema_GroupCreateNestedOneWithoutRolesInput_schema); - - -// File: GroupMembershipRoleCreateNestedManyWithoutRoleInput.schema.ts -const __makeSchema_GroupMembershipRoleCreateNestedManyWithoutRoleInput_schema = () => z.object({ - create: z.union([GroupMembershipRoleCreateWithoutRoleInputObjectSchema, GroupMembershipRoleCreateWithoutRoleInputObjectSchema.array(), GroupMembershipRoleUncheckedCreateWithoutRoleInputObjectSchema, GroupMembershipRoleUncheckedCreateWithoutRoleInputObjectSchema.array()]).optional(), - connectOrCreate: z.union([GroupMembershipRoleCreateOrConnectWithoutRoleInputObjectSchema, GroupMembershipRoleCreateOrConnectWithoutRoleInputObjectSchema.array()]).optional(), - get createMany(){ return GroupMembershipRoleCreateManyRoleInputEnvelopeObjectSchema.optional(); }, - connect: z.union([GroupMembershipRoleWhereUniqueInputObjectSchema, GroupMembershipRoleWhereUniqueInputObjectSchema.array()]).optional() -}).strict(); -export const GroupMembershipRoleCreateNestedManyWithoutRoleInputObjectSchema: z.ZodType = z.lazy(__makeSchema_GroupMembershipRoleCreateNestedManyWithoutRoleInput_schema) as unknown as z.ZodType; -export const GroupMembershipRoleCreateNestedManyWithoutRoleInputObjectZodSchema = z.lazy(__makeSchema_GroupMembershipRoleCreateNestedManyWithoutRoleInput_schema); - - -// File: GroupMembershipRoleUncheckedCreateNestedManyWithoutRoleInput.schema.ts -const __makeSchema_GroupMembershipRoleUncheckedCreateNestedManyWithoutRoleInput_schema = () => z.object({ - create: z.union([GroupMembershipRoleCreateWithoutRoleInputObjectSchema, GroupMembershipRoleCreateWithoutRoleInputObjectSchema.array(), GroupMembershipRoleUncheckedCreateWithoutRoleInputObjectSchema, GroupMembershipRoleUncheckedCreateWithoutRoleInputObjectSchema.array()]).optional(), - connectOrCreate: z.union([GroupMembershipRoleCreateOrConnectWithoutRoleInputObjectSchema, GroupMembershipRoleCreateOrConnectWithoutRoleInputObjectSchema.array()]).optional(), - get createMany(){ return GroupMembershipRoleCreateManyRoleInputEnvelopeObjectSchema.optional(); }, - connect: z.union([GroupMembershipRoleWhereUniqueInputObjectSchema, GroupMembershipRoleWhereUniqueInputObjectSchema.array()]).optional() -}).strict(); -export const GroupMembershipRoleUncheckedCreateNestedManyWithoutRoleInputObjectSchema: z.ZodType = z.lazy(__makeSchema_GroupMembershipRoleUncheckedCreateNestedManyWithoutRoleInput_schema) as unknown as z.ZodType; -export const GroupMembershipRoleUncheckedCreateNestedManyWithoutRoleInputObjectZodSchema = z.lazy(__makeSchema_GroupMembershipRoleUncheckedCreateNestedManyWithoutRoleInput_schema); - - -// File: EnumGroupRoleTypeFieldUpdateOperationsInput.schema.ts -const __makeSchema_EnumGroupRoleTypeFieldUpdateOperationsInput_schema = () => z.object({ - set: GroupRoleTypeSchema.optional() -}).strict(); -export const EnumGroupRoleTypeFieldUpdateOperationsInputObjectSchema: z.ZodType = z.lazy(__makeSchema_EnumGroupRoleTypeFieldUpdateOperationsInput_schema) as unknown as z.ZodType; -export const EnumGroupRoleTypeFieldUpdateOperationsInputObjectZodSchema = z.lazy(__makeSchema_EnumGroupRoleTypeFieldUpdateOperationsInput_schema); - - -// File: GroupUpdateOneRequiredWithoutRolesNestedInput.schema.ts -const __makeSchema_GroupUpdateOneRequiredWithoutRolesNestedInput_schema = () => z.object({ - create: z.union([GroupCreateWithoutRolesInputObjectSchema, GroupUncheckedCreateWithoutRolesInputObjectSchema]).optional(), - get connectOrCreate(){ return GroupCreateOrConnectWithoutRolesInputObjectSchema.optional(); }, - get upsert(){ return GroupUpsertWithoutRolesInputObjectSchema.optional(); }, - get connect(){ return GroupWhereUniqueInputObjectSchema.optional(); }, - update: z.union([GroupUpdateToOneWithWhereWithoutRolesInputObjectSchema, GroupUpdateWithoutRolesInputObjectSchema, GroupUncheckedUpdateWithoutRolesInputObjectSchema]).optional() -}).strict(); -export const GroupUpdateOneRequiredWithoutRolesNestedInputObjectSchema: z.ZodType = z.lazy(__makeSchema_GroupUpdateOneRequiredWithoutRolesNestedInput_schema) as unknown as z.ZodType; -export const GroupUpdateOneRequiredWithoutRolesNestedInputObjectZodSchema = z.lazy(__makeSchema_GroupUpdateOneRequiredWithoutRolesNestedInput_schema); - - -// File: GroupMembershipRoleUpdateManyWithoutRoleNestedInput.schema.ts -const __makeSchema_GroupMembershipRoleUpdateManyWithoutRoleNestedInput_schema = () => z.object({ - create: z.union([GroupMembershipRoleCreateWithoutRoleInputObjectSchema, GroupMembershipRoleCreateWithoutRoleInputObjectSchema.array(), GroupMembershipRoleUncheckedCreateWithoutRoleInputObjectSchema, GroupMembershipRoleUncheckedCreateWithoutRoleInputObjectSchema.array()]).optional(), - connectOrCreate: z.union([GroupMembershipRoleCreateOrConnectWithoutRoleInputObjectSchema, GroupMembershipRoleCreateOrConnectWithoutRoleInputObjectSchema.array()]).optional(), - upsert: z.union([GroupMembershipRoleUpsertWithWhereUniqueWithoutRoleInputObjectSchema, GroupMembershipRoleUpsertWithWhereUniqueWithoutRoleInputObjectSchema.array()]).optional(), - get createMany(){ return GroupMembershipRoleCreateManyRoleInputEnvelopeObjectSchema.optional(); }, - set: z.union([GroupMembershipRoleWhereUniqueInputObjectSchema, GroupMembershipRoleWhereUniqueInputObjectSchema.array()]).optional(), - disconnect: z.union([GroupMembershipRoleWhereUniqueInputObjectSchema, GroupMembershipRoleWhereUniqueInputObjectSchema.array()]).optional(), - delete: z.union([GroupMembershipRoleWhereUniqueInputObjectSchema, GroupMembershipRoleWhereUniqueInputObjectSchema.array()]).optional(), - connect: z.union([GroupMembershipRoleWhereUniqueInputObjectSchema, GroupMembershipRoleWhereUniqueInputObjectSchema.array()]).optional(), - update: z.union([GroupMembershipRoleUpdateWithWhereUniqueWithoutRoleInputObjectSchema, GroupMembershipRoleUpdateWithWhereUniqueWithoutRoleInputObjectSchema.array()]).optional(), - updateMany: z.union([GroupMembershipRoleUpdateManyWithWhereWithoutRoleInputObjectSchema, GroupMembershipRoleUpdateManyWithWhereWithoutRoleInputObjectSchema.array()]).optional(), - deleteMany: z.union([GroupMembershipRoleScalarWhereInputObjectSchema, GroupMembershipRoleScalarWhereInputObjectSchema.array()]).optional() -}).strict(); -export const GroupMembershipRoleUpdateManyWithoutRoleNestedInputObjectSchema: z.ZodType = z.lazy(__makeSchema_GroupMembershipRoleUpdateManyWithoutRoleNestedInput_schema) as unknown as z.ZodType; -export const GroupMembershipRoleUpdateManyWithoutRoleNestedInputObjectZodSchema = z.lazy(__makeSchema_GroupMembershipRoleUpdateManyWithoutRoleNestedInput_schema); - - -// File: GroupMembershipRoleUncheckedUpdateManyWithoutRoleNestedInput.schema.ts -const __makeSchema_GroupMembershipRoleUncheckedUpdateManyWithoutRoleNestedInput_schema = () => z.object({ - create: z.union([GroupMembershipRoleCreateWithoutRoleInputObjectSchema, GroupMembershipRoleCreateWithoutRoleInputObjectSchema.array(), GroupMembershipRoleUncheckedCreateWithoutRoleInputObjectSchema, GroupMembershipRoleUncheckedCreateWithoutRoleInputObjectSchema.array()]).optional(), - connectOrCreate: z.union([GroupMembershipRoleCreateOrConnectWithoutRoleInputObjectSchema, GroupMembershipRoleCreateOrConnectWithoutRoleInputObjectSchema.array()]).optional(), - upsert: z.union([GroupMembershipRoleUpsertWithWhereUniqueWithoutRoleInputObjectSchema, GroupMembershipRoleUpsertWithWhereUniqueWithoutRoleInputObjectSchema.array()]).optional(), - get createMany(){ return GroupMembershipRoleCreateManyRoleInputEnvelopeObjectSchema.optional(); }, - set: z.union([GroupMembershipRoleWhereUniqueInputObjectSchema, GroupMembershipRoleWhereUniqueInputObjectSchema.array()]).optional(), - disconnect: z.union([GroupMembershipRoleWhereUniqueInputObjectSchema, GroupMembershipRoleWhereUniqueInputObjectSchema.array()]).optional(), - delete: z.union([GroupMembershipRoleWhereUniqueInputObjectSchema, GroupMembershipRoleWhereUniqueInputObjectSchema.array()]).optional(), - connect: z.union([GroupMembershipRoleWhereUniqueInputObjectSchema, GroupMembershipRoleWhereUniqueInputObjectSchema.array()]).optional(), - update: z.union([GroupMembershipRoleUpdateWithWhereUniqueWithoutRoleInputObjectSchema, GroupMembershipRoleUpdateWithWhereUniqueWithoutRoleInputObjectSchema.array()]).optional(), - updateMany: z.union([GroupMembershipRoleUpdateManyWithWhereWithoutRoleInputObjectSchema, GroupMembershipRoleUpdateManyWithWhereWithoutRoleInputObjectSchema.array()]).optional(), - deleteMany: z.union([GroupMembershipRoleScalarWhereInputObjectSchema, GroupMembershipRoleScalarWhereInputObjectSchema.array()]).optional() -}).strict(); -export const GroupMembershipRoleUncheckedUpdateManyWithoutRoleNestedInputObjectSchema: z.ZodType = z.lazy(__makeSchema_GroupMembershipRoleUncheckedUpdateManyWithoutRoleNestedInput_schema) as unknown as z.ZodType; -export const GroupMembershipRoleUncheckedUpdateManyWithoutRoleNestedInputObjectZodSchema = z.lazy(__makeSchema_GroupMembershipRoleUncheckedUpdateManyWithoutRoleNestedInput_schema); - - -// File: AttendancePoolCreateNestedManyWithoutAttendanceInput.schema.ts -const __makeSchema_AttendancePoolCreateNestedManyWithoutAttendanceInput_schema = () => z.object({ - create: z.union([AttendancePoolCreateWithoutAttendanceInputObjectSchema, AttendancePoolCreateWithoutAttendanceInputObjectSchema.array(), AttendancePoolUncheckedCreateWithoutAttendanceInputObjectSchema, AttendancePoolUncheckedCreateWithoutAttendanceInputObjectSchema.array()]).optional(), - connectOrCreate: z.union([AttendancePoolCreateOrConnectWithoutAttendanceInputObjectSchema, AttendancePoolCreateOrConnectWithoutAttendanceInputObjectSchema.array()]).optional(), - get createMany(){ return AttendancePoolCreateManyAttendanceInputEnvelopeObjectSchema.optional(); }, - connect: z.union([AttendancePoolWhereUniqueInputObjectSchema, AttendancePoolWhereUniqueInputObjectSchema.array()]).optional() -}).strict(); -export const AttendancePoolCreateNestedManyWithoutAttendanceInputObjectSchema: z.ZodType = z.lazy(__makeSchema_AttendancePoolCreateNestedManyWithoutAttendanceInput_schema) as unknown as z.ZodType; -export const AttendancePoolCreateNestedManyWithoutAttendanceInputObjectZodSchema = z.lazy(__makeSchema_AttendancePoolCreateNestedManyWithoutAttendanceInput_schema); - - -// File: AttendeeCreateNestedManyWithoutAttendanceInput.schema.ts -const __makeSchema_AttendeeCreateNestedManyWithoutAttendanceInput_schema = () => z.object({ - create: z.union([AttendeeCreateWithoutAttendanceInputObjectSchema, AttendeeCreateWithoutAttendanceInputObjectSchema.array(), AttendeeUncheckedCreateWithoutAttendanceInputObjectSchema, AttendeeUncheckedCreateWithoutAttendanceInputObjectSchema.array()]).optional(), - connectOrCreate: z.union([AttendeeCreateOrConnectWithoutAttendanceInputObjectSchema, AttendeeCreateOrConnectWithoutAttendanceInputObjectSchema.array()]).optional(), - get createMany(){ return AttendeeCreateManyAttendanceInputEnvelopeObjectSchema.optional(); }, - connect: z.union([AttendeeWhereUniqueInputObjectSchema, AttendeeWhereUniqueInputObjectSchema.array()]).optional() -}).strict(); -export const AttendeeCreateNestedManyWithoutAttendanceInputObjectSchema: z.ZodType = z.lazy(__makeSchema_AttendeeCreateNestedManyWithoutAttendanceInput_schema) as unknown as z.ZodType; -export const AttendeeCreateNestedManyWithoutAttendanceInputObjectZodSchema = z.lazy(__makeSchema_AttendeeCreateNestedManyWithoutAttendanceInput_schema); - - -// File: EventCreateNestedManyWithoutAttendanceInput.schema.ts -const __makeSchema_EventCreateNestedManyWithoutAttendanceInput_schema = () => z.object({ - create: z.union([EventCreateWithoutAttendanceInputObjectSchema, EventCreateWithoutAttendanceInputObjectSchema.array(), EventUncheckedCreateWithoutAttendanceInputObjectSchema, EventUncheckedCreateWithoutAttendanceInputObjectSchema.array()]).optional(), - connectOrCreate: z.union([EventCreateOrConnectWithoutAttendanceInputObjectSchema, EventCreateOrConnectWithoutAttendanceInputObjectSchema.array()]).optional(), - get createMany(){ return EventCreateManyAttendanceInputEnvelopeObjectSchema.optional(); }, - connect: z.union([EventWhereUniqueInputObjectSchema, EventWhereUniqueInputObjectSchema.array()]).optional() -}).strict(); -export const EventCreateNestedManyWithoutAttendanceInputObjectSchema: z.ZodType = z.lazy(__makeSchema_EventCreateNestedManyWithoutAttendanceInput_schema) as unknown as z.ZodType; -export const EventCreateNestedManyWithoutAttendanceInputObjectZodSchema = z.lazy(__makeSchema_EventCreateNestedManyWithoutAttendanceInput_schema); - - -// File: AttendancePoolUncheckedCreateNestedManyWithoutAttendanceInput.schema.ts -const __makeSchema_AttendancePoolUncheckedCreateNestedManyWithoutAttendanceInput_schema = () => z.object({ - create: z.union([AttendancePoolCreateWithoutAttendanceInputObjectSchema, AttendancePoolCreateWithoutAttendanceInputObjectSchema.array(), AttendancePoolUncheckedCreateWithoutAttendanceInputObjectSchema, AttendancePoolUncheckedCreateWithoutAttendanceInputObjectSchema.array()]).optional(), - connectOrCreate: z.union([AttendancePoolCreateOrConnectWithoutAttendanceInputObjectSchema, AttendancePoolCreateOrConnectWithoutAttendanceInputObjectSchema.array()]).optional(), - get createMany(){ return AttendancePoolCreateManyAttendanceInputEnvelopeObjectSchema.optional(); }, - connect: z.union([AttendancePoolWhereUniqueInputObjectSchema, AttendancePoolWhereUniqueInputObjectSchema.array()]).optional() -}).strict(); -export const AttendancePoolUncheckedCreateNestedManyWithoutAttendanceInputObjectSchema: z.ZodType = z.lazy(__makeSchema_AttendancePoolUncheckedCreateNestedManyWithoutAttendanceInput_schema) as unknown as z.ZodType; -export const AttendancePoolUncheckedCreateNestedManyWithoutAttendanceInputObjectZodSchema = z.lazy(__makeSchema_AttendancePoolUncheckedCreateNestedManyWithoutAttendanceInput_schema); - - -// File: AttendeeUncheckedCreateNestedManyWithoutAttendanceInput.schema.ts -const __makeSchema_AttendeeUncheckedCreateNestedManyWithoutAttendanceInput_schema = () => z.object({ - create: z.union([AttendeeCreateWithoutAttendanceInputObjectSchema, AttendeeCreateWithoutAttendanceInputObjectSchema.array(), AttendeeUncheckedCreateWithoutAttendanceInputObjectSchema, AttendeeUncheckedCreateWithoutAttendanceInputObjectSchema.array()]).optional(), - connectOrCreate: z.union([AttendeeCreateOrConnectWithoutAttendanceInputObjectSchema, AttendeeCreateOrConnectWithoutAttendanceInputObjectSchema.array()]).optional(), - get createMany(){ return AttendeeCreateManyAttendanceInputEnvelopeObjectSchema.optional(); }, - connect: z.union([AttendeeWhereUniqueInputObjectSchema, AttendeeWhereUniqueInputObjectSchema.array()]).optional() -}).strict(); -export const AttendeeUncheckedCreateNestedManyWithoutAttendanceInputObjectSchema: z.ZodType = z.lazy(__makeSchema_AttendeeUncheckedCreateNestedManyWithoutAttendanceInput_schema) as unknown as z.ZodType; -export const AttendeeUncheckedCreateNestedManyWithoutAttendanceInputObjectZodSchema = z.lazy(__makeSchema_AttendeeUncheckedCreateNestedManyWithoutAttendanceInput_schema); - - -// File: EventUncheckedCreateNestedManyWithoutAttendanceInput.schema.ts -const __makeSchema_EventUncheckedCreateNestedManyWithoutAttendanceInput_schema = () => z.object({ - create: z.union([EventCreateWithoutAttendanceInputObjectSchema, EventCreateWithoutAttendanceInputObjectSchema.array(), EventUncheckedCreateWithoutAttendanceInputObjectSchema, EventUncheckedCreateWithoutAttendanceInputObjectSchema.array()]).optional(), - connectOrCreate: z.union([EventCreateOrConnectWithoutAttendanceInputObjectSchema, EventCreateOrConnectWithoutAttendanceInputObjectSchema.array()]).optional(), - get createMany(){ return EventCreateManyAttendanceInputEnvelopeObjectSchema.optional(); }, - connect: z.union([EventWhereUniqueInputObjectSchema, EventWhereUniqueInputObjectSchema.array()]).optional() -}).strict(); -export const EventUncheckedCreateNestedManyWithoutAttendanceInputObjectSchema: z.ZodType = z.lazy(__makeSchema_EventUncheckedCreateNestedManyWithoutAttendanceInput_schema) as unknown as z.ZodType; -export const EventUncheckedCreateNestedManyWithoutAttendanceInputObjectZodSchema = z.lazy(__makeSchema_EventUncheckedCreateNestedManyWithoutAttendanceInput_schema); - - -// File: AttendancePoolUpdateManyWithoutAttendanceNestedInput.schema.ts -const __makeSchema_AttendancePoolUpdateManyWithoutAttendanceNestedInput_schema = () => z.object({ - create: z.union([AttendancePoolCreateWithoutAttendanceInputObjectSchema, AttendancePoolCreateWithoutAttendanceInputObjectSchema.array(), AttendancePoolUncheckedCreateWithoutAttendanceInputObjectSchema, AttendancePoolUncheckedCreateWithoutAttendanceInputObjectSchema.array()]).optional(), - connectOrCreate: z.union([AttendancePoolCreateOrConnectWithoutAttendanceInputObjectSchema, AttendancePoolCreateOrConnectWithoutAttendanceInputObjectSchema.array()]).optional(), - upsert: z.union([AttendancePoolUpsertWithWhereUniqueWithoutAttendanceInputObjectSchema, AttendancePoolUpsertWithWhereUniqueWithoutAttendanceInputObjectSchema.array()]).optional(), - get createMany(){ return AttendancePoolCreateManyAttendanceInputEnvelopeObjectSchema.optional(); }, - set: z.union([AttendancePoolWhereUniqueInputObjectSchema, AttendancePoolWhereUniqueInputObjectSchema.array()]).optional(), - disconnect: z.union([AttendancePoolWhereUniqueInputObjectSchema, AttendancePoolWhereUniqueInputObjectSchema.array()]).optional(), - delete: z.union([AttendancePoolWhereUniqueInputObjectSchema, AttendancePoolWhereUniqueInputObjectSchema.array()]).optional(), - connect: z.union([AttendancePoolWhereUniqueInputObjectSchema, AttendancePoolWhereUniqueInputObjectSchema.array()]).optional(), - update: z.union([AttendancePoolUpdateWithWhereUniqueWithoutAttendanceInputObjectSchema, AttendancePoolUpdateWithWhereUniqueWithoutAttendanceInputObjectSchema.array()]).optional(), - updateMany: z.union([AttendancePoolUpdateManyWithWhereWithoutAttendanceInputObjectSchema, AttendancePoolUpdateManyWithWhereWithoutAttendanceInputObjectSchema.array()]).optional(), - deleteMany: z.union([AttendancePoolScalarWhereInputObjectSchema, AttendancePoolScalarWhereInputObjectSchema.array()]).optional() -}).strict(); -export const AttendancePoolUpdateManyWithoutAttendanceNestedInputObjectSchema: z.ZodType = z.lazy(__makeSchema_AttendancePoolUpdateManyWithoutAttendanceNestedInput_schema) as unknown as z.ZodType; -export const AttendancePoolUpdateManyWithoutAttendanceNestedInputObjectZodSchema = z.lazy(__makeSchema_AttendancePoolUpdateManyWithoutAttendanceNestedInput_schema); - - -// File: AttendeeUpdateManyWithoutAttendanceNestedInput.schema.ts -const __makeSchema_AttendeeUpdateManyWithoutAttendanceNestedInput_schema = () => z.object({ - create: z.union([AttendeeCreateWithoutAttendanceInputObjectSchema, AttendeeCreateWithoutAttendanceInputObjectSchema.array(), AttendeeUncheckedCreateWithoutAttendanceInputObjectSchema, AttendeeUncheckedCreateWithoutAttendanceInputObjectSchema.array()]).optional(), - connectOrCreate: z.union([AttendeeCreateOrConnectWithoutAttendanceInputObjectSchema, AttendeeCreateOrConnectWithoutAttendanceInputObjectSchema.array()]).optional(), - upsert: z.union([AttendeeUpsertWithWhereUniqueWithoutAttendanceInputObjectSchema, AttendeeUpsertWithWhereUniqueWithoutAttendanceInputObjectSchema.array()]).optional(), - get createMany(){ return AttendeeCreateManyAttendanceInputEnvelopeObjectSchema.optional(); }, - set: z.union([AttendeeWhereUniqueInputObjectSchema, AttendeeWhereUniqueInputObjectSchema.array()]).optional(), - disconnect: z.union([AttendeeWhereUniqueInputObjectSchema, AttendeeWhereUniqueInputObjectSchema.array()]).optional(), - delete: z.union([AttendeeWhereUniqueInputObjectSchema, AttendeeWhereUniqueInputObjectSchema.array()]).optional(), - connect: z.union([AttendeeWhereUniqueInputObjectSchema, AttendeeWhereUniqueInputObjectSchema.array()]).optional(), - update: z.union([AttendeeUpdateWithWhereUniqueWithoutAttendanceInputObjectSchema, AttendeeUpdateWithWhereUniqueWithoutAttendanceInputObjectSchema.array()]).optional(), - updateMany: z.union([AttendeeUpdateManyWithWhereWithoutAttendanceInputObjectSchema, AttendeeUpdateManyWithWhereWithoutAttendanceInputObjectSchema.array()]).optional(), - deleteMany: z.union([AttendeeScalarWhereInputObjectSchema, AttendeeScalarWhereInputObjectSchema.array()]).optional() -}).strict(); -export const AttendeeUpdateManyWithoutAttendanceNestedInputObjectSchema: z.ZodType = z.lazy(__makeSchema_AttendeeUpdateManyWithoutAttendanceNestedInput_schema) as unknown as z.ZodType; -export const AttendeeUpdateManyWithoutAttendanceNestedInputObjectZodSchema = z.lazy(__makeSchema_AttendeeUpdateManyWithoutAttendanceNestedInput_schema); - - -// File: EventUpdateManyWithoutAttendanceNestedInput.schema.ts -const __makeSchema_EventUpdateManyWithoutAttendanceNestedInput_schema = () => z.object({ - create: z.union([EventCreateWithoutAttendanceInputObjectSchema, EventCreateWithoutAttendanceInputObjectSchema.array(), EventUncheckedCreateWithoutAttendanceInputObjectSchema, EventUncheckedCreateWithoutAttendanceInputObjectSchema.array()]).optional(), - connectOrCreate: z.union([EventCreateOrConnectWithoutAttendanceInputObjectSchema, EventCreateOrConnectWithoutAttendanceInputObjectSchema.array()]).optional(), - upsert: z.union([EventUpsertWithWhereUniqueWithoutAttendanceInputObjectSchema, EventUpsertWithWhereUniqueWithoutAttendanceInputObjectSchema.array()]).optional(), - get createMany(){ return EventCreateManyAttendanceInputEnvelopeObjectSchema.optional(); }, - set: z.union([EventWhereUniqueInputObjectSchema, EventWhereUniqueInputObjectSchema.array()]).optional(), - disconnect: z.union([EventWhereUniqueInputObjectSchema, EventWhereUniqueInputObjectSchema.array()]).optional(), - delete: z.union([EventWhereUniqueInputObjectSchema, EventWhereUniqueInputObjectSchema.array()]).optional(), - connect: z.union([EventWhereUniqueInputObjectSchema, EventWhereUniqueInputObjectSchema.array()]).optional(), - update: z.union([EventUpdateWithWhereUniqueWithoutAttendanceInputObjectSchema, EventUpdateWithWhereUniqueWithoutAttendanceInputObjectSchema.array()]).optional(), - updateMany: z.union([EventUpdateManyWithWhereWithoutAttendanceInputObjectSchema, EventUpdateManyWithWhereWithoutAttendanceInputObjectSchema.array()]).optional(), - deleteMany: z.union([EventScalarWhereInputObjectSchema, EventScalarWhereInputObjectSchema.array()]).optional() -}).strict(); -export const EventUpdateManyWithoutAttendanceNestedInputObjectSchema: z.ZodType = z.lazy(__makeSchema_EventUpdateManyWithoutAttendanceNestedInput_schema) as unknown as z.ZodType; -export const EventUpdateManyWithoutAttendanceNestedInputObjectZodSchema = z.lazy(__makeSchema_EventUpdateManyWithoutAttendanceNestedInput_schema); - - -// File: AttendancePoolUncheckedUpdateManyWithoutAttendanceNestedInput.schema.ts -const __makeSchema_AttendancePoolUncheckedUpdateManyWithoutAttendanceNestedInput_schema = () => z.object({ - create: z.union([AttendancePoolCreateWithoutAttendanceInputObjectSchema, AttendancePoolCreateWithoutAttendanceInputObjectSchema.array(), AttendancePoolUncheckedCreateWithoutAttendanceInputObjectSchema, AttendancePoolUncheckedCreateWithoutAttendanceInputObjectSchema.array()]).optional(), - connectOrCreate: z.union([AttendancePoolCreateOrConnectWithoutAttendanceInputObjectSchema, AttendancePoolCreateOrConnectWithoutAttendanceInputObjectSchema.array()]).optional(), - upsert: z.union([AttendancePoolUpsertWithWhereUniqueWithoutAttendanceInputObjectSchema, AttendancePoolUpsertWithWhereUniqueWithoutAttendanceInputObjectSchema.array()]).optional(), - get createMany(){ return AttendancePoolCreateManyAttendanceInputEnvelopeObjectSchema.optional(); }, - set: z.union([AttendancePoolWhereUniqueInputObjectSchema, AttendancePoolWhereUniqueInputObjectSchema.array()]).optional(), - disconnect: z.union([AttendancePoolWhereUniqueInputObjectSchema, AttendancePoolWhereUniqueInputObjectSchema.array()]).optional(), - delete: z.union([AttendancePoolWhereUniqueInputObjectSchema, AttendancePoolWhereUniqueInputObjectSchema.array()]).optional(), - connect: z.union([AttendancePoolWhereUniqueInputObjectSchema, AttendancePoolWhereUniqueInputObjectSchema.array()]).optional(), - update: z.union([AttendancePoolUpdateWithWhereUniqueWithoutAttendanceInputObjectSchema, AttendancePoolUpdateWithWhereUniqueWithoutAttendanceInputObjectSchema.array()]).optional(), - updateMany: z.union([AttendancePoolUpdateManyWithWhereWithoutAttendanceInputObjectSchema, AttendancePoolUpdateManyWithWhereWithoutAttendanceInputObjectSchema.array()]).optional(), - deleteMany: z.union([AttendancePoolScalarWhereInputObjectSchema, AttendancePoolScalarWhereInputObjectSchema.array()]).optional() -}).strict(); -export const AttendancePoolUncheckedUpdateManyWithoutAttendanceNestedInputObjectSchema: z.ZodType = z.lazy(__makeSchema_AttendancePoolUncheckedUpdateManyWithoutAttendanceNestedInput_schema) as unknown as z.ZodType; -export const AttendancePoolUncheckedUpdateManyWithoutAttendanceNestedInputObjectZodSchema = z.lazy(__makeSchema_AttendancePoolUncheckedUpdateManyWithoutAttendanceNestedInput_schema); - - -// File: AttendeeUncheckedUpdateManyWithoutAttendanceNestedInput.schema.ts -const __makeSchema_AttendeeUncheckedUpdateManyWithoutAttendanceNestedInput_schema = () => z.object({ - create: z.union([AttendeeCreateWithoutAttendanceInputObjectSchema, AttendeeCreateWithoutAttendanceInputObjectSchema.array(), AttendeeUncheckedCreateWithoutAttendanceInputObjectSchema, AttendeeUncheckedCreateWithoutAttendanceInputObjectSchema.array()]).optional(), - connectOrCreate: z.union([AttendeeCreateOrConnectWithoutAttendanceInputObjectSchema, AttendeeCreateOrConnectWithoutAttendanceInputObjectSchema.array()]).optional(), - upsert: z.union([AttendeeUpsertWithWhereUniqueWithoutAttendanceInputObjectSchema, AttendeeUpsertWithWhereUniqueWithoutAttendanceInputObjectSchema.array()]).optional(), - get createMany(){ return AttendeeCreateManyAttendanceInputEnvelopeObjectSchema.optional(); }, - set: z.union([AttendeeWhereUniqueInputObjectSchema, AttendeeWhereUniqueInputObjectSchema.array()]).optional(), - disconnect: z.union([AttendeeWhereUniqueInputObjectSchema, AttendeeWhereUniqueInputObjectSchema.array()]).optional(), - delete: z.union([AttendeeWhereUniqueInputObjectSchema, AttendeeWhereUniqueInputObjectSchema.array()]).optional(), - connect: z.union([AttendeeWhereUniqueInputObjectSchema, AttendeeWhereUniqueInputObjectSchema.array()]).optional(), - update: z.union([AttendeeUpdateWithWhereUniqueWithoutAttendanceInputObjectSchema, AttendeeUpdateWithWhereUniqueWithoutAttendanceInputObjectSchema.array()]).optional(), - updateMany: z.union([AttendeeUpdateManyWithWhereWithoutAttendanceInputObjectSchema, AttendeeUpdateManyWithWhereWithoutAttendanceInputObjectSchema.array()]).optional(), - deleteMany: z.union([AttendeeScalarWhereInputObjectSchema, AttendeeScalarWhereInputObjectSchema.array()]).optional() -}).strict(); -export const AttendeeUncheckedUpdateManyWithoutAttendanceNestedInputObjectSchema: z.ZodType = z.lazy(__makeSchema_AttendeeUncheckedUpdateManyWithoutAttendanceNestedInput_schema) as unknown as z.ZodType; -export const AttendeeUncheckedUpdateManyWithoutAttendanceNestedInputObjectZodSchema = z.lazy(__makeSchema_AttendeeUncheckedUpdateManyWithoutAttendanceNestedInput_schema); - - -// File: EventUncheckedUpdateManyWithoutAttendanceNestedInput.schema.ts -const __makeSchema_EventUncheckedUpdateManyWithoutAttendanceNestedInput_schema = () => z.object({ - create: z.union([EventCreateWithoutAttendanceInputObjectSchema, EventCreateWithoutAttendanceInputObjectSchema.array(), EventUncheckedCreateWithoutAttendanceInputObjectSchema, EventUncheckedCreateWithoutAttendanceInputObjectSchema.array()]).optional(), - connectOrCreate: z.union([EventCreateOrConnectWithoutAttendanceInputObjectSchema, EventCreateOrConnectWithoutAttendanceInputObjectSchema.array()]).optional(), - upsert: z.union([EventUpsertWithWhereUniqueWithoutAttendanceInputObjectSchema, EventUpsertWithWhereUniqueWithoutAttendanceInputObjectSchema.array()]).optional(), - get createMany(){ return EventCreateManyAttendanceInputEnvelopeObjectSchema.optional(); }, - set: z.union([EventWhereUniqueInputObjectSchema, EventWhereUniqueInputObjectSchema.array()]).optional(), - disconnect: z.union([EventWhereUniqueInputObjectSchema, EventWhereUniqueInputObjectSchema.array()]).optional(), - delete: z.union([EventWhereUniqueInputObjectSchema, EventWhereUniqueInputObjectSchema.array()]).optional(), - connect: z.union([EventWhereUniqueInputObjectSchema, EventWhereUniqueInputObjectSchema.array()]).optional(), - update: z.union([EventUpdateWithWhereUniqueWithoutAttendanceInputObjectSchema, EventUpdateWithWhereUniqueWithoutAttendanceInputObjectSchema.array()]).optional(), - updateMany: z.union([EventUpdateManyWithWhereWithoutAttendanceInputObjectSchema, EventUpdateManyWithWhereWithoutAttendanceInputObjectSchema.array()]).optional(), - deleteMany: z.union([EventScalarWhereInputObjectSchema, EventScalarWhereInputObjectSchema.array()]).optional() -}).strict(); -export const EventUncheckedUpdateManyWithoutAttendanceNestedInputObjectSchema: z.ZodType = z.lazy(__makeSchema_EventUncheckedUpdateManyWithoutAttendanceNestedInput_schema) as unknown as z.ZodType; -export const EventUncheckedUpdateManyWithoutAttendanceNestedInputObjectZodSchema = z.lazy(__makeSchema_EventUncheckedUpdateManyWithoutAttendanceNestedInput_schema); - - -// File: AttendanceCreateNestedOneWithoutPoolsInput.schema.ts -const __makeSchema_AttendanceCreateNestedOneWithoutPoolsInput_schema = () => z.object({ - create: z.union([AttendanceCreateWithoutPoolsInputObjectSchema, AttendanceUncheckedCreateWithoutPoolsInputObjectSchema]).optional(), - get connectOrCreate(){ return AttendanceCreateOrConnectWithoutPoolsInputObjectSchema.optional(); }, - get connect(){ return AttendanceWhereUniqueInputObjectSchema.optional(); } -}).strict(); -export const AttendanceCreateNestedOneWithoutPoolsInputObjectSchema: z.ZodType = z.lazy(__makeSchema_AttendanceCreateNestedOneWithoutPoolsInput_schema) as unknown as z.ZodType; -export const AttendanceCreateNestedOneWithoutPoolsInputObjectZodSchema = z.lazy(__makeSchema_AttendanceCreateNestedOneWithoutPoolsInput_schema); - - -// File: TaskCreateNestedOneWithoutAttendancePoolsInput.schema.ts -const __makeSchema_TaskCreateNestedOneWithoutAttendancePoolsInput_schema = () => z.object({ - create: z.union([TaskCreateWithoutAttendancePoolsInputObjectSchema, TaskUncheckedCreateWithoutAttendancePoolsInputObjectSchema]).optional(), - get connectOrCreate(){ return TaskCreateOrConnectWithoutAttendancePoolsInputObjectSchema.optional(); }, - get connect(){ return TaskWhereUniqueInputObjectSchema.optional(); } -}).strict(); -export const TaskCreateNestedOneWithoutAttendancePoolsInputObjectSchema: z.ZodType = z.lazy(__makeSchema_TaskCreateNestedOneWithoutAttendancePoolsInput_schema) as unknown as z.ZodType; -export const TaskCreateNestedOneWithoutAttendancePoolsInputObjectZodSchema = z.lazy(__makeSchema_TaskCreateNestedOneWithoutAttendancePoolsInput_schema); - - -// File: AttendeeCreateNestedManyWithoutAttendancePoolInput.schema.ts -const __makeSchema_AttendeeCreateNestedManyWithoutAttendancePoolInput_schema = () => z.object({ - create: z.union([AttendeeCreateWithoutAttendancePoolInputObjectSchema, AttendeeCreateWithoutAttendancePoolInputObjectSchema.array(), AttendeeUncheckedCreateWithoutAttendancePoolInputObjectSchema, AttendeeUncheckedCreateWithoutAttendancePoolInputObjectSchema.array()]).optional(), - connectOrCreate: z.union([AttendeeCreateOrConnectWithoutAttendancePoolInputObjectSchema, AttendeeCreateOrConnectWithoutAttendancePoolInputObjectSchema.array()]).optional(), - get createMany(){ return AttendeeCreateManyAttendancePoolInputEnvelopeObjectSchema.optional(); }, - connect: z.union([AttendeeWhereUniqueInputObjectSchema, AttendeeWhereUniqueInputObjectSchema.array()]).optional() -}).strict(); -export const AttendeeCreateNestedManyWithoutAttendancePoolInputObjectSchema: z.ZodType = z.lazy(__makeSchema_AttendeeCreateNestedManyWithoutAttendancePoolInput_schema) as unknown as z.ZodType; -export const AttendeeCreateNestedManyWithoutAttendancePoolInputObjectZodSchema = z.lazy(__makeSchema_AttendeeCreateNestedManyWithoutAttendancePoolInput_schema); - - -// File: AttendeeUncheckedCreateNestedManyWithoutAttendancePoolInput.schema.ts -const __makeSchema_AttendeeUncheckedCreateNestedManyWithoutAttendancePoolInput_schema = () => z.object({ - create: z.union([AttendeeCreateWithoutAttendancePoolInputObjectSchema, AttendeeCreateWithoutAttendancePoolInputObjectSchema.array(), AttendeeUncheckedCreateWithoutAttendancePoolInputObjectSchema, AttendeeUncheckedCreateWithoutAttendancePoolInputObjectSchema.array()]).optional(), - connectOrCreate: z.union([AttendeeCreateOrConnectWithoutAttendancePoolInputObjectSchema, AttendeeCreateOrConnectWithoutAttendancePoolInputObjectSchema.array()]).optional(), - get createMany(){ return AttendeeCreateManyAttendancePoolInputEnvelopeObjectSchema.optional(); }, - connect: z.union([AttendeeWhereUniqueInputObjectSchema, AttendeeWhereUniqueInputObjectSchema.array()]).optional() -}).strict(); -export const AttendeeUncheckedCreateNestedManyWithoutAttendancePoolInputObjectSchema: z.ZodType = z.lazy(__makeSchema_AttendeeUncheckedCreateNestedManyWithoutAttendancePoolInput_schema) as unknown as z.ZodType; -export const AttendeeUncheckedCreateNestedManyWithoutAttendancePoolInputObjectZodSchema = z.lazy(__makeSchema_AttendeeUncheckedCreateNestedManyWithoutAttendancePoolInput_schema); - - -// File: IntFieldUpdateOperationsInput.schema.ts -const __makeSchema_IntFieldUpdateOperationsInput_schema = () => z.object({ - set: z.number().int().optional(), - increment: z.number().int().optional(), - decrement: z.number().int().optional(), - multiply: z.number().int().optional(), - divide: z.number().int().optional() -}).strict(); -export const IntFieldUpdateOperationsInputObjectSchema: z.ZodType = z.lazy(__makeSchema_IntFieldUpdateOperationsInput_schema) as unknown as z.ZodType; -export const IntFieldUpdateOperationsInputObjectZodSchema = z.lazy(__makeSchema_IntFieldUpdateOperationsInput_schema); - - -// File: AttendanceUpdateOneRequiredWithoutPoolsNestedInput.schema.ts -const __makeSchema_AttendanceUpdateOneRequiredWithoutPoolsNestedInput_schema = () => z.object({ - create: z.union([AttendanceCreateWithoutPoolsInputObjectSchema, AttendanceUncheckedCreateWithoutPoolsInputObjectSchema]).optional(), - get connectOrCreate(){ return AttendanceCreateOrConnectWithoutPoolsInputObjectSchema.optional(); }, - get upsert(){ return AttendanceUpsertWithoutPoolsInputObjectSchema.optional(); }, - get connect(){ return AttendanceWhereUniqueInputObjectSchema.optional(); }, - update: z.union([AttendanceUpdateToOneWithWhereWithoutPoolsInputObjectSchema, AttendanceUpdateWithoutPoolsInputObjectSchema, AttendanceUncheckedUpdateWithoutPoolsInputObjectSchema]).optional() -}).strict(); -export const AttendanceUpdateOneRequiredWithoutPoolsNestedInputObjectSchema: z.ZodType = z.lazy(__makeSchema_AttendanceUpdateOneRequiredWithoutPoolsNestedInput_schema) as unknown as z.ZodType; -export const AttendanceUpdateOneRequiredWithoutPoolsNestedInputObjectZodSchema = z.lazy(__makeSchema_AttendanceUpdateOneRequiredWithoutPoolsNestedInput_schema); - - -// File: TaskUpdateOneWithoutAttendancePoolsNestedInput.schema.ts -const __makeSchema_TaskUpdateOneWithoutAttendancePoolsNestedInput_schema = () => z.object({ - create: z.union([TaskCreateWithoutAttendancePoolsInputObjectSchema, TaskUncheckedCreateWithoutAttendancePoolsInputObjectSchema]).optional(), - get connectOrCreate(){ return TaskCreateOrConnectWithoutAttendancePoolsInputObjectSchema.optional(); }, - get upsert(){ return TaskUpsertWithoutAttendancePoolsInputObjectSchema.optional(); }, - disconnect: z.union([z.boolean(), TaskWhereInputObjectSchema]).optional(), - delete: z.union([z.boolean(), TaskWhereInputObjectSchema]).optional(), - get connect(){ return TaskWhereUniqueInputObjectSchema.optional(); }, - update: z.union([TaskUpdateToOneWithWhereWithoutAttendancePoolsInputObjectSchema, TaskUpdateWithoutAttendancePoolsInputObjectSchema, TaskUncheckedUpdateWithoutAttendancePoolsInputObjectSchema]).optional() -}).strict(); -export const TaskUpdateOneWithoutAttendancePoolsNestedInputObjectSchema: z.ZodType = z.lazy(__makeSchema_TaskUpdateOneWithoutAttendancePoolsNestedInput_schema) as unknown as z.ZodType; -export const TaskUpdateOneWithoutAttendancePoolsNestedInputObjectZodSchema = z.lazy(__makeSchema_TaskUpdateOneWithoutAttendancePoolsNestedInput_schema); - - -// File: AttendeeUpdateManyWithoutAttendancePoolNestedInput.schema.ts -const __makeSchema_AttendeeUpdateManyWithoutAttendancePoolNestedInput_schema = () => z.object({ - create: z.union([AttendeeCreateWithoutAttendancePoolInputObjectSchema, AttendeeCreateWithoutAttendancePoolInputObjectSchema.array(), AttendeeUncheckedCreateWithoutAttendancePoolInputObjectSchema, AttendeeUncheckedCreateWithoutAttendancePoolInputObjectSchema.array()]).optional(), - connectOrCreate: z.union([AttendeeCreateOrConnectWithoutAttendancePoolInputObjectSchema, AttendeeCreateOrConnectWithoutAttendancePoolInputObjectSchema.array()]).optional(), - upsert: z.union([AttendeeUpsertWithWhereUniqueWithoutAttendancePoolInputObjectSchema, AttendeeUpsertWithWhereUniqueWithoutAttendancePoolInputObjectSchema.array()]).optional(), - get createMany(){ return AttendeeCreateManyAttendancePoolInputEnvelopeObjectSchema.optional(); }, - set: z.union([AttendeeWhereUniqueInputObjectSchema, AttendeeWhereUniqueInputObjectSchema.array()]).optional(), - disconnect: z.union([AttendeeWhereUniqueInputObjectSchema, AttendeeWhereUniqueInputObjectSchema.array()]).optional(), - delete: z.union([AttendeeWhereUniqueInputObjectSchema, AttendeeWhereUniqueInputObjectSchema.array()]).optional(), - connect: z.union([AttendeeWhereUniqueInputObjectSchema, AttendeeWhereUniqueInputObjectSchema.array()]).optional(), - update: z.union([AttendeeUpdateWithWhereUniqueWithoutAttendancePoolInputObjectSchema, AttendeeUpdateWithWhereUniqueWithoutAttendancePoolInputObjectSchema.array()]).optional(), - updateMany: z.union([AttendeeUpdateManyWithWhereWithoutAttendancePoolInputObjectSchema, AttendeeUpdateManyWithWhereWithoutAttendancePoolInputObjectSchema.array()]).optional(), - deleteMany: z.union([AttendeeScalarWhereInputObjectSchema, AttendeeScalarWhereInputObjectSchema.array()]).optional() -}).strict(); -export const AttendeeUpdateManyWithoutAttendancePoolNestedInputObjectSchema: z.ZodType = z.lazy(__makeSchema_AttendeeUpdateManyWithoutAttendancePoolNestedInput_schema) as unknown as z.ZodType; -export const AttendeeUpdateManyWithoutAttendancePoolNestedInputObjectZodSchema = z.lazy(__makeSchema_AttendeeUpdateManyWithoutAttendancePoolNestedInput_schema); - - -// File: AttendeeUncheckedUpdateManyWithoutAttendancePoolNestedInput.schema.ts -const __makeSchema_AttendeeUncheckedUpdateManyWithoutAttendancePoolNestedInput_schema = () => z.object({ - create: z.union([AttendeeCreateWithoutAttendancePoolInputObjectSchema, AttendeeCreateWithoutAttendancePoolInputObjectSchema.array(), AttendeeUncheckedCreateWithoutAttendancePoolInputObjectSchema, AttendeeUncheckedCreateWithoutAttendancePoolInputObjectSchema.array()]).optional(), - connectOrCreate: z.union([AttendeeCreateOrConnectWithoutAttendancePoolInputObjectSchema, AttendeeCreateOrConnectWithoutAttendancePoolInputObjectSchema.array()]).optional(), - upsert: z.union([AttendeeUpsertWithWhereUniqueWithoutAttendancePoolInputObjectSchema, AttendeeUpsertWithWhereUniqueWithoutAttendancePoolInputObjectSchema.array()]).optional(), - get createMany(){ return AttendeeCreateManyAttendancePoolInputEnvelopeObjectSchema.optional(); }, - set: z.union([AttendeeWhereUniqueInputObjectSchema, AttendeeWhereUniqueInputObjectSchema.array()]).optional(), - disconnect: z.union([AttendeeWhereUniqueInputObjectSchema, AttendeeWhereUniqueInputObjectSchema.array()]).optional(), - delete: z.union([AttendeeWhereUniqueInputObjectSchema, AttendeeWhereUniqueInputObjectSchema.array()]).optional(), - connect: z.union([AttendeeWhereUniqueInputObjectSchema, AttendeeWhereUniqueInputObjectSchema.array()]).optional(), - update: z.union([AttendeeUpdateWithWhereUniqueWithoutAttendancePoolInputObjectSchema, AttendeeUpdateWithWhereUniqueWithoutAttendancePoolInputObjectSchema.array()]).optional(), - updateMany: z.union([AttendeeUpdateManyWithWhereWithoutAttendancePoolInputObjectSchema, AttendeeUpdateManyWithWhereWithoutAttendancePoolInputObjectSchema.array()]).optional(), - deleteMany: z.union([AttendeeScalarWhereInputObjectSchema, AttendeeScalarWhereInputObjectSchema.array()]).optional() -}).strict(); -export const AttendeeUncheckedUpdateManyWithoutAttendancePoolNestedInputObjectSchema: z.ZodType = z.lazy(__makeSchema_AttendeeUncheckedUpdateManyWithoutAttendancePoolNestedInput_schema) as unknown as z.ZodType; -export const AttendeeUncheckedUpdateManyWithoutAttendancePoolNestedInputObjectZodSchema = z.lazy(__makeSchema_AttendeeUncheckedUpdateManyWithoutAttendancePoolNestedInput_schema); - - -// File: FeedbackFormAnswerCreateNestedOneWithoutAttendeeInput.schema.ts -const __makeSchema_FeedbackFormAnswerCreateNestedOneWithoutAttendeeInput_schema = () => z.object({ - create: z.union([FeedbackFormAnswerCreateWithoutAttendeeInputObjectSchema, FeedbackFormAnswerUncheckedCreateWithoutAttendeeInputObjectSchema]).optional(), - get connectOrCreate(){ return FeedbackFormAnswerCreateOrConnectWithoutAttendeeInputObjectSchema.optional(); }, - get connect(){ return FeedbackFormAnswerWhereUniqueInputObjectSchema.optional(); } -}).strict(); -export const FeedbackFormAnswerCreateNestedOneWithoutAttendeeInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackFormAnswerCreateNestedOneWithoutAttendeeInput_schema) as unknown as z.ZodType; -export const FeedbackFormAnswerCreateNestedOneWithoutAttendeeInputObjectZodSchema = z.lazy(__makeSchema_FeedbackFormAnswerCreateNestedOneWithoutAttendeeInput_schema); - - -// File: AttendanceCreateNestedOneWithoutAttendeesInput.schema.ts -const __makeSchema_AttendanceCreateNestedOneWithoutAttendeesInput_schema = () => z.object({ - create: z.union([AttendanceCreateWithoutAttendeesInputObjectSchema, AttendanceUncheckedCreateWithoutAttendeesInputObjectSchema]).optional(), - get connectOrCreate(){ return AttendanceCreateOrConnectWithoutAttendeesInputObjectSchema.optional(); }, - get connect(){ return AttendanceWhereUniqueInputObjectSchema.optional(); } -}).strict(); -export const AttendanceCreateNestedOneWithoutAttendeesInputObjectSchema: z.ZodType = z.lazy(__makeSchema_AttendanceCreateNestedOneWithoutAttendeesInput_schema) as unknown as z.ZodType; -export const AttendanceCreateNestedOneWithoutAttendeesInputObjectZodSchema = z.lazy(__makeSchema_AttendanceCreateNestedOneWithoutAttendeesInput_schema); - - -// File: UserCreateNestedOneWithoutAttendeeInput.schema.ts -const __makeSchema_UserCreateNestedOneWithoutAttendeeInput_schema = () => z.object({ - create: z.union([UserCreateWithoutAttendeeInputObjectSchema, UserUncheckedCreateWithoutAttendeeInputObjectSchema]).optional(), - get connectOrCreate(){ return UserCreateOrConnectWithoutAttendeeInputObjectSchema.optional(); }, - get connect(){ return UserWhereUniqueInputObjectSchema.optional(); } -}).strict(); -export const UserCreateNestedOneWithoutAttendeeInputObjectSchema: z.ZodType = z.lazy(__makeSchema_UserCreateNestedOneWithoutAttendeeInput_schema) as unknown as z.ZodType; -export const UserCreateNestedOneWithoutAttendeeInputObjectZodSchema = z.lazy(__makeSchema_UserCreateNestedOneWithoutAttendeeInput_schema); - - -// File: AttendancePoolCreateNestedOneWithoutAttendeesInput.schema.ts -const __makeSchema_AttendancePoolCreateNestedOneWithoutAttendeesInput_schema = () => z.object({ - create: z.union([AttendancePoolCreateWithoutAttendeesInputObjectSchema, AttendancePoolUncheckedCreateWithoutAttendeesInputObjectSchema]).optional(), - get connectOrCreate(){ return AttendancePoolCreateOrConnectWithoutAttendeesInputObjectSchema.optional(); }, - get connect(){ return AttendancePoolWhereUniqueInputObjectSchema.optional(); } -}).strict(); -export const AttendancePoolCreateNestedOneWithoutAttendeesInputObjectSchema: z.ZodType = z.lazy(__makeSchema_AttendancePoolCreateNestedOneWithoutAttendeesInput_schema) as unknown as z.ZodType; -export const AttendancePoolCreateNestedOneWithoutAttendeesInputObjectZodSchema = z.lazy(__makeSchema_AttendancePoolCreateNestedOneWithoutAttendeesInput_schema); - - -// File: UserCreateNestedOneWithoutAttendeesRefundedInput.schema.ts -const __makeSchema_UserCreateNestedOneWithoutAttendeesRefundedInput_schema = () => z.object({ - create: z.union([UserCreateWithoutAttendeesRefundedInputObjectSchema, UserUncheckedCreateWithoutAttendeesRefundedInputObjectSchema]).optional(), - get connectOrCreate(){ return UserCreateOrConnectWithoutAttendeesRefundedInputObjectSchema.optional(); }, - get connect(){ return UserWhereUniqueInputObjectSchema.optional(); } -}).strict(); -export const UserCreateNestedOneWithoutAttendeesRefundedInputObjectSchema: z.ZodType = z.lazy(__makeSchema_UserCreateNestedOneWithoutAttendeesRefundedInput_schema) as unknown as z.ZodType; -export const UserCreateNestedOneWithoutAttendeesRefundedInputObjectZodSchema = z.lazy(__makeSchema_UserCreateNestedOneWithoutAttendeesRefundedInput_schema); - - -// File: FeedbackFormAnswerUncheckedCreateNestedOneWithoutAttendeeInput.schema.ts -const __makeSchema_FeedbackFormAnswerUncheckedCreateNestedOneWithoutAttendeeInput_schema = () => z.object({ - create: z.union([FeedbackFormAnswerCreateWithoutAttendeeInputObjectSchema, FeedbackFormAnswerUncheckedCreateWithoutAttendeeInputObjectSchema]).optional(), - get connectOrCreate(){ return FeedbackFormAnswerCreateOrConnectWithoutAttendeeInputObjectSchema.optional(); }, - get connect(){ return FeedbackFormAnswerWhereUniqueInputObjectSchema.optional(); } -}).strict(); -export const FeedbackFormAnswerUncheckedCreateNestedOneWithoutAttendeeInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackFormAnswerUncheckedCreateNestedOneWithoutAttendeeInput_schema) as unknown as z.ZodType; -export const FeedbackFormAnswerUncheckedCreateNestedOneWithoutAttendeeInputObjectZodSchema = z.lazy(__makeSchema_FeedbackFormAnswerUncheckedCreateNestedOneWithoutAttendeeInput_schema); - - -// File: FeedbackFormAnswerUpdateOneWithoutAttendeeNestedInput.schema.ts -const __makeSchema_FeedbackFormAnswerUpdateOneWithoutAttendeeNestedInput_schema = () => z.object({ - create: z.union([FeedbackFormAnswerCreateWithoutAttendeeInputObjectSchema, FeedbackFormAnswerUncheckedCreateWithoutAttendeeInputObjectSchema]).optional(), - get connectOrCreate(){ return FeedbackFormAnswerCreateOrConnectWithoutAttendeeInputObjectSchema.optional(); }, - get upsert(){ return FeedbackFormAnswerUpsertWithoutAttendeeInputObjectSchema.optional(); }, - disconnect: z.union([z.boolean(), FeedbackFormAnswerWhereInputObjectSchema]).optional(), - delete: z.union([z.boolean(), FeedbackFormAnswerWhereInputObjectSchema]).optional(), - get connect(){ return FeedbackFormAnswerWhereUniqueInputObjectSchema.optional(); }, - update: z.union([FeedbackFormAnswerUpdateToOneWithWhereWithoutAttendeeInputObjectSchema, FeedbackFormAnswerUpdateWithoutAttendeeInputObjectSchema, FeedbackFormAnswerUncheckedUpdateWithoutAttendeeInputObjectSchema]).optional() -}).strict(); -export const FeedbackFormAnswerUpdateOneWithoutAttendeeNestedInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackFormAnswerUpdateOneWithoutAttendeeNestedInput_schema) as unknown as z.ZodType; -export const FeedbackFormAnswerUpdateOneWithoutAttendeeNestedInputObjectZodSchema = z.lazy(__makeSchema_FeedbackFormAnswerUpdateOneWithoutAttendeeNestedInput_schema); - - -// File: AttendanceUpdateOneRequiredWithoutAttendeesNestedInput.schema.ts -const __makeSchema_AttendanceUpdateOneRequiredWithoutAttendeesNestedInput_schema = () => z.object({ - create: z.union([AttendanceCreateWithoutAttendeesInputObjectSchema, AttendanceUncheckedCreateWithoutAttendeesInputObjectSchema]).optional(), - get connectOrCreate(){ return AttendanceCreateOrConnectWithoutAttendeesInputObjectSchema.optional(); }, - get upsert(){ return AttendanceUpsertWithoutAttendeesInputObjectSchema.optional(); }, - get connect(){ return AttendanceWhereUniqueInputObjectSchema.optional(); }, - update: z.union([AttendanceUpdateToOneWithWhereWithoutAttendeesInputObjectSchema, AttendanceUpdateWithoutAttendeesInputObjectSchema, AttendanceUncheckedUpdateWithoutAttendeesInputObjectSchema]).optional() -}).strict(); -export const AttendanceUpdateOneRequiredWithoutAttendeesNestedInputObjectSchema: z.ZodType = z.lazy(__makeSchema_AttendanceUpdateOneRequiredWithoutAttendeesNestedInput_schema) as unknown as z.ZodType; -export const AttendanceUpdateOneRequiredWithoutAttendeesNestedInputObjectZodSchema = z.lazy(__makeSchema_AttendanceUpdateOneRequiredWithoutAttendeesNestedInput_schema); - - -// File: UserUpdateOneRequiredWithoutAttendeeNestedInput.schema.ts -const __makeSchema_UserUpdateOneRequiredWithoutAttendeeNestedInput_schema = () => z.object({ - create: z.union([UserCreateWithoutAttendeeInputObjectSchema, UserUncheckedCreateWithoutAttendeeInputObjectSchema]).optional(), - get connectOrCreate(){ return UserCreateOrConnectWithoutAttendeeInputObjectSchema.optional(); }, - get upsert(){ return UserUpsertWithoutAttendeeInputObjectSchema.optional(); }, - get connect(){ return UserWhereUniqueInputObjectSchema.optional(); }, - update: z.union([UserUpdateToOneWithWhereWithoutAttendeeInputObjectSchema, UserUpdateWithoutAttendeeInputObjectSchema, UserUncheckedUpdateWithoutAttendeeInputObjectSchema]).optional() -}).strict(); -export const UserUpdateOneRequiredWithoutAttendeeNestedInputObjectSchema: z.ZodType = z.lazy(__makeSchema_UserUpdateOneRequiredWithoutAttendeeNestedInput_schema) as unknown as z.ZodType; -export const UserUpdateOneRequiredWithoutAttendeeNestedInputObjectZodSchema = z.lazy(__makeSchema_UserUpdateOneRequiredWithoutAttendeeNestedInput_schema); - - -// File: AttendancePoolUpdateOneRequiredWithoutAttendeesNestedInput.schema.ts -const __makeSchema_AttendancePoolUpdateOneRequiredWithoutAttendeesNestedInput_schema = () => z.object({ - create: z.union([AttendancePoolCreateWithoutAttendeesInputObjectSchema, AttendancePoolUncheckedCreateWithoutAttendeesInputObjectSchema]).optional(), - get connectOrCreate(){ return AttendancePoolCreateOrConnectWithoutAttendeesInputObjectSchema.optional(); }, - get upsert(){ return AttendancePoolUpsertWithoutAttendeesInputObjectSchema.optional(); }, - get connect(){ return AttendancePoolWhereUniqueInputObjectSchema.optional(); }, - update: z.union([AttendancePoolUpdateToOneWithWhereWithoutAttendeesInputObjectSchema, AttendancePoolUpdateWithoutAttendeesInputObjectSchema, AttendancePoolUncheckedUpdateWithoutAttendeesInputObjectSchema]).optional() -}).strict(); -export const AttendancePoolUpdateOneRequiredWithoutAttendeesNestedInputObjectSchema: z.ZodType = z.lazy(__makeSchema_AttendancePoolUpdateOneRequiredWithoutAttendeesNestedInput_schema) as unknown as z.ZodType; -export const AttendancePoolUpdateOneRequiredWithoutAttendeesNestedInputObjectZodSchema = z.lazy(__makeSchema_AttendancePoolUpdateOneRequiredWithoutAttendeesNestedInput_schema); - - -// File: UserUpdateOneWithoutAttendeesRefundedNestedInput.schema.ts -const __makeSchema_UserUpdateOneWithoutAttendeesRefundedNestedInput_schema = () => z.object({ - create: z.union([UserCreateWithoutAttendeesRefundedInputObjectSchema, UserUncheckedCreateWithoutAttendeesRefundedInputObjectSchema]).optional(), - get connectOrCreate(){ return UserCreateOrConnectWithoutAttendeesRefundedInputObjectSchema.optional(); }, - get upsert(){ return UserUpsertWithoutAttendeesRefundedInputObjectSchema.optional(); }, - disconnect: z.union([z.boolean(), UserWhereInputObjectSchema]).optional(), - delete: z.union([z.boolean(), UserWhereInputObjectSchema]).optional(), - get connect(){ return UserWhereUniqueInputObjectSchema.optional(); }, - update: z.union([UserUpdateToOneWithWhereWithoutAttendeesRefundedInputObjectSchema, UserUpdateWithoutAttendeesRefundedInputObjectSchema, UserUncheckedUpdateWithoutAttendeesRefundedInputObjectSchema]).optional() -}).strict(); -export const UserUpdateOneWithoutAttendeesRefundedNestedInputObjectSchema: z.ZodType = z.lazy(__makeSchema_UserUpdateOneWithoutAttendeesRefundedNestedInput_schema) as unknown as z.ZodType; -export const UserUpdateOneWithoutAttendeesRefundedNestedInputObjectZodSchema = z.lazy(__makeSchema_UserUpdateOneWithoutAttendeesRefundedNestedInput_schema); - - -// File: FeedbackFormAnswerUncheckedUpdateOneWithoutAttendeeNestedInput.schema.ts -const __makeSchema_FeedbackFormAnswerUncheckedUpdateOneWithoutAttendeeNestedInput_schema = () => z.object({ - create: z.union([FeedbackFormAnswerCreateWithoutAttendeeInputObjectSchema, FeedbackFormAnswerUncheckedCreateWithoutAttendeeInputObjectSchema]).optional(), - get connectOrCreate(){ return FeedbackFormAnswerCreateOrConnectWithoutAttendeeInputObjectSchema.optional(); }, - get upsert(){ return FeedbackFormAnswerUpsertWithoutAttendeeInputObjectSchema.optional(); }, - disconnect: z.union([z.boolean(), FeedbackFormAnswerWhereInputObjectSchema]).optional(), - delete: z.union([z.boolean(), FeedbackFormAnswerWhereInputObjectSchema]).optional(), - get connect(){ return FeedbackFormAnswerWhereUniqueInputObjectSchema.optional(); }, - update: z.union([FeedbackFormAnswerUpdateToOneWithWhereWithoutAttendeeInputObjectSchema, FeedbackFormAnswerUpdateWithoutAttendeeInputObjectSchema, FeedbackFormAnswerUncheckedUpdateWithoutAttendeeInputObjectSchema]).optional() -}).strict(); -export const FeedbackFormAnswerUncheckedUpdateOneWithoutAttendeeNestedInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackFormAnswerUncheckedUpdateOneWithoutAttendeeNestedInput_schema) as unknown as z.ZodType; -export const FeedbackFormAnswerUncheckedUpdateOneWithoutAttendeeNestedInputObjectZodSchema = z.lazy(__makeSchema_FeedbackFormAnswerUncheckedUpdateOneWithoutAttendeeNestedInput_schema); - - -// File: FeedbackFormCreateNestedOneWithoutEventInput.schema.ts -const __makeSchema_FeedbackFormCreateNestedOneWithoutEventInput_schema = () => z.object({ - create: z.union([FeedbackFormCreateWithoutEventInputObjectSchema, FeedbackFormUncheckedCreateWithoutEventInputObjectSchema]).optional(), - get connectOrCreate(){ return FeedbackFormCreateOrConnectWithoutEventInputObjectSchema.optional(); }, - get connect(){ return FeedbackFormWhereUniqueInputObjectSchema.optional(); } -}).strict(); -export const FeedbackFormCreateNestedOneWithoutEventInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackFormCreateNestedOneWithoutEventInput_schema) as unknown as z.ZodType; -export const FeedbackFormCreateNestedOneWithoutEventInputObjectZodSchema = z.lazy(__makeSchema_FeedbackFormCreateNestedOneWithoutEventInput_schema); - - -// File: FadderukeCreateNestedOneWithoutEventInput.schema.ts -const __makeSchema_FadderukeCreateNestedOneWithoutEventInput_schema = () => z.object({ - create: z.union([FadderukeCreateWithoutEventInputObjectSchema, FadderukeUncheckedCreateWithoutEventInputObjectSchema]).optional(), - get connectOrCreate(){ return FadderukeCreateOrConnectWithoutEventInputObjectSchema.optional(); }, - get connect(){ return FadderukeWhereUniqueInputObjectSchema.optional(); } -}).strict(); -export const FadderukeCreateNestedOneWithoutEventInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FadderukeCreateNestedOneWithoutEventInput_schema) as unknown as z.ZodType; -export const FadderukeCreateNestedOneWithoutEventInputObjectZodSchema = z.lazy(__makeSchema_FadderukeCreateNestedOneWithoutEventInput_schema); - - -// File: AttendanceCreateNestedOneWithoutEventsInput.schema.ts -const __makeSchema_AttendanceCreateNestedOneWithoutEventsInput_schema = () => z.object({ - create: z.union([AttendanceCreateWithoutEventsInputObjectSchema, AttendanceUncheckedCreateWithoutEventsInputObjectSchema]).optional(), - get connectOrCreate(){ return AttendanceCreateOrConnectWithoutEventsInputObjectSchema.optional(); }, - get connect(){ return AttendanceWhereUniqueInputObjectSchema.optional(); } -}).strict(); -export const AttendanceCreateNestedOneWithoutEventsInputObjectSchema: z.ZodType = z.lazy(__makeSchema_AttendanceCreateNestedOneWithoutEventsInput_schema) as unknown as z.ZodType; -export const AttendanceCreateNestedOneWithoutEventsInputObjectZodSchema = z.lazy(__makeSchema_AttendanceCreateNestedOneWithoutEventsInput_schema); - - -// File: EventCreateNestedOneWithoutChildrenInput.schema.ts -const __makeSchema_EventCreateNestedOneWithoutChildrenInput_schema = () => z.object({ - create: z.union([EventCreateWithoutChildrenInputObjectSchema, EventUncheckedCreateWithoutChildrenInputObjectSchema]).optional(), - get connectOrCreate(){ return EventCreateOrConnectWithoutChildrenInputObjectSchema.optional(); }, - get connect(){ return EventWhereUniqueInputObjectSchema.optional(); } -}).strict(); -export const EventCreateNestedOneWithoutChildrenInputObjectSchema: z.ZodType = z.lazy(__makeSchema_EventCreateNestedOneWithoutChildrenInput_schema) as unknown as z.ZodType; -export const EventCreateNestedOneWithoutChildrenInputObjectZodSchema = z.lazy(__makeSchema_EventCreateNestedOneWithoutChildrenInput_schema); - - -// File: EventCreateNestedManyWithoutParentInput.schema.ts -const __makeSchema_EventCreateNestedManyWithoutParentInput_schema = () => z.object({ - create: z.union([EventCreateWithoutParentInputObjectSchema, EventCreateWithoutParentInputObjectSchema.array(), EventUncheckedCreateWithoutParentInputObjectSchema, EventUncheckedCreateWithoutParentInputObjectSchema.array()]).optional(), - connectOrCreate: z.union([EventCreateOrConnectWithoutParentInputObjectSchema, EventCreateOrConnectWithoutParentInputObjectSchema.array()]).optional(), - get createMany(){ return EventCreateManyParentInputEnvelopeObjectSchema.optional(); }, - connect: z.union([EventWhereUniqueInputObjectSchema, EventWhereUniqueInputObjectSchema.array()]).optional() -}).strict(); -export const EventCreateNestedManyWithoutParentInputObjectSchema: z.ZodType = z.lazy(__makeSchema_EventCreateNestedManyWithoutParentInput_schema) as unknown as z.ZodType; -export const EventCreateNestedManyWithoutParentInputObjectZodSchema = z.lazy(__makeSchema_EventCreateNestedManyWithoutParentInput_schema); - - -// File: ContestCreateNestedOneWithoutEventsInput.schema.ts -const __makeSchema_ContestCreateNestedOneWithoutEventsInput_schema = () => z.object({ - create: z.union([ContestCreateWithoutEventsInputObjectSchema, ContestUncheckedCreateWithoutEventsInputObjectSchema]).optional(), - get connectOrCreate(){ return ContestCreateOrConnectWithoutEventsInputObjectSchema.optional(); }, - get connect(){ return ContestWhereUniqueInputObjectSchema.optional(); } -}).strict(); -export const ContestCreateNestedOneWithoutEventsInputObjectSchema: z.ZodType = z.lazy(__makeSchema_ContestCreateNestedOneWithoutEventsInput_schema) as unknown as z.ZodType; -export const ContestCreateNestedOneWithoutEventsInputObjectZodSchema = z.lazy(__makeSchema_ContestCreateNestedOneWithoutEventsInput_schema); - - -// File: EventCompanyCreateNestedManyWithoutEventInput.schema.ts -const __makeSchema_EventCompanyCreateNestedManyWithoutEventInput_schema = () => z.object({ - create: z.union([EventCompanyCreateWithoutEventInputObjectSchema, EventCompanyCreateWithoutEventInputObjectSchema.array(), EventCompanyUncheckedCreateWithoutEventInputObjectSchema, EventCompanyUncheckedCreateWithoutEventInputObjectSchema.array()]).optional(), - connectOrCreate: z.union([EventCompanyCreateOrConnectWithoutEventInputObjectSchema, EventCompanyCreateOrConnectWithoutEventInputObjectSchema.array()]).optional(), - get createMany(){ return EventCompanyCreateManyEventInputEnvelopeObjectSchema.optional(); }, - connect: z.union([EventCompanyWhereUniqueInputObjectSchema, EventCompanyWhereUniqueInputObjectSchema.array()]).optional() -}).strict(); -export const EventCompanyCreateNestedManyWithoutEventInputObjectSchema: z.ZodType = z.lazy(__makeSchema_EventCompanyCreateNestedManyWithoutEventInput_schema) as unknown as z.ZodType; -export const EventCompanyCreateNestedManyWithoutEventInputObjectZodSchema = z.lazy(__makeSchema_EventCompanyCreateNestedManyWithoutEventInput_schema); - - -// File: EventHostingGroupCreateNestedManyWithoutEventInput.schema.ts -const __makeSchema_EventHostingGroupCreateNestedManyWithoutEventInput_schema = () => z.object({ - create: z.union([EventHostingGroupCreateWithoutEventInputObjectSchema, EventHostingGroupCreateWithoutEventInputObjectSchema.array(), EventHostingGroupUncheckedCreateWithoutEventInputObjectSchema, EventHostingGroupUncheckedCreateWithoutEventInputObjectSchema.array()]).optional(), - connectOrCreate: z.union([EventHostingGroupCreateOrConnectWithoutEventInputObjectSchema, EventHostingGroupCreateOrConnectWithoutEventInputObjectSchema.array()]).optional(), - get createMany(){ return EventHostingGroupCreateManyEventInputEnvelopeObjectSchema.optional(); }, - connect: z.union([EventHostingGroupWhereUniqueInputObjectSchema, EventHostingGroupWhereUniqueInputObjectSchema.array()]).optional() -}).strict(); -export const EventHostingGroupCreateNestedManyWithoutEventInputObjectSchema: z.ZodType = z.lazy(__makeSchema_EventHostingGroupCreateNestedManyWithoutEventInput_schema) as unknown as z.ZodType; -export const EventHostingGroupCreateNestedManyWithoutEventInputObjectZodSchema = z.lazy(__makeSchema_EventHostingGroupCreateNestedManyWithoutEventInput_schema); - - -// File: DeregisterReasonCreateNestedManyWithoutEventInput.schema.ts -const __makeSchema_DeregisterReasonCreateNestedManyWithoutEventInput_schema = () => z.object({ - create: z.union([DeregisterReasonCreateWithoutEventInputObjectSchema, DeregisterReasonCreateWithoutEventInputObjectSchema.array(), DeregisterReasonUncheckedCreateWithoutEventInputObjectSchema, DeregisterReasonUncheckedCreateWithoutEventInputObjectSchema.array()]).optional(), - connectOrCreate: z.union([DeregisterReasonCreateOrConnectWithoutEventInputObjectSchema, DeregisterReasonCreateOrConnectWithoutEventInputObjectSchema.array()]).optional(), - get createMany(){ return DeregisterReasonCreateManyEventInputEnvelopeObjectSchema.optional(); }, - connect: z.union([DeregisterReasonWhereUniqueInputObjectSchema, DeregisterReasonWhereUniqueInputObjectSchema.array()]).optional() -}).strict(); -export const DeregisterReasonCreateNestedManyWithoutEventInputObjectSchema: z.ZodType = z.lazy(__makeSchema_DeregisterReasonCreateNestedManyWithoutEventInput_schema) as unknown as z.ZodType; -export const DeregisterReasonCreateNestedManyWithoutEventInputObjectZodSchema = z.lazy(__makeSchema_DeregisterReasonCreateNestedManyWithoutEventInput_schema); - - -// File: FeedbackFormUncheckedCreateNestedOneWithoutEventInput.schema.ts -const __makeSchema_FeedbackFormUncheckedCreateNestedOneWithoutEventInput_schema = () => z.object({ - create: z.union([FeedbackFormCreateWithoutEventInputObjectSchema, FeedbackFormUncheckedCreateWithoutEventInputObjectSchema]).optional(), - get connectOrCreate(){ return FeedbackFormCreateOrConnectWithoutEventInputObjectSchema.optional(); }, - get connect(){ return FeedbackFormWhereUniqueInputObjectSchema.optional(); } -}).strict(); -export const FeedbackFormUncheckedCreateNestedOneWithoutEventInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackFormUncheckedCreateNestedOneWithoutEventInput_schema) as unknown as z.ZodType; -export const FeedbackFormUncheckedCreateNestedOneWithoutEventInputObjectZodSchema = z.lazy(__makeSchema_FeedbackFormUncheckedCreateNestedOneWithoutEventInput_schema); - - -// File: FadderukeUncheckedCreateNestedOneWithoutEventInput.schema.ts -const __makeSchema_FadderukeUncheckedCreateNestedOneWithoutEventInput_schema = () => z.object({ - create: z.union([FadderukeCreateWithoutEventInputObjectSchema, FadderukeUncheckedCreateWithoutEventInputObjectSchema]).optional(), - get connectOrCreate(){ return FadderukeCreateOrConnectWithoutEventInputObjectSchema.optional(); }, - get connect(){ return FadderukeWhereUniqueInputObjectSchema.optional(); } -}).strict(); -export const FadderukeUncheckedCreateNestedOneWithoutEventInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FadderukeUncheckedCreateNestedOneWithoutEventInput_schema) as unknown as z.ZodType; -export const FadderukeUncheckedCreateNestedOneWithoutEventInputObjectZodSchema = z.lazy(__makeSchema_FadderukeUncheckedCreateNestedOneWithoutEventInput_schema); - - -// File: EventUncheckedCreateNestedManyWithoutParentInput.schema.ts -const __makeSchema_EventUncheckedCreateNestedManyWithoutParentInput_schema = () => z.object({ - create: z.union([EventCreateWithoutParentInputObjectSchema, EventCreateWithoutParentInputObjectSchema.array(), EventUncheckedCreateWithoutParentInputObjectSchema, EventUncheckedCreateWithoutParentInputObjectSchema.array()]).optional(), - connectOrCreate: z.union([EventCreateOrConnectWithoutParentInputObjectSchema, EventCreateOrConnectWithoutParentInputObjectSchema.array()]).optional(), - get createMany(){ return EventCreateManyParentInputEnvelopeObjectSchema.optional(); }, - connect: z.union([EventWhereUniqueInputObjectSchema, EventWhereUniqueInputObjectSchema.array()]).optional() -}).strict(); -export const EventUncheckedCreateNestedManyWithoutParentInputObjectSchema: z.ZodType = z.lazy(__makeSchema_EventUncheckedCreateNestedManyWithoutParentInput_schema) as unknown as z.ZodType; -export const EventUncheckedCreateNestedManyWithoutParentInputObjectZodSchema = z.lazy(__makeSchema_EventUncheckedCreateNestedManyWithoutParentInput_schema); - - -// File: EventCompanyUncheckedCreateNestedManyWithoutEventInput.schema.ts -const __makeSchema_EventCompanyUncheckedCreateNestedManyWithoutEventInput_schema = () => z.object({ - create: z.union([EventCompanyCreateWithoutEventInputObjectSchema, EventCompanyCreateWithoutEventInputObjectSchema.array(), EventCompanyUncheckedCreateWithoutEventInputObjectSchema, EventCompanyUncheckedCreateWithoutEventInputObjectSchema.array()]).optional(), - connectOrCreate: z.union([EventCompanyCreateOrConnectWithoutEventInputObjectSchema, EventCompanyCreateOrConnectWithoutEventInputObjectSchema.array()]).optional(), - get createMany(){ return EventCompanyCreateManyEventInputEnvelopeObjectSchema.optional(); }, - connect: z.union([EventCompanyWhereUniqueInputObjectSchema, EventCompanyWhereUniqueInputObjectSchema.array()]).optional() -}).strict(); -export const EventCompanyUncheckedCreateNestedManyWithoutEventInputObjectSchema: z.ZodType = z.lazy(__makeSchema_EventCompanyUncheckedCreateNestedManyWithoutEventInput_schema) as unknown as z.ZodType; -export const EventCompanyUncheckedCreateNestedManyWithoutEventInputObjectZodSchema = z.lazy(__makeSchema_EventCompanyUncheckedCreateNestedManyWithoutEventInput_schema); - - -// File: EventHostingGroupUncheckedCreateNestedManyWithoutEventInput.schema.ts -const __makeSchema_EventHostingGroupUncheckedCreateNestedManyWithoutEventInput_schema = () => z.object({ - create: z.union([EventHostingGroupCreateWithoutEventInputObjectSchema, EventHostingGroupCreateWithoutEventInputObjectSchema.array(), EventHostingGroupUncheckedCreateWithoutEventInputObjectSchema, EventHostingGroupUncheckedCreateWithoutEventInputObjectSchema.array()]).optional(), - connectOrCreate: z.union([EventHostingGroupCreateOrConnectWithoutEventInputObjectSchema, EventHostingGroupCreateOrConnectWithoutEventInputObjectSchema.array()]).optional(), - get createMany(){ return EventHostingGroupCreateManyEventInputEnvelopeObjectSchema.optional(); }, - connect: z.union([EventHostingGroupWhereUniqueInputObjectSchema, EventHostingGroupWhereUniqueInputObjectSchema.array()]).optional() -}).strict(); -export const EventHostingGroupUncheckedCreateNestedManyWithoutEventInputObjectSchema: z.ZodType = z.lazy(__makeSchema_EventHostingGroupUncheckedCreateNestedManyWithoutEventInput_schema) as unknown as z.ZodType; -export const EventHostingGroupUncheckedCreateNestedManyWithoutEventInputObjectZodSchema = z.lazy(__makeSchema_EventHostingGroupUncheckedCreateNestedManyWithoutEventInput_schema); - - -// File: DeregisterReasonUncheckedCreateNestedManyWithoutEventInput.schema.ts -const __makeSchema_DeregisterReasonUncheckedCreateNestedManyWithoutEventInput_schema = () => z.object({ - create: z.union([DeregisterReasonCreateWithoutEventInputObjectSchema, DeregisterReasonCreateWithoutEventInputObjectSchema.array(), DeregisterReasonUncheckedCreateWithoutEventInputObjectSchema, DeregisterReasonUncheckedCreateWithoutEventInputObjectSchema.array()]).optional(), - connectOrCreate: z.union([DeregisterReasonCreateOrConnectWithoutEventInputObjectSchema, DeregisterReasonCreateOrConnectWithoutEventInputObjectSchema.array()]).optional(), - get createMany(){ return DeregisterReasonCreateManyEventInputEnvelopeObjectSchema.optional(); }, - connect: z.union([DeregisterReasonWhereUniqueInputObjectSchema, DeregisterReasonWhereUniqueInputObjectSchema.array()]).optional() -}).strict(); -export const DeregisterReasonUncheckedCreateNestedManyWithoutEventInputObjectSchema: z.ZodType = z.lazy(__makeSchema_DeregisterReasonUncheckedCreateNestedManyWithoutEventInput_schema) as unknown as z.ZodType; -export const DeregisterReasonUncheckedCreateNestedManyWithoutEventInputObjectZodSchema = z.lazy(__makeSchema_DeregisterReasonUncheckedCreateNestedManyWithoutEventInput_schema); - - -// File: EnumEventStatusFieldUpdateOperationsInput.schema.ts -const __makeSchema_EnumEventStatusFieldUpdateOperationsInput_schema = () => z.object({ - set: EventStatusSchema.optional() -}).strict(); -export const EnumEventStatusFieldUpdateOperationsInputObjectSchema: z.ZodType = z.lazy(__makeSchema_EnumEventStatusFieldUpdateOperationsInput_schema) as unknown as z.ZodType; -export const EnumEventStatusFieldUpdateOperationsInputObjectZodSchema = z.lazy(__makeSchema_EnumEventStatusFieldUpdateOperationsInput_schema); - - -// File: EnumEventTypeFieldUpdateOperationsInput.schema.ts -const __makeSchema_EnumEventTypeFieldUpdateOperationsInput_schema = () => z.object({ - set: EventTypeSchema.optional() -}).strict(); -export const EnumEventTypeFieldUpdateOperationsInputObjectSchema: z.ZodType = z.lazy(__makeSchema_EnumEventTypeFieldUpdateOperationsInput_schema) as unknown as z.ZodType; -export const EnumEventTypeFieldUpdateOperationsInputObjectZodSchema = z.lazy(__makeSchema_EnumEventTypeFieldUpdateOperationsInput_schema); - - -// File: FeedbackFormUpdateOneWithoutEventNestedInput.schema.ts -const __makeSchema_FeedbackFormUpdateOneWithoutEventNestedInput_schema = () => z.object({ - create: z.union([FeedbackFormCreateWithoutEventInputObjectSchema, FeedbackFormUncheckedCreateWithoutEventInputObjectSchema]).optional(), - get connectOrCreate(){ return FeedbackFormCreateOrConnectWithoutEventInputObjectSchema.optional(); }, - get upsert(){ return FeedbackFormUpsertWithoutEventInputObjectSchema.optional(); }, - disconnect: z.union([z.boolean(), FeedbackFormWhereInputObjectSchema]).optional(), - delete: z.union([z.boolean(), FeedbackFormWhereInputObjectSchema]).optional(), - get connect(){ return FeedbackFormWhereUniqueInputObjectSchema.optional(); }, - update: z.union([FeedbackFormUpdateToOneWithWhereWithoutEventInputObjectSchema, FeedbackFormUpdateWithoutEventInputObjectSchema, FeedbackFormUncheckedUpdateWithoutEventInputObjectSchema]).optional() -}).strict(); -export const FeedbackFormUpdateOneWithoutEventNestedInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackFormUpdateOneWithoutEventNestedInput_schema) as unknown as z.ZodType; -export const FeedbackFormUpdateOneWithoutEventNestedInputObjectZodSchema = z.lazy(__makeSchema_FeedbackFormUpdateOneWithoutEventNestedInput_schema); - - -// File: FadderukeUpdateOneWithoutEventNestedInput.schema.ts -const __makeSchema_FadderukeUpdateOneWithoutEventNestedInput_schema = () => z.object({ - create: z.union([FadderukeCreateWithoutEventInputObjectSchema, FadderukeUncheckedCreateWithoutEventInputObjectSchema]).optional(), - get connectOrCreate(){ return FadderukeCreateOrConnectWithoutEventInputObjectSchema.optional(); }, - get upsert(){ return FadderukeUpsertWithoutEventInputObjectSchema.optional(); }, - disconnect: z.union([z.boolean(), FadderukeWhereInputObjectSchema]).optional(), - delete: z.union([z.boolean(), FadderukeWhereInputObjectSchema]).optional(), - get connect(){ return FadderukeWhereUniqueInputObjectSchema.optional(); }, - update: z.union([FadderukeUpdateToOneWithWhereWithoutEventInputObjectSchema, FadderukeUpdateWithoutEventInputObjectSchema, FadderukeUncheckedUpdateWithoutEventInputObjectSchema]).optional() -}).strict(); -export const FadderukeUpdateOneWithoutEventNestedInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FadderukeUpdateOneWithoutEventNestedInput_schema) as unknown as z.ZodType; -export const FadderukeUpdateOneWithoutEventNestedInputObjectZodSchema = z.lazy(__makeSchema_FadderukeUpdateOneWithoutEventNestedInput_schema); - - -// File: AttendanceUpdateOneWithoutEventsNestedInput.schema.ts -const __makeSchema_AttendanceUpdateOneWithoutEventsNestedInput_schema = () => z.object({ - create: z.union([AttendanceCreateWithoutEventsInputObjectSchema, AttendanceUncheckedCreateWithoutEventsInputObjectSchema]).optional(), - get connectOrCreate(){ return AttendanceCreateOrConnectWithoutEventsInputObjectSchema.optional(); }, - get upsert(){ return AttendanceUpsertWithoutEventsInputObjectSchema.optional(); }, - disconnect: z.union([z.boolean(), AttendanceWhereInputObjectSchema]).optional(), - delete: z.union([z.boolean(), AttendanceWhereInputObjectSchema]).optional(), - get connect(){ return AttendanceWhereUniqueInputObjectSchema.optional(); }, - update: z.union([AttendanceUpdateToOneWithWhereWithoutEventsInputObjectSchema, AttendanceUpdateWithoutEventsInputObjectSchema, AttendanceUncheckedUpdateWithoutEventsInputObjectSchema]).optional() -}).strict(); -export const AttendanceUpdateOneWithoutEventsNestedInputObjectSchema: z.ZodType = z.lazy(__makeSchema_AttendanceUpdateOneWithoutEventsNestedInput_schema) as unknown as z.ZodType; -export const AttendanceUpdateOneWithoutEventsNestedInputObjectZodSchema = z.lazy(__makeSchema_AttendanceUpdateOneWithoutEventsNestedInput_schema); - - -// File: EventUpdateOneWithoutChildrenNestedInput.schema.ts -const __makeSchema_EventUpdateOneWithoutChildrenNestedInput_schema = () => z.object({ - create: z.union([EventCreateWithoutChildrenInputObjectSchema, EventUncheckedCreateWithoutChildrenInputObjectSchema]).optional(), - get connectOrCreate(){ return EventCreateOrConnectWithoutChildrenInputObjectSchema.optional(); }, - get upsert(){ return EventUpsertWithoutChildrenInputObjectSchema.optional(); }, - disconnect: z.union([z.boolean(), EventWhereInputObjectSchema]).optional(), - delete: z.union([z.boolean(), EventWhereInputObjectSchema]).optional(), - get connect(){ return EventWhereUniqueInputObjectSchema.optional(); }, - update: z.union([EventUpdateToOneWithWhereWithoutChildrenInputObjectSchema, EventUpdateWithoutChildrenInputObjectSchema, EventUncheckedUpdateWithoutChildrenInputObjectSchema]).optional() -}).strict(); -export const EventUpdateOneWithoutChildrenNestedInputObjectSchema: z.ZodType = z.lazy(__makeSchema_EventUpdateOneWithoutChildrenNestedInput_schema) as unknown as z.ZodType; -export const EventUpdateOneWithoutChildrenNestedInputObjectZodSchema = z.lazy(__makeSchema_EventUpdateOneWithoutChildrenNestedInput_schema); - - -// File: EventUpdateManyWithoutParentNestedInput.schema.ts -const __makeSchema_EventUpdateManyWithoutParentNestedInput_schema = () => z.object({ - create: z.union([EventCreateWithoutParentInputObjectSchema, EventCreateWithoutParentInputObjectSchema.array(), EventUncheckedCreateWithoutParentInputObjectSchema, EventUncheckedCreateWithoutParentInputObjectSchema.array()]).optional(), - connectOrCreate: z.union([EventCreateOrConnectWithoutParentInputObjectSchema, EventCreateOrConnectWithoutParentInputObjectSchema.array()]).optional(), - upsert: z.union([EventUpsertWithWhereUniqueWithoutParentInputObjectSchema, EventUpsertWithWhereUniqueWithoutParentInputObjectSchema.array()]).optional(), - get createMany(){ return EventCreateManyParentInputEnvelopeObjectSchema.optional(); }, - set: z.union([EventWhereUniqueInputObjectSchema, EventWhereUniqueInputObjectSchema.array()]).optional(), - disconnect: z.union([EventWhereUniqueInputObjectSchema, EventWhereUniqueInputObjectSchema.array()]).optional(), - delete: z.union([EventWhereUniqueInputObjectSchema, EventWhereUniqueInputObjectSchema.array()]).optional(), - connect: z.union([EventWhereUniqueInputObjectSchema, EventWhereUniqueInputObjectSchema.array()]).optional(), - update: z.union([EventUpdateWithWhereUniqueWithoutParentInputObjectSchema, EventUpdateWithWhereUniqueWithoutParentInputObjectSchema.array()]).optional(), - updateMany: z.union([EventUpdateManyWithWhereWithoutParentInputObjectSchema, EventUpdateManyWithWhereWithoutParentInputObjectSchema.array()]).optional(), - deleteMany: z.union([EventScalarWhereInputObjectSchema, EventScalarWhereInputObjectSchema.array()]).optional() -}).strict(); -export const EventUpdateManyWithoutParentNestedInputObjectSchema: z.ZodType = z.lazy(__makeSchema_EventUpdateManyWithoutParentNestedInput_schema) as unknown as z.ZodType; -export const EventUpdateManyWithoutParentNestedInputObjectZodSchema = z.lazy(__makeSchema_EventUpdateManyWithoutParentNestedInput_schema); - - -// File: ContestUpdateOneWithoutEventsNestedInput.schema.ts -const __makeSchema_ContestUpdateOneWithoutEventsNestedInput_schema = () => z.object({ - create: z.union([ContestCreateWithoutEventsInputObjectSchema, ContestUncheckedCreateWithoutEventsInputObjectSchema]).optional(), - get connectOrCreate(){ return ContestCreateOrConnectWithoutEventsInputObjectSchema.optional(); }, - get upsert(){ return ContestUpsertWithoutEventsInputObjectSchema.optional(); }, - disconnect: z.union([z.boolean(), ContestWhereInputObjectSchema]).optional(), - delete: z.union([z.boolean(), ContestWhereInputObjectSchema]).optional(), - get connect(){ return ContestWhereUniqueInputObjectSchema.optional(); }, - update: z.union([ContestUpdateToOneWithWhereWithoutEventsInputObjectSchema, ContestUpdateWithoutEventsInputObjectSchema, ContestUncheckedUpdateWithoutEventsInputObjectSchema]).optional() -}).strict(); -export const ContestUpdateOneWithoutEventsNestedInputObjectSchema: z.ZodType = z.lazy(__makeSchema_ContestUpdateOneWithoutEventsNestedInput_schema) as unknown as z.ZodType; -export const ContestUpdateOneWithoutEventsNestedInputObjectZodSchema = z.lazy(__makeSchema_ContestUpdateOneWithoutEventsNestedInput_schema); - - -// File: EventCompanyUpdateManyWithoutEventNestedInput.schema.ts -const __makeSchema_EventCompanyUpdateManyWithoutEventNestedInput_schema = () => z.object({ - create: z.union([EventCompanyCreateWithoutEventInputObjectSchema, EventCompanyCreateWithoutEventInputObjectSchema.array(), EventCompanyUncheckedCreateWithoutEventInputObjectSchema, EventCompanyUncheckedCreateWithoutEventInputObjectSchema.array()]).optional(), - connectOrCreate: z.union([EventCompanyCreateOrConnectWithoutEventInputObjectSchema, EventCompanyCreateOrConnectWithoutEventInputObjectSchema.array()]).optional(), - upsert: z.union([EventCompanyUpsertWithWhereUniqueWithoutEventInputObjectSchema, EventCompanyUpsertWithWhereUniqueWithoutEventInputObjectSchema.array()]).optional(), - get createMany(){ return EventCompanyCreateManyEventInputEnvelopeObjectSchema.optional(); }, - set: z.union([EventCompanyWhereUniqueInputObjectSchema, EventCompanyWhereUniqueInputObjectSchema.array()]).optional(), - disconnect: z.union([EventCompanyWhereUniqueInputObjectSchema, EventCompanyWhereUniqueInputObjectSchema.array()]).optional(), - delete: z.union([EventCompanyWhereUniqueInputObjectSchema, EventCompanyWhereUniqueInputObjectSchema.array()]).optional(), - connect: z.union([EventCompanyWhereUniqueInputObjectSchema, EventCompanyWhereUniqueInputObjectSchema.array()]).optional(), - update: z.union([EventCompanyUpdateWithWhereUniqueWithoutEventInputObjectSchema, EventCompanyUpdateWithWhereUniqueWithoutEventInputObjectSchema.array()]).optional(), - updateMany: z.union([EventCompanyUpdateManyWithWhereWithoutEventInputObjectSchema, EventCompanyUpdateManyWithWhereWithoutEventInputObjectSchema.array()]).optional(), - deleteMany: z.union([EventCompanyScalarWhereInputObjectSchema, EventCompanyScalarWhereInputObjectSchema.array()]).optional() -}).strict(); -export const EventCompanyUpdateManyWithoutEventNestedInputObjectSchema: z.ZodType = z.lazy(__makeSchema_EventCompanyUpdateManyWithoutEventNestedInput_schema) as unknown as z.ZodType; -export const EventCompanyUpdateManyWithoutEventNestedInputObjectZodSchema = z.lazy(__makeSchema_EventCompanyUpdateManyWithoutEventNestedInput_schema); - - -// File: EventHostingGroupUpdateManyWithoutEventNestedInput.schema.ts -const __makeSchema_EventHostingGroupUpdateManyWithoutEventNestedInput_schema = () => z.object({ - create: z.union([EventHostingGroupCreateWithoutEventInputObjectSchema, EventHostingGroupCreateWithoutEventInputObjectSchema.array(), EventHostingGroupUncheckedCreateWithoutEventInputObjectSchema, EventHostingGroupUncheckedCreateWithoutEventInputObjectSchema.array()]).optional(), - connectOrCreate: z.union([EventHostingGroupCreateOrConnectWithoutEventInputObjectSchema, EventHostingGroupCreateOrConnectWithoutEventInputObjectSchema.array()]).optional(), - upsert: z.union([EventHostingGroupUpsertWithWhereUniqueWithoutEventInputObjectSchema, EventHostingGroupUpsertWithWhereUniqueWithoutEventInputObjectSchema.array()]).optional(), - get createMany(){ return EventHostingGroupCreateManyEventInputEnvelopeObjectSchema.optional(); }, - set: z.union([EventHostingGroupWhereUniqueInputObjectSchema, EventHostingGroupWhereUniqueInputObjectSchema.array()]).optional(), - disconnect: z.union([EventHostingGroupWhereUniqueInputObjectSchema, EventHostingGroupWhereUniqueInputObjectSchema.array()]).optional(), - delete: z.union([EventHostingGroupWhereUniqueInputObjectSchema, EventHostingGroupWhereUniqueInputObjectSchema.array()]).optional(), - connect: z.union([EventHostingGroupWhereUniqueInputObjectSchema, EventHostingGroupWhereUniqueInputObjectSchema.array()]).optional(), - update: z.union([EventHostingGroupUpdateWithWhereUniqueWithoutEventInputObjectSchema, EventHostingGroupUpdateWithWhereUniqueWithoutEventInputObjectSchema.array()]).optional(), - updateMany: z.union([EventHostingGroupUpdateManyWithWhereWithoutEventInputObjectSchema, EventHostingGroupUpdateManyWithWhereWithoutEventInputObjectSchema.array()]).optional(), - deleteMany: z.union([EventHostingGroupScalarWhereInputObjectSchema, EventHostingGroupScalarWhereInputObjectSchema.array()]).optional() -}).strict(); -export const EventHostingGroupUpdateManyWithoutEventNestedInputObjectSchema: z.ZodType = z.lazy(__makeSchema_EventHostingGroupUpdateManyWithoutEventNestedInput_schema) as unknown as z.ZodType; -export const EventHostingGroupUpdateManyWithoutEventNestedInputObjectZodSchema = z.lazy(__makeSchema_EventHostingGroupUpdateManyWithoutEventNestedInput_schema); - - -// File: DeregisterReasonUpdateManyWithoutEventNestedInput.schema.ts -const __makeSchema_DeregisterReasonUpdateManyWithoutEventNestedInput_schema = () => z.object({ - create: z.union([DeregisterReasonCreateWithoutEventInputObjectSchema, DeregisterReasonCreateWithoutEventInputObjectSchema.array(), DeregisterReasonUncheckedCreateWithoutEventInputObjectSchema, DeregisterReasonUncheckedCreateWithoutEventInputObjectSchema.array()]).optional(), - connectOrCreate: z.union([DeregisterReasonCreateOrConnectWithoutEventInputObjectSchema, DeregisterReasonCreateOrConnectWithoutEventInputObjectSchema.array()]).optional(), - upsert: z.union([DeregisterReasonUpsertWithWhereUniqueWithoutEventInputObjectSchema, DeregisterReasonUpsertWithWhereUniqueWithoutEventInputObjectSchema.array()]).optional(), - get createMany(){ return DeregisterReasonCreateManyEventInputEnvelopeObjectSchema.optional(); }, - set: z.union([DeregisterReasonWhereUniqueInputObjectSchema, DeregisterReasonWhereUniqueInputObjectSchema.array()]).optional(), - disconnect: z.union([DeregisterReasonWhereUniqueInputObjectSchema, DeregisterReasonWhereUniqueInputObjectSchema.array()]).optional(), - delete: z.union([DeregisterReasonWhereUniqueInputObjectSchema, DeregisterReasonWhereUniqueInputObjectSchema.array()]).optional(), - connect: z.union([DeregisterReasonWhereUniqueInputObjectSchema, DeregisterReasonWhereUniqueInputObjectSchema.array()]).optional(), - update: z.union([DeregisterReasonUpdateWithWhereUniqueWithoutEventInputObjectSchema, DeregisterReasonUpdateWithWhereUniqueWithoutEventInputObjectSchema.array()]).optional(), - updateMany: z.union([DeregisterReasonUpdateManyWithWhereWithoutEventInputObjectSchema, DeregisterReasonUpdateManyWithWhereWithoutEventInputObjectSchema.array()]).optional(), - deleteMany: z.union([DeregisterReasonScalarWhereInputObjectSchema, DeregisterReasonScalarWhereInputObjectSchema.array()]).optional() -}).strict(); -export const DeregisterReasonUpdateManyWithoutEventNestedInputObjectSchema: z.ZodType = z.lazy(__makeSchema_DeregisterReasonUpdateManyWithoutEventNestedInput_schema) as unknown as z.ZodType; -export const DeregisterReasonUpdateManyWithoutEventNestedInputObjectZodSchema = z.lazy(__makeSchema_DeregisterReasonUpdateManyWithoutEventNestedInput_schema); - - -// File: FeedbackFormUncheckedUpdateOneWithoutEventNestedInput.schema.ts -const __makeSchema_FeedbackFormUncheckedUpdateOneWithoutEventNestedInput_schema = () => z.object({ - create: z.union([FeedbackFormCreateWithoutEventInputObjectSchema, FeedbackFormUncheckedCreateWithoutEventInputObjectSchema]).optional(), - get connectOrCreate(){ return FeedbackFormCreateOrConnectWithoutEventInputObjectSchema.optional(); }, - get upsert(){ return FeedbackFormUpsertWithoutEventInputObjectSchema.optional(); }, - disconnect: z.union([z.boolean(), FeedbackFormWhereInputObjectSchema]).optional(), - delete: z.union([z.boolean(), FeedbackFormWhereInputObjectSchema]).optional(), - get connect(){ return FeedbackFormWhereUniqueInputObjectSchema.optional(); }, - update: z.union([FeedbackFormUpdateToOneWithWhereWithoutEventInputObjectSchema, FeedbackFormUpdateWithoutEventInputObjectSchema, FeedbackFormUncheckedUpdateWithoutEventInputObjectSchema]).optional() -}).strict(); -export const FeedbackFormUncheckedUpdateOneWithoutEventNestedInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackFormUncheckedUpdateOneWithoutEventNestedInput_schema) as unknown as z.ZodType; -export const FeedbackFormUncheckedUpdateOneWithoutEventNestedInputObjectZodSchema = z.lazy(__makeSchema_FeedbackFormUncheckedUpdateOneWithoutEventNestedInput_schema); - - -// File: FadderukeUncheckedUpdateOneWithoutEventNestedInput.schema.ts -const __makeSchema_FadderukeUncheckedUpdateOneWithoutEventNestedInput_schema = () => z.object({ - create: z.union([FadderukeCreateWithoutEventInputObjectSchema, FadderukeUncheckedCreateWithoutEventInputObjectSchema]).optional(), - get connectOrCreate(){ return FadderukeCreateOrConnectWithoutEventInputObjectSchema.optional(); }, - get upsert(){ return FadderukeUpsertWithoutEventInputObjectSchema.optional(); }, - disconnect: z.union([z.boolean(), FadderukeWhereInputObjectSchema]).optional(), - delete: z.union([z.boolean(), FadderukeWhereInputObjectSchema]).optional(), - get connect(){ return FadderukeWhereUniqueInputObjectSchema.optional(); }, - update: z.union([FadderukeUpdateToOneWithWhereWithoutEventInputObjectSchema, FadderukeUpdateWithoutEventInputObjectSchema, FadderukeUncheckedUpdateWithoutEventInputObjectSchema]).optional() -}).strict(); -export const FadderukeUncheckedUpdateOneWithoutEventNestedInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FadderukeUncheckedUpdateOneWithoutEventNestedInput_schema) as unknown as z.ZodType; -export const FadderukeUncheckedUpdateOneWithoutEventNestedInputObjectZodSchema = z.lazy(__makeSchema_FadderukeUncheckedUpdateOneWithoutEventNestedInput_schema); - - -// File: EventUncheckedUpdateManyWithoutParentNestedInput.schema.ts -const __makeSchema_EventUncheckedUpdateManyWithoutParentNestedInput_schema = () => z.object({ - create: z.union([EventCreateWithoutParentInputObjectSchema, EventCreateWithoutParentInputObjectSchema.array(), EventUncheckedCreateWithoutParentInputObjectSchema, EventUncheckedCreateWithoutParentInputObjectSchema.array()]).optional(), - connectOrCreate: z.union([EventCreateOrConnectWithoutParentInputObjectSchema, EventCreateOrConnectWithoutParentInputObjectSchema.array()]).optional(), - upsert: z.union([EventUpsertWithWhereUniqueWithoutParentInputObjectSchema, EventUpsertWithWhereUniqueWithoutParentInputObjectSchema.array()]).optional(), - get createMany(){ return EventCreateManyParentInputEnvelopeObjectSchema.optional(); }, - set: z.union([EventWhereUniqueInputObjectSchema, EventWhereUniqueInputObjectSchema.array()]).optional(), - disconnect: z.union([EventWhereUniqueInputObjectSchema, EventWhereUniqueInputObjectSchema.array()]).optional(), - delete: z.union([EventWhereUniqueInputObjectSchema, EventWhereUniqueInputObjectSchema.array()]).optional(), - connect: z.union([EventWhereUniqueInputObjectSchema, EventWhereUniqueInputObjectSchema.array()]).optional(), - update: z.union([EventUpdateWithWhereUniqueWithoutParentInputObjectSchema, EventUpdateWithWhereUniqueWithoutParentInputObjectSchema.array()]).optional(), - updateMany: z.union([EventUpdateManyWithWhereWithoutParentInputObjectSchema, EventUpdateManyWithWhereWithoutParentInputObjectSchema.array()]).optional(), - deleteMany: z.union([EventScalarWhereInputObjectSchema, EventScalarWhereInputObjectSchema.array()]).optional() -}).strict(); -export const EventUncheckedUpdateManyWithoutParentNestedInputObjectSchema: z.ZodType = z.lazy(__makeSchema_EventUncheckedUpdateManyWithoutParentNestedInput_schema) as unknown as z.ZodType; -export const EventUncheckedUpdateManyWithoutParentNestedInputObjectZodSchema = z.lazy(__makeSchema_EventUncheckedUpdateManyWithoutParentNestedInput_schema); - - -// File: EventCompanyUncheckedUpdateManyWithoutEventNestedInput.schema.ts -const __makeSchema_EventCompanyUncheckedUpdateManyWithoutEventNestedInput_schema = () => z.object({ - create: z.union([EventCompanyCreateWithoutEventInputObjectSchema, EventCompanyCreateWithoutEventInputObjectSchema.array(), EventCompanyUncheckedCreateWithoutEventInputObjectSchema, EventCompanyUncheckedCreateWithoutEventInputObjectSchema.array()]).optional(), - connectOrCreate: z.union([EventCompanyCreateOrConnectWithoutEventInputObjectSchema, EventCompanyCreateOrConnectWithoutEventInputObjectSchema.array()]).optional(), - upsert: z.union([EventCompanyUpsertWithWhereUniqueWithoutEventInputObjectSchema, EventCompanyUpsertWithWhereUniqueWithoutEventInputObjectSchema.array()]).optional(), - get createMany(){ return EventCompanyCreateManyEventInputEnvelopeObjectSchema.optional(); }, - set: z.union([EventCompanyWhereUniqueInputObjectSchema, EventCompanyWhereUniqueInputObjectSchema.array()]).optional(), - disconnect: z.union([EventCompanyWhereUniqueInputObjectSchema, EventCompanyWhereUniqueInputObjectSchema.array()]).optional(), - delete: z.union([EventCompanyWhereUniqueInputObjectSchema, EventCompanyWhereUniqueInputObjectSchema.array()]).optional(), - connect: z.union([EventCompanyWhereUniqueInputObjectSchema, EventCompanyWhereUniqueInputObjectSchema.array()]).optional(), - update: z.union([EventCompanyUpdateWithWhereUniqueWithoutEventInputObjectSchema, EventCompanyUpdateWithWhereUniqueWithoutEventInputObjectSchema.array()]).optional(), - updateMany: z.union([EventCompanyUpdateManyWithWhereWithoutEventInputObjectSchema, EventCompanyUpdateManyWithWhereWithoutEventInputObjectSchema.array()]).optional(), - deleteMany: z.union([EventCompanyScalarWhereInputObjectSchema, EventCompanyScalarWhereInputObjectSchema.array()]).optional() -}).strict(); -export const EventCompanyUncheckedUpdateManyWithoutEventNestedInputObjectSchema: z.ZodType = z.lazy(__makeSchema_EventCompanyUncheckedUpdateManyWithoutEventNestedInput_schema) as unknown as z.ZodType; -export const EventCompanyUncheckedUpdateManyWithoutEventNestedInputObjectZodSchema = z.lazy(__makeSchema_EventCompanyUncheckedUpdateManyWithoutEventNestedInput_schema); - - -// File: EventHostingGroupUncheckedUpdateManyWithoutEventNestedInput.schema.ts -const __makeSchema_EventHostingGroupUncheckedUpdateManyWithoutEventNestedInput_schema = () => z.object({ - create: z.union([EventHostingGroupCreateWithoutEventInputObjectSchema, EventHostingGroupCreateWithoutEventInputObjectSchema.array(), EventHostingGroupUncheckedCreateWithoutEventInputObjectSchema, EventHostingGroupUncheckedCreateWithoutEventInputObjectSchema.array()]).optional(), - connectOrCreate: z.union([EventHostingGroupCreateOrConnectWithoutEventInputObjectSchema, EventHostingGroupCreateOrConnectWithoutEventInputObjectSchema.array()]).optional(), - upsert: z.union([EventHostingGroupUpsertWithWhereUniqueWithoutEventInputObjectSchema, EventHostingGroupUpsertWithWhereUniqueWithoutEventInputObjectSchema.array()]).optional(), - get createMany(){ return EventHostingGroupCreateManyEventInputEnvelopeObjectSchema.optional(); }, - set: z.union([EventHostingGroupWhereUniqueInputObjectSchema, EventHostingGroupWhereUniqueInputObjectSchema.array()]).optional(), - disconnect: z.union([EventHostingGroupWhereUniqueInputObjectSchema, EventHostingGroupWhereUniqueInputObjectSchema.array()]).optional(), - delete: z.union([EventHostingGroupWhereUniqueInputObjectSchema, EventHostingGroupWhereUniqueInputObjectSchema.array()]).optional(), - connect: z.union([EventHostingGroupWhereUniqueInputObjectSchema, EventHostingGroupWhereUniqueInputObjectSchema.array()]).optional(), - update: z.union([EventHostingGroupUpdateWithWhereUniqueWithoutEventInputObjectSchema, EventHostingGroupUpdateWithWhereUniqueWithoutEventInputObjectSchema.array()]).optional(), - updateMany: z.union([EventHostingGroupUpdateManyWithWhereWithoutEventInputObjectSchema, EventHostingGroupUpdateManyWithWhereWithoutEventInputObjectSchema.array()]).optional(), - deleteMany: z.union([EventHostingGroupScalarWhereInputObjectSchema, EventHostingGroupScalarWhereInputObjectSchema.array()]).optional() -}).strict(); -export const EventHostingGroupUncheckedUpdateManyWithoutEventNestedInputObjectSchema: z.ZodType = z.lazy(__makeSchema_EventHostingGroupUncheckedUpdateManyWithoutEventNestedInput_schema) as unknown as z.ZodType; -export const EventHostingGroupUncheckedUpdateManyWithoutEventNestedInputObjectZodSchema = z.lazy(__makeSchema_EventHostingGroupUncheckedUpdateManyWithoutEventNestedInput_schema); - - -// File: DeregisterReasonUncheckedUpdateManyWithoutEventNestedInput.schema.ts -const __makeSchema_DeregisterReasonUncheckedUpdateManyWithoutEventNestedInput_schema = () => z.object({ - create: z.union([DeregisterReasonCreateWithoutEventInputObjectSchema, DeregisterReasonCreateWithoutEventInputObjectSchema.array(), DeregisterReasonUncheckedCreateWithoutEventInputObjectSchema, DeregisterReasonUncheckedCreateWithoutEventInputObjectSchema.array()]).optional(), - connectOrCreate: z.union([DeregisterReasonCreateOrConnectWithoutEventInputObjectSchema, DeregisterReasonCreateOrConnectWithoutEventInputObjectSchema.array()]).optional(), - upsert: z.union([DeregisterReasonUpsertWithWhereUniqueWithoutEventInputObjectSchema, DeregisterReasonUpsertWithWhereUniqueWithoutEventInputObjectSchema.array()]).optional(), - get createMany(){ return DeregisterReasonCreateManyEventInputEnvelopeObjectSchema.optional(); }, - set: z.union([DeregisterReasonWhereUniqueInputObjectSchema, DeregisterReasonWhereUniqueInputObjectSchema.array()]).optional(), - disconnect: z.union([DeregisterReasonWhereUniqueInputObjectSchema, DeregisterReasonWhereUniqueInputObjectSchema.array()]).optional(), - delete: z.union([DeregisterReasonWhereUniqueInputObjectSchema, DeregisterReasonWhereUniqueInputObjectSchema.array()]).optional(), - connect: z.union([DeregisterReasonWhereUniqueInputObjectSchema, DeregisterReasonWhereUniqueInputObjectSchema.array()]).optional(), - update: z.union([DeregisterReasonUpdateWithWhereUniqueWithoutEventInputObjectSchema, DeregisterReasonUpdateWithWhereUniqueWithoutEventInputObjectSchema.array()]).optional(), - updateMany: z.union([DeregisterReasonUpdateManyWithWhereWithoutEventInputObjectSchema, DeregisterReasonUpdateManyWithWhereWithoutEventInputObjectSchema.array()]).optional(), - deleteMany: z.union([DeregisterReasonScalarWhereInputObjectSchema, DeregisterReasonScalarWhereInputObjectSchema.array()]).optional() -}).strict(); -export const DeregisterReasonUncheckedUpdateManyWithoutEventNestedInputObjectSchema: z.ZodType = z.lazy(__makeSchema_DeregisterReasonUncheckedUpdateManyWithoutEventNestedInput_schema) as unknown as z.ZodType; -export const DeregisterReasonUncheckedUpdateManyWithoutEventNestedInputObjectZodSchema = z.lazy(__makeSchema_DeregisterReasonUncheckedUpdateManyWithoutEventNestedInput_schema); - - -// File: EventCreateNestedOneWithoutCompaniesInput.schema.ts -const __makeSchema_EventCreateNestedOneWithoutCompaniesInput_schema = () => z.object({ - create: z.union([EventCreateWithoutCompaniesInputObjectSchema, EventUncheckedCreateWithoutCompaniesInputObjectSchema]).optional(), - get connectOrCreate(){ return EventCreateOrConnectWithoutCompaniesInputObjectSchema.optional(); }, - get connect(){ return EventWhereUniqueInputObjectSchema.optional(); } -}).strict(); -export const EventCreateNestedOneWithoutCompaniesInputObjectSchema: z.ZodType = z.lazy(__makeSchema_EventCreateNestedOneWithoutCompaniesInput_schema) as unknown as z.ZodType; -export const EventCreateNestedOneWithoutCompaniesInputObjectZodSchema = z.lazy(__makeSchema_EventCreateNestedOneWithoutCompaniesInput_schema); - - -// File: CompanyCreateNestedOneWithoutEventsInput.schema.ts -const __makeSchema_CompanyCreateNestedOneWithoutEventsInput_schema = () => z.object({ - create: z.union([CompanyCreateWithoutEventsInputObjectSchema, CompanyUncheckedCreateWithoutEventsInputObjectSchema]).optional(), - get connectOrCreate(){ return CompanyCreateOrConnectWithoutEventsInputObjectSchema.optional(); }, - get connect(){ return CompanyWhereUniqueInputObjectSchema.optional(); } -}).strict(); -export const CompanyCreateNestedOneWithoutEventsInputObjectSchema: z.ZodType = z.lazy(__makeSchema_CompanyCreateNestedOneWithoutEventsInput_schema) as unknown as z.ZodType; -export const CompanyCreateNestedOneWithoutEventsInputObjectZodSchema = z.lazy(__makeSchema_CompanyCreateNestedOneWithoutEventsInput_schema); - - -// File: EventUpdateOneRequiredWithoutCompaniesNestedInput.schema.ts -const __makeSchema_EventUpdateOneRequiredWithoutCompaniesNestedInput_schema = () => z.object({ - create: z.union([EventCreateWithoutCompaniesInputObjectSchema, EventUncheckedCreateWithoutCompaniesInputObjectSchema]).optional(), - get connectOrCreate(){ return EventCreateOrConnectWithoutCompaniesInputObjectSchema.optional(); }, - get upsert(){ return EventUpsertWithoutCompaniesInputObjectSchema.optional(); }, - get connect(){ return EventWhereUniqueInputObjectSchema.optional(); }, - update: z.union([EventUpdateToOneWithWhereWithoutCompaniesInputObjectSchema, EventUpdateWithoutCompaniesInputObjectSchema, EventUncheckedUpdateWithoutCompaniesInputObjectSchema]).optional() -}).strict(); -export const EventUpdateOneRequiredWithoutCompaniesNestedInputObjectSchema: z.ZodType = z.lazy(__makeSchema_EventUpdateOneRequiredWithoutCompaniesNestedInput_schema) as unknown as z.ZodType; -export const EventUpdateOneRequiredWithoutCompaniesNestedInputObjectZodSchema = z.lazy(__makeSchema_EventUpdateOneRequiredWithoutCompaniesNestedInput_schema); - - -// File: CompanyUpdateOneRequiredWithoutEventsNestedInput.schema.ts -const __makeSchema_CompanyUpdateOneRequiredWithoutEventsNestedInput_schema = () => z.object({ - create: z.union([CompanyCreateWithoutEventsInputObjectSchema, CompanyUncheckedCreateWithoutEventsInputObjectSchema]).optional(), - get connectOrCreate(){ return CompanyCreateOrConnectWithoutEventsInputObjectSchema.optional(); }, - get upsert(){ return CompanyUpsertWithoutEventsInputObjectSchema.optional(); }, - get connect(){ return CompanyWhereUniqueInputObjectSchema.optional(); }, - update: z.union([CompanyUpdateToOneWithWhereWithoutEventsInputObjectSchema, CompanyUpdateWithoutEventsInputObjectSchema, CompanyUncheckedUpdateWithoutEventsInputObjectSchema]).optional() -}).strict(); -export const CompanyUpdateOneRequiredWithoutEventsNestedInputObjectSchema: z.ZodType = z.lazy(__makeSchema_CompanyUpdateOneRequiredWithoutEventsNestedInput_schema) as unknown as z.ZodType; -export const CompanyUpdateOneRequiredWithoutEventsNestedInputObjectZodSchema = z.lazy(__makeSchema_CompanyUpdateOneRequiredWithoutEventsNestedInput_schema); - - -// File: PersonalMarkCreateNestedManyWithoutMarkInput.schema.ts -const __makeSchema_PersonalMarkCreateNestedManyWithoutMarkInput_schema = () => z.object({ - create: z.union([PersonalMarkCreateWithoutMarkInputObjectSchema, PersonalMarkCreateWithoutMarkInputObjectSchema.array(), PersonalMarkUncheckedCreateWithoutMarkInputObjectSchema, PersonalMarkUncheckedCreateWithoutMarkInputObjectSchema.array()]).optional(), - connectOrCreate: z.union([PersonalMarkCreateOrConnectWithoutMarkInputObjectSchema, PersonalMarkCreateOrConnectWithoutMarkInputObjectSchema.array()]).optional(), - get createMany(){ return PersonalMarkCreateManyMarkInputEnvelopeObjectSchema.optional(); }, - connect: z.union([PersonalMarkWhereUniqueInputObjectSchema, PersonalMarkWhereUniqueInputObjectSchema.array()]).optional() -}).strict(); -export const PersonalMarkCreateNestedManyWithoutMarkInputObjectSchema: z.ZodType = z.lazy(__makeSchema_PersonalMarkCreateNestedManyWithoutMarkInput_schema) as unknown as z.ZodType; -export const PersonalMarkCreateNestedManyWithoutMarkInputObjectZodSchema = z.lazy(__makeSchema_PersonalMarkCreateNestedManyWithoutMarkInput_schema); - - -// File: MarkGroupCreateNestedManyWithoutMarkInput.schema.ts -const __makeSchema_MarkGroupCreateNestedManyWithoutMarkInput_schema = () => z.object({ - create: z.union([MarkGroupCreateWithoutMarkInputObjectSchema, MarkGroupCreateWithoutMarkInputObjectSchema.array(), MarkGroupUncheckedCreateWithoutMarkInputObjectSchema, MarkGroupUncheckedCreateWithoutMarkInputObjectSchema.array()]).optional(), - connectOrCreate: z.union([MarkGroupCreateOrConnectWithoutMarkInputObjectSchema, MarkGroupCreateOrConnectWithoutMarkInputObjectSchema.array()]).optional(), - get createMany(){ return MarkGroupCreateManyMarkInputEnvelopeObjectSchema.optional(); }, - connect: z.union([MarkGroupWhereUniqueInputObjectSchema, MarkGroupWhereUniqueInputObjectSchema.array()]).optional() -}).strict(); -export const MarkGroupCreateNestedManyWithoutMarkInputObjectSchema: z.ZodType = z.lazy(__makeSchema_MarkGroupCreateNestedManyWithoutMarkInput_schema) as unknown as z.ZodType; -export const MarkGroupCreateNestedManyWithoutMarkInputObjectZodSchema = z.lazy(__makeSchema_MarkGroupCreateNestedManyWithoutMarkInput_schema); - - -// File: PersonalMarkUncheckedCreateNestedManyWithoutMarkInput.schema.ts -const __makeSchema_PersonalMarkUncheckedCreateNestedManyWithoutMarkInput_schema = () => z.object({ - create: z.union([PersonalMarkCreateWithoutMarkInputObjectSchema, PersonalMarkCreateWithoutMarkInputObjectSchema.array(), PersonalMarkUncheckedCreateWithoutMarkInputObjectSchema, PersonalMarkUncheckedCreateWithoutMarkInputObjectSchema.array()]).optional(), - connectOrCreate: z.union([PersonalMarkCreateOrConnectWithoutMarkInputObjectSchema, PersonalMarkCreateOrConnectWithoutMarkInputObjectSchema.array()]).optional(), - get createMany(){ return PersonalMarkCreateManyMarkInputEnvelopeObjectSchema.optional(); }, - connect: z.union([PersonalMarkWhereUniqueInputObjectSchema, PersonalMarkWhereUniqueInputObjectSchema.array()]).optional() -}).strict(); -export const PersonalMarkUncheckedCreateNestedManyWithoutMarkInputObjectSchema: z.ZodType = z.lazy(__makeSchema_PersonalMarkUncheckedCreateNestedManyWithoutMarkInput_schema) as unknown as z.ZodType; -export const PersonalMarkUncheckedCreateNestedManyWithoutMarkInputObjectZodSchema = z.lazy(__makeSchema_PersonalMarkUncheckedCreateNestedManyWithoutMarkInput_schema); - - -// File: MarkGroupUncheckedCreateNestedManyWithoutMarkInput.schema.ts -const __makeSchema_MarkGroupUncheckedCreateNestedManyWithoutMarkInput_schema = () => z.object({ - create: z.union([MarkGroupCreateWithoutMarkInputObjectSchema, MarkGroupCreateWithoutMarkInputObjectSchema.array(), MarkGroupUncheckedCreateWithoutMarkInputObjectSchema, MarkGroupUncheckedCreateWithoutMarkInputObjectSchema.array()]).optional(), - connectOrCreate: z.union([MarkGroupCreateOrConnectWithoutMarkInputObjectSchema, MarkGroupCreateOrConnectWithoutMarkInputObjectSchema.array()]).optional(), - get createMany(){ return MarkGroupCreateManyMarkInputEnvelopeObjectSchema.optional(); }, - connect: z.union([MarkGroupWhereUniqueInputObjectSchema, MarkGroupWhereUniqueInputObjectSchema.array()]).optional() -}).strict(); -export const MarkGroupUncheckedCreateNestedManyWithoutMarkInputObjectSchema: z.ZodType = z.lazy(__makeSchema_MarkGroupUncheckedCreateNestedManyWithoutMarkInput_schema) as unknown as z.ZodType; -export const MarkGroupUncheckedCreateNestedManyWithoutMarkInputObjectZodSchema = z.lazy(__makeSchema_MarkGroupUncheckedCreateNestedManyWithoutMarkInput_schema); - - -// File: EnumMarkTypeFieldUpdateOperationsInput.schema.ts -const __makeSchema_EnumMarkTypeFieldUpdateOperationsInput_schema = () => z.object({ - set: MarkTypeSchema.optional() -}).strict(); -export const EnumMarkTypeFieldUpdateOperationsInputObjectSchema: z.ZodType = z.lazy(__makeSchema_EnumMarkTypeFieldUpdateOperationsInput_schema) as unknown as z.ZodType; -export const EnumMarkTypeFieldUpdateOperationsInputObjectZodSchema = z.lazy(__makeSchema_EnumMarkTypeFieldUpdateOperationsInput_schema); - - -// File: PersonalMarkUpdateManyWithoutMarkNestedInput.schema.ts -const __makeSchema_PersonalMarkUpdateManyWithoutMarkNestedInput_schema = () => z.object({ - create: z.union([PersonalMarkCreateWithoutMarkInputObjectSchema, PersonalMarkCreateWithoutMarkInputObjectSchema.array(), PersonalMarkUncheckedCreateWithoutMarkInputObjectSchema, PersonalMarkUncheckedCreateWithoutMarkInputObjectSchema.array()]).optional(), - connectOrCreate: z.union([PersonalMarkCreateOrConnectWithoutMarkInputObjectSchema, PersonalMarkCreateOrConnectWithoutMarkInputObjectSchema.array()]).optional(), - upsert: z.union([PersonalMarkUpsertWithWhereUniqueWithoutMarkInputObjectSchema, PersonalMarkUpsertWithWhereUniqueWithoutMarkInputObjectSchema.array()]).optional(), - get createMany(){ return PersonalMarkCreateManyMarkInputEnvelopeObjectSchema.optional(); }, - set: z.union([PersonalMarkWhereUniqueInputObjectSchema, PersonalMarkWhereUniqueInputObjectSchema.array()]).optional(), - disconnect: z.union([PersonalMarkWhereUniqueInputObjectSchema, PersonalMarkWhereUniqueInputObjectSchema.array()]).optional(), - delete: z.union([PersonalMarkWhereUniqueInputObjectSchema, PersonalMarkWhereUniqueInputObjectSchema.array()]).optional(), - connect: z.union([PersonalMarkWhereUniqueInputObjectSchema, PersonalMarkWhereUniqueInputObjectSchema.array()]).optional(), - update: z.union([PersonalMarkUpdateWithWhereUniqueWithoutMarkInputObjectSchema, PersonalMarkUpdateWithWhereUniqueWithoutMarkInputObjectSchema.array()]).optional(), - updateMany: z.union([PersonalMarkUpdateManyWithWhereWithoutMarkInputObjectSchema, PersonalMarkUpdateManyWithWhereWithoutMarkInputObjectSchema.array()]).optional(), - deleteMany: z.union([PersonalMarkScalarWhereInputObjectSchema, PersonalMarkScalarWhereInputObjectSchema.array()]).optional() -}).strict(); -export const PersonalMarkUpdateManyWithoutMarkNestedInputObjectSchema: z.ZodType = z.lazy(__makeSchema_PersonalMarkUpdateManyWithoutMarkNestedInput_schema) as unknown as z.ZodType; -export const PersonalMarkUpdateManyWithoutMarkNestedInputObjectZodSchema = z.lazy(__makeSchema_PersonalMarkUpdateManyWithoutMarkNestedInput_schema); - - -// File: MarkGroupUpdateManyWithoutMarkNestedInput.schema.ts -const __makeSchema_MarkGroupUpdateManyWithoutMarkNestedInput_schema = () => z.object({ - create: z.union([MarkGroupCreateWithoutMarkInputObjectSchema, MarkGroupCreateWithoutMarkInputObjectSchema.array(), MarkGroupUncheckedCreateWithoutMarkInputObjectSchema, MarkGroupUncheckedCreateWithoutMarkInputObjectSchema.array()]).optional(), - connectOrCreate: z.union([MarkGroupCreateOrConnectWithoutMarkInputObjectSchema, MarkGroupCreateOrConnectWithoutMarkInputObjectSchema.array()]).optional(), - upsert: z.union([MarkGroupUpsertWithWhereUniqueWithoutMarkInputObjectSchema, MarkGroupUpsertWithWhereUniqueWithoutMarkInputObjectSchema.array()]).optional(), - get createMany(){ return MarkGroupCreateManyMarkInputEnvelopeObjectSchema.optional(); }, - set: z.union([MarkGroupWhereUniqueInputObjectSchema, MarkGroupWhereUniqueInputObjectSchema.array()]).optional(), - disconnect: z.union([MarkGroupWhereUniqueInputObjectSchema, MarkGroupWhereUniqueInputObjectSchema.array()]).optional(), - delete: z.union([MarkGroupWhereUniqueInputObjectSchema, MarkGroupWhereUniqueInputObjectSchema.array()]).optional(), - connect: z.union([MarkGroupWhereUniqueInputObjectSchema, MarkGroupWhereUniqueInputObjectSchema.array()]).optional(), - update: z.union([MarkGroupUpdateWithWhereUniqueWithoutMarkInputObjectSchema, MarkGroupUpdateWithWhereUniqueWithoutMarkInputObjectSchema.array()]).optional(), - updateMany: z.union([MarkGroupUpdateManyWithWhereWithoutMarkInputObjectSchema, MarkGroupUpdateManyWithWhereWithoutMarkInputObjectSchema.array()]).optional(), - deleteMany: z.union([MarkGroupScalarWhereInputObjectSchema, MarkGroupScalarWhereInputObjectSchema.array()]).optional() -}).strict(); -export const MarkGroupUpdateManyWithoutMarkNestedInputObjectSchema: z.ZodType = z.lazy(__makeSchema_MarkGroupUpdateManyWithoutMarkNestedInput_schema) as unknown as z.ZodType; -export const MarkGroupUpdateManyWithoutMarkNestedInputObjectZodSchema = z.lazy(__makeSchema_MarkGroupUpdateManyWithoutMarkNestedInput_schema); - - -// File: PersonalMarkUncheckedUpdateManyWithoutMarkNestedInput.schema.ts -const __makeSchema_PersonalMarkUncheckedUpdateManyWithoutMarkNestedInput_schema = () => z.object({ - create: z.union([PersonalMarkCreateWithoutMarkInputObjectSchema, PersonalMarkCreateWithoutMarkInputObjectSchema.array(), PersonalMarkUncheckedCreateWithoutMarkInputObjectSchema, PersonalMarkUncheckedCreateWithoutMarkInputObjectSchema.array()]).optional(), - connectOrCreate: z.union([PersonalMarkCreateOrConnectWithoutMarkInputObjectSchema, PersonalMarkCreateOrConnectWithoutMarkInputObjectSchema.array()]).optional(), - upsert: z.union([PersonalMarkUpsertWithWhereUniqueWithoutMarkInputObjectSchema, PersonalMarkUpsertWithWhereUniqueWithoutMarkInputObjectSchema.array()]).optional(), - get createMany(){ return PersonalMarkCreateManyMarkInputEnvelopeObjectSchema.optional(); }, - set: z.union([PersonalMarkWhereUniqueInputObjectSchema, PersonalMarkWhereUniqueInputObjectSchema.array()]).optional(), - disconnect: z.union([PersonalMarkWhereUniqueInputObjectSchema, PersonalMarkWhereUniqueInputObjectSchema.array()]).optional(), - delete: z.union([PersonalMarkWhereUniqueInputObjectSchema, PersonalMarkWhereUniqueInputObjectSchema.array()]).optional(), - connect: z.union([PersonalMarkWhereUniqueInputObjectSchema, PersonalMarkWhereUniqueInputObjectSchema.array()]).optional(), - update: z.union([PersonalMarkUpdateWithWhereUniqueWithoutMarkInputObjectSchema, PersonalMarkUpdateWithWhereUniqueWithoutMarkInputObjectSchema.array()]).optional(), - updateMany: z.union([PersonalMarkUpdateManyWithWhereWithoutMarkInputObjectSchema, PersonalMarkUpdateManyWithWhereWithoutMarkInputObjectSchema.array()]).optional(), - deleteMany: z.union([PersonalMarkScalarWhereInputObjectSchema, PersonalMarkScalarWhereInputObjectSchema.array()]).optional() -}).strict(); -export const PersonalMarkUncheckedUpdateManyWithoutMarkNestedInputObjectSchema: z.ZodType = z.lazy(__makeSchema_PersonalMarkUncheckedUpdateManyWithoutMarkNestedInput_schema) as unknown as z.ZodType; -export const PersonalMarkUncheckedUpdateManyWithoutMarkNestedInputObjectZodSchema = z.lazy(__makeSchema_PersonalMarkUncheckedUpdateManyWithoutMarkNestedInput_schema); - - -// File: MarkGroupUncheckedUpdateManyWithoutMarkNestedInput.schema.ts -const __makeSchema_MarkGroupUncheckedUpdateManyWithoutMarkNestedInput_schema = () => z.object({ - create: z.union([MarkGroupCreateWithoutMarkInputObjectSchema, MarkGroupCreateWithoutMarkInputObjectSchema.array(), MarkGroupUncheckedCreateWithoutMarkInputObjectSchema, MarkGroupUncheckedCreateWithoutMarkInputObjectSchema.array()]).optional(), - connectOrCreate: z.union([MarkGroupCreateOrConnectWithoutMarkInputObjectSchema, MarkGroupCreateOrConnectWithoutMarkInputObjectSchema.array()]).optional(), - upsert: z.union([MarkGroupUpsertWithWhereUniqueWithoutMarkInputObjectSchema, MarkGroupUpsertWithWhereUniqueWithoutMarkInputObjectSchema.array()]).optional(), - get createMany(){ return MarkGroupCreateManyMarkInputEnvelopeObjectSchema.optional(); }, - set: z.union([MarkGroupWhereUniqueInputObjectSchema, MarkGroupWhereUniqueInputObjectSchema.array()]).optional(), - disconnect: z.union([MarkGroupWhereUniqueInputObjectSchema, MarkGroupWhereUniqueInputObjectSchema.array()]).optional(), - delete: z.union([MarkGroupWhereUniqueInputObjectSchema, MarkGroupWhereUniqueInputObjectSchema.array()]).optional(), - connect: z.union([MarkGroupWhereUniqueInputObjectSchema, MarkGroupWhereUniqueInputObjectSchema.array()]).optional(), - update: z.union([MarkGroupUpdateWithWhereUniqueWithoutMarkInputObjectSchema, MarkGroupUpdateWithWhereUniqueWithoutMarkInputObjectSchema.array()]).optional(), - updateMany: z.union([MarkGroupUpdateManyWithWhereWithoutMarkInputObjectSchema, MarkGroupUpdateManyWithWhereWithoutMarkInputObjectSchema.array()]).optional(), - deleteMany: z.union([MarkGroupScalarWhereInputObjectSchema, MarkGroupScalarWhereInputObjectSchema.array()]).optional() -}).strict(); -export const MarkGroupUncheckedUpdateManyWithoutMarkNestedInputObjectSchema: z.ZodType = z.lazy(__makeSchema_MarkGroupUncheckedUpdateManyWithoutMarkNestedInput_schema) as unknown as z.ZodType; -export const MarkGroupUncheckedUpdateManyWithoutMarkNestedInputObjectZodSchema = z.lazy(__makeSchema_MarkGroupUncheckedUpdateManyWithoutMarkNestedInput_schema); - - -// File: MarkCreateNestedOneWithoutGroupsInput.schema.ts -const __makeSchema_MarkCreateNestedOneWithoutGroupsInput_schema = () => z.object({ - create: z.union([MarkCreateWithoutGroupsInputObjectSchema, MarkUncheckedCreateWithoutGroupsInputObjectSchema]).optional(), - get connectOrCreate(){ return MarkCreateOrConnectWithoutGroupsInputObjectSchema.optional(); }, - get connect(){ return MarkWhereUniqueInputObjectSchema.optional(); } -}).strict(); -export const MarkCreateNestedOneWithoutGroupsInputObjectSchema: z.ZodType = z.lazy(__makeSchema_MarkCreateNestedOneWithoutGroupsInput_schema) as unknown as z.ZodType; -export const MarkCreateNestedOneWithoutGroupsInputObjectZodSchema = z.lazy(__makeSchema_MarkCreateNestedOneWithoutGroupsInput_schema); - - -// File: GroupCreateNestedOneWithoutMarksInput.schema.ts -const __makeSchema_GroupCreateNestedOneWithoutMarksInput_schema = () => z.object({ - create: z.union([GroupCreateWithoutMarksInputObjectSchema, GroupUncheckedCreateWithoutMarksInputObjectSchema]).optional(), - get connectOrCreate(){ return GroupCreateOrConnectWithoutMarksInputObjectSchema.optional(); }, - get connect(){ return GroupWhereUniqueInputObjectSchema.optional(); } -}).strict(); -export const GroupCreateNestedOneWithoutMarksInputObjectSchema: z.ZodType = z.lazy(__makeSchema_GroupCreateNestedOneWithoutMarksInput_schema) as unknown as z.ZodType; -export const GroupCreateNestedOneWithoutMarksInputObjectZodSchema = z.lazy(__makeSchema_GroupCreateNestedOneWithoutMarksInput_schema); - - -// File: MarkUpdateOneRequiredWithoutGroupsNestedInput.schema.ts -const __makeSchema_MarkUpdateOneRequiredWithoutGroupsNestedInput_schema = () => z.object({ - create: z.union([MarkCreateWithoutGroupsInputObjectSchema, MarkUncheckedCreateWithoutGroupsInputObjectSchema]).optional(), - get connectOrCreate(){ return MarkCreateOrConnectWithoutGroupsInputObjectSchema.optional(); }, - get upsert(){ return MarkUpsertWithoutGroupsInputObjectSchema.optional(); }, - get connect(){ return MarkWhereUniqueInputObjectSchema.optional(); }, - update: z.union([MarkUpdateToOneWithWhereWithoutGroupsInputObjectSchema, MarkUpdateWithoutGroupsInputObjectSchema, MarkUncheckedUpdateWithoutGroupsInputObjectSchema]).optional() -}).strict(); -export const MarkUpdateOneRequiredWithoutGroupsNestedInputObjectSchema: z.ZodType = z.lazy(__makeSchema_MarkUpdateOneRequiredWithoutGroupsNestedInput_schema) as unknown as z.ZodType; -export const MarkUpdateOneRequiredWithoutGroupsNestedInputObjectZodSchema = z.lazy(__makeSchema_MarkUpdateOneRequiredWithoutGroupsNestedInput_schema); - - -// File: GroupUpdateOneRequiredWithoutMarksNestedInput.schema.ts -const __makeSchema_GroupUpdateOneRequiredWithoutMarksNestedInput_schema = () => z.object({ - create: z.union([GroupCreateWithoutMarksInputObjectSchema, GroupUncheckedCreateWithoutMarksInputObjectSchema]).optional(), - get connectOrCreate(){ return GroupCreateOrConnectWithoutMarksInputObjectSchema.optional(); }, - get upsert(){ return GroupUpsertWithoutMarksInputObjectSchema.optional(); }, - get connect(){ return GroupWhereUniqueInputObjectSchema.optional(); }, - update: z.union([GroupUpdateToOneWithWhereWithoutMarksInputObjectSchema, GroupUpdateWithoutMarksInputObjectSchema, GroupUncheckedUpdateWithoutMarksInputObjectSchema]).optional() -}).strict(); -export const GroupUpdateOneRequiredWithoutMarksNestedInputObjectSchema: z.ZodType = z.lazy(__makeSchema_GroupUpdateOneRequiredWithoutMarksNestedInput_schema) as unknown as z.ZodType; -export const GroupUpdateOneRequiredWithoutMarksNestedInputObjectZodSchema = z.lazy(__makeSchema_GroupUpdateOneRequiredWithoutMarksNestedInput_schema); - - -// File: MarkCreateNestedOneWithoutUsersInput.schema.ts -const __makeSchema_MarkCreateNestedOneWithoutUsersInput_schema = () => z.object({ - create: z.union([MarkCreateWithoutUsersInputObjectSchema, MarkUncheckedCreateWithoutUsersInputObjectSchema]).optional(), - get connectOrCreate(){ return MarkCreateOrConnectWithoutUsersInputObjectSchema.optional(); }, - get connect(){ return MarkWhereUniqueInputObjectSchema.optional(); } -}).strict(); -export const MarkCreateNestedOneWithoutUsersInputObjectSchema: z.ZodType = z.lazy(__makeSchema_MarkCreateNestedOneWithoutUsersInput_schema) as unknown as z.ZodType; -export const MarkCreateNestedOneWithoutUsersInputObjectZodSchema = z.lazy(__makeSchema_MarkCreateNestedOneWithoutUsersInput_schema); - - -// File: UserCreateNestedOneWithoutPersonalMarkInput.schema.ts -const __makeSchema_UserCreateNestedOneWithoutPersonalMarkInput_schema = () => z.object({ - create: z.union([UserCreateWithoutPersonalMarkInputObjectSchema, UserUncheckedCreateWithoutPersonalMarkInputObjectSchema]).optional(), - get connectOrCreate(){ return UserCreateOrConnectWithoutPersonalMarkInputObjectSchema.optional(); }, - get connect(){ return UserWhereUniqueInputObjectSchema.optional(); } -}).strict(); -export const UserCreateNestedOneWithoutPersonalMarkInputObjectSchema: z.ZodType = z.lazy(__makeSchema_UserCreateNestedOneWithoutPersonalMarkInput_schema) as unknown as z.ZodType; -export const UserCreateNestedOneWithoutPersonalMarkInputObjectZodSchema = z.lazy(__makeSchema_UserCreateNestedOneWithoutPersonalMarkInput_schema); - - -// File: UserCreateNestedOneWithoutGivenMarksInput.schema.ts -const __makeSchema_UserCreateNestedOneWithoutGivenMarksInput_schema = () => z.object({ - create: z.union([UserCreateWithoutGivenMarksInputObjectSchema, UserUncheckedCreateWithoutGivenMarksInputObjectSchema]).optional(), - get connectOrCreate(){ return UserCreateOrConnectWithoutGivenMarksInputObjectSchema.optional(); }, - get connect(){ return UserWhereUniqueInputObjectSchema.optional(); } -}).strict(); -export const UserCreateNestedOneWithoutGivenMarksInputObjectSchema: z.ZodType = z.lazy(__makeSchema_UserCreateNestedOneWithoutGivenMarksInput_schema) as unknown as z.ZodType; -export const UserCreateNestedOneWithoutGivenMarksInputObjectZodSchema = z.lazy(__makeSchema_UserCreateNestedOneWithoutGivenMarksInput_schema); - - -// File: MarkUpdateOneRequiredWithoutUsersNestedInput.schema.ts -const __makeSchema_MarkUpdateOneRequiredWithoutUsersNestedInput_schema = () => z.object({ - create: z.union([MarkCreateWithoutUsersInputObjectSchema, MarkUncheckedCreateWithoutUsersInputObjectSchema]).optional(), - get connectOrCreate(){ return MarkCreateOrConnectWithoutUsersInputObjectSchema.optional(); }, - get upsert(){ return MarkUpsertWithoutUsersInputObjectSchema.optional(); }, - get connect(){ return MarkWhereUniqueInputObjectSchema.optional(); }, - update: z.union([MarkUpdateToOneWithWhereWithoutUsersInputObjectSchema, MarkUpdateWithoutUsersInputObjectSchema, MarkUncheckedUpdateWithoutUsersInputObjectSchema]).optional() -}).strict(); -export const MarkUpdateOneRequiredWithoutUsersNestedInputObjectSchema: z.ZodType = z.lazy(__makeSchema_MarkUpdateOneRequiredWithoutUsersNestedInput_schema) as unknown as z.ZodType; -export const MarkUpdateOneRequiredWithoutUsersNestedInputObjectZodSchema = z.lazy(__makeSchema_MarkUpdateOneRequiredWithoutUsersNestedInput_schema); - - -// File: UserUpdateOneRequiredWithoutPersonalMarkNestedInput.schema.ts -const __makeSchema_UserUpdateOneRequiredWithoutPersonalMarkNestedInput_schema = () => z.object({ - create: z.union([UserCreateWithoutPersonalMarkInputObjectSchema, UserUncheckedCreateWithoutPersonalMarkInputObjectSchema]).optional(), - get connectOrCreate(){ return UserCreateOrConnectWithoutPersonalMarkInputObjectSchema.optional(); }, - get upsert(){ return UserUpsertWithoutPersonalMarkInputObjectSchema.optional(); }, - get connect(){ return UserWhereUniqueInputObjectSchema.optional(); }, - update: z.union([UserUpdateToOneWithWhereWithoutPersonalMarkInputObjectSchema, UserUpdateWithoutPersonalMarkInputObjectSchema, UserUncheckedUpdateWithoutPersonalMarkInputObjectSchema]).optional() -}).strict(); -export const UserUpdateOneRequiredWithoutPersonalMarkNestedInputObjectSchema: z.ZodType = z.lazy(__makeSchema_UserUpdateOneRequiredWithoutPersonalMarkNestedInput_schema) as unknown as z.ZodType; -export const UserUpdateOneRequiredWithoutPersonalMarkNestedInputObjectZodSchema = z.lazy(__makeSchema_UserUpdateOneRequiredWithoutPersonalMarkNestedInput_schema); - - -// File: UserUpdateOneWithoutGivenMarksNestedInput.schema.ts -const __makeSchema_UserUpdateOneWithoutGivenMarksNestedInput_schema = () => z.object({ - create: z.union([UserCreateWithoutGivenMarksInputObjectSchema, UserUncheckedCreateWithoutGivenMarksInputObjectSchema]).optional(), - get connectOrCreate(){ return UserCreateOrConnectWithoutGivenMarksInputObjectSchema.optional(); }, - get upsert(){ return UserUpsertWithoutGivenMarksInputObjectSchema.optional(); }, - disconnect: z.union([z.boolean(), UserWhereInputObjectSchema]).optional(), - delete: z.union([z.boolean(), UserWhereInputObjectSchema]).optional(), - get connect(){ return UserWhereUniqueInputObjectSchema.optional(); }, - update: z.union([UserUpdateToOneWithWhereWithoutGivenMarksInputObjectSchema, UserUpdateWithoutGivenMarksInputObjectSchema, UserUncheckedUpdateWithoutGivenMarksInputObjectSchema]).optional() -}).strict(); -export const UserUpdateOneWithoutGivenMarksNestedInputObjectSchema: z.ZodType = z.lazy(__makeSchema_UserUpdateOneWithoutGivenMarksNestedInput_schema) as unknown as z.ZodType; -export const UserUpdateOneWithoutGivenMarksNestedInputObjectZodSchema = z.lazy(__makeSchema_UserUpdateOneWithoutGivenMarksNestedInput_schema); - - -// File: UserCreateNestedOneWithoutPrivacyPermissionsInput.schema.ts -const __makeSchema_UserCreateNestedOneWithoutPrivacyPermissionsInput_schema = () => z.object({ - create: z.union([UserCreateWithoutPrivacyPermissionsInputObjectSchema, UserUncheckedCreateWithoutPrivacyPermissionsInputObjectSchema]).optional(), - get connectOrCreate(){ return UserCreateOrConnectWithoutPrivacyPermissionsInputObjectSchema.optional(); }, - get connect(){ return UserWhereUniqueInputObjectSchema.optional(); } -}).strict(); -export const UserCreateNestedOneWithoutPrivacyPermissionsInputObjectSchema: z.ZodType = z.lazy(__makeSchema_UserCreateNestedOneWithoutPrivacyPermissionsInput_schema) as unknown as z.ZodType; -export const UserCreateNestedOneWithoutPrivacyPermissionsInputObjectZodSchema = z.lazy(__makeSchema_UserCreateNestedOneWithoutPrivacyPermissionsInput_schema); - - -// File: UserUpdateOneRequiredWithoutPrivacyPermissionsNestedInput.schema.ts -const __makeSchema_UserUpdateOneRequiredWithoutPrivacyPermissionsNestedInput_schema = () => z.object({ - create: z.union([UserCreateWithoutPrivacyPermissionsInputObjectSchema, UserUncheckedCreateWithoutPrivacyPermissionsInputObjectSchema]).optional(), - get connectOrCreate(){ return UserCreateOrConnectWithoutPrivacyPermissionsInputObjectSchema.optional(); }, - get upsert(){ return UserUpsertWithoutPrivacyPermissionsInputObjectSchema.optional(); }, - get connect(){ return UserWhereUniqueInputObjectSchema.optional(); }, - update: z.union([UserUpdateToOneWithWhereWithoutPrivacyPermissionsInputObjectSchema, UserUpdateWithoutPrivacyPermissionsInputObjectSchema, UserUncheckedUpdateWithoutPrivacyPermissionsInputObjectSchema]).optional() -}).strict(); -export const UserUpdateOneRequiredWithoutPrivacyPermissionsNestedInputObjectSchema: z.ZodType = z.lazy(__makeSchema_UserUpdateOneRequiredWithoutPrivacyPermissionsNestedInput_schema) as unknown as z.ZodType; -export const UserUpdateOneRequiredWithoutPrivacyPermissionsNestedInputObjectZodSchema = z.lazy(__makeSchema_UserUpdateOneRequiredWithoutPrivacyPermissionsNestedInput_schema); - - -// File: UserCreateNestedOneWithoutNotificationPermissionsInput.schema.ts -const __makeSchema_UserCreateNestedOneWithoutNotificationPermissionsInput_schema = () => z.object({ - create: z.union([UserCreateWithoutNotificationPermissionsInputObjectSchema, UserUncheckedCreateWithoutNotificationPermissionsInputObjectSchema]).optional(), - get connectOrCreate(){ return UserCreateOrConnectWithoutNotificationPermissionsInputObjectSchema.optional(); }, - get connect(){ return UserWhereUniqueInputObjectSchema.optional(); } -}).strict(); -export const UserCreateNestedOneWithoutNotificationPermissionsInputObjectSchema: z.ZodType = z.lazy(__makeSchema_UserCreateNestedOneWithoutNotificationPermissionsInput_schema) as unknown as z.ZodType; -export const UserCreateNestedOneWithoutNotificationPermissionsInputObjectZodSchema = z.lazy(__makeSchema_UserCreateNestedOneWithoutNotificationPermissionsInput_schema); - - -// File: UserUpdateOneRequiredWithoutNotificationPermissionsNestedInput.schema.ts -const __makeSchema_UserUpdateOneRequiredWithoutNotificationPermissionsNestedInput_schema = () => z.object({ - create: z.union([UserCreateWithoutNotificationPermissionsInputObjectSchema, UserUncheckedCreateWithoutNotificationPermissionsInputObjectSchema]).optional(), - get connectOrCreate(){ return UserCreateOrConnectWithoutNotificationPermissionsInputObjectSchema.optional(); }, - get upsert(){ return UserUpsertWithoutNotificationPermissionsInputObjectSchema.optional(); }, - get connect(){ return UserWhereUniqueInputObjectSchema.optional(); }, - update: z.union([UserUpdateToOneWithWhereWithoutNotificationPermissionsInputObjectSchema, UserUpdateWithoutNotificationPermissionsInputObjectSchema, UserUncheckedUpdateWithoutNotificationPermissionsInputObjectSchema]).optional() -}).strict(); -export const UserUpdateOneRequiredWithoutNotificationPermissionsNestedInputObjectSchema: z.ZodType = z.lazy(__makeSchema_UserUpdateOneRequiredWithoutNotificationPermissionsNestedInput_schema) as unknown as z.ZodType; -export const UserUpdateOneRequiredWithoutNotificationPermissionsNestedInputObjectZodSchema = z.lazy(__makeSchema_UserUpdateOneRequiredWithoutNotificationPermissionsNestedInput_schema); - - -// File: GroupCreateNestedOneWithoutEventsInput.schema.ts -const __makeSchema_GroupCreateNestedOneWithoutEventsInput_schema = () => z.object({ - create: z.union([GroupCreateWithoutEventsInputObjectSchema, GroupUncheckedCreateWithoutEventsInputObjectSchema]).optional(), - get connectOrCreate(){ return GroupCreateOrConnectWithoutEventsInputObjectSchema.optional(); }, - get connect(){ return GroupWhereUniqueInputObjectSchema.optional(); } -}).strict(); -export const GroupCreateNestedOneWithoutEventsInputObjectSchema: z.ZodType = z.lazy(__makeSchema_GroupCreateNestedOneWithoutEventsInput_schema) as unknown as z.ZodType; -export const GroupCreateNestedOneWithoutEventsInputObjectZodSchema = z.lazy(__makeSchema_GroupCreateNestedOneWithoutEventsInput_schema); - - -// File: EventCreateNestedOneWithoutHostingGroupsInput.schema.ts -const __makeSchema_EventCreateNestedOneWithoutHostingGroupsInput_schema = () => z.object({ - create: z.union([EventCreateWithoutHostingGroupsInputObjectSchema, EventUncheckedCreateWithoutHostingGroupsInputObjectSchema]).optional(), - get connectOrCreate(){ return EventCreateOrConnectWithoutHostingGroupsInputObjectSchema.optional(); }, - get connect(){ return EventWhereUniqueInputObjectSchema.optional(); } -}).strict(); -export const EventCreateNestedOneWithoutHostingGroupsInputObjectSchema: z.ZodType = z.lazy(__makeSchema_EventCreateNestedOneWithoutHostingGroupsInput_schema) as unknown as z.ZodType; -export const EventCreateNestedOneWithoutHostingGroupsInputObjectZodSchema = z.lazy(__makeSchema_EventCreateNestedOneWithoutHostingGroupsInput_schema); - - -// File: GroupUpdateOneRequiredWithoutEventsNestedInput.schema.ts -const __makeSchema_GroupUpdateOneRequiredWithoutEventsNestedInput_schema = () => z.object({ - create: z.union([GroupCreateWithoutEventsInputObjectSchema, GroupUncheckedCreateWithoutEventsInputObjectSchema]).optional(), - get connectOrCreate(){ return GroupCreateOrConnectWithoutEventsInputObjectSchema.optional(); }, - get upsert(){ return GroupUpsertWithoutEventsInputObjectSchema.optional(); }, - get connect(){ return GroupWhereUniqueInputObjectSchema.optional(); }, - update: z.union([GroupUpdateToOneWithWhereWithoutEventsInputObjectSchema, GroupUpdateWithoutEventsInputObjectSchema, GroupUncheckedUpdateWithoutEventsInputObjectSchema]).optional() -}).strict(); -export const GroupUpdateOneRequiredWithoutEventsNestedInputObjectSchema: z.ZodType = z.lazy(__makeSchema_GroupUpdateOneRequiredWithoutEventsNestedInput_schema) as unknown as z.ZodType; -export const GroupUpdateOneRequiredWithoutEventsNestedInputObjectZodSchema = z.lazy(__makeSchema_GroupUpdateOneRequiredWithoutEventsNestedInput_schema); - - -// File: EventUpdateOneRequiredWithoutHostingGroupsNestedInput.schema.ts -const __makeSchema_EventUpdateOneRequiredWithoutHostingGroupsNestedInput_schema = () => z.object({ - create: z.union([EventCreateWithoutHostingGroupsInputObjectSchema, EventUncheckedCreateWithoutHostingGroupsInputObjectSchema]).optional(), - get connectOrCreate(){ return EventCreateOrConnectWithoutHostingGroupsInputObjectSchema.optional(); }, - get upsert(){ return EventUpsertWithoutHostingGroupsInputObjectSchema.optional(); }, - get connect(){ return EventWhereUniqueInputObjectSchema.optional(); }, - update: z.union([EventUpdateToOneWithWhereWithoutHostingGroupsInputObjectSchema, EventUpdateWithoutHostingGroupsInputObjectSchema, EventUncheckedUpdateWithoutHostingGroupsInputObjectSchema]).optional() -}).strict(); -export const EventUpdateOneRequiredWithoutHostingGroupsNestedInputObjectSchema: z.ZodType = z.lazy(__makeSchema_EventUpdateOneRequiredWithoutHostingGroupsNestedInput_schema) as unknown as z.ZodType; -export const EventUpdateOneRequiredWithoutHostingGroupsNestedInputObjectZodSchema = z.lazy(__makeSchema_EventUpdateOneRequiredWithoutHostingGroupsNestedInput_schema); - - -// File: CompanyCreateNestedOneWithoutJobListingInput.schema.ts -const __makeSchema_CompanyCreateNestedOneWithoutJobListingInput_schema = () => z.object({ - create: z.union([CompanyCreateWithoutJobListingInputObjectSchema, CompanyUncheckedCreateWithoutJobListingInputObjectSchema]).optional(), - get connectOrCreate(){ return CompanyCreateOrConnectWithoutJobListingInputObjectSchema.optional(); }, - get connect(){ return CompanyWhereUniqueInputObjectSchema.optional(); } -}).strict(); -export const CompanyCreateNestedOneWithoutJobListingInputObjectSchema: z.ZodType = z.lazy(__makeSchema_CompanyCreateNestedOneWithoutJobListingInput_schema) as unknown as z.ZodType; -export const CompanyCreateNestedOneWithoutJobListingInputObjectZodSchema = z.lazy(__makeSchema_CompanyCreateNestedOneWithoutJobListingInput_schema); - - -// File: JobListingLocationCreateNestedManyWithoutJobListingInput.schema.ts -const __makeSchema_JobListingLocationCreateNestedManyWithoutJobListingInput_schema = () => z.object({ - create: z.union([JobListingLocationCreateWithoutJobListingInputObjectSchema, JobListingLocationCreateWithoutJobListingInputObjectSchema.array(), JobListingLocationUncheckedCreateWithoutJobListingInputObjectSchema, JobListingLocationUncheckedCreateWithoutJobListingInputObjectSchema.array()]).optional(), - connectOrCreate: z.union([JobListingLocationCreateOrConnectWithoutJobListingInputObjectSchema, JobListingLocationCreateOrConnectWithoutJobListingInputObjectSchema.array()]).optional(), - get createMany(){ return JobListingLocationCreateManyJobListingInputEnvelopeObjectSchema.optional(); }, - connect: z.union([JobListingLocationWhereUniqueInputObjectSchema, JobListingLocationWhereUniqueInputObjectSchema.array()]).optional() -}).strict(); -export const JobListingLocationCreateNestedManyWithoutJobListingInputObjectSchema: z.ZodType = z.lazy(__makeSchema_JobListingLocationCreateNestedManyWithoutJobListingInput_schema) as unknown as z.ZodType; -export const JobListingLocationCreateNestedManyWithoutJobListingInputObjectZodSchema = z.lazy(__makeSchema_JobListingLocationCreateNestedManyWithoutJobListingInput_schema); - - -// File: JobListingLocationUncheckedCreateNestedManyWithoutJobListingInput.schema.ts -const __makeSchema_JobListingLocationUncheckedCreateNestedManyWithoutJobListingInput_schema = () => z.object({ - create: z.union([JobListingLocationCreateWithoutJobListingInputObjectSchema, JobListingLocationCreateWithoutJobListingInputObjectSchema.array(), JobListingLocationUncheckedCreateWithoutJobListingInputObjectSchema, JobListingLocationUncheckedCreateWithoutJobListingInputObjectSchema.array()]).optional(), - connectOrCreate: z.union([JobListingLocationCreateOrConnectWithoutJobListingInputObjectSchema, JobListingLocationCreateOrConnectWithoutJobListingInputObjectSchema.array()]).optional(), - get createMany(){ return JobListingLocationCreateManyJobListingInputEnvelopeObjectSchema.optional(); }, - connect: z.union([JobListingLocationWhereUniqueInputObjectSchema, JobListingLocationWhereUniqueInputObjectSchema.array()]).optional() -}).strict(); -export const JobListingLocationUncheckedCreateNestedManyWithoutJobListingInputObjectSchema: z.ZodType = z.lazy(__makeSchema_JobListingLocationUncheckedCreateNestedManyWithoutJobListingInput_schema) as unknown as z.ZodType; -export const JobListingLocationUncheckedCreateNestedManyWithoutJobListingInputObjectZodSchema = z.lazy(__makeSchema_JobListingLocationUncheckedCreateNestedManyWithoutJobListingInput_schema); - - -// File: EnumEmploymentTypeFieldUpdateOperationsInput.schema.ts -const __makeSchema_EnumEmploymentTypeFieldUpdateOperationsInput_schema = () => z.object({ - set: EmploymentTypeSchema.optional() -}).strict(); -export const EnumEmploymentTypeFieldUpdateOperationsInputObjectSchema: z.ZodType = z.lazy(__makeSchema_EnumEmploymentTypeFieldUpdateOperationsInput_schema) as unknown as z.ZodType; -export const EnumEmploymentTypeFieldUpdateOperationsInputObjectZodSchema = z.lazy(__makeSchema_EnumEmploymentTypeFieldUpdateOperationsInput_schema); - - -// File: CompanyUpdateOneRequiredWithoutJobListingNestedInput.schema.ts -const __makeSchema_CompanyUpdateOneRequiredWithoutJobListingNestedInput_schema = () => z.object({ - create: z.union([CompanyCreateWithoutJobListingInputObjectSchema, CompanyUncheckedCreateWithoutJobListingInputObjectSchema]).optional(), - get connectOrCreate(){ return CompanyCreateOrConnectWithoutJobListingInputObjectSchema.optional(); }, - get upsert(){ return CompanyUpsertWithoutJobListingInputObjectSchema.optional(); }, - get connect(){ return CompanyWhereUniqueInputObjectSchema.optional(); }, - update: z.union([CompanyUpdateToOneWithWhereWithoutJobListingInputObjectSchema, CompanyUpdateWithoutJobListingInputObjectSchema, CompanyUncheckedUpdateWithoutJobListingInputObjectSchema]).optional() -}).strict(); -export const CompanyUpdateOneRequiredWithoutJobListingNestedInputObjectSchema: z.ZodType = z.lazy(__makeSchema_CompanyUpdateOneRequiredWithoutJobListingNestedInput_schema) as unknown as z.ZodType; -export const CompanyUpdateOneRequiredWithoutJobListingNestedInputObjectZodSchema = z.lazy(__makeSchema_CompanyUpdateOneRequiredWithoutJobListingNestedInput_schema); - - -// File: JobListingLocationUpdateManyWithoutJobListingNestedInput.schema.ts -const __makeSchema_JobListingLocationUpdateManyWithoutJobListingNestedInput_schema = () => z.object({ - create: z.union([JobListingLocationCreateWithoutJobListingInputObjectSchema, JobListingLocationCreateWithoutJobListingInputObjectSchema.array(), JobListingLocationUncheckedCreateWithoutJobListingInputObjectSchema, JobListingLocationUncheckedCreateWithoutJobListingInputObjectSchema.array()]).optional(), - connectOrCreate: z.union([JobListingLocationCreateOrConnectWithoutJobListingInputObjectSchema, JobListingLocationCreateOrConnectWithoutJobListingInputObjectSchema.array()]).optional(), - upsert: z.union([JobListingLocationUpsertWithWhereUniqueWithoutJobListingInputObjectSchema, JobListingLocationUpsertWithWhereUniqueWithoutJobListingInputObjectSchema.array()]).optional(), - get createMany(){ return JobListingLocationCreateManyJobListingInputEnvelopeObjectSchema.optional(); }, - set: z.union([JobListingLocationWhereUniqueInputObjectSchema, JobListingLocationWhereUniqueInputObjectSchema.array()]).optional(), - disconnect: z.union([JobListingLocationWhereUniqueInputObjectSchema, JobListingLocationWhereUniqueInputObjectSchema.array()]).optional(), - delete: z.union([JobListingLocationWhereUniqueInputObjectSchema, JobListingLocationWhereUniqueInputObjectSchema.array()]).optional(), - connect: z.union([JobListingLocationWhereUniqueInputObjectSchema, JobListingLocationWhereUniqueInputObjectSchema.array()]).optional(), - update: z.union([JobListingLocationUpdateWithWhereUniqueWithoutJobListingInputObjectSchema, JobListingLocationUpdateWithWhereUniqueWithoutJobListingInputObjectSchema.array()]).optional(), - updateMany: z.union([JobListingLocationUpdateManyWithWhereWithoutJobListingInputObjectSchema, JobListingLocationUpdateManyWithWhereWithoutJobListingInputObjectSchema.array()]).optional(), - deleteMany: z.union([JobListingLocationScalarWhereInputObjectSchema, JobListingLocationScalarWhereInputObjectSchema.array()]).optional() -}).strict(); -export const JobListingLocationUpdateManyWithoutJobListingNestedInputObjectSchema: z.ZodType = z.lazy(__makeSchema_JobListingLocationUpdateManyWithoutJobListingNestedInput_schema) as unknown as z.ZodType; -export const JobListingLocationUpdateManyWithoutJobListingNestedInputObjectZodSchema = z.lazy(__makeSchema_JobListingLocationUpdateManyWithoutJobListingNestedInput_schema); - - -// File: JobListingLocationUncheckedUpdateManyWithoutJobListingNestedInput.schema.ts -const __makeSchema_JobListingLocationUncheckedUpdateManyWithoutJobListingNestedInput_schema = () => z.object({ - create: z.union([JobListingLocationCreateWithoutJobListingInputObjectSchema, JobListingLocationCreateWithoutJobListingInputObjectSchema.array(), JobListingLocationUncheckedCreateWithoutJobListingInputObjectSchema, JobListingLocationUncheckedCreateWithoutJobListingInputObjectSchema.array()]).optional(), - connectOrCreate: z.union([JobListingLocationCreateOrConnectWithoutJobListingInputObjectSchema, JobListingLocationCreateOrConnectWithoutJobListingInputObjectSchema.array()]).optional(), - upsert: z.union([JobListingLocationUpsertWithWhereUniqueWithoutJobListingInputObjectSchema, JobListingLocationUpsertWithWhereUniqueWithoutJobListingInputObjectSchema.array()]).optional(), - get createMany(){ return JobListingLocationCreateManyJobListingInputEnvelopeObjectSchema.optional(); }, - set: z.union([JobListingLocationWhereUniqueInputObjectSchema, JobListingLocationWhereUniqueInputObjectSchema.array()]).optional(), - disconnect: z.union([JobListingLocationWhereUniqueInputObjectSchema, JobListingLocationWhereUniqueInputObjectSchema.array()]).optional(), - delete: z.union([JobListingLocationWhereUniqueInputObjectSchema, JobListingLocationWhereUniqueInputObjectSchema.array()]).optional(), - connect: z.union([JobListingLocationWhereUniqueInputObjectSchema, JobListingLocationWhereUniqueInputObjectSchema.array()]).optional(), - update: z.union([JobListingLocationUpdateWithWhereUniqueWithoutJobListingInputObjectSchema, JobListingLocationUpdateWithWhereUniqueWithoutJobListingInputObjectSchema.array()]).optional(), - updateMany: z.union([JobListingLocationUpdateManyWithWhereWithoutJobListingInputObjectSchema, JobListingLocationUpdateManyWithWhereWithoutJobListingInputObjectSchema.array()]).optional(), - deleteMany: z.union([JobListingLocationScalarWhereInputObjectSchema, JobListingLocationScalarWhereInputObjectSchema.array()]).optional() -}).strict(); -export const JobListingLocationUncheckedUpdateManyWithoutJobListingNestedInputObjectSchema: z.ZodType = z.lazy(__makeSchema_JobListingLocationUncheckedUpdateManyWithoutJobListingNestedInput_schema) as unknown as z.ZodType; -export const JobListingLocationUncheckedUpdateManyWithoutJobListingNestedInputObjectZodSchema = z.lazy(__makeSchema_JobListingLocationUncheckedUpdateManyWithoutJobListingNestedInput_schema); - - -// File: JobListingCreateNestedOneWithoutLocationsInput.schema.ts -const __makeSchema_JobListingCreateNestedOneWithoutLocationsInput_schema = () => z.object({ - create: z.union([JobListingCreateWithoutLocationsInputObjectSchema, JobListingUncheckedCreateWithoutLocationsInputObjectSchema]).optional(), - get connectOrCreate(){ return JobListingCreateOrConnectWithoutLocationsInputObjectSchema.optional(); }, - get connect(){ return JobListingWhereUniqueInputObjectSchema.optional(); } -}).strict(); -export const JobListingCreateNestedOneWithoutLocationsInputObjectSchema: z.ZodType = z.lazy(__makeSchema_JobListingCreateNestedOneWithoutLocationsInput_schema) as unknown as z.ZodType; -export const JobListingCreateNestedOneWithoutLocationsInputObjectZodSchema = z.lazy(__makeSchema_JobListingCreateNestedOneWithoutLocationsInput_schema); - - -// File: JobListingUpdateOneRequiredWithoutLocationsNestedInput.schema.ts -const __makeSchema_JobListingUpdateOneRequiredWithoutLocationsNestedInput_schema = () => z.object({ - create: z.union([JobListingCreateWithoutLocationsInputObjectSchema, JobListingUncheckedCreateWithoutLocationsInputObjectSchema]).optional(), - get connectOrCreate(){ return JobListingCreateOrConnectWithoutLocationsInputObjectSchema.optional(); }, - get upsert(){ return JobListingUpsertWithoutLocationsInputObjectSchema.optional(); }, - get connect(){ return JobListingWhereUniqueInputObjectSchema.optional(); }, - update: z.union([JobListingUpdateToOneWithWhereWithoutLocationsInputObjectSchema, JobListingUpdateWithoutLocationsInputObjectSchema, JobListingUncheckedUpdateWithoutLocationsInputObjectSchema]).optional() -}).strict(); -export const JobListingUpdateOneRequiredWithoutLocationsNestedInputObjectSchema: z.ZodType = z.lazy(__makeSchema_JobListingUpdateOneRequiredWithoutLocationsNestedInput_schema) as unknown as z.ZodType; -export const JobListingUpdateOneRequiredWithoutLocationsNestedInputObjectZodSchema = z.lazy(__makeSchema_JobListingUpdateOneRequiredWithoutLocationsNestedInput_schema); - - -// File: ArticleTagLinkCreateNestedManyWithoutArticleInput.schema.ts -const __makeSchema_ArticleTagLinkCreateNestedManyWithoutArticleInput_schema = () => z.object({ - create: z.union([ArticleTagLinkCreateWithoutArticleInputObjectSchema, ArticleTagLinkCreateWithoutArticleInputObjectSchema.array(), ArticleTagLinkUncheckedCreateWithoutArticleInputObjectSchema, ArticleTagLinkUncheckedCreateWithoutArticleInputObjectSchema.array()]).optional(), - connectOrCreate: z.union([ArticleTagLinkCreateOrConnectWithoutArticleInputObjectSchema, ArticleTagLinkCreateOrConnectWithoutArticleInputObjectSchema.array()]).optional(), - get createMany(){ return ArticleTagLinkCreateManyArticleInputEnvelopeObjectSchema.optional(); }, - connect: z.union([ArticleTagLinkWhereUniqueInputObjectSchema, ArticleTagLinkWhereUniqueInputObjectSchema.array()]).optional() -}).strict(); -export const ArticleTagLinkCreateNestedManyWithoutArticleInputObjectSchema: z.ZodType = z.lazy(__makeSchema_ArticleTagLinkCreateNestedManyWithoutArticleInput_schema) as unknown as z.ZodType; -export const ArticleTagLinkCreateNestedManyWithoutArticleInputObjectZodSchema = z.lazy(__makeSchema_ArticleTagLinkCreateNestedManyWithoutArticleInput_schema); - - -// File: ArticleTagLinkUncheckedCreateNestedManyWithoutArticleInput.schema.ts -const __makeSchema_ArticleTagLinkUncheckedCreateNestedManyWithoutArticleInput_schema = () => z.object({ - create: z.union([ArticleTagLinkCreateWithoutArticleInputObjectSchema, ArticleTagLinkCreateWithoutArticleInputObjectSchema.array(), ArticleTagLinkUncheckedCreateWithoutArticleInputObjectSchema, ArticleTagLinkUncheckedCreateWithoutArticleInputObjectSchema.array()]).optional(), - connectOrCreate: z.union([ArticleTagLinkCreateOrConnectWithoutArticleInputObjectSchema, ArticleTagLinkCreateOrConnectWithoutArticleInputObjectSchema.array()]).optional(), - get createMany(){ return ArticleTagLinkCreateManyArticleInputEnvelopeObjectSchema.optional(); }, - connect: z.union([ArticleTagLinkWhereUniqueInputObjectSchema, ArticleTagLinkWhereUniqueInputObjectSchema.array()]).optional() -}).strict(); -export const ArticleTagLinkUncheckedCreateNestedManyWithoutArticleInputObjectSchema: z.ZodType = z.lazy(__makeSchema_ArticleTagLinkUncheckedCreateNestedManyWithoutArticleInput_schema) as unknown as z.ZodType; -export const ArticleTagLinkUncheckedCreateNestedManyWithoutArticleInputObjectZodSchema = z.lazy(__makeSchema_ArticleTagLinkUncheckedCreateNestedManyWithoutArticleInput_schema); - - -// File: ArticleTagLinkUpdateManyWithoutArticleNestedInput.schema.ts -const __makeSchema_ArticleTagLinkUpdateManyWithoutArticleNestedInput_schema = () => z.object({ - create: z.union([ArticleTagLinkCreateWithoutArticleInputObjectSchema, ArticleTagLinkCreateWithoutArticleInputObjectSchema.array(), ArticleTagLinkUncheckedCreateWithoutArticleInputObjectSchema, ArticleTagLinkUncheckedCreateWithoutArticleInputObjectSchema.array()]).optional(), - connectOrCreate: z.union([ArticleTagLinkCreateOrConnectWithoutArticleInputObjectSchema, ArticleTagLinkCreateOrConnectWithoutArticleInputObjectSchema.array()]).optional(), - upsert: z.union([ArticleTagLinkUpsertWithWhereUniqueWithoutArticleInputObjectSchema, ArticleTagLinkUpsertWithWhereUniqueWithoutArticleInputObjectSchema.array()]).optional(), - get createMany(){ return ArticleTagLinkCreateManyArticleInputEnvelopeObjectSchema.optional(); }, - set: z.union([ArticleTagLinkWhereUniqueInputObjectSchema, ArticleTagLinkWhereUniqueInputObjectSchema.array()]).optional(), - disconnect: z.union([ArticleTagLinkWhereUniqueInputObjectSchema, ArticleTagLinkWhereUniqueInputObjectSchema.array()]).optional(), - delete: z.union([ArticleTagLinkWhereUniqueInputObjectSchema, ArticleTagLinkWhereUniqueInputObjectSchema.array()]).optional(), - connect: z.union([ArticleTagLinkWhereUniqueInputObjectSchema, ArticleTagLinkWhereUniqueInputObjectSchema.array()]).optional(), - update: z.union([ArticleTagLinkUpdateWithWhereUniqueWithoutArticleInputObjectSchema, ArticleTagLinkUpdateWithWhereUniqueWithoutArticleInputObjectSchema.array()]).optional(), - updateMany: z.union([ArticleTagLinkUpdateManyWithWhereWithoutArticleInputObjectSchema, ArticleTagLinkUpdateManyWithWhereWithoutArticleInputObjectSchema.array()]).optional(), - deleteMany: z.union([ArticleTagLinkScalarWhereInputObjectSchema, ArticleTagLinkScalarWhereInputObjectSchema.array()]).optional() -}).strict(); -export const ArticleTagLinkUpdateManyWithoutArticleNestedInputObjectSchema: z.ZodType = z.lazy(__makeSchema_ArticleTagLinkUpdateManyWithoutArticleNestedInput_schema) as unknown as z.ZodType; -export const ArticleTagLinkUpdateManyWithoutArticleNestedInputObjectZodSchema = z.lazy(__makeSchema_ArticleTagLinkUpdateManyWithoutArticleNestedInput_schema); - - -// File: ArticleTagLinkUncheckedUpdateManyWithoutArticleNestedInput.schema.ts -const __makeSchema_ArticleTagLinkUncheckedUpdateManyWithoutArticleNestedInput_schema = () => z.object({ - create: z.union([ArticleTagLinkCreateWithoutArticleInputObjectSchema, ArticleTagLinkCreateWithoutArticleInputObjectSchema.array(), ArticleTagLinkUncheckedCreateWithoutArticleInputObjectSchema, ArticleTagLinkUncheckedCreateWithoutArticleInputObjectSchema.array()]).optional(), - connectOrCreate: z.union([ArticleTagLinkCreateOrConnectWithoutArticleInputObjectSchema, ArticleTagLinkCreateOrConnectWithoutArticleInputObjectSchema.array()]).optional(), - upsert: z.union([ArticleTagLinkUpsertWithWhereUniqueWithoutArticleInputObjectSchema, ArticleTagLinkUpsertWithWhereUniqueWithoutArticleInputObjectSchema.array()]).optional(), - get createMany(){ return ArticleTagLinkCreateManyArticleInputEnvelopeObjectSchema.optional(); }, - set: z.union([ArticleTagLinkWhereUniqueInputObjectSchema, ArticleTagLinkWhereUniqueInputObjectSchema.array()]).optional(), - disconnect: z.union([ArticleTagLinkWhereUniqueInputObjectSchema, ArticleTagLinkWhereUniqueInputObjectSchema.array()]).optional(), - delete: z.union([ArticleTagLinkWhereUniqueInputObjectSchema, ArticleTagLinkWhereUniqueInputObjectSchema.array()]).optional(), - connect: z.union([ArticleTagLinkWhereUniqueInputObjectSchema, ArticleTagLinkWhereUniqueInputObjectSchema.array()]).optional(), - update: z.union([ArticleTagLinkUpdateWithWhereUniqueWithoutArticleInputObjectSchema, ArticleTagLinkUpdateWithWhereUniqueWithoutArticleInputObjectSchema.array()]).optional(), - updateMany: z.union([ArticleTagLinkUpdateManyWithWhereWithoutArticleInputObjectSchema, ArticleTagLinkUpdateManyWithWhereWithoutArticleInputObjectSchema.array()]).optional(), - deleteMany: z.union([ArticleTagLinkScalarWhereInputObjectSchema, ArticleTagLinkScalarWhereInputObjectSchema.array()]).optional() -}).strict(); -export const ArticleTagLinkUncheckedUpdateManyWithoutArticleNestedInputObjectSchema: z.ZodType = z.lazy(__makeSchema_ArticleTagLinkUncheckedUpdateManyWithoutArticleNestedInput_schema) as unknown as z.ZodType; -export const ArticleTagLinkUncheckedUpdateManyWithoutArticleNestedInputObjectZodSchema = z.lazy(__makeSchema_ArticleTagLinkUncheckedUpdateManyWithoutArticleNestedInput_schema); - - -// File: ArticleTagLinkCreateNestedManyWithoutTagInput.schema.ts -const __makeSchema_ArticleTagLinkCreateNestedManyWithoutTagInput_schema = () => z.object({ - create: z.union([ArticleTagLinkCreateWithoutTagInputObjectSchema, ArticleTagLinkCreateWithoutTagInputObjectSchema.array(), ArticleTagLinkUncheckedCreateWithoutTagInputObjectSchema, ArticleTagLinkUncheckedCreateWithoutTagInputObjectSchema.array()]).optional(), - connectOrCreate: z.union([ArticleTagLinkCreateOrConnectWithoutTagInputObjectSchema, ArticleTagLinkCreateOrConnectWithoutTagInputObjectSchema.array()]).optional(), - get createMany(){ return ArticleTagLinkCreateManyTagInputEnvelopeObjectSchema.optional(); }, - connect: z.union([ArticleTagLinkWhereUniqueInputObjectSchema, ArticleTagLinkWhereUniqueInputObjectSchema.array()]).optional() -}).strict(); -export const ArticleTagLinkCreateNestedManyWithoutTagInputObjectSchema: z.ZodType = z.lazy(__makeSchema_ArticleTagLinkCreateNestedManyWithoutTagInput_schema) as unknown as z.ZodType; -export const ArticleTagLinkCreateNestedManyWithoutTagInputObjectZodSchema = z.lazy(__makeSchema_ArticleTagLinkCreateNestedManyWithoutTagInput_schema); - - -// File: ArticleTagLinkUncheckedCreateNestedManyWithoutTagInput.schema.ts -const __makeSchema_ArticleTagLinkUncheckedCreateNestedManyWithoutTagInput_schema = () => z.object({ - create: z.union([ArticleTagLinkCreateWithoutTagInputObjectSchema, ArticleTagLinkCreateWithoutTagInputObjectSchema.array(), ArticleTagLinkUncheckedCreateWithoutTagInputObjectSchema, ArticleTagLinkUncheckedCreateWithoutTagInputObjectSchema.array()]).optional(), - connectOrCreate: z.union([ArticleTagLinkCreateOrConnectWithoutTagInputObjectSchema, ArticleTagLinkCreateOrConnectWithoutTagInputObjectSchema.array()]).optional(), - get createMany(){ return ArticleTagLinkCreateManyTagInputEnvelopeObjectSchema.optional(); }, - connect: z.union([ArticleTagLinkWhereUniqueInputObjectSchema, ArticleTagLinkWhereUniqueInputObjectSchema.array()]).optional() -}).strict(); -export const ArticleTagLinkUncheckedCreateNestedManyWithoutTagInputObjectSchema: z.ZodType = z.lazy(__makeSchema_ArticleTagLinkUncheckedCreateNestedManyWithoutTagInput_schema) as unknown as z.ZodType; -export const ArticleTagLinkUncheckedCreateNestedManyWithoutTagInputObjectZodSchema = z.lazy(__makeSchema_ArticleTagLinkUncheckedCreateNestedManyWithoutTagInput_schema); - - -// File: ArticleTagLinkUpdateManyWithoutTagNestedInput.schema.ts -const __makeSchema_ArticleTagLinkUpdateManyWithoutTagNestedInput_schema = () => z.object({ - create: z.union([ArticleTagLinkCreateWithoutTagInputObjectSchema, ArticleTagLinkCreateWithoutTagInputObjectSchema.array(), ArticleTagLinkUncheckedCreateWithoutTagInputObjectSchema, ArticleTagLinkUncheckedCreateWithoutTagInputObjectSchema.array()]).optional(), - connectOrCreate: z.union([ArticleTagLinkCreateOrConnectWithoutTagInputObjectSchema, ArticleTagLinkCreateOrConnectWithoutTagInputObjectSchema.array()]).optional(), - upsert: z.union([ArticleTagLinkUpsertWithWhereUniqueWithoutTagInputObjectSchema, ArticleTagLinkUpsertWithWhereUniqueWithoutTagInputObjectSchema.array()]).optional(), - get createMany(){ return ArticleTagLinkCreateManyTagInputEnvelopeObjectSchema.optional(); }, - set: z.union([ArticleTagLinkWhereUniqueInputObjectSchema, ArticleTagLinkWhereUniqueInputObjectSchema.array()]).optional(), - disconnect: z.union([ArticleTagLinkWhereUniqueInputObjectSchema, ArticleTagLinkWhereUniqueInputObjectSchema.array()]).optional(), - delete: z.union([ArticleTagLinkWhereUniqueInputObjectSchema, ArticleTagLinkWhereUniqueInputObjectSchema.array()]).optional(), - connect: z.union([ArticleTagLinkWhereUniqueInputObjectSchema, ArticleTagLinkWhereUniqueInputObjectSchema.array()]).optional(), - update: z.union([ArticleTagLinkUpdateWithWhereUniqueWithoutTagInputObjectSchema, ArticleTagLinkUpdateWithWhereUniqueWithoutTagInputObjectSchema.array()]).optional(), - updateMany: z.union([ArticleTagLinkUpdateManyWithWhereWithoutTagInputObjectSchema, ArticleTagLinkUpdateManyWithWhereWithoutTagInputObjectSchema.array()]).optional(), - deleteMany: z.union([ArticleTagLinkScalarWhereInputObjectSchema, ArticleTagLinkScalarWhereInputObjectSchema.array()]).optional() -}).strict(); -export const ArticleTagLinkUpdateManyWithoutTagNestedInputObjectSchema: z.ZodType = z.lazy(__makeSchema_ArticleTagLinkUpdateManyWithoutTagNestedInput_schema) as unknown as z.ZodType; -export const ArticleTagLinkUpdateManyWithoutTagNestedInputObjectZodSchema = z.lazy(__makeSchema_ArticleTagLinkUpdateManyWithoutTagNestedInput_schema); - - -// File: ArticleTagLinkUncheckedUpdateManyWithoutTagNestedInput.schema.ts -const __makeSchema_ArticleTagLinkUncheckedUpdateManyWithoutTagNestedInput_schema = () => z.object({ - create: z.union([ArticleTagLinkCreateWithoutTagInputObjectSchema, ArticleTagLinkCreateWithoutTagInputObjectSchema.array(), ArticleTagLinkUncheckedCreateWithoutTagInputObjectSchema, ArticleTagLinkUncheckedCreateWithoutTagInputObjectSchema.array()]).optional(), - connectOrCreate: z.union([ArticleTagLinkCreateOrConnectWithoutTagInputObjectSchema, ArticleTagLinkCreateOrConnectWithoutTagInputObjectSchema.array()]).optional(), - upsert: z.union([ArticleTagLinkUpsertWithWhereUniqueWithoutTagInputObjectSchema, ArticleTagLinkUpsertWithWhereUniqueWithoutTagInputObjectSchema.array()]).optional(), - get createMany(){ return ArticleTagLinkCreateManyTagInputEnvelopeObjectSchema.optional(); }, - set: z.union([ArticleTagLinkWhereUniqueInputObjectSchema, ArticleTagLinkWhereUniqueInputObjectSchema.array()]).optional(), - disconnect: z.union([ArticleTagLinkWhereUniqueInputObjectSchema, ArticleTagLinkWhereUniqueInputObjectSchema.array()]).optional(), - delete: z.union([ArticleTagLinkWhereUniqueInputObjectSchema, ArticleTagLinkWhereUniqueInputObjectSchema.array()]).optional(), - connect: z.union([ArticleTagLinkWhereUniqueInputObjectSchema, ArticleTagLinkWhereUniqueInputObjectSchema.array()]).optional(), - update: z.union([ArticleTagLinkUpdateWithWhereUniqueWithoutTagInputObjectSchema, ArticleTagLinkUpdateWithWhereUniqueWithoutTagInputObjectSchema.array()]).optional(), - updateMany: z.union([ArticleTagLinkUpdateManyWithWhereWithoutTagInputObjectSchema, ArticleTagLinkUpdateManyWithWhereWithoutTagInputObjectSchema.array()]).optional(), - deleteMany: z.union([ArticleTagLinkScalarWhereInputObjectSchema, ArticleTagLinkScalarWhereInputObjectSchema.array()]).optional() -}).strict(); -export const ArticleTagLinkUncheckedUpdateManyWithoutTagNestedInputObjectSchema: z.ZodType = z.lazy(__makeSchema_ArticleTagLinkUncheckedUpdateManyWithoutTagNestedInput_schema) as unknown as z.ZodType; -export const ArticleTagLinkUncheckedUpdateManyWithoutTagNestedInputObjectZodSchema = z.lazy(__makeSchema_ArticleTagLinkUncheckedUpdateManyWithoutTagNestedInput_schema); - - -// File: ArticleCreateNestedOneWithoutTagsInput.schema.ts -const __makeSchema_ArticleCreateNestedOneWithoutTagsInput_schema = () => z.object({ - create: z.union([ArticleCreateWithoutTagsInputObjectSchema, ArticleUncheckedCreateWithoutTagsInputObjectSchema]).optional(), - get connectOrCreate(){ return ArticleCreateOrConnectWithoutTagsInputObjectSchema.optional(); }, - get connect(){ return ArticleWhereUniqueInputObjectSchema.optional(); } -}).strict(); -export const ArticleCreateNestedOneWithoutTagsInputObjectSchema: z.ZodType = z.lazy(__makeSchema_ArticleCreateNestedOneWithoutTagsInput_schema) as unknown as z.ZodType; -export const ArticleCreateNestedOneWithoutTagsInputObjectZodSchema = z.lazy(__makeSchema_ArticleCreateNestedOneWithoutTagsInput_schema); - - -// File: ArticleTagCreateNestedOneWithoutArticlesInput.schema.ts -const __makeSchema_ArticleTagCreateNestedOneWithoutArticlesInput_schema = () => z.object({ - create: z.union([ArticleTagCreateWithoutArticlesInputObjectSchema, ArticleTagUncheckedCreateWithoutArticlesInputObjectSchema]).optional(), - get connectOrCreate(){ return ArticleTagCreateOrConnectWithoutArticlesInputObjectSchema.optional(); }, - get connect(){ return ArticleTagWhereUniqueInputObjectSchema.optional(); } -}).strict(); -export const ArticleTagCreateNestedOneWithoutArticlesInputObjectSchema: z.ZodType = z.lazy(__makeSchema_ArticleTagCreateNestedOneWithoutArticlesInput_schema) as unknown as z.ZodType; -export const ArticleTagCreateNestedOneWithoutArticlesInputObjectZodSchema = z.lazy(__makeSchema_ArticleTagCreateNestedOneWithoutArticlesInput_schema); - - -// File: ArticleUpdateOneRequiredWithoutTagsNestedInput.schema.ts -const __makeSchema_ArticleUpdateOneRequiredWithoutTagsNestedInput_schema = () => z.object({ - create: z.union([ArticleCreateWithoutTagsInputObjectSchema, ArticleUncheckedCreateWithoutTagsInputObjectSchema]).optional(), - get connectOrCreate(){ return ArticleCreateOrConnectWithoutTagsInputObjectSchema.optional(); }, - get upsert(){ return ArticleUpsertWithoutTagsInputObjectSchema.optional(); }, - get connect(){ return ArticleWhereUniqueInputObjectSchema.optional(); }, - update: z.union([ArticleUpdateToOneWithWhereWithoutTagsInputObjectSchema, ArticleUpdateWithoutTagsInputObjectSchema, ArticleUncheckedUpdateWithoutTagsInputObjectSchema]).optional() -}).strict(); -export const ArticleUpdateOneRequiredWithoutTagsNestedInputObjectSchema: z.ZodType = z.lazy(__makeSchema_ArticleUpdateOneRequiredWithoutTagsNestedInput_schema) as unknown as z.ZodType; -export const ArticleUpdateOneRequiredWithoutTagsNestedInputObjectZodSchema = z.lazy(__makeSchema_ArticleUpdateOneRequiredWithoutTagsNestedInput_schema); - - -// File: ArticleTagUpdateOneRequiredWithoutArticlesNestedInput.schema.ts -const __makeSchema_ArticleTagUpdateOneRequiredWithoutArticlesNestedInput_schema = () => z.object({ - create: z.union([ArticleTagCreateWithoutArticlesInputObjectSchema, ArticleTagUncheckedCreateWithoutArticlesInputObjectSchema]).optional(), - get connectOrCreate(){ return ArticleTagCreateOrConnectWithoutArticlesInputObjectSchema.optional(); }, - get upsert(){ return ArticleTagUpsertWithoutArticlesInputObjectSchema.optional(); }, - get connect(){ return ArticleTagWhereUniqueInputObjectSchema.optional(); }, - update: z.union([ArticleTagUpdateToOneWithWhereWithoutArticlesInputObjectSchema, ArticleTagUpdateWithoutArticlesInputObjectSchema, ArticleTagUncheckedUpdateWithoutArticlesInputObjectSchema]).optional() -}).strict(); -export const ArticleTagUpdateOneRequiredWithoutArticlesNestedInputObjectSchema: z.ZodType = z.lazy(__makeSchema_ArticleTagUpdateOneRequiredWithoutArticlesNestedInput_schema) as unknown as z.ZodType; -export const ArticleTagUpdateOneRequiredWithoutArticlesNestedInputObjectZodSchema = z.lazy(__makeSchema_ArticleTagUpdateOneRequiredWithoutArticlesNestedInput_schema); - - -// File: RecurringTaskCreateNestedOneWithoutTasksInput.schema.ts -const __makeSchema_RecurringTaskCreateNestedOneWithoutTasksInput_schema = () => z.object({ - create: z.union([RecurringTaskCreateWithoutTasksInputObjectSchema, RecurringTaskUncheckedCreateWithoutTasksInputObjectSchema]).optional(), - get connectOrCreate(){ return RecurringTaskCreateOrConnectWithoutTasksInputObjectSchema.optional(); }, - get connect(){ return RecurringTaskWhereUniqueInputObjectSchema.optional(); } -}).strict(); -export const RecurringTaskCreateNestedOneWithoutTasksInputObjectSchema: z.ZodType = z.lazy(__makeSchema_RecurringTaskCreateNestedOneWithoutTasksInput_schema) as unknown as z.ZodType; -export const RecurringTaskCreateNestedOneWithoutTasksInputObjectZodSchema = z.lazy(__makeSchema_RecurringTaskCreateNestedOneWithoutTasksInput_schema); - - -// File: AttendancePoolCreateNestedManyWithoutTaskInput.schema.ts -const __makeSchema_AttendancePoolCreateNestedManyWithoutTaskInput_schema = () => z.object({ - create: z.union([AttendancePoolCreateWithoutTaskInputObjectSchema, AttendancePoolCreateWithoutTaskInputObjectSchema.array(), AttendancePoolUncheckedCreateWithoutTaskInputObjectSchema, AttendancePoolUncheckedCreateWithoutTaskInputObjectSchema.array()]).optional(), - connectOrCreate: z.union([AttendancePoolCreateOrConnectWithoutTaskInputObjectSchema, AttendancePoolCreateOrConnectWithoutTaskInputObjectSchema.array()]).optional(), - get createMany(){ return AttendancePoolCreateManyTaskInputEnvelopeObjectSchema.optional(); }, - connect: z.union([AttendancePoolWhereUniqueInputObjectSchema, AttendancePoolWhereUniqueInputObjectSchema.array()]).optional() -}).strict(); -export const AttendancePoolCreateNestedManyWithoutTaskInputObjectSchema: z.ZodType = z.lazy(__makeSchema_AttendancePoolCreateNestedManyWithoutTaskInput_schema) as unknown as z.ZodType; -export const AttendancePoolCreateNestedManyWithoutTaskInputObjectZodSchema = z.lazy(__makeSchema_AttendancePoolCreateNestedManyWithoutTaskInput_schema); - - -// File: NotificationCreateNestedManyWithoutTaskInput.schema.ts -const __makeSchema_NotificationCreateNestedManyWithoutTaskInput_schema = () => z.object({ - create: z.union([NotificationCreateWithoutTaskInputObjectSchema, NotificationCreateWithoutTaskInputObjectSchema.array(), NotificationUncheckedCreateWithoutTaskInputObjectSchema, NotificationUncheckedCreateWithoutTaskInputObjectSchema.array()]).optional(), - connectOrCreate: z.union([NotificationCreateOrConnectWithoutTaskInputObjectSchema, NotificationCreateOrConnectWithoutTaskInputObjectSchema.array()]).optional(), - get createMany(){ return NotificationCreateManyTaskInputEnvelopeObjectSchema.optional(); }, - connect: z.union([NotificationWhereUniqueInputObjectSchema, NotificationWhereUniqueInputObjectSchema.array()]).optional() -}).strict(); -export const NotificationCreateNestedManyWithoutTaskInputObjectSchema: z.ZodType = z.lazy(__makeSchema_NotificationCreateNestedManyWithoutTaskInput_schema) as unknown as z.ZodType; -export const NotificationCreateNestedManyWithoutTaskInputObjectZodSchema = z.lazy(__makeSchema_NotificationCreateNestedManyWithoutTaskInput_schema); - - -// File: AttendancePoolUncheckedCreateNestedManyWithoutTaskInput.schema.ts -const __makeSchema_AttendancePoolUncheckedCreateNestedManyWithoutTaskInput_schema = () => z.object({ - create: z.union([AttendancePoolCreateWithoutTaskInputObjectSchema, AttendancePoolCreateWithoutTaskInputObjectSchema.array(), AttendancePoolUncheckedCreateWithoutTaskInputObjectSchema, AttendancePoolUncheckedCreateWithoutTaskInputObjectSchema.array()]).optional(), - connectOrCreate: z.union([AttendancePoolCreateOrConnectWithoutTaskInputObjectSchema, AttendancePoolCreateOrConnectWithoutTaskInputObjectSchema.array()]).optional(), - get createMany(){ return AttendancePoolCreateManyTaskInputEnvelopeObjectSchema.optional(); }, - connect: z.union([AttendancePoolWhereUniqueInputObjectSchema, AttendancePoolWhereUniqueInputObjectSchema.array()]).optional() -}).strict(); -export const AttendancePoolUncheckedCreateNestedManyWithoutTaskInputObjectSchema: z.ZodType = z.lazy(__makeSchema_AttendancePoolUncheckedCreateNestedManyWithoutTaskInput_schema) as unknown as z.ZodType; -export const AttendancePoolUncheckedCreateNestedManyWithoutTaskInputObjectZodSchema = z.lazy(__makeSchema_AttendancePoolUncheckedCreateNestedManyWithoutTaskInput_schema); - - -// File: NotificationUncheckedCreateNestedManyWithoutTaskInput.schema.ts -const __makeSchema_NotificationUncheckedCreateNestedManyWithoutTaskInput_schema = () => z.object({ - create: z.union([NotificationCreateWithoutTaskInputObjectSchema, NotificationCreateWithoutTaskInputObjectSchema.array(), NotificationUncheckedCreateWithoutTaskInputObjectSchema, NotificationUncheckedCreateWithoutTaskInputObjectSchema.array()]).optional(), - connectOrCreate: z.union([NotificationCreateOrConnectWithoutTaskInputObjectSchema, NotificationCreateOrConnectWithoutTaskInputObjectSchema.array()]).optional(), - get createMany(){ return NotificationCreateManyTaskInputEnvelopeObjectSchema.optional(); }, - connect: z.union([NotificationWhereUniqueInputObjectSchema, NotificationWhereUniqueInputObjectSchema.array()]).optional() -}).strict(); -export const NotificationUncheckedCreateNestedManyWithoutTaskInputObjectSchema: z.ZodType = z.lazy(__makeSchema_NotificationUncheckedCreateNestedManyWithoutTaskInput_schema) as unknown as z.ZodType; -export const NotificationUncheckedCreateNestedManyWithoutTaskInputObjectZodSchema = z.lazy(__makeSchema_NotificationUncheckedCreateNestedManyWithoutTaskInput_schema); - - -// File: EnumTaskTypeFieldUpdateOperationsInput.schema.ts -const __makeSchema_EnumTaskTypeFieldUpdateOperationsInput_schema = () => z.object({ - set: TaskTypeSchema.optional() -}).strict(); -export const EnumTaskTypeFieldUpdateOperationsInputObjectSchema: z.ZodType = z.lazy(__makeSchema_EnumTaskTypeFieldUpdateOperationsInput_schema) as unknown as z.ZodType; -export const EnumTaskTypeFieldUpdateOperationsInputObjectZodSchema = z.lazy(__makeSchema_EnumTaskTypeFieldUpdateOperationsInput_schema); - - -// File: EnumTaskStatusFieldUpdateOperationsInput.schema.ts -const __makeSchema_EnumTaskStatusFieldUpdateOperationsInput_schema = () => z.object({ - set: TaskStatusSchema.optional() -}).strict(); -export const EnumTaskStatusFieldUpdateOperationsInputObjectSchema: z.ZodType = z.lazy(__makeSchema_EnumTaskStatusFieldUpdateOperationsInput_schema) as unknown as z.ZodType; -export const EnumTaskStatusFieldUpdateOperationsInputObjectZodSchema = z.lazy(__makeSchema_EnumTaskStatusFieldUpdateOperationsInput_schema); - - -// File: RecurringTaskUpdateOneWithoutTasksNestedInput.schema.ts -const __makeSchema_RecurringTaskUpdateOneWithoutTasksNestedInput_schema = () => z.object({ - create: z.union([RecurringTaskCreateWithoutTasksInputObjectSchema, RecurringTaskUncheckedCreateWithoutTasksInputObjectSchema]).optional(), - get connectOrCreate(){ return RecurringTaskCreateOrConnectWithoutTasksInputObjectSchema.optional(); }, - get upsert(){ return RecurringTaskUpsertWithoutTasksInputObjectSchema.optional(); }, - disconnect: z.union([z.boolean(), RecurringTaskWhereInputObjectSchema]).optional(), - delete: z.union([z.boolean(), RecurringTaskWhereInputObjectSchema]).optional(), - get connect(){ return RecurringTaskWhereUniqueInputObjectSchema.optional(); }, - update: z.union([RecurringTaskUpdateToOneWithWhereWithoutTasksInputObjectSchema, RecurringTaskUpdateWithoutTasksInputObjectSchema, RecurringTaskUncheckedUpdateWithoutTasksInputObjectSchema]).optional() -}).strict(); -export const RecurringTaskUpdateOneWithoutTasksNestedInputObjectSchema: z.ZodType = z.lazy(__makeSchema_RecurringTaskUpdateOneWithoutTasksNestedInput_schema) as unknown as z.ZodType; -export const RecurringTaskUpdateOneWithoutTasksNestedInputObjectZodSchema = z.lazy(__makeSchema_RecurringTaskUpdateOneWithoutTasksNestedInput_schema); - - -// File: AttendancePoolUpdateManyWithoutTaskNestedInput.schema.ts -const __makeSchema_AttendancePoolUpdateManyWithoutTaskNestedInput_schema = () => z.object({ - create: z.union([AttendancePoolCreateWithoutTaskInputObjectSchema, AttendancePoolCreateWithoutTaskInputObjectSchema.array(), AttendancePoolUncheckedCreateWithoutTaskInputObjectSchema, AttendancePoolUncheckedCreateWithoutTaskInputObjectSchema.array()]).optional(), - connectOrCreate: z.union([AttendancePoolCreateOrConnectWithoutTaskInputObjectSchema, AttendancePoolCreateOrConnectWithoutTaskInputObjectSchema.array()]).optional(), - upsert: z.union([AttendancePoolUpsertWithWhereUniqueWithoutTaskInputObjectSchema, AttendancePoolUpsertWithWhereUniqueWithoutTaskInputObjectSchema.array()]).optional(), - get createMany(){ return AttendancePoolCreateManyTaskInputEnvelopeObjectSchema.optional(); }, - set: z.union([AttendancePoolWhereUniqueInputObjectSchema, AttendancePoolWhereUniqueInputObjectSchema.array()]).optional(), - disconnect: z.union([AttendancePoolWhereUniqueInputObjectSchema, AttendancePoolWhereUniqueInputObjectSchema.array()]).optional(), - delete: z.union([AttendancePoolWhereUniqueInputObjectSchema, AttendancePoolWhereUniqueInputObjectSchema.array()]).optional(), - connect: z.union([AttendancePoolWhereUniqueInputObjectSchema, AttendancePoolWhereUniqueInputObjectSchema.array()]).optional(), - update: z.union([AttendancePoolUpdateWithWhereUniqueWithoutTaskInputObjectSchema, AttendancePoolUpdateWithWhereUniqueWithoutTaskInputObjectSchema.array()]).optional(), - updateMany: z.union([AttendancePoolUpdateManyWithWhereWithoutTaskInputObjectSchema, AttendancePoolUpdateManyWithWhereWithoutTaskInputObjectSchema.array()]).optional(), - deleteMany: z.union([AttendancePoolScalarWhereInputObjectSchema, AttendancePoolScalarWhereInputObjectSchema.array()]).optional() -}).strict(); -export const AttendancePoolUpdateManyWithoutTaskNestedInputObjectSchema: z.ZodType = z.lazy(__makeSchema_AttendancePoolUpdateManyWithoutTaskNestedInput_schema) as unknown as z.ZodType; -export const AttendancePoolUpdateManyWithoutTaskNestedInputObjectZodSchema = z.lazy(__makeSchema_AttendancePoolUpdateManyWithoutTaskNestedInput_schema); - - -// File: NotificationUpdateManyWithoutTaskNestedInput.schema.ts -const __makeSchema_NotificationUpdateManyWithoutTaskNestedInput_schema = () => z.object({ - create: z.union([NotificationCreateWithoutTaskInputObjectSchema, NotificationCreateWithoutTaskInputObjectSchema.array(), NotificationUncheckedCreateWithoutTaskInputObjectSchema, NotificationUncheckedCreateWithoutTaskInputObjectSchema.array()]).optional(), - connectOrCreate: z.union([NotificationCreateOrConnectWithoutTaskInputObjectSchema, NotificationCreateOrConnectWithoutTaskInputObjectSchema.array()]).optional(), - upsert: z.union([NotificationUpsertWithWhereUniqueWithoutTaskInputObjectSchema, NotificationUpsertWithWhereUniqueWithoutTaskInputObjectSchema.array()]).optional(), - get createMany(){ return NotificationCreateManyTaskInputEnvelopeObjectSchema.optional(); }, - set: z.union([NotificationWhereUniqueInputObjectSchema, NotificationWhereUniqueInputObjectSchema.array()]).optional(), - disconnect: z.union([NotificationWhereUniqueInputObjectSchema, NotificationWhereUniqueInputObjectSchema.array()]).optional(), - delete: z.union([NotificationWhereUniqueInputObjectSchema, NotificationWhereUniqueInputObjectSchema.array()]).optional(), - connect: z.union([NotificationWhereUniqueInputObjectSchema, NotificationWhereUniqueInputObjectSchema.array()]).optional(), - update: z.union([NotificationUpdateWithWhereUniqueWithoutTaskInputObjectSchema, NotificationUpdateWithWhereUniqueWithoutTaskInputObjectSchema.array()]).optional(), - updateMany: z.union([NotificationUpdateManyWithWhereWithoutTaskInputObjectSchema, NotificationUpdateManyWithWhereWithoutTaskInputObjectSchema.array()]).optional(), - deleteMany: z.union([NotificationScalarWhereInputObjectSchema, NotificationScalarWhereInputObjectSchema.array()]).optional() -}).strict(); -export const NotificationUpdateManyWithoutTaskNestedInputObjectSchema: z.ZodType = z.lazy(__makeSchema_NotificationUpdateManyWithoutTaskNestedInput_schema) as unknown as z.ZodType; -export const NotificationUpdateManyWithoutTaskNestedInputObjectZodSchema = z.lazy(__makeSchema_NotificationUpdateManyWithoutTaskNestedInput_schema); - - -// File: AttendancePoolUncheckedUpdateManyWithoutTaskNestedInput.schema.ts -const __makeSchema_AttendancePoolUncheckedUpdateManyWithoutTaskNestedInput_schema = () => z.object({ - create: z.union([AttendancePoolCreateWithoutTaskInputObjectSchema, AttendancePoolCreateWithoutTaskInputObjectSchema.array(), AttendancePoolUncheckedCreateWithoutTaskInputObjectSchema, AttendancePoolUncheckedCreateWithoutTaskInputObjectSchema.array()]).optional(), - connectOrCreate: z.union([AttendancePoolCreateOrConnectWithoutTaskInputObjectSchema, AttendancePoolCreateOrConnectWithoutTaskInputObjectSchema.array()]).optional(), - upsert: z.union([AttendancePoolUpsertWithWhereUniqueWithoutTaskInputObjectSchema, AttendancePoolUpsertWithWhereUniqueWithoutTaskInputObjectSchema.array()]).optional(), - get createMany(){ return AttendancePoolCreateManyTaskInputEnvelopeObjectSchema.optional(); }, - set: z.union([AttendancePoolWhereUniqueInputObjectSchema, AttendancePoolWhereUniqueInputObjectSchema.array()]).optional(), - disconnect: z.union([AttendancePoolWhereUniqueInputObjectSchema, AttendancePoolWhereUniqueInputObjectSchema.array()]).optional(), - delete: z.union([AttendancePoolWhereUniqueInputObjectSchema, AttendancePoolWhereUniqueInputObjectSchema.array()]).optional(), - connect: z.union([AttendancePoolWhereUniqueInputObjectSchema, AttendancePoolWhereUniqueInputObjectSchema.array()]).optional(), - update: z.union([AttendancePoolUpdateWithWhereUniqueWithoutTaskInputObjectSchema, AttendancePoolUpdateWithWhereUniqueWithoutTaskInputObjectSchema.array()]).optional(), - updateMany: z.union([AttendancePoolUpdateManyWithWhereWithoutTaskInputObjectSchema, AttendancePoolUpdateManyWithWhereWithoutTaskInputObjectSchema.array()]).optional(), - deleteMany: z.union([AttendancePoolScalarWhereInputObjectSchema, AttendancePoolScalarWhereInputObjectSchema.array()]).optional() -}).strict(); -export const AttendancePoolUncheckedUpdateManyWithoutTaskNestedInputObjectSchema: z.ZodType = z.lazy(__makeSchema_AttendancePoolUncheckedUpdateManyWithoutTaskNestedInput_schema) as unknown as z.ZodType; -export const AttendancePoolUncheckedUpdateManyWithoutTaskNestedInputObjectZodSchema = z.lazy(__makeSchema_AttendancePoolUncheckedUpdateManyWithoutTaskNestedInput_schema); - - -// File: NotificationUncheckedUpdateManyWithoutTaskNestedInput.schema.ts -const __makeSchema_NotificationUncheckedUpdateManyWithoutTaskNestedInput_schema = () => z.object({ - create: z.union([NotificationCreateWithoutTaskInputObjectSchema, NotificationCreateWithoutTaskInputObjectSchema.array(), NotificationUncheckedCreateWithoutTaskInputObjectSchema, NotificationUncheckedCreateWithoutTaskInputObjectSchema.array()]).optional(), - connectOrCreate: z.union([NotificationCreateOrConnectWithoutTaskInputObjectSchema, NotificationCreateOrConnectWithoutTaskInputObjectSchema.array()]).optional(), - upsert: z.union([NotificationUpsertWithWhereUniqueWithoutTaskInputObjectSchema, NotificationUpsertWithWhereUniqueWithoutTaskInputObjectSchema.array()]).optional(), - get createMany(){ return NotificationCreateManyTaskInputEnvelopeObjectSchema.optional(); }, - set: z.union([NotificationWhereUniqueInputObjectSchema, NotificationWhereUniqueInputObjectSchema.array()]).optional(), - disconnect: z.union([NotificationWhereUniqueInputObjectSchema, NotificationWhereUniqueInputObjectSchema.array()]).optional(), - delete: z.union([NotificationWhereUniqueInputObjectSchema, NotificationWhereUniqueInputObjectSchema.array()]).optional(), - connect: z.union([NotificationWhereUniqueInputObjectSchema, NotificationWhereUniqueInputObjectSchema.array()]).optional(), - update: z.union([NotificationUpdateWithWhereUniqueWithoutTaskInputObjectSchema, NotificationUpdateWithWhereUniqueWithoutTaskInputObjectSchema.array()]).optional(), - updateMany: z.union([NotificationUpdateManyWithWhereWithoutTaskInputObjectSchema, NotificationUpdateManyWithWhereWithoutTaskInputObjectSchema.array()]).optional(), - deleteMany: z.union([NotificationScalarWhereInputObjectSchema, NotificationScalarWhereInputObjectSchema.array()]).optional() -}).strict(); -export const NotificationUncheckedUpdateManyWithoutTaskNestedInputObjectSchema: z.ZodType = z.lazy(__makeSchema_NotificationUncheckedUpdateManyWithoutTaskNestedInput_schema) as unknown as z.ZodType; -export const NotificationUncheckedUpdateManyWithoutTaskNestedInputObjectZodSchema = z.lazy(__makeSchema_NotificationUncheckedUpdateManyWithoutTaskNestedInput_schema); - - -// File: TaskCreateNestedManyWithoutRecurringTaskInput.schema.ts -const __makeSchema_TaskCreateNestedManyWithoutRecurringTaskInput_schema = () => z.object({ - create: z.union([TaskCreateWithoutRecurringTaskInputObjectSchema, TaskCreateWithoutRecurringTaskInputObjectSchema.array(), TaskUncheckedCreateWithoutRecurringTaskInputObjectSchema, TaskUncheckedCreateWithoutRecurringTaskInputObjectSchema.array()]).optional(), - connectOrCreate: z.union([TaskCreateOrConnectWithoutRecurringTaskInputObjectSchema, TaskCreateOrConnectWithoutRecurringTaskInputObjectSchema.array()]).optional(), - get createMany(){ return TaskCreateManyRecurringTaskInputEnvelopeObjectSchema.optional(); }, - connect: z.union([TaskWhereUniqueInputObjectSchema, TaskWhereUniqueInputObjectSchema.array()]).optional() -}).strict(); -export const TaskCreateNestedManyWithoutRecurringTaskInputObjectSchema: z.ZodType = z.lazy(__makeSchema_TaskCreateNestedManyWithoutRecurringTaskInput_schema) as unknown as z.ZodType; -export const TaskCreateNestedManyWithoutRecurringTaskInputObjectZodSchema = z.lazy(__makeSchema_TaskCreateNestedManyWithoutRecurringTaskInput_schema); - - -// File: TaskUncheckedCreateNestedManyWithoutRecurringTaskInput.schema.ts -const __makeSchema_TaskUncheckedCreateNestedManyWithoutRecurringTaskInput_schema = () => z.object({ - create: z.union([TaskCreateWithoutRecurringTaskInputObjectSchema, TaskCreateWithoutRecurringTaskInputObjectSchema.array(), TaskUncheckedCreateWithoutRecurringTaskInputObjectSchema, TaskUncheckedCreateWithoutRecurringTaskInputObjectSchema.array()]).optional(), - connectOrCreate: z.union([TaskCreateOrConnectWithoutRecurringTaskInputObjectSchema, TaskCreateOrConnectWithoutRecurringTaskInputObjectSchema.array()]).optional(), - get createMany(){ return TaskCreateManyRecurringTaskInputEnvelopeObjectSchema.optional(); }, - connect: z.union([TaskWhereUniqueInputObjectSchema, TaskWhereUniqueInputObjectSchema.array()]).optional() -}).strict(); -export const TaskUncheckedCreateNestedManyWithoutRecurringTaskInputObjectSchema: z.ZodType = z.lazy(__makeSchema_TaskUncheckedCreateNestedManyWithoutRecurringTaskInput_schema) as unknown as z.ZodType; -export const TaskUncheckedCreateNestedManyWithoutRecurringTaskInputObjectZodSchema = z.lazy(__makeSchema_TaskUncheckedCreateNestedManyWithoutRecurringTaskInput_schema); - - -// File: TaskUpdateManyWithoutRecurringTaskNestedInput.schema.ts -const __makeSchema_TaskUpdateManyWithoutRecurringTaskNestedInput_schema = () => z.object({ - create: z.union([TaskCreateWithoutRecurringTaskInputObjectSchema, TaskCreateWithoutRecurringTaskInputObjectSchema.array(), TaskUncheckedCreateWithoutRecurringTaskInputObjectSchema, TaskUncheckedCreateWithoutRecurringTaskInputObjectSchema.array()]).optional(), - connectOrCreate: z.union([TaskCreateOrConnectWithoutRecurringTaskInputObjectSchema, TaskCreateOrConnectWithoutRecurringTaskInputObjectSchema.array()]).optional(), - upsert: z.union([TaskUpsertWithWhereUniqueWithoutRecurringTaskInputObjectSchema, TaskUpsertWithWhereUniqueWithoutRecurringTaskInputObjectSchema.array()]).optional(), - get createMany(){ return TaskCreateManyRecurringTaskInputEnvelopeObjectSchema.optional(); }, - set: z.union([TaskWhereUniqueInputObjectSchema, TaskWhereUniqueInputObjectSchema.array()]).optional(), - disconnect: z.union([TaskWhereUniqueInputObjectSchema, TaskWhereUniqueInputObjectSchema.array()]).optional(), - delete: z.union([TaskWhereUniqueInputObjectSchema, TaskWhereUniqueInputObjectSchema.array()]).optional(), - connect: z.union([TaskWhereUniqueInputObjectSchema, TaskWhereUniqueInputObjectSchema.array()]).optional(), - update: z.union([TaskUpdateWithWhereUniqueWithoutRecurringTaskInputObjectSchema, TaskUpdateWithWhereUniqueWithoutRecurringTaskInputObjectSchema.array()]).optional(), - updateMany: z.union([TaskUpdateManyWithWhereWithoutRecurringTaskInputObjectSchema, TaskUpdateManyWithWhereWithoutRecurringTaskInputObjectSchema.array()]).optional(), - deleteMany: z.union([TaskScalarWhereInputObjectSchema, TaskScalarWhereInputObjectSchema.array()]).optional() -}).strict(); -export const TaskUpdateManyWithoutRecurringTaskNestedInputObjectSchema: z.ZodType = z.lazy(__makeSchema_TaskUpdateManyWithoutRecurringTaskNestedInput_schema) as unknown as z.ZodType; -export const TaskUpdateManyWithoutRecurringTaskNestedInputObjectZodSchema = z.lazy(__makeSchema_TaskUpdateManyWithoutRecurringTaskNestedInput_schema); - - -// File: TaskUncheckedUpdateManyWithoutRecurringTaskNestedInput.schema.ts -const __makeSchema_TaskUncheckedUpdateManyWithoutRecurringTaskNestedInput_schema = () => z.object({ - create: z.union([TaskCreateWithoutRecurringTaskInputObjectSchema, TaskCreateWithoutRecurringTaskInputObjectSchema.array(), TaskUncheckedCreateWithoutRecurringTaskInputObjectSchema, TaskUncheckedCreateWithoutRecurringTaskInputObjectSchema.array()]).optional(), - connectOrCreate: z.union([TaskCreateOrConnectWithoutRecurringTaskInputObjectSchema, TaskCreateOrConnectWithoutRecurringTaskInputObjectSchema.array()]).optional(), - upsert: z.union([TaskUpsertWithWhereUniqueWithoutRecurringTaskInputObjectSchema, TaskUpsertWithWhereUniqueWithoutRecurringTaskInputObjectSchema.array()]).optional(), - get createMany(){ return TaskCreateManyRecurringTaskInputEnvelopeObjectSchema.optional(); }, - set: z.union([TaskWhereUniqueInputObjectSchema, TaskWhereUniqueInputObjectSchema.array()]).optional(), - disconnect: z.union([TaskWhereUniqueInputObjectSchema, TaskWhereUniqueInputObjectSchema.array()]).optional(), - delete: z.union([TaskWhereUniqueInputObjectSchema, TaskWhereUniqueInputObjectSchema.array()]).optional(), - connect: z.union([TaskWhereUniqueInputObjectSchema, TaskWhereUniqueInputObjectSchema.array()]).optional(), - update: z.union([TaskUpdateWithWhereUniqueWithoutRecurringTaskInputObjectSchema, TaskUpdateWithWhereUniqueWithoutRecurringTaskInputObjectSchema.array()]).optional(), - updateMany: z.union([TaskUpdateManyWithWhereWithoutRecurringTaskInputObjectSchema, TaskUpdateManyWithWhereWithoutRecurringTaskInputObjectSchema.array()]).optional(), - deleteMany: z.union([TaskScalarWhereInputObjectSchema, TaskScalarWhereInputObjectSchema.array()]).optional() -}).strict(); -export const TaskUncheckedUpdateManyWithoutRecurringTaskNestedInputObjectSchema: z.ZodType = z.lazy(__makeSchema_TaskUncheckedUpdateManyWithoutRecurringTaskNestedInput_schema) as unknown as z.ZodType; -export const TaskUncheckedUpdateManyWithoutRecurringTaskNestedInputObjectZodSchema = z.lazy(__makeSchema_TaskUncheckedUpdateManyWithoutRecurringTaskNestedInput_schema); - - -// File: EventCreateNestedOneWithoutFeedbackFormInput.schema.ts -const __makeSchema_EventCreateNestedOneWithoutFeedbackFormInput_schema = () => z.object({ - create: z.union([EventCreateWithoutFeedbackFormInputObjectSchema, EventUncheckedCreateWithoutFeedbackFormInputObjectSchema]).optional(), - get connectOrCreate(){ return EventCreateOrConnectWithoutFeedbackFormInputObjectSchema.optional(); }, - get connect(){ return EventWhereUniqueInputObjectSchema.optional(); } -}).strict(); -export const EventCreateNestedOneWithoutFeedbackFormInputObjectSchema: z.ZodType = z.lazy(__makeSchema_EventCreateNestedOneWithoutFeedbackFormInput_schema) as unknown as z.ZodType; -export const EventCreateNestedOneWithoutFeedbackFormInputObjectZodSchema = z.lazy(__makeSchema_EventCreateNestedOneWithoutFeedbackFormInput_schema); - - -// File: FeedbackQuestionCreateNestedManyWithoutFeedbackFormInput.schema.ts -const __makeSchema_FeedbackQuestionCreateNestedManyWithoutFeedbackFormInput_schema = () => z.object({ - create: z.union([FeedbackQuestionCreateWithoutFeedbackFormInputObjectSchema, FeedbackQuestionCreateWithoutFeedbackFormInputObjectSchema.array(), FeedbackQuestionUncheckedCreateWithoutFeedbackFormInputObjectSchema, FeedbackQuestionUncheckedCreateWithoutFeedbackFormInputObjectSchema.array()]).optional(), - connectOrCreate: z.union([FeedbackQuestionCreateOrConnectWithoutFeedbackFormInputObjectSchema, FeedbackQuestionCreateOrConnectWithoutFeedbackFormInputObjectSchema.array()]).optional(), - get createMany(){ return FeedbackQuestionCreateManyFeedbackFormInputEnvelopeObjectSchema.optional(); }, - connect: z.union([FeedbackQuestionWhereUniqueInputObjectSchema, FeedbackQuestionWhereUniqueInputObjectSchema.array()]).optional() -}).strict(); -export const FeedbackQuestionCreateNestedManyWithoutFeedbackFormInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackQuestionCreateNestedManyWithoutFeedbackFormInput_schema) as unknown as z.ZodType; -export const FeedbackQuestionCreateNestedManyWithoutFeedbackFormInputObjectZodSchema = z.lazy(__makeSchema_FeedbackQuestionCreateNestedManyWithoutFeedbackFormInput_schema); - - -// File: FeedbackFormAnswerCreateNestedManyWithoutFeedbackFormInput.schema.ts -const __makeSchema_FeedbackFormAnswerCreateNestedManyWithoutFeedbackFormInput_schema = () => z.object({ - create: z.union([FeedbackFormAnswerCreateWithoutFeedbackFormInputObjectSchema, FeedbackFormAnswerCreateWithoutFeedbackFormInputObjectSchema.array(), FeedbackFormAnswerUncheckedCreateWithoutFeedbackFormInputObjectSchema, FeedbackFormAnswerUncheckedCreateWithoutFeedbackFormInputObjectSchema.array()]).optional(), - connectOrCreate: z.union([FeedbackFormAnswerCreateOrConnectWithoutFeedbackFormInputObjectSchema, FeedbackFormAnswerCreateOrConnectWithoutFeedbackFormInputObjectSchema.array()]).optional(), - get createMany(){ return FeedbackFormAnswerCreateManyFeedbackFormInputEnvelopeObjectSchema.optional(); }, - connect: z.union([FeedbackFormAnswerWhereUniqueInputObjectSchema, FeedbackFormAnswerWhereUniqueInputObjectSchema.array()]).optional() -}).strict(); -export const FeedbackFormAnswerCreateNestedManyWithoutFeedbackFormInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackFormAnswerCreateNestedManyWithoutFeedbackFormInput_schema) as unknown as z.ZodType; -export const FeedbackFormAnswerCreateNestedManyWithoutFeedbackFormInputObjectZodSchema = z.lazy(__makeSchema_FeedbackFormAnswerCreateNestedManyWithoutFeedbackFormInput_schema); - - -// File: FeedbackQuestionUncheckedCreateNestedManyWithoutFeedbackFormInput.schema.ts -const __makeSchema_FeedbackQuestionUncheckedCreateNestedManyWithoutFeedbackFormInput_schema = () => z.object({ - create: z.union([FeedbackQuestionCreateWithoutFeedbackFormInputObjectSchema, FeedbackQuestionCreateWithoutFeedbackFormInputObjectSchema.array(), FeedbackQuestionUncheckedCreateWithoutFeedbackFormInputObjectSchema, FeedbackQuestionUncheckedCreateWithoutFeedbackFormInputObjectSchema.array()]).optional(), - connectOrCreate: z.union([FeedbackQuestionCreateOrConnectWithoutFeedbackFormInputObjectSchema, FeedbackQuestionCreateOrConnectWithoutFeedbackFormInputObjectSchema.array()]).optional(), - get createMany(){ return FeedbackQuestionCreateManyFeedbackFormInputEnvelopeObjectSchema.optional(); }, - connect: z.union([FeedbackQuestionWhereUniqueInputObjectSchema, FeedbackQuestionWhereUniqueInputObjectSchema.array()]).optional() -}).strict(); -export const FeedbackQuestionUncheckedCreateNestedManyWithoutFeedbackFormInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackQuestionUncheckedCreateNestedManyWithoutFeedbackFormInput_schema) as unknown as z.ZodType; -export const FeedbackQuestionUncheckedCreateNestedManyWithoutFeedbackFormInputObjectZodSchema = z.lazy(__makeSchema_FeedbackQuestionUncheckedCreateNestedManyWithoutFeedbackFormInput_schema); - - -// File: FeedbackFormAnswerUncheckedCreateNestedManyWithoutFeedbackFormInput.schema.ts -const __makeSchema_FeedbackFormAnswerUncheckedCreateNestedManyWithoutFeedbackFormInput_schema = () => z.object({ - create: z.union([FeedbackFormAnswerCreateWithoutFeedbackFormInputObjectSchema, FeedbackFormAnswerCreateWithoutFeedbackFormInputObjectSchema.array(), FeedbackFormAnswerUncheckedCreateWithoutFeedbackFormInputObjectSchema, FeedbackFormAnswerUncheckedCreateWithoutFeedbackFormInputObjectSchema.array()]).optional(), - connectOrCreate: z.union([FeedbackFormAnswerCreateOrConnectWithoutFeedbackFormInputObjectSchema, FeedbackFormAnswerCreateOrConnectWithoutFeedbackFormInputObjectSchema.array()]).optional(), - get createMany(){ return FeedbackFormAnswerCreateManyFeedbackFormInputEnvelopeObjectSchema.optional(); }, - connect: z.union([FeedbackFormAnswerWhereUniqueInputObjectSchema, FeedbackFormAnswerWhereUniqueInputObjectSchema.array()]).optional() -}).strict(); -export const FeedbackFormAnswerUncheckedCreateNestedManyWithoutFeedbackFormInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackFormAnswerUncheckedCreateNestedManyWithoutFeedbackFormInput_schema) as unknown as z.ZodType; -export const FeedbackFormAnswerUncheckedCreateNestedManyWithoutFeedbackFormInputObjectZodSchema = z.lazy(__makeSchema_FeedbackFormAnswerUncheckedCreateNestedManyWithoutFeedbackFormInput_schema); - - -// File: EventUpdateOneRequiredWithoutFeedbackFormNestedInput.schema.ts -const __makeSchema_EventUpdateOneRequiredWithoutFeedbackFormNestedInput_schema = () => z.object({ - create: z.union([EventCreateWithoutFeedbackFormInputObjectSchema, EventUncheckedCreateWithoutFeedbackFormInputObjectSchema]).optional(), - get connectOrCreate(){ return EventCreateOrConnectWithoutFeedbackFormInputObjectSchema.optional(); }, - get upsert(){ return EventUpsertWithoutFeedbackFormInputObjectSchema.optional(); }, - get connect(){ return EventWhereUniqueInputObjectSchema.optional(); }, - update: z.union([EventUpdateToOneWithWhereWithoutFeedbackFormInputObjectSchema, EventUpdateWithoutFeedbackFormInputObjectSchema, EventUncheckedUpdateWithoutFeedbackFormInputObjectSchema]).optional() -}).strict(); -export const EventUpdateOneRequiredWithoutFeedbackFormNestedInputObjectSchema: z.ZodType = z.lazy(__makeSchema_EventUpdateOneRequiredWithoutFeedbackFormNestedInput_schema) as unknown as z.ZodType; -export const EventUpdateOneRequiredWithoutFeedbackFormNestedInputObjectZodSchema = z.lazy(__makeSchema_EventUpdateOneRequiredWithoutFeedbackFormNestedInput_schema); - - -// File: FeedbackQuestionUpdateManyWithoutFeedbackFormNestedInput.schema.ts -const __makeSchema_FeedbackQuestionUpdateManyWithoutFeedbackFormNestedInput_schema = () => z.object({ - create: z.union([FeedbackQuestionCreateWithoutFeedbackFormInputObjectSchema, FeedbackQuestionCreateWithoutFeedbackFormInputObjectSchema.array(), FeedbackQuestionUncheckedCreateWithoutFeedbackFormInputObjectSchema, FeedbackQuestionUncheckedCreateWithoutFeedbackFormInputObjectSchema.array()]).optional(), - connectOrCreate: z.union([FeedbackQuestionCreateOrConnectWithoutFeedbackFormInputObjectSchema, FeedbackQuestionCreateOrConnectWithoutFeedbackFormInputObjectSchema.array()]).optional(), - upsert: z.union([FeedbackQuestionUpsertWithWhereUniqueWithoutFeedbackFormInputObjectSchema, FeedbackQuestionUpsertWithWhereUniqueWithoutFeedbackFormInputObjectSchema.array()]).optional(), - get createMany(){ return FeedbackQuestionCreateManyFeedbackFormInputEnvelopeObjectSchema.optional(); }, - set: z.union([FeedbackQuestionWhereUniqueInputObjectSchema, FeedbackQuestionWhereUniqueInputObjectSchema.array()]).optional(), - disconnect: z.union([FeedbackQuestionWhereUniqueInputObjectSchema, FeedbackQuestionWhereUniqueInputObjectSchema.array()]).optional(), - delete: z.union([FeedbackQuestionWhereUniqueInputObjectSchema, FeedbackQuestionWhereUniqueInputObjectSchema.array()]).optional(), - connect: z.union([FeedbackQuestionWhereUniqueInputObjectSchema, FeedbackQuestionWhereUniqueInputObjectSchema.array()]).optional(), - update: z.union([FeedbackQuestionUpdateWithWhereUniqueWithoutFeedbackFormInputObjectSchema, FeedbackQuestionUpdateWithWhereUniqueWithoutFeedbackFormInputObjectSchema.array()]).optional(), - updateMany: z.union([FeedbackQuestionUpdateManyWithWhereWithoutFeedbackFormInputObjectSchema, FeedbackQuestionUpdateManyWithWhereWithoutFeedbackFormInputObjectSchema.array()]).optional(), - deleteMany: z.union([FeedbackQuestionScalarWhereInputObjectSchema, FeedbackQuestionScalarWhereInputObjectSchema.array()]).optional() -}).strict(); -export const FeedbackQuestionUpdateManyWithoutFeedbackFormNestedInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackQuestionUpdateManyWithoutFeedbackFormNestedInput_schema) as unknown as z.ZodType; -export const FeedbackQuestionUpdateManyWithoutFeedbackFormNestedInputObjectZodSchema = z.lazy(__makeSchema_FeedbackQuestionUpdateManyWithoutFeedbackFormNestedInput_schema); - - -// File: FeedbackFormAnswerUpdateManyWithoutFeedbackFormNestedInput.schema.ts -const __makeSchema_FeedbackFormAnswerUpdateManyWithoutFeedbackFormNestedInput_schema = () => z.object({ - create: z.union([FeedbackFormAnswerCreateWithoutFeedbackFormInputObjectSchema, FeedbackFormAnswerCreateWithoutFeedbackFormInputObjectSchema.array(), FeedbackFormAnswerUncheckedCreateWithoutFeedbackFormInputObjectSchema, FeedbackFormAnswerUncheckedCreateWithoutFeedbackFormInputObjectSchema.array()]).optional(), - connectOrCreate: z.union([FeedbackFormAnswerCreateOrConnectWithoutFeedbackFormInputObjectSchema, FeedbackFormAnswerCreateOrConnectWithoutFeedbackFormInputObjectSchema.array()]).optional(), - upsert: z.union([FeedbackFormAnswerUpsertWithWhereUniqueWithoutFeedbackFormInputObjectSchema, FeedbackFormAnswerUpsertWithWhereUniqueWithoutFeedbackFormInputObjectSchema.array()]).optional(), - get createMany(){ return FeedbackFormAnswerCreateManyFeedbackFormInputEnvelopeObjectSchema.optional(); }, - set: z.union([FeedbackFormAnswerWhereUniqueInputObjectSchema, FeedbackFormAnswerWhereUniqueInputObjectSchema.array()]).optional(), - disconnect: z.union([FeedbackFormAnswerWhereUniqueInputObjectSchema, FeedbackFormAnswerWhereUniqueInputObjectSchema.array()]).optional(), - delete: z.union([FeedbackFormAnswerWhereUniqueInputObjectSchema, FeedbackFormAnswerWhereUniqueInputObjectSchema.array()]).optional(), - connect: z.union([FeedbackFormAnswerWhereUniqueInputObjectSchema, FeedbackFormAnswerWhereUniqueInputObjectSchema.array()]).optional(), - update: z.union([FeedbackFormAnswerUpdateWithWhereUniqueWithoutFeedbackFormInputObjectSchema, FeedbackFormAnswerUpdateWithWhereUniqueWithoutFeedbackFormInputObjectSchema.array()]).optional(), - updateMany: z.union([FeedbackFormAnswerUpdateManyWithWhereWithoutFeedbackFormInputObjectSchema, FeedbackFormAnswerUpdateManyWithWhereWithoutFeedbackFormInputObjectSchema.array()]).optional(), - deleteMany: z.union([FeedbackFormAnswerScalarWhereInputObjectSchema, FeedbackFormAnswerScalarWhereInputObjectSchema.array()]).optional() -}).strict(); -export const FeedbackFormAnswerUpdateManyWithoutFeedbackFormNestedInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackFormAnswerUpdateManyWithoutFeedbackFormNestedInput_schema) as unknown as z.ZodType; -export const FeedbackFormAnswerUpdateManyWithoutFeedbackFormNestedInputObjectZodSchema = z.lazy(__makeSchema_FeedbackFormAnswerUpdateManyWithoutFeedbackFormNestedInput_schema); - - -// File: FeedbackQuestionUncheckedUpdateManyWithoutFeedbackFormNestedInput.schema.ts -const __makeSchema_FeedbackQuestionUncheckedUpdateManyWithoutFeedbackFormNestedInput_schema = () => z.object({ - create: z.union([FeedbackQuestionCreateWithoutFeedbackFormInputObjectSchema, FeedbackQuestionCreateWithoutFeedbackFormInputObjectSchema.array(), FeedbackQuestionUncheckedCreateWithoutFeedbackFormInputObjectSchema, FeedbackQuestionUncheckedCreateWithoutFeedbackFormInputObjectSchema.array()]).optional(), - connectOrCreate: z.union([FeedbackQuestionCreateOrConnectWithoutFeedbackFormInputObjectSchema, FeedbackQuestionCreateOrConnectWithoutFeedbackFormInputObjectSchema.array()]).optional(), - upsert: z.union([FeedbackQuestionUpsertWithWhereUniqueWithoutFeedbackFormInputObjectSchema, FeedbackQuestionUpsertWithWhereUniqueWithoutFeedbackFormInputObjectSchema.array()]).optional(), - get createMany(){ return FeedbackQuestionCreateManyFeedbackFormInputEnvelopeObjectSchema.optional(); }, - set: z.union([FeedbackQuestionWhereUniqueInputObjectSchema, FeedbackQuestionWhereUniqueInputObjectSchema.array()]).optional(), - disconnect: z.union([FeedbackQuestionWhereUniqueInputObjectSchema, FeedbackQuestionWhereUniqueInputObjectSchema.array()]).optional(), - delete: z.union([FeedbackQuestionWhereUniqueInputObjectSchema, FeedbackQuestionWhereUniqueInputObjectSchema.array()]).optional(), - connect: z.union([FeedbackQuestionWhereUniqueInputObjectSchema, FeedbackQuestionWhereUniqueInputObjectSchema.array()]).optional(), - update: z.union([FeedbackQuestionUpdateWithWhereUniqueWithoutFeedbackFormInputObjectSchema, FeedbackQuestionUpdateWithWhereUniqueWithoutFeedbackFormInputObjectSchema.array()]).optional(), - updateMany: z.union([FeedbackQuestionUpdateManyWithWhereWithoutFeedbackFormInputObjectSchema, FeedbackQuestionUpdateManyWithWhereWithoutFeedbackFormInputObjectSchema.array()]).optional(), - deleteMany: z.union([FeedbackQuestionScalarWhereInputObjectSchema, FeedbackQuestionScalarWhereInputObjectSchema.array()]).optional() -}).strict(); -export const FeedbackQuestionUncheckedUpdateManyWithoutFeedbackFormNestedInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackQuestionUncheckedUpdateManyWithoutFeedbackFormNestedInput_schema) as unknown as z.ZodType; -export const FeedbackQuestionUncheckedUpdateManyWithoutFeedbackFormNestedInputObjectZodSchema = z.lazy(__makeSchema_FeedbackQuestionUncheckedUpdateManyWithoutFeedbackFormNestedInput_schema); - - -// File: FeedbackFormAnswerUncheckedUpdateManyWithoutFeedbackFormNestedInput.schema.ts -const __makeSchema_FeedbackFormAnswerUncheckedUpdateManyWithoutFeedbackFormNestedInput_schema = () => z.object({ - create: z.union([FeedbackFormAnswerCreateWithoutFeedbackFormInputObjectSchema, FeedbackFormAnswerCreateWithoutFeedbackFormInputObjectSchema.array(), FeedbackFormAnswerUncheckedCreateWithoutFeedbackFormInputObjectSchema, FeedbackFormAnswerUncheckedCreateWithoutFeedbackFormInputObjectSchema.array()]).optional(), - connectOrCreate: z.union([FeedbackFormAnswerCreateOrConnectWithoutFeedbackFormInputObjectSchema, FeedbackFormAnswerCreateOrConnectWithoutFeedbackFormInputObjectSchema.array()]).optional(), - upsert: z.union([FeedbackFormAnswerUpsertWithWhereUniqueWithoutFeedbackFormInputObjectSchema, FeedbackFormAnswerUpsertWithWhereUniqueWithoutFeedbackFormInputObjectSchema.array()]).optional(), - get createMany(){ return FeedbackFormAnswerCreateManyFeedbackFormInputEnvelopeObjectSchema.optional(); }, - set: z.union([FeedbackFormAnswerWhereUniqueInputObjectSchema, FeedbackFormAnswerWhereUniqueInputObjectSchema.array()]).optional(), - disconnect: z.union([FeedbackFormAnswerWhereUniqueInputObjectSchema, FeedbackFormAnswerWhereUniqueInputObjectSchema.array()]).optional(), - delete: z.union([FeedbackFormAnswerWhereUniqueInputObjectSchema, FeedbackFormAnswerWhereUniqueInputObjectSchema.array()]).optional(), - connect: z.union([FeedbackFormAnswerWhereUniqueInputObjectSchema, FeedbackFormAnswerWhereUniqueInputObjectSchema.array()]).optional(), - update: z.union([FeedbackFormAnswerUpdateWithWhereUniqueWithoutFeedbackFormInputObjectSchema, FeedbackFormAnswerUpdateWithWhereUniqueWithoutFeedbackFormInputObjectSchema.array()]).optional(), - updateMany: z.union([FeedbackFormAnswerUpdateManyWithWhereWithoutFeedbackFormInputObjectSchema, FeedbackFormAnswerUpdateManyWithWhereWithoutFeedbackFormInputObjectSchema.array()]).optional(), - deleteMany: z.union([FeedbackFormAnswerScalarWhereInputObjectSchema, FeedbackFormAnswerScalarWhereInputObjectSchema.array()]).optional() -}).strict(); -export const FeedbackFormAnswerUncheckedUpdateManyWithoutFeedbackFormNestedInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackFormAnswerUncheckedUpdateManyWithoutFeedbackFormNestedInput_schema) as unknown as z.ZodType; -export const FeedbackFormAnswerUncheckedUpdateManyWithoutFeedbackFormNestedInputObjectZodSchema = z.lazy(__makeSchema_FeedbackFormAnswerUncheckedUpdateManyWithoutFeedbackFormNestedInput_schema); - - -// File: FeedbackFormCreateNestedOneWithoutQuestionsInput.schema.ts -const __makeSchema_FeedbackFormCreateNestedOneWithoutQuestionsInput_schema = () => z.object({ - create: z.union([FeedbackFormCreateWithoutQuestionsInputObjectSchema, FeedbackFormUncheckedCreateWithoutQuestionsInputObjectSchema]).optional(), - get connectOrCreate(){ return FeedbackFormCreateOrConnectWithoutQuestionsInputObjectSchema.optional(); }, - get connect(){ return FeedbackFormWhereUniqueInputObjectSchema.optional(); } -}).strict(); -export const FeedbackFormCreateNestedOneWithoutQuestionsInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackFormCreateNestedOneWithoutQuestionsInput_schema) as unknown as z.ZodType; -export const FeedbackFormCreateNestedOneWithoutQuestionsInputObjectZodSchema = z.lazy(__makeSchema_FeedbackFormCreateNestedOneWithoutQuestionsInput_schema); - - -// File: FeedbackQuestionOptionCreateNestedManyWithoutQuestionInput.schema.ts -const __makeSchema_FeedbackQuestionOptionCreateNestedManyWithoutQuestionInput_schema = () => z.object({ - create: z.union([FeedbackQuestionOptionCreateWithoutQuestionInputObjectSchema, FeedbackQuestionOptionCreateWithoutQuestionInputObjectSchema.array(), FeedbackQuestionOptionUncheckedCreateWithoutQuestionInputObjectSchema, FeedbackQuestionOptionUncheckedCreateWithoutQuestionInputObjectSchema.array()]).optional(), - connectOrCreate: z.union([FeedbackQuestionOptionCreateOrConnectWithoutQuestionInputObjectSchema, FeedbackQuestionOptionCreateOrConnectWithoutQuestionInputObjectSchema.array()]).optional(), - get createMany(){ return FeedbackQuestionOptionCreateManyQuestionInputEnvelopeObjectSchema.optional(); }, - connect: z.union([FeedbackQuestionOptionWhereUniqueInputObjectSchema, FeedbackQuestionOptionWhereUniqueInputObjectSchema.array()]).optional() -}).strict(); -export const FeedbackQuestionOptionCreateNestedManyWithoutQuestionInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackQuestionOptionCreateNestedManyWithoutQuestionInput_schema) as unknown as z.ZodType; -export const FeedbackQuestionOptionCreateNestedManyWithoutQuestionInputObjectZodSchema = z.lazy(__makeSchema_FeedbackQuestionOptionCreateNestedManyWithoutQuestionInput_schema); - - -// File: FeedbackQuestionAnswerCreateNestedManyWithoutQuestionInput.schema.ts -const __makeSchema_FeedbackQuestionAnswerCreateNestedManyWithoutQuestionInput_schema = () => z.object({ - create: z.union([FeedbackQuestionAnswerCreateWithoutQuestionInputObjectSchema, FeedbackQuestionAnswerCreateWithoutQuestionInputObjectSchema.array(), FeedbackQuestionAnswerUncheckedCreateWithoutQuestionInputObjectSchema, FeedbackQuestionAnswerUncheckedCreateWithoutQuestionInputObjectSchema.array()]).optional(), - connectOrCreate: z.union([FeedbackQuestionAnswerCreateOrConnectWithoutQuestionInputObjectSchema, FeedbackQuestionAnswerCreateOrConnectWithoutQuestionInputObjectSchema.array()]).optional(), - get createMany(){ return FeedbackQuestionAnswerCreateManyQuestionInputEnvelopeObjectSchema.optional(); }, - connect: z.union([FeedbackQuestionAnswerWhereUniqueInputObjectSchema, FeedbackQuestionAnswerWhereUniqueInputObjectSchema.array()]).optional() -}).strict(); -export const FeedbackQuestionAnswerCreateNestedManyWithoutQuestionInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackQuestionAnswerCreateNestedManyWithoutQuestionInput_schema) as unknown as z.ZodType; -export const FeedbackQuestionAnswerCreateNestedManyWithoutQuestionInputObjectZodSchema = z.lazy(__makeSchema_FeedbackQuestionAnswerCreateNestedManyWithoutQuestionInput_schema); - - -// File: FeedbackQuestionOptionUncheckedCreateNestedManyWithoutQuestionInput.schema.ts -const __makeSchema_FeedbackQuestionOptionUncheckedCreateNestedManyWithoutQuestionInput_schema = () => z.object({ - create: z.union([FeedbackQuestionOptionCreateWithoutQuestionInputObjectSchema, FeedbackQuestionOptionCreateWithoutQuestionInputObjectSchema.array(), FeedbackQuestionOptionUncheckedCreateWithoutQuestionInputObjectSchema, FeedbackQuestionOptionUncheckedCreateWithoutQuestionInputObjectSchema.array()]).optional(), - connectOrCreate: z.union([FeedbackQuestionOptionCreateOrConnectWithoutQuestionInputObjectSchema, FeedbackQuestionOptionCreateOrConnectWithoutQuestionInputObjectSchema.array()]).optional(), - get createMany(){ return FeedbackQuestionOptionCreateManyQuestionInputEnvelopeObjectSchema.optional(); }, - connect: z.union([FeedbackQuestionOptionWhereUniqueInputObjectSchema, FeedbackQuestionOptionWhereUniqueInputObjectSchema.array()]).optional() -}).strict(); -export const FeedbackQuestionOptionUncheckedCreateNestedManyWithoutQuestionInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackQuestionOptionUncheckedCreateNestedManyWithoutQuestionInput_schema) as unknown as z.ZodType; -export const FeedbackQuestionOptionUncheckedCreateNestedManyWithoutQuestionInputObjectZodSchema = z.lazy(__makeSchema_FeedbackQuestionOptionUncheckedCreateNestedManyWithoutQuestionInput_schema); - - -// File: FeedbackQuestionAnswerUncheckedCreateNestedManyWithoutQuestionInput.schema.ts -const __makeSchema_FeedbackQuestionAnswerUncheckedCreateNestedManyWithoutQuestionInput_schema = () => z.object({ - create: z.union([FeedbackQuestionAnswerCreateWithoutQuestionInputObjectSchema, FeedbackQuestionAnswerCreateWithoutQuestionInputObjectSchema.array(), FeedbackQuestionAnswerUncheckedCreateWithoutQuestionInputObjectSchema, FeedbackQuestionAnswerUncheckedCreateWithoutQuestionInputObjectSchema.array()]).optional(), - connectOrCreate: z.union([FeedbackQuestionAnswerCreateOrConnectWithoutQuestionInputObjectSchema, FeedbackQuestionAnswerCreateOrConnectWithoutQuestionInputObjectSchema.array()]).optional(), - get createMany(){ return FeedbackQuestionAnswerCreateManyQuestionInputEnvelopeObjectSchema.optional(); }, - connect: z.union([FeedbackQuestionAnswerWhereUniqueInputObjectSchema, FeedbackQuestionAnswerWhereUniqueInputObjectSchema.array()]).optional() -}).strict(); -export const FeedbackQuestionAnswerUncheckedCreateNestedManyWithoutQuestionInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackQuestionAnswerUncheckedCreateNestedManyWithoutQuestionInput_schema) as unknown as z.ZodType; -export const FeedbackQuestionAnswerUncheckedCreateNestedManyWithoutQuestionInputObjectZodSchema = z.lazy(__makeSchema_FeedbackQuestionAnswerUncheckedCreateNestedManyWithoutQuestionInput_schema); - - -// File: EnumFeedbackQuestionTypeFieldUpdateOperationsInput.schema.ts -const __makeSchema_EnumFeedbackQuestionTypeFieldUpdateOperationsInput_schema = () => z.object({ - set: FeedbackQuestionTypeSchema.optional() -}).strict(); -export const EnumFeedbackQuestionTypeFieldUpdateOperationsInputObjectSchema: z.ZodType = z.lazy(__makeSchema_EnumFeedbackQuestionTypeFieldUpdateOperationsInput_schema) as unknown as z.ZodType; -export const EnumFeedbackQuestionTypeFieldUpdateOperationsInputObjectZodSchema = z.lazy(__makeSchema_EnumFeedbackQuestionTypeFieldUpdateOperationsInput_schema); - - -// File: FeedbackFormUpdateOneRequiredWithoutQuestionsNestedInput.schema.ts -const __makeSchema_FeedbackFormUpdateOneRequiredWithoutQuestionsNestedInput_schema = () => z.object({ - create: z.union([FeedbackFormCreateWithoutQuestionsInputObjectSchema, FeedbackFormUncheckedCreateWithoutQuestionsInputObjectSchema]).optional(), - get connectOrCreate(){ return FeedbackFormCreateOrConnectWithoutQuestionsInputObjectSchema.optional(); }, - get upsert(){ return FeedbackFormUpsertWithoutQuestionsInputObjectSchema.optional(); }, - get connect(){ return FeedbackFormWhereUniqueInputObjectSchema.optional(); }, - update: z.union([FeedbackFormUpdateToOneWithWhereWithoutQuestionsInputObjectSchema, FeedbackFormUpdateWithoutQuestionsInputObjectSchema, FeedbackFormUncheckedUpdateWithoutQuestionsInputObjectSchema]).optional() -}).strict(); -export const FeedbackFormUpdateOneRequiredWithoutQuestionsNestedInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackFormUpdateOneRequiredWithoutQuestionsNestedInput_schema) as unknown as z.ZodType; -export const FeedbackFormUpdateOneRequiredWithoutQuestionsNestedInputObjectZodSchema = z.lazy(__makeSchema_FeedbackFormUpdateOneRequiredWithoutQuestionsNestedInput_schema); - - -// File: FeedbackQuestionOptionUpdateManyWithoutQuestionNestedInput.schema.ts -const __makeSchema_FeedbackQuestionOptionUpdateManyWithoutQuestionNestedInput_schema = () => z.object({ - create: z.union([FeedbackQuestionOptionCreateWithoutQuestionInputObjectSchema, FeedbackQuestionOptionCreateWithoutQuestionInputObjectSchema.array(), FeedbackQuestionOptionUncheckedCreateWithoutQuestionInputObjectSchema, FeedbackQuestionOptionUncheckedCreateWithoutQuestionInputObjectSchema.array()]).optional(), - connectOrCreate: z.union([FeedbackQuestionOptionCreateOrConnectWithoutQuestionInputObjectSchema, FeedbackQuestionOptionCreateOrConnectWithoutQuestionInputObjectSchema.array()]).optional(), - upsert: z.union([FeedbackQuestionOptionUpsertWithWhereUniqueWithoutQuestionInputObjectSchema, FeedbackQuestionOptionUpsertWithWhereUniqueWithoutQuestionInputObjectSchema.array()]).optional(), - get createMany(){ return FeedbackQuestionOptionCreateManyQuestionInputEnvelopeObjectSchema.optional(); }, - set: z.union([FeedbackQuestionOptionWhereUniqueInputObjectSchema, FeedbackQuestionOptionWhereUniqueInputObjectSchema.array()]).optional(), - disconnect: z.union([FeedbackQuestionOptionWhereUniqueInputObjectSchema, FeedbackQuestionOptionWhereUniqueInputObjectSchema.array()]).optional(), - delete: z.union([FeedbackQuestionOptionWhereUniqueInputObjectSchema, FeedbackQuestionOptionWhereUniqueInputObjectSchema.array()]).optional(), - connect: z.union([FeedbackQuestionOptionWhereUniqueInputObjectSchema, FeedbackQuestionOptionWhereUniqueInputObjectSchema.array()]).optional(), - update: z.union([FeedbackQuestionOptionUpdateWithWhereUniqueWithoutQuestionInputObjectSchema, FeedbackQuestionOptionUpdateWithWhereUniqueWithoutQuestionInputObjectSchema.array()]).optional(), - updateMany: z.union([FeedbackQuestionOptionUpdateManyWithWhereWithoutQuestionInputObjectSchema, FeedbackQuestionOptionUpdateManyWithWhereWithoutQuestionInputObjectSchema.array()]).optional(), - deleteMany: z.union([FeedbackQuestionOptionScalarWhereInputObjectSchema, FeedbackQuestionOptionScalarWhereInputObjectSchema.array()]).optional() -}).strict(); -export const FeedbackQuestionOptionUpdateManyWithoutQuestionNestedInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackQuestionOptionUpdateManyWithoutQuestionNestedInput_schema) as unknown as z.ZodType; -export const FeedbackQuestionOptionUpdateManyWithoutQuestionNestedInputObjectZodSchema = z.lazy(__makeSchema_FeedbackQuestionOptionUpdateManyWithoutQuestionNestedInput_schema); - - -// File: FeedbackQuestionAnswerUpdateManyWithoutQuestionNestedInput.schema.ts -const __makeSchema_FeedbackQuestionAnswerUpdateManyWithoutQuestionNestedInput_schema = () => z.object({ - create: z.union([FeedbackQuestionAnswerCreateWithoutQuestionInputObjectSchema, FeedbackQuestionAnswerCreateWithoutQuestionInputObjectSchema.array(), FeedbackQuestionAnswerUncheckedCreateWithoutQuestionInputObjectSchema, FeedbackQuestionAnswerUncheckedCreateWithoutQuestionInputObjectSchema.array()]).optional(), - connectOrCreate: z.union([FeedbackQuestionAnswerCreateOrConnectWithoutQuestionInputObjectSchema, FeedbackQuestionAnswerCreateOrConnectWithoutQuestionInputObjectSchema.array()]).optional(), - upsert: z.union([FeedbackQuestionAnswerUpsertWithWhereUniqueWithoutQuestionInputObjectSchema, FeedbackQuestionAnswerUpsertWithWhereUniqueWithoutQuestionInputObjectSchema.array()]).optional(), - get createMany(){ return FeedbackQuestionAnswerCreateManyQuestionInputEnvelopeObjectSchema.optional(); }, - set: z.union([FeedbackQuestionAnswerWhereUniqueInputObjectSchema, FeedbackQuestionAnswerWhereUniqueInputObjectSchema.array()]).optional(), - disconnect: z.union([FeedbackQuestionAnswerWhereUniqueInputObjectSchema, FeedbackQuestionAnswerWhereUniqueInputObjectSchema.array()]).optional(), - delete: z.union([FeedbackQuestionAnswerWhereUniqueInputObjectSchema, FeedbackQuestionAnswerWhereUniqueInputObjectSchema.array()]).optional(), - connect: z.union([FeedbackQuestionAnswerWhereUniqueInputObjectSchema, FeedbackQuestionAnswerWhereUniqueInputObjectSchema.array()]).optional(), - update: z.union([FeedbackQuestionAnswerUpdateWithWhereUniqueWithoutQuestionInputObjectSchema, FeedbackQuestionAnswerUpdateWithWhereUniqueWithoutQuestionInputObjectSchema.array()]).optional(), - updateMany: z.union([FeedbackQuestionAnswerUpdateManyWithWhereWithoutQuestionInputObjectSchema, FeedbackQuestionAnswerUpdateManyWithWhereWithoutQuestionInputObjectSchema.array()]).optional(), - deleteMany: z.union([FeedbackQuestionAnswerScalarWhereInputObjectSchema, FeedbackQuestionAnswerScalarWhereInputObjectSchema.array()]).optional() -}).strict(); -export const FeedbackQuestionAnswerUpdateManyWithoutQuestionNestedInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackQuestionAnswerUpdateManyWithoutQuestionNestedInput_schema) as unknown as z.ZodType; -export const FeedbackQuestionAnswerUpdateManyWithoutQuestionNestedInputObjectZodSchema = z.lazy(__makeSchema_FeedbackQuestionAnswerUpdateManyWithoutQuestionNestedInput_schema); - - -// File: FeedbackQuestionOptionUncheckedUpdateManyWithoutQuestionNestedInput.schema.ts -const __makeSchema_FeedbackQuestionOptionUncheckedUpdateManyWithoutQuestionNestedInput_schema = () => z.object({ - create: z.union([FeedbackQuestionOptionCreateWithoutQuestionInputObjectSchema, FeedbackQuestionOptionCreateWithoutQuestionInputObjectSchema.array(), FeedbackQuestionOptionUncheckedCreateWithoutQuestionInputObjectSchema, FeedbackQuestionOptionUncheckedCreateWithoutQuestionInputObjectSchema.array()]).optional(), - connectOrCreate: z.union([FeedbackQuestionOptionCreateOrConnectWithoutQuestionInputObjectSchema, FeedbackQuestionOptionCreateOrConnectWithoutQuestionInputObjectSchema.array()]).optional(), - upsert: z.union([FeedbackQuestionOptionUpsertWithWhereUniqueWithoutQuestionInputObjectSchema, FeedbackQuestionOptionUpsertWithWhereUniqueWithoutQuestionInputObjectSchema.array()]).optional(), - get createMany(){ return FeedbackQuestionOptionCreateManyQuestionInputEnvelopeObjectSchema.optional(); }, - set: z.union([FeedbackQuestionOptionWhereUniqueInputObjectSchema, FeedbackQuestionOptionWhereUniqueInputObjectSchema.array()]).optional(), - disconnect: z.union([FeedbackQuestionOptionWhereUniqueInputObjectSchema, FeedbackQuestionOptionWhereUniqueInputObjectSchema.array()]).optional(), - delete: z.union([FeedbackQuestionOptionWhereUniqueInputObjectSchema, FeedbackQuestionOptionWhereUniqueInputObjectSchema.array()]).optional(), - connect: z.union([FeedbackQuestionOptionWhereUniqueInputObjectSchema, FeedbackQuestionOptionWhereUniqueInputObjectSchema.array()]).optional(), - update: z.union([FeedbackQuestionOptionUpdateWithWhereUniqueWithoutQuestionInputObjectSchema, FeedbackQuestionOptionUpdateWithWhereUniqueWithoutQuestionInputObjectSchema.array()]).optional(), - updateMany: z.union([FeedbackQuestionOptionUpdateManyWithWhereWithoutQuestionInputObjectSchema, FeedbackQuestionOptionUpdateManyWithWhereWithoutQuestionInputObjectSchema.array()]).optional(), - deleteMany: z.union([FeedbackQuestionOptionScalarWhereInputObjectSchema, FeedbackQuestionOptionScalarWhereInputObjectSchema.array()]).optional() -}).strict(); -export const FeedbackQuestionOptionUncheckedUpdateManyWithoutQuestionNestedInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackQuestionOptionUncheckedUpdateManyWithoutQuestionNestedInput_schema) as unknown as z.ZodType; -export const FeedbackQuestionOptionUncheckedUpdateManyWithoutQuestionNestedInputObjectZodSchema = z.lazy(__makeSchema_FeedbackQuestionOptionUncheckedUpdateManyWithoutQuestionNestedInput_schema); - - -// File: FeedbackQuestionAnswerUncheckedUpdateManyWithoutQuestionNestedInput.schema.ts -const __makeSchema_FeedbackQuestionAnswerUncheckedUpdateManyWithoutQuestionNestedInput_schema = () => z.object({ - create: z.union([FeedbackQuestionAnswerCreateWithoutQuestionInputObjectSchema, FeedbackQuestionAnswerCreateWithoutQuestionInputObjectSchema.array(), FeedbackQuestionAnswerUncheckedCreateWithoutQuestionInputObjectSchema, FeedbackQuestionAnswerUncheckedCreateWithoutQuestionInputObjectSchema.array()]).optional(), - connectOrCreate: z.union([FeedbackQuestionAnswerCreateOrConnectWithoutQuestionInputObjectSchema, FeedbackQuestionAnswerCreateOrConnectWithoutQuestionInputObjectSchema.array()]).optional(), - upsert: z.union([FeedbackQuestionAnswerUpsertWithWhereUniqueWithoutQuestionInputObjectSchema, FeedbackQuestionAnswerUpsertWithWhereUniqueWithoutQuestionInputObjectSchema.array()]).optional(), - get createMany(){ return FeedbackQuestionAnswerCreateManyQuestionInputEnvelopeObjectSchema.optional(); }, - set: z.union([FeedbackQuestionAnswerWhereUniqueInputObjectSchema, FeedbackQuestionAnswerWhereUniqueInputObjectSchema.array()]).optional(), - disconnect: z.union([FeedbackQuestionAnswerWhereUniqueInputObjectSchema, FeedbackQuestionAnswerWhereUniqueInputObjectSchema.array()]).optional(), - delete: z.union([FeedbackQuestionAnswerWhereUniqueInputObjectSchema, FeedbackQuestionAnswerWhereUniqueInputObjectSchema.array()]).optional(), - connect: z.union([FeedbackQuestionAnswerWhereUniqueInputObjectSchema, FeedbackQuestionAnswerWhereUniqueInputObjectSchema.array()]).optional(), - update: z.union([FeedbackQuestionAnswerUpdateWithWhereUniqueWithoutQuestionInputObjectSchema, FeedbackQuestionAnswerUpdateWithWhereUniqueWithoutQuestionInputObjectSchema.array()]).optional(), - updateMany: z.union([FeedbackQuestionAnswerUpdateManyWithWhereWithoutQuestionInputObjectSchema, FeedbackQuestionAnswerUpdateManyWithWhereWithoutQuestionInputObjectSchema.array()]).optional(), - deleteMany: z.union([FeedbackQuestionAnswerScalarWhereInputObjectSchema, FeedbackQuestionAnswerScalarWhereInputObjectSchema.array()]).optional() -}).strict(); -export const FeedbackQuestionAnswerUncheckedUpdateManyWithoutQuestionNestedInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackQuestionAnswerUncheckedUpdateManyWithoutQuestionNestedInput_schema) as unknown as z.ZodType; -export const FeedbackQuestionAnswerUncheckedUpdateManyWithoutQuestionNestedInputObjectZodSchema = z.lazy(__makeSchema_FeedbackQuestionAnswerUncheckedUpdateManyWithoutQuestionNestedInput_schema); - - -// File: FeedbackQuestionCreateNestedOneWithoutOptionsInput.schema.ts -const __makeSchema_FeedbackQuestionCreateNestedOneWithoutOptionsInput_schema = () => z.object({ - create: z.union([FeedbackQuestionCreateWithoutOptionsInputObjectSchema, FeedbackQuestionUncheckedCreateWithoutOptionsInputObjectSchema]).optional(), - get connectOrCreate(){ return FeedbackQuestionCreateOrConnectWithoutOptionsInputObjectSchema.optional(); }, - get connect(){ return FeedbackQuestionWhereUniqueInputObjectSchema.optional(); } -}).strict(); -export const FeedbackQuestionCreateNestedOneWithoutOptionsInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackQuestionCreateNestedOneWithoutOptionsInput_schema) as unknown as z.ZodType; -export const FeedbackQuestionCreateNestedOneWithoutOptionsInputObjectZodSchema = z.lazy(__makeSchema_FeedbackQuestionCreateNestedOneWithoutOptionsInput_schema); - - -// File: FeedbackQuestionAnswerOptionLinkCreateNestedManyWithoutFeedbackQuestionOptionInput.schema.ts -const __makeSchema_FeedbackQuestionAnswerOptionLinkCreateNestedManyWithoutFeedbackQuestionOptionInput_schema = () => z.object({ - create: z.union([FeedbackQuestionAnswerOptionLinkCreateWithoutFeedbackQuestionOptionInputObjectSchema, FeedbackQuestionAnswerOptionLinkCreateWithoutFeedbackQuestionOptionInputObjectSchema.array(), FeedbackQuestionAnswerOptionLinkUncheckedCreateWithoutFeedbackQuestionOptionInputObjectSchema, FeedbackQuestionAnswerOptionLinkUncheckedCreateWithoutFeedbackQuestionOptionInputObjectSchema.array()]).optional(), - connectOrCreate: z.union([FeedbackQuestionAnswerOptionLinkCreateOrConnectWithoutFeedbackQuestionOptionInputObjectSchema, FeedbackQuestionAnswerOptionLinkCreateOrConnectWithoutFeedbackQuestionOptionInputObjectSchema.array()]).optional(), - get createMany(){ return FeedbackQuestionAnswerOptionLinkCreateManyFeedbackQuestionOptionInputEnvelopeObjectSchema.optional(); }, - connect: z.union([FeedbackQuestionAnswerOptionLinkWhereUniqueInputObjectSchema, FeedbackQuestionAnswerOptionLinkWhereUniqueInputObjectSchema.array()]).optional() -}).strict(); -export const FeedbackQuestionAnswerOptionLinkCreateNestedManyWithoutFeedbackQuestionOptionInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackQuestionAnswerOptionLinkCreateNestedManyWithoutFeedbackQuestionOptionInput_schema) as unknown as z.ZodType; -export const FeedbackQuestionAnswerOptionLinkCreateNestedManyWithoutFeedbackQuestionOptionInputObjectZodSchema = z.lazy(__makeSchema_FeedbackQuestionAnswerOptionLinkCreateNestedManyWithoutFeedbackQuestionOptionInput_schema); - - -// File: FeedbackQuestionAnswerOptionLinkUncheckedCreateNestedManyWithoutFeedbackQuestionOptionInput.schema.ts -const __makeSchema_FeedbackQuestionAnswerOptionLinkUncheckedCreateNestedManyWithoutFeedbackQuestionOptionInput_schema = () => z.object({ - create: z.union([FeedbackQuestionAnswerOptionLinkCreateWithoutFeedbackQuestionOptionInputObjectSchema, FeedbackQuestionAnswerOptionLinkCreateWithoutFeedbackQuestionOptionInputObjectSchema.array(), FeedbackQuestionAnswerOptionLinkUncheckedCreateWithoutFeedbackQuestionOptionInputObjectSchema, FeedbackQuestionAnswerOptionLinkUncheckedCreateWithoutFeedbackQuestionOptionInputObjectSchema.array()]).optional(), - connectOrCreate: z.union([FeedbackQuestionAnswerOptionLinkCreateOrConnectWithoutFeedbackQuestionOptionInputObjectSchema, FeedbackQuestionAnswerOptionLinkCreateOrConnectWithoutFeedbackQuestionOptionInputObjectSchema.array()]).optional(), - get createMany(){ return FeedbackQuestionAnswerOptionLinkCreateManyFeedbackQuestionOptionInputEnvelopeObjectSchema.optional(); }, - connect: z.union([FeedbackQuestionAnswerOptionLinkWhereUniqueInputObjectSchema, FeedbackQuestionAnswerOptionLinkWhereUniqueInputObjectSchema.array()]).optional() -}).strict(); -export const FeedbackQuestionAnswerOptionLinkUncheckedCreateNestedManyWithoutFeedbackQuestionOptionInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackQuestionAnswerOptionLinkUncheckedCreateNestedManyWithoutFeedbackQuestionOptionInput_schema) as unknown as z.ZodType; -export const FeedbackQuestionAnswerOptionLinkUncheckedCreateNestedManyWithoutFeedbackQuestionOptionInputObjectZodSchema = z.lazy(__makeSchema_FeedbackQuestionAnswerOptionLinkUncheckedCreateNestedManyWithoutFeedbackQuestionOptionInput_schema); - - -// File: FeedbackQuestionUpdateOneRequiredWithoutOptionsNestedInput.schema.ts -const __makeSchema_FeedbackQuestionUpdateOneRequiredWithoutOptionsNestedInput_schema = () => z.object({ - create: z.union([FeedbackQuestionCreateWithoutOptionsInputObjectSchema, FeedbackQuestionUncheckedCreateWithoutOptionsInputObjectSchema]).optional(), - get connectOrCreate(){ return FeedbackQuestionCreateOrConnectWithoutOptionsInputObjectSchema.optional(); }, - get upsert(){ return FeedbackQuestionUpsertWithoutOptionsInputObjectSchema.optional(); }, - get connect(){ return FeedbackQuestionWhereUniqueInputObjectSchema.optional(); }, - update: z.union([FeedbackQuestionUpdateToOneWithWhereWithoutOptionsInputObjectSchema, FeedbackQuestionUpdateWithoutOptionsInputObjectSchema, FeedbackQuestionUncheckedUpdateWithoutOptionsInputObjectSchema]).optional() -}).strict(); -export const FeedbackQuestionUpdateOneRequiredWithoutOptionsNestedInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackQuestionUpdateOneRequiredWithoutOptionsNestedInput_schema) as unknown as z.ZodType; -export const FeedbackQuestionUpdateOneRequiredWithoutOptionsNestedInputObjectZodSchema = z.lazy(__makeSchema_FeedbackQuestionUpdateOneRequiredWithoutOptionsNestedInput_schema); - - -// File: FeedbackQuestionAnswerOptionLinkUpdateManyWithoutFeedbackQuestionOptionNestedInput.schema.ts -const __makeSchema_FeedbackQuestionAnswerOptionLinkUpdateManyWithoutFeedbackQuestionOptionNestedInput_schema = () => z.object({ - create: z.union([FeedbackQuestionAnswerOptionLinkCreateWithoutFeedbackQuestionOptionInputObjectSchema, FeedbackQuestionAnswerOptionLinkCreateWithoutFeedbackQuestionOptionInputObjectSchema.array(), FeedbackQuestionAnswerOptionLinkUncheckedCreateWithoutFeedbackQuestionOptionInputObjectSchema, FeedbackQuestionAnswerOptionLinkUncheckedCreateWithoutFeedbackQuestionOptionInputObjectSchema.array()]).optional(), - connectOrCreate: z.union([FeedbackQuestionAnswerOptionLinkCreateOrConnectWithoutFeedbackQuestionOptionInputObjectSchema, FeedbackQuestionAnswerOptionLinkCreateOrConnectWithoutFeedbackQuestionOptionInputObjectSchema.array()]).optional(), - upsert: z.union([FeedbackQuestionAnswerOptionLinkUpsertWithWhereUniqueWithoutFeedbackQuestionOptionInputObjectSchema, FeedbackQuestionAnswerOptionLinkUpsertWithWhereUniqueWithoutFeedbackQuestionOptionInputObjectSchema.array()]).optional(), - get createMany(){ return FeedbackQuestionAnswerOptionLinkCreateManyFeedbackQuestionOptionInputEnvelopeObjectSchema.optional(); }, - set: z.union([FeedbackQuestionAnswerOptionLinkWhereUniqueInputObjectSchema, FeedbackQuestionAnswerOptionLinkWhereUniqueInputObjectSchema.array()]).optional(), - disconnect: z.union([FeedbackQuestionAnswerOptionLinkWhereUniqueInputObjectSchema, FeedbackQuestionAnswerOptionLinkWhereUniqueInputObjectSchema.array()]).optional(), - delete: z.union([FeedbackQuestionAnswerOptionLinkWhereUniqueInputObjectSchema, FeedbackQuestionAnswerOptionLinkWhereUniqueInputObjectSchema.array()]).optional(), - connect: z.union([FeedbackQuestionAnswerOptionLinkWhereUniqueInputObjectSchema, FeedbackQuestionAnswerOptionLinkWhereUniqueInputObjectSchema.array()]).optional(), - update: z.union([FeedbackQuestionAnswerOptionLinkUpdateWithWhereUniqueWithoutFeedbackQuestionOptionInputObjectSchema, FeedbackQuestionAnswerOptionLinkUpdateWithWhereUniqueWithoutFeedbackQuestionOptionInputObjectSchema.array()]).optional(), - updateMany: z.union([FeedbackQuestionAnswerOptionLinkUpdateManyWithWhereWithoutFeedbackQuestionOptionInputObjectSchema, FeedbackQuestionAnswerOptionLinkUpdateManyWithWhereWithoutFeedbackQuestionOptionInputObjectSchema.array()]).optional(), - deleteMany: z.union([FeedbackQuestionAnswerOptionLinkScalarWhereInputObjectSchema, FeedbackQuestionAnswerOptionLinkScalarWhereInputObjectSchema.array()]).optional() -}).strict(); -export const FeedbackQuestionAnswerOptionLinkUpdateManyWithoutFeedbackQuestionOptionNestedInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackQuestionAnswerOptionLinkUpdateManyWithoutFeedbackQuestionOptionNestedInput_schema) as unknown as z.ZodType; -export const FeedbackQuestionAnswerOptionLinkUpdateManyWithoutFeedbackQuestionOptionNestedInputObjectZodSchema = z.lazy(__makeSchema_FeedbackQuestionAnswerOptionLinkUpdateManyWithoutFeedbackQuestionOptionNestedInput_schema); - - -// File: FeedbackQuestionAnswerOptionLinkUncheckedUpdateManyWithoutFeedbackQuestionOptionNestedInput.schema.ts -const __makeSchema_FeedbackQuestionAnswerOptionLinkUncheckedUpdateManyWithoutFeedbackQuestionOptionNestedInput_schema = () => z.object({ - create: z.union([FeedbackQuestionAnswerOptionLinkCreateWithoutFeedbackQuestionOptionInputObjectSchema, FeedbackQuestionAnswerOptionLinkCreateWithoutFeedbackQuestionOptionInputObjectSchema.array(), FeedbackQuestionAnswerOptionLinkUncheckedCreateWithoutFeedbackQuestionOptionInputObjectSchema, FeedbackQuestionAnswerOptionLinkUncheckedCreateWithoutFeedbackQuestionOptionInputObjectSchema.array()]).optional(), - connectOrCreate: z.union([FeedbackQuestionAnswerOptionLinkCreateOrConnectWithoutFeedbackQuestionOptionInputObjectSchema, FeedbackQuestionAnswerOptionLinkCreateOrConnectWithoutFeedbackQuestionOptionInputObjectSchema.array()]).optional(), - upsert: z.union([FeedbackQuestionAnswerOptionLinkUpsertWithWhereUniqueWithoutFeedbackQuestionOptionInputObjectSchema, FeedbackQuestionAnswerOptionLinkUpsertWithWhereUniqueWithoutFeedbackQuestionOptionInputObjectSchema.array()]).optional(), - get createMany(){ return FeedbackQuestionAnswerOptionLinkCreateManyFeedbackQuestionOptionInputEnvelopeObjectSchema.optional(); }, - set: z.union([FeedbackQuestionAnswerOptionLinkWhereUniqueInputObjectSchema, FeedbackQuestionAnswerOptionLinkWhereUniqueInputObjectSchema.array()]).optional(), - disconnect: z.union([FeedbackQuestionAnswerOptionLinkWhereUniqueInputObjectSchema, FeedbackQuestionAnswerOptionLinkWhereUniqueInputObjectSchema.array()]).optional(), - delete: z.union([FeedbackQuestionAnswerOptionLinkWhereUniqueInputObjectSchema, FeedbackQuestionAnswerOptionLinkWhereUniqueInputObjectSchema.array()]).optional(), - connect: z.union([FeedbackQuestionAnswerOptionLinkWhereUniqueInputObjectSchema, FeedbackQuestionAnswerOptionLinkWhereUniqueInputObjectSchema.array()]).optional(), - update: z.union([FeedbackQuestionAnswerOptionLinkUpdateWithWhereUniqueWithoutFeedbackQuestionOptionInputObjectSchema, FeedbackQuestionAnswerOptionLinkUpdateWithWhereUniqueWithoutFeedbackQuestionOptionInputObjectSchema.array()]).optional(), - updateMany: z.union([FeedbackQuestionAnswerOptionLinkUpdateManyWithWhereWithoutFeedbackQuestionOptionInputObjectSchema, FeedbackQuestionAnswerOptionLinkUpdateManyWithWhereWithoutFeedbackQuestionOptionInputObjectSchema.array()]).optional(), - deleteMany: z.union([FeedbackQuestionAnswerOptionLinkScalarWhereInputObjectSchema, FeedbackQuestionAnswerOptionLinkScalarWhereInputObjectSchema.array()]).optional() -}).strict(); -export const FeedbackQuestionAnswerOptionLinkUncheckedUpdateManyWithoutFeedbackQuestionOptionNestedInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackQuestionAnswerOptionLinkUncheckedUpdateManyWithoutFeedbackQuestionOptionNestedInput_schema) as unknown as z.ZodType; -export const FeedbackQuestionAnswerOptionLinkUncheckedUpdateManyWithoutFeedbackQuestionOptionNestedInputObjectZodSchema = z.lazy(__makeSchema_FeedbackQuestionAnswerOptionLinkUncheckedUpdateManyWithoutFeedbackQuestionOptionNestedInput_schema); - - -// File: FeedbackQuestionCreateNestedOneWithoutAnswersInput.schema.ts -const __makeSchema_FeedbackQuestionCreateNestedOneWithoutAnswersInput_schema = () => z.object({ - create: z.union([FeedbackQuestionCreateWithoutAnswersInputObjectSchema, FeedbackQuestionUncheckedCreateWithoutAnswersInputObjectSchema]).optional(), - get connectOrCreate(){ return FeedbackQuestionCreateOrConnectWithoutAnswersInputObjectSchema.optional(); }, - get connect(){ return FeedbackQuestionWhereUniqueInputObjectSchema.optional(); } -}).strict(); -export const FeedbackQuestionCreateNestedOneWithoutAnswersInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackQuestionCreateNestedOneWithoutAnswersInput_schema) as unknown as z.ZodType; -export const FeedbackQuestionCreateNestedOneWithoutAnswersInputObjectZodSchema = z.lazy(__makeSchema_FeedbackQuestionCreateNestedOneWithoutAnswersInput_schema); - - -// File: FeedbackFormAnswerCreateNestedOneWithoutAnswersInput.schema.ts -const __makeSchema_FeedbackFormAnswerCreateNestedOneWithoutAnswersInput_schema = () => z.object({ - create: z.union([FeedbackFormAnswerCreateWithoutAnswersInputObjectSchema, FeedbackFormAnswerUncheckedCreateWithoutAnswersInputObjectSchema]).optional(), - get connectOrCreate(){ return FeedbackFormAnswerCreateOrConnectWithoutAnswersInputObjectSchema.optional(); }, - get connect(){ return FeedbackFormAnswerWhereUniqueInputObjectSchema.optional(); } -}).strict(); -export const FeedbackFormAnswerCreateNestedOneWithoutAnswersInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackFormAnswerCreateNestedOneWithoutAnswersInput_schema) as unknown as z.ZodType; -export const FeedbackFormAnswerCreateNestedOneWithoutAnswersInputObjectZodSchema = z.lazy(__makeSchema_FeedbackFormAnswerCreateNestedOneWithoutAnswersInput_schema); - - -// File: FeedbackQuestionAnswerOptionLinkCreateNestedManyWithoutFeedbackQuestionAnswerInput.schema.ts -const __makeSchema_FeedbackQuestionAnswerOptionLinkCreateNestedManyWithoutFeedbackQuestionAnswerInput_schema = () => z.object({ - create: z.union([FeedbackQuestionAnswerOptionLinkCreateWithoutFeedbackQuestionAnswerInputObjectSchema, FeedbackQuestionAnswerOptionLinkCreateWithoutFeedbackQuestionAnswerInputObjectSchema.array(), FeedbackQuestionAnswerOptionLinkUncheckedCreateWithoutFeedbackQuestionAnswerInputObjectSchema, FeedbackQuestionAnswerOptionLinkUncheckedCreateWithoutFeedbackQuestionAnswerInputObjectSchema.array()]).optional(), - connectOrCreate: z.union([FeedbackQuestionAnswerOptionLinkCreateOrConnectWithoutFeedbackQuestionAnswerInputObjectSchema, FeedbackQuestionAnswerOptionLinkCreateOrConnectWithoutFeedbackQuestionAnswerInputObjectSchema.array()]).optional(), - get createMany(){ return FeedbackQuestionAnswerOptionLinkCreateManyFeedbackQuestionAnswerInputEnvelopeObjectSchema.optional(); }, - connect: z.union([FeedbackQuestionAnswerOptionLinkWhereUniqueInputObjectSchema, FeedbackQuestionAnswerOptionLinkWhereUniqueInputObjectSchema.array()]).optional() -}).strict(); -export const FeedbackQuestionAnswerOptionLinkCreateNestedManyWithoutFeedbackQuestionAnswerInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackQuestionAnswerOptionLinkCreateNestedManyWithoutFeedbackQuestionAnswerInput_schema) as unknown as z.ZodType; -export const FeedbackQuestionAnswerOptionLinkCreateNestedManyWithoutFeedbackQuestionAnswerInputObjectZodSchema = z.lazy(__makeSchema_FeedbackQuestionAnswerOptionLinkCreateNestedManyWithoutFeedbackQuestionAnswerInput_schema); - - -// File: FeedbackQuestionAnswerOptionLinkUncheckedCreateNestedManyWithoutFeedbackQuestionAnswerInput.schema.ts -const __makeSchema_FeedbackQuestionAnswerOptionLinkUncheckedCreateNestedManyWithoutFeedbackQuestionAnswerInput_schema = () => z.object({ - create: z.union([FeedbackQuestionAnswerOptionLinkCreateWithoutFeedbackQuestionAnswerInputObjectSchema, FeedbackQuestionAnswerOptionLinkCreateWithoutFeedbackQuestionAnswerInputObjectSchema.array(), FeedbackQuestionAnswerOptionLinkUncheckedCreateWithoutFeedbackQuestionAnswerInputObjectSchema, FeedbackQuestionAnswerOptionLinkUncheckedCreateWithoutFeedbackQuestionAnswerInputObjectSchema.array()]).optional(), - connectOrCreate: z.union([FeedbackQuestionAnswerOptionLinkCreateOrConnectWithoutFeedbackQuestionAnswerInputObjectSchema, FeedbackQuestionAnswerOptionLinkCreateOrConnectWithoutFeedbackQuestionAnswerInputObjectSchema.array()]).optional(), - get createMany(){ return FeedbackQuestionAnswerOptionLinkCreateManyFeedbackQuestionAnswerInputEnvelopeObjectSchema.optional(); }, - connect: z.union([FeedbackQuestionAnswerOptionLinkWhereUniqueInputObjectSchema, FeedbackQuestionAnswerOptionLinkWhereUniqueInputObjectSchema.array()]).optional() -}).strict(); -export const FeedbackQuestionAnswerOptionLinkUncheckedCreateNestedManyWithoutFeedbackQuestionAnswerInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackQuestionAnswerOptionLinkUncheckedCreateNestedManyWithoutFeedbackQuestionAnswerInput_schema) as unknown as z.ZodType; -export const FeedbackQuestionAnswerOptionLinkUncheckedCreateNestedManyWithoutFeedbackQuestionAnswerInputObjectZodSchema = z.lazy(__makeSchema_FeedbackQuestionAnswerOptionLinkUncheckedCreateNestedManyWithoutFeedbackQuestionAnswerInput_schema); - - -// File: FeedbackQuestionUpdateOneRequiredWithoutAnswersNestedInput.schema.ts -const __makeSchema_FeedbackQuestionUpdateOneRequiredWithoutAnswersNestedInput_schema = () => z.object({ - create: z.union([FeedbackQuestionCreateWithoutAnswersInputObjectSchema, FeedbackQuestionUncheckedCreateWithoutAnswersInputObjectSchema]).optional(), - get connectOrCreate(){ return FeedbackQuestionCreateOrConnectWithoutAnswersInputObjectSchema.optional(); }, - get upsert(){ return FeedbackQuestionUpsertWithoutAnswersInputObjectSchema.optional(); }, - get connect(){ return FeedbackQuestionWhereUniqueInputObjectSchema.optional(); }, - update: z.union([FeedbackQuestionUpdateToOneWithWhereWithoutAnswersInputObjectSchema, FeedbackQuestionUpdateWithoutAnswersInputObjectSchema, FeedbackQuestionUncheckedUpdateWithoutAnswersInputObjectSchema]).optional() -}).strict(); -export const FeedbackQuestionUpdateOneRequiredWithoutAnswersNestedInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackQuestionUpdateOneRequiredWithoutAnswersNestedInput_schema) as unknown as z.ZodType; -export const FeedbackQuestionUpdateOneRequiredWithoutAnswersNestedInputObjectZodSchema = z.lazy(__makeSchema_FeedbackQuestionUpdateOneRequiredWithoutAnswersNestedInput_schema); - - -// File: FeedbackFormAnswerUpdateOneRequiredWithoutAnswersNestedInput.schema.ts -const __makeSchema_FeedbackFormAnswerUpdateOneRequiredWithoutAnswersNestedInput_schema = () => z.object({ - create: z.union([FeedbackFormAnswerCreateWithoutAnswersInputObjectSchema, FeedbackFormAnswerUncheckedCreateWithoutAnswersInputObjectSchema]).optional(), - get connectOrCreate(){ return FeedbackFormAnswerCreateOrConnectWithoutAnswersInputObjectSchema.optional(); }, - get upsert(){ return FeedbackFormAnswerUpsertWithoutAnswersInputObjectSchema.optional(); }, - get connect(){ return FeedbackFormAnswerWhereUniqueInputObjectSchema.optional(); }, - update: z.union([FeedbackFormAnswerUpdateToOneWithWhereWithoutAnswersInputObjectSchema, FeedbackFormAnswerUpdateWithoutAnswersInputObjectSchema, FeedbackFormAnswerUncheckedUpdateWithoutAnswersInputObjectSchema]).optional() -}).strict(); -export const FeedbackFormAnswerUpdateOneRequiredWithoutAnswersNestedInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackFormAnswerUpdateOneRequiredWithoutAnswersNestedInput_schema) as unknown as z.ZodType; -export const FeedbackFormAnswerUpdateOneRequiredWithoutAnswersNestedInputObjectZodSchema = z.lazy(__makeSchema_FeedbackFormAnswerUpdateOneRequiredWithoutAnswersNestedInput_schema); - - -// File: FeedbackQuestionAnswerOptionLinkUpdateManyWithoutFeedbackQuestionAnswerNestedInput.schema.ts -const __makeSchema_FeedbackQuestionAnswerOptionLinkUpdateManyWithoutFeedbackQuestionAnswerNestedInput_schema = () => z.object({ - create: z.union([FeedbackQuestionAnswerOptionLinkCreateWithoutFeedbackQuestionAnswerInputObjectSchema, FeedbackQuestionAnswerOptionLinkCreateWithoutFeedbackQuestionAnswerInputObjectSchema.array(), FeedbackQuestionAnswerOptionLinkUncheckedCreateWithoutFeedbackQuestionAnswerInputObjectSchema, FeedbackQuestionAnswerOptionLinkUncheckedCreateWithoutFeedbackQuestionAnswerInputObjectSchema.array()]).optional(), - connectOrCreate: z.union([FeedbackQuestionAnswerOptionLinkCreateOrConnectWithoutFeedbackQuestionAnswerInputObjectSchema, FeedbackQuestionAnswerOptionLinkCreateOrConnectWithoutFeedbackQuestionAnswerInputObjectSchema.array()]).optional(), - upsert: z.union([FeedbackQuestionAnswerOptionLinkUpsertWithWhereUniqueWithoutFeedbackQuestionAnswerInputObjectSchema, FeedbackQuestionAnswerOptionLinkUpsertWithWhereUniqueWithoutFeedbackQuestionAnswerInputObjectSchema.array()]).optional(), - get createMany(){ return FeedbackQuestionAnswerOptionLinkCreateManyFeedbackQuestionAnswerInputEnvelopeObjectSchema.optional(); }, - set: z.union([FeedbackQuestionAnswerOptionLinkWhereUniqueInputObjectSchema, FeedbackQuestionAnswerOptionLinkWhereUniqueInputObjectSchema.array()]).optional(), - disconnect: z.union([FeedbackQuestionAnswerOptionLinkWhereUniqueInputObjectSchema, FeedbackQuestionAnswerOptionLinkWhereUniqueInputObjectSchema.array()]).optional(), - delete: z.union([FeedbackQuestionAnswerOptionLinkWhereUniqueInputObjectSchema, FeedbackQuestionAnswerOptionLinkWhereUniqueInputObjectSchema.array()]).optional(), - connect: z.union([FeedbackQuestionAnswerOptionLinkWhereUniqueInputObjectSchema, FeedbackQuestionAnswerOptionLinkWhereUniqueInputObjectSchema.array()]).optional(), - update: z.union([FeedbackQuestionAnswerOptionLinkUpdateWithWhereUniqueWithoutFeedbackQuestionAnswerInputObjectSchema, FeedbackQuestionAnswerOptionLinkUpdateWithWhereUniqueWithoutFeedbackQuestionAnswerInputObjectSchema.array()]).optional(), - updateMany: z.union([FeedbackQuestionAnswerOptionLinkUpdateManyWithWhereWithoutFeedbackQuestionAnswerInputObjectSchema, FeedbackQuestionAnswerOptionLinkUpdateManyWithWhereWithoutFeedbackQuestionAnswerInputObjectSchema.array()]).optional(), - deleteMany: z.union([FeedbackQuestionAnswerOptionLinkScalarWhereInputObjectSchema, FeedbackQuestionAnswerOptionLinkScalarWhereInputObjectSchema.array()]).optional() -}).strict(); -export const FeedbackQuestionAnswerOptionLinkUpdateManyWithoutFeedbackQuestionAnswerNestedInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackQuestionAnswerOptionLinkUpdateManyWithoutFeedbackQuestionAnswerNestedInput_schema) as unknown as z.ZodType; -export const FeedbackQuestionAnswerOptionLinkUpdateManyWithoutFeedbackQuestionAnswerNestedInputObjectZodSchema = z.lazy(__makeSchema_FeedbackQuestionAnswerOptionLinkUpdateManyWithoutFeedbackQuestionAnswerNestedInput_schema); - - -// File: FeedbackQuestionAnswerOptionLinkUncheckedUpdateManyWithoutFeedbackQuestionAnswerNestedInput.schema.ts -const __makeSchema_FeedbackQuestionAnswerOptionLinkUncheckedUpdateManyWithoutFeedbackQuestionAnswerNestedInput_schema = () => z.object({ - create: z.union([FeedbackQuestionAnswerOptionLinkCreateWithoutFeedbackQuestionAnswerInputObjectSchema, FeedbackQuestionAnswerOptionLinkCreateWithoutFeedbackQuestionAnswerInputObjectSchema.array(), FeedbackQuestionAnswerOptionLinkUncheckedCreateWithoutFeedbackQuestionAnswerInputObjectSchema, FeedbackQuestionAnswerOptionLinkUncheckedCreateWithoutFeedbackQuestionAnswerInputObjectSchema.array()]).optional(), - connectOrCreate: z.union([FeedbackQuestionAnswerOptionLinkCreateOrConnectWithoutFeedbackQuestionAnswerInputObjectSchema, FeedbackQuestionAnswerOptionLinkCreateOrConnectWithoutFeedbackQuestionAnswerInputObjectSchema.array()]).optional(), - upsert: z.union([FeedbackQuestionAnswerOptionLinkUpsertWithWhereUniqueWithoutFeedbackQuestionAnswerInputObjectSchema, FeedbackQuestionAnswerOptionLinkUpsertWithWhereUniqueWithoutFeedbackQuestionAnswerInputObjectSchema.array()]).optional(), - get createMany(){ return FeedbackQuestionAnswerOptionLinkCreateManyFeedbackQuestionAnswerInputEnvelopeObjectSchema.optional(); }, - set: z.union([FeedbackQuestionAnswerOptionLinkWhereUniqueInputObjectSchema, FeedbackQuestionAnswerOptionLinkWhereUniqueInputObjectSchema.array()]).optional(), - disconnect: z.union([FeedbackQuestionAnswerOptionLinkWhereUniqueInputObjectSchema, FeedbackQuestionAnswerOptionLinkWhereUniqueInputObjectSchema.array()]).optional(), - delete: z.union([FeedbackQuestionAnswerOptionLinkWhereUniqueInputObjectSchema, FeedbackQuestionAnswerOptionLinkWhereUniqueInputObjectSchema.array()]).optional(), - connect: z.union([FeedbackQuestionAnswerOptionLinkWhereUniqueInputObjectSchema, FeedbackQuestionAnswerOptionLinkWhereUniqueInputObjectSchema.array()]).optional(), - update: z.union([FeedbackQuestionAnswerOptionLinkUpdateWithWhereUniqueWithoutFeedbackQuestionAnswerInputObjectSchema, FeedbackQuestionAnswerOptionLinkUpdateWithWhereUniqueWithoutFeedbackQuestionAnswerInputObjectSchema.array()]).optional(), - updateMany: z.union([FeedbackQuestionAnswerOptionLinkUpdateManyWithWhereWithoutFeedbackQuestionAnswerInputObjectSchema, FeedbackQuestionAnswerOptionLinkUpdateManyWithWhereWithoutFeedbackQuestionAnswerInputObjectSchema.array()]).optional(), - deleteMany: z.union([FeedbackQuestionAnswerOptionLinkScalarWhereInputObjectSchema, FeedbackQuestionAnswerOptionLinkScalarWhereInputObjectSchema.array()]).optional() -}).strict(); -export const FeedbackQuestionAnswerOptionLinkUncheckedUpdateManyWithoutFeedbackQuestionAnswerNestedInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackQuestionAnswerOptionLinkUncheckedUpdateManyWithoutFeedbackQuestionAnswerNestedInput_schema) as unknown as z.ZodType; -export const FeedbackQuestionAnswerOptionLinkUncheckedUpdateManyWithoutFeedbackQuestionAnswerNestedInputObjectZodSchema = z.lazy(__makeSchema_FeedbackQuestionAnswerOptionLinkUncheckedUpdateManyWithoutFeedbackQuestionAnswerNestedInput_schema); - - -// File: FeedbackQuestionOptionCreateNestedOneWithoutSelectedInAnswersInput.schema.ts -const __makeSchema_FeedbackQuestionOptionCreateNestedOneWithoutSelectedInAnswersInput_schema = () => z.object({ - create: z.union([FeedbackQuestionOptionCreateWithoutSelectedInAnswersInputObjectSchema, FeedbackQuestionOptionUncheckedCreateWithoutSelectedInAnswersInputObjectSchema]).optional(), - get connectOrCreate(){ return FeedbackQuestionOptionCreateOrConnectWithoutSelectedInAnswersInputObjectSchema.optional(); }, - get connect(){ return FeedbackQuestionOptionWhereUniqueInputObjectSchema.optional(); } -}).strict(); -export const FeedbackQuestionOptionCreateNestedOneWithoutSelectedInAnswersInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackQuestionOptionCreateNestedOneWithoutSelectedInAnswersInput_schema) as unknown as z.ZodType; -export const FeedbackQuestionOptionCreateNestedOneWithoutSelectedInAnswersInputObjectZodSchema = z.lazy(__makeSchema_FeedbackQuestionOptionCreateNestedOneWithoutSelectedInAnswersInput_schema); - - -// File: FeedbackQuestionAnswerCreateNestedOneWithoutSelectedOptionsInput.schema.ts -const __makeSchema_FeedbackQuestionAnswerCreateNestedOneWithoutSelectedOptionsInput_schema = () => z.object({ - create: z.union([FeedbackQuestionAnswerCreateWithoutSelectedOptionsInputObjectSchema, FeedbackQuestionAnswerUncheckedCreateWithoutSelectedOptionsInputObjectSchema]).optional(), - get connectOrCreate(){ return FeedbackQuestionAnswerCreateOrConnectWithoutSelectedOptionsInputObjectSchema.optional(); }, - get connect(){ return FeedbackQuestionAnswerWhereUniqueInputObjectSchema.optional(); } -}).strict(); -export const FeedbackQuestionAnswerCreateNestedOneWithoutSelectedOptionsInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackQuestionAnswerCreateNestedOneWithoutSelectedOptionsInput_schema) as unknown as z.ZodType; -export const FeedbackQuestionAnswerCreateNestedOneWithoutSelectedOptionsInputObjectZodSchema = z.lazy(__makeSchema_FeedbackQuestionAnswerCreateNestedOneWithoutSelectedOptionsInput_schema); - - -// File: FeedbackQuestionOptionUpdateOneRequiredWithoutSelectedInAnswersNestedInput.schema.ts -const __makeSchema_FeedbackQuestionOptionUpdateOneRequiredWithoutSelectedInAnswersNestedInput_schema = () => z.object({ - create: z.union([FeedbackQuestionOptionCreateWithoutSelectedInAnswersInputObjectSchema, FeedbackQuestionOptionUncheckedCreateWithoutSelectedInAnswersInputObjectSchema]).optional(), - get connectOrCreate(){ return FeedbackQuestionOptionCreateOrConnectWithoutSelectedInAnswersInputObjectSchema.optional(); }, - get upsert(){ return FeedbackQuestionOptionUpsertWithoutSelectedInAnswersInputObjectSchema.optional(); }, - get connect(){ return FeedbackQuestionOptionWhereUniqueInputObjectSchema.optional(); }, - update: z.union([FeedbackQuestionOptionUpdateToOneWithWhereWithoutSelectedInAnswersInputObjectSchema, FeedbackQuestionOptionUpdateWithoutSelectedInAnswersInputObjectSchema, FeedbackQuestionOptionUncheckedUpdateWithoutSelectedInAnswersInputObjectSchema]).optional() -}).strict(); -export const FeedbackQuestionOptionUpdateOneRequiredWithoutSelectedInAnswersNestedInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackQuestionOptionUpdateOneRequiredWithoutSelectedInAnswersNestedInput_schema) as unknown as z.ZodType; -export const FeedbackQuestionOptionUpdateOneRequiredWithoutSelectedInAnswersNestedInputObjectZodSchema = z.lazy(__makeSchema_FeedbackQuestionOptionUpdateOneRequiredWithoutSelectedInAnswersNestedInput_schema); - - -// File: FeedbackQuestionAnswerUpdateOneRequiredWithoutSelectedOptionsNestedInput.schema.ts -const __makeSchema_FeedbackQuestionAnswerUpdateOneRequiredWithoutSelectedOptionsNestedInput_schema = () => z.object({ - create: z.union([FeedbackQuestionAnswerCreateWithoutSelectedOptionsInputObjectSchema, FeedbackQuestionAnswerUncheckedCreateWithoutSelectedOptionsInputObjectSchema]).optional(), - get connectOrCreate(){ return FeedbackQuestionAnswerCreateOrConnectWithoutSelectedOptionsInputObjectSchema.optional(); }, - get upsert(){ return FeedbackQuestionAnswerUpsertWithoutSelectedOptionsInputObjectSchema.optional(); }, - get connect(){ return FeedbackQuestionAnswerWhereUniqueInputObjectSchema.optional(); }, - update: z.union([FeedbackQuestionAnswerUpdateToOneWithWhereWithoutSelectedOptionsInputObjectSchema, FeedbackQuestionAnswerUpdateWithoutSelectedOptionsInputObjectSchema, FeedbackQuestionAnswerUncheckedUpdateWithoutSelectedOptionsInputObjectSchema]).optional() -}).strict(); -export const FeedbackQuestionAnswerUpdateOneRequiredWithoutSelectedOptionsNestedInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackQuestionAnswerUpdateOneRequiredWithoutSelectedOptionsNestedInput_schema) as unknown as z.ZodType; -export const FeedbackQuestionAnswerUpdateOneRequiredWithoutSelectedOptionsNestedInputObjectZodSchema = z.lazy(__makeSchema_FeedbackQuestionAnswerUpdateOneRequiredWithoutSelectedOptionsNestedInput_schema); - - -// File: FeedbackFormCreateNestedOneWithoutAnswersInput.schema.ts -const __makeSchema_FeedbackFormCreateNestedOneWithoutAnswersInput_schema = () => z.object({ - create: z.union([FeedbackFormCreateWithoutAnswersInputObjectSchema, FeedbackFormUncheckedCreateWithoutAnswersInputObjectSchema]).optional(), - get connectOrCreate(){ return FeedbackFormCreateOrConnectWithoutAnswersInputObjectSchema.optional(); }, - get connect(){ return FeedbackFormWhereUniqueInputObjectSchema.optional(); } -}).strict(); -export const FeedbackFormCreateNestedOneWithoutAnswersInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackFormCreateNestedOneWithoutAnswersInput_schema) as unknown as z.ZodType; -export const FeedbackFormCreateNestedOneWithoutAnswersInputObjectZodSchema = z.lazy(__makeSchema_FeedbackFormCreateNestedOneWithoutAnswersInput_schema); - - -// File: AttendeeCreateNestedOneWithoutFeedbackFormAnswerInput.schema.ts -const __makeSchema_AttendeeCreateNestedOneWithoutFeedbackFormAnswerInput_schema = () => z.object({ - create: z.union([AttendeeCreateWithoutFeedbackFormAnswerInputObjectSchema, AttendeeUncheckedCreateWithoutFeedbackFormAnswerInputObjectSchema]).optional(), - get connectOrCreate(){ return AttendeeCreateOrConnectWithoutFeedbackFormAnswerInputObjectSchema.optional(); }, - get connect(){ return AttendeeWhereUniqueInputObjectSchema.optional(); } -}).strict(); -export const AttendeeCreateNestedOneWithoutFeedbackFormAnswerInputObjectSchema: z.ZodType = z.lazy(__makeSchema_AttendeeCreateNestedOneWithoutFeedbackFormAnswerInput_schema) as unknown as z.ZodType; -export const AttendeeCreateNestedOneWithoutFeedbackFormAnswerInputObjectZodSchema = z.lazy(__makeSchema_AttendeeCreateNestedOneWithoutFeedbackFormAnswerInput_schema); - - -// File: FeedbackQuestionAnswerCreateNestedManyWithoutFormAnswerInput.schema.ts -const __makeSchema_FeedbackQuestionAnswerCreateNestedManyWithoutFormAnswerInput_schema = () => z.object({ - create: z.union([FeedbackQuestionAnswerCreateWithoutFormAnswerInputObjectSchema, FeedbackQuestionAnswerCreateWithoutFormAnswerInputObjectSchema.array(), FeedbackQuestionAnswerUncheckedCreateWithoutFormAnswerInputObjectSchema, FeedbackQuestionAnswerUncheckedCreateWithoutFormAnswerInputObjectSchema.array()]).optional(), - connectOrCreate: z.union([FeedbackQuestionAnswerCreateOrConnectWithoutFormAnswerInputObjectSchema, FeedbackQuestionAnswerCreateOrConnectWithoutFormAnswerInputObjectSchema.array()]).optional(), - get createMany(){ return FeedbackQuestionAnswerCreateManyFormAnswerInputEnvelopeObjectSchema.optional(); }, - connect: z.union([FeedbackQuestionAnswerWhereUniqueInputObjectSchema, FeedbackQuestionAnswerWhereUniqueInputObjectSchema.array()]).optional() -}).strict(); -export const FeedbackQuestionAnswerCreateNestedManyWithoutFormAnswerInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackQuestionAnswerCreateNestedManyWithoutFormAnswerInput_schema) as unknown as z.ZodType; -export const FeedbackQuestionAnswerCreateNestedManyWithoutFormAnswerInputObjectZodSchema = z.lazy(__makeSchema_FeedbackQuestionAnswerCreateNestedManyWithoutFormAnswerInput_schema); - - -// File: FeedbackQuestionAnswerUncheckedCreateNestedManyWithoutFormAnswerInput.schema.ts -const __makeSchema_FeedbackQuestionAnswerUncheckedCreateNestedManyWithoutFormAnswerInput_schema = () => z.object({ - create: z.union([FeedbackQuestionAnswerCreateWithoutFormAnswerInputObjectSchema, FeedbackQuestionAnswerCreateWithoutFormAnswerInputObjectSchema.array(), FeedbackQuestionAnswerUncheckedCreateWithoutFormAnswerInputObjectSchema, FeedbackQuestionAnswerUncheckedCreateWithoutFormAnswerInputObjectSchema.array()]).optional(), - connectOrCreate: z.union([FeedbackQuestionAnswerCreateOrConnectWithoutFormAnswerInputObjectSchema, FeedbackQuestionAnswerCreateOrConnectWithoutFormAnswerInputObjectSchema.array()]).optional(), - get createMany(){ return FeedbackQuestionAnswerCreateManyFormAnswerInputEnvelopeObjectSchema.optional(); }, - connect: z.union([FeedbackQuestionAnswerWhereUniqueInputObjectSchema, FeedbackQuestionAnswerWhereUniqueInputObjectSchema.array()]).optional() -}).strict(); -export const FeedbackQuestionAnswerUncheckedCreateNestedManyWithoutFormAnswerInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackQuestionAnswerUncheckedCreateNestedManyWithoutFormAnswerInput_schema) as unknown as z.ZodType; -export const FeedbackQuestionAnswerUncheckedCreateNestedManyWithoutFormAnswerInputObjectZodSchema = z.lazy(__makeSchema_FeedbackQuestionAnswerUncheckedCreateNestedManyWithoutFormAnswerInput_schema); - - -// File: FeedbackFormUpdateOneRequiredWithoutAnswersNestedInput.schema.ts -const __makeSchema_FeedbackFormUpdateOneRequiredWithoutAnswersNestedInput_schema = () => z.object({ - create: z.union([FeedbackFormCreateWithoutAnswersInputObjectSchema, FeedbackFormUncheckedCreateWithoutAnswersInputObjectSchema]).optional(), - get connectOrCreate(){ return FeedbackFormCreateOrConnectWithoutAnswersInputObjectSchema.optional(); }, - get upsert(){ return FeedbackFormUpsertWithoutAnswersInputObjectSchema.optional(); }, - get connect(){ return FeedbackFormWhereUniqueInputObjectSchema.optional(); }, - update: z.union([FeedbackFormUpdateToOneWithWhereWithoutAnswersInputObjectSchema, FeedbackFormUpdateWithoutAnswersInputObjectSchema, FeedbackFormUncheckedUpdateWithoutAnswersInputObjectSchema]).optional() -}).strict(); -export const FeedbackFormUpdateOneRequiredWithoutAnswersNestedInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackFormUpdateOneRequiredWithoutAnswersNestedInput_schema) as unknown as z.ZodType; -export const FeedbackFormUpdateOneRequiredWithoutAnswersNestedInputObjectZodSchema = z.lazy(__makeSchema_FeedbackFormUpdateOneRequiredWithoutAnswersNestedInput_schema); - - -// File: AttendeeUpdateOneRequiredWithoutFeedbackFormAnswerNestedInput.schema.ts -const __makeSchema_AttendeeUpdateOneRequiredWithoutFeedbackFormAnswerNestedInput_schema = () => z.object({ - create: z.union([AttendeeCreateWithoutFeedbackFormAnswerInputObjectSchema, AttendeeUncheckedCreateWithoutFeedbackFormAnswerInputObjectSchema]).optional(), - get connectOrCreate(){ return AttendeeCreateOrConnectWithoutFeedbackFormAnswerInputObjectSchema.optional(); }, - get upsert(){ return AttendeeUpsertWithoutFeedbackFormAnswerInputObjectSchema.optional(); }, - get connect(){ return AttendeeWhereUniqueInputObjectSchema.optional(); }, - update: z.union([AttendeeUpdateToOneWithWhereWithoutFeedbackFormAnswerInputObjectSchema, AttendeeUpdateWithoutFeedbackFormAnswerInputObjectSchema, AttendeeUncheckedUpdateWithoutFeedbackFormAnswerInputObjectSchema]).optional() -}).strict(); -export const AttendeeUpdateOneRequiredWithoutFeedbackFormAnswerNestedInputObjectSchema: z.ZodType = z.lazy(__makeSchema_AttendeeUpdateOneRequiredWithoutFeedbackFormAnswerNestedInput_schema) as unknown as z.ZodType; -export const AttendeeUpdateOneRequiredWithoutFeedbackFormAnswerNestedInputObjectZodSchema = z.lazy(__makeSchema_AttendeeUpdateOneRequiredWithoutFeedbackFormAnswerNestedInput_schema); - - -// File: FeedbackQuestionAnswerUpdateManyWithoutFormAnswerNestedInput.schema.ts -const __makeSchema_FeedbackQuestionAnswerUpdateManyWithoutFormAnswerNestedInput_schema = () => z.object({ - create: z.union([FeedbackQuestionAnswerCreateWithoutFormAnswerInputObjectSchema, FeedbackQuestionAnswerCreateWithoutFormAnswerInputObjectSchema.array(), FeedbackQuestionAnswerUncheckedCreateWithoutFormAnswerInputObjectSchema, FeedbackQuestionAnswerUncheckedCreateWithoutFormAnswerInputObjectSchema.array()]).optional(), - connectOrCreate: z.union([FeedbackQuestionAnswerCreateOrConnectWithoutFormAnswerInputObjectSchema, FeedbackQuestionAnswerCreateOrConnectWithoutFormAnswerInputObjectSchema.array()]).optional(), - upsert: z.union([FeedbackQuestionAnswerUpsertWithWhereUniqueWithoutFormAnswerInputObjectSchema, FeedbackQuestionAnswerUpsertWithWhereUniqueWithoutFormAnswerInputObjectSchema.array()]).optional(), - get createMany(){ return FeedbackQuestionAnswerCreateManyFormAnswerInputEnvelopeObjectSchema.optional(); }, - set: z.union([FeedbackQuestionAnswerWhereUniqueInputObjectSchema, FeedbackQuestionAnswerWhereUniqueInputObjectSchema.array()]).optional(), - disconnect: z.union([FeedbackQuestionAnswerWhereUniqueInputObjectSchema, FeedbackQuestionAnswerWhereUniqueInputObjectSchema.array()]).optional(), - delete: z.union([FeedbackQuestionAnswerWhereUniqueInputObjectSchema, FeedbackQuestionAnswerWhereUniqueInputObjectSchema.array()]).optional(), - connect: z.union([FeedbackQuestionAnswerWhereUniqueInputObjectSchema, FeedbackQuestionAnswerWhereUniqueInputObjectSchema.array()]).optional(), - update: z.union([FeedbackQuestionAnswerUpdateWithWhereUniqueWithoutFormAnswerInputObjectSchema, FeedbackQuestionAnswerUpdateWithWhereUniqueWithoutFormAnswerInputObjectSchema.array()]).optional(), - updateMany: z.union([FeedbackQuestionAnswerUpdateManyWithWhereWithoutFormAnswerInputObjectSchema, FeedbackQuestionAnswerUpdateManyWithWhereWithoutFormAnswerInputObjectSchema.array()]).optional(), - deleteMany: z.union([FeedbackQuestionAnswerScalarWhereInputObjectSchema, FeedbackQuestionAnswerScalarWhereInputObjectSchema.array()]).optional() -}).strict(); -export const FeedbackQuestionAnswerUpdateManyWithoutFormAnswerNestedInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackQuestionAnswerUpdateManyWithoutFormAnswerNestedInput_schema) as unknown as z.ZodType; -export const FeedbackQuestionAnswerUpdateManyWithoutFormAnswerNestedInputObjectZodSchema = z.lazy(__makeSchema_FeedbackQuestionAnswerUpdateManyWithoutFormAnswerNestedInput_schema); - - -// File: FeedbackQuestionAnswerUncheckedUpdateManyWithoutFormAnswerNestedInput.schema.ts -const __makeSchema_FeedbackQuestionAnswerUncheckedUpdateManyWithoutFormAnswerNestedInput_schema = () => z.object({ - create: z.union([FeedbackQuestionAnswerCreateWithoutFormAnswerInputObjectSchema, FeedbackQuestionAnswerCreateWithoutFormAnswerInputObjectSchema.array(), FeedbackQuestionAnswerUncheckedCreateWithoutFormAnswerInputObjectSchema, FeedbackQuestionAnswerUncheckedCreateWithoutFormAnswerInputObjectSchema.array()]).optional(), - connectOrCreate: z.union([FeedbackQuestionAnswerCreateOrConnectWithoutFormAnswerInputObjectSchema, FeedbackQuestionAnswerCreateOrConnectWithoutFormAnswerInputObjectSchema.array()]).optional(), - upsert: z.union([FeedbackQuestionAnswerUpsertWithWhereUniqueWithoutFormAnswerInputObjectSchema, FeedbackQuestionAnswerUpsertWithWhereUniqueWithoutFormAnswerInputObjectSchema.array()]).optional(), - get createMany(){ return FeedbackQuestionAnswerCreateManyFormAnswerInputEnvelopeObjectSchema.optional(); }, - set: z.union([FeedbackQuestionAnswerWhereUniqueInputObjectSchema, FeedbackQuestionAnswerWhereUniqueInputObjectSchema.array()]).optional(), - disconnect: z.union([FeedbackQuestionAnswerWhereUniqueInputObjectSchema, FeedbackQuestionAnswerWhereUniqueInputObjectSchema.array()]).optional(), - delete: z.union([FeedbackQuestionAnswerWhereUniqueInputObjectSchema, FeedbackQuestionAnswerWhereUniqueInputObjectSchema.array()]).optional(), - connect: z.union([FeedbackQuestionAnswerWhereUniqueInputObjectSchema, FeedbackQuestionAnswerWhereUniqueInputObjectSchema.array()]).optional(), - update: z.union([FeedbackQuestionAnswerUpdateWithWhereUniqueWithoutFormAnswerInputObjectSchema, FeedbackQuestionAnswerUpdateWithWhereUniqueWithoutFormAnswerInputObjectSchema.array()]).optional(), - updateMany: z.union([FeedbackQuestionAnswerUpdateManyWithWhereWithoutFormAnswerInputObjectSchema, FeedbackQuestionAnswerUpdateManyWithWhereWithoutFormAnswerInputObjectSchema.array()]).optional(), - deleteMany: z.union([FeedbackQuestionAnswerScalarWhereInputObjectSchema, FeedbackQuestionAnswerScalarWhereInputObjectSchema.array()]).optional() -}).strict(); -export const FeedbackQuestionAnswerUncheckedUpdateManyWithoutFormAnswerNestedInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackQuestionAnswerUncheckedUpdateManyWithoutFormAnswerNestedInput_schema) as unknown as z.ZodType; -export const FeedbackQuestionAnswerUncheckedUpdateManyWithoutFormAnswerNestedInputObjectZodSchema = z.lazy(__makeSchema_FeedbackQuestionAnswerUncheckedUpdateManyWithoutFormAnswerNestedInput_schema); - - -// File: UserCreateNestedOneWithoutAuditLogsInput.schema.ts -const __makeSchema_UserCreateNestedOneWithoutAuditLogsInput_schema = () => z.object({ - create: z.union([UserCreateWithoutAuditLogsInputObjectSchema, UserUncheckedCreateWithoutAuditLogsInputObjectSchema]).optional(), - get connectOrCreate(){ return UserCreateOrConnectWithoutAuditLogsInputObjectSchema.optional(); }, - get connect(){ return UserWhereUniqueInputObjectSchema.optional(); } -}).strict(); -export const UserCreateNestedOneWithoutAuditLogsInputObjectSchema: z.ZodType = z.lazy(__makeSchema_UserCreateNestedOneWithoutAuditLogsInput_schema) as unknown as z.ZodType; -export const UserCreateNestedOneWithoutAuditLogsInputObjectZodSchema = z.lazy(__makeSchema_UserCreateNestedOneWithoutAuditLogsInput_schema); - - -// File: BigIntFieldUpdateOperationsInput.schema.ts -const __makeSchema_BigIntFieldUpdateOperationsInput_schema = () => z.object({ - set: z.bigint().optional(), - increment: z.bigint().optional(), - decrement: z.bigint().optional(), - multiply: z.bigint().optional(), - divide: z.bigint().optional() -}).strict(); -export const BigIntFieldUpdateOperationsInputObjectSchema: z.ZodType = z.lazy(__makeSchema_BigIntFieldUpdateOperationsInput_schema) as unknown as z.ZodType; -export const BigIntFieldUpdateOperationsInputObjectZodSchema = z.lazy(__makeSchema_BigIntFieldUpdateOperationsInput_schema); - - -// File: UserUpdateOneWithoutAuditLogsNestedInput.schema.ts -const __makeSchema_UserUpdateOneWithoutAuditLogsNestedInput_schema = () => z.object({ - create: z.union([UserCreateWithoutAuditLogsInputObjectSchema, UserUncheckedCreateWithoutAuditLogsInputObjectSchema]).optional(), - get connectOrCreate(){ return UserCreateOrConnectWithoutAuditLogsInputObjectSchema.optional(); }, - get upsert(){ return UserUpsertWithoutAuditLogsInputObjectSchema.optional(); }, - disconnect: z.union([z.boolean(), UserWhereInputObjectSchema]).optional(), - delete: z.union([z.boolean(), UserWhereInputObjectSchema]).optional(), - get connect(){ return UserWhereUniqueInputObjectSchema.optional(); }, - update: z.union([UserUpdateToOneWithWhereWithoutAuditLogsInputObjectSchema, UserUpdateWithoutAuditLogsInputObjectSchema, UserUncheckedUpdateWithoutAuditLogsInputObjectSchema]).optional() -}).strict(); -export const UserUpdateOneWithoutAuditLogsNestedInputObjectSchema: z.ZodType = z.lazy(__makeSchema_UserUpdateOneWithoutAuditLogsNestedInput_schema) as unknown as z.ZodType; -export const UserUpdateOneWithoutAuditLogsNestedInputObjectZodSchema = z.lazy(__makeSchema_UserUpdateOneWithoutAuditLogsNestedInput_schema); - - -// File: UserCreateNestedOneWithoutDeregisterReasonsInput.schema.ts -const __makeSchema_UserCreateNestedOneWithoutDeregisterReasonsInput_schema = () => z.object({ - create: z.union([UserCreateWithoutDeregisterReasonsInputObjectSchema, UserUncheckedCreateWithoutDeregisterReasonsInputObjectSchema]).optional(), - get connectOrCreate(){ return UserCreateOrConnectWithoutDeregisterReasonsInputObjectSchema.optional(); }, - get connect(){ return UserWhereUniqueInputObjectSchema.optional(); } -}).strict(); -export const UserCreateNestedOneWithoutDeregisterReasonsInputObjectSchema: z.ZodType = z.lazy(__makeSchema_UserCreateNestedOneWithoutDeregisterReasonsInput_schema) as unknown as z.ZodType; -export const UserCreateNestedOneWithoutDeregisterReasonsInputObjectZodSchema = z.lazy(__makeSchema_UserCreateNestedOneWithoutDeregisterReasonsInput_schema); - - -// File: EventCreateNestedOneWithoutDeregisterReasonsInput.schema.ts -const __makeSchema_EventCreateNestedOneWithoutDeregisterReasonsInput_schema = () => z.object({ - create: z.union([EventCreateWithoutDeregisterReasonsInputObjectSchema, EventUncheckedCreateWithoutDeregisterReasonsInputObjectSchema]).optional(), - get connectOrCreate(){ return EventCreateOrConnectWithoutDeregisterReasonsInputObjectSchema.optional(); }, - get connect(){ return EventWhereUniqueInputObjectSchema.optional(); } -}).strict(); -export const EventCreateNestedOneWithoutDeregisterReasonsInputObjectSchema: z.ZodType = z.lazy(__makeSchema_EventCreateNestedOneWithoutDeregisterReasonsInput_schema) as unknown as z.ZodType; -export const EventCreateNestedOneWithoutDeregisterReasonsInputObjectZodSchema = z.lazy(__makeSchema_EventCreateNestedOneWithoutDeregisterReasonsInput_schema); - - -// File: EnumDeregisterReasonTypeFieldUpdateOperationsInput.schema.ts -const __makeSchema_EnumDeregisterReasonTypeFieldUpdateOperationsInput_schema = () => z.object({ - set: DeregisterReasonTypeSchema.optional() -}).strict(); -export const EnumDeregisterReasonTypeFieldUpdateOperationsInputObjectSchema: z.ZodType = z.lazy(__makeSchema_EnumDeregisterReasonTypeFieldUpdateOperationsInput_schema) as unknown as z.ZodType; -export const EnumDeregisterReasonTypeFieldUpdateOperationsInputObjectZodSchema = z.lazy(__makeSchema_EnumDeregisterReasonTypeFieldUpdateOperationsInput_schema); - - -// File: UserUpdateOneRequiredWithoutDeregisterReasonsNestedInput.schema.ts -const __makeSchema_UserUpdateOneRequiredWithoutDeregisterReasonsNestedInput_schema = () => z.object({ - create: z.union([UserCreateWithoutDeregisterReasonsInputObjectSchema, UserUncheckedCreateWithoutDeregisterReasonsInputObjectSchema]).optional(), - get connectOrCreate(){ return UserCreateOrConnectWithoutDeregisterReasonsInputObjectSchema.optional(); }, - get upsert(){ return UserUpsertWithoutDeregisterReasonsInputObjectSchema.optional(); }, - get connect(){ return UserWhereUniqueInputObjectSchema.optional(); }, - update: z.union([UserUpdateToOneWithWhereWithoutDeregisterReasonsInputObjectSchema, UserUpdateWithoutDeregisterReasonsInputObjectSchema, UserUncheckedUpdateWithoutDeregisterReasonsInputObjectSchema]).optional() -}).strict(); -export const UserUpdateOneRequiredWithoutDeregisterReasonsNestedInputObjectSchema: z.ZodType = z.lazy(__makeSchema_UserUpdateOneRequiredWithoutDeregisterReasonsNestedInput_schema) as unknown as z.ZodType; -export const UserUpdateOneRequiredWithoutDeregisterReasonsNestedInputObjectZodSchema = z.lazy(__makeSchema_UserUpdateOneRequiredWithoutDeregisterReasonsNestedInput_schema); - - -// File: EventUpdateOneRequiredWithoutDeregisterReasonsNestedInput.schema.ts -const __makeSchema_EventUpdateOneRequiredWithoutDeregisterReasonsNestedInput_schema = () => z.object({ - create: z.union([EventCreateWithoutDeregisterReasonsInputObjectSchema, EventUncheckedCreateWithoutDeregisterReasonsInputObjectSchema]).optional(), - get connectOrCreate(){ return EventCreateOrConnectWithoutDeregisterReasonsInputObjectSchema.optional(); }, - get upsert(){ return EventUpsertWithoutDeregisterReasonsInputObjectSchema.optional(); }, - get connect(){ return EventWhereUniqueInputObjectSchema.optional(); }, - update: z.union([EventUpdateToOneWithWhereWithoutDeregisterReasonsInputObjectSchema, EventUpdateWithoutDeregisterReasonsInputObjectSchema, EventUncheckedUpdateWithoutDeregisterReasonsInputObjectSchema]).optional() -}).strict(); -export const EventUpdateOneRequiredWithoutDeregisterReasonsNestedInputObjectSchema: z.ZodType = z.lazy(__makeSchema_EventUpdateOneRequiredWithoutDeregisterReasonsNestedInput_schema) as unknown as z.ZodType; -export const EventUpdateOneRequiredWithoutDeregisterReasonsNestedInputObjectZodSchema = z.lazy(__makeSchema_EventUpdateOneRequiredWithoutDeregisterReasonsNestedInput_schema); - - -// File: NotificationCreateNestedOneWithoutRecipientsInput.schema.ts -const __makeSchema_NotificationCreateNestedOneWithoutRecipientsInput_schema = () => z.object({ - create: z.union([NotificationCreateWithoutRecipientsInputObjectSchema, NotificationUncheckedCreateWithoutRecipientsInputObjectSchema]).optional(), - get connectOrCreate(){ return NotificationCreateOrConnectWithoutRecipientsInputObjectSchema.optional(); }, - get connect(){ return NotificationWhereUniqueInputObjectSchema.optional(); } -}).strict(); -export const NotificationCreateNestedOneWithoutRecipientsInputObjectSchema: z.ZodType = z.lazy(__makeSchema_NotificationCreateNestedOneWithoutRecipientsInput_schema) as unknown as z.ZodType; -export const NotificationCreateNestedOneWithoutRecipientsInputObjectZodSchema = z.lazy(__makeSchema_NotificationCreateNestedOneWithoutRecipientsInput_schema); - - -// File: UserCreateNestedOneWithoutNotificationsReceivedInput.schema.ts -const __makeSchema_UserCreateNestedOneWithoutNotificationsReceivedInput_schema = () => z.object({ - create: z.union([UserCreateWithoutNotificationsReceivedInputObjectSchema, UserUncheckedCreateWithoutNotificationsReceivedInputObjectSchema]).optional(), - get connectOrCreate(){ return UserCreateOrConnectWithoutNotificationsReceivedInputObjectSchema.optional(); }, - get connect(){ return UserWhereUniqueInputObjectSchema.optional(); } -}).strict(); -export const UserCreateNestedOneWithoutNotificationsReceivedInputObjectSchema: z.ZodType = z.lazy(__makeSchema_UserCreateNestedOneWithoutNotificationsReceivedInput_schema) as unknown as z.ZodType; -export const UserCreateNestedOneWithoutNotificationsReceivedInputObjectZodSchema = z.lazy(__makeSchema_UserCreateNestedOneWithoutNotificationsReceivedInput_schema); - - -// File: NotificationUpdateOneRequiredWithoutRecipientsNestedInput.schema.ts -const __makeSchema_NotificationUpdateOneRequiredWithoutRecipientsNestedInput_schema = () => z.object({ - create: z.union([NotificationCreateWithoutRecipientsInputObjectSchema, NotificationUncheckedCreateWithoutRecipientsInputObjectSchema]).optional(), - get connectOrCreate(){ return NotificationCreateOrConnectWithoutRecipientsInputObjectSchema.optional(); }, - get upsert(){ return NotificationUpsertWithoutRecipientsInputObjectSchema.optional(); }, - get connect(){ return NotificationWhereUniqueInputObjectSchema.optional(); }, - update: z.union([NotificationUpdateToOneWithWhereWithoutRecipientsInputObjectSchema, NotificationUpdateWithoutRecipientsInputObjectSchema, NotificationUncheckedUpdateWithoutRecipientsInputObjectSchema]).optional() -}).strict(); -export const NotificationUpdateOneRequiredWithoutRecipientsNestedInputObjectSchema: z.ZodType = z.lazy(__makeSchema_NotificationUpdateOneRequiredWithoutRecipientsNestedInput_schema) as unknown as z.ZodType; -export const NotificationUpdateOneRequiredWithoutRecipientsNestedInputObjectZodSchema = z.lazy(__makeSchema_NotificationUpdateOneRequiredWithoutRecipientsNestedInput_schema); - - -// File: UserUpdateOneRequiredWithoutNotificationsReceivedNestedInput.schema.ts -const __makeSchema_UserUpdateOneRequiredWithoutNotificationsReceivedNestedInput_schema = () => z.object({ - create: z.union([UserCreateWithoutNotificationsReceivedInputObjectSchema, UserUncheckedCreateWithoutNotificationsReceivedInputObjectSchema]).optional(), - get connectOrCreate(){ return UserCreateOrConnectWithoutNotificationsReceivedInputObjectSchema.optional(); }, - get upsert(){ return UserUpsertWithoutNotificationsReceivedInputObjectSchema.optional(); }, - get connect(){ return UserWhereUniqueInputObjectSchema.optional(); }, - update: z.union([UserUpdateToOneWithWhereWithoutNotificationsReceivedInputObjectSchema, UserUpdateWithoutNotificationsReceivedInputObjectSchema, UserUncheckedUpdateWithoutNotificationsReceivedInputObjectSchema]).optional() -}).strict(); -export const UserUpdateOneRequiredWithoutNotificationsReceivedNestedInputObjectSchema: z.ZodType = z.lazy(__makeSchema_UserUpdateOneRequiredWithoutNotificationsReceivedNestedInput_schema) as unknown as z.ZodType; -export const UserUpdateOneRequiredWithoutNotificationsReceivedNestedInputObjectZodSchema = z.lazy(__makeSchema_UserUpdateOneRequiredWithoutNotificationsReceivedNestedInput_schema); - - -// File: GroupCreateNestedOneWithoutNotificationsInput.schema.ts -const __makeSchema_GroupCreateNestedOneWithoutNotificationsInput_schema = () => z.object({ - create: z.union([GroupCreateWithoutNotificationsInputObjectSchema, GroupUncheckedCreateWithoutNotificationsInputObjectSchema]).optional(), - get connectOrCreate(){ return GroupCreateOrConnectWithoutNotificationsInputObjectSchema.optional(); }, - get connect(){ return GroupWhereUniqueInputObjectSchema.optional(); } -}).strict(); -export const GroupCreateNestedOneWithoutNotificationsInputObjectSchema: z.ZodType = z.lazy(__makeSchema_GroupCreateNestedOneWithoutNotificationsInput_schema) as unknown as z.ZodType; -export const GroupCreateNestedOneWithoutNotificationsInputObjectZodSchema = z.lazy(__makeSchema_GroupCreateNestedOneWithoutNotificationsInput_schema); - - -// File: UserCreateNestedOneWithoutNotificationsCreatedInput.schema.ts -const __makeSchema_UserCreateNestedOneWithoutNotificationsCreatedInput_schema = () => z.object({ - create: z.union([UserCreateWithoutNotificationsCreatedInputObjectSchema, UserUncheckedCreateWithoutNotificationsCreatedInputObjectSchema]).optional(), - get connectOrCreate(){ return UserCreateOrConnectWithoutNotificationsCreatedInputObjectSchema.optional(); }, - get connect(){ return UserWhereUniqueInputObjectSchema.optional(); } -}).strict(); -export const UserCreateNestedOneWithoutNotificationsCreatedInputObjectSchema: z.ZodType = z.lazy(__makeSchema_UserCreateNestedOneWithoutNotificationsCreatedInput_schema) as unknown as z.ZodType; -export const UserCreateNestedOneWithoutNotificationsCreatedInputObjectZodSchema = z.lazy(__makeSchema_UserCreateNestedOneWithoutNotificationsCreatedInput_schema); - - -// File: UserCreateNestedOneWithoutNotificationsUpdatedInput.schema.ts -const __makeSchema_UserCreateNestedOneWithoutNotificationsUpdatedInput_schema = () => z.object({ - create: z.union([UserCreateWithoutNotificationsUpdatedInputObjectSchema, UserUncheckedCreateWithoutNotificationsUpdatedInputObjectSchema]).optional(), - get connectOrCreate(){ return UserCreateOrConnectWithoutNotificationsUpdatedInputObjectSchema.optional(); }, - get connect(){ return UserWhereUniqueInputObjectSchema.optional(); } -}).strict(); -export const UserCreateNestedOneWithoutNotificationsUpdatedInputObjectSchema: z.ZodType = z.lazy(__makeSchema_UserCreateNestedOneWithoutNotificationsUpdatedInput_schema) as unknown as z.ZodType; -export const UserCreateNestedOneWithoutNotificationsUpdatedInputObjectZodSchema = z.lazy(__makeSchema_UserCreateNestedOneWithoutNotificationsUpdatedInput_schema); - - -// File: TaskCreateNestedOneWithoutNotificationsInput.schema.ts -const __makeSchema_TaskCreateNestedOneWithoutNotificationsInput_schema = () => z.object({ - create: z.union([TaskCreateWithoutNotificationsInputObjectSchema, TaskUncheckedCreateWithoutNotificationsInputObjectSchema]).optional(), - get connectOrCreate(){ return TaskCreateOrConnectWithoutNotificationsInputObjectSchema.optional(); }, - get connect(){ return TaskWhereUniqueInputObjectSchema.optional(); } -}).strict(); -export const TaskCreateNestedOneWithoutNotificationsInputObjectSchema: z.ZodType = z.lazy(__makeSchema_TaskCreateNestedOneWithoutNotificationsInput_schema) as unknown as z.ZodType; -export const TaskCreateNestedOneWithoutNotificationsInputObjectZodSchema = z.lazy(__makeSchema_TaskCreateNestedOneWithoutNotificationsInput_schema); - - -// File: NotificationRecipientCreateNestedManyWithoutNotificationInput.schema.ts -const __makeSchema_NotificationRecipientCreateNestedManyWithoutNotificationInput_schema = () => z.object({ - create: z.union([NotificationRecipientCreateWithoutNotificationInputObjectSchema, NotificationRecipientCreateWithoutNotificationInputObjectSchema.array(), NotificationRecipientUncheckedCreateWithoutNotificationInputObjectSchema, NotificationRecipientUncheckedCreateWithoutNotificationInputObjectSchema.array()]).optional(), - connectOrCreate: z.union([NotificationRecipientCreateOrConnectWithoutNotificationInputObjectSchema, NotificationRecipientCreateOrConnectWithoutNotificationInputObjectSchema.array()]).optional(), - get createMany(){ return NotificationRecipientCreateManyNotificationInputEnvelopeObjectSchema.optional(); }, - connect: z.union([NotificationRecipientWhereUniqueInputObjectSchema, NotificationRecipientWhereUniqueInputObjectSchema.array()]).optional() -}).strict(); -export const NotificationRecipientCreateNestedManyWithoutNotificationInputObjectSchema: z.ZodType = z.lazy(__makeSchema_NotificationRecipientCreateNestedManyWithoutNotificationInput_schema) as unknown as z.ZodType; -export const NotificationRecipientCreateNestedManyWithoutNotificationInputObjectZodSchema = z.lazy(__makeSchema_NotificationRecipientCreateNestedManyWithoutNotificationInput_schema); - - -// File: NotificationRecipientUncheckedCreateNestedManyWithoutNotificationInput.schema.ts -const __makeSchema_NotificationRecipientUncheckedCreateNestedManyWithoutNotificationInput_schema = () => z.object({ - create: z.union([NotificationRecipientCreateWithoutNotificationInputObjectSchema, NotificationRecipientCreateWithoutNotificationInputObjectSchema.array(), NotificationRecipientUncheckedCreateWithoutNotificationInputObjectSchema, NotificationRecipientUncheckedCreateWithoutNotificationInputObjectSchema.array()]).optional(), - connectOrCreate: z.union([NotificationRecipientCreateOrConnectWithoutNotificationInputObjectSchema, NotificationRecipientCreateOrConnectWithoutNotificationInputObjectSchema.array()]).optional(), - get createMany(){ return NotificationRecipientCreateManyNotificationInputEnvelopeObjectSchema.optional(); }, - connect: z.union([NotificationRecipientWhereUniqueInputObjectSchema, NotificationRecipientWhereUniqueInputObjectSchema.array()]).optional() -}).strict(); -export const NotificationRecipientUncheckedCreateNestedManyWithoutNotificationInputObjectSchema: z.ZodType = z.lazy(__makeSchema_NotificationRecipientUncheckedCreateNestedManyWithoutNotificationInput_schema) as unknown as z.ZodType; -export const NotificationRecipientUncheckedCreateNestedManyWithoutNotificationInputObjectZodSchema = z.lazy(__makeSchema_NotificationRecipientUncheckedCreateNestedManyWithoutNotificationInput_schema); - - -// File: EnumNotificationTypeFieldUpdateOperationsInput.schema.ts -const __makeSchema_EnumNotificationTypeFieldUpdateOperationsInput_schema = () => z.object({ - set: NotificationTypeSchema.optional() -}).strict(); -export const EnumNotificationTypeFieldUpdateOperationsInputObjectSchema: z.ZodType = z.lazy(__makeSchema_EnumNotificationTypeFieldUpdateOperationsInput_schema) as unknown as z.ZodType; -export const EnumNotificationTypeFieldUpdateOperationsInputObjectZodSchema = z.lazy(__makeSchema_EnumNotificationTypeFieldUpdateOperationsInput_schema); - - -// File: EnumNotificationPayloadTypeFieldUpdateOperationsInput.schema.ts -const __makeSchema_EnumNotificationPayloadTypeFieldUpdateOperationsInput_schema = () => z.object({ - set: NotificationPayloadTypeSchema.optional() -}).strict(); -export const EnumNotificationPayloadTypeFieldUpdateOperationsInputObjectSchema: z.ZodType = z.lazy(__makeSchema_EnumNotificationPayloadTypeFieldUpdateOperationsInput_schema) as unknown as z.ZodType; -export const EnumNotificationPayloadTypeFieldUpdateOperationsInputObjectZodSchema = z.lazy(__makeSchema_EnumNotificationPayloadTypeFieldUpdateOperationsInput_schema); - - -// File: GroupUpdateOneRequiredWithoutNotificationsNestedInput.schema.ts -const __makeSchema_GroupUpdateOneRequiredWithoutNotificationsNestedInput_schema = () => z.object({ - create: z.union([GroupCreateWithoutNotificationsInputObjectSchema, GroupUncheckedCreateWithoutNotificationsInputObjectSchema]).optional(), - get connectOrCreate(){ return GroupCreateOrConnectWithoutNotificationsInputObjectSchema.optional(); }, - get upsert(){ return GroupUpsertWithoutNotificationsInputObjectSchema.optional(); }, - get connect(){ return GroupWhereUniqueInputObjectSchema.optional(); }, - update: z.union([GroupUpdateToOneWithWhereWithoutNotificationsInputObjectSchema, GroupUpdateWithoutNotificationsInputObjectSchema, GroupUncheckedUpdateWithoutNotificationsInputObjectSchema]).optional() -}).strict(); -export const GroupUpdateOneRequiredWithoutNotificationsNestedInputObjectSchema: z.ZodType = z.lazy(__makeSchema_GroupUpdateOneRequiredWithoutNotificationsNestedInput_schema) as unknown as z.ZodType; -export const GroupUpdateOneRequiredWithoutNotificationsNestedInputObjectZodSchema = z.lazy(__makeSchema_GroupUpdateOneRequiredWithoutNotificationsNestedInput_schema); - - -// File: UserUpdateOneWithoutNotificationsCreatedNestedInput.schema.ts -const __makeSchema_UserUpdateOneWithoutNotificationsCreatedNestedInput_schema = () => z.object({ - create: z.union([UserCreateWithoutNotificationsCreatedInputObjectSchema, UserUncheckedCreateWithoutNotificationsCreatedInputObjectSchema]).optional(), - get connectOrCreate(){ return UserCreateOrConnectWithoutNotificationsCreatedInputObjectSchema.optional(); }, - get upsert(){ return UserUpsertWithoutNotificationsCreatedInputObjectSchema.optional(); }, - disconnect: z.union([z.boolean(), UserWhereInputObjectSchema]).optional(), - delete: z.union([z.boolean(), UserWhereInputObjectSchema]).optional(), - get connect(){ return UserWhereUniqueInputObjectSchema.optional(); }, - update: z.union([UserUpdateToOneWithWhereWithoutNotificationsCreatedInputObjectSchema, UserUpdateWithoutNotificationsCreatedInputObjectSchema, UserUncheckedUpdateWithoutNotificationsCreatedInputObjectSchema]).optional() -}).strict(); -export const UserUpdateOneWithoutNotificationsCreatedNestedInputObjectSchema: z.ZodType = z.lazy(__makeSchema_UserUpdateOneWithoutNotificationsCreatedNestedInput_schema) as unknown as z.ZodType; -export const UserUpdateOneWithoutNotificationsCreatedNestedInputObjectZodSchema = z.lazy(__makeSchema_UserUpdateOneWithoutNotificationsCreatedNestedInput_schema); - - -// File: UserUpdateOneWithoutNotificationsUpdatedNestedInput.schema.ts -const __makeSchema_UserUpdateOneWithoutNotificationsUpdatedNestedInput_schema = () => z.object({ - create: z.union([UserCreateWithoutNotificationsUpdatedInputObjectSchema, UserUncheckedCreateWithoutNotificationsUpdatedInputObjectSchema]).optional(), - get connectOrCreate(){ return UserCreateOrConnectWithoutNotificationsUpdatedInputObjectSchema.optional(); }, - get upsert(){ return UserUpsertWithoutNotificationsUpdatedInputObjectSchema.optional(); }, - disconnect: z.union([z.boolean(), UserWhereInputObjectSchema]).optional(), - delete: z.union([z.boolean(), UserWhereInputObjectSchema]).optional(), - get connect(){ return UserWhereUniqueInputObjectSchema.optional(); }, - update: z.union([UserUpdateToOneWithWhereWithoutNotificationsUpdatedInputObjectSchema, UserUpdateWithoutNotificationsUpdatedInputObjectSchema, UserUncheckedUpdateWithoutNotificationsUpdatedInputObjectSchema]).optional() -}).strict(); -export const UserUpdateOneWithoutNotificationsUpdatedNestedInputObjectSchema: z.ZodType = z.lazy(__makeSchema_UserUpdateOneWithoutNotificationsUpdatedNestedInput_schema) as unknown as z.ZodType; -export const UserUpdateOneWithoutNotificationsUpdatedNestedInputObjectZodSchema = z.lazy(__makeSchema_UserUpdateOneWithoutNotificationsUpdatedNestedInput_schema); - - -// File: TaskUpdateOneWithoutNotificationsNestedInput.schema.ts -const __makeSchema_TaskUpdateOneWithoutNotificationsNestedInput_schema = () => z.object({ - create: z.union([TaskCreateWithoutNotificationsInputObjectSchema, TaskUncheckedCreateWithoutNotificationsInputObjectSchema]).optional(), - get connectOrCreate(){ return TaskCreateOrConnectWithoutNotificationsInputObjectSchema.optional(); }, - get upsert(){ return TaskUpsertWithoutNotificationsInputObjectSchema.optional(); }, - disconnect: z.union([z.boolean(), TaskWhereInputObjectSchema]).optional(), - delete: z.union([z.boolean(), TaskWhereInputObjectSchema]).optional(), - get connect(){ return TaskWhereUniqueInputObjectSchema.optional(); }, - update: z.union([TaskUpdateToOneWithWhereWithoutNotificationsInputObjectSchema, TaskUpdateWithoutNotificationsInputObjectSchema, TaskUncheckedUpdateWithoutNotificationsInputObjectSchema]).optional() -}).strict(); -export const TaskUpdateOneWithoutNotificationsNestedInputObjectSchema: z.ZodType = z.lazy(__makeSchema_TaskUpdateOneWithoutNotificationsNestedInput_schema) as unknown as z.ZodType; -export const TaskUpdateOneWithoutNotificationsNestedInputObjectZodSchema = z.lazy(__makeSchema_TaskUpdateOneWithoutNotificationsNestedInput_schema); - - -// File: NotificationRecipientUpdateManyWithoutNotificationNestedInput.schema.ts -const __makeSchema_NotificationRecipientUpdateManyWithoutNotificationNestedInput_schema = () => z.object({ - create: z.union([NotificationRecipientCreateWithoutNotificationInputObjectSchema, NotificationRecipientCreateWithoutNotificationInputObjectSchema.array(), NotificationRecipientUncheckedCreateWithoutNotificationInputObjectSchema, NotificationRecipientUncheckedCreateWithoutNotificationInputObjectSchema.array()]).optional(), - connectOrCreate: z.union([NotificationRecipientCreateOrConnectWithoutNotificationInputObjectSchema, NotificationRecipientCreateOrConnectWithoutNotificationInputObjectSchema.array()]).optional(), - upsert: z.union([NotificationRecipientUpsertWithWhereUniqueWithoutNotificationInputObjectSchema, NotificationRecipientUpsertWithWhereUniqueWithoutNotificationInputObjectSchema.array()]).optional(), - get createMany(){ return NotificationRecipientCreateManyNotificationInputEnvelopeObjectSchema.optional(); }, - set: z.union([NotificationRecipientWhereUniqueInputObjectSchema, NotificationRecipientWhereUniqueInputObjectSchema.array()]).optional(), - disconnect: z.union([NotificationRecipientWhereUniqueInputObjectSchema, NotificationRecipientWhereUniqueInputObjectSchema.array()]).optional(), - delete: z.union([NotificationRecipientWhereUniqueInputObjectSchema, NotificationRecipientWhereUniqueInputObjectSchema.array()]).optional(), - connect: z.union([NotificationRecipientWhereUniqueInputObjectSchema, NotificationRecipientWhereUniqueInputObjectSchema.array()]).optional(), - update: z.union([NotificationRecipientUpdateWithWhereUniqueWithoutNotificationInputObjectSchema, NotificationRecipientUpdateWithWhereUniqueWithoutNotificationInputObjectSchema.array()]).optional(), - updateMany: z.union([NotificationRecipientUpdateManyWithWhereWithoutNotificationInputObjectSchema, NotificationRecipientUpdateManyWithWhereWithoutNotificationInputObjectSchema.array()]).optional(), - deleteMany: z.union([NotificationRecipientScalarWhereInputObjectSchema, NotificationRecipientScalarWhereInputObjectSchema.array()]).optional() -}).strict(); -export const NotificationRecipientUpdateManyWithoutNotificationNestedInputObjectSchema: z.ZodType = z.lazy(__makeSchema_NotificationRecipientUpdateManyWithoutNotificationNestedInput_schema) as unknown as z.ZodType; -export const NotificationRecipientUpdateManyWithoutNotificationNestedInputObjectZodSchema = z.lazy(__makeSchema_NotificationRecipientUpdateManyWithoutNotificationNestedInput_schema); - - -// File: NotificationRecipientUncheckedUpdateManyWithoutNotificationNestedInput.schema.ts -const __makeSchema_NotificationRecipientUncheckedUpdateManyWithoutNotificationNestedInput_schema = () => z.object({ - create: z.union([NotificationRecipientCreateWithoutNotificationInputObjectSchema, NotificationRecipientCreateWithoutNotificationInputObjectSchema.array(), NotificationRecipientUncheckedCreateWithoutNotificationInputObjectSchema, NotificationRecipientUncheckedCreateWithoutNotificationInputObjectSchema.array()]).optional(), - connectOrCreate: z.union([NotificationRecipientCreateOrConnectWithoutNotificationInputObjectSchema, NotificationRecipientCreateOrConnectWithoutNotificationInputObjectSchema.array()]).optional(), - upsert: z.union([NotificationRecipientUpsertWithWhereUniqueWithoutNotificationInputObjectSchema, NotificationRecipientUpsertWithWhereUniqueWithoutNotificationInputObjectSchema.array()]).optional(), - get createMany(){ return NotificationRecipientCreateManyNotificationInputEnvelopeObjectSchema.optional(); }, - set: z.union([NotificationRecipientWhereUniqueInputObjectSchema, NotificationRecipientWhereUniqueInputObjectSchema.array()]).optional(), - disconnect: z.union([NotificationRecipientWhereUniqueInputObjectSchema, NotificationRecipientWhereUniqueInputObjectSchema.array()]).optional(), - delete: z.union([NotificationRecipientWhereUniqueInputObjectSchema, NotificationRecipientWhereUniqueInputObjectSchema.array()]).optional(), - connect: z.union([NotificationRecipientWhereUniqueInputObjectSchema, NotificationRecipientWhereUniqueInputObjectSchema.array()]).optional(), - update: z.union([NotificationRecipientUpdateWithWhereUniqueWithoutNotificationInputObjectSchema, NotificationRecipientUpdateWithWhereUniqueWithoutNotificationInputObjectSchema.array()]).optional(), - updateMany: z.union([NotificationRecipientUpdateManyWithWhereWithoutNotificationInputObjectSchema, NotificationRecipientUpdateManyWithWhereWithoutNotificationInputObjectSchema.array()]).optional(), - deleteMany: z.union([NotificationRecipientScalarWhereInputObjectSchema, NotificationRecipientScalarWhereInputObjectSchema.array()]).optional() -}).strict(); -export const NotificationRecipientUncheckedUpdateManyWithoutNotificationNestedInputObjectSchema: z.ZodType = z.lazy(__makeSchema_NotificationRecipientUncheckedUpdateManyWithoutNotificationNestedInput_schema) as unknown as z.ZodType; -export const NotificationRecipientUncheckedUpdateManyWithoutNotificationNestedInputObjectZodSchema = z.lazy(__makeSchema_NotificationRecipientUncheckedUpdateManyWithoutNotificationNestedInput_schema); - - -// File: ContestantCreateNestedOneWithoutWonContestInput.schema.ts -const __makeSchema_ContestantCreateNestedOneWithoutWonContestInput_schema = () => z.object({ - create: z.union([ContestantCreateWithoutWonContestInputObjectSchema, ContestantUncheckedCreateWithoutWonContestInputObjectSchema]).optional(), - get connectOrCreate(){ return ContestantCreateOrConnectWithoutWonContestInputObjectSchema.optional(); }, - get connect(){ return ContestantWhereUniqueInputObjectSchema.optional(); } -}).strict(); -export const ContestantCreateNestedOneWithoutWonContestInputObjectSchema: z.ZodType = z.lazy(__makeSchema_ContestantCreateNestedOneWithoutWonContestInput_schema) as unknown as z.ZodType; -export const ContestantCreateNestedOneWithoutWonContestInputObjectZodSchema = z.lazy(__makeSchema_ContestantCreateNestedOneWithoutWonContestInput_schema); - - -// File: ContestantCreateNestedManyWithoutContestInput.schema.ts -const __makeSchema_ContestantCreateNestedManyWithoutContestInput_schema = () => z.object({ - create: z.union([ContestantCreateWithoutContestInputObjectSchema, ContestantCreateWithoutContestInputObjectSchema.array(), ContestantUncheckedCreateWithoutContestInputObjectSchema, ContestantUncheckedCreateWithoutContestInputObjectSchema.array()]).optional(), - connectOrCreate: z.union([ContestantCreateOrConnectWithoutContestInputObjectSchema, ContestantCreateOrConnectWithoutContestInputObjectSchema.array()]).optional(), - get createMany(){ return ContestantCreateManyContestInputEnvelopeObjectSchema.optional(); }, - connect: z.union([ContestantWhereUniqueInputObjectSchema, ContestantWhereUniqueInputObjectSchema.array()]).optional() -}).strict(); -export const ContestantCreateNestedManyWithoutContestInputObjectSchema: z.ZodType = z.lazy(__makeSchema_ContestantCreateNestedManyWithoutContestInput_schema) as unknown as z.ZodType; -export const ContestantCreateNestedManyWithoutContestInputObjectZodSchema = z.lazy(__makeSchema_ContestantCreateNestedManyWithoutContestInput_schema); - - -// File: GroupCreateNestedManyWithoutContestsInput.schema.ts -const __makeSchema_GroupCreateNestedManyWithoutContestsInput_schema = () => z.object({ - create: z.union([GroupCreateWithoutContestsInputObjectSchema, GroupCreateWithoutContestsInputObjectSchema.array(), GroupUncheckedCreateWithoutContestsInputObjectSchema, GroupUncheckedCreateWithoutContestsInputObjectSchema.array()]).optional(), - connectOrCreate: z.union([GroupCreateOrConnectWithoutContestsInputObjectSchema, GroupCreateOrConnectWithoutContestsInputObjectSchema.array()]).optional(), - connect: z.union([GroupWhereUniqueInputObjectSchema, GroupWhereUniqueInputObjectSchema.array()]).optional() -}).strict(); -export const GroupCreateNestedManyWithoutContestsInputObjectSchema: z.ZodType = z.lazy(__makeSchema_GroupCreateNestedManyWithoutContestsInput_schema) as unknown as z.ZodType; -export const GroupCreateNestedManyWithoutContestsInputObjectZodSchema = z.lazy(__makeSchema_GroupCreateNestedManyWithoutContestsInput_schema); - - -// File: EventCreateNestedManyWithoutContestInput.schema.ts -const __makeSchema_EventCreateNestedManyWithoutContestInput_schema = () => z.object({ - create: z.union([EventCreateWithoutContestInputObjectSchema, EventCreateWithoutContestInputObjectSchema.array(), EventUncheckedCreateWithoutContestInputObjectSchema, EventUncheckedCreateWithoutContestInputObjectSchema.array()]).optional(), - connectOrCreate: z.union([EventCreateOrConnectWithoutContestInputObjectSchema, EventCreateOrConnectWithoutContestInputObjectSchema.array()]).optional(), - get createMany(){ return EventCreateManyContestInputEnvelopeObjectSchema.optional(); }, - connect: z.union([EventWhereUniqueInputObjectSchema, EventWhereUniqueInputObjectSchema.array()]).optional() -}).strict(); -export const EventCreateNestedManyWithoutContestInputObjectSchema: z.ZodType = z.lazy(__makeSchema_EventCreateNestedManyWithoutContestInput_schema) as unknown as z.ZodType; -export const EventCreateNestedManyWithoutContestInputObjectZodSchema = z.lazy(__makeSchema_EventCreateNestedManyWithoutContestInput_schema); - - -// File: ContestantUncheckedCreateNestedManyWithoutContestInput.schema.ts -const __makeSchema_ContestantUncheckedCreateNestedManyWithoutContestInput_schema = () => z.object({ - create: z.union([ContestantCreateWithoutContestInputObjectSchema, ContestantCreateWithoutContestInputObjectSchema.array(), ContestantUncheckedCreateWithoutContestInputObjectSchema, ContestantUncheckedCreateWithoutContestInputObjectSchema.array()]).optional(), - connectOrCreate: z.union([ContestantCreateOrConnectWithoutContestInputObjectSchema, ContestantCreateOrConnectWithoutContestInputObjectSchema.array()]).optional(), - get createMany(){ return ContestantCreateManyContestInputEnvelopeObjectSchema.optional(); }, - connect: z.union([ContestantWhereUniqueInputObjectSchema, ContestantWhereUniqueInputObjectSchema.array()]).optional() -}).strict(); -export const ContestantUncheckedCreateNestedManyWithoutContestInputObjectSchema: z.ZodType = z.lazy(__makeSchema_ContestantUncheckedCreateNestedManyWithoutContestInput_schema) as unknown as z.ZodType; -export const ContestantUncheckedCreateNestedManyWithoutContestInputObjectZodSchema = z.lazy(__makeSchema_ContestantUncheckedCreateNestedManyWithoutContestInput_schema); - - -// File: GroupUncheckedCreateNestedManyWithoutContestsInput.schema.ts -const __makeSchema_GroupUncheckedCreateNestedManyWithoutContestsInput_schema = () => z.object({ - create: z.union([GroupCreateWithoutContestsInputObjectSchema, GroupCreateWithoutContestsInputObjectSchema.array(), GroupUncheckedCreateWithoutContestsInputObjectSchema, GroupUncheckedCreateWithoutContestsInputObjectSchema.array()]).optional(), - connectOrCreate: z.union([GroupCreateOrConnectWithoutContestsInputObjectSchema, GroupCreateOrConnectWithoutContestsInputObjectSchema.array()]).optional(), - connect: z.union([GroupWhereUniqueInputObjectSchema, GroupWhereUniqueInputObjectSchema.array()]).optional() -}).strict(); -export const GroupUncheckedCreateNestedManyWithoutContestsInputObjectSchema: z.ZodType = z.lazy(__makeSchema_GroupUncheckedCreateNestedManyWithoutContestsInput_schema) as unknown as z.ZodType; -export const GroupUncheckedCreateNestedManyWithoutContestsInputObjectZodSchema = z.lazy(__makeSchema_GroupUncheckedCreateNestedManyWithoutContestsInput_schema); - - -// File: EventUncheckedCreateNestedManyWithoutContestInput.schema.ts -const __makeSchema_EventUncheckedCreateNestedManyWithoutContestInput_schema = () => z.object({ - create: z.union([EventCreateWithoutContestInputObjectSchema, EventCreateWithoutContestInputObjectSchema.array(), EventUncheckedCreateWithoutContestInputObjectSchema, EventUncheckedCreateWithoutContestInputObjectSchema.array()]).optional(), - connectOrCreate: z.union([EventCreateOrConnectWithoutContestInputObjectSchema, EventCreateOrConnectWithoutContestInputObjectSchema.array()]).optional(), - get createMany(){ return EventCreateManyContestInputEnvelopeObjectSchema.optional(); }, - connect: z.union([EventWhereUniqueInputObjectSchema, EventWhereUniqueInputObjectSchema.array()]).optional() -}).strict(); -export const EventUncheckedCreateNestedManyWithoutContestInputObjectSchema: z.ZodType = z.lazy(__makeSchema_EventUncheckedCreateNestedManyWithoutContestInput_schema) as unknown as z.ZodType; -export const EventUncheckedCreateNestedManyWithoutContestInputObjectZodSchema = z.lazy(__makeSchema_EventUncheckedCreateNestedManyWithoutContestInput_schema); - - -// File: EnumContestResultTypeFieldUpdateOperationsInput.schema.ts -const __makeSchema_EnumContestResultTypeFieldUpdateOperationsInput_schema = () => z.object({ - set: ContestResultTypeSchema.optional() -}).strict(); -export const EnumContestResultTypeFieldUpdateOperationsInputObjectSchema: z.ZodType = z.lazy(__makeSchema_EnumContestResultTypeFieldUpdateOperationsInput_schema) as unknown as z.ZodType; -export const EnumContestResultTypeFieldUpdateOperationsInputObjectZodSchema = z.lazy(__makeSchema_EnumContestResultTypeFieldUpdateOperationsInput_schema); - - -// File: EnumContestResultOrderFieldUpdateOperationsInput.schema.ts -const __makeSchema_EnumContestResultOrderFieldUpdateOperationsInput_schema = () => z.object({ - set: ContestResultOrderSchema.optional() -}).strict(); -export const EnumContestResultOrderFieldUpdateOperationsInputObjectSchema: z.ZodType = z.lazy(__makeSchema_EnumContestResultOrderFieldUpdateOperationsInput_schema) as unknown as z.ZodType; -export const EnumContestResultOrderFieldUpdateOperationsInputObjectZodSchema = z.lazy(__makeSchema_EnumContestResultOrderFieldUpdateOperationsInput_schema); - - -// File: ContestantUpdateOneWithoutWonContestNestedInput.schema.ts -const __makeSchema_ContestantUpdateOneWithoutWonContestNestedInput_schema = () => z.object({ - create: z.union([ContestantCreateWithoutWonContestInputObjectSchema, ContestantUncheckedCreateWithoutWonContestInputObjectSchema]).optional(), - get connectOrCreate(){ return ContestantCreateOrConnectWithoutWonContestInputObjectSchema.optional(); }, - get upsert(){ return ContestantUpsertWithoutWonContestInputObjectSchema.optional(); }, - disconnect: z.union([z.boolean(), ContestantWhereInputObjectSchema]).optional(), - delete: z.union([z.boolean(), ContestantWhereInputObjectSchema]).optional(), - get connect(){ return ContestantWhereUniqueInputObjectSchema.optional(); }, - update: z.union([ContestantUpdateToOneWithWhereWithoutWonContestInputObjectSchema, ContestantUpdateWithoutWonContestInputObjectSchema, ContestantUncheckedUpdateWithoutWonContestInputObjectSchema]).optional() -}).strict(); -export const ContestantUpdateOneWithoutWonContestNestedInputObjectSchema: z.ZodType = z.lazy(__makeSchema_ContestantUpdateOneWithoutWonContestNestedInput_schema) as unknown as z.ZodType; -export const ContestantUpdateOneWithoutWonContestNestedInputObjectZodSchema = z.lazy(__makeSchema_ContestantUpdateOneWithoutWonContestNestedInput_schema); - - -// File: ContestantUpdateManyWithoutContestNestedInput.schema.ts -const __makeSchema_ContestantUpdateManyWithoutContestNestedInput_schema = () => z.object({ - create: z.union([ContestantCreateWithoutContestInputObjectSchema, ContestantCreateWithoutContestInputObjectSchema.array(), ContestantUncheckedCreateWithoutContestInputObjectSchema, ContestantUncheckedCreateWithoutContestInputObjectSchema.array()]).optional(), - connectOrCreate: z.union([ContestantCreateOrConnectWithoutContestInputObjectSchema, ContestantCreateOrConnectWithoutContestInputObjectSchema.array()]).optional(), - upsert: z.union([ContestantUpsertWithWhereUniqueWithoutContestInputObjectSchema, ContestantUpsertWithWhereUniqueWithoutContestInputObjectSchema.array()]).optional(), - get createMany(){ return ContestantCreateManyContestInputEnvelopeObjectSchema.optional(); }, - set: z.union([ContestantWhereUniqueInputObjectSchema, ContestantWhereUniqueInputObjectSchema.array()]).optional(), - disconnect: z.union([ContestantWhereUniqueInputObjectSchema, ContestantWhereUniqueInputObjectSchema.array()]).optional(), - delete: z.union([ContestantWhereUniqueInputObjectSchema, ContestantWhereUniqueInputObjectSchema.array()]).optional(), - connect: z.union([ContestantWhereUniqueInputObjectSchema, ContestantWhereUniqueInputObjectSchema.array()]).optional(), - update: z.union([ContestantUpdateWithWhereUniqueWithoutContestInputObjectSchema, ContestantUpdateWithWhereUniqueWithoutContestInputObjectSchema.array()]).optional(), - updateMany: z.union([ContestantUpdateManyWithWhereWithoutContestInputObjectSchema, ContestantUpdateManyWithWhereWithoutContestInputObjectSchema.array()]).optional(), - deleteMany: z.union([ContestantScalarWhereInputObjectSchema, ContestantScalarWhereInputObjectSchema.array()]).optional() -}).strict(); -export const ContestantUpdateManyWithoutContestNestedInputObjectSchema: z.ZodType = z.lazy(__makeSchema_ContestantUpdateManyWithoutContestNestedInput_schema) as unknown as z.ZodType; -export const ContestantUpdateManyWithoutContestNestedInputObjectZodSchema = z.lazy(__makeSchema_ContestantUpdateManyWithoutContestNestedInput_schema); - - -// File: GroupUpdateManyWithoutContestsNestedInput.schema.ts -const __makeSchema_GroupUpdateManyWithoutContestsNestedInput_schema = () => z.object({ - create: z.union([GroupCreateWithoutContestsInputObjectSchema, GroupCreateWithoutContestsInputObjectSchema.array(), GroupUncheckedCreateWithoutContestsInputObjectSchema, GroupUncheckedCreateWithoutContestsInputObjectSchema.array()]).optional(), - connectOrCreate: z.union([GroupCreateOrConnectWithoutContestsInputObjectSchema, GroupCreateOrConnectWithoutContestsInputObjectSchema.array()]).optional(), - upsert: z.union([GroupUpsertWithWhereUniqueWithoutContestsInputObjectSchema, GroupUpsertWithWhereUniqueWithoutContestsInputObjectSchema.array()]).optional(), - set: z.union([GroupWhereUniqueInputObjectSchema, GroupWhereUniqueInputObjectSchema.array()]).optional(), - disconnect: z.union([GroupWhereUniqueInputObjectSchema, GroupWhereUniqueInputObjectSchema.array()]).optional(), - delete: z.union([GroupWhereUniqueInputObjectSchema, GroupWhereUniqueInputObjectSchema.array()]).optional(), - connect: z.union([GroupWhereUniqueInputObjectSchema, GroupWhereUniqueInputObjectSchema.array()]).optional(), - update: z.union([GroupUpdateWithWhereUniqueWithoutContestsInputObjectSchema, GroupUpdateWithWhereUniqueWithoutContestsInputObjectSchema.array()]).optional(), - updateMany: z.union([GroupUpdateManyWithWhereWithoutContestsInputObjectSchema, GroupUpdateManyWithWhereWithoutContestsInputObjectSchema.array()]).optional(), - deleteMany: z.union([GroupScalarWhereInputObjectSchema, GroupScalarWhereInputObjectSchema.array()]).optional() -}).strict(); -export const GroupUpdateManyWithoutContestsNestedInputObjectSchema: z.ZodType = z.lazy(__makeSchema_GroupUpdateManyWithoutContestsNestedInput_schema) as unknown as z.ZodType; -export const GroupUpdateManyWithoutContestsNestedInputObjectZodSchema = z.lazy(__makeSchema_GroupUpdateManyWithoutContestsNestedInput_schema); - - -// File: EventUpdateManyWithoutContestNestedInput.schema.ts -const __makeSchema_EventUpdateManyWithoutContestNestedInput_schema = () => z.object({ - create: z.union([EventCreateWithoutContestInputObjectSchema, EventCreateWithoutContestInputObjectSchema.array(), EventUncheckedCreateWithoutContestInputObjectSchema, EventUncheckedCreateWithoutContestInputObjectSchema.array()]).optional(), - connectOrCreate: z.union([EventCreateOrConnectWithoutContestInputObjectSchema, EventCreateOrConnectWithoutContestInputObjectSchema.array()]).optional(), - upsert: z.union([EventUpsertWithWhereUniqueWithoutContestInputObjectSchema, EventUpsertWithWhereUniqueWithoutContestInputObjectSchema.array()]).optional(), - get createMany(){ return EventCreateManyContestInputEnvelopeObjectSchema.optional(); }, - set: z.union([EventWhereUniqueInputObjectSchema, EventWhereUniqueInputObjectSchema.array()]).optional(), - disconnect: z.union([EventWhereUniqueInputObjectSchema, EventWhereUniqueInputObjectSchema.array()]).optional(), - delete: z.union([EventWhereUniqueInputObjectSchema, EventWhereUniqueInputObjectSchema.array()]).optional(), - connect: z.union([EventWhereUniqueInputObjectSchema, EventWhereUniqueInputObjectSchema.array()]).optional(), - update: z.union([EventUpdateWithWhereUniqueWithoutContestInputObjectSchema, EventUpdateWithWhereUniqueWithoutContestInputObjectSchema.array()]).optional(), - updateMany: z.union([EventUpdateManyWithWhereWithoutContestInputObjectSchema, EventUpdateManyWithWhereWithoutContestInputObjectSchema.array()]).optional(), - deleteMany: z.union([EventScalarWhereInputObjectSchema, EventScalarWhereInputObjectSchema.array()]).optional() -}).strict(); -export const EventUpdateManyWithoutContestNestedInputObjectSchema: z.ZodType = z.lazy(__makeSchema_EventUpdateManyWithoutContestNestedInput_schema) as unknown as z.ZodType; -export const EventUpdateManyWithoutContestNestedInputObjectZodSchema = z.lazy(__makeSchema_EventUpdateManyWithoutContestNestedInput_schema); - - -// File: ContestantUncheckedUpdateManyWithoutContestNestedInput.schema.ts -const __makeSchema_ContestantUncheckedUpdateManyWithoutContestNestedInput_schema = () => z.object({ - create: z.union([ContestantCreateWithoutContestInputObjectSchema, ContestantCreateWithoutContestInputObjectSchema.array(), ContestantUncheckedCreateWithoutContestInputObjectSchema, ContestantUncheckedCreateWithoutContestInputObjectSchema.array()]).optional(), - connectOrCreate: z.union([ContestantCreateOrConnectWithoutContestInputObjectSchema, ContestantCreateOrConnectWithoutContestInputObjectSchema.array()]).optional(), - upsert: z.union([ContestantUpsertWithWhereUniqueWithoutContestInputObjectSchema, ContestantUpsertWithWhereUniqueWithoutContestInputObjectSchema.array()]).optional(), - get createMany(){ return ContestantCreateManyContestInputEnvelopeObjectSchema.optional(); }, - set: z.union([ContestantWhereUniqueInputObjectSchema, ContestantWhereUniqueInputObjectSchema.array()]).optional(), - disconnect: z.union([ContestantWhereUniqueInputObjectSchema, ContestantWhereUniqueInputObjectSchema.array()]).optional(), - delete: z.union([ContestantWhereUniqueInputObjectSchema, ContestantWhereUniqueInputObjectSchema.array()]).optional(), - connect: z.union([ContestantWhereUniqueInputObjectSchema, ContestantWhereUniqueInputObjectSchema.array()]).optional(), - update: z.union([ContestantUpdateWithWhereUniqueWithoutContestInputObjectSchema, ContestantUpdateWithWhereUniqueWithoutContestInputObjectSchema.array()]).optional(), - updateMany: z.union([ContestantUpdateManyWithWhereWithoutContestInputObjectSchema, ContestantUpdateManyWithWhereWithoutContestInputObjectSchema.array()]).optional(), - deleteMany: z.union([ContestantScalarWhereInputObjectSchema, ContestantScalarWhereInputObjectSchema.array()]).optional() -}).strict(); -export const ContestantUncheckedUpdateManyWithoutContestNestedInputObjectSchema: z.ZodType = z.lazy(__makeSchema_ContestantUncheckedUpdateManyWithoutContestNestedInput_schema) as unknown as z.ZodType; -export const ContestantUncheckedUpdateManyWithoutContestNestedInputObjectZodSchema = z.lazy(__makeSchema_ContestantUncheckedUpdateManyWithoutContestNestedInput_schema); - - -// File: GroupUncheckedUpdateManyWithoutContestsNestedInput.schema.ts -const __makeSchema_GroupUncheckedUpdateManyWithoutContestsNestedInput_schema = () => z.object({ - create: z.union([GroupCreateWithoutContestsInputObjectSchema, GroupCreateWithoutContestsInputObjectSchema.array(), GroupUncheckedCreateWithoutContestsInputObjectSchema, GroupUncheckedCreateWithoutContestsInputObjectSchema.array()]).optional(), - connectOrCreate: z.union([GroupCreateOrConnectWithoutContestsInputObjectSchema, GroupCreateOrConnectWithoutContestsInputObjectSchema.array()]).optional(), - upsert: z.union([GroupUpsertWithWhereUniqueWithoutContestsInputObjectSchema, GroupUpsertWithWhereUniqueWithoutContestsInputObjectSchema.array()]).optional(), - set: z.union([GroupWhereUniqueInputObjectSchema, GroupWhereUniqueInputObjectSchema.array()]).optional(), - disconnect: z.union([GroupWhereUniqueInputObjectSchema, GroupWhereUniqueInputObjectSchema.array()]).optional(), - delete: z.union([GroupWhereUniqueInputObjectSchema, GroupWhereUniqueInputObjectSchema.array()]).optional(), - connect: z.union([GroupWhereUniqueInputObjectSchema, GroupWhereUniqueInputObjectSchema.array()]).optional(), - update: z.union([GroupUpdateWithWhereUniqueWithoutContestsInputObjectSchema, GroupUpdateWithWhereUniqueWithoutContestsInputObjectSchema.array()]).optional(), - updateMany: z.union([GroupUpdateManyWithWhereWithoutContestsInputObjectSchema, GroupUpdateManyWithWhereWithoutContestsInputObjectSchema.array()]).optional(), - deleteMany: z.union([GroupScalarWhereInputObjectSchema, GroupScalarWhereInputObjectSchema.array()]).optional() -}).strict(); -export const GroupUncheckedUpdateManyWithoutContestsNestedInputObjectSchema: z.ZodType = z.lazy(__makeSchema_GroupUncheckedUpdateManyWithoutContestsNestedInput_schema) as unknown as z.ZodType; -export const GroupUncheckedUpdateManyWithoutContestsNestedInputObjectZodSchema = z.lazy(__makeSchema_GroupUncheckedUpdateManyWithoutContestsNestedInput_schema); - - -// File: EventUncheckedUpdateManyWithoutContestNestedInput.schema.ts -const __makeSchema_EventUncheckedUpdateManyWithoutContestNestedInput_schema = () => z.object({ - create: z.union([EventCreateWithoutContestInputObjectSchema, EventCreateWithoutContestInputObjectSchema.array(), EventUncheckedCreateWithoutContestInputObjectSchema, EventUncheckedCreateWithoutContestInputObjectSchema.array()]).optional(), - connectOrCreate: z.union([EventCreateOrConnectWithoutContestInputObjectSchema, EventCreateOrConnectWithoutContestInputObjectSchema.array()]).optional(), - upsert: z.union([EventUpsertWithWhereUniqueWithoutContestInputObjectSchema, EventUpsertWithWhereUniqueWithoutContestInputObjectSchema.array()]).optional(), - get createMany(){ return EventCreateManyContestInputEnvelopeObjectSchema.optional(); }, - set: z.union([EventWhereUniqueInputObjectSchema, EventWhereUniqueInputObjectSchema.array()]).optional(), - disconnect: z.union([EventWhereUniqueInputObjectSchema, EventWhereUniqueInputObjectSchema.array()]).optional(), - delete: z.union([EventWhereUniqueInputObjectSchema, EventWhereUniqueInputObjectSchema.array()]).optional(), - connect: z.union([EventWhereUniqueInputObjectSchema, EventWhereUniqueInputObjectSchema.array()]).optional(), - update: z.union([EventUpdateWithWhereUniqueWithoutContestInputObjectSchema, EventUpdateWithWhereUniqueWithoutContestInputObjectSchema.array()]).optional(), - updateMany: z.union([EventUpdateManyWithWhereWithoutContestInputObjectSchema, EventUpdateManyWithWhereWithoutContestInputObjectSchema.array()]).optional(), - deleteMany: z.union([EventScalarWhereInputObjectSchema, EventScalarWhereInputObjectSchema.array()]).optional() -}).strict(); -export const EventUncheckedUpdateManyWithoutContestNestedInputObjectSchema: z.ZodType = z.lazy(__makeSchema_EventUncheckedUpdateManyWithoutContestNestedInput_schema) as unknown as z.ZodType; -export const EventUncheckedUpdateManyWithoutContestNestedInputObjectZodSchema = z.lazy(__makeSchema_EventUncheckedUpdateManyWithoutContestNestedInput_schema); - - -// File: EventCreateNestedOneWithoutFadderukeInput.schema.ts -const __makeSchema_EventCreateNestedOneWithoutFadderukeInput_schema = () => z.object({ - create: z.union([EventCreateWithoutFadderukeInputObjectSchema, EventUncheckedCreateWithoutFadderukeInputObjectSchema]).optional(), - get connectOrCreate(){ return EventCreateOrConnectWithoutFadderukeInputObjectSchema.optional(); }, - get connect(){ return EventWhereUniqueInputObjectSchema.optional(); } -}).strict(); -export const EventCreateNestedOneWithoutFadderukeInputObjectSchema: z.ZodType = z.lazy(__makeSchema_EventCreateNestedOneWithoutFadderukeInput_schema) as unknown as z.ZodType; -export const EventCreateNestedOneWithoutFadderukeInputObjectZodSchema = z.lazy(__makeSchema_EventCreateNestedOneWithoutFadderukeInput_schema); - - -// File: EventUpdateOneRequiredWithoutFadderukeNestedInput.schema.ts -const __makeSchema_EventUpdateOneRequiredWithoutFadderukeNestedInput_schema = () => z.object({ - create: z.union([EventCreateWithoutFadderukeInputObjectSchema, EventUncheckedCreateWithoutFadderukeInputObjectSchema]).optional(), - get connectOrCreate(){ return EventCreateOrConnectWithoutFadderukeInputObjectSchema.optional(); }, - get upsert(){ return EventUpsertWithoutFadderukeInputObjectSchema.optional(); }, - get connect(){ return EventWhereUniqueInputObjectSchema.optional(); }, - update: z.union([EventUpdateToOneWithWhereWithoutFadderukeInputObjectSchema, EventUpdateWithoutFadderukeInputObjectSchema, EventUncheckedUpdateWithoutFadderukeInputObjectSchema]).optional() -}).strict(); -export const EventUpdateOneRequiredWithoutFadderukeNestedInputObjectSchema: z.ZodType = z.lazy(__makeSchema_EventUpdateOneRequiredWithoutFadderukeNestedInput_schema) as unknown as z.ZodType; -export const EventUpdateOneRequiredWithoutFadderukeNestedInputObjectZodSchema = z.lazy(__makeSchema_EventUpdateOneRequiredWithoutFadderukeNestedInput_schema); - - -// File: ContestCreateNestedOneWithoutContestantsInput.schema.ts -const __makeSchema_ContestCreateNestedOneWithoutContestantsInput_schema = () => z.object({ - create: z.union([ContestCreateWithoutContestantsInputObjectSchema, ContestUncheckedCreateWithoutContestantsInputObjectSchema]).optional(), - get connectOrCreate(){ return ContestCreateOrConnectWithoutContestantsInputObjectSchema.optional(); }, - get connect(){ return ContestWhereUniqueInputObjectSchema.optional(); } -}).strict(); -export const ContestCreateNestedOneWithoutContestantsInputObjectSchema: z.ZodType = z.lazy(__makeSchema_ContestCreateNestedOneWithoutContestantsInput_schema) as unknown as z.ZodType; -export const ContestCreateNestedOneWithoutContestantsInputObjectZodSchema = z.lazy(__makeSchema_ContestCreateNestedOneWithoutContestantsInput_schema); - - -// File: UserCreateNestedOneWithoutContestantsInput.schema.ts -const __makeSchema_UserCreateNestedOneWithoutContestantsInput_schema = () => z.object({ - create: z.union([UserCreateWithoutContestantsInputObjectSchema, UserUncheckedCreateWithoutContestantsInputObjectSchema]).optional(), - get connectOrCreate(){ return UserCreateOrConnectWithoutContestantsInputObjectSchema.optional(); }, - get connect(){ return UserWhereUniqueInputObjectSchema.optional(); } -}).strict(); -export const UserCreateNestedOneWithoutContestantsInputObjectSchema: z.ZodType = z.lazy(__makeSchema_UserCreateNestedOneWithoutContestantsInput_schema) as unknown as z.ZodType; -export const UserCreateNestedOneWithoutContestantsInputObjectZodSchema = z.lazy(__makeSchema_UserCreateNestedOneWithoutContestantsInput_schema); - - -// File: ContestTeamCreateNestedOneWithoutContestantInput.schema.ts -const __makeSchema_ContestTeamCreateNestedOneWithoutContestantInput_schema = () => z.object({ - create: z.union([ContestTeamCreateWithoutContestantInputObjectSchema, ContestTeamUncheckedCreateWithoutContestantInputObjectSchema]).optional(), - get connectOrCreate(){ return ContestTeamCreateOrConnectWithoutContestantInputObjectSchema.optional(); }, - get connect(){ return ContestTeamWhereUniqueInputObjectSchema.optional(); } -}).strict(); -export const ContestTeamCreateNestedOneWithoutContestantInputObjectSchema: z.ZodType = z.lazy(__makeSchema_ContestTeamCreateNestedOneWithoutContestantInput_schema) as unknown as z.ZodType; -export const ContestTeamCreateNestedOneWithoutContestantInputObjectZodSchema = z.lazy(__makeSchema_ContestTeamCreateNestedOneWithoutContestantInput_schema); - - -// File: ContestCreateNestedOneWithoutWinnerContestantInput.schema.ts -const __makeSchema_ContestCreateNestedOneWithoutWinnerContestantInput_schema = () => z.object({ - create: z.union([ContestCreateWithoutWinnerContestantInputObjectSchema, ContestUncheckedCreateWithoutWinnerContestantInputObjectSchema]).optional(), - get connectOrCreate(){ return ContestCreateOrConnectWithoutWinnerContestantInputObjectSchema.optional(); }, - get connect(){ return ContestWhereUniqueInputObjectSchema.optional(); } -}).strict(); -export const ContestCreateNestedOneWithoutWinnerContestantInputObjectSchema: z.ZodType = z.lazy(__makeSchema_ContestCreateNestedOneWithoutWinnerContestantInput_schema) as unknown as z.ZodType; -export const ContestCreateNestedOneWithoutWinnerContestantInputObjectZodSchema = z.lazy(__makeSchema_ContestCreateNestedOneWithoutWinnerContestantInput_schema); - - -// File: ContestTeamUncheckedCreateNestedOneWithoutContestantInput.schema.ts -const __makeSchema_ContestTeamUncheckedCreateNestedOneWithoutContestantInput_schema = () => z.object({ - create: z.union([ContestTeamCreateWithoutContestantInputObjectSchema, ContestTeamUncheckedCreateWithoutContestantInputObjectSchema]).optional(), - get connectOrCreate(){ return ContestTeamCreateOrConnectWithoutContestantInputObjectSchema.optional(); }, - get connect(){ return ContestTeamWhereUniqueInputObjectSchema.optional(); } -}).strict(); -export const ContestTeamUncheckedCreateNestedOneWithoutContestantInputObjectSchema: z.ZodType = z.lazy(__makeSchema_ContestTeamUncheckedCreateNestedOneWithoutContestantInput_schema) as unknown as z.ZodType; -export const ContestTeamUncheckedCreateNestedOneWithoutContestantInputObjectZodSchema = z.lazy(__makeSchema_ContestTeamUncheckedCreateNestedOneWithoutContestantInput_schema); - - -// File: ContestUncheckedCreateNestedOneWithoutWinnerContestantInput.schema.ts -const __makeSchema_ContestUncheckedCreateNestedOneWithoutWinnerContestantInput_schema = () => z.object({ - create: z.union([ContestCreateWithoutWinnerContestantInputObjectSchema, ContestUncheckedCreateWithoutWinnerContestantInputObjectSchema]).optional(), - get connectOrCreate(){ return ContestCreateOrConnectWithoutWinnerContestantInputObjectSchema.optional(); }, - get connect(){ return ContestWhereUniqueInputObjectSchema.optional(); } -}).strict(); -export const ContestUncheckedCreateNestedOneWithoutWinnerContestantInputObjectSchema: z.ZodType = z.lazy(__makeSchema_ContestUncheckedCreateNestedOneWithoutWinnerContestantInput_schema) as unknown as z.ZodType; -export const ContestUncheckedCreateNestedOneWithoutWinnerContestantInputObjectZodSchema = z.lazy(__makeSchema_ContestUncheckedCreateNestedOneWithoutWinnerContestantInput_schema); - - -// File: ContestUpdateOneRequiredWithoutContestantsNestedInput.schema.ts -const __makeSchema_ContestUpdateOneRequiredWithoutContestantsNestedInput_schema = () => z.object({ - create: z.union([ContestCreateWithoutContestantsInputObjectSchema, ContestUncheckedCreateWithoutContestantsInputObjectSchema]).optional(), - get connectOrCreate(){ return ContestCreateOrConnectWithoutContestantsInputObjectSchema.optional(); }, - get upsert(){ return ContestUpsertWithoutContestantsInputObjectSchema.optional(); }, - get connect(){ return ContestWhereUniqueInputObjectSchema.optional(); }, - update: z.union([ContestUpdateToOneWithWhereWithoutContestantsInputObjectSchema, ContestUpdateWithoutContestantsInputObjectSchema, ContestUncheckedUpdateWithoutContestantsInputObjectSchema]).optional() -}).strict(); -export const ContestUpdateOneRequiredWithoutContestantsNestedInputObjectSchema: z.ZodType = z.lazy(__makeSchema_ContestUpdateOneRequiredWithoutContestantsNestedInput_schema) as unknown as z.ZodType; -export const ContestUpdateOneRequiredWithoutContestantsNestedInputObjectZodSchema = z.lazy(__makeSchema_ContestUpdateOneRequiredWithoutContestantsNestedInput_schema); - - -// File: UserUpdateOneWithoutContestantsNestedInput.schema.ts -const __makeSchema_UserUpdateOneWithoutContestantsNestedInput_schema = () => z.object({ - create: z.union([UserCreateWithoutContestantsInputObjectSchema, UserUncheckedCreateWithoutContestantsInputObjectSchema]).optional(), - get connectOrCreate(){ return UserCreateOrConnectWithoutContestantsInputObjectSchema.optional(); }, - get upsert(){ return UserUpsertWithoutContestantsInputObjectSchema.optional(); }, - disconnect: z.union([z.boolean(), UserWhereInputObjectSchema]).optional(), - delete: z.union([z.boolean(), UserWhereInputObjectSchema]).optional(), - get connect(){ return UserWhereUniqueInputObjectSchema.optional(); }, - update: z.union([UserUpdateToOneWithWhereWithoutContestantsInputObjectSchema, UserUpdateWithoutContestantsInputObjectSchema, UserUncheckedUpdateWithoutContestantsInputObjectSchema]).optional() -}).strict(); -export const UserUpdateOneWithoutContestantsNestedInputObjectSchema: z.ZodType = z.lazy(__makeSchema_UserUpdateOneWithoutContestantsNestedInput_schema) as unknown as z.ZodType; -export const UserUpdateOneWithoutContestantsNestedInputObjectZodSchema = z.lazy(__makeSchema_UserUpdateOneWithoutContestantsNestedInput_schema); - - -// File: ContestTeamUpdateOneWithoutContestantNestedInput.schema.ts -const __makeSchema_ContestTeamUpdateOneWithoutContestantNestedInput_schema = () => z.object({ - create: z.union([ContestTeamCreateWithoutContestantInputObjectSchema, ContestTeamUncheckedCreateWithoutContestantInputObjectSchema]).optional(), - get connectOrCreate(){ return ContestTeamCreateOrConnectWithoutContestantInputObjectSchema.optional(); }, - get upsert(){ return ContestTeamUpsertWithoutContestantInputObjectSchema.optional(); }, - disconnect: z.union([z.boolean(), ContestTeamWhereInputObjectSchema]).optional(), - delete: z.union([z.boolean(), ContestTeamWhereInputObjectSchema]).optional(), - get connect(){ return ContestTeamWhereUniqueInputObjectSchema.optional(); }, - update: z.union([ContestTeamUpdateToOneWithWhereWithoutContestantInputObjectSchema, ContestTeamUpdateWithoutContestantInputObjectSchema, ContestTeamUncheckedUpdateWithoutContestantInputObjectSchema]).optional() -}).strict(); -export const ContestTeamUpdateOneWithoutContestantNestedInputObjectSchema: z.ZodType = z.lazy(__makeSchema_ContestTeamUpdateOneWithoutContestantNestedInput_schema) as unknown as z.ZodType; -export const ContestTeamUpdateOneWithoutContestantNestedInputObjectZodSchema = z.lazy(__makeSchema_ContestTeamUpdateOneWithoutContestantNestedInput_schema); - - -// File: ContestUpdateOneWithoutWinnerContestantNestedInput.schema.ts -const __makeSchema_ContestUpdateOneWithoutWinnerContestantNestedInput_schema = () => z.object({ - create: z.union([ContestCreateWithoutWinnerContestantInputObjectSchema, ContestUncheckedCreateWithoutWinnerContestantInputObjectSchema]).optional(), - get connectOrCreate(){ return ContestCreateOrConnectWithoutWinnerContestantInputObjectSchema.optional(); }, - get upsert(){ return ContestUpsertWithoutWinnerContestantInputObjectSchema.optional(); }, - disconnect: z.union([z.boolean(), ContestWhereInputObjectSchema]).optional(), - delete: z.union([z.boolean(), ContestWhereInputObjectSchema]).optional(), - get connect(){ return ContestWhereUniqueInputObjectSchema.optional(); }, - update: z.union([ContestUpdateToOneWithWhereWithoutWinnerContestantInputObjectSchema, ContestUpdateWithoutWinnerContestantInputObjectSchema, ContestUncheckedUpdateWithoutWinnerContestantInputObjectSchema]).optional() -}).strict(); -export const ContestUpdateOneWithoutWinnerContestantNestedInputObjectSchema: z.ZodType = z.lazy(__makeSchema_ContestUpdateOneWithoutWinnerContestantNestedInput_schema) as unknown as z.ZodType; -export const ContestUpdateOneWithoutWinnerContestantNestedInputObjectZodSchema = z.lazy(__makeSchema_ContestUpdateOneWithoutWinnerContestantNestedInput_schema); - - -// File: ContestTeamUncheckedUpdateOneWithoutContestantNestedInput.schema.ts -const __makeSchema_ContestTeamUncheckedUpdateOneWithoutContestantNestedInput_schema = () => z.object({ - create: z.union([ContestTeamCreateWithoutContestantInputObjectSchema, ContestTeamUncheckedCreateWithoutContestantInputObjectSchema]).optional(), - get connectOrCreate(){ return ContestTeamCreateOrConnectWithoutContestantInputObjectSchema.optional(); }, - get upsert(){ return ContestTeamUpsertWithoutContestantInputObjectSchema.optional(); }, - disconnect: z.union([z.boolean(), ContestTeamWhereInputObjectSchema]).optional(), - delete: z.union([z.boolean(), ContestTeamWhereInputObjectSchema]).optional(), - get connect(){ return ContestTeamWhereUniqueInputObjectSchema.optional(); }, - update: z.union([ContestTeamUpdateToOneWithWhereWithoutContestantInputObjectSchema, ContestTeamUpdateWithoutContestantInputObjectSchema, ContestTeamUncheckedUpdateWithoutContestantInputObjectSchema]).optional() -}).strict(); -export const ContestTeamUncheckedUpdateOneWithoutContestantNestedInputObjectSchema: z.ZodType = z.lazy(__makeSchema_ContestTeamUncheckedUpdateOneWithoutContestantNestedInput_schema) as unknown as z.ZodType; -export const ContestTeamUncheckedUpdateOneWithoutContestantNestedInputObjectZodSchema = z.lazy(__makeSchema_ContestTeamUncheckedUpdateOneWithoutContestantNestedInput_schema); - - -// File: ContestUncheckedUpdateOneWithoutWinnerContestantNestedInput.schema.ts -const __makeSchema_ContestUncheckedUpdateOneWithoutWinnerContestantNestedInput_schema = () => z.object({ - create: z.union([ContestCreateWithoutWinnerContestantInputObjectSchema, ContestUncheckedCreateWithoutWinnerContestantInputObjectSchema]).optional(), - get connectOrCreate(){ return ContestCreateOrConnectWithoutWinnerContestantInputObjectSchema.optional(); }, - get upsert(){ return ContestUpsertWithoutWinnerContestantInputObjectSchema.optional(); }, - disconnect: z.union([z.boolean(), ContestWhereInputObjectSchema]).optional(), - delete: z.union([z.boolean(), ContestWhereInputObjectSchema]).optional(), - get connect(){ return ContestWhereUniqueInputObjectSchema.optional(); }, - update: z.union([ContestUpdateToOneWithWhereWithoutWinnerContestantInputObjectSchema, ContestUpdateWithoutWinnerContestantInputObjectSchema, ContestUncheckedUpdateWithoutWinnerContestantInputObjectSchema]).optional() -}).strict(); -export const ContestUncheckedUpdateOneWithoutWinnerContestantNestedInputObjectSchema: z.ZodType = z.lazy(__makeSchema_ContestUncheckedUpdateOneWithoutWinnerContestantNestedInput_schema) as unknown as z.ZodType; -export const ContestUncheckedUpdateOneWithoutWinnerContestantNestedInputObjectZodSchema = z.lazy(__makeSchema_ContestUncheckedUpdateOneWithoutWinnerContestantNestedInput_schema); - - -// File: ContestantCreateNestedOneWithoutTeamInput.schema.ts -const __makeSchema_ContestantCreateNestedOneWithoutTeamInput_schema = () => z.object({ - create: z.union([ContestantCreateWithoutTeamInputObjectSchema, ContestantUncheckedCreateWithoutTeamInputObjectSchema]).optional(), - get connectOrCreate(){ return ContestantCreateOrConnectWithoutTeamInputObjectSchema.optional(); }, - get connect(){ return ContestantWhereUniqueInputObjectSchema.optional(); } -}).strict(); -export const ContestantCreateNestedOneWithoutTeamInputObjectSchema: z.ZodType = z.lazy(__makeSchema_ContestantCreateNestedOneWithoutTeamInput_schema) as unknown as z.ZodType; -export const ContestantCreateNestedOneWithoutTeamInputObjectZodSchema = z.lazy(__makeSchema_ContestantCreateNestedOneWithoutTeamInput_schema); - - -// File: UserCreateNestedManyWithoutContestTeamsInput.schema.ts -const __makeSchema_UserCreateNestedManyWithoutContestTeamsInput_schema = () => z.object({ - create: z.union([UserCreateWithoutContestTeamsInputObjectSchema, UserCreateWithoutContestTeamsInputObjectSchema.array(), UserUncheckedCreateWithoutContestTeamsInputObjectSchema, UserUncheckedCreateWithoutContestTeamsInputObjectSchema.array()]).optional(), - connectOrCreate: z.union([UserCreateOrConnectWithoutContestTeamsInputObjectSchema, UserCreateOrConnectWithoutContestTeamsInputObjectSchema.array()]).optional(), - connect: z.union([UserWhereUniqueInputObjectSchema, UserWhereUniqueInputObjectSchema.array()]).optional() -}).strict(); -export const UserCreateNestedManyWithoutContestTeamsInputObjectSchema: z.ZodType = z.lazy(__makeSchema_UserCreateNestedManyWithoutContestTeamsInput_schema) as unknown as z.ZodType; -export const UserCreateNestedManyWithoutContestTeamsInputObjectZodSchema = z.lazy(__makeSchema_UserCreateNestedManyWithoutContestTeamsInput_schema); - - -// File: UserUncheckedCreateNestedManyWithoutContestTeamsInput.schema.ts -const __makeSchema_UserUncheckedCreateNestedManyWithoutContestTeamsInput_schema = () => z.object({ - create: z.union([UserCreateWithoutContestTeamsInputObjectSchema, UserCreateWithoutContestTeamsInputObjectSchema.array(), UserUncheckedCreateWithoutContestTeamsInputObjectSchema, UserUncheckedCreateWithoutContestTeamsInputObjectSchema.array()]).optional(), - connectOrCreate: z.union([UserCreateOrConnectWithoutContestTeamsInputObjectSchema, UserCreateOrConnectWithoutContestTeamsInputObjectSchema.array()]).optional(), - connect: z.union([UserWhereUniqueInputObjectSchema, UserWhereUniqueInputObjectSchema.array()]).optional() -}).strict(); -export const UserUncheckedCreateNestedManyWithoutContestTeamsInputObjectSchema: z.ZodType = z.lazy(__makeSchema_UserUncheckedCreateNestedManyWithoutContestTeamsInput_schema) as unknown as z.ZodType; -export const UserUncheckedCreateNestedManyWithoutContestTeamsInputObjectZodSchema = z.lazy(__makeSchema_UserUncheckedCreateNestedManyWithoutContestTeamsInput_schema); - - -// File: ContestantUpdateOneRequiredWithoutTeamNestedInput.schema.ts -const __makeSchema_ContestantUpdateOneRequiredWithoutTeamNestedInput_schema = () => z.object({ - create: z.union([ContestantCreateWithoutTeamInputObjectSchema, ContestantUncheckedCreateWithoutTeamInputObjectSchema]).optional(), - get connectOrCreate(){ return ContestantCreateOrConnectWithoutTeamInputObjectSchema.optional(); }, - get upsert(){ return ContestantUpsertWithoutTeamInputObjectSchema.optional(); }, - get connect(){ return ContestantWhereUniqueInputObjectSchema.optional(); }, - update: z.union([ContestantUpdateToOneWithWhereWithoutTeamInputObjectSchema, ContestantUpdateWithoutTeamInputObjectSchema, ContestantUncheckedUpdateWithoutTeamInputObjectSchema]).optional() -}).strict(); -export const ContestantUpdateOneRequiredWithoutTeamNestedInputObjectSchema: z.ZodType = z.lazy(__makeSchema_ContestantUpdateOneRequiredWithoutTeamNestedInput_schema) as unknown as z.ZodType; -export const ContestantUpdateOneRequiredWithoutTeamNestedInputObjectZodSchema = z.lazy(__makeSchema_ContestantUpdateOneRequiredWithoutTeamNestedInput_schema); - - -// File: UserUpdateManyWithoutContestTeamsNestedInput.schema.ts -const __makeSchema_UserUpdateManyWithoutContestTeamsNestedInput_schema = () => z.object({ - create: z.union([UserCreateWithoutContestTeamsInputObjectSchema, UserCreateWithoutContestTeamsInputObjectSchema.array(), UserUncheckedCreateWithoutContestTeamsInputObjectSchema, UserUncheckedCreateWithoutContestTeamsInputObjectSchema.array()]).optional(), - connectOrCreate: z.union([UserCreateOrConnectWithoutContestTeamsInputObjectSchema, UserCreateOrConnectWithoutContestTeamsInputObjectSchema.array()]).optional(), - upsert: z.union([UserUpsertWithWhereUniqueWithoutContestTeamsInputObjectSchema, UserUpsertWithWhereUniqueWithoutContestTeamsInputObjectSchema.array()]).optional(), - set: z.union([UserWhereUniqueInputObjectSchema, UserWhereUniqueInputObjectSchema.array()]).optional(), - disconnect: z.union([UserWhereUniqueInputObjectSchema, UserWhereUniqueInputObjectSchema.array()]).optional(), - delete: z.union([UserWhereUniqueInputObjectSchema, UserWhereUniqueInputObjectSchema.array()]).optional(), - connect: z.union([UserWhereUniqueInputObjectSchema, UserWhereUniqueInputObjectSchema.array()]).optional(), - update: z.union([UserUpdateWithWhereUniqueWithoutContestTeamsInputObjectSchema, UserUpdateWithWhereUniqueWithoutContestTeamsInputObjectSchema.array()]).optional(), - updateMany: z.union([UserUpdateManyWithWhereWithoutContestTeamsInputObjectSchema, UserUpdateManyWithWhereWithoutContestTeamsInputObjectSchema.array()]).optional(), - deleteMany: z.union([UserScalarWhereInputObjectSchema, UserScalarWhereInputObjectSchema.array()]).optional() -}).strict(); -export const UserUpdateManyWithoutContestTeamsNestedInputObjectSchema: z.ZodType = z.lazy(__makeSchema_UserUpdateManyWithoutContestTeamsNestedInput_schema) as unknown as z.ZodType; -export const UserUpdateManyWithoutContestTeamsNestedInputObjectZodSchema = z.lazy(__makeSchema_UserUpdateManyWithoutContestTeamsNestedInput_schema); - - -// File: UserUncheckedUpdateManyWithoutContestTeamsNestedInput.schema.ts -const __makeSchema_UserUncheckedUpdateManyWithoutContestTeamsNestedInput_schema = () => z.object({ - create: z.union([UserCreateWithoutContestTeamsInputObjectSchema, UserCreateWithoutContestTeamsInputObjectSchema.array(), UserUncheckedCreateWithoutContestTeamsInputObjectSchema, UserUncheckedCreateWithoutContestTeamsInputObjectSchema.array()]).optional(), - connectOrCreate: z.union([UserCreateOrConnectWithoutContestTeamsInputObjectSchema, UserCreateOrConnectWithoutContestTeamsInputObjectSchema.array()]).optional(), - upsert: z.union([UserUpsertWithWhereUniqueWithoutContestTeamsInputObjectSchema, UserUpsertWithWhereUniqueWithoutContestTeamsInputObjectSchema.array()]).optional(), - set: z.union([UserWhereUniqueInputObjectSchema, UserWhereUniqueInputObjectSchema.array()]).optional(), - disconnect: z.union([UserWhereUniqueInputObjectSchema, UserWhereUniqueInputObjectSchema.array()]).optional(), - delete: z.union([UserWhereUniqueInputObjectSchema, UserWhereUniqueInputObjectSchema.array()]).optional(), - connect: z.union([UserWhereUniqueInputObjectSchema, UserWhereUniqueInputObjectSchema.array()]).optional(), - update: z.union([UserUpdateWithWhereUniqueWithoutContestTeamsInputObjectSchema, UserUpdateWithWhereUniqueWithoutContestTeamsInputObjectSchema.array()]).optional(), - updateMany: z.union([UserUpdateManyWithWhereWithoutContestTeamsInputObjectSchema, UserUpdateManyWithWhereWithoutContestTeamsInputObjectSchema.array()]).optional(), - deleteMany: z.union([UserScalarWhereInputObjectSchema, UserScalarWhereInputObjectSchema.array()]).optional() -}).strict(); -export const UserUncheckedUpdateManyWithoutContestTeamsNestedInputObjectSchema: z.ZodType = z.lazy(__makeSchema_UserUncheckedUpdateManyWithoutContestTeamsNestedInput_schema) as unknown as z.ZodType; -export const UserUncheckedUpdateManyWithoutContestTeamsNestedInputObjectZodSchema = z.lazy(__makeSchema_UserUncheckedUpdateManyWithoutContestTeamsNestedInput_schema); - - -// File: NestedStringFilter.schema.ts -const __makeSchema_NestedStringFilter_schema = () => z.object({ - equals: z.string().optional(), - in: z.string().array().optional(), - notIn: z.string().array().optional(), - lt: z.string().optional(), - lte: z.string().optional(), - gt: z.string().optional(), - gte: z.string().optional(), - contains: z.string().optional(), - startsWith: z.string().optional(), - endsWith: z.string().optional(), - not: z.union([z.string(), NestedStringFilterObjectSchema]).optional() -}).strict(); -export const NestedStringFilterObjectSchema: z.ZodType = z.lazy(__makeSchema_NestedStringFilter_schema) as unknown as z.ZodType; -export const NestedStringFilterObjectZodSchema = z.lazy(__makeSchema_NestedStringFilter_schema); - - -// File: NestedEnumMembershipTypeFilter.schema.ts -const __makeSchema_NestedEnumMembershipTypeFilter_schema = () => z.object({ - equals: MembershipTypeSchema.optional(), - in: MembershipTypeSchema.array().optional(), - notIn: MembershipTypeSchema.array().optional(), - not: z.union([MembershipTypeSchema, NestedEnumMembershipTypeFilterObjectSchema]).optional() -}).strict(); -export const NestedEnumMembershipTypeFilterObjectSchema: z.ZodType = z.lazy(__makeSchema_NestedEnumMembershipTypeFilter_schema) as unknown as z.ZodType; -export const NestedEnumMembershipTypeFilterObjectZodSchema = z.lazy(__makeSchema_NestedEnumMembershipTypeFilter_schema); - - -// File: NestedEnumMembershipSpecializationNullableFilter.schema.ts -const __makeSchema_NestedEnumMembershipSpecializationNullableFilter_schema = () => z.object({ - equals: MembershipSpecializationSchema.optional().nullable(), - in: MembershipSpecializationSchema.array().optional().nullable(), - notIn: MembershipSpecializationSchema.array().optional().nullable(), - not: z.union([MembershipSpecializationSchema, NestedEnumMembershipSpecializationNullableFilterObjectSchema]).optional().nullable() -}).strict(); -export const NestedEnumMembershipSpecializationNullableFilterObjectSchema: z.ZodType = z.lazy(__makeSchema_NestedEnumMembershipSpecializationNullableFilter_schema) as unknown as z.ZodType; -export const NestedEnumMembershipSpecializationNullableFilterObjectZodSchema = z.lazy(__makeSchema_NestedEnumMembershipSpecializationNullableFilter_schema); - - -// File: NestedDateTimeFilter.schema.ts -const __makeSchema_NestedDateTimeFilter_schema = () => z.object({ - equals: z.date().optional(), - in: z.union([z.date().array(), z.iso.datetime().array()]).optional(), - notIn: z.union([z.date().array(), z.iso.datetime().array()]).optional(), - lt: z.date().optional(), - lte: z.date().optional(), - gt: z.date().optional(), - gte: z.date().optional(), - not: z.union([z.date(), NestedDateTimeFilterObjectSchema]).optional() -}).strict(); -export const NestedDateTimeFilterObjectSchema: z.ZodType = z.lazy(__makeSchema_NestedDateTimeFilter_schema) as unknown as z.ZodType; -export const NestedDateTimeFilterObjectZodSchema = z.lazy(__makeSchema_NestedDateTimeFilter_schema); - - -// File: NestedDateTimeNullableFilter.schema.ts -const __makeSchema_NestedDateTimeNullableFilter_schema = () => z.object({ - equals: z.date().optional().nullable(), - in: z.union([z.date().array(), z.iso.datetime().array()]).optional().nullable(), - notIn: z.union([z.date().array(), z.iso.datetime().array()]).optional().nullable(), - lt: z.date().optional(), - lte: z.date().optional(), - gt: z.date().optional(), - gte: z.date().optional(), - not: z.union([z.date(), NestedDateTimeNullableFilterObjectSchema]).optional().nullable() -}).strict(); -export const NestedDateTimeNullableFilterObjectSchema: z.ZodType = z.lazy(__makeSchema_NestedDateTimeNullableFilter_schema) as unknown as z.ZodType; -export const NestedDateTimeNullableFilterObjectZodSchema = z.lazy(__makeSchema_NestedDateTimeNullableFilter_schema); - - -// File: NestedIntNullableFilter.schema.ts -const __makeSchema_NestedIntNullableFilter_schema = () => z.object({ - equals: z.number().int().optional().nullable(), - in: z.number().int().array().optional().nullable(), - notIn: z.number().int().array().optional().nullable(), - lt: z.number().int().optional(), - lte: z.number().int().optional(), - gt: z.number().int().optional(), - gte: z.number().int().optional(), - not: z.union([z.number().int(), NestedIntNullableFilterObjectSchema]).optional().nullable() -}).strict(); -export const NestedIntNullableFilterObjectSchema: z.ZodType = z.lazy(__makeSchema_NestedIntNullableFilter_schema) as unknown as z.ZodType; -export const NestedIntNullableFilterObjectZodSchema = z.lazy(__makeSchema_NestedIntNullableFilter_schema); - - -// File: NestedStringWithAggregatesFilter.schema.ts -const __makeSchema_NestedStringWithAggregatesFilter_schema = () => z.object({ - equals: z.string().optional(), - in: z.string().array().optional(), - notIn: z.string().array().optional(), - lt: z.string().optional(), - lte: z.string().optional(), - gt: z.string().optional(), - gte: z.string().optional(), - contains: z.string().optional(), - startsWith: z.string().optional(), - endsWith: z.string().optional(), - not: z.union([z.string(), NestedStringWithAggregatesFilterObjectSchema]).optional(), - get _count(){ return NestedIntFilterObjectSchema.optional(); }, - get _min(){ return NestedStringFilterObjectSchema.optional(); }, - get _max(){ return NestedStringFilterObjectSchema.optional(); } -}).strict(); -export const NestedStringWithAggregatesFilterObjectSchema: z.ZodType = z.lazy(__makeSchema_NestedStringWithAggregatesFilter_schema) as unknown as z.ZodType; -export const NestedStringWithAggregatesFilterObjectZodSchema = z.lazy(__makeSchema_NestedStringWithAggregatesFilter_schema); - - -// File: NestedIntFilter.schema.ts -const __makeSchema_NestedIntFilter_schema = () => z.object({ - equals: z.number().int().optional(), - in: z.number().int().array().optional(), - notIn: z.number().int().array().optional(), - lt: z.number().int().optional(), - lte: z.number().int().optional(), - gt: z.number().int().optional(), - gte: z.number().int().optional(), - not: z.union([z.number().int(), NestedIntFilterObjectSchema]).optional() -}).strict(); -export const NestedIntFilterObjectSchema: z.ZodType = z.lazy(__makeSchema_NestedIntFilter_schema) as unknown as z.ZodType; -export const NestedIntFilterObjectZodSchema = z.lazy(__makeSchema_NestedIntFilter_schema); - - -// File: NestedEnumMembershipTypeWithAggregatesFilter.schema.ts -const __makeSchema_NestedEnumMembershipTypeWithAggregatesFilter_schema = () => z.object({ - equals: MembershipTypeSchema.optional(), - in: MembershipTypeSchema.array().optional(), - notIn: MembershipTypeSchema.array().optional(), - not: z.union([MembershipTypeSchema, NestedEnumMembershipTypeWithAggregatesFilterObjectSchema]).optional(), - get _count(){ return NestedIntFilterObjectSchema.optional(); }, - get _min(){ return NestedEnumMembershipTypeFilterObjectSchema.optional(); }, - get _max(){ return NestedEnumMembershipTypeFilterObjectSchema.optional(); } -}).strict(); -export const NestedEnumMembershipTypeWithAggregatesFilterObjectSchema: z.ZodType = z.lazy(__makeSchema_NestedEnumMembershipTypeWithAggregatesFilter_schema) as unknown as z.ZodType; -export const NestedEnumMembershipTypeWithAggregatesFilterObjectZodSchema = z.lazy(__makeSchema_NestedEnumMembershipTypeWithAggregatesFilter_schema); - - -// File: NestedEnumMembershipSpecializationNullableWithAggregatesFilter.schema.ts -const __makeSchema_NestedEnumMembershipSpecializationNullableWithAggregatesFilter_schema = () => z.object({ - equals: MembershipSpecializationSchema.optional().nullable(), - in: MembershipSpecializationSchema.array().optional().nullable(), - notIn: MembershipSpecializationSchema.array().optional().nullable(), - not: z.union([MembershipSpecializationSchema, NestedEnumMembershipSpecializationNullableWithAggregatesFilterObjectSchema]).optional().nullable(), - get _count(){ return NestedIntNullableFilterObjectSchema.optional(); }, - get _min(){ return NestedEnumMembershipSpecializationNullableFilterObjectSchema.optional(); }, - get _max(){ return NestedEnumMembershipSpecializationNullableFilterObjectSchema.optional(); } -}).strict(); -export const NestedEnumMembershipSpecializationNullableWithAggregatesFilterObjectSchema: z.ZodType = z.lazy(__makeSchema_NestedEnumMembershipSpecializationNullableWithAggregatesFilter_schema) as unknown as z.ZodType; -export const NestedEnumMembershipSpecializationNullableWithAggregatesFilterObjectZodSchema = z.lazy(__makeSchema_NestedEnumMembershipSpecializationNullableWithAggregatesFilter_schema); - - -// File: NestedDateTimeWithAggregatesFilter.schema.ts -const __makeSchema_NestedDateTimeWithAggregatesFilter_schema = () => z.object({ - equals: z.date().optional(), - in: z.union([z.date().array(), z.iso.datetime().array()]).optional(), - notIn: z.union([z.date().array(), z.iso.datetime().array()]).optional(), - lt: z.date().optional(), - lte: z.date().optional(), - gt: z.date().optional(), - gte: z.date().optional(), - not: z.union([z.date(), NestedDateTimeWithAggregatesFilterObjectSchema]).optional(), - get _count(){ return NestedIntFilterObjectSchema.optional(); }, - get _min(){ return NestedDateTimeFilterObjectSchema.optional(); }, - get _max(){ return NestedDateTimeFilterObjectSchema.optional(); } -}).strict(); -export const NestedDateTimeWithAggregatesFilterObjectSchema: z.ZodType = z.lazy(__makeSchema_NestedDateTimeWithAggregatesFilter_schema) as unknown as z.ZodType; -export const NestedDateTimeWithAggregatesFilterObjectZodSchema = z.lazy(__makeSchema_NestedDateTimeWithAggregatesFilter_schema); - - -// File: NestedDateTimeNullableWithAggregatesFilter.schema.ts -const __makeSchema_NestedDateTimeNullableWithAggregatesFilter_schema = () => z.object({ - equals: z.date().optional().nullable(), - in: z.union([z.date().array(), z.iso.datetime().array()]).optional().nullable(), - notIn: z.union([z.date().array(), z.iso.datetime().array()]).optional().nullable(), - lt: z.date().optional(), - lte: z.date().optional(), - gt: z.date().optional(), - gte: z.date().optional(), - not: z.union([z.date(), NestedDateTimeNullableWithAggregatesFilterObjectSchema]).optional().nullable(), - get _count(){ return NestedIntNullableFilterObjectSchema.optional(); }, - get _min(){ return NestedDateTimeNullableFilterObjectSchema.optional(); }, - get _max(){ return NestedDateTimeNullableFilterObjectSchema.optional(); } -}).strict(); -export const NestedDateTimeNullableWithAggregatesFilterObjectSchema: z.ZodType = z.lazy(__makeSchema_NestedDateTimeNullableWithAggregatesFilter_schema) as unknown as z.ZodType; -export const NestedDateTimeNullableWithAggregatesFilterObjectZodSchema = z.lazy(__makeSchema_NestedDateTimeNullableWithAggregatesFilter_schema); - - -// File: NestedIntNullableWithAggregatesFilter.schema.ts -const __makeSchema_NestedIntNullableWithAggregatesFilter_schema = () => z.object({ - equals: z.number().int().optional().nullable(), - in: z.number().int().array().optional().nullable(), - notIn: z.number().int().array().optional().nullable(), - lt: z.number().int().optional(), - lte: z.number().int().optional(), - gt: z.number().int().optional(), - gte: z.number().int().optional(), - not: z.union([z.number().int(), NestedIntNullableWithAggregatesFilterObjectSchema]).optional().nullable(), - get _count(){ return NestedIntNullableFilterObjectSchema.optional(); }, - get _avg(){ return NestedFloatNullableFilterObjectSchema.optional(); }, - get _sum(){ return NestedIntNullableFilterObjectSchema.optional(); }, - get _min(){ return NestedIntNullableFilterObjectSchema.optional(); }, - get _max(){ return NestedIntNullableFilterObjectSchema.optional(); } -}).strict(); -export const NestedIntNullableWithAggregatesFilterObjectSchema: z.ZodType = z.lazy(__makeSchema_NestedIntNullableWithAggregatesFilter_schema) as unknown as z.ZodType; -export const NestedIntNullableWithAggregatesFilterObjectZodSchema = z.lazy(__makeSchema_NestedIntNullableWithAggregatesFilter_schema); - - -// File: NestedFloatNullableFilter.schema.ts -const __makeSchema_NestedFloatNullableFilter_schema = () => z.object({ - equals: z.number().optional().nullable(), - in: z.number().array().optional().nullable(), - notIn: z.number().array().optional().nullable(), - lt: z.number().optional(), - lte: z.number().optional(), - gt: z.number().optional(), - gte: z.number().optional(), - not: z.union([z.number(), NestedFloatNullableFilterObjectSchema]).optional().nullable() -}).strict(); -export const NestedFloatNullableFilterObjectSchema: z.ZodType = z.lazy(__makeSchema_NestedFloatNullableFilter_schema) as unknown as z.ZodType; -export const NestedFloatNullableFilterObjectZodSchema = z.lazy(__makeSchema_NestedFloatNullableFilter_schema); - - -// File: NestedStringNullableFilter.schema.ts -const __makeSchema_NestedStringNullableFilter_schema = () => z.object({ - equals: z.string().optional().nullable(), - in: z.string().array().optional().nullable(), - notIn: z.string().array().optional().nullable(), - lt: z.string().optional(), - lte: z.string().optional(), - gt: z.string().optional(), - gte: z.string().optional(), - contains: z.string().optional(), - startsWith: z.string().optional(), - endsWith: z.string().optional(), - not: z.union([z.string(), NestedStringNullableFilterObjectSchema]).optional().nullable() -}).strict(); -export const NestedStringNullableFilterObjectSchema: z.ZodType = z.lazy(__makeSchema_NestedStringNullableFilter_schema) as unknown as z.ZodType; -export const NestedStringNullableFilterObjectZodSchema = z.lazy(__makeSchema_NestedStringNullableFilter_schema); - - -// File: NestedEnumGenderFilter.schema.ts -const __makeSchema_NestedEnumGenderFilter_schema = () => z.object({ - equals: GenderSchema.optional(), - in: GenderSchema.array().optional(), - notIn: GenderSchema.array().optional(), - not: z.union([GenderSchema, NestedEnumGenderFilterObjectSchema]).optional() -}).strict(); -export const NestedEnumGenderFilterObjectSchema: z.ZodType = z.lazy(__makeSchema_NestedEnumGenderFilter_schema) as unknown as z.ZodType; -export const NestedEnumGenderFilterObjectZodSchema = z.lazy(__makeSchema_NestedEnumGenderFilter_schema); - - -// File: NestedStringNullableWithAggregatesFilter.schema.ts -const __makeSchema_NestedStringNullableWithAggregatesFilter_schema = () => z.object({ - equals: z.string().optional().nullable(), - in: z.string().array().optional().nullable(), - notIn: z.string().array().optional().nullable(), - lt: z.string().optional(), - lte: z.string().optional(), - gt: z.string().optional(), - gte: z.string().optional(), - contains: z.string().optional(), - startsWith: z.string().optional(), - endsWith: z.string().optional(), - not: z.union([z.string(), NestedStringNullableWithAggregatesFilterObjectSchema]).optional().nullable(), - get _count(){ return NestedIntNullableFilterObjectSchema.optional(); }, - get _min(){ return NestedStringNullableFilterObjectSchema.optional(); }, - get _max(){ return NestedStringNullableFilterObjectSchema.optional(); } -}).strict(); -export const NestedStringNullableWithAggregatesFilterObjectSchema: z.ZodType = z.lazy(__makeSchema_NestedStringNullableWithAggregatesFilter_schema) as unknown as z.ZodType; -export const NestedStringNullableWithAggregatesFilterObjectZodSchema = z.lazy(__makeSchema_NestedStringNullableWithAggregatesFilter_schema); - - -// File: NestedEnumGenderWithAggregatesFilter.schema.ts -const __makeSchema_NestedEnumGenderWithAggregatesFilter_schema = () => z.object({ - equals: GenderSchema.optional(), - in: GenderSchema.array().optional(), - notIn: GenderSchema.array().optional(), - not: z.union([GenderSchema, NestedEnumGenderWithAggregatesFilterObjectSchema]).optional(), - get _count(){ return NestedIntFilterObjectSchema.optional(); }, - get _min(){ return NestedEnumGenderFilterObjectSchema.optional(); }, - get _max(){ return NestedEnumGenderFilterObjectSchema.optional(); } -}).strict(); -export const NestedEnumGenderWithAggregatesFilterObjectSchema: z.ZodType = z.lazy(__makeSchema_NestedEnumGenderWithAggregatesFilter_schema) as unknown as z.ZodType; -export const NestedEnumGenderWithAggregatesFilterObjectZodSchema = z.lazy(__makeSchema_NestedEnumGenderWithAggregatesFilter_schema); - - -// File: NestedBoolFilter.schema.ts -const __makeSchema_NestedBoolFilter_schema = () => z.object({ - equals: z.boolean().optional(), - not: z.union([z.boolean(), NestedBoolFilterObjectSchema]).optional() -}).strict(); -export const NestedBoolFilterObjectSchema: z.ZodType = z.lazy(__makeSchema_NestedBoolFilter_schema) as unknown as z.ZodType; -export const NestedBoolFilterObjectZodSchema = z.lazy(__makeSchema_NestedBoolFilter_schema); - - -// File: NestedEnumGroupMemberVisibilityFilter.schema.ts -const __makeSchema_NestedEnumGroupMemberVisibilityFilter_schema = () => z.object({ - equals: GroupMemberVisibilitySchema.optional(), - in: GroupMemberVisibilitySchema.array().optional(), - notIn: GroupMemberVisibilitySchema.array().optional(), - not: z.union([GroupMemberVisibilitySchema, NestedEnumGroupMemberVisibilityFilterObjectSchema]).optional() -}).strict(); -export const NestedEnumGroupMemberVisibilityFilterObjectSchema: z.ZodType = z.lazy(__makeSchema_NestedEnumGroupMemberVisibilityFilter_schema) as unknown as z.ZodType; -export const NestedEnumGroupMemberVisibilityFilterObjectZodSchema = z.lazy(__makeSchema_NestedEnumGroupMemberVisibilityFilter_schema); - - -// File: NestedEnumGroupRecruitmentMethodFilter.schema.ts -const __makeSchema_NestedEnumGroupRecruitmentMethodFilter_schema = () => z.object({ - equals: GroupRecruitmentMethodSchema.optional(), - in: GroupRecruitmentMethodSchema.array().optional(), - notIn: GroupRecruitmentMethodSchema.array().optional(), - not: z.union([GroupRecruitmentMethodSchema, NestedEnumGroupRecruitmentMethodFilterObjectSchema]).optional() -}).strict(); -export const NestedEnumGroupRecruitmentMethodFilterObjectSchema: z.ZodType = z.lazy(__makeSchema_NestedEnumGroupRecruitmentMethodFilter_schema) as unknown as z.ZodType; -export const NestedEnumGroupRecruitmentMethodFilterObjectZodSchema = z.lazy(__makeSchema_NestedEnumGroupRecruitmentMethodFilter_schema); - - -// File: NestedEnumGroupTypeFilter.schema.ts -const __makeSchema_NestedEnumGroupTypeFilter_schema = () => z.object({ - equals: GroupTypeSchema.optional(), - in: GroupTypeSchema.array().optional(), - notIn: GroupTypeSchema.array().optional(), - not: z.union([GroupTypeSchema, NestedEnumGroupTypeFilterObjectSchema]).optional() -}).strict(); -export const NestedEnumGroupTypeFilterObjectSchema: z.ZodType = z.lazy(__makeSchema_NestedEnumGroupTypeFilter_schema) as unknown as z.ZodType; -export const NestedEnumGroupTypeFilterObjectZodSchema = z.lazy(__makeSchema_NestedEnumGroupTypeFilter_schema); - - -// File: NestedBoolWithAggregatesFilter.schema.ts -const __makeSchema_NestedBoolWithAggregatesFilter_schema = () => z.object({ - equals: z.boolean().optional(), - not: z.union([z.boolean(), NestedBoolWithAggregatesFilterObjectSchema]).optional(), - get _count(){ return NestedIntFilterObjectSchema.optional(); }, - get _min(){ return NestedBoolFilterObjectSchema.optional(); }, - get _max(){ return NestedBoolFilterObjectSchema.optional(); } -}).strict(); -export const NestedBoolWithAggregatesFilterObjectSchema: z.ZodType = z.lazy(__makeSchema_NestedBoolWithAggregatesFilter_schema) as unknown as z.ZodType; -export const NestedBoolWithAggregatesFilterObjectZodSchema = z.lazy(__makeSchema_NestedBoolWithAggregatesFilter_schema); - - -// File: NestedEnumGroupMemberVisibilityWithAggregatesFilter.schema.ts -const __makeSchema_NestedEnumGroupMemberVisibilityWithAggregatesFilter_schema = () => z.object({ - equals: GroupMemberVisibilitySchema.optional(), - in: GroupMemberVisibilitySchema.array().optional(), - notIn: GroupMemberVisibilitySchema.array().optional(), - not: z.union([GroupMemberVisibilitySchema, NestedEnumGroupMemberVisibilityWithAggregatesFilterObjectSchema]).optional(), - get _count(){ return NestedIntFilterObjectSchema.optional(); }, - get _min(){ return NestedEnumGroupMemberVisibilityFilterObjectSchema.optional(); }, - get _max(){ return NestedEnumGroupMemberVisibilityFilterObjectSchema.optional(); } -}).strict(); -export const NestedEnumGroupMemberVisibilityWithAggregatesFilterObjectSchema: z.ZodType = z.lazy(__makeSchema_NestedEnumGroupMemberVisibilityWithAggregatesFilter_schema) as unknown as z.ZodType; -export const NestedEnumGroupMemberVisibilityWithAggregatesFilterObjectZodSchema = z.lazy(__makeSchema_NestedEnumGroupMemberVisibilityWithAggregatesFilter_schema); - - -// File: NestedEnumGroupRecruitmentMethodWithAggregatesFilter.schema.ts -const __makeSchema_NestedEnumGroupRecruitmentMethodWithAggregatesFilter_schema = () => z.object({ - equals: GroupRecruitmentMethodSchema.optional(), - in: GroupRecruitmentMethodSchema.array().optional(), - notIn: GroupRecruitmentMethodSchema.array().optional(), - not: z.union([GroupRecruitmentMethodSchema, NestedEnumGroupRecruitmentMethodWithAggregatesFilterObjectSchema]).optional(), - get _count(){ return NestedIntFilterObjectSchema.optional(); }, - get _min(){ return NestedEnumGroupRecruitmentMethodFilterObjectSchema.optional(); }, - get _max(){ return NestedEnumGroupRecruitmentMethodFilterObjectSchema.optional(); } -}).strict(); -export const NestedEnumGroupRecruitmentMethodWithAggregatesFilterObjectSchema: z.ZodType = z.lazy(__makeSchema_NestedEnumGroupRecruitmentMethodWithAggregatesFilter_schema) as unknown as z.ZodType; -export const NestedEnumGroupRecruitmentMethodWithAggregatesFilterObjectZodSchema = z.lazy(__makeSchema_NestedEnumGroupRecruitmentMethodWithAggregatesFilter_schema); - - -// File: NestedEnumGroupTypeWithAggregatesFilter.schema.ts -const __makeSchema_NestedEnumGroupTypeWithAggregatesFilter_schema = () => z.object({ - equals: GroupTypeSchema.optional(), - in: GroupTypeSchema.array().optional(), - notIn: GroupTypeSchema.array().optional(), - not: z.union([GroupTypeSchema, NestedEnumGroupTypeWithAggregatesFilterObjectSchema]).optional(), - get _count(){ return NestedIntFilterObjectSchema.optional(); }, - get _min(){ return NestedEnumGroupTypeFilterObjectSchema.optional(); }, - get _max(){ return NestedEnumGroupTypeFilterObjectSchema.optional(); } -}).strict(); -export const NestedEnumGroupTypeWithAggregatesFilterObjectSchema: z.ZodType = z.lazy(__makeSchema_NestedEnumGroupTypeWithAggregatesFilter_schema) as unknown as z.ZodType; -export const NestedEnumGroupTypeWithAggregatesFilterObjectZodSchema = z.lazy(__makeSchema_NestedEnumGroupTypeWithAggregatesFilter_schema); - - -// File: NestedEnumGroupRoleTypeFilter.schema.ts -const __makeSchema_NestedEnumGroupRoleTypeFilter_schema = () => z.object({ - equals: GroupRoleTypeSchema.optional(), - in: GroupRoleTypeSchema.array().optional(), - notIn: GroupRoleTypeSchema.array().optional(), - not: z.union([GroupRoleTypeSchema, NestedEnumGroupRoleTypeFilterObjectSchema]).optional() -}).strict(); -export const NestedEnumGroupRoleTypeFilterObjectSchema: z.ZodType = z.lazy(__makeSchema_NestedEnumGroupRoleTypeFilter_schema) as unknown as z.ZodType; -export const NestedEnumGroupRoleTypeFilterObjectZodSchema = z.lazy(__makeSchema_NestedEnumGroupRoleTypeFilter_schema); - - -// File: NestedEnumGroupRoleTypeWithAggregatesFilter.schema.ts -const __makeSchema_NestedEnumGroupRoleTypeWithAggregatesFilter_schema = () => z.object({ - equals: GroupRoleTypeSchema.optional(), - in: GroupRoleTypeSchema.array().optional(), - notIn: GroupRoleTypeSchema.array().optional(), - not: z.union([GroupRoleTypeSchema, NestedEnumGroupRoleTypeWithAggregatesFilterObjectSchema]).optional(), - get _count(){ return NestedIntFilterObjectSchema.optional(); }, - get _min(){ return NestedEnumGroupRoleTypeFilterObjectSchema.optional(); }, - get _max(){ return NestedEnumGroupRoleTypeFilterObjectSchema.optional(); } -}).strict(); -export const NestedEnumGroupRoleTypeWithAggregatesFilterObjectSchema: z.ZodType = z.lazy(__makeSchema_NestedEnumGroupRoleTypeWithAggregatesFilter_schema) as unknown as z.ZodType; -export const NestedEnumGroupRoleTypeWithAggregatesFilterObjectZodSchema = z.lazy(__makeSchema_NestedEnumGroupRoleTypeWithAggregatesFilter_schema); - - -// File: NestedJsonFilter.schema.ts -const __makeSchema_NestedJsonFilter_schema = () => z.object({ - equals: jsonSchema.optional(), - path: z.string().array().optional(), - mode: QueryModeSchema.optional(), - string_contains: z.string().optional(), - string_starts_with: z.string().optional(), - string_ends_with: z.string().optional(), - array_starts_with: jsonSchema.optional().nullable(), - array_ends_with: jsonSchema.optional().nullable(), - array_contains: jsonSchema.optional().nullable(), - lt: jsonSchema.optional(), - lte: jsonSchema.optional(), - gt: jsonSchema.optional(), - gte: jsonSchema.optional(), - not: jsonSchema.optional() -}).strict(); -export const NestedJsonFilterObjectSchema: z.ZodType = z.lazy(__makeSchema_NestedJsonFilter_schema) as unknown as z.ZodType; -export const NestedJsonFilterObjectZodSchema = z.lazy(__makeSchema_NestedJsonFilter_schema); - - -// File: NestedIntWithAggregatesFilter.schema.ts -const __makeSchema_NestedIntWithAggregatesFilter_schema = () => z.object({ - equals: z.number().int().optional(), - in: z.number().int().array().optional(), - notIn: z.number().int().array().optional(), - lt: z.number().int().optional(), - lte: z.number().int().optional(), - gt: z.number().int().optional(), - gte: z.number().int().optional(), - not: z.union([z.number().int(), NestedIntWithAggregatesFilterObjectSchema]).optional(), - get _count(){ return NestedIntFilterObjectSchema.optional(); }, - get _avg(){ return NestedFloatFilterObjectSchema.optional(); }, - get _sum(){ return NestedIntFilterObjectSchema.optional(); }, - get _min(){ return NestedIntFilterObjectSchema.optional(); }, - get _max(){ return NestedIntFilterObjectSchema.optional(); } -}).strict(); -export const NestedIntWithAggregatesFilterObjectSchema: z.ZodType = z.lazy(__makeSchema_NestedIntWithAggregatesFilter_schema) as unknown as z.ZodType; -export const NestedIntWithAggregatesFilterObjectZodSchema = z.lazy(__makeSchema_NestedIntWithAggregatesFilter_schema); - - -// File: NestedFloatFilter.schema.ts -const __makeSchema_NestedFloatFilter_schema = () => z.object({ - equals: z.number().optional(), - in: z.number().array().optional(), - notIn: z.number().array().optional(), - lt: z.number().optional(), - lte: z.number().optional(), - gt: z.number().optional(), - gte: z.number().optional(), - not: z.union([z.number(), NestedFloatFilterObjectSchema]).optional() -}).strict(); -export const NestedFloatFilterObjectSchema: z.ZodType = z.lazy(__makeSchema_NestedFloatFilter_schema) as unknown as z.ZodType; -export const NestedFloatFilterObjectZodSchema = z.lazy(__makeSchema_NestedFloatFilter_schema); - - -// File: NestedEnumEventStatusFilter.schema.ts -const __makeSchema_NestedEnumEventStatusFilter_schema = () => z.object({ - equals: EventStatusSchema.optional(), - in: EventStatusSchema.array().optional(), - notIn: EventStatusSchema.array().optional(), - not: z.union([EventStatusSchema, NestedEnumEventStatusFilterObjectSchema]).optional() -}).strict(); -export const NestedEnumEventStatusFilterObjectSchema: z.ZodType = z.lazy(__makeSchema_NestedEnumEventStatusFilter_schema) as unknown as z.ZodType; -export const NestedEnumEventStatusFilterObjectZodSchema = z.lazy(__makeSchema_NestedEnumEventStatusFilter_schema); - - -// File: NestedEnumEventTypeFilter.schema.ts -const __makeSchema_NestedEnumEventTypeFilter_schema = () => z.object({ - equals: EventTypeSchema.optional(), - in: EventTypeSchema.array().optional(), - notIn: EventTypeSchema.array().optional(), - not: z.union([EventTypeSchema, NestedEnumEventTypeFilterObjectSchema]).optional() -}).strict(); -export const NestedEnumEventTypeFilterObjectSchema: z.ZodType = z.lazy(__makeSchema_NestedEnumEventTypeFilter_schema) as unknown as z.ZodType; -export const NestedEnumEventTypeFilterObjectZodSchema = z.lazy(__makeSchema_NestedEnumEventTypeFilter_schema); - - -// File: NestedEnumEventStatusWithAggregatesFilter.schema.ts -const __makeSchema_NestedEnumEventStatusWithAggregatesFilter_schema = () => z.object({ - equals: EventStatusSchema.optional(), - in: EventStatusSchema.array().optional(), - notIn: EventStatusSchema.array().optional(), - not: z.union([EventStatusSchema, NestedEnumEventStatusWithAggregatesFilterObjectSchema]).optional(), - get _count(){ return NestedIntFilterObjectSchema.optional(); }, - get _min(){ return NestedEnumEventStatusFilterObjectSchema.optional(); }, - get _max(){ return NestedEnumEventStatusFilterObjectSchema.optional(); } -}).strict(); -export const NestedEnumEventStatusWithAggregatesFilterObjectSchema: z.ZodType = z.lazy(__makeSchema_NestedEnumEventStatusWithAggregatesFilter_schema) as unknown as z.ZodType; -export const NestedEnumEventStatusWithAggregatesFilterObjectZodSchema = z.lazy(__makeSchema_NestedEnumEventStatusWithAggregatesFilter_schema); - - -// File: NestedEnumEventTypeWithAggregatesFilter.schema.ts -const __makeSchema_NestedEnumEventTypeWithAggregatesFilter_schema = () => z.object({ - equals: EventTypeSchema.optional(), - in: EventTypeSchema.array().optional(), - notIn: EventTypeSchema.array().optional(), - not: z.union([EventTypeSchema, NestedEnumEventTypeWithAggregatesFilterObjectSchema]).optional(), - get _count(){ return NestedIntFilterObjectSchema.optional(); }, - get _min(){ return NestedEnumEventTypeFilterObjectSchema.optional(); }, - get _max(){ return NestedEnumEventTypeFilterObjectSchema.optional(); } -}).strict(); -export const NestedEnumEventTypeWithAggregatesFilterObjectSchema: z.ZodType = z.lazy(__makeSchema_NestedEnumEventTypeWithAggregatesFilter_schema) as unknown as z.ZodType; -export const NestedEnumEventTypeWithAggregatesFilterObjectZodSchema = z.lazy(__makeSchema_NestedEnumEventTypeWithAggregatesFilter_schema); - - -// File: NestedEnumMarkTypeFilter.schema.ts -const __makeSchema_NestedEnumMarkTypeFilter_schema = () => z.object({ - equals: MarkTypeSchema.optional(), - in: MarkTypeSchema.array().optional(), - notIn: MarkTypeSchema.array().optional(), - not: z.union([MarkTypeSchema, NestedEnumMarkTypeFilterObjectSchema]).optional() -}).strict(); -export const NestedEnumMarkTypeFilterObjectSchema: z.ZodType = z.lazy(__makeSchema_NestedEnumMarkTypeFilter_schema) as unknown as z.ZodType; -export const NestedEnumMarkTypeFilterObjectZodSchema = z.lazy(__makeSchema_NestedEnumMarkTypeFilter_schema); - - -// File: NestedEnumMarkTypeWithAggregatesFilter.schema.ts -const __makeSchema_NestedEnumMarkTypeWithAggregatesFilter_schema = () => z.object({ - equals: MarkTypeSchema.optional(), - in: MarkTypeSchema.array().optional(), - notIn: MarkTypeSchema.array().optional(), - not: z.union([MarkTypeSchema, NestedEnumMarkTypeWithAggregatesFilterObjectSchema]).optional(), - get _count(){ return NestedIntFilterObjectSchema.optional(); }, - get _min(){ return NestedEnumMarkTypeFilterObjectSchema.optional(); }, - get _max(){ return NestedEnumMarkTypeFilterObjectSchema.optional(); } -}).strict(); -export const NestedEnumMarkTypeWithAggregatesFilterObjectSchema: z.ZodType = z.lazy(__makeSchema_NestedEnumMarkTypeWithAggregatesFilter_schema) as unknown as z.ZodType; -export const NestedEnumMarkTypeWithAggregatesFilterObjectZodSchema = z.lazy(__makeSchema_NestedEnumMarkTypeWithAggregatesFilter_schema); - - -// File: NestedEnumEmploymentTypeFilter.schema.ts -const __makeSchema_NestedEnumEmploymentTypeFilter_schema = () => z.object({ - equals: EmploymentTypeSchema.optional(), - in: EmploymentTypeSchema.array().optional(), - notIn: EmploymentTypeSchema.array().optional(), - not: z.union([EmploymentTypeSchema, NestedEnumEmploymentTypeFilterObjectSchema]).optional() -}).strict(); -export const NestedEnumEmploymentTypeFilterObjectSchema: z.ZodType = z.lazy(__makeSchema_NestedEnumEmploymentTypeFilter_schema) as unknown as z.ZodType; -export const NestedEnumEmploymentTypeFilterObjectZodSchema = z.lazy(__makeSchema_NestedEnumEmploymentTypeFilter_schema); - - -// File: NestedEnumEmploymentTypeWithAggregatesFilter.schema.ts -const __makeSchema_NestedEnumEmploymentTypeWithAggregatesFilter_schema = () => z.object({ - equals: EmploymentTypeSchema.optional(), - in: EmploymentTypeSchema.array().optional(), - notIn: EmploymentTypeSchema.array().optional(), - not: z.union([EmploymentTypeSchema, NestedEnumEmploymentTypeWithAggregatesFilterObjectSchema]).optional(), - get _count(){ return NestedIntFilterObjectSchema.optional(); }, - get _min(){ return NestedEnumEmploymentTypeFilterObjectSchema.optional(); }, - get _max(){ return NestedEnumEmploymentTypeFilterObjectSchema.optional(); } -}).strict(); -export const NestedEnumEmploymentTypeWithAggregatesFilterObjectSchema: z.ZodType = z.lazy(__makeSchema_NestedEnumEmploymentTypeWithAggregatesFilter_schema) as unknown as z.ZodType; -export const NestedEnumEmploymentTypeWithAggregatesFilterObjectZodSchema = z.lazy(__makeSchema_NestedEnumEmploymentTypeWithAggregatesFilter_schema); - - -// File: NestedEnumTaskTypeFilter.schema.ts -const __makeSchema_NestedEnumTaskTypeFilter_schema = () => z.object({ - equals: TaskTypeSchema.optional(), - in: TaskTypeSchema.array().optional(), - notIn: TaskTypeSchema.array().optional(), - not: z.union([TaskTypeSchema, NestedEnumTaskTypeFilterObjectSchema]).optional() -}).strict(); -export const NestedEnumTaskTypeFilterObjectSchema: z.ZodType = z.lazy(__makeSchema_NestedEnumTaskTypeFilter_schema) as unknown as z.ZodType; -export const NestedEnumTaskTypeFilterObjectZodSchema = z.lazy(__makeSchema_NestedEnumTaskTypeFilter_schema); - - -// File: NestedEnumTaskStatusFilter.schema.ts -const __makeSchema_NestedEnumTaskStatusFilter_schema = () => z.object({ - equals: TaskStatusSchema.optional(), - in: TaskStatusSchema.array().optional(), - notIn: TaskStatusSchema.array().optional(), - not: z.union([TaskStatusSchema, NestedEnumTaskStatusFilterObjectSchema]).optional() -}).strict(); -export const NestedEnumTaskStatusFilterObjectSchema: z.ZodType = z.lazy(__makeSchema_NestedEnumTaskStatusFilter_schema) as unknown as z.ZodType; -export const NestedEnumTaskStatusFilterObjectZodSchema = z.lazy(__makeSchema_NestedEnumTaskStatusFilter_schema); - - -// File: NestedEnumTaskTypeWithAggregatesFilter.schema.ts -const __makeSchema_NestedEnumTaskTypeWithAggregatesFilter_schema = () => z.object({ - equals: TaskTypeSchema.optional(), - in: TaskTypeSchema.array().optional(), - notIn: TaskTypeSchema.array().optional(), - not: z.union([TaskTypeSchema, NestedEnumTaskTypeWithAggregatesFilterObjectSchema]).optional(), - get _count(){ return NestedIntFilterObjectSchema.optional(); }, - get _min(){ return NestedEnumTaskTypeFilterObjectSchema.optional(); }, - get _max(){ return NestedEnumTaskTypeFilterObjectSchema.optional(); } -}).strict(); -export const NestedEnumTaskTypeWithAggregatesFilterObjectSchema: z.ZodType = z.lazy(__makeSchema_NestedEnumTaskTypeWithAggregatesFilter_schema) as unknown as z.ZodType; -export const NestedEnumTaskTypeWithAggregatesFilterObjectZodSchema = z.lazy(__makeSchema_NestedEnumTaskTypeWithAggregatesFilter_schema); - - -// File: NestedEnumTaskStatusWithAggregatesFilter.schema.ts -const __makeSchema_NestedEnumTaskStatusWithAggregatesFilter_schema = () => z.object({ - equals: TaskStatusSchema.optional(), - in: TaskStatusSchema.array().optional(), - notIn: TaskStatusSchema.array().optional(), - not: z.union([TaskStatusSchema, NestedEnumTaskStatusWithAggregatesFilterObjectSchema]).optional(), - get _count(){ return NestedIntFilterObjectSchema.optional(); }, - get _min(){ return NestedEnumTaskStatusFilterObjectSchema.optional(); }, - get _max(){ return NestedEnumTaskStatusFilterObjectSchema.optional(); } -}).strict(); -export const NestedEnumTaskStatusWithAggregatesFilterObjectSchema: z.ZodType = z.lazy(__makeSchema_NestedEnumTaskStatusWithAggregatesFilter_schema) as unknown as z.ZodType; -export const NestedEnumTaskStatusWithAggregatesFilterObjectZodSchema = z.lazy(__makeSchema_NestedEnumTaskStatusWithAggregatesFilter_schema); - - -// File: NestedEnumFeedbackQuestionTypeFilter.schema.ts -const __makeSchema_NestedEnumFeedbackQuestionTypeFilter_schema = () => z.object({ - equals: FeedbackQuestionTypeSchema.optional(), - in: FeedbackQuestionTypeSchema.array().optional(), - notIn: FeedbackQuestionTypeSchema.array().optional(), - not: z.union([FeedbackQuestionTypeSchema, NestedEnumFeedbackQuestionTypeFilterObjectSchema]).optional() -}).strict(); -export const NestedEnumFeedbackQuestionTypeFilterObjectSchema: z.ZodType = z.lazy(__makeSchema_NestedEnumFeedbackQuestionTypeFilter_schema) as unknown as z.ZodType; -export const NestedEnumFeedbackQuestionTypeFilterObjectZodSchema = z.lazy(__makeSchema_NestedEnumFeedbackQuestionTypeFilter_schema); - - -// File: NestedEnumFeedbackQuestionTypeWithAggregatesFilter.schema.ts -const __makeSchema_NestedEnumFeedbackQuestionTypeWithAggregatesFilter_schema = () => z.object({ - equals: FeedbackQuestionTypeSchema.optional(), - in: FeedbackQuestionTypeSchema.array().optional(), - notIn: FeedbackQuestionTypeSchema.array().optional(), - not: z.union([FeedbackQuestionTypeSchema, NestedEnumFeedbackQuestionTypeWithAggregatesFilterObjectSchema]).optional(), - get _count(){ return NestedIntFilterObjectSchema.optional(); }, - get _min(){ return NestedEnumFeedbackQuestionTypeFilterObjectSchema.optional(); }, - get _max(){ return NestedEnumFeedbackQuestionTypeFilterObjectSchema.optional(); } -}).strict(); -export const NestedEnumFeedbackQuestionTypeWithAggregatesFilterObjectSchema: z.ZodType = z.lazy(__makeSchema_NestedEnumFeedbackQuestionTypeWithAggregatesFilter_schema) as unknown as z.ZodType; -export const NestedEnumFeedbackQuestionTypeWithAggregatesFilterObjectZodSchema = z.lazy(__makeSchema_NestedEnumFeedbackQuestionTypeWithAggregatesFilter_schema); - - -// File: NestedJsonNullableFilter.schema.ts -const __makeSchema_NestedJsonNullableFilter_schema = () => z.object({ - equals: jsonSchema.optional(), - path: z.string().array().optional(), - mode: QueryModeSchema.optional(), - string_contains: z.string().optional(), - string_starts_with: z.string().optional(), - string_ends_with: z.string().optional(), - array_starts_with: jsonSchema.optional().nullable(), - array_ends_with: jsonSchema.optional().nullable(), - array_contains: jsonSchema.optional().nullable(), - lt: jsonSchema.optional(), - lte: jsonSchema.optional(), - gt: jsonSchema.optional(), - gte: jsonSchema.optional(), - not: jsonSchema.optional() -}).strict(); -export const NestedJsonNullableFilterObjectSchema: z.ZodType = z.lazy(__makeSchema_NestedJsonNullableFilter_schema) as unknown as z.ZodType; -export const NestedJsonNullableFilterObjectZodSchema = z.lazy(__makeSchema_NestedJsonNullableFilter_schema); - - -// File: NestedBigIntFilter.schema.ts -const __makeSchema_NestedBigIntFilter_schema = () => z.object({ - equals: z.bigint().optional(), - in: z.bigint().array().optional(), - notIn: z.bigint().array().optional(), - lt: z.bigint().optional(), - lte: z.bigint().optional(), - gt: z.bigint().optional(), - gte: z.bigint().optional(), - not: z.union([z.bigint(), NestedBigIntFilterObjectSchema]).optional() -}).strict(); -export const NestedBigIntFilterObjectSchema: z.ZodType = z.lazy(__makeSchema_NestedBigIntFilter_schema) as unknown as z.ZodType; -export const NestedBigIntFilterObjectZodSchema = z.lazy(__makeSchema_NestedBigIntFilter_schema); - - -// File: NestedBigIntWithAggregatesFilter.schema.ts -const __makeSchema_NestedBigIntWithAggregatesFilter_schema = () => z.object({ - equals: z.bigint().optional(), - in: z.bigint().array().optional(), - notIn: z.bigint().array().optional(), - lt: z.bigint().optional(), - lte: z.bigint().optional(), - gt: z.bigint().optional(), - gte: z.bigint().optional(), - not: z.union([z.bigint(), NestedBigIntWithAggregatesFilterObjectSchema]).optional(), - get _count(){ return NestedIntFilterObjectSchema.optional(); }, - get _avg(){ return NestedFloatFilterObjectSchema.optional(); }, - get _sum(){ return NestedBigIntFilterObjectSchema.optional(); }, - get _min(){ return NestedBigIntFilterObjectSchema.optional(); }, - get _max(){ return NestedBigIntFilterObjectSchema.optional(); } -}).strict(); -export const NestedBigIntWithAggregatesFilterObjectSchema: z.ZodType = z.lazy(__makeSchema_NestedBigIntWithAggregatesFilter_schema) as unknown as z.ZodType; -export const NestedBigIntWithAggregatesFilterObjectZodSchema = z.lazy(__makeSchema_NestedBigIntWithAggregatesFilter_schema); - - -// File: NestedEnumDeregisterReasonTypeFilter.schema.ts -const __makeSchema_NestedEnumDeregisterReasonTypeFilter_schema = () => z.object({ - equals: DeregisterReasonTypeSchema.optional(), - in: DeregisterReasonTypeSchema.array().optional(), - notIn: DeregisterReasonTypeSchema.array().optional(), - not: z.union([DeregisterReasonTypeSchema, NestedEnumDeregisterReasonTypeFilterObjectSchema]).optional() -}).strict(); -export const NestedEnumDeregisterReasonTypeFilterObjectSchema: z.ZodType = z.lazy(__makeSchema_NestedEnumDeregisterReasonTypeFilter_schema) as unknown as z.ZodType; -export const NestedEnumDeregisterReasonTypeFilterObjectZodSchema = z.lazy(__makeSchema_NestedEnumDeregisterReasonTypeFilter_schema); - - -// File: NestedEnumDeregisterReasonTypeWithAggregatesFilter.schema.ts -const __makeSchema_NestedEnumDeregisterReasonTypeWithAggregatesFilter_schema = () => z.object({ - equals: DeregisterReasonTypeSchema.optional(), - in: DeregisterReasonTypeSchema.array().optional(), - notIn: DeregisterReasonTypeSchema.array().optional(), - not: z.union([DeregisterReasonTypeSchema, NestedEnumDeregisterReasonTypeWithAggregatesFilterObjectSchema]).optional(), - get _count(){ return NestedIntFilterObjectSchema.optional(); }, - get _min(){ return NestedEnumDeregisterReasonTypeFilterObjectSchema.optional(); }, - get _max(){ return NestedEnumDeregisterReasonTypeFilterObjectSchema.optional(); } -}).strict(); -export const NestedEnumDeregisterReasonTypeWithAggregatesFilterObjectSchema: z.ZodType = z.lazy(__makeSchema_NestedEnumDeregisterReasonTypeWithAggregatesFilter_schema) as unknown as z.ZodType; -export const NestedEnumDeregisterReasonTypeWithAggregatesFilterObjectZodSchema = z.lazy(__makeSchema_NestedEnumDeregisterReasonTypeWithAggregatesFilter_schema); - - -// File: NestedEnumNotificationTypeFilter.schema.ts -const __makeSchema_NestedEnumNotificationTypeFilter_schema = () => z.object({ - equals: NotificationTypeSchema.optional(), - in: NotificationTypeSchema.array().optional(), - notIn: NotificationTypeSchema.array().optional(), - not: z.union([NotificationTypeSchema, NestedEnumNotificationTypeFilterObjectSchema]).optional() -}).strict(); -export const NestedEnumNotificationTypeFilterObjectSchema: z.ZodType = z.lazy(__makeSchema_NestedEnumNotificationTypeFilter_schema) as unknown as z.ZodType; -export const NestedEnumNotificationTypeFilterObjectZodSchema = z.lazy(__makeSchema_NestedEnumNotificationTypeFilter_schema); - - -// File: NestedEnumNotificationPayloadTypeFilter.schema.ts -const __makeSchema_NestedEnumNotificationPayloadTypeFilter_schema = () => z.object({ - equals: NotificationPayloadTypeSchema.optional(), - in: NotificationPayloadTypeSchema.array().optional(), - notIn: NotificationPayloadTypeSchema.array().optional(), - not: z.union([NotificationPayloadTypeSchema, NestedEnumNotificationPayloadTypeFilterObjectSchema]).optional() -}).strict(); -export const NestedEnumNotificationPayloadTypeFilterObjectSchema: z.ZodType = z.lazy(__makeSchema_NestedEnumNotificationPayloadTypeFilter_schema) as unknown as z.ZodType; -export const NestedEnumNotificationPayloadTypeFilterObjectZodSchema = z.lazy(__makeSchema_NestedEnumNotificationPayloadTypeFilter_schema); - - -// File: NestedEnumNotificationTypeWithAggregatesFilter.schema.ts -const __makeSchema_NestedEnumNotificationTypeWithAggregatesFilter_schema = () => z.object({ - equals: NotificationTypeSchema.optional(), - in: NotificationTypeSchema.array().optional(), - notIn: NotificationTypeSchema.array().optional(), - not: z.union([NotificationTypeSchema, NestedEnumNotificationTypeWithAggregatesFilterObjectSchema]).optional(), - get _count(){ return NestedIntFilterObjectSchema.optional(); }, - get _min(){ return NestedEnumNotificationTypeFilterObjectSchema.optional(); }, - get _max(){ return NestedEnumNotificationTypeFilterObjectSchema.optional(); } -}).strict(); -export const NestedEnumNotificationTypeWithAggregatesFilterObjectSchema: z.ZodType = z.lazy(__makeSchema_NestedEnumNotificationTypeWithAggregatesFilter_schema) as unknown as z.ZodType; -export const NestedEnumNotificationTypeWithAggregatesFilterObjectZodSchema = z.lazy(__makeSchema_NestedEnumNotificationTypeWithAggregatesFilter_schema); - - -// File: NestedEnumNotificationPayloadTypeWithAggregatesFilter.schema.ts -const __makeSchema_NestedEnumNotificationPayloadTypeWithAggregatesFilter_schema = () => z.object({ - equals: NotificationPayloadTypeSchema.optional(), - in: NotificationPayloadTypeSchema.array().optional(), - notIn: NotificationPayloadTypeSchema.array().optional(), - not: z.union([NotificationPayloadTypeSchema, NestedEnumNotificationPayloadTypeWithAggregatesFilterObjectSchema]).optional(), - get _count(){ return NestedIntFilterObjectSchema.optional(); }, - get _min(){ return NestedEnumNotificationPayloadTypeFilterObjectSchema.optional(); }, - get _max(){ return NestedEnumNotificationPayloadTypeFilterObjectSchema.optional(); } -}).strict(); -export const NestedEnumNotificationPayloadTypeWithAggregatesFilterObjectSchema: z.ZodType = z.lazy(__makeSchema_NestedEnumNotificationPayloadTypeWithAggregatesFilter_schema) as unknown as z.ZodType; -export const NestedEnumNotificationPayloadTypeWithAggregatesFilterObjectZodSchema = z.lazy(__makeSchema_NestedEnumNotificationPayloadTypeWithAggregatesFilter_schema); - - -// File: NestedEnumContestResultTypeFilter.schema.ts -const __makeSchema_NestedEnumContestResultTypeFilter_schema = () => z.object({ - equals: ContestResultTypeSchema.optional(), - in: ContestResultTypeSchema.array().optional(), - notIn: ContestResultTypeSchema.array().optional(), - not: z.union([ContestResultTypeSchema, NestedEnumContestResultTypeFilterObjectSchema]).optional() -}).strict(); -export const NestedEnumContestResultTypeFilterObjectSchema: z.ZodType = z.lazy(__makeSchema_NestedEnumContestResultTypeFilter_schema) as unknown as z.ZodType; -export const NestedEnumContestResultTypeFilterObjectZodSchema = z.lazy(__makeSchema_NestedEnumContestResultTypeFilter_schema); - - -// File: NestedEnumContestResultOrderFilter.schema.ts -const __makeSchema_NestedEnumContestResultOrderFilter_schema = () => z.object({ - equals: ContestResultOrderSchema.optional(), - in: ContestResultOrderSchema.array().optional(), - notIn: ContestResultOrderSchema.array().optional(), - not: z.union([ContestResultOrderSchema, NestedEnumContestResultOrderFilterObjectSchema]).optional() -}).strict(); -export const NestedEnumContestResultOrderFilterObjectSchema: z.ZodType = z.lazy(__makeSchema_NestedEnumContestResultOrderFilter_schema) as unknown as z.ZodType; -export const NestedEnumContestResultOrderFilterObjectZodSchema = z.lazy(__makeSchema_NestedEnumContestResultOrderFilter_schema); - - -// File: NestedEnumContestResultTypeWithAggregatesFilter.schema.ts -const __makeSchema_NestedEnumContestResultTypeWithAggregatesFilter_schema = () => z.object({ - equals: ContestResultTypeSchema.optional(), - in: ContestResultTypeSchema.array().optional(), - notIn: ContestResultTypeSchema.array().optional(), - not: z.union([ContestResultTypeSchema, NestedEnumContestResultTypeWithAggregatesFilterObjectSchema]).optional(), - get _count(){ return NestedIntFilterObjectSchema.optional(); }, - get _min(){ return NestedEnumContestResultTypeFilterObjectSchema.optional(); }, - get _max(){ return NestedEnumContestResultTypeFilterObjectSchema.optional(); } -}).strict(); -export const NestedEnumContestResultTypeWithAggregatesFilterObjectSchema: z.ZodType = z.lazy(__makeSchema_NestedEnumContestResultTypeWithAggregatesFilter_schema) as unknown as z.ZodType; -export const NestedEnumContestResultTypeWithAggregatesFilterObjectZodSchema = z.lazy(__makeSchema_NestedEnumContestResultTypeWithAggregatesFilter_schema); - - -// File: NestedEnumContestResultOrderWithAggregatesFilter.schema.ts -const __makeSchema_NestedEnumContestResultOrderWithAggregatesFilter_schema = () => z.object({ - equals: ContestResultOrderSchema.optional(), - in: ContestResultOrderSchema.array().optional(), - notIn: ContestResultOrderSchema.array().optional(), - not: z.union([ContestResultOrderSchema, NestedEnumContestResultOrderWithAggregatesFilterObjectSchema]).optional(), - get _count(){ return NestedIntFilterObjectSchema.optional(); }, - get _min(){ return NestedEnumContestResultOrderFilterObjectSchema.optional(); }, - get _max(){ return NestedEnumContestResultOrderFilterObjectSchema.optional(); } -}).strict(); -export const NestedEnumContestResultOrderWithAggregatesFilterObjectSchema: z.ZodType = z.lazy(__makeSchema_NestedEnumContestResultOrderWithAggregatesFilter_schema) as unknown as z.ZodType; -export const NestedEnumContestResultOrderWithAggregatesFilterObjectZodSchema = z.lazy(__makeSchema_NestedEnumContestResultOrderWithAggregatesFilter_schema); - - -// File: UserCreateWithoutMembershipsInput.schema.ts -const __makeSchema_UserCreateWithoutMembershipsInput_schema = () => z.object({ - id: z.string(), - username: z.string(), - name: z.string().optional().nullable(), - email: z.string().optional().nullable(), - imageUrl: z.string().optional().nullable(), - biography: z.string().optional().nullable(), - phone: z.string().optional().nullable(), - gender: GenderSchema.optional(), - dietaryRestrictions: z.string().optional().nullable(), - ntnuUsername: z.string().optional().nullable(), - flags: z.union([UserCreateflagsInputObjectSchema, z.string().array()]).optional(), - workspaceUserId: z.string().optional().nullable(), - createdAt: z.coerce.date().optional(), - updatedAt: z.coerce.date().optional(), - privacyPermissionsId: z.string().optional().nullable(), - notificationPermissionsId: z.string().optional().nullable(), - get privacyPermissions(){ return PrivacyPermissionsCreateNestedOneWithoutUserInputObjectSchema.optional(); }, - get notificationPermissions(){ return NotificationPermissionsCreateNestedOneWithoutUserInputObjectSchema.optional(); }, - get attendee(){ return AttendeeCreateNestedManyWithoutUserInputObjectSchema.optional(); }, - get personalMark(){ return PersonalMarkCreateNestedManyWithoutUserInputObjectSchema.optional(); }, - get groupMemberships(){ return GroupMembershipCreateNestedManyWithoutUserInputObjectSchema.optional(); }, - get givenMarks(){ return PersonalMarkCreateNestedManyWithoutGivenByInputObjectSchema.optional(); }, - get attendeesRefunded(){ return AttendeeCreateNestedManyWithoutPaymentRefundedByInputObjectSchema.optional(); }, - get auditLogs(){ return AuditLogCreateNestedManyWithoutUserInputObjectSchema.optional(); }, - get deregisterReasons(){ return DeregisterReasonCreateNestedManyWithoutUserInputObjectSchema.optional(); }, - get notificationsReceived(){ return NotificationRecipientCreateNestedManyWithoutUserInputObjectSchema.optional(); }, - get notificationsCreated(){ return NotificationCreateNestedManyWithoutCreatedByInputObjectSchema.optional(); }, - get notificationsUpdated(){ return NotificationCreateNestedManyWithoutLastUpdatedByInputObjectSchema.optional(); }, - get contestants(){ return ContestantCreateNestedManyWithoutUserInputObjectSchema.optional(); }, - get contestTeams(){ return ContestTeamCreateNestedManyWithoutMembersInputObjectSchema.optional(); } -}).strict(); -export const UserCreateWithoutMembershipsInputObjectSchema: z.ZodType = z.lazy(__makeSchema_UserCreateWithoutMembershipsInput_schema) as unknown as z.ZodType; -export const UserCreateWithoutMembershipsInputObjectZodSchema = z.lazy(__makeSchema_UserCreateWithoutMembershipsInput_schema); - - -// File: UserUncheckedCreateWithoutMembershipsInput.schema.ts -const __makeSchema_UserUncheckedCreateWithoutMembershipsInput_schema = () => z.object({ - id: z.string(), - username: z.string(), - name: z.string().optional().nullable(), - email: z.string().optional().nullable(), - imageUrl: z.string().optional().nullable(), - biography: z.string().optional().nullable(), - phone: z.string().optional().nullable(), - gender: GenderSchema.optional(), - dietaryRestrictions: z.string().optional().nullable(), - ntnuUsername: z.string().optional().nullable(), - flags: z.union([UserCreateflagsInputObjectSchema, z.string().array()]).optional(), - workspaceUserId: z.string().optional().nullable(), - createdAt: z.coerce.date().optional(), - updatedAt: z.coerce.date().optional(), - privacyPermissionsId: z.string().optional().nullable(), - notificationPermissionsId: z.string().optional().nullable(), - get privacyPermissions(){ return PrivacyPermissionsUncheckedCreateNestedOneWithoutUserInputObjectSchema.optional(); }, - get notificationPermissions(){ return NotificationPermissionsUncheckedCreateNestedOneWithoutUserInputObjectSchema.optional(); }, - get attendee(){ return AttendeeUncheckedCreateNestedManyWithoutUserInputObjectSchema.optional(); }, - get personalMark(){ return PersonalMarkUncheckedCreateNestedManyWithoutUserInputObjectSchema.optional(); }, - get groupMemberships(){ return GroupMembershipUncheckedCreateNestedManyWithoutUserInputObjectSchema.optional(); }, - get givenMarks(){ return PersonalMarkUncheckedCreateNestedManyWithoutGivenByInputObjectSchema.optional(); }, - get attendeesRefunded(){ return AttendeeUncheckedCreateNestedManyWithoutPaymentRefundedByInputObjectSchema.optional(); }, - get auditLogs(){ return AuditLogUncheckedCreateNestedManyWithoutUserInputObjectSchema.optional(); }, - get deregisterReasons(){ return DeregisterReasonUncheckedCreateNestedManyWithoutUserInputObjectSchema.optional(); }, - get notificationsReceived(){ return NotificationRecipientUncheckedCreateNestedManyWithoutUserInputObjectSchema.optional(); }, - get notificationsCreated(){ return NotificationUncheckedCreateNestedManyWithoutCreatedByInputObjectSchema.optional(); }, - get notificationsUpdated(){ return NotificationUncheckedCreateNestedManyWithoutLastUpdatedByInputObjectSchema.optional(); }, - get contestants(){ return ContestantUncheckedCreateNestedManyWithoutUserInputObjectSchema.optional(); }, - get contestTeams(){ return ContestTeamUncheckedCreateNestedManyWithoutMembersInputObjectSchema.optional(); } -}).strict(); -export const UserUncheckedCreateWithoutMembershipsInputObjectSchema: z.ZodType = z.lazy(__makeSchema_UserUncheckedCreateWithoutMembershipsInput_schema) as unknown as z.ZodType; -export const UserUncheckedCreateWithoutMembershipsInputObjectZodSchema = z.lazy(__makeSchema_UserUncheckedCreateWithoutMembershipsInput_schema); - - -// File: UserCreateOrConnectWithoutMembershipsInput.schema.ts -const __makeSchema_UserCreateOrConnectWithoutMembershipsInput_schema = () => z.object({ - get where(){ return UserWhereUniqueInputObjectSchema; }, - create: z.union([UserCreateWithoutMembershipsInputObjectSchema, UserUncheckedCreateWithoutMembershipsInputObjectSchema]) -}).strict(); -export const UserCreateOrConnectWithoutMembershipsInputObjectSchema: z.ZodType = z.lazy(__makeSchema_UserCreateOrConnectWithoutMembershipsInput_schema) as unknown as z.ZodType; -export const UserCreateOrConnectWithoutMembershipsInputObjectZodSchema = z.lazy(__makeSchema_UserCreateOrConnectWithoutMembershipsInput_schema); - - -// File: UserUpsertWithoutMembershipsInput.schema.ts -const __makeSchema_UserUpsertWithoutMembershipsInput_schema = () => z.object({ - update: z.union([UserUpdateWithoutMembershipsInputObjectSchema, UserUncheckedUpdateWithoutMembershipsInputObjectSchema]), - create: z.union([UserCreateWithoutMembershipsInputObjectSchema, UserUncheckedCreateWithoutMembershipsInputObjectSchema]), - get where(){ return UserWhereInputObjectSchema.optional(); } -}).strict(); -export const UserUpsertWithoutMembershipsInputObjectSchema: z.ZodType = z.lazy(__makeSchema_UserUpsertWithoutMembershipsInput_schema) as unknown as z.ZodType; -export const UserUpsertWithoutMembershipsInputObjectZodSchema = z.lazy(__makeSchema_UserUpsertWithoutMembershipsInput_schema); - - -// File: UserUpdateToOneWithWhereWithoutMembershipsInput.schema.ts -const __makeSchema_UserUpdateToOneWithWhereWithoutMembershipsInput_schema = () => z.object({ - get where(){ return UserWhereInputObjectSchema.optional(); }, - data: z.union([UserUpdateWithoutMembershipsInputObjectSchema, UserUncheckedUpdateWithoutMembershipsInputObjectSchema]) -}).strict(); -export const UserUpdateToOneWithWhereWithoutMembershipsInputObjectSchema: z.ZodType = z.lazy(__makeSchema_UserUpdateToOneWithWhereWithoutMembershipsInput_schema) as unknown as z.ZodType; -export const UserUpdateToOneWithWhereWithoutMembershipsInputObjectZodSchema = z.lazy(__makeSchema_UserUpdateToOneWithWhereWithoutMembershipsInput_schema); - - -// File: UserUpdateWithoutMembershipsInput.schema.ts -const __makeSchema_UserUpdateWithoutMembershipsInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - username: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - name: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - email: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - imageUrl: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - biography: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - phone: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - gender: z.union([GenderSchema, EnumGenderFieldUpdateOperationsInputObjectSchema]).optional(), - dietaryRestrictions: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - ntnuUsername: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - flags: z.union([UserUpdateflagsInputObjectSchema, z.string().array()]).optional(), - workspaceUserId: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - createdAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - updatedAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - privacyPermissionsId: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - notificationPermissionsId: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - get privacyPermissions(){ return PrivacyPermissionsUpdateOneWithoutUserNestedInputObjectSchema.optional(); }, - get notificationPermissions(){ return NotificationPermissionsUpdateOneWithoutUserNestedInputObjectSchema.optional(); }, - get attendee(){ return AttendeeUpdateManyWithoutUserNestedInputObjectSchema.optional(); }, - get personalMark(){ return PersonalMarkUpdateManyWithoutUserNestedInputObjectSchema.optional(); }, - get groupMemberships(){ return GroupMembershipUpdateManyWithoutUserNestedInputObjectSchema.optional(); }, - get givenMarks(){ return PersonalMarkUpdateManyWithoutGivenByNestedInputObjectSchema.optional(); }, - get attendeesRefunded(){ return AttendeeUpdateManyWithoutPaymentRefundedByNestedInputObjectSchema.optional(); }, - get auditLogs(){ return AuditLogUpdateManyWithoutUserNestedInputObjectSchema.optional(); }, - get deregisterReasons(){ return DeregisterReasonUpdateManyWithoutUserNestedInputObjectSchema.optional(); }, - get notificationsReceived(){ return NotificationRecipientUpdateManyWithoutUserNestedInputObjectSchema.optional(); }, - get notificationsCreated(){ return NotificationUpdateManyWithoutCreatedByNestedInputObjectSchema.optional(); }, - get notificationsUpdated(){ return NotificationUpdateManyWithoutLastUpdatedByNestedInputObjectSchema.optional(); }, - get contestants(){ return ContestantUpdateManyWithoutUserNestedInputObjectSchema.optional(); }, - get contestTeams(){ return ContestTeamUpdateManyWithoutMembersNestedInputObjectSchema.optional(); } -}).strict(); -export const UserUpdateWithoutMembershipsInputObjectSchema: z.ZodType = z.lazy(__makeSchema_UserUpdateWithoutMembershipsInput_schema) as unknown as z.ZodType; -export const UserUpdateWithoutMembershipsInputObjectZodSchema = z.lazy(__makeSchema_UserUpdateWithoutMembershipsInput_schema); - - -// File: UserUncheckedUpdateWithoutMembershipsInput.schema.ts -const __makeSchema_UserUncheckedUpdateWithoutMembershipsInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - username: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - name: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - email: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - imageUrl: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - biography: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - phone: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - gender: z.union([GenderSchema, EnumGenderFieldUpdateOperationsInputObjectSchema]).optional(), - dietaryRestrictions: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - ntnuUsername: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - flags: z.union([UserUpdateflagsInputObjectSchema, z.string().array()]).optional(), - workspaceUserId: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - createdAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - updatedAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - privacyPermissionsId: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - notificationPermissionsId: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - get privacyPermissions(){ return PrivacyPermissionsUncheckedUpdateOneWithoutUserNestedInputObjectSchema.optional(); }, - get notificationPermissions(){ return NotificationPermissionsUncheckedUpdateOneWithoutUserNestedInputObjectSchema.optional(); }, - get attendee(){ return AttendeeUncheckedUpdateManyWithoutUserNestedInputObjectSchema.optional(); }, - get personalMark(){ return PersonalMarkUncheckedUpdateManyWithoutUserNestedInputObjectSchema.optional(); }, - get groupMemberships(){ return GroupMembershipUncheckedUpdateManyWithoutUserNestedInputObjectSchema.optional(); }, - get givenMarks(){ return PersonalMarkUncheckedUpdateManyWithoutGivenByNestedInputObjectSchema.optional(); }, - get attendeesRefunded(){ return AttendeeUncheckedUpdateManyWithoutPaymentRefundedByNestedInputObjectSchema.optional(); }, - get auditLogs(){ return AuditLogUncheckedUpdateManyWithoutUserNestedInputObjectSchema.optional(); }, - get deregisterReasons(){ return DeregisterReasonUncheckedUpdateManyWithoutUserNestedInputObjectSchema.optional(); }, - get notificationsReceived(){ return NotificationRecipientUncheckedUpdateManyWithoutUserNestedInputObjectSchema.optional(); }, - get notificationsCreated(){ return NotificationUncheckedUpdateManyWithoutCreatedByNestedInputObjectSchema.optional(); }, - get notificationsUpdated(){ return NotificationUncheckedUpdateManyWithoutLastUpdatedByNestedInputObjectSchema.optional(); }, - get contestants(){ return ContestantUncheckedUpdateManyWithoutUserNestedInputObjectSchema.optional(); }, - get contestTeams(){ return ContestTeamUncheckedUpdateManyWithoutMembersNestedInputObjectSchema.optional(); } -}).strict(); -export const UserUncheckedUpdateWithoutMembershipsInputObjectSchema: z.ZodType = z.lazy(__makeSchema_UserUncheckedUpdateWithoutMembershipsInput_schema) as unknown as z.ZodType; -export const UserUncheckedUpdateWithoutMembershipsInputObjectZodSchema = z.lazy(__makeSchema_UserUncheckedUpdateWithoutMembershipsInput_schema); - - -// File: PrivacyPermissionsCreateWithoutUserInput.schema.ts -const __makeSchema_PrivacyPermissionsCreateWithoutUserInput_schema = () => z.object({ - id: z.string().optional(), - profileVisible: z.boolean().optional(), - usernameVisible: z.boolean().optional(), - emailVisible: z.boolean().optional(), - phoneVisible: z.boolean().optional(), - addressVisible: z.boolean().optional(), - attendanceVisible: z.boolean().optional(), - createdAt: z.coerce.date().optional(), - updatedAt: z.coerce.date().optional() -}).strict(); -export const PrivacyPermissionsCreateWithoutUserInputObjectSchema: z.ZodType = z.lazy(__makeSchema_PrivacyPermissionsCreateWithoutUserInput_schema) as unknown as z.ZodType; -export const PrivacyPermissionsCreateWithoutUserInputObjectZodSchema = z.lazy(__makeSchema_PrivacyPermissionsCreateWithoutUserInput_schema); - - -// File: PrivacyPermissionsUncheckedCreateWithoutUserInput.schema.ts -const __makeSchema_PrivacyPermissionsUncheckedCreateWithoutUserInput_schema = () => z.object({ - id: z.string().optional(), - profileVisible: z.boolean().optional(), - usernameVisible: z.boolean().optional(), - emailVisible: z.boolean().optional(), - phoneVisible: z.boolean().optional(), - addressVisible: z.boolean().optional(), - attendanceVisible: z.boolean().optional(), - createdAt: z.coerce.date().optional(), - updatedAt: z.coerce.date().optional() -}).strict(); -export const PrivacyPermissionsUncheckedCreateWithoutUserInputObjectSchema: z.ZodType = z.lazy(__makeSchema_PrivacyPermissionsUncheckedCreateWithoutUserInput_schema) as unknown as z.ZodType; -export const PrivacyPermissionsUncheckedCreateWithoutUserInputObjectZodSchema = z.lazy(__makeSchema_PrivacyPermissionsUncheckedCreateWithoutUserInput_schema); - - -// File: PrivacyPermissionsCreateOrConnectWithoutUserInput.schema.ts -const __makeSchema_PrivacyPermissionsCreateOrConnectWithoutUserInput_schema = () => z.object({ - get where(){ return PrivacyPermissionsWhereUniqueInputObjectSchema; }, - create: z.union([PrivacyPermissionsCreateWithoutUserInputObjectSchema, PrivacyPermissionsUncheckedCreateWithoutUserInputObjectSchema]) -}).strict(); -export const PrivacyPermissionsCreateOrConnectWithoutUserInputObjectSchema: z.ZodType = z.lazy(__makeSchema_PrivacyPermissionsCreateOrConnectWithoutUserInput_schema) as unknown as z.ZodType; -export const PrivacyPermissionsCreateOrConnectWithoutUserInputObjectZodSchema = z.lazy(__makeSchema_PrivacyPermissionsCreateOrConnectWithoutUserInput_schema); - - -// File: NotificationPermissionsCreateWithoutUserInput.schema.ts -const __makeSchema_NotificationPermissionsCreateWithoutUserInput_schema = () => z.object({ - id: z.string().optional(), - applications: z.boolean().optional(), - newArticles: z.boolean().optional(), - standardNotifications: z.boolean().optional(), - groupMessages: z.boolean().optional(), - markRulesUpdates: z.boolean().optional(), - receipts: z.boolean().optional(), - registrationByAdministrator: z.boolean().optional(), - registrationStart: z.boolean().optional(), - createdAt: z.coerce.date().optional(), - updatedAt: z.coerce.date().optional() -}).strict(); -export const NotificationPermissionsCreateWithoutUserInputObjectSchema: z.ZodType = z.lazy(__makeSchema_NotificationPermissionsCreateWithoutUserInput_schema) as unknown as z.ZodType; -export const NotificationPermissionsCreateWithoutUserInputObjectZodSchema = z.lazy(__makeSchema_NotificationPermissionsCreateWithoutUserInput_schema); - - -// File: NotificationPermissionsUncheckedCreateWithoutUserInput.schema.ts -const __makeSchema_NotificationPermissionsUncheckedCreateWithoutUserInput_schema = () => z.object({ - id: z.string().optional(), - applications: z.boolean().optional(), - newArticles: z.boolean().optional(), - standardNotifications: z.boolean().optional(), - groupMessages: z.boolean().optional(), - markRulesUpdates: z.boolean().optional(), - receipts: z.boolean().optional(), - registrationByAdministrator: z.boolean().optional(), - registrationStart: z.boolean().optional(), - createdAt: z.coerce.date().optional(), - updatedAt: z.coerce.date().optional() -}).strict(); -export const NotificationPermissionsUncheckedCreateWithoutUserInputObjectSchema: z.ZodType = z.lazy(__makeSchema_NotificationPermissionsUncheckedCreateWithoutUserInput_schema) as unknown as z.ZodType; -export const NotificationPermissionsUncheckedCreateWithoutUserInputObjectZodSchema = z.lazy(__makeSchema_NotificationPermissionsUncheckedCreateWithoutUserInput_schema); - - -// File: NotificationPermissionsCreateOrConnectWithoutUserInput.schema.ts -const __makeSchema_NotificationPermissionsCreateOrConnectWithoutUserInput_schema = () => z.object({ - get where(){ return NotificationPermissionsWhereUniqueInputObjectSchema; }, - create: z.union([NotificationPermissionsCreateWithoutUserInputObjectSchema, NotificationPermissionsUncheckedCreateWithoutUserInputObjectSchema]) -}).strict(); -export const NotificationPermissionsCreateOrConnectWithoutUserInputObjectSchema: z.ZodType = z.lazy(__makeSchema_NotificationPermissionsCreateOrConnectWithoutUserInput_schema) as unknown as z.ZodType; -export const NotificationPermissionsCreateOrConnectWithoutUserInputObjectZodSchema = z.lazy(__makeSchema_NotificationPermissionsCreateOrConnectWithoutUserInput_schema); - - -// File: AttendeeCreateWithoutUserInput.schema.ts -const __makeSchema_AttendeeCreateWithoutUserInput_schema = () => z.object({ - id: z.string().optional(), - userGrade: z.number().int().optional().nullable(), - selections: z.union([JsonNullValueInputSchema, jsonSchema]).optional(), - reserved: z.boolean(), - earliestReservationAt: z.coerce.date(), - attendedAt: z.coerce.date().optional().nullable(), - createdAt: z.coerce.date().optional(), - updatedAt: z.coerce.date().optional(), - paymentDeadline: z.coerce.date().optional().nullable(), - paymentLink: z.string().optional().nullable(), - paymentId: z.string().optional().nullable(), - paymentReservedAt: z.coerce.date().optional().nullable(), - paymentChargeDeadline: z.coerce.date().optional().nullable(), - paymentChargedAt: z.coerce.date().optional().nullable(), - paymentRefundedAt: z.coerce.date().optional().nullable(), - paymentCheckoutUrl: z.string().optional().nullable(), - get feedbackFormAnswer(){ return FeedbackFormAnswerCreateNestedOneWithoutAttendeeInputObjectSchema.optional(); }, - get attendance(){ return AttendanceCreateNestedOneWithoutAttendeesInputObjectSchema; }, - get attendancePool(){ return AttendancePoolCreateNestedOneWithoutAttendeesInputObjectSchema; }, - get paymentRefundedBy(){ return UserCreateNestedOneWithoutAttendeesRefundedInputObjectSchema.optional(); } -}).strict(); -export const AttendeeCreateWithoutUserInputObjectSchema: z.ZodType = z.lazy(__makeSchema_AttendeeCreateWithoutUserInput_schema) as unknown as z.ZodType; -export const AttendeeCreateWithoutUserInputObjectZodSchema = z.lazy(__makeSchema_AttendeeCreateWithoutUserInput_schema); - - -// File: AttendeeUncheckedCreateWithoutUserInput.schema.ts -const __makeSchema_AttendeeUncheckedCreateWithoutUserInput_schema = () => z.object({ - id: z.string().optional(), - userGrade: z.number().int().optional().nullable(), - selections: z.union([JsonNullValueInputSchema, jsonSchema]).optional(), - reserved: z.boolean(), - earliestReservationAt: z.coerce.date(), - attendedAt: z.coerce.date().optional().nullable(), - createdAt: z.coerce.date().optional(), - updatedAt: z.coerce.date().optional(), - paymentDeadline: z.coerce.date().optional().nullable(), - paymentLink: z.string().optional().nullable(), - paymentId: z.string().optional().nullable(), - paymentReservedAt: z.coerce.date().optional().nullable(), - paymentChargeDeadline: z.coerce.date().optional().nullable(), - paymentChargedAt: z.coerce.date().optional().nullable(), - paymentRefundedAt: z.coerce.date().optional().nullable(), - paymentCheckoutUrl: z.string().optional().nullable(), - attendanceId: z.string(), - attendancePoolId: z.string(), - paymentRefundedById: z.string().optional().nullable(), - get feedbackFormAnswer(){ return FeedbackFormAnswerUncheckedCreateNestedOneWithoutAttendeeInputObjectSchema.optional(); } -}).strict(); -export const AttendeeUncheckedCreateWithoutUserInputObjectSchema: z.ZodType = z.lazy(__makeSchema_AttendeeUncheckedCreateWithoutUserInput_schema) as unknown as z.ZodType; -export const AttendeeUncheckedCreateWithoutUserInputObjectZodSchema = z.lazy(__makeSchema_AttendeeUncheckedCreateWithoutUserInput_schema); - - -// File: AttendeeCreateOrConnectWithoutUserInput.schema.ts -const __makeSchema_AttendeeCreateOrConnectWithoutUserInput_schema = () => z.object({ - get where(){ return AttendeeWhereUniqueInputObjectSchema; }, - create: z.union([AttendeeCreateWithoutUserInputObjectSchema, AttendeeUncheckedCreateWithoutUserInputObjectSchema]) -}).strict(); -export const AttendeeCreateOrConnectWithoutUserInputObjectSchema: z.ZodType = z.lazy(__makeSchema_AttendeeCreateOrConnectWithoutUserInput_schema) as unknown as z.ZodType; -export const AttendeeCreateOrConnectWithoutUserInputObjectZodSchema = z.lazy(__makeSchema_AttendeeCreateOrConnectWithoutUserInput_schema); - - -// File: AttendeeCreateManyUserInputEnvelope.schema.ts -const __makeSchema_AttendeeCreateManyUserInputEnvelope_schema = () => z.object({ - data: z.union([AttendeeCreateManyUserInputObjectSchema, AttendeeCreateManyUserInputObjectSchema.array()]), - skipDuplicates: z.boolean().optional() -}).strict(); -export const AttendeeCreateManyUserInputEnvelopeObjectSchema: z.ZodType = z.lazy(__makeSchema_AttendeeCreateManyUserInputEnvelope_schema) as unknown as z.ZodType; -export const AttendeeCreateManyUserInputEnvelopeObjectZodSchema = z.lazy(__makeSchema_AttendeeCreateManyUserInputEnvelope_schema); - - -// File: PersonalMarkCreateWithoutUserInput.schema.ts -const __makeSchema_PersonalMarkCreateWithoutUserInput_schema = () => z.object({ - createdAt: z.coerce.date().optional(), - get mark(){ return MarkCreateNestedOneWithoutUsersInputObjectSchema; }, - get givenBy(){ return UserCreateNestedOneWithoutGivenMarksInputObjectSchema.optional(); } -}).strict(); -export const PersonalMarkCreateWithoutUserInputObjectSchema: z.ZodType = z.lazy(__makeSchema_PersonalMarkCreateWithoutUserInput_schema) as unknown as z.ZodType; -export const PersonalMarkCreateWithoutUserInputObjectZodSchema = z.lazy(__makeSchema_PersonalMarkCreateWithoutUserInput_schema); - - -// File: PersonalMarkUncheckedCreateWithoutUserInput.schema.ts -const __makeSchema_PersonalMarkUncheckedCreateWithoutUserInput_schema = () => z.object({ - createdAt: z.coerce.date().optional(), - markId: z.string(), - givenById: z.string().optional().nullable() -}).strict(); -export const PersonalMarkUncheckedCreateWithoutUserInputObjectSchema: z.ZodType = z.lazy(__makeSchema_PersonalMarkUncheckedCreateWithoutUserInput_schema) as unknown as z.ZodType; -export const PersonalMarkUncheckedCreateWithoutUserInputObjectZodSchema = z.lazy(__makeSchema_PersonalMarkUncheckedCreateWithoutUserInput_schema); - - -// File: PersonalMarkCreateOrConnectWithoutUserInput.schema.ts -const __makeSchema_PersonalMarkCreateOrConnectWithoutUserInput_schema = () => z.object({ - get where(){ return PersonalMarkWhereUniqueInputObjectSchema; }, - create: z.union([PersonalMarkCreateWithoutUserInputObjectSchema, PersonalMarkUncheckedCreateWithoutUserInputObjectSchema]) -}).strict(); -export const PersonalMarkCreateOrConnectWithoutUserInputObjectSchema: z.ZodType = z.lazy(__makeSchema_PersonalMarkCreateOrConnectWithoutUserInput_schema) as unknown as z.ZodType; -export const PersonalMarkCreateOrConnectWithoutUserInputObjectZodSchema = z.lazy(__makeSchema_PersonalMarkCreateOrConnectWithoutUserInput_schema); - - -// File: PersonalMarkCreateManyUserInputEnvelope.schema.ts -const __makeSchema_PersonalMarkCreateManyUserInputEnvelope_schema = () => z.object({ - data: z.union([PersonalMarkCreateManyUserInputObjectSchema, PersonalMarkCreateManyUserInputObjectSchema.array()]), - skipDuplicates: z.boolean().optional() -}).strict(); -export const PersonalMarkCreateManyUserInputEnvelopeObjectSchema: z.ZodType = z.lazy(__makeSchema_PersonalMarkCreateManyUserInputEnvelope_schema) as unknown as z.ZodType; -export const PersonalMarkCreateManyUserInputEnvelopeObjectZodSchema = z.lazy(__makeSchema_PersonalMarkCreateManyUserInputEnvelope_schema); - - -// File: GroupMembershipCreateWithoutUserInput.schema.ts -const __makeSchema_GroupMembershipCreateWithoutUserInput_schema = () => z.object({ - id: z.string().optional(), - start: z.coerce.date(), - end: z.coerce.date().optional().nullable(), - createdAt: z.coerce.date().optional(), - updatedAt: z.coerce.date().optional(), - get group(){ return GroupCreateNestedOneWithoutMembershipsInputObjectSchema; }, - get roles(){ return GroupMembershipRoleCreateNestedManyWithoutMembershipInputObjectSchema.optional(); } -}).strict(); -export const GroupMembershipCreateWithoutUserInputObjectSchema: z.ZodType = z.lazy(__makeSchema_GroupMembershipCreateWithoutUserInput_schema) as unknown as z.ZodType; -export const GroupMembershipCreateWithoutUserInputObjectZodSchema = z.lazy(__makeSchema_GroupMembershipCreateWithoutUserInput_schema); - - -// File: GroupMembershipUncheckedCreateWithoutUserInput.schema.ts -const __makeSchema_GroupMembershipUncheckedCreateWithoutUserInput_schema = () => z.object({ - id: z.string().optional(), - start: z.coerce.date(), - end: z.coerce.date().optional().nullable(), - createdAt: z.coerce.date().optional(), - updatedAt: z.coerce.date().optional(), - groupId: z.string(), - get roles(){ return GroupMembershipRoleUncheckedCreateNestedManyWithoutMembershipInputObjectSchema.optional(); } -}).strict(); -export const GroupMembershipUncheckedCreateWithoutUserInputObjectSchema: z.ZodType = z.lazy(__makeSchema_GroupMembershipUncheckedCreateWithoutUserInput_schema) as unknown as z.ZodType; -export const GroupMembershipUncheckedCreateWithoutUserInputObjectZodSchema = z.lazy(__makeSchema_GroupMembershipUncheckedCreateWithoutUserInput_schema); - - -// File: GroupMembershipCreateOrConnectWithoutUserInput.schema.ts -const __makeSchema_GroupMembershipCreateOrConnectWithoutUserInput_schema = () => z.object({ - get where(){ return GroupMembershipWhereUniqueInputObjectSchema; }, - create: z.union([GroupMembershipCreateWithoutUserInputObjectSchema, GroupMembershipUncheckedCreateWithoutUserInputObjectSchema]) -}).strict(); -export const GroupMembershipCreateOrConnectWithoutUserInputObjectSchema: z.ZodType = z.lazy(__makeSchema_GroupMembershipCreateOrConnectWithoutUserInput_schema) as unknown as z.ZodType; -export const GroupMembershipCreateOrConnectWithoutUserInputObjectZodSchema = z.lazy(__makeSchema_GroupMembershipCreateOrConnectWithoutUserInput_schema); - - -// File: GroupMembershipCreateManyUserInputEnvelope.schema.ts -const __makeSchema_GroupMembershipCreateManyUserInputEnvelope_schema = () => z.object({ - data: z.union([GroupMembershipCreateManyUserInputObjectSchema, GroupMembershipCreateManyUserInputObjectSchema.array()]), - skipDuplicates: z.boolean().optional() -}).strict(); -export const GroupMembershipCreateManyUserInputEnvelopeObjectSchema: z.ZodType = z.lazy(__makeSchema_GroupMembershipCreateManyUserInputEnvelope_schema) as unknown as z.ZodType; -export const GroupMembershipCreateManyUserInputEnvelopeObjectZodSchema = z.lazy(__makeSchema_GroupMembershipCreateManyUserInputEnvelope_schema); - - -// File: MembershipCreateWithoutUserInput.schema.ts -const __makeSchema_MembershipCreateWithoutUserInput_schema = () => z.object({ - id: z.string().optional(), - type: MembershipTypeSchema, - specialization: MembershipSpecializationSchema.optional().nullable(), - start: z.coerce.date(), - end: z.coerce.date().optional().nullable(), - semester: z.number().int().optional().nullable() -}).strict(); -export const MembershipCreateWithoutUserInputObjectSchema: z.ZodType = z.lazy(__makeSchema_MembershipCreateWithoutUserInput_schema) as unknown as z.ZodType; -export const MembershipCreateWithoutUserInputObjectZodSchema = z.lazy(__makeSchema_MembershipCreateWithoutUserInput_schema); - - -// File: MembershipUncheckedCreateWithoutUserInput.schema.ts -const __makeSchema_MembershipUncheckedCreateWithoutUserInput_schema = () => z.object({ - id: z.string().optional(), - type: MembershipTypeSchema, - specialization: MembershipSpecializationSchema.optional().nullable(), - start: z.coerce.date(), - end: z.coerce.date().optional().nullable(), - semester: z.number().int().optional().nullable() -}).strict(); -export const MembershipUncheckedCreateWithoutUserInputObjectSchema: z.ZodType = z.lazy(__makeSchema_MembershipUncheckedCreateWithoutUserInput_schema) as unknown as z.ZodType; -export const MembershipUncheckedCreateWithoutUserInputObjectZodSchema = z.lazy(__makeSchema_MembershipUncheckedCreateWithoutUserInput_schema); - - -// File: MembershipCreateOrConnectWithoutUserInput.schema.ts -const __makeSchema_MembershipCreateOrConnectWithoutUserInput_schema = () => z.object({ - get where(){ return MembershipWhereUniqueInputObjectSchema; }, - create: z.union([MembershipCreateWithoutUserInputObjectSchema, MembershipUncheckedCreateWithoutUserInputObjectSchema]) -}).strict(); -export const MembershipCreateOrConnectWithoutUserInputObjectSchema: z.ZodType = z.lazy(__makeSchema_MembershipCreateOrConnectWithoutUserInput_schema) as unknown as z.ZodType; -export const MembershipCreateOrConnectWithoutUserInputObjectZodSchema = z.lazy(__makeSchema_MembershipCreateOrConnectWithoutUserInput_schema); - - -// File: MembershipCreateManyUserInputEnvelope.schema.ts -const __makeSchema_MembershipCreateManyUserInputEnvelope_schema = () => z.object({ - data: z.union([MembershipCreateManyUserInputObjectSchema, MembershipCreateManyUserInputObjectSchema.array()]), - skipDuplicates: z.boolean().optional() -}).strict(); -export const MembershipCreateManyUserInputEnvelopeObjectSchema: z.ZodType = z.lazy(__makeSchema_MembershipCreateManyUserInputEnvelope_schema) as unknown as z.ZodType; -export const MembershipCreateManyUserInputEnvelopeObjectZodSchema = z.lazy(__makeSchema_MembershipCreateManyUserInputEnvelope_schema); - - -// File: PersonalMarkCreateWithoutGivenByInput.schema.ts -const __makeSchema_PersonalMarkCreateWithoutGivenByInput_schema = () => z.object({ - createdAt: z.coerce.date().optional(), - get mark(){ return MarkCreateNestedOneWithoutUsersInputObjectSchema; }, - get user(){ return UserCreateNestedOneWithoutPersonalMarkInputObjectSchema; } -}).strict(); -export const PersonalMarkCreateWithoutGivenByInputObjectSchema: z.ZodType = z.lazy(__makeSchema_PersonalMarkCreateWithoutGivenByInput_schema) as unknown as z.ZodType; -export const PersonalMarkCreateWithoutGivenByInputObjectZodSchema = z.lazy(__makeSchema_PersonalMarkCreateWithoutGivenByInput_schema); - - -// File: PersonalMarkUncheckedCreateWithoutGivenByInput.schema.ts -const __makeSchema_PersonalMarkUncheckedCreateWithoutGivenByInput_schema = () => z.object({ - createdAt: z.coerce.date().optional(), - markId: z.string(), - userId: z.string() -}).strict(); -export const PersonalMarkUncheckedCreateWithoutGivenByInputObjectSchema: z.ZodType = z.lazy(__makeSchema_PersonalMarkUncheckedCreateWithoutGivenByInput_schema) as unknown as z.ZodType; -export const PersonalMarkUncheckedCreateWithoutGivenByInputObjectZodSchema = z.lazy(__makeSchema_PersonalMarkUncheckedCreateWithoutGivenByInput_schema); - - -// File: PersonalMarkCreateOrConnectWithoutGivenByInput.schema.ts -const __makeSchema_PersonalMarkCreateOrConnectWithoutGivenByInput_schema = () => z.object({ - get where(){ return PersonalMarkWhereUniqueInputObjectSchema; }, - create: z.union([PersonalMarkCreateWithoutGivenByInputObjectSchema, PersonalMarkUncheckedCreateWithoutGivenByInputObjectSchema]) -}).strict(); -export const PersonalMarkCreateOrConnectWithoutGivenByInputObjectSchema: z.ZodType = z.lazy(__makeSchema_PersonalMarkCreateOrConnectWithoutGivenByInput_schema) as unknown as z.ZodType; -export const PersonalMarkCreateOrConnectWithoutGivenByInputObjectZodSchema = z.lazy(__makeSchema_PersonalMarkCreateOrConnectWithoutGivenByInput_schema); - - -// File: PersonalMarkCreateManyGivenByInputEnvelope.schema.ts -const __makeSchema_PersonalMarkCreateManyGivenByInputEnvelope_schema = () => z.object({ - data: z.union([PersonalMarkCreateManyGivenByInputObjectSchema, PersonalMarkCreateManyGivenByInputObjectSchema.array()]), - skipDuplicates: z.boolean().optional() -}).strict(); -export const PersonalMarkCreateManyGivenByInputEnvelopeObjectSchema: z.ZodType = z.lazy(__makeSchema_PersonalMarkCreateManyGivenByInputEnvelope_schema) as unknown as z.ZodType; -export const PersonalMarkCreateManyGivenByInputEnvelopeObjectZodSchema = z.lazy(__makeSchema_PersonalMarkCreateManyGivenByInputEnvelope_schema); - - -// File: AttendeeCreateWithoutPaymentRefundedByInput.schema.ts -const __makeSchema_AttendeeCreateWithoutPaymentRefundedByInput_schema = () => z.object({ - id: z.string().optional(), - userGrade: z.number().int().optional().nullable(), - selections: z.union([JsonNullValueInputSchema, jsonSchema]).optional(), - reserved: z.boolean(), - earliestReservationAt: z.coerce.date(), - attendedAt: z.coerce.date().optional().nullable(), - createdAt: z.coerce.date().optional(), - updatedAt: z.coerce.date().optional(), - paymentDeadline: z.coerce.date().optional().nullable(), - paymentLink: z.string().optional().nullable(), - paymentId: z.string().optional().nullable(), - paymentReservedAt: z.coerce.date().optional().nullable(), - paymentChargeDeadline: z.coerce.date().optional().nullable(), - paymentChargedAt: z.coerce.date().optional().nullable(), - paymentRefundedAt: z.coerce.date().optional().nullable(), - paymentCheckoutUrl: z.string().optional().nullable(), - get feedbackFormAnswer(){ return FeedbackFormAnswerCreateNestedOneWithoutAttendeeInputObjectSchema.optional(); }, - get attendance(){ return AttendanceCreateNestedOneWithoutAttendeesInputObjectSchema; }, - get user(){ return UserCreateNestedOneWithoutAttendeeInputObjectSchema; }, - get attendancePool(){ return AttendancePoolCreateNestedOneWithoutAttendeesInputObjectSchema; } -}).strict(); -export const AttendeeCreateWithoutPaymentRefundedByInputObjectSchema: z.ZodType = z.lazy(__makeSchema_AttendeeCreateWithoutPaymentRefundedByInput_schema) as unknown as z.ZodType; -export const AttendeeCreateWithoutPaymentRefundedByInputObjectZodSchema = z.lazy(__makeSchema_AttendeeCreateWithoutPaymentRefundedByInput_schema); - - -// File: AttendeeUncheckedCreateWithoutPaymentRefundedByInput.schema.ts -const __makeSchema_AttendeeUncheckedCreateWithoutPaymentRefundedByInput_schema = () => z.object({ - id: z.string().optional(), - userGrade: z.number().int().optional().nullable(), - selections: z.union([JsonNullValueInputSchema, jsonSchema]).optional(), - reserved: z.boolean(), - earliestReservationAt: z.coerce.date(), - attendedAt: z.coerce.date().optional().nullable(), - createdAt: z.coerce.date().optional(), - updatedAt: z.coerce.date().optional(), - paymentDeadline: z.coerce.date().optional().nullable(), - paymentLink: z.string().optional().nullable(), - paymentId: z.string().optional().nullable(), - paymentReservedAt: z.coerce.date().optional().nullable(), - paymentChargeDeadline: z.coerce.date().optional().nullable(), - paymentChargedAt: z.coerce.date().optional().nullable(), - paymentRefundedAt: z.coerce.date().optional().nullable(), - paymentCheckoutUrl: z.string().optional().nullable(), - attendanceId: z.string(), - userId: z.string(), - attendancePoolId: z.string(), - get feedbackFormAnswer(){ return FeedbackFormAnswerUncheckedCreateNestedOneWithoutAttendeeInputObjectSchema.optional(); } -}).strict(); -export const AttendeeUncheckedCreateWithoutPaymentRefundedByInputObjectSchema: z.ZodType = z.lazy(__makeSchema_AttendeeUncheckedCreateWithoutPaymentRefundedByInput_schema) as unknown as z.ZodType; -export const AttendeeUncheckedCreateWithoutPaymentRefundedByInputObjectZodSchema = z.lazy(__makeSchema_AttendeeUncheckedCreateWithoutPaymentRefundedByInput_schema); - - -// File: AttendeeCreateOrConnectWithoutPaymentRefundedByInput.schema.ts -const __makeSchema_AttendeeCreateOrConnectWithoutPaymentRefundedByInput_schema = () => z.object({ - get where(){ return AttendeeWhereUniqueInputObjectSchema; }, - create: z.union([AttendeeCreateWithoutPaymentRefundedByInputObjectSchema, AttendeeUncheckedCreateWithoutPaymentRefundedByInputObjectSchema]) -}).strict(); -export const AttendeeCreateOrConnectWithoutPaymentRefundedByInputObjectSchema: z.ZodType = z.lazy(__makeSchema_AttendeeCreateOrConnectWithoutPaymentRefundedByInput_schema) as unknown as z.ZodType; -export const AttendeeCreateOrConnectWithoutPaymentRefundedByInputObjectZodSchema = z.lazy(__makeSchema_AttendeeCreateOrConnectWithoutPaymentRefundedByInput_schema); - - -// File: AttendeeCreateManyPaymentRefundedByInputEnvelope.schema.ts -const __makeSchema_AttendeeCreateManyPaymentRefundedByInputEnvelope_schema = () => z.object({ - data: z.union([AttendeeCreateManyPaymentRefundedByInputObjectSchema, AttendeeCreateManyPaymentRefundedByInputObjectSchema.array()]), - skipDuplicates: z.boolean().optional() -}).strict(); -export const AttendeeCreateManyPaymentRefundedByInputEnvelopeObjectSchema: z.ZodType = z.lazy(__makeSchema_AttendeeCreateManyPaymentRefundedByInputEnvelope_schema) as unknown as z.ZodType; -export const AttendeeCreateManyPaymentRefundedByInputEnvelopeObjectZodSchema = z.lazy(__makeSchema_AttendeeCreateManyPaymentRefundedByInputEnvelope_schema); - - -// File: AuditLogCreateWithoutUserInput.schema.ts -const __makeSchema_AuditLogCreateWithoutUserInput_schema = () => z.object({ - id: z.string().optional(), - tableName: z.string(), - rowId: z.string().optional().nullable(), - createdAt: z.coerce.date().optional(), - operation: z.string(), - rowData: z.union([JsonNullValueInputSchema, jsonSchema]), - transactionId: z.bigint() -}).strict(); -export const AuditLogCreateWithoutUserInputObjectSchema: z.ZodType = z.lazy(__makeSchema_AuditLogCreateWithoutUserInput_schema) as unknown as z.ZodType; -export const AuditLogCreateWithoutUserInputObjectZodSchema = z.lazy(__makeSchema_AuditLogCreateWithoutUserInput_schema); - - -// File: AuditLogUncheckedCreateWithoutUserInput.schema.ts -const __makeSchema_AuditLogUncheckedCreateWithoutUserInput_schema = () => z.object({ - id: z.string().optional(), - tableName: z.string(), - rowId: z.string().optional().nullable(), - createdAt: z.coerce.date().optional(), - operation: z.string(), - rowData: z.union([JsonNullValueInputSchema, jsonSchema]), - transactionId: z.bigint() -}).strict(); -export const AuditLogUncheckedCreateWithoutUserInputObjectSchema: z.ZodType = z.lazy(__makeSchema_AuditLogUncheckedCreateWithoutUserInput_schema) as unknown as z.ZodType; -export const AuditLogUncheckedCreateWithoutUserInputObjectZodSchema = z.lazy(__makeSchema_AuditLogUncheckedCreateWithoutUserInput_schema); - - -// File: AuditLogCreateOrConnectWithoutUserInput.schema.ts -const __makeSchema_AuditLogCreateOrConnectWithoutUserInput_schema = () => z.object({ - get where(){ return AuditLogWhereUniqueInputObjectSchema; }, - create: z.union([AuditLogCreateWithoutUserInputObjectSchema, AuditLogUncheckedCreateWithoutUserInputObjectSchema]) -}).strict(); -export const AuditLogCreateOrConnectWithoutUserInputObjectSchema: z.ZodType = z.lazy(__makeSchema_AuditLogCreateOrConnectWithoutUserInput_schema) as unknown as z.ZodType; -export const AuditLogCreateOrConnectWithoutUserInputObjectZodSchema = z.lazy(__makeSchema_AuditLogCreateOrConnectWithoutUserInput_schema); - - -// File: AuditLogCreateManyUserInputEnvelope.schema.ts -const __makeSchema_AuditLogCreateManyUserInputEnvelope_schema = () => z.object({ - data: z.union([AuditLogCreateManyUserInputObjectSchema, AuditLogCreateManyUserInputObjectSchema.array()]), - skipDuplicates: z.boolean().optional() -}).strict(); -export const AuditLogCreateManyUserInputEnvelopeObjectSchema: z.ZodType = z.lazy(__makeSchema_AuditLogCreateManyUserInputEnvelope_schema) as unknown as z.ZodType; -export const AuditLogCreateManyUserInputEnvelopeObjectZodSchema = z.lazy(__makeSchema_AuditLogCreateManyUserInputEnvelope_schema); - - -// File: DeregisterReasonCreateWithoutUserInput.schema.ts -const __makeSchema_DeregisterReasonCreateWithoutUserInput_schema = () => z.object({ - id: z.string().optional(), - createdAt: z.coerce.date().optional(), - registeredAt: z.coerce.date(), - type: DeregisterReasonTypeSchema, - details: z.string().optional().nullable(), - userGrade: z.number().int().optional().nullable(), - get event(){ return EventCreateNestedOneWithoutDeregisterReasonsInputObjectSchema; } -}).strict(); -export const DeregisterReasonCreateWithoutUserInputObjectSchema: z.ZodType = z.lazy(__makeSchema_DeregisterReasonCreateWithoutUserInput_schema) as unknown as z.ZodType; -export const DeregisterReasonCreateWithoutUserInputObjectZodSchema = z.lazy(__makeSchema_DeregisterReasonCreateWithoutUserInput_schema); - - -// File: DeregisterReasonUncheckedCreateWithoutUserInput.schema.ts -const __makeSchema_DeregisterReasonUncheckedCreateWithoutUserInput_schema = () => z.object({ - id: z.string().optional(), - createdAt: z.coerce.date().optional(), - registeredAt: z.coerce.date(), - type: DeregisterReasonTypeSchema, - details: z.string().optional().nullable(), - userGrade: z.number().int().optional().nullable(), - eventId: z.string() -}).strict(); -export const DeregisterReasonUncheckedCreateWithoutUserInputObjectSchema: z.ZodType = z.lazy(__makeSchema_DeregisterReasonUncheckedCreateWithoutUserInput_schema) as unknown as z.ZodType; -export const DeregisterReasonUncheckedCreateWithoutUserInputObjectZodSchema = z.lazy(__makeSchema_DeregisterReasonUncheckedCreateWithoutUserInput_schema); - - -// File: DeregisterReasonCreateOrConnectWithoutUserInput.schema.ts -const __makeSchema_DeregisterReasonCreateOrConnectWithoutUserInput_schema = () => z.object({ - get where(){ return DeregisterReasonWhereUniqueInputObjectSchema; }, - create: z.union([DeregisterReasonCreateWithoutUserInputObjectSchema, DeregisterReasonUncheckedCreateWithoutUserInputObjectSchema]) -}).strict(); -export const DeregisterReasonCreateOrConnectWithoutUserInputObjectSchema: z.ZodType = z.lazy(__makeSchema_DeregisterReasonCreateOrConnectWithoutUserInput_schema) as unknown as z.ZodType; -export const DeregisterReasonCreateOrConnectWithoutUserInputObjectZodSchema = z.lazy(__makeSchema_DeregisterReasonCreateOrConnectWithoutUserInput_schema); - - -// File: DeregisterReasonCreateManyUserInputEnvelope.schema.ts -const __makeSchema_DeregisterReasonCreateManyUserInputEnvelope_schema = () => z.object({ - data: z.union([DeregisterReasonCreateManyUserInputObjectSchema, DeregisterReasonCreateManyUserInputObjectSchema.array()]), - skipDuplicates: z.boolean().optional() -}).strict(); -export const DeregisterReasonCreateManyUserInputEnvelopeObjectSchema: z.ZodType = z.lazy(__makeSchema_DeregisterReasonCreateManyUserInputEnvelope_schema) as unknown as z.ZodType; -export const DeregisterReasonCreateManyUserInputEnvelopeObjectZodSchema = z.lazy(__makeSchema_DeregisterReasonCreateManyUserInputEnvelope_schema); - - -// File: NotificationRecipientCreateWithoutUserInput.schema.ts -const __makeSchema_NotificationRecipientCreateWithoutUserInput_schema = () => z.object({ - id: z.string().optional(), - readAt: z.coerce.date(), - get notification(){ return NotificationCreateNestedOneWithoutRecipientsInputObjectSchema; } -}).strict(); -export const NotificationRecipientCreateWithoutUserInputObjectSchema: z.ZodType = z.lazy(__makeSchema_NotificationRecipientCreateWithoutUserInput_schema) as unknown as z.ZodType; -export const NotificationRecipientCreateWithoutUserInputObjectZodSchema = z.lazy(__makeSchema_NotificationRecipientCreateWithoutUserInput_schema); - - -// File: NotificationRecipientUncheckedCreateWithoutUserInput.schema.ts -const __makeSchema_NotificationRecipientUncheckedCreateWithoutUserInput_schema = () => z.object({ - id: z.string().optional(), - readAt: z.coerce.date(), - notificationId: z.string() -}).strict(); -export const NotificationRecipientUncheckedCreateWithoutUserInputObjectSchema: z.ZodType = z.lazy(__makeSchema_NotificationRecipientUncheckedCreateWithoutUserInput_schema) as unknown as z.ZodType; -export const NotificationRecipientUncheckedCreateWithoutUserInputObjectZodSchema = z.lazy(__makeSchema_NotificationRecipientUncheckedCreateWithoutUserInput_schema); - - -// File: NotificationRecipientCreateOrConnectWithoutUserInput.schema.ts -const __makeSchema_NotificationRecipientCreateOrConnectWithoutUserInput_schema = () => z.object({ - get where(){ return NotificationRecipientWhereUniqueInputObjectSchema; }, - create: z.union([NotificationRecipientCreateWithoutUserInputObjectSchema, NotificationRecipientUncheckedCreateWithoutUserInputObjectSchema]) -}).strict(); -export const NotificationRecipientCreateOrConnectWithoutUserInputObjectSchema: z.ZodType = z.lazy(__makeSchema_NotificationRecipientCreateOrConnectWithoutUserInput_schema) as unknown as z.ZodType; -export const NotificationRecipientCreateOrConnectWithoutUserInputObjectZodSchema = z.lazy(__makeSchema_NotificationRecipientCreateOrConnectWithoutUserInput_schema); - - -// File: NotificationRecipientCreateManyUserInputEnvelope.schema.ts -const __makeSchema_NotificationRecipientCreateManyUserInputEnvelope_schema = () => z.object({ - data: z.union([NotificationRecipientCreateManyUserInputObjectSchema, NotificationRecipientCreateManyUserInputObjectSchema.array()]), - skipDuplicates: z.boolean().optional() -}).strict(); -export const NotificationRecipientCreateManyUserInputEnvelopeObjectSchema: z.ZodType = z.lazy(__makeSchema_NotificationRecipientCreateManyUserInputEnvelope_schema) as unknown as z.ZodType; -export const NotificationRecipientCreateManyUserInputEnvelopeObjectZodSchema = z.lazy(__makeSchema_NotificationRecipientCreateManyUserInputEnvelope_schema); - - -// File: NotificationCreateWithoutCreatedByInput.schema.ts -const __makeSchema_NotificationCreateWithoutCreatedByInput_schema = () => z.object({ - id: z.string().optional(), - createdAt: z.coerce.date().optional(), - updatedAt: z.coerce.date().optional(), - title: z.string(), - shortDescription: z.string().optional().nullable(), - content: z.string(), - type: NotificationTypeSchema, - payload: z.string().optional().nullable(), - payloadType: NotificationPayloadTypeSchema, - get actorGroup(){ return GroupCreateNestedOneWithoutNotificationsInputObjectSchema; }, - get lastUpdatedBy(){ return UserCreateNestedOneWithoutNotificationsUpdatedInputObjectSchema.optional(); }, - get task(){ return TaskCreateNestedOneWithoutNotificationsInputObjectSchema.optional(); }, - get recipients(){ return NotificationRecipientCreateNestedManyWithoutNotificationInputObjectSchema.optional(); } -}).strict(); -export const NotificationCreateWithoutCreatedByInputObjectSchema: z.ZodType = z.lazy(__makeSchema_NotificationCreateWithoutCreatedByInput_schema) as unknown as z.ZodType; -export const NotificationCreateWithoutCreatedByInputObjectZodSchema = z.lazy(__makeSchema_NotificationCreateWithoutCreatedByInput_schema); - - -// File: NotificationUncheckedCreateWithoutCreatedByInput.schema.ts -const __makeSchema_NotificationUncheckedCreateWithoutCreatedByInput_schema = () => z.object({ - id: z.string().optional(), - createdAt: z.coerce.date().optional(), - updatedAt: z.coerce.date().optional(), - title: z.string(), - shortDescription: z.string().optional().nullable(), - content: z.string(), - type: NotificationTypeSchema, - payload: z.string().optional().nullable(), - payloadType: NotificationPayloadTypeSchema, - actorGroupId: z.string(), - lastUpdatedById: z.string().optional().nullable(), - taskId: z.string().optional().nullable(), - get recipients(){ return NotificationRecipientUncheckedCreateNestedManyWithoutNotificationInputObjectSchema.optional(); } -}).strict(); -export const NotificationUncheckedCreateWithoutCreatedByInputObjectSchema: z.ZodType = z.lazy(__makeSchema_NotificationUncheckedCreateWithoutCreatedByInput_schema) as unknown as z.ZodType; -export const NotificationUncheckedCreateWithoutCreatedByInputObjectZodSchema = z.lazy(__makeSchema_NotificationUncheckedCreateWithoutCreatedByInput_schema); - - -// File: NotificationCreateOrConnectWithoutCreatedByInput.schema.ts -const __makeSchema_NotificationCreateOrConnectWithoutCreatedByInput_schema = () => z.object({ - get where(){ return NotificationWhereUniqueInputObjectSchema; }, - create: z.union([NotificationCreateWithoutCreatedByInputObjectSchema, NotificationUncheckedCreateWithoutCreatedByInputObjectSchema]) -}).strict(); -export const NotificationCreateOrConnectWithoutCreatedByInputObjectSchema: z.ZodType = z.lazy(__makeSchema_NotificationCreateOrConnectWithoutCreatedByInput_schema) as unknown as z.ZodType; -export const NotificationCreateOrConnectWithoutCreatedByInputObjectZodSchema = z.lazy(__makeSchema_NotificationCreateOrConnectWithoutCreatedByInput_schema); - - -// File: NotificationCreateManyCreatedByInputEnvelope.schema.ts -const __makeSchema_NotificationCreateManyCreatedByInputEnvelope_schema = () => z.object({ - data: z.union([NotificationCreateManyCreatedByInputObjectSchema, NotificationCreateManyCreatedByInputObjectSchema.array()]), - skipDuplicates: z.boolean().optional() -}).strict(); -export const NotificationCreateManyCreatedByInputEnvelopeObjectSchema: z.ZodType = z.lazy(__makeSchema_NotificationCreateManyCreatedByInputEnvelope_schema) as unknown as z.ZodType; -export const NotificationCreateManyCreatedByInputEnvelopeObjectZodSchema = z.lazy(__makeSchema_NotificationCreateManyCreatedByInputEnvelope_schema); - - -// File: NotificationCreateWithoutLastUpdatedByInput.schema.ts -const __makeSchema_NotificationCreateWithoutLastUpdatedByInput_schema = () => z.object({ - id: z.string().optional(), - createdAt: z.coerce.date().optional(), - updatedAt: z.coerce.date().optional(), - title: z.string(), - shortDescription: z.string().optional().nullable(), - content: z.string(), - type: NotificationTypeSchema, - payload: z.string().optional().nullable(), - payloadType: NotificationPayloadTypeSchema, - get actorGroup(){ return GroupCreateNestedOneWithoutNotificationsInputObjectSchema; }, - get createdBy(){ return UserCreateNestedOneWithoutNotificationsCreatedInputObjectSchema.optional(); }, - get task(){ return TaskCreateNestedOneWithoutNotificationsInputObjectSchema.optional(); }, - get recipients(){ return NotificationRecipientCreateNestedManyWithoutNotificationInputObjectSchema.optional(); } -}).strict(); -export const NotificationCreateWithoutLastUpdatedByInputObjectSchema: z.ZodType = z.lazy(__makeSchema_NotificationCreateWithoutLastUpdatedByInput_schema) as unknown as z.ZodType; -export const NotificationCreateWithoutLastUpdatedByInputObjectZodSchema = z.lazy(__makeSchema_NotificationCreateWithoutLastUpdatedByInput_schema); - - -// File: NotificationUncheckedCreateWithoutLastUpdatedByInput.schema.ts -const __makeSchema_NotificationUncheckedCreateWithoutLastUpdatedByInput_schema = () => z.object({ - id: z.string().optional(), - createdAt: z.coerce.date().optional(), - updatedAt: z.coerce.date().optional(), - title: z.string(), - shortDescription: z.string().optional().nullable(), - content: z.string(), - type: NotificationTypeSchema, - payload: z.string().optional().nullable(), - payloadType: NotificationPayloadTypeSchema, - actorGroupId: z.string(), - createdById: z.string().optional().nullable(), - taskId: z.string().optional().nullable(), - get recipients(){ return NotificationRecipientUncheckedCreateNestedManyWithoutNotificationInputObjectSchema.optional(); } -}).strict(); -export const NotificationUncheckedCreateWithoutLastUpdatedByInputObjectSchema: z.ZodType = z.lazy(__makeSchema_NotificationUncheckedCreateWithoutLastUpdatedByInput_schema) as unknown as z.ZodType; -export const NotificationUncheckedCreateWithoutLastUpdatedByInputObjectZodSchema = z.lazy(__makeSchema_NotificationUncheckedCreateWithoutLastUpdatedByInput_schema); - - -// File: NotificationCreateOrConnectWithoutLastUpdatedByInput.schema.ts -const __makeSchema_NotificationCreateOrConnectWithoutLastUpdatedByInput_schema = () => z.object({ - get where(){ return NotificationWhereUniqueInputObjectSchema; }, - create: z.union([NotificationCreateWithoutLastUpdatedByInputObjectSchema, NotificationUncheckedCreateWithoutLastUpdatedByInputObjectSchema]) -}).strict(); -export const NotificationCreateOrConnectWithoutLastUpdatedByInputObjectSchema: z.ZodType = z.lazy(__makeSchema_NotificationCreateOrConnectWithoutLastUpdatedByInput_schema) as unknown as z.ZodType; -export const NotificationCreateOrConnectWithoutLastUpdatedByInputObjectZodSchema = z.lazy(__makeSchema_NotificationCreateOrConnectWithoutLastUpdatedByInput_schema); - - -// File: NotificationCreateManyLastUpdatedByInputEnvelope.schema.ts -const __makeSchema_NotificationCreateManyLastUpdatedByInputEnvelope_schema = () => z.object({ - data: z.union([NotificationCreateManyLastUpdatedByInputObjectSchema, NotificationCreateManyLastUpdatedByInputObjectSchema.array()]), - skipDuplicates: z.boolean().optional() -}).strict(); -export const NotificationCreateManyLastUpdatedByInputEnvelopeObjectSchema: z.ZodType = z.lazy(__makeSchema_NotificationCreateManyLastUpdatedByInputEnvelope_schema) as unknown as z.ZodType; -export const NotificationCreateManyLastUpdatedByInputEnvelopeObjectZodSchema = z.lazy(__makeSchema_NotificationCreateManyLastUpdatedByInputEnvelope_schema); - - -// File: ContestantCreateWithoutUserInput.schema.ts -const __makeSchema_ContestantCreateWithoutUserInput_schema = () => z.object({ - id: z.string().optional(), - resultValue: z.number().int().optional().nullable(), - get contest(){ return ContestCreateNestedOneWithoutContestantsInputObjectSchema; }, - get team(){ return ContestTeamCreateNestedOneWithoutContestantInputObjectSchema.optional(); }, - get wonContest(){ return ContestCreateNestedOneWithoutWinnerContestantInputObjectSchema.optional(); } -}).strict(); -export const ContestantCreateWithoutUserInputObjectSchema: z.ZodType = z.lazy(__makeSchema_ContestantCreateWithoutUserInput_schema) as unknown as z.ZodType; -export const ContestantCreateWithoutUserInputObjectZodSchema = z.lazy(__makeSchema_ContestantCreateWithoutUserInput_schema); - - -// File: ContestantUncheckedCreateWithoutUserInput.schema.ts -const __makeSchema_ContestantUncheckedCreateWithoutUserInput_schema = () => z.object({ - id: z.string().optional(), - resultValue: z.number().int().optional().nullable(), - contestId: z.string(), - get team(){ return ContestTeamUncheckedCreateNestedOneWithoutContestantInputObjectSchema.optional(); }, - get wonContest(){ return ContestUncheckedCreateNestedOneWithoutWinnerContestantInputObjectSchema.optional(); } -}).strict(); -export const ContestantUncheckedCreateWithoutUserInputObjectSchema: z.ZodType = z.lazy(__makeSchema_ContestantUncheckedCreateWithoutUserInput_schema) as unknown as z.ZodType; -export const ContestantUncheckedCreateWithoutUserInputObjectZodSchema = z.lazy(__makeSchema_ContestantUncheckedCreateWithoutUserInput_schema); - - -// File: ContestantCreateOrConnectWithoutUserInput.schema.ts -const __makeSchema_ContestantCreateOrConnectWithoutUserInput_schema = () => z.object({ - get where(){ return ContestantWhereUniqueInputObjectSchema; }, - create: z.union([ContestantCreateWithoutUserInputObjectSchema, ContestantUncheckedCreateWithoutUserInputObjectSchema]) -}).strict(); -export const ContestantCreateOrConnectWithoutUserInputObjectSchema: z.ZodType = z.lazy(__makeSchema_ContestantCreateOrConnectWithoutUserInput_schema) as unknown as z.ZodType; -export const ContestantCreateOrConnectWithoutUserInputObjectZodSchema = z.lazy(__makeSchema_ContestantCreateOrConnectWithoutUserInput_schema); - - -// File: ContestantCreateManyUserInputEnvelope.schema.ts -const __makeSchema_ContestantCreateManyUserInputEnvelope_schema = () => z.object({ - data: z.union([ContestantCreateManyUserInputObjectSchema, ContestantCreateManyUserInputObjectSchema.array()]), - skipDuplicates: z.boolean().optional() -}).strict(); -export const ContestantCreateManyUserInputEnvelopeObjectSchema: z.ZodType = z.lazy(__makeSchema_ContestantCreateManyUserInputEnvelope_schema) as unknown as z.ZodType; -export const ContestantCreateManyUserInputEnvelopeObjectZodSchema = z.lazy(__makeSchema_ContestantCreateManyUserInputEnvelope_schema); - - -// File: ContestTeamCreateWithoutMembersInput.schema.ts -const __makeSchema_ContestTeamCreateWithoutMembersInput_schema = () => z.object({ - id: z.string().optional(), - name: z.string(), - get contestant(){ return ContestantCreateNestedOneWithoutTeamInputObjectSchema; } -}).strict(); -export const ContestTeamCreateWithoutMembersInputObjectSchema: z.ZodType = z.lazy(__makeSchema_ContestTeamCreateWithoutMembersInput_schema) as unknown as z.ZodType; -export const ContestTeamCreateWithoutMembersInputObjectZodSchema = z.lazy(__makeSchema_ContestTeamCreateWithoutMembersInput_schema); - - -// File: ContestTeamUncheckedCreateWithoutMembersInput.schema.ts -const __makeSchema_ContestTeamUncheckedCreateWithoutMembersInput_schema = () => z.object({ - id: z.string().optional(), - name: z.string(), - contestantId: z.string() -}).strict(); -export const ContestTeamUncheckedCreateWithoutMembersInputObjectSchema: z.ZodType = z.lazy(__makeSchema_ContestTeamUncheckedCreateWithoutMembersInput_schema) as unknown as z.ZodType; -export const ContestTeamUncheckedCreateWithoutMembersInputObjectZodSchema = z.lazy(__makeSchema_ContestTeamUncheckedCreateWithoutMembersInput_schema); - - -// File: ContestTeamCreateOrConnectWithoutMembersInput.schema.ts -const __makeSchema_ContestTeamCreateOrConnectWithoutMembersInput_schema = () => z.object({ - get where(){ return ContestTeamWhereUniqueInputObjectSchema; }, - create: z.union([ContestTeamCreateWithoutMembersInputObjectSchema, ContestTeamUncheckedCreateWithoutMembersInputObjectSchema]) -}).strict(); -export const ContestTeamCreateOrConnectWithoutMembersInputObjectSchema: z.ZodType = z.lazy(__makeSchema_ContestTeamCreateOrConnectWithoutMembersInput_schema) as unknown as z.ZodType; -export const ContestTeamCreateOrConnectWithoutMembersInputObjectZodSchema = z.lazy(__makeSchema_ContestTeamCreateOrConnectWithoutMembersInput_schema); - - -// File: PrivacyPermissionsUpsertWithoutUserInput.schema.ts -const __makeSchema_PrivacyPermissionsUpsertWithoutUserInput_schema = () => z.object({ - update: z.union([PrivacyPermissionsUpdateWithoutUserInputObjectSchema, PrivacyPermissionsUncheckedUpdateWithoutUserInputObjectSchema]), - create: z.union([PrivacyPermissionsCreateWithoutUserInputObjectSchema, PrivacyPermissionsUncheckedCreateWithoutUserInputObjectSchema]), - get where(){ return PrivacyPermissionsWhereInputObjectSchema.optional(); } -}).strict(); -export const PrivacyPermissionsUpsertWithoutUserInputObjectSchema: z.ZodType = z.lazy(__makeSchema_PrivacyPermissionsUpsertWithoutUserInput_schema) as unknown as z.ZodType; -export const PrivacyPermissionsUpsertWithoutUserInputObjectZodSchema = z.lazy(__makeSchema_PrivacyPermissionsUpsertWithoutUserInput_schema); - - -// File: PrivacyPermissionsUpdateToOneWithWhereWithoutUserInput.schema.ts -const __makeSchema_PrivacyPermissionsUpdateToOneWithWhereWithoutUserInput_schema = () => z.object({ - get where(){ return PrivacyPermissionsWhereInputObjectSchema.optional(); }, - data: z.union([PrivacyPermissionsUpdateWithoutUserInputObjectSchema, PrivacyPermissionsUncheckedUpdateWithoutUserInputObjectSchema]) -}).strict(); -export const PrivacyPermissionsUpdateToOneWithWhereWithoutUserInputObjectSchema: z.ZodType = z.lazy(__makeSchema_PrivacyPermissionsUpdateToOneWithWhereWithoutUserInput_schema) as unknown as z.ZodType; -export const PrivacyPermissionsUpdateToOneWithWhereWithoutUserInputObjectZodSchema = z.lazy(__makeSchema_PrivacyPermissionsUpdateToOneWithWhereWithoutUserInput_schema); - - -// File: PrivacyPermissionsUpdateWithoutUserInput.schema.ts -const __makeSchema_PrivacyPermissionsUpdateWithoutUserInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - profileVisible: z.union([z.boolean(), BoolFieldUpdateOperationsInputObjectSchema]).optional(), - usernameVisible: z.union([z.boolean(), BoolFieldUpdateOperationsInputObjectSchema]).optional(), - emailVisible: z.union([z.boolean(), BoolFieldUpdateOperationsInputObjectSchema]).optional(), - phoneVisible: z.union([z.boolean(), BoolFieldUpdateOperationsInputObjectSchema]).optional(), - addressVisible: z.union([z.boolean(), BoolFieldUpdateOperationsInputObjectSchema]).optional(), - attendanceVisible: z.union([z.boolean(), BoolFieldUpdateOperationsInputObjectSchema]).optional(), - createdAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - updatedAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional() -}).strict(); -export const PrivacyPermissionsUpdateWithoutUserInputObjectSchema: z.ZodType = z.lazy(__makeSchema_PrivacyPermissionsUpdateWithoutUserInput_schema) as unknown as z.ZodType; -export const PrivacyPermissionsUpdateWithoutUserInputObjectZodSchema = z.lazy(__makeSchema_PrivacyPermissionsUpdateWithoutUserInput_schema); - - -// File: PrivacyPermissionsUncheckedUpdateWithoutUserInput.schema.ts -const __makeSchema_PrivacyPermissionsUncheckedUpdateWithoutUserInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - profileVisible: z.union([z.boolean(), BoolFieldUpdateOperationsInputObjectSchema]).optional(), - usernameVisible: z.union([z.boolean(), BoolFieldUpdateOperationsInputObjectSchema]).optional(), - emailVisible: z.union([z.boolean(), BoolFieldUpdateOperationsInputObjectSchema]).optional(), - phoneVisible: z.union([z.boolean(), BoolFieldUpdateOperationsInputObjectSchema]).optional(), - addressVisible: z.union([z.boolean(), BoolFieldUpdateOperationsInputObjectSchema]).optional(), - attendanceVisible: z.union([z.boolean(), BoolFieldUpdateOperationsInputObjectSchema]).optional(), - createdAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - updatedAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional() -}).strict(); -export const PrivacyPermissionsUncheckedUpdateWithoutUserInputObjectSchema: z.ZodType = z.lazy(__makeSchema_PrivacyPermissionsUncheckedUpdateWithoutUserInput_schema) as unknown as z.ZodType; -export const PrivacyPermissionsUncheckedUpdateWithoutUserInputObjectZodSchema = z.lazy(__makeSchema_PrivacyPermissionsUncheckedUpdateWithoutUserInput_schema); - - -// File: NotificationPermissionsUpsertWithoutUserInput.schema.ts -const __makeSchema_NotificationPermissionsUpsertWithoutUserInput_schema = () => z.object({ - update: z.union([NotificationPermissionsUpdateWithoutUserInputObjectSchema, NotificationPermissionsUncheckedUpdateWithoutUserInputObjectSchema]), - create: z.union([NotificationPermissionsCreateWithoutUserInputObjectSchema, NotificationPermissionsUncheckedCreateWithoutUserInputObjectSchema]), - get where(){ return NotificationPermissionsWhereInputObjectSchema.optional(); } -}).strict(); -export const NotificationPermissionsUpsertWithoutUserInputObjectSchema: z.ZodType = z.lazy(__makeSchema_NotificationPermissionsUpsertWithoutUserInput_schema) as unknown as z.ZodType; -export const NotificationPermissionsUpsertWithoutUserInputObjectZodSchema = z.lazy(__makeSchema_NotificationPermissionsUpsertWithoutUserInput_schema); - - -// File: NotificationPermissionsUpdateToOneWithWhereWithoutUserInput.schema.ts -const __makeSchema_NotificationPermissionsUpdateToOneWithWhereWithoutUserInput_schema = () => z.object({ - get where(){ return NotificationPermissionsWhereInputObjectSchema.optional(); }, - data: z.union([NotificationPermissionsUpdateWithoutUserInputObjectSchema, NotificationPermissionsUncheckedUpdateWithoutUserInputObjectSchema]) -}).strict(); -export const NotificationPermissionsUpdateToOneWithWhereWithoutUserInputObjectSchema: z.ZodType = z.lazy(__makeSchema_NotificationPermissionsUpdateToOneWithWhereWithoutUserInput_schema) as unknown as z.ZodType; -export const NotificationPermissionsUpdateToOneWithWhereWithoutUserInputObjectZodSchema = z.lazy(__makeSchema_NotificationPermissionsUpdateToOneWithWhereWithoutUserInput_schema); - - -// File: NotificationPermissionsUpdateWithoutUserInput.schema.ts -const __makeSchema_NotificationPermissionsUpdateWithoutUserInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - applications: z.union([z.boolean(), BoolFieldUpdateOperationsInputObjectSchema]).optional(), - newArticles: z.union([z.boolean(), BoolFieldUpdateOperationsInputObjectSchema]).optional(), - standardNotifications: z.union([z.boolean(), BoolFieldUpdateOperationsInputObjectSchema]).optional(), - groupMessages: z.union([z.boolean(), BoolFieldUpdateOperationsInputObjectSchema]).optional(), - markRulesUpdates: z.union([z.boolean(), BoolFieldUpdateOperationsInputObjectSchema]).optional(), - receipts: z.union([z.boolean(), BoolFieldUpdateOperationsInputObjectSchema]).optional(), - registrationByAdministrator: z.union([z.boolean(), BoolFieldUpdateOperationsInputObjectSchema]).optional(), - registrationStart: z.union([z.boolean(), BoolFieldUpdateOperationsInputObjectSchema]).optional(), - createdAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - updatedAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional() -}).strict(); -export const NotificationPermissionsUpdateWithoutUserInputObjectSchema: z.ZodType = z.lazy(__makeSchema_NotificationPermissionsUpdateWithoutUserInput_schema) as unknown as z.ZodType; -export const NotificationPermissionsUpdateWithoutUserInputObjectZodSchema = z.lazy(__makeSchema_NotificationPermissionsUpdateWithoutUserInput_schema); - - -// File: NotificationPermissionsUncheckedUpdateWithoutUserInput.schema.ts -const __makeSchema_NotificationPermissionsUncheckedUpdateWithoutUserInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - applications: z.union([z.boolean(), BoolFieldUpdateOperationsInputObjectSchema]).optional(), - newArticles: z.union([z.boolean(), BoolFieldUpdateOperationsInputObjectSchema]).optional(), - standardNotifications: z.union([z.boolean(), BoolFieldUpdateOperationsInputObjectSchema]).optional(), - groupMessages: z.union([z.boolean(), BoolFieldUpdateOperationsInputObjectSchema]).optional(), - markRulesUpdates: z.union([z.boolean(), BoolFieldUpdateOperationsInputObjectSchema]).optional(), - receipts: z.union([z.boolean(), BoolFieldUpdateOperationsInputObjectSchema]).optional(), - registrationByAdministrator: z.union([z.boolean(), BoolFieldUpdateOperationsInputObjectSchema]).optional(), - registrationStart: z.union([z.boolean(), BoolFieldUpdateOperationsInputObjectSchema]).optional(), - createdAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - updatedAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional() -}).strict(); -export const NotificationPermissionsUncheckedUpdateWithoutUserInputObjectSchema: z.ZodType = z.lazy(__makeSchema_NotificationPermissionsUncheckedUpdateWithoutUserInput_schema) as unknown as z.ZodType; -export const NotificationPermissionsUncheckedUpdateWithoutUserInputObjectZodSchema = z.lazy(__makeSchema_NotificationPermissionsUncheckedUpdateWithoutUserInput_schema); - - -// File: AttendeeUpsertWithWhereUniqueWithoutUserInput.schema.ts -const __makeSchema_AttendeeUpsertWithWhereUniqueWithoutUserInput_schema = () => z.object({ - get where(){ return AttendeeWhereUniqueInputObjectSchema; }, - update: z.union([AttendeeUpdateWithoutUserInputObjectSchema, AttendeeUncheckedUpdateWithoutUserInputObjectSchema]), - create: z.union([AttendeeCreateWithoutUserInputObjectSchema, AttendeeUncheckedCreateWithoutUserInputObjectSchema]) -}).strict(); -export const AttendeeUpsertWithWhereUniqueWithoutUserInputObjectSchema: z.ZodType = z.lazy(__makeSchema_AttendeeUpsertWithWhereUniqueWithoutUserInput_schema) as unknown as z.ZodType; -export const AttendeeUpsertWithWhereUniqueWithoutUserInputObjectZodSchema = z.lazy(__makeSchema_AttendeeUpsertWithWhereUniqueWithoutUserInput_schema); - - -// File: AttendeeUpdateWithWhereUniqueWithoutUserInput.schema.ts -const __makeSchema_AttendeeUpdateWithWhereUniqueWithoutUserInput_schema = () => z.object({ - get where(){ return AttendeeWhereUniqueInputObjectSchema; }, - data: z.union([AttendeeUpdateWithoutUserInputObjectSchema, AttendeeUncheckedUpdateWithoutUserInputObjectSchema]) -}).strict(); -export const AttendeeUpdateWithWhereUniqueWithoutUserInputObjectSchema: z.ZodType = z.lazy(__makeSchema_AttendeeUpdateWithWhereUniqueWithoutUserInput_schema) as unknown as z.ZodType; -export const AttendeeUpdateWithWhereUniqueWithoutUserInputObjectZodSchema = z.lazy(__makeSchema_AttendeeUpdateWithWhereUniqueWithoutUserInput_schema); - - -// File: AttendeeUpdateManyWithWhereWithoutUserInput.schema.ts -const __makeSchema_AttendeeUpdateManyWithWhereWithoutUserInput_schema = () => z.object({ - get where(){ return AttendeeScalarWhereInputObjectSchema; }, - data: z.union([AttendeeUpdateManyMutationInputObjectSchema, AttendeeUncheckedUpdateManyWithoutUserInputObjectSchema]) -}).strict(); -export const AttendeeUpdateManyWithWhereWithoutUserInputObjectSchema: z.ZodType = z.lazy(__makeSchema_AttendeeUpdateManyWithWhereWithoutUserInput_schema) as unknown as z.ZodType; -export const AttendeeUpdateManyWithWhereWithoutUserInputObjectZodSchema = z.lazy(__makeSchema_AttendeeUpdateManyWithWhereWithoutUserInput_schema); - - -// File: AttendeeScalarWhereInput.schema.ts -const __makeSchema_AttendeeScalarWhereInput_schema = () => z.object({ - AND: z.union([AttendeeScalarWhereInputObjectSchema, AttendeeScalarWhereInputObjectSchema.array()]).optional(), - get OR(){ return AttendeeScalarWhereInputObjectSchema.array().optional(); }, - NOT: z.union([AttendeeScalarWhereInputObjectSchema, AttendeeScalarWhereInputObjectSchema.array()]).optional(), - id: z.union([StringFilterObjectSchema, z.string()]).optional(), - userGrade: z.union([IntNullableFilterObjectSchema, z.number().int()]).optional().nullable(), - get selections(){ return JsonFilterObjectSchema.optional(); }, - reserved: z.union([BoolFilterObjectSchema, z.boolean()]).optional(), - earliestReservationAt: z.union([DateTimeFilterObjectSchema, z.coerce.date()]).optional(), - attendedAt: z.union([DateTimeNullableFilterObjectSchema, z.coerce.date()]).optional().nullable(), - createdAt: z.union([DateTimeFilterObjectSchema, z.coerce.date()]).optional(), - updatedAt: z.union([DateTimeFilterObjectSchema, z.coerce.date()]).optional(), - paymentDeadline: z.union([DateTimeNullableFilterObjectSchema, z.coerce.date()]).optional().nullable(), - paymentLink: z.union([StringNullableFilterObjectSchema, z.string()]).optional().nullable(), - paymentId: z.union([StringNullableFilterObjectSchema, z.string()]).optional().nullable(), - paymentReservedAt: z.union([DateTimeNullableFilterObjectSchema, z.coerce.date()]).optional().nullable(), - paymentChargeDeadline: z.union([DateTimeNullableFilterObjectSchema, z.coerce.date()]).optional().nullable(), - paymentChargedAt: z.union([DateTimeNullableFilterObjectSchema, z.coerce.date()]).optional().nullable(), - paymentRefundedAt: z.union([DateTimeNullableFilterObjectSchema, z.coerce.date()]).optional().nullable(), - paymentCheckoutUrl: z.union([StringNullableFilterObjectSchema, z.string()]).optional().nullable(), - attendanceId: z.union([StringFilterObjectSchema, z.string()]).optional(), - userId: z.union([StringFilterObjectSchema, z.string()]).optional(), - attendancePoolId: z.union([StringFilterObjectSchema, z.string()]).optional(), - paymentRefundedById: z.union([StringNullableFilterObjectSchema, z.string()]).optional().nullable() -}).strict(); -export const AttendeeScalarWhereInputObjectSchema: z.ZodType = z.lazy(__makeSchema_AttendeeScalarWhereInput_schema) as unknown as z.ZodType; -export const AttendeeScalarWhereInputObjectZodSchema = z.lazy(__makeSchema_AttendeeScalarWhereInput_schema); - - -// File: PersonalMarkUpsertWithWhereUniqueWithoutUserInput.schema.ts -const __makeSchema_PersonalMarkUpsertWithWhereUniqueWithoutUserInput_schema = () => z.object({ - get where(){ return PersonalMarkWhereUniqueInputObjectSchema; }, - update: z.union([PersonalMarkUpdateWithoutUserInputObjectSchema, PersonalMarkUncheckedUpdateWithoutUserInputObjectSchema]), - create: z.union([PersonalMarkCreateWithoutUserInputObjectSchema, PersonalMarkUncheckedCreateWithoutUserInputObjectSchema]) -}).strict(); -export const PersonalMarkUpsertWithWhereUniqueWithoutUserInputObjectSchema: z.ZodType = z.lazy(__makeSchema_PersonalMarkUpsertWithWhereUniqueWithoutUserInput_schema) as unknown as z.ZodType; -export const PersonalMarkUpsertWithWhereUniqueWithoutUserInputObjectZodSchema = z.lazy(__makeSchema_PersonalMarkUpsertWithWhereUniqueWithoutUserInput_schema); - - -// File: PersonalMarkUpdateWithWhereUniqueWithoutUserInput.schema.ts -const __makeSchema_PersonalMarkUpdateWithWhereUniqueWithoutUserInput_schema = () => z.object({ - get where(){ return PersonalMarkWhereUniqueInputObjectSchema; }, - data: z.union([PersonalMarkUpdateWithoutUserInputObjectSchema, PersonalMarkUncheckedUpdateWithoutUserInputObjectSchema]) -}).strict(); -export const PersonalMarkUpdateWithWhereUniqueWithoutUserInputObjectSchema: z.ZodType = z.lazy(__makeSchema_PersonalMarkUpdateWithWhereUniqueWithoutUserInput_schema) as unknown as z.ZodType; -export const PersonalMarkUpdateWithWhereUniqueWithoutUserInputObjectZodSchema = z.lazy(__makeSchema_PersonalMarkUpdateWithWhereUniqueWithoutUserInput_schema); - - -// File: PersonalMarkUpdateManyWithWhereWithoutUserInput.schema.ts -const __makeSchema_PersonalMarkUpdateManyWithWhereWithoutUserInput_schema = () => z.object({ - get where(){ return PersonalMarkScalarWhereInputObjectSchema; }, - data: z.union([PersonalMarkUpdateManyMutationInputObjectSchema, PersonalMarkUncheckedUpdateManyWithoutUserInputObjectSchema]) -}).strict(); -export const PersonalMarkUpdateManyWithWhereWithoutUserInputObjectSchema: z.ZodType = z.lazy(__makeSchema_PersonalMarkUpdateManyWithWhereWithoutUserInput_schema) as unknown as z.ZodType; -export const PersonalMarkUpdateManyWithWhereWithoutUserInputObjectZodSchema = z.lazy(__makeSchema_PersonalMarkUpdateManyWithWhereWithoutUserInput_schema); - - -// File: PersonalMarkScalarWhereInput.schema.ts -const __makeSchema_PersonalMarkScalarWhereInput_schema = () => z.object({ - AND: z.union([PersonalMarkScalarWhereInputObjectSchema, PersonalMarkScalarWhereInputObjectSchema.array()]).optional(), - get OR(){ return PersonalMarkScalarWhereInputObjectSchema.array().optional(); }, - NOT: z.union([PersonalMarkScalarWhereInputObjectSchema, PersonalMarkScalarWhereInputObjectSchema.array()]).optional(), - createdAt: z.union([DateTimeFilterObjectSchema, z.coerce.date()]).optional(), - markId: z.union([StringFilterObjectSchema, z.string()]).optional(), - userId: z.union([StringFilterObjectSchema, z.string()]).optional(), - givenById: z.union([StringNullableFilterObjectSchema, z.string()]).optional().nullable() -}).strict(); -export const PersonalMarkScalarWhereInputObjectSchema: z.ZodType = z.lazy(__makeSchema_PersonalMarkScalarWhereInput_schema) as unknown as z.ZodType; -export const PersonalMarkScalarWhereInputObjectZodSchema = z.lazy(__makeSchema_PersonalMarkScalarWhereInput_schema); - - -// File: GroupMembershipUpsertWithWhereUniqueWithoutUserInput.schema.ts -const __makeSchema_GroupMembershipUpsertWithWhereUniqueWithoutUserInput_schema = () => z.object({ - get where(){ return GroupMembershipWhereUniqueInputObjectSchema; }, - update: z.union([GroupMembershipUpdateWithoutUserInputObjectSchema, GroupMembershipUncheckedUpdateWithoutUserInputObjectSchema]), - create: z.union([GroupMembershipCreateWithoutUserInputObjectSchema, GroupMembershipUncheckedCreateWithoutUserInputObjectSchema]) -}).strict(); -export const GroupMembershipUpsertWithWhereUniqueWithoutUserInputObjectSchema: z.ZodType = z.lazy(__makeSchema_GroupMembershipUpsertWithWhereUniqueWithoutUserInput_schema) as unknown as z.ZodType; -export const GroupMembershipUpsertWithWhereUniqueWithoutUserInputObjectZodSchema = z.lazy(__makeSchema_GroupMembershipUpsertWithWhereUniqueWithoutUserInput_schema); - - -// File: GroupMembershipUpdateWithWhereUniqueWithoutUserInput.schema.ts -const __makeSchema_GroupMembershipUpdateWithWhereUniqueWithoutUserInput_schema = () => z.object({ - get where(){ return GroupMembershipWhereUniqueInputObjectSchema; }, - data: z.union([GroupMembershipUpdateWithoutUserInputObjectSchema, GroupMembershipUncheckedUpdateWithoutUserInputObjectSchema]) -}).strict(); -export const GroupMembershipUpdateWithWhereUniqueWithoutUserInputObjectSchema: z.ZodType = z.lazy(__makeSchema_GroupMembershipUpdateWithWhereUniqueWithoutUserInput_schema) as unknown as z.ZodType; -export const GroupMembershipUpdateWithWhereUniqueWithoutUserInputObjectZodSchema = z.lazy(__makeSchema_GroupMembershipUpdateWithWhereUniqueWithoutUserInput_schema); - - -// File: GroupMembershipUpdateManyWithWhereWithoutUserInput.schema.ts -const __makeSchema_GroupMembershipUpdateManyWithWhereWithoutUserInput_schema = () => z.object({ - get where(){ return GroupMembershipScalarWhereInputObjectSchema; }, - data: z.union([GroupMembershipUpdateManyMutationInputObjectSchema, GroupMembershipUncheckedUpdateManyWithoutUserInputObjectSchema]) -}).strict(); -export const GroupMembershipUpdateManyWithWhereWithoutUserInputObjectSchema: z.ZodType = z.lazy(__makeSchema_GroupMembershipUpdateManyWithWhereWithoutUserInput_schema) as unknown as z.ZodType; -export const GroupMembershipUpdateManyWithWhereWithoutUserInputObjectZodSchema = z.lazy(__makeSchema_GroupMembershipUpdateManyWithWhereWithoutUserInput_schema); - - -// File: GroupMembershipScalarWhereInput.schema.ts -const __makeSchema_GroupMembershipScalarWhereInput_schema = () => z.object({ - AND: z.union([GroupMembershipScalarWhereInputObjectSchema, GroupMembershipScalarWhereInputObjectSchema.array()]).optional(), - get OR(){ return GroupMembershipScalarWhereInputObjectSchema.array().optional(); }, - NOT: z.union([GroupMembershipScalarWhereInputObjectSchema, GroupMembershipScalarWhereInputObjectSchema.array()]).optional(), - id: z.union([StringFilterObjectSchema, z.string()]).optional(), - start: z.union([DateTimeFilterObjectSchema, z.coerce.date()]).optional(), - end: z.union([DateTimeNullableFilterObjectSchema, z.coerce.date()]).optional().nullable(), - createdAt: z.union([DateTimeFilterObjectSchema, z.coerce.date()]).optional(), - updatedAt: z.union([DateTimeFilterObjectSchema, z.coerce.date()]).optional(), - groupId: z.union([StringFilterObjectSchema, z.string()]).optional(), - userId: z.union([StringFilterObjectSchema, z.string()]).optional() -}).strict(); -export const GroupMembershipScalarWhereInputObjectSchema: z.ZodType = z.lazy(__makeSchema_GroupMembershipScalarWhereInput_schema) as unknown as z.ZodType; -export const GroupMembershipScalarWhereInputObjectZodSchema = z.lazy(__makeSchema_GroupMembershipScalarWhereInput_schema); - - -// File: MembershipUpsertWithWhereUniqueWithoutUserInput.schema.ts -const __makeSchema_MembershipUpsertWithWhereUniqueWithoutUserInput_schema = () => z.object({ - get where(){ return MembershipWhereUniqueInputObjectSchema; }, - update: z.union([MembershipUpdateWithoutUserInputObjectSchema, MembershipUncheckedUpdateWithoutUserInputObjectSchema]), - create: z.union([MembershipCreateWithoutUserInputObjectSchema, MembershipUncheckedCreateWithoutUserInputObjectSchema]) -}).strict(); -export const MembershipUpsertWithWhereUniqueWithoutUserInputObjectSchema: z.ZodType = z.lazy(__makeSchema_MembershipUpsertWithWhereUniqueWithoutUserInput_schema) as unknown as z.ZodType; -export const MembershipUpsertWithWhereUniqueWithoutUserInputObjectZodSchema = z.lazy(__makeSchema_MembershipUpsertWithWhereUniqueWithoutUserInput_schema); - - -// File: MembershipUpdateWithWhereUniqueWithoutUserInput.schema.ts -const __makeSchema_MembershipUpdateWithWhereUniqueWithoutUserInput_schema = () => z.object({ - get where(){ return MembershipWhereUniqueInputObjectSchema; }, - data: z.union([MembershipUpdateWithoutUserInputObjectSchema, MembershipUncheckedUpdateWithoutUserInputObjectSchema]) -}).strict(); -export const MembershipUpdateWithWhereUniqueWithoutUserInputObjectSchema: z.ZodType = z.lazy(__makeSchema_MembershipUpdateWithWhereUniqueWithoutUserInput_schema) as unknown as z.ZodType; -export const MembershipUpdateWithWhereUniqueWithoutUserInputObjectZodSchema = z.lazy(__makeSchema_MembershipUpdateWithWhereUniqueWithoutUserInput_schema); - - -// File: MembershipUpdateManyWithWhereWithoutUserInput.schema.ts -const __makeSchema_MembershipUpdateManyWithWhereWithoutUserInput_schema = () => z.object({ - get where(){ return MembershipScalarWhereInputObjectSchema; }, - data: z.union([MembershipUpdateManyMutationInputObjectSchema, MembershipUncheckedUpdateManyWithoutUserInputObjectSchema]) -}).strict(); -export const MembershipUpdateManyWithWhereWithoutUserInputObjectSchema: z.ZodType = z.lazy(__makeSchema_MembershipUpdateManyWithWhereWithoutUserInput_schema) as unknown as z.ZodType; -export const MembershipUpdateManyWithWhereWithoutUserInputObjectZodSchema = z.lazy(__makeSchema_MembershipUpdateManyWithWhereWithoutUserInput_schema); - - -// File: MembershipScalarWhereInput.schema.ts -const __makeSchema_MembershipScalarWhereInput_schema = () => z.object({ - AND: z.union([MembershipScalarWhereInputObjectSchema, MembershipScalarWhereInputObjectSchema.array()]).optional(), - get OR(){ return MembershipScalarWhereInputObjectSchema.array().optional(); }, - NOT: z.union([MembershipScalarWhereInputObjectSchema, MembershipScalarWhereInputObjectSchema.array()]).optional(), - id: z.union([StringFilterObjectSchema, z.string()]).optional(), - type: z.union([EnumMembershipTypeFilterObjectSchema, MembershipTypeSchema]).optional(), - specialization: z.union([EnumMembershipSpecializationNullableFilterObjectSchema, MembershipSpecializationSchema]).optional().nullable(), - start: z.union([DateTimeFilterObjectSchema, z.coerce.date()]).optional(), - end: z.union([DateTimeNullableFilterObjectSchema, z.coerce.date()]).optional().nullable(), - semester: z.union([IntNullableFilterObjectSchema, z.number().int()]).optional().nullable(), - userId: z.union([StringFilterObjectSchema, z.string()]).optional() -}).strict(); -export const MembershipScalarWhereInputObjectSchema: z.ZodType = z.lazy(__makeSchema_MembershipScalarWhereInput_schema) as unknown as z.ZodType; -export const MembershipScalarWhereInputObjectZodSchema = z.lazy(__makeSchema_MembershipScalarWhereInput_schema); - - -// File: PersonalMarkUpsertWithWhereUniqueWithoutGivenByInput.schema.ts -const __makeSchema_PersonalMarkUpsertWithWhereUniqueWithoutGivenByInput_schema = () => z.object({ - get where(){ return PersonalMarkWhereUniqueInputObjectSchema; }, - update: z.union([PersonalMarkUpdateWithoutGivenByInputObjectSchema, PersonalMarkUncheckedUpdateWithoutGivenByInputObjectSchema]), - create: z.union([PersonalMarkCreateWithoutGivenByInputObjectSchema, PersonalMarkUncheckedCreateWithoutGivenByInputObjectSchema]) -}).strict(); -export const PersonalMarkUpsertWithWhereUniqueWithoutGivenByInputObjectSchema: z.ZodType = z.lazy(__makeSchema_PersonalMarkUpsertWithWhereUniqueWithoutGivenByInput_schema) as unknown as z.ZodType; -export const PersonalMarkUpsertWithWhereUniqueWithoutGivenByInputObjectZodSchema = z.lazy(__makeSchema_PersonalMarkUpsertWithWhereUniqueWithoutGivenByInput_schema); - - -// File: PersonalMarkUpdateWithWhereUniqueWithoutGivenByInput.schema.ts -const __makeSchema_PersonalMarkUpdateWithWhereUniqueWithoutGivenByInput_schema = () => z.object({ - get where(){ return PersonalMarkWhereUniqueInputObjectSchema; }, - data: z.union([PersonalMarkUpdateWithoutGivenByInputObjectSchema, PersonalMarkUncheckedUpdateWithoutGivenByInputObjectSchema]) -}).strict(); -export const PersonalMarkUpdateWithWhereUniqueWithoutGivenByInputObjectSchema: z.ZodType = z.lazy(__makeSchema_PersonalMarkUpdateWithWhereUniqueWithoutGivenByInput_schema) as unknown as z.ZodType; -export const PersonalMarkUpdateWithWhereUniqueWithoutGivenByInputObjectZodSchema = z.lazy(__makeSchema_PersonalMarkUpdateWithWhereUniqueWithoutGivenByInput_schema); - - -// File: PersonalMarkUpdateManyWithWhereWithoutGivenByInput.schema.ts -const __makeSchema_PersonalMarkUpdateManyWithWhereWithoutGivenByInput_schema = () => z.object({ - get where(){ return PersonalMarkScalarWhereInputObjectSchema; }, - data: z.union([PersonalMarkUpdateManyMutationInputObjectSchema, PersonalMarkUncheckedUpdateManyWithoutGivenByInputObjectSchema]) -}).strict(); -export const PersonalMarkUpdateManyWithWhereWithoutGivenByInputObjectSchema: z.ZodType = z.lazy(__makeSchema_PersonalMarkUpdateManyWithWhereWithoutGivenByInput_schema) as unknown as z.ZodType; -export const PersonalMarkUpdateManyWithWhereWithoutGivenByInputObjectZodSchema = z.lazy(__makeSchema_PersonalMarkUpdateManyWithWhereWithoutGivenByInput_schema); - - -// File: AttendeeUpsertWithWhereUniqueWithoutPaymentRefundedByInput.schema.ts -const __makeSchema_AttendeeUpsertWithWhereUniqueWithoutPaymentRefundedByInput_schema = () => z.object({ - get where(){ return AttendeeWhereUniqueInputObjectSchema; }, - update: z.union([AttendeeUpdateWithoutPaymentRefundedByInputObjectSchema, AttendeeUncheckedUpdateWithoutPaymentRefundedByInputObjectSchema]), - create: z.union([AttendeeCreateWithoutPaymentRefundedByInputObjectSchema, AttendeeUncheckedCreateWithoutPaymentRefundedByInputObjectSchema]) -}).strict(); -export const AttendeeUpsertWithWhereUniqueWithoutPaymentRefundedByInputObjectSchema: z.ZodType = z.lazy(__makeSchema_AttendeeUpsertWithWhereUniqueWithoutPaymentRefundedByInput_schema) as unknown as z.ZodType; -export const AttendeeUpsertWithWhereUniqueWithoutPaymentRefundedByInputObjectZodSchema = z.lazy(__makeSchema_AttendeeUpsertWithWhereUniqueWithoutPaymentRefundedByInput_schema); - - -// File: AttendeeUpdateWithWhereUniqueWithoutPaymentRefundedByInput.schema.ts -const __makeSchema_AttendeeUpdateWithWhereUniqueWithoutPaymentRefundedByInput_schema = () => z.object({ - get where(){ return AttendeeWhereUniqueInputObjectSchema; }, - data: z.union([AttendeeUpdateWithoutPaymentRefundedByInputObjectSchema, AttendeeUncheckedUpdateWithoutPaymentRefundedByInputObjectSchema]) -}).strict(); -export const AttendeeUpdateWithWhereUniqueWithoutPaymentRefundedByInputObjectSchema: z.ZodType = z.lazy(__makeSchema_AttendeeUpdateWithWhereUniqueWithoutPaymentRefundedByInput_schema) as unknown as z.ZodType; -export const AttendeeUpdateWithWhereUniqueWithoutPaymentRefundedByInputObjectZodSchema = z.lazy(__makeSchema_AttendeeUpdateWithWhereUniqueWithoutPaymentRefundedByInput_schema); - - -// File: AttendeeUpdateManyWithWhereWithoutPaymentRefundedByInput.schema.ts -const __makeSchema_AttendeeUpdateManyWithWhereWithoutPaymentRefundedByInput_schema = () => z.object({ - get where(){ return AttendeeScalarWhereInputObjectSchema; }, - data: z.union([AttendeeUpdateManyMutationInputObjectSchema, AttendeeUncheckedUpdateManyWithoutPaymentRefundedByInputObjectSchema]) -}).strict(); -export const AttendeeUpdateManyWithWhereWithoutPaymentRefundedByInputObjectSchema: z.ZodType = z.lazy(__makeSchema_AttendeeUpdateManyWithWhereWithoutPaymentRefundedByInput_schema) as unknown as z.ZodType; -export const AttendeeUpdateManyWithWhereWithoutPaymentRefundedByInputObjectZodSchema = z.lazy(__makeSchema_AttendeeUpdateManyWithWhereWithoutPaymentRefundedByInput_schema); - - -// File: AuditLogUpsertWithWhereUniqueWithoutUserInput.schema.ts -const __makeSchema_AuditLogUpsertWithWhereUniqueWithoutUserInput_schema = () => z.object({ - get where(){ return AuditLogWhereUniqueInputObjectSchema; }, - update: z.union([AuditLogUpdateWithoutUserInputObjectSchema, AuditLogUncheckedUpdateWithoutUserInputObjectSchema]), - create: z.union([AuditLogCreateWithoutUserInputObjectSchema, AuditLogUncheckedCreateWithoutUserInputObjectSchema]) -}).strict(); -export const AuditLogUpsertWithWhereUniqueWithoutUserInputObjectSchema: z.ZodType = z.lazy(__makeSchema_AuditLogUpsertWithWhereUniqueWithoutUserInput_schema) as unknown as z.ZodType; -export const AuditLogUpsertWithWhereUniqueWithoutUserInputObjectZodSchema = z.lazy(__makeSchema_AuditLogUpsertWithWhereUniqueWithoutUserInput_schema); - - -// File: AuditLogUpdateWithWhereUniqueWithoutUserInput.schema.ts -const __makeSchema_AuditLogUpdateWithWhereUniqueWithoutUserInput_schema = () => z.object({ - get where(){ return AuditLogWhereUniqueInputObjectSchema; }, - data: z.union([AuditLogUpdateWithoutUserInputObjectSchema, AuditLogUncheckedUpdateWithoutUserInputObjectSchema]) -}).strict(); -export const AuditLogUpdateWithWhereUniqueWithoutUserInputObjectSchema: z.ZodType = z.lazy(__makeSchema_AuditLogUpdateWithWhereUniqueWithoutUserInput_schema) as unknown as z.ZodType; -export const AuditLogUpdateWithWhereUniqueWithoutUserInputObjectZodSchema = z.lazy(__makeSchema_AuditLogUpdateWithWhereUniqueWithoutUserInput_schema); - - -// File: AuditLogUpdateManyWithWhereWithoutUserInput.schema.ts -const __makeSchema_AuditLogUpdateManyWithWhereWithoutUserInput_schema = () => z.object({ - get where(){ return AuditLogScalarWhereInputObjectSchema; }, - data: z.union([AuditLogUpdateManyMutationInputObjectSchema, AuditLogUncheckedUpdateManyWithoutUserInputObjectSchema]) -}).strict(); -export const AuditLogUpdateManyWithWhereWithoutUserInputObjectSchema: z.ZodType = z.lazy(__makeSchema_AuditLogUpdateManyWithWhereWithoutUserInput_schema) as unknown as z.ZodType; -export const AuditLogUpdateManyWithWhereWithoutUserInputObjectZodSchema = z.lazy(__makeSchema_AuditLogUpdateManyWithWhereWithoutUserInput_schema); - - -// File: AuditLogScalarWhereInput.schema.ts -const __makeSchema_AuditLogScalarWhereInput_schema = () => z.object({ - AND: z.union([AuditLogScalarWhereInputObjectSchema, AuditLogScalarWhereInputObjectSchema.array()]).optional(), - get OR(){ return AuditLogScalarWhereInputObjectSchema.array().optional(); }, - NOT: z.union([AuditLogScalarWhereInputObjectSchema, AuditLogScalarWhereInputObjectSchema.array()]).optional(), - id: z.union([StringFilterObjectSchema, z.string()]).optional(), - tableName: z.union([StringFilterObjectSchema, z.string()]).optional(), - rowId: z.union([StringNullableFilterObjectSchema, z.string()]).optional().nullable(), - createdAt: z.union([DateTimeFilterObjectSchema, z.coerce.date()]).optional(), - operation: z.union([StringFilterObjectSchema, z.string()]).optional(), - get rowData(){ return JsonFilterObjectSchema.optional(); }, - transactionId: z.union([BigIntFilterObjectSchema, z.bigint()]).optional(), - userId: z.union([StringNullableFilterObjectSchema, z.string()]).optional().nullable() -}).strict(); -export const AuditLogScalarWhereInputObjectSchema: z.ZodType = z.lazy(__makeSchema_AuditLogScalarWhereInput_schema) as unknown as z.ZodType; -export const AuditLogScalarWhereInputObjectZodSchema = z.lazy(__makeSchema_AuditLogScalarWhereInput_schema); - - -// File: DeregisterReasonUpsertWithWhereUniqueWithoutUserInput.schema.ts -const __makeSchema_DeregisterReasonUpsertWithWhereUniqueWithoutUserInput_schema = () => z.object({ - get where(){ return DeregisterReasonWhereUniqueInputObjectSchema; }, - update: z.union([DeregisterReasonUpdateWithoutUserInputObjectSchema, DeregisterReasonUncheckedUpdateWithoutUserInputObjectSchema]), - create: z.union([DeregisterReasonCreateWithoutUserInputObjectSchema, DeregisterReasonUncheckedCreateWithoutUserInputObjectSchema]) -}).strict(); -export const DeregisterReasonUpsertWithWhereUniqueWithoutUserInputObjectSchema: z.ZodType = z.lazy(__makeSchema_DeregisterReasonUpsertWithWhereUniqueWithoutUserInput_schema) as unknown as z.ZodType; -export const DeregisterReasonUpsertWithWhereUniqueWithoutUserInputObjectZodSchema = z.lazy(__makeSchema_DeregisterReasonUpsertWithWhereUniqueWithoutUserInput_schema); - - -// File: DeregisterReasonUpdateWithWhereUniqueWithoutUserInput.schema.ts -const __makeSchema_DeregisterReasonUpdateWithWhereUniqueWithoutUserInput_schema = () => z.object({ - get where(){ return DeregisterReasonWhereUniqueInputObjectSchema; }, - data: z.union([DeregisterReasonUpdateWithoutUserInputObjectSchema, DeregisterReasonUncheckedUpdateWithoutUserInputObjectSchema]) -}).strict(); -export const DeregisterReasonUpdateWithWhereUniqueWithoutUserInputObjectSchema: z.ZodType = z.lazy(__makeSchema_DeregisterReasonUpdateWithWhereUniqueWithoutUserInput_schema) as unknown as z.ZodType; -export const DeregisterReasonUpdateWithWhereUniqueWithoutUserInputObjectZodSchema = z.lazy(__makeSchema_DeregisterReasonUpdateWithWhereUniqueWithoutUserInput_schema); - - -// File: DeregisterReasonUpdateManyWithWhereWithoutUserInput.schema.ts -const __makeSchema_DeregisterReasonUpdateManyWithWhereWithoutUserInput_schema = () => z.object({ - get where(){ return DeregisterReasonScalarWhereInputObjectSchema; }, - data: z.union([DeregisterReasonUpdateManyMutationInputObjectSchema, DeregisterReasonUncheckedUpdateManyWithoutUserInputObjectSchema]) -}).strict(); -export const DeregisterReasonUpdateManyWithWhereWithoutUserInputObjectSchema: z.ZodType = z.lazy(__makeSchema_DeregisterReasonUpdateManyWithWhereWithoutUserInput_schema) as unknown as z.ZodType; -export const DeregisterReasonUpdateManyWithWhereWithoutUserInputObjectZodSchema = z.lazy(__makeSchema_DeregisterReasonUpdateManyWithWhereWithoutUserInput_schema); - - -// File: DeregisterReasonScalarWhereInput.schema.ts -const __makeSchema_DeregisterReasonScalarWhereInput_schema = () => z.object({ - AND: z.union([DeregisterReasonScalarWhereInputObjectSchema, DeregisterReasonScalarWhereInputObjectSchema.array()]).optional(), - get OR(){ return DeregisterReasonScalarWhereInputObjectSchema.array().optional(); }, - NOT: z.union([DeregisterReasonScalarWhereInputObjectSchema, DeregisterReasonScalarWhereInputObjectSchema.array()]).optional(), - id: z.union([StringFilterObjectSchema, z.string()]).optional(), - createdAt: z.union([DateTimeFilterObjectSchema, z.coerce.date()]).optional(), - registeredAt: z.union([DateTimeFilterObjectSchema, z.coerce.date()]).optional(), - type: z.union([EnumDeregisterReasonTypeFilterObjectSchema, DeregisterReasonTypeSchema]).optional(), - details: z.union([StringNullableFilterObjectSchema, z.string()]).optional().nullable(), - userGrade: z.union([IntNullableFilterObjectSchema, z.number().int()]).optional().nullable(), - userId: z.union([StringFilterObjectSchema, z.string()]).optional(), - eventId: z.union([StringFilterObjectSchema, z.string()]).optional() -}).strict(); -export const DeregisterReasonScalarWhereInputObjectSchema: z.ZodType = z.lazy(__makeSchema_DeregisterReasonScalarWhereInput_schema) as unknown as z.ZodType; -export const DeregisterReasonScalarWhereInputObjectZodSchema = z.lazy(__makeSchema_DeregisterReasonScalarWhereInput_schema); - - -// File: NotificationRecipientUpsertWithWhereUniqueWithoutUserInput.schema.ts -const __makeSchema_NotificationRecipientUpsertWithWhereUniqueWithoutUserInput_schema = () => z.object({ - get where(){ return NotificationRecipientWhereUniqueInputObjectSchema; }, - update: z.union([NotificationRecipientUpdateWithoutUserInputObjectSchema, NotificationRecipientUncheckedUpdateWithoutUserInputObjectSchema]), - create: z.union([NotificationRecipientCreateWithoutUserInputObjectSchema, NotificationRecipientUncheckedCreateWithoutUserInputObjectSchema]) -}).strict(); -export const NotificationRecipientUpsertWithWhereUniqueWithoutUserInputObjectSchema: z.ZodType = z.lazy(__makeSchema_NotificationRecipientUpsertWithWhereUniqueWithoutUserInput_schema) as unknown as z.ZodType; -export const NotificationRecipientUpsertWithWhereUniqueWithoutUserInputObjectZodSchema = z.lazy(__makeSchema_NotificationRecipientUpsertWithWhereUniqueWithoutUserInput_schema); - - -// File: NotificationRecipientUpdateWithWhereUniqueWithoutUserInput.schema.ts -const __makeSchema_NotificationRecipientUpdateWithWhereUniqueWithoutUserInput_schema = () => z.object({ - get where(){ return NotificationRecipientWhereUniqueInputObjectSchema; }, - data: z.union([NotificationRecipientUpdateWithoutUserInputObjectSchema, NotificationRecipientUncheckedUpdateWithoutUserInputObjectSchema]) -}).strict(); -export const NotificationRecipientUpdateWithWhereUniqueWithoutUserInputObjectSchema: z.ZodType = z.lazy(__makeSchema_NotificationRecipientUpdateWithWhereUniqueWithoutUserInput_schema) as unknown as z.ZodType; -export const NotificationRecipientUpdateWithWhereUniqueWithoutUserInputObjectZodSchema = z.lazy(__makeSchema_NotificationRecipientUpdateWithWhereUniqueWithoutUserInput_schema); - - -// File: NotificationRecipientUpdateManyWithWhereWithoutUserInput.schema.ts -const __makeSchema_NotificationRecipientUpdateManyWithWhereWithoutUserInput_schema = () => z.object({ - get where(){ return NotificationRecipientScalarWhereInputObjectSchema; }, - data: z.union([NotificationRecipientUpdateManyMutationInputObjectSchema, NotificationRecipientUncheckedUpdateManyWithoutUserInputObjectSchema]) -}).strict(); -export const NotificationRecipientUpdateManyWithWhereWithoutUserInputObjectSchema: z.ZodType = z.lazy(__makeSchema_NotificationRecipientUpdateManyWithWhereWithoutUserInput_schema) as unknown as z.ZodType; -export const NotificationRecipientUpdateManyWithWhereWithoutUserInputObjectZodSchema = z.lazy(__makeSchema_NotificationRecipientUpdateManyWithWhereWithoutUserInput_schema); - - -// File: NotificationRecipientScalarWhereInput.schema.ts -const __makeSchema_NotificationRecipientScalarWhereInput_schema = () => z.object({ - AND: z.union([NotificationRecipientScalarWhereInputObjectSchema, NotificationRecipientScalarWhereInputObjectSchema.array()]).optional(), - get OR(){ return NotificationRecipientScalarWhereInputObjectSchema.array().optional(); }, - NOT: z.union([NotificationRecipientScalarWhereInputObjectSchema, NotificationRecipientScalarWhereInputObjectSchema.array()]).optional(), - id: z.union([StringFilterObjectSchema, z.string()]).optional(), - readAt: z.union([DateTimeFilterObjectSchema, z.coerce.date()]).optional(), - notificationId: z.union([StringFilterObjectSchema, z.string()]).optional(), - userId: z.union([StringFilterObjectSchema, z.string()]).optional() -}).strict(); -export const NotificationRecipientScalarWhereInputObjectSchema: z.ZodType = z.lazy(__makeSchema_NotificationRecipientScalarWhereInput_schema) as unknown as z.ZodType; -export const NotificationRecipientScalarWhereInputObjectZodSchema = z.lazy(__makeSchema_NotificationRecipientScalarWhereInput_schema); - - -// File: NotificationUpsertWithWhereUniqueWithoutCreatedByInput.schema.ts -const __makeSchema_NotificationUpsertWithWhereUniqueWithoutCreatedByInput_schema = () => z.object({ - get where(){ return NotificationWhereUniqueInputObjectSchema; }, - update: z.union([NotificationUpdateWithoutCreatedByInputObjectSchema, NotificationUncheckedUpdateWithoutCreatedByInputObjectSchema]), - create: z.union([NotificationCreateWithoutCreatedByInputObjectSchema, NotificationUncheckedCreateWithoutCreatedByInputObjectSchema]) -}).strict(); -export const NotificationUpsertWithWhereUniqueWithoutCreatedByInputObjectSchema: z.ZodType = z.lazy(__makeSchema_NotificationUpsertWithWhereUniqueWithoutCreatedByInput_schema) as unknown as z.ZodType; -export const NotificationUpsertWithWhereUniqueWithoutCreatedByInputObjectZodSchema = z.lazy(__makeSchema_NotificationUpsertWithWhereUniqueWithoutCreatedByInput_schema); - - -// File: NotificationUpdateWithWhereUniqueWithoutCreatedByInput.schema.ts -const __makeSchema_NotificationUpdateWithWhereUniqueWithoutCreatedByInput_schema = () => z.object({ - get where(){ return NotificationWhereUniqueInputObjectSchema; }, - data: z.union([NotificationUpdateWithoutCreatedByInputObjectSchema, NotificationUncheckedUpdateWithoutCreatedByInputObjectSchema]) -}).strict(); -export const NotificationUpdateWithWhereUniqueWithoutCreatedByInputObjectSchema: z.ZodType = z.lazy(__makeSchema_NotificationUpdateWithWhereUniqueWithoutCreatedByInput_schema) as unknown as z.ZodType; -export const NotificationUpdateWithWhereUniqueWithoutCreatedByInputObjectZodSchema = z.lazy(__makeSchema_NotificationUpdateWithWhereUniqueWithoutCreatedByInput_schema); - - -// File: NotificationUpdateManyWithWhereWithoutCreatedByInput.schema.ts -const __makeSchema_NotificationUpdateManyWithWhereWithoutCreatedByInput_schema = () => z.object({ - get where(){ return NotificationScalarWhereInputObjectSchema; }, - data: z.union([NotificationUpdateManyMutationInputObjectSchema, NotificationUncheckedUpdateManyWithoutCreatedByInputObjectSchema]) -}).strict(); -export const NotificationUpdateManyWithWhereWithoutCreatedByInputObjectSchema: z.ZodType = z.lazy(__makeSchema_NotificationUpdateManyWithWhereWithoutCreatedByInput_schema) as unknown as z.ZodType; -export const NotificationUpdateManyWithWhereWithoutCreatedByInputObjectZodSchema = z.lazy(__makeSchema_NotificationUpdateManyWithWhereWithoutCreatedByInput_schema); - - -// File: NotificationScalarWhereInput.schema.ts -const __makeSchema_NotificationScalarWhereInput_schema = () => z.object({ - AND: z.union([NotificationScalarWhereInputObjectSchema, NotificationScalarWhereInputObjectSchema.array()]).optional(), - get OR(){ return NotificationScalarWhereInputObjectSchema.array().optional(); }, - NOT: z.union([NotificationScalarWhereInputObjectSchema, NotificationScalarWhereInputObjectSchema.array()]).optional(), - id: z.union([StringFilterObjectSchema, z.string()]).optional(), - createdAt: z.union([DateTimeFilterObjectSchema, z.coerce.date()]).optional(), - updatedAt: z.union([DateTimeFilterObjectSchema, z.coerce.date()]).optional(), - title: z.union([StringFilterObjectSchema, z.string()]).optional(), - shortDescription: z.union([StringNullableFilterObjectSchema, z.string()]).optional().nullable(), - content: z.union([StringFilterObjectSchema, z.string()]).optional(), - type: z.union([EnumNotificationTypeFilterObjectSchema, NotificationTypeSchema]).optional(), - payload: z.union([StringNullableFilterObjectSchema, z.string()]).optional().nullable(), - payloadType: z.union([EnumNotificationPayloadTypeFilterObjectSchema, NotificationPayloadTypeSchema]).optional(), - actorGroupId: z.union([StringFilterObjectSchema, z.string()]).optional(), - createdById: z.union([StringNullableFilterObjectSchema, z.string()]).optional().nullable(), - lastUpdatedById: z.union([StringNullableFilterObjectSchema, z.string()]).optional().nullable(), - taskId: z.union([StringNullableFilterObjectSchema, z.string()]).optional().nullable() -}).strict(); -export const NotificationScalarWhereInputObjectSchema: z.ZodType = z.lazy(__makeSchema_NotificationScalarWhereInput_schema) as unknown as z.ZodType; -export const NotificationScalarWhereInputObjectZodSchema = z.lazy(__makeSchema_NotificationScalarWhereInput_schema); - - -// File: NotificationUpsertWithWhereUniqueWithoutLastUpdatedByInput.schema.ts -const __makeSchema_NotificationUpsertWithWhereUniqueWithoutLastUpdatedByInput_schema = () => z.object({ - get where(){ return NotificationWhereUniqueInputObjectSchema; }, - update: z.union([NotificationUpdateWithoutLastUpdatedByInputObjectSchema, NotificationUncheckedUpdateWithoutLastUpdatedByInputObjectSchema]), - create: z.union([NotificationCreateWithoutLastUpdatedByInputObjectSchema, NotificationUncheckedCreateWithoutLastUpdatedByInputObjectSchema]) -}).strict(); -export const NotificationUpsertWithWhereUniqueWithoutLastUpdatedByInputObjectSchema: z.ZodType = z.lazy(__makeSchema_NotificationUpsertWithWhereUniqueWithoutLastUpdatedByInput_schema) as unknown as z.ZodType; -export const NotificationUpsertWithWhereUniqueWithoutLastUpdatedByInputObjectZodSchema = z.lazy(__makeSchema_NotificationUpsertWithWhereUniqueWithoutLastUpdatedByInput_schema); - - -// File: NotificationUpdateWithWhereUniqueWithoutLastUpdatedByInput.schema.ts -const __makeSchema_NotificationUpdateWithWhereUniqueWithoutLastUpdatedByInput_schema = () => z.object({ - get where(){ return NotificationWhereUniqueInputObjectSchema; }, - data: z.union([NotificationUpdateWithoutLastUpdatedByInputObjectSchema, NotificationUncheckedUpdateWithoutLastUpdatedByInputObjectSchema]) -}).strict(); -export const NotificationUpdateWithWhereUniqueWithoutLastUpdatedByInputObjectSchema: z.ZodType = z.lazy(__makeSchema_NotificationUpdateWithWhereUniqueWithoutLastUpdatedByInput_schema) as unknown as z.ZodType; -export const NotificationUpdateWithWhereUniqueWithoutLastUpdatedByInputObjectZodSchema = z.lazy(__makeSchema_NotificationUpdateWithWhereUniqueWithoutLastUpdatedByInput_schema); - - -// File: NotificationUpdateManyWithWhereWithoutLastUpdatedByInput.schema.ts -const __makeSchema_NotificationUpdateManyWithWhereWithoutLastUpdatedByInput_schema = () => z.object({ - get where(){ return NotificationScalarWhereInputObjectSchema; }, - data: z.union([NotificationUpdateManyMutationInputObjectSchema, NotificationUncheckedUpdateManyWithoutLastUpdatedByInputObjectSchema]) -}).strict(); -export const NotificationUpdateManyWithWhereWithoutLastUpdatedByInputObjectSchema: z.ZodType = z.lazy(__makeSchema_NotificationUpdateManyWithWhereWithoutLastUpdatedByInput_schema) as unknown as z.ZodType; -export const NotificationUpdateManyWithWhereWithoutLastUpdatedByInputObjectZodSchema = z.lazy(__makeSchema_NotificationUpdateManyWithWhereWithoutLastUpdatedByInput_schema); - - -// File: ContestantUpsertWithWhereUniqueWithoutUserInput.schema.ts -const __makeSchema_ContestantUpsertWithWhereUniqueWithoutUserInput_schema = () => z.object({ - get where(){ return ContestantWhereUniqueInputObjectSchema; }, - update: z.union([ContestantUpdateWithoutUserInputObjectSchema, ContestantUncheckedUpdateWithoutUserInputObjectSchema]), - create: z.union([ContestantCreateWithoutUserInputObjectSchema, ContestantUncheckedCreateWithoutUserInputObjectSchema]) -}).strict(); -export const ContestantUpsertWithWhereUniqueWithoutUserInputObjectSchema: z.ZodType = z.lazy(__makeSchema_ContestantUpsertWithWhereUniqueWithoutUserInput_schema) as unknown as z.ZodType; -export const ContestantUpsertWithWhereUniqueWithoutUserInputObjectZodSchema = z.lazy(__makeSchema_ContestantUpsertWithWhereUniqueWithoutUserInput_schema); - - -// File: ContestantUpdateWithWhereUniqueWithoutUserInput.schema.ts -const __makeSchema_ContestantUpdateWithWhereUniqueWithoutUserInput_schema = () => z.object({ - get where(){ return ContestantWhereUniqueInputObjectSchema; }, - data: z.union([ContestantUpdateWithoutUserInputObjectSchema, ContestantUncheckedUpdateWithoutUserInputObjectSchema]) -}).strict(); -export const ContestantUpdateWithWhereUniqueWithoutUserInputObjectSchema: z.ZodType = z.lazy(__makeSchema_ContestantUpdateWithWhereUniqueWithoutUserInput_schema) as unknown as z.ZodType; -export const ContestantUpdateWithWhereUniqueWithoutUserInputObjectZodSchema = z.lazy(__makeSchema_ContestantUpdateWithWhereUniqueWithoutUserInput_schema); - - -// File: ContestantUpdateManyWithWhereWithoutUserInput.schema.ts -const __makeSchema_ContestantUpdateManyWithWhereWithoutUserInput_schema = () => z.object({ - get where(){ return ContestantScalarWhereInputObjectSchema; }, - data: z.union([ContestantUpdateManyMutationInputObjectSchema, ContestantUncheckedUpdateManyWithoutUserInputObjectSchema]) -}).strict(); -export const ContestantUpdateManyWithWhereWithoutUserInputObjectSchema: z.ZodType = z.lazy(__makeSchema_ContestantUpdateManyWithWhereWithoutUserInput_schema) as unknown as z.ZodType; -export const ContestantUpdateManyWithWhereWithoutUserInputObjectZodSchema = z.lazy(__makeSchema_ContestantUpdateManyWithWhereWithoutUserInput_schema); - - -// File: ContestantScalarWhereInput.schema.ts -const __makeSchema_ContestantScalarWhereInput_schema = () => z.object({ - AND: z.union([ContestantScalarWhereInputObjectSchema, ContestantScalarWhereInputObjectSchema.array()]).optional(), - get OR(){ return ContestantScalarWhereInputObjectSchema.array().optional(); }, - NOT: z.union([ContestantScalarWhereInputObjectSchema, ContestantScalarWhereInputObjectSchema.array()]).optional(), - id: z.union([StringFilterObjectSchema, z.string()]).optional(), - resultValue: z.union([IntNullableFilterObjectSchema, z.number().int()]).optional().nullable(), - contestId: z.union([StringFilterObjectSchema, z.string()]).optional(), - userId: z.union([StringNullableFilterObjectSchema, z.string()]).optional().nullable() -}).strict(); -export const ContestantScalarWhereInputObjectSchema: z.ZodType = z.lazy(__makeSchema_ContestantScalarWhereInput_schema) as unknown as z.ZodType; -export const ContestantScalarWhereInputObjectZodSchema = z.lazy(__makeSchema_ContestantScalarWhereInput_schema); - - -// File: ContestTeamUpsertWithWhereUniqueWithoutMembersInput.schema.ts -const __makeSchema_ContestTeamUpsertWithWhereUniqueWithoutMembersInput_schema = () => z.object({ - get where(){ return ContestTeamWhereUniqueInputObjectSchema; }, - update: z.union([ContestTeamUpdateWithoutMembersInputObjectSchema, ContestTeamUncheckedUpdateWithoutMembersInputObjectSchema]), - create: z.union([ContestTeamCreateWithoutMembersInputObjectSchema, ContestTeamUncheckedCreateWithoutMembersInputObjectSchema]) -}).strict(); -export const ContestTeamUpsertWithWhereUniqueWithoutMembersInputObjectSchema: z.ZodType = z.lazy(__makeSchema_ContestTeamUpsertWithWhereUniqueWithoutMembersInput_schema) as unknown as z.ZodType; -export const ContestTeamUpsertWithWhereUniqueWithoutMembersInputObjectZodSchema = z.lazy(__makeSchema_ContestTeamUpsertWithWhereUniqueWithoutMembersInput_schema); - - -// File: ContestTeamUpdateWithWhereUniqueWithoutMembersInput.schema.ts -const __makeSchema_ContestTeamUpdateWithWhereUniqueWithoutMembersInput_schema = () => z.object({ - get where(){ return ContestTeamWhereUniqueInputObjectSchema; }, - data: z.union([ContestTeamUpdateWithoutMembersInputObjectSchema, ContestTeamUncheckedUpdateWithoutMembersInputObjectSchema]) -}).strict(); -export const ContestTeamUpdateWithWhereUniqueWithoutMembersInputObjectSchema: z.ZodType = z.lazy(__makeSchema_ContestTeamUpdateWithWhereUniqueWithoutMembersInput_schema) as unknown as z.ZodType; -export const ContestTeamUpdateWithWhereUniqueWithoutMembersInputObjectZodSchema = z.lazy(__makeSchema_ContestTeamUpdateWithWhereUniqueWithoutMembersInput_schema); - - -// File: ContestTeamUpdateManyWithWhereWithoutMembersInput.schema.ts -const __makeSchema_ContestTeamUpdateManyWithWhereWithoutMembersInput_schema = () => z.object({ - get where(){ return ContestTeamScalarWhereInputObjectSchema; }, - data: z.union([ContestTeamUpdateManyMutationInputObjectSchema, ContestTeamUncheckedUpdateManyWithoutMembersInputObjectSchema]) -}).strict(); -export const ContestTeamUpdateManyWithWhereWithoutMembersInputObjectSchema: z.ZodType = z.lazy(__makeSchema_ContestTeamUpdateManyWithWhereWithoutMembersInput_schema) as unknown as z.ZodType; -export const ContestTeamUpdateManyWithWhereWithoutMembersInputObjectZodSchema = z.lazy(__makeSchema_ContestTeamUpdateManyWithWhereWithoutMembersInput_schema); - - -// File: ContestTeamScalarWhereInput.schema.ts -const __makeSchema_ContestTeamScalarWhereInput_schema = () => z.object({ - AND: z.union([ContestTeamScalarWhereInputObjectSchema, ContestTeamScalarWhereInputObjectSchema.array()]).optional(), - get OR(){ return ContestTeamScalarWhereInputObjectSchema.array().optional(); }, - NOT: z.union([ContestTeamScalarWhereInputObjectSchema, ContestTeamScalarWhereInputObjectSchema.array()]).optional(), - id: z.union([StringFilterObjectSchema, z.string()]).optional(), - name: z.union([StringFilterObjectSchema, z.string()]).optional(), - contestantId: z.union([StringFilterObjectSchema, z.string()]).optional() -}).strict(); -export const ContestTeamScalarWhereInputObjectSchema: z.ZodType = z.lazy(__makeSchema_ContestTeamScalarWhereInput_schema) as unknown as z.ZodType; -export const ContestTeamScalarWhereInputObjectZodSchema = z.lazy(__makeSchema_ContestTeamScalarWhereInput_schema); - - -// File: EventCompanyCreateWithoutCompanyInput.schema.ts -const __makeSchema_EventCompanyCreateWithoutCompanyInput_schema = () => z.object({ - get event(){ return EventCreateNestedOneWithoutCompaniesInputObjectSchema; } -}).strict(); -export const EventCompanyCreateWithoutCompanyInputObjectSchema: z.ZodType = z.lazy(__makeSchema_EventCompanyCreateWithoutCompanyInput_schema) as unknown as z.ZodType; -export const EventCompanyCreateWithoutCompanyInputObjectZodSchema = z.lazy(__makeSchema_EventCompanyCreateWithoutCompanyInput_schema); - - -// File: EventCompanyUncheckedCreateWithoutCompanyInput.schema.ts -const __makeSchema_EventCompanyUncheckedCreateWithoutCompanyInput_schema = () => z.object({ - eventId: z.string() -}).strict(); -export const EventCompanyUncheckedCreateWithoutCompanyInputObjectSchema: z.ZodType = z.lazy(__makeSchema_EventCompanyUncheckedCreateWithoutCompanyInput_schema) as unknown as z.ZodType; -export const EventCompanyUncheckedCreateWithoutCompanyInputObjectZodSchema = z.lazy(__makeSchema_EventCompanyUncheckedCreateWithoutCompanyInput_schema); - - -// File: EventCompanyCreateOrConnectWithoutCompanyInput.schema.ts -const __makeSchema_EventCompanyCreateOrConnectWithoutCompanyInput_schema = () => z.object({ - get where(){ return EventCompanyWhereUniqueInputObjectSchema; }, - create: z.union([EventCompanyCreateWithoutCompanyInputObjectSchema, EventCompanyUncheckedCreateWithoutCompanyInputObjectSchema]) -}).strict(); -export const EventCompanyCreateOrConnectWithoutCompanyInputObjectSchema: z.ZodType = z.lazy(__makeSchema_EventCompanyCreateOrConnectWithoutCompanyInput_schema) as unknown as z.ZodType; -export const EventCompanyCreateOrConnectWithoutCompanyInputObjectZodSchema = z.lazy(__makeSchema_EventCompanyCreateOrConnectWithoutCompanyInput_schema); - - -// File: EventCompanyCreateManyCompanyInputEnvelope.schema.ts -const __makeSchema_EventCompanyCreateManyCompanyInputEnvelope_schema = () => z.object({ - data: z.union([EventCompanyCreateManyCompanyInputObjectSchema, EventCompanyCreateManyCompanyInputObjectSchema.array()]), - skipDuplicates: z.boolean().optional() -}).strict(); -export const EventCompanyCreateManyCompanyInputEnvelopeObjectSchema: z.ZodType = z.lazy(__makeSchema_EventCompanyCreateManyCompanyInputEnvelope_schema) as unknown as z.ZodType; -export const EventCompanyCreateManyCompanyInputEnvelopeObjectZodSchema = z.lazy(__makeSchema_EventCompanyCreateManyCompanyInputEnvelope_schema); - - -// File: JobListingCreateWithoutCompanyInput.schema.ts -const __makeSchema_JobListingCreateWithoutCompanyInput_schema = () => z.object({ - id: z.string().optional(), - title: z.string(), - description: z.string(), - shortDescription: z.string().optional().nullable(), - start: z.coerce.date(), - end: z.coerce.date(), - featured: z.boolean(), - hidden: z.boolean(), - deadline: z.coerce.date().optional().nullable(), - employment: EmploymentTypeSchema, - applicationLink: z.string().optional().nullable(), - applicationEmail: z.string().optional().nullable(), - rollingAdmission: z.boolean(), - createdAt: z.coerce.date().optional(), - updatedAt: z.coerce.date().optional(), - get locations(){ return JobListingLocationCreateNestedManyWithoutJobListingInputObjectSchema.optional(); } -}).strict(); -export const JobListingCreateWithoutCompanyInputObjectSchema: z.ZodType = z.lazy(__makeSchema_JobListingCreateWithoutCompanyInput_schema) as unknown as z.ZodType; -export const JobListingCreateWithoutCompanyInputObjectZodSchema = z.lazy(__makeSchema_JobListingCreateWithoutCompanyInput_schema); - - -// File: JobListingUncheckedCreateWithoutCompanyInput.schema.ts -const __makeSchema_JobListingUncheckedCreateWithoutCompanyInput_schema = () => z.object({ - id: z.string().optional(), - title: z.string(), - description: z.string(), - shortDescription: z.string().optional().nullable(), - start: z.coerce.date(), - end: z.coerce.date(), - featured: z.boolean(), - hidden: z.boolean(), - deadline: z.coerce.date().optional().nullable(), - employment: EmploymentTypeSchema, - applicationLink: z.string().optional().nullable(), - applicationEmail: z.string().optional().nullable(), - rollingAdmission: z.boolean(), - createdAt: z.coerce.date().optional(), - updatedAt: z.coerce.date().optional(), - get locations(){ return JobListingLocationUncheckedCreateNestedManyWithoutJobListingInputObjectSchema.optional(); } -}).strict(); -export const JobListingUncheckedCreateWithoutCompanyInputObjectSchema: z.ZodType = z.lazy(__makeSchema_JobListingUncheckedCreateWithoutCompanyInput_schema) as unknown as z.ZodType; -export const JobListingUncheckedCreateWithoutCompanyInputObjectZodSchema = z.lazy(__makeSchema_JobListingUncheckedCreateWithoutCompanyInput_schema); - - -// File: JobListingCreateOrConnectWithoutCompanyInput.schema.ts -const __makeSchema_JobListingCreateOrConnectWithoutCompanyInput_schema = () => z.object({ - get where(){ return JobListingWhereUniqueInputObjectSchema; }, - create: z.union([JobListingCreateWithoutCompanyInputObjectSchema, JobListingUncheckedCreateWithoutCompanyInputObjectSchema]) -}).strict(); -export const JobListingCreateOrConnectWithoutCompanyInputObjectSchema: z.ZodType = z.lazy(__makeSchema_JobListingCreateOrConnectWithoutCompanyInput_schema) as unknown as z.ZodType; -export const JobListingCreateOrConnectWithoutCompanyInputObjectZodSchema = z.lazy(__makeSchema_JobListingCreateOrConnectWithoutCompanyInput_schema); - - -// File: JobListingCreateManyCompanyInputEnvelope.schema.ts -const __makeSchema_JobListingCreateManyCompanyInputEnvelope_schema = () => z.object({ - data: z.union([JobListingCreateManyCompanyInputObjectSchema, JobListingCreateManyCompanyInputObjectSchema.array()]), - skipDuplicates: z.boolean().optional() -}).strict(); -export const JobListingCreateManyCompanyInputEnvelopeObjectSchema: z.ZodType = z.lazy(__makeSchema_JobListingCreateManyCompanyInputEnvelope_schema) as unknown as z.ZodType; -export const JobListingCreateManyCompanyInputEnvelopeObjectZodSchema = z.lazy(__makeSchema_JobListingCreateManyCompanyInputEnvelope_schema); - - -// File: EventCompanyUpsertWithWhereUniqueWithoutCompanyInput.schema.ts -const __makeSchema_EventCompanyUpsertWithWhereUniqueWithoutCompanyInput_schema = () => z.object({ - get where(){ return EventCompanyWhereUniqueInputObjectSchema; }, - update: z.union([EventCompanyUpdateWithoutCompanyInputObjectSchema, EventCompanyUncheckedUpdateWithoutCompanyInputObjectSchema]), - create: z.union([EventCompanyCreateWithoutCompanyInputObjectSchema, EventCompanyUncheckedCreateWithoutCompanyInputObjectSchema]) -}).strict(); -export const EventCompanyUpsertWithWhereUniqueWithoutCompanyInputObjectSchema: z.ZodType = z.lazy(__makeSchema_EventCompanyUpsertWithWhereUniqueWithoutCompanyInput_schema) as unknown as z.ZodType; -export const EventCompanyUpsertWithWhereUniqueWithoutCompanyInputObjectZodSchema = z.lazy(__makeSchema_EventCompanyUpsertWithWhereUniqueWithoutCompanyInput_schema); - - -// File: EventCompanyUpdateWithWhereUniqueWithoutCompanyInput.schema.ts -const __makeSchema_EventCompanyUpdateWithWhereUniqueWithoutCompanyInput_schema = () => z.object({ - get where(){ return EventCompanyWhereUniqueInputObjectSchema; }, - data: z.union([EventCompanyUpdateWithoutCompanyInputObjectSchema, EventCompanyUncheckedUpdateWithoutCompanyInputObjectSchema]) -}).strict(); -export const EventCompanyUpdateWithWhereUniqueWithoutCompanyInputObjectSchema: z.ZodType = z.lazy(__makeSchema_EventCompanyUpdateWithWhereUniqueWithoutCompanyInput_schema) as unknown as z.ZodType; -export const EventCompanyUpdateWithWhereUniqueWithoutCompanyInputObjectZodSchema = z.lazy(__makeSchema_EventCompanyUpdateWithWhereUniqueWithoutCompanyInput_schema); - - -// File: EventCompanyUpdateManyWithWhereWithoutCompanyInput.schema.ts -const __makeSchema_EventCompanyUpdateManyWithWhereWithoutCompanyInput_schema = () => z.object({ - get where(){ return EventCompanyScalarWhereInputObjectSchema; }, - data: z.union([EventCompanyUpdateManyMutationInputObjectSchema, EventCompanyUncheckedUpdateManyWithoutCompanyInputObjectSchema]) -}).strict(); -export const EventCompanyUpdateManyWithWhereWithoutCompanyInputObjectSchema: z.ZodType = z.lazy(__makeSchema_EventCompanyUpdateManyWithWhereWithoutCompanyInput_schema) as unknown as z.ZodType; -export const EventCompanyUpdateManyWithWhereWithoutCompanyInputObjectZodSchema = z.lazy(__makeSchema_EventCompanyUpdateManyWithWhereWithoutCompanyInput_schema); - - -// File: EventCompanyScalarWhereInput.schema.ts -const __makeSchema_EventCompanyScalarWhereInput_schema = () => z.object({ - AND: z.union([EventCompanyScalarWhereInputObjectSchema, EventCompanyScalarWhereInputObjectSchema.array()]).optional(), - get OR(){ return EventCompanyScalarWhereInputObjectSchema.array().optional(); }, - NOT: z.union([EventCompanyScalarWhereInputObjectSchema, EventCompanyScalarWhereInputObjectSchema.array()]).optional(), - eventId: z.union([StringFilterObjectSchema, z.string()]).optional(), - companyId: z.union([StringFilterObjectSchema, z.string()]).optional() -}).strict(); -export const EventCompanyScalarWhereInputObjectSchema: z.ZodType = z.lazy(__makeSchema_EventCompanyScalarWhereInput_schema) as unknown as z.ZodType; -export const EventCompanyScalarWhereInputObjectZodSchema = z.lazy(__makeSchema_EventCompanyScalarWhereInput_schema); - - -// File: JobListingUpsertWithWhereUniqueWithoutCompanyInput.schema.ts -const __makeSchema_JobListingUpsertWithWhereUniqueWithoutCompanyInput_schema = () => z.object({ - get where(){ return JobListingWhereUniqueInputObjectSchema; }, - update: z.union([JobListingUpdateWithoutCompanyInputObjectSchema, JobListingUncheckedUpdateWithoutCompanyInputObjectSchema]), - create: z.union([JobListingCreateWithoutCompanyInputObjectSchema, JobListingUncheckedCreateWithoutCompanyInputObjectSchema]) -}).strict(); -export const JobListingUpsertWithWhereUniqueWithoutCompanyInputObjectSchema: z.ZodType = z.lazy(__makeSchema_JobListingUpsertWithWhereUniqueWithoutCompanyInput_schema) as unknown as z.ZodType; -export const JobListingUpsertWithWhereUniqueWithoutCompanyInputObjectZodSchema = z.lazy(__makeSchema_JobListingUpsertWithWhereUniqueWithoutCompanyInput_schema); - - -// File: JobListingUpdateWithWhereUniqueWithoutCompanyInput.schema.ts -const __makeSchema_JobListingUpdateWithWhereUniqueWithoutCompanyInput_schema = () => z.object({ - get where(){ return JobListingWhereUniqueInputObjectSchema; }, - data: z.union([JobListingUpdateWithoutCompanyInputObjectSchema, JobListingUncheckedUpdateWithoutCompanyInputObjectSchema]) -}).strict(); -export const JobListingUpdateWithWhereUniqueWithoutCompanyInputObjectSchema: z.ZodType = z.lazy(__makeSchema_JobListingUpdateWithWhereUniqueWithoutCompanyInput_schema) as unknown as z.ZodType; -export const JobListingUpdateWithWhereUniqueWithoutCompanyInputObjectZodSchema = z.lazy(__makeSchema_JobListingUpdateWithWhereUniqueWithoutCompanyInput_schema); - - -// File: JobListingUpdateManyWithWhereWithoutCompanyInput.schema.ts -const __makeSchema_JobListingUpdateManyWithWhereWithoutCompanyInput_schema = () => z.object({ - get where(){ return JobListingScalarWhereInputObjectSchema; }, - data: z.union([JobListingUpdateManyMutationInputObjectSchema, JobListingUncheckedUpdateManyWithoutCompanyInputObjectSchema]) -}).strict(); -export const JobListingUpdateManyWithWhereWithoutCompanyInputObjectSchema: z.ZodType = z.lazy(__makeSchema_JobListingUpdateManyWithWhereWithoutCompanyInput_schema) as unknown as z.ZodType; -export const JobListingUpdateManyWithWhereWithoutCompanyInputObjectZodSchema = z.lazy(__makeSchema_JobListingUpdateManyWithWhereWithoutCompanyInput_schema); - - -// File: JobListingScalarWhereInput.schema.ts -const __makeSchema_JobListingScalarWhereInput_schema = () => z.object({ - AND: z.union([JobListingScalarWhereInputObjectSchema, JobListingScalarWhereInputObjectSchema.array()]).optional(), - get OR(){ return JobListingScalarWhereInputObjectSchema.array().optional(); }, - NOT: z.union([JobListingScalarWhereInputObjectSchema, JobListingScalarWhereInputObjectSchema.array()]).optional(), - id: z.union([StringFilterObjectSchema, z.string()]).optional(), - title: z.union([StringFilterObjectSchema, z.string()]).optional(), - description: z.union([StringFilterObjectSchema, z.string()]).optional(), - shortDescription: z.union([StringNullableFilterObjectSchema, z.string()]).optional().nullable(), - start: z.union([DateTimeFilterObjectSchema, z.coerce.date()]).optional(), - end: z.union([DateTimeFilterObjectSchema, z.coerce.date()]).optional(), - featured: z.union([BoolFilterObjectSchema, z.boolean()]).optional(), - hidden: z.union([BoolFilterObjectSchema, z.boolean()]).optional(), - deadline: z.union([DateTimeNullableFilterObjectSchema, z.coerce.date()]).optional().nullable(), - employment: z.union([EnumEmploymentTypeFilterObjectSchema, EmploymentTypeSchema]).optional(), - applicationLink: z.union([StringNullableFilterObjectSchema, z.string()]).optional().nullable(), - applicationEmail: z.union([StringNullableFilterObjectSchema, z.string()]).optional().nullable(), - rollingAdmission: z.union([BoolFilterObjectSchema, z.boolean()]).optional(), - createdAt: z.union([DateTimeFilterObjectSchema, z.coerce.date()]).optional(), - updatedAt: z.union([DateTimeFilterObjectSchema, z.coerce.date()]).optional(), - companyId: z.union([StringFilterObjectSchema, z.string()]).optional() -}).strict(); -export const JobListingScalarWhereInputObjectSchema: z.ZodType = z.lazy(__makeSchema_JobListingScalarWhereInput_schema) as unknown as z.ZodType; -export const JobListingScalarWhereInputObjectZodSchema = z.lazy(__makeSchema_JobListingScalarWhereInput_schema); - - -// File: EventHostingGroupCreateWithoutGroupInput.schema.ts -const __makeSchema_EventHostingGroupCreateWithoutGroupInput_schema = () => z.object({ - get event(){ return EventCreateNestedOneWithoutHostingGroupsInputObjectSchema; } -}).strict(); -export const EventHostingGroupCreateWithoutGroupInputObjectSchema: z.ZodType = z.lazy(__makeSchema_EventHostingGroupCreateWithoutGroupInput_schema) as unknown as z.ZodType; -export const EventHostingGroupCreateWithoutGroupInputObjectZodSchema = z.lazy(__makeSchema_EventHostingGroupCreateWithoutGroupInput_schema); - - -// File: EventHostingGroupUncheckedCreateWithoutGroupInput.schema.ts -const __makeSchema_EventHostingGroupUncheckedCreateWithoutGroupInput_schema = () => z.object({ - eventId: z.string() -}).strict(); -export const EventHostingGroupUncheckedCreateWithoutGroupInputObjectSchema: z.ZodType = z.lazy(__makeSchema_EventHostingGroupUncheckedCreateWithoutGroupInput_schema) as unknown as z.ZodType; -export const EventHostingGroupUncheckedCreateWithoutGroupInputObjectZodSchema = z.lazy(__makeSchema_EventHostingGroupUncheckedCreateWithoutGroupInput_schema); - - -// File: EventHostingGroupCreateOrConnectWithoutGroupInput.schema.ts -const __makeSchema_EventHostingGroupCreateOrConnectWithoutGroupInput_schema = () => z.object({ - get where(){ return EventHostingGroupWhereUniqueInputObjectSchema; }, - create: z.union([EventHostingGroupCreateWithoutGroupInputObjectSchema, EventHostingGroupUncheckedCreateWithoutGroupInputObjectSchema]) -}).strict(); -export const EventHostingGroupCreateOrConnectWithoutGroupInputObjectSchema: z.ZodType = z.lazy(__makeSchema_EventHostingGroupCreateOrConnectWithoutGroupInput_schema) as unknown as z.ZodType; -export const EventHostingGroupCreateOrConnectWithoutGroupInputObjectZodSchema = z.lazy(__makeSchema_EventHostingGroupCreateOrConnectWithoutGroupInput_schema); - - -// File: EventHostingGroupCreateManyGroupInputEnvelope.schema.ts -const __makeSchema_EventHostingGroupCreateManyGroupInputEnvelope_schema = () => z.object({ - data: z.union([EventHostingGroupCreateManyGroupInputObjectSchema, EventHostingGroupCreateManyGroupInputObjectSchema.array()]), - skipDuplicates: z.boolean().optional() -}).strict(); -export const EventHostingGroupCreateManyGroupInputEnvelopeObjectSchema: z.ZodType = z.lazy(__makeSchema_EventHostingGroupCreateManyGroupInputEnvelope_schema) as unknown as z.ZodType; -export const EventHostingGroupCreateManyGroupInputEnvelopeObjectZodSchema = z.lazy(__makeSchema_EventHostingGroupCreateManyGroupInputEnvelope_schema); - - -// File: ContestCreateWithoutGroupsInput.schema.ts -const __makeSchema_ContestCreateWithoutGroupsInput_schema = () => z.object({ - id: z.string().optional(), - name: z.string(), - description: z.string().optional().nullable(), - startDate: z.coerce.date().optional().nullable(), - resultType: ContestResultTypeSchema, - resultOrder: ContestResultOrderSchema, - get winnerContestant(){ return ContestantCreateNestedOneWithoutWonContestInputObjectSchema.optional(); }, - get contestants(){ return ContestantCreateNestedManyWithoutContestInputObjectSchema.optional(); }, - get events(){ return EventCreateNestedManyWithoutContestInputObjectSchema.optional(); } -}).strict(); -export const ContestCreateWithoutGroupsInputObjectSchema: z.ZodType = z.lazy(__makeSchema_ContestCreateWithoutGroupsInput_schema) as unknown as z.ZodType; -export const ContestCreateWithoutGroupsInputObjectZodSchema = z.lazy(__makeSchema_ContestCreateWithoutGroupsInput_schema); - - -// File: ContestUncheckedCreateWithoutGroupsInput.schema.ts -const __makeSchema_ContestUncheckedCreateWithoutGroupsInput_schema = () => z.object({ - id: z.string().optional(), - name: z.string(), - description: z.string().optional().nullable(), - startDate: z.coerce.date().optional().nullable(), - resultType: ContestResultTypeSchema, - resultOrder: ContestResultOrderSchema, - winnerContestantId: z.string().optional().nullable(), - get contestants(){ return ContestantUncheckedCreateNestedManyWithoutContestInputObjectSchema.optional(); }, - get events(){ return EventUncheckedCreateNestedManyWithoutContestInputObjectSchema.optional(); } -}).strict(); -export const ContestUncheckedCreateWithoutGroupsInputObjectSchema: z.ZodType = z.lazy(__makeSchema_ContestUncheckedCreateWithoutGroupsInput_schema) as unknown as z.ZodType; -export const ContestUncheckedCreateWithoutGroupsInputObjectZodSchema = z.lazy(__makeSchema_ContestUncheckedCreateWithoutGroupsInput_schema); - - -// File: ContestCreateOrConnectWithoutGroupsInput.schema.ts -const __makeSchema_ContestCreateOrConnectWithoutGroupsInput_schema = () => z.object({ - get where(){ return ContestWhereUniqueInputObjectSchema; }, - create: z.union([ContestCreateWithoutGroupsInputObjectSchema, ContestUncheckedCreateWithoutGroupsInputObjectSchema]) -}).strict(); -export const ContestCreateOrConnectWithoutGroupsInputObjectSchema: z.ZodType = z.lazy(__makeSchema_ContestCreateOrConnectWithoutGroupsInput_schema) as unknown as z.ZodType; -export const ContestCreateOrConnectWithoutGroupsInputObjectZodSchema = z.lazy(__makeSchema_ContestCreateOrConnectWithoutGroupsInput_schema); - - -// File: GroupMembershipCreateWithoutGroupInput.schema.ts -const __makeSchema_GroupMembershipCreateWithoutGroupInput_schema = () => z.object({ - id: z.string().optional(), - start: z.coerce.date(), - end: z.coerce.date().optional().nullable(), - createdAt: z.coerce.date().optional(), - updatedAt: z.coerce.date().optional(), - get user(){ return UserCreateNestedOneWithoutGroupMembershipsInputObjectSchema; }, - get roles(){ return GroupMembershipRoleCreateNestedManyWithoutMembershipInputObjectSchema.optional(); } -}).strict(); -export const GroupMembershipCreateWithoutGroupInputObjectSchema: z.ZodType = z.lazy(__makeSchema_GroupMembershipCreateWithoutGroupInput_schema) as unknown as z.ZodType; -export const GroupMembershipCreateWithoutGroupInputObjectZodSchema = z.lazy(__makeSchema_GroupMembershipCreateWithoutGroupInput_schema); - - -// File: GroupMembershipUncheckedCreateWithoutGroupInput.schema.ts -const __makeSchema_GroupMembershipUncheckedCreateWithoutGroupInput_schema = () => z.object({ - id: z.string().optional(), - start: z.coerce.date(), - end: z.coerce.date().optional().nullable(), - createdAt: z.coerce.date().optional(), - updatedAt: z.coerce.date().optional(), - userId: z.string(), - get roles(){ return GroupMembershipRoleUncheckedCreateNestedManyWithoutMembershipInputObjectSchema.optional(); } -}).strict(); -export const GroupMembershipUncheckedCreateWithoutGroupInputObjectSchema: z.ZodType = z.lazy(__makeSchema_GroupMembershipUncheckedCreateWithoutGroupInput_schema) as unknown as z.ZodType; -export const GroupMembershipUncheckedCreateWithoutGroupInputObjectZodSchema = z.lazy(__makeSchema_GroupMembershipUncheckedCreateWithoutGroupInput_schema); - - -// File: GroupMembershipCreateOrConnectWithoutGroupInput.schema.ts -const __makeSchema_GroupMembershipCreateOrConnectWithoutGroupInput_schema = () => z.object({ - get where(){ return GroupMembershipWhereUniqueInputObjectSchema; }, - create: z.union([GroupMembershipCreateWithoutGroupInputObjectSchema, GroupMembershipUncheckedCreateWithoutGroupInputObjectSchema]) -}).strict(); -export const GroupMembershipCreateOrConnectWithoutGroupInputObjectSchema: z.ZodType = z.lazy(__makeSchema_GroupMembershipCreateOrConnectWithoutGroupInput_schema) as unknown as z.ZodType; -export const GroupMembershipCreateOrConnectWithoutGroupInputObjectZodSchema = z.lazy(__makeSchema_GroupMembershipCreateOrConnectWithoutGroupInput_schema); - - -// File: GroupMembershipCreateManyGroupInputEnvelope.schema.ts -const __makeSchema_GroupMembershipCreateManyGroupInputEnvelope_schema = () => z.object({ - data: z.union([GroupMembershipCreateManyGroupInputObjectSchema, GroupMembershipCreateManyGroupInputObjectSchema.array()]), - skipDuplicates: z.boolean().optional() -}).strict(); -export const GroupMembershipCreateManyGroupInputEnvelopeObjectSchema: z.ZodType = z.lazy(__makeSchema_GroupMembershipCreateManyGroupInputEnvelope_schema) as unknown as z.ZodType; -export const GroupMembershipCreateManyGroupInputEnvelopeObjectZodSchema = z.lazy(__makeSchema_GroupMembershipCreateManyGroupInputEnvelope_schema); - - -// File: MarkGroupCreateWithoutGroupInput.schema.ts -const __makeSchema_MarkGroupCreateWithoutGroupInput_schema = () => z.object({ - get mark(){ return MarkCreateNestedOneWithoutGroupsInputObjectSchema; } -}).strict(); -export const MarkGroupCreateWithoutGroupInputObjectSchema: z.ZodType = z.lazy(__makeSchema_MarkGroupCreateWithoutGroupInput_schema) as unknown as z.ZodType; -export const MarkGroupCreateWithoutGroupInputObjectZodSchema = z.lazy(__makeSchema_MarkGroupCreateWithoutGroupInput_schema); - - -// File: MarkGroupUncheckedCreateWithoutGroupInput.schema.ts -const __makeSchema_MarkGroupUncheckedCreateWithoutGroupInput_schema = () => z.object({ - markId: z.string() -}).strict(); -export const MarkGroupUncheckedCreateWithoutGroupInputObjectSchema: z.ZodType = z.lazy(__makeSchema_MarkGroupUncheckedCreateWithoutGroupInput_schema) as unknown as z.ZodType; -export const MarkGroupUncheckedCreateWithoutGroupInputObjectZodSchema = z.lazy(__makeSchema_MarkGroupUncheckedCreateWithoutGroupInput_schema); - - -// File: MarkGroupCreateOrConnectWithoutGroupInput.schema.ts -const __makeSchema_MarkGroupCreateOrConnectWithoutGroupInput_schema = () => z.object({ - get where(){ return MarkGroupWhereUniqueInputObjectSchema; }, - create: z.union([MarkGroupCreateWithoutGroupInputObjectSchema, MarkGroupUncheckedCreateWithoutGroupInputObjectSchema]) -}).strict(); -export const MarkGroupCreateOrConnectWithoutGroupInputObjectSchema: z.ZodType = z.lazy(__makeSchema_MarkGroupCreateOrConnectWithoutGroupInput_schema) as unknown as z.ZodType; -export const MarkGroupCreateOrConnectWithoutGroupInputObjectZodSchema = z.lazy(__makeSchema_MarkGroupCreateOrConnectWithoutGroupInput_schema); - - -// File: MarkGroupCreateManyGroupInputEnvelope.schema.ts -const __makeSchema_MarkGroupCreateManyGroupInputEnvelope_schema = () => z.object({ - data: z.union([MarkGroupCreateManyGroupInputObjectSchema, MarkGroupCreateManyGroupInputObjectSchema.array()]), - skipDuplicates: z.boolean().optional() -}).strict(); -export const MarkGroupCreateManyGroupInputEnvelopeObjectSchema: z.ZodType = z.lazy(__makeSchema_MarkGroupCreateManyGroupInputEnvelope_schema) as unknown as z.ZodType; -export const MarkGroupCreateManyGroupInputEnvelopeObjectZodSchema = z.lazy(__makeSchema_MarkGroupCreateManyGroupInputEnvelope_schema); - - -// File: GroupRoleCreateWithoutGroupInput.schema.ts -const __makeSchema_GroupRoleCreateWithoutGroupInput_schema = () => z.object({ - id: z.string().optional(), - name: z.string(), - type: GroupRoleTypeSchema.optional(), - get groupMembershipRoles(){ return GroupMembershipRoleCreateNestedManyWithoutRoleInputObjectSchema.optional(); } -}).strict(); -export const GroupRoleCreateWithoutGroupInputObjectSchema: z.ZodType = z.lazy(__makeSchema_GroupRoleCreateWithoutGroupInput_schema) as unknown as z.ZodType; -export const GroupRoleCreateWithoutGroupInputObjectZodSchema = z.lazy(__makeSchema_GroupRoleCreateWithoutGroupInput_schema); - - -// File: GroupRoleUncheckedCreateWithoutGroupInput.schema.ts -const __makeSchema_GroupRoleUncheckedCreateWithoutGroupInput_schema = () => z.object({ - id: z.string().optional(), - name: z.string(), - type: GroupRoleTypeSchema.optional(), - get groupMembershipRoles(){ return GroupMembershipRoleUncheckedCreateNestedManyWithoutRoleInputObjectSchema.optional(); } -}).strict(); -export const GroupRoleUncheckedCreateWithoutGroupInputObjectSchema: z.ZodType = z.lazy(__makeSchema_GroupRoleUncheckedCreateWithoutGroupInput_schema) as unknown as z.ZodType; -export const GroupRoleUncheckedCreateWithoutGroupInputObjectZodSchema = z.lazy(__makeSchema_GroupRoleUncheckedCreateWithoutGroupInput_schema); - - -// File: GroupRoleCreateOrConnectWithoutGroupInput.schema.ts -const __makeSchema_GroupRoleCreateOrConnectWithoutGroupInput_schema = () => z.object({ - get where(){ return GroupRoleWhereUniqueInputObjectSchema; }, - create: z.union([GroupRoleCreateWithoutGroupInputObjectSchema, GroupRoleUncheckedCreateWithoutGroupInputObjectSchema]) -}).strict(); -export const GroupRoleCreateOrConnectWithoutGroupInputObjectSchema: z.ZodType = z.lazy(__makeSchema_GroupRoleCreateOrConnectWithoutGroupInput_schema) as unknown as z.ZodType; -export const GroupRoleCreateOrConnectWithoutGroupInputObjectZodSchema = z.lazy(__makeSchema_GroupRoleCreateOrConnectWithoutGroupInput_schema); - - -// File: GroupRoleCreateManyGroupInputEnvelope.schema.ts -const __makeSchema_GroupRoleCreateManyGroupInputEnvelope_schema = () => z.object({ - data: z.union([GroupRoleCreateManyGroupInputObjectSchema, GroupRoleCreateManyGroupInputObjectSchema.array()]), - skipDuplicates: z.boolean().optional() -}).strict(); -export const GroupRoleCreateManyGroupInputEnvelopeObjectSchema: z.ZodType = z.lazy(__makeSchema_GroupRoleCreateManyGroupInputEnvelope_schema) as unknown as z.ZodType; -export const GroupRoleCreateManyGroupInputEnvelopeObjectZodSchema = z.lazy(__makeSchema_GroupRoleCreateManyGroupInputEnvelope_schema); - - -// File: NotificationCreateWithoutActorGroupInput.schema.ts -const __makeSchema_NotificationCreateWithoutActorGroupInput_schema = () => z.object({ - id: z.string().optional(), - createdAt: z.coerce.date().optional(), - updatedAt: z.coerce.date().optional(), - title: z.string(), - shortDescription: z.string().optional().nullable(), - content: z.string(), - type: NotificationTypeSchema, - payload: z.string().optional().nullable(), - payloadType: NotificationPayloadTypeSchema, - get createdBy(){ return UserCreateNestedOneWithoutNotificationsCreatedInputObjectSchema.optional(); }, - get lastUpdatedBy(){ return UserCreateNestedOneWithoutNotificationsUpdatedInputObjectSchema.optional(); }, - get task(){ return TaskCreateNestedOneWithoutNotificationsInputObjectSchema.optional(); }, - get recipients(){ return NotificationRecipientCreateNestedManyWithoutNotificationInputObjectSchema.optional(); } -}).strict(); -export const NotificationCreateWithoutActorGroupInputObjectSchema: z.ZodType = z.lazy(__makeSchema_NotificationCreateWithoutActorGroupInput_schema) as unknown as z.ZodType; -export const NotificationCreateWithoutActorGroupInputObjectZodSchema = z.lazy(__makeSchema_NotificationCreateWithoutActorGroupInput_schema); - - -// File: NotificationUncheckedCreateWithoutActorGroupInput.schema.ts -const __makeSchema_NotificationUncheckedCreateWithoutActorGroupInput_schema = () => z.object({ - id: z.string().optional(), - createdAt: z.coerce.date().optional(), - updatedAt: z.coerce.date().optional(), - title: z.string(), - shortDescription: z.string().optional().nullable(), - content: z.string(), - type: NotificationTypeSchema, - payload: z.string().optional().nullable(), - payloadType: NotificationPayloadTypeSchema, - createdById: z.string().optional().nullable(), - lastUpdatedById: z.string().optional().nullable(), - taskId: z.string().optional().nullable(), - get recipients(){ return NotificationRecipientUncheckedCreateNestedManyWithoutNotificationInputObjectSchema.optional(); } -}).strict(); -export const NotificationUncheckedCreateWithoutActorGroupInputObjectSchema: z.ZodType = z.lazy(__makeSchema_NotificationUncheckedCreateWithoutActorGroupInput_schema) as unknown as z.ZodType; -export const NotificationUncheckedCreateWithoutActorGroupInputObjectZodSchema = z.lazy(__makeSchema_NotificationUncheckedCreateWithoutActorGroupInput_schema); - - -// File: NotificationCreateOrConnectWithoutActorGroupInput.schema.ts -const __makeSchema_NotificationCreateOrConnectWithoutActorGroupInput_schema = () => z.object({ - get where(){ return NotificationWhereUniqueInputObjectSchema; }, - create: z.union([NotificationCreateWithoutActorGroupInputObjectSchema, NotificationUncheckedCreateWithoutActorGroupInputObjectSchema]) -}).strict(); -export const NotificationCreateOrConnectWithoutActorGroupInputObjectSchema: z.ZodType = z.lazy(__makeSchema_NotificationCreateOrConnectWithoutActorGroupInput_schema) as unknown as z.ZodType; -export const NotificationCreateOrConnectWithoutActorGroupInputObjectZodSchema = z.lazy(__makeSchema_NotificationCreateOrConnectWithoutActorGroupInput_schema); - - -// File: NotificationCreateManyActorGroupInputEnvelope.schema.ts -const __makeSchema_NotificationCreateManyActorGroupInputEnvelope_schema = () => z.object({ - data: z.union([NotificationCreateManyActorGroupInputObjectSchema, NotificationCreateManyActorGroupInputObjectSchema.array()]), - skipDuplicates: z.boolean().optional() -}).strict(); -export const NotificationCreateManyActorGroupInputEnvelopeObjectSchema: z.ZodType = z.lazy(__makeSchema_NotificationCreateManyActorGroupInputEnvelope_schema) as unknown as z.ZodType; -export const NotificationCreateManyActorGroupInputEnvelopeObjectZodSchema = z.lazy(__makeSchema_NotificationCreateManyActorGroupInputEnvelope_schema); - - -// File: EventHostingGroupUpsertWithWhereUniqueWithoutGroupInput.schema.ts -const __makeSchema_EventHostingGroupUpsertWithWhereUniqueWithoutGroupInput_schema = () => z.object({ - get where(){ return EventHostingGroupWhereUniqueInputObjectSchema; }, - update: z.union([EventHostingGroupUpdateWithoutGroupInputObjectSchema, EventHostingGroupUncheckedUpdateWithoutGroupInputObjectSchema]), - create: z.union([EventHostingGroupCreateWithoutGroupInputObjectSchema, EventHostingGroupUncheckedCreateWithoutGroupInputObjectSchema]) -}).strict(); -export const EventHostingGroupUpsertWithWhereUniqueWithoutGroupInputObjectSchema: z.ZodType = z.lazy(__makeSchema_EventHostingGroupUpsertWithWhereUniqueWithoutGroupInput_schema) as unknown as z.ZodType; -export const EventHostingGroupUpsertWithWhereUniqueWithoutGroupInputObjectZodSchema = z.lazy(__makeSchema_EventHostingGroupUpsertWithWhereUniqueWithoutGroupInput_schema); - - -// File: EventHostingGroupUpdateWithWhereUniqueWithoutGroupInput.schema.ts -const __makeSchema_EventHostingGroupUpdateWithWhereUniqueWithoutGroupInput_schema = () => z.object({ - get where(){ return EventHostingGroupWhereUniqueInputObjectSchema; }, - data: z.union([EventHostingGroupUpdateWithoutGroupInputObjectSchema, EventHostingGroupUncheckedUpdateWithoutGroupInputObjectSchema]) -}).strict(); -export const EventHostingGroupUpdateWithWhereUniqueWithoutGroupInputObjectSchema: z.ZodType = z.lazy(__makeSchema_EventHostingGroupUpdateWithWhereUniqueWithoutGroupInput_schema) as unknown as z.ZodType; -export const EventHostingGroupUpdateWithWhereUniqueWithoutGroupInputObjectZodSchema = z.lazy(__makeSchema_EventHostingGroupUpdateWithWhereUniqueWithoutGroupInput_schema); - - -// File: EventHostingGroupUpdateManyWithWhereWithoutGroupInput.schema.ts -const __makeSchema_EventHostingGroupUpdateManyWithWhereWithoutGroupInput_schema = () => z.object({ - get where(){ return EventHostingGroupScalarWhereInputObjectSchema; }, - data: z.union([EventHostingGroupUpdateManyMutationInputObjectSchema, EventHostingGroupUncheckedUpdateManyWithoutGroupInputObjectSchema]) -}).strict(); -export const EventHostingGroupUpdateManyWithWhereWithoutGroupInputObjectSchema: z.ZodType = z.lazy(__makeSchema_EventHostingGroupUpdateManyWithWhereWithoutGroupInput_schema) as unknown as z.ZodType; -export const EventHostingGroupUpdateManyWithWhereWithoutGroupInputObjectZodSchema = z.lazy(__makeSchema_EventHostingGroupUpdateManyWithWhereWithoutGroupInput_schema); - - -// File: EventHostingGroupScalarWhereInput.schema.ts -const __makeSchema_EventHostingGroupScalarWhereInput_schema = () => z.object({ - AND: z.union([EventHostingGroupScalarWhereInputObjectSchema, EventHostingGroupScalarWhereInputObjectSchema.array()]).optional(), - get OR(){ return EventHostingGroupScalarWhereInputObjectSchema.array().optional(); }, - NOT: z.union([EventHostingGroupScalarWhereInputObjectSchema, EventHostingGroupScalarWhereInputObjectSchema.array()]).optional(), - groupId: z.union([StringFilterObjectSchema, z.string()]).optional(), - eventId: z.union([StringFilterObjectSchema, z.string()]).optional() -}).strict(); -export const EventHostingGroupScalarWhereInputObjectSchema: z.ZodType = z.lazy(__makeSchema_EventHostingGroupScalarWhereInput_schema) as unknown as z.ZodType; -export const EventHostingGroupScalarWhereInputObjectZodSchema = z.lazy(__makeSchema_EventHostingGroupScalarWhereInput_schema); - - -// File: ContestUpsertWithWhereUniqueWithoutGroupsInput.schema.ts -const __makeSchema_ContestUpsertWithWhereUniqueWithoutGroupsInput_schema = () => z.object({ - get where(){ return ContestWhereUniqueInputObjectSchema; }, - update: z.union([ContestUpdateWithoutGroupsInputObjectSchema, ContestUncheckedUpdateWithoutGroupsInputObjectSchema]), - create: z.union([ContestCreateWithoutGroupsInputObjectSchema, ContestUncheckedCreateWithoutGroupsInputObjectSchema]) -}).strict(); -export const ContestUpsertWithWhereUniqueWithoutGroupsInputObjectSchema: z.ZodType = z.lazy(__makeSchema_ContestUpsertWithWhereUniqueWithoutGroupsInput_schema) as unknown as z.ZodType; -export const ContestUpsertWithWhereUniqueWithoutGroupsInputObjectZodSchema = z.lazy(__makeSchema_ContestUpsertWithWhereUniqueWithoutGroupsInput_schema); - - -// File: ContestUpdateWithWhereUniqueWithoutGroupsInput.schema.ts -const __makeSchema_ContestUpdateWithWhereUniqueWithoutGroupsInput_schema = () => z.object({ - get where(){ return ContestWhereUniqueInputObjectSchema; }, - data: z.union([ContestUpdateWithoutGroupsInputObjectSchema, ContestUncheckedUpdateWithoutGroupsInputObjectSchema]) -}).strict(); -export const ContestUpdateWithWhereUniqueWithoutGroupsInputObjectSchema: z.ZodType = z.lazy(__makeSchema_ContestUpdateWithWhereUniqueWithoutGroupsInput_schema) as unknown as z.ZodType; -export const ContestUpdateWithWhereUniqueWithoutGroupsInputObjectZodSchema = z.lazy(__makeSchema_ContestUpdateWithWhereUniqueWithoutGroupsInput_schema); - - -// File: ContestUpdateManyWithWhereWithoutGroupsInput.schema.ts -const __makeSchema_ContestUpdateManyWithWhereWithoutGroupsInput_schema = () => z.object({ - get where(){ return ContestScalarWhereInputObjectSchema; }, - data: z.union([ContestUpdateManyMutationInputObjectSchema, ContestUncheckedUpdateManyWithoutGroupsInputObjectSchema]) -}).strict(); -export const ContestUpdateManyWithWhereWithoutGroupsInputObjectSchema: z.ZodType = z.lazy(__makeSchema_ContestUpdateManyWithWhereWithoutGroupsInput_schema) as unknown as z.ZodType; -export const ContestUpdateManyWithWhereWithoutGroupsInputObjectZodSchema = z.lazy(__makeSchema_ContestUpdateManyWithWhereWithoutGroupsInput_schema); - - -// File: ContestScalarWhereInput.schema.ts -const __makeSchema_ContestScalarWhereInput_schema = () => z.object({ - AND: z.union([ContestScalarWhereInputObjectSchema, ContestScalarWhereInputObjectSchema.array()]).optional(), - get OR(){ return ContestScalarWhereInputObjectSchema.array().optional(); }, - NOT: z.union([ContestScalarWhereInputObjectSchema, ContestScalarWhereInputObjectSchema.array()]).optional(), - id: z.union([StringFilterObjectSchema, z.string()]).optional(), - name: z.union([StringFilterObjectSchema, z.string()]).optional(), - description: z.union([StringNullableFilterObjectSchema, z.string()]).optional().nullable(), - startDate: z.union([DateTimeNullableFilterObjectSchema, z.coerce.date()]).optional().nullable(), - resultType: z.union([EnumContestResultTypeFilterObjectSchema, ContestResultTypeSchema]).optional(), - resultOrder: z.union([EnumContestResultOrderFilterObjectSchema, ContestResultOrderSchema]).optional(), - winnerContestantId: z.union([StringNullableFilterObjectSchema, z.string()]).optional().nullable() -}).strict(); -export const ContestScalarWhereInputObjectSchema: z.ZodType = z.lazy(__makeSchema_ContestScalarWhereInput_schema) as unknown as z.ZodType; -export const ContestScalarWhereInputObjectZodSchema = z.lazy(__makeSchema_ContestScalarWhereInput_schema); - - -// File: GroupMembershipUpsertWithWhereUniqueWithoutGroupInput.schema.ts -const __makeSchema_GroupMembershipUpsertWithWhereUniqueWithoutGroupInput_schema = () => z.object({ - get where(){ return GroupMembershipWhereUniqueInputObjectSchema; }, - update: z.union([GroupMembershipUpdateWithoutGroupInputObjectSchema, GroupMembershipUncheckedUpdateWithoutGroupInputObjectSchema]), - create: z.union([GroupMembershipCreateWithoutGroupInputObjectSchema, GroupMembershipUncheckedCreateWithoutGroupInputObjectSchema]) -}).strict(); -export const GroupMembershipUpsertWithWhereUniqueWithoutGroupInputObjectSchema: z.ZodType = z.lazy(__makeSchema_GroupMembershipUpsertWithWhereUniqueWithoutGroupInput_schema) as unknown as z.ZodType; -export const GroupMembershipUpsertWithWhereUniqueWithoutGroupInputObjectZodSchema = z.lazy(__makeSchema_GroupMembershipUpsertWithWhereUniqueWithoutGroupInput_schema); - - -// File: GroupMembershipUpdateWithWhereUniqueWithoutGroupInput.schema.ts -const __makeSchema_GroupMembershipUpdateWithWhereUniqueWithoutGroupInput_schema = () => z.object({ - get where(){ return GroupMembershipWhereUniqueInputObjectSchema; }, - data: z.union([GroupMembershipUpdateWithoutGroupInputObjectSchema, GroupMembershipUncheckedUpdateWithoutGroupInputObjectSchema]) -}).strict(); -export const GroupMembershipUpdateWithWhereUniqueWithoutGroupInputObjectSchema: z.ZodType = z.lazy(__makeSchema_GroupMembershipUpdateWithWhereUniqueWithoutGroupInput_schema) as unknown as z.ZodType; -export const GroupMembershipUpdateWithWhereUniqueWithoutGroupInputObjectZodSchema = z.lazy(__makeSchema_GroupMembershipUpdateWithWhereUniqueWithoutGroupInput_schema); - - -// File: GroupMembershipUpdateManyWithWhereWithoutGroupInput.schema.ts -const __makeSchema_GroupMembershipUpdateManyWithWhereWithoutGroupInput_schema = () => z.object({ - get where(){ return GroupMembershipScalarWhereInputObjectSchema; }, - data: z.union([GroupMembershipUpdateManyMutationInputObjectSchema, GroupMembershipUncheckedUpdateManyWithoutGroupInputObjectSchema]) -}).strict(); -export const GroupMembershipUpdateManyWithWhereWithoutGroupInputObjectSchema: z.ZodType = z.lazy(__makeSchema_GroupMembershipUpdateManyWithWhereWithoutGroupInput_schema) as unknown as z.ZodType; -export const GroupMembershipUpdateManyWithWhereWithoutGroupInputObjectZodSchema = z.lazy(__makeSchema_GroupMembershipUpdateManyWithWhereWithoutGroupInput_schema); - - -// File: MarkGroupUpsertWithWhereUniqueWithoutGroupInput.schema.ts -const __makeSchema_MarkGroupUpsertWithWhereUniqueWithoutGroupInput_schema = () => z.object({ - get where(){ return MarkGroupWhereUniqueInputObjectSchema; }, - update: z.union([MarkGroupUpdateWithoutGroupInputObjectSchema, MarkGroupUncheckedUpdateWithoutGroupInputObjectSchema]), - create: z.union([MarkGroupCreateWithoutGroupInputObjectSchema, MarkGroupUncheckedCreateWithoutGroupInputObjectSchema]) -}).strict(); -export const MarkGroupUpsertWithWhereUniqueWithoutGroupInputObjectSchema: z.ZodType = z.lazy(__makeSchema_MarkGroupUpsertWithWhereUniqueWithoutGroupInput_schema) as unknown as z.ZodType; -export const MarkGroupUpsertWithWhereUniqueWithoutGroupInputObjectZodSchema = z.lazy(__makeSchema_MarkGroupUpsertWithWhereUniqueWithoutGroupInput_schema); - - -// File: MarkGroupUpdateWithWhereUniqueWithoutGroupInput.schema.ts -const __makeSchema_MarkGroupUpdateWithWhereUniqueWithoutGroupInput_schema = () => z.object({ - get where(){ return MarkGroupWhereUniqueInputObjectSchema; }, - data: z.union([MarkGroupUpdateWithoutGroupInputObjectSchema, MarkGroupUncheckedUpdateWithoutGroupInputObjectSchema]) -}).strict(); -export const MarkGroupUpdateWithWhereUniqueWithoutGroupInputObjectSchema: z.ZodType = z.lazy(__makeSchema_MarkGroupUpdateWithWhereUniqueWithoutGroupInput_schema) as unknown as z.ZodType; -export const MarkGroupUpdateWithWhereUniqueWithoutGroupInputObjectZodSchema = z.lazy(__makeSchema_MarkGroupUpdateWithWhereUniqueWithoutGroupInput_schema); - - -// File: MarkGroupUpdateManyWithWhereWithoutGroupInput.schema.ts -const __makeSchema_MarkGroupUpdateManyWithWhereWithoutGroupInput_schema = () => z.object({ - get where(){ return MarkGroupScalarWhereInputObjectSchema; }, - data: z.union([MarkGroupUpdateManyMutationInputObjectSchema, MarkGroupUncheckedUpdateManyWithoutGroupInputObjectSchema]) -}).strict(); -export const MarkGroupUpdateManyWithWhereWithoutGroupInputObjectSchema: z.ZodType = z.lazy(__makeSchema_MarkGroupUpdateManyWithWhereWithoutGroupInput_schema) as unknown as z.ZodType; -export const MarkGroupUpdateManyWithWhereWithoutGroupInputObjectZodSchema = z.lazy(__makeSchema_MarkGroupUpdateManyWithWhereWithoutGroupInput_schema); - - -// File: MarkGroupScalarWhereInput.schema.ts -const __makeSchema_MarkGroupScalarWhereInput_schema = () => z.object({ - AND: z.union([MarkGroupScalarWhereInputObjectSchema, MarkGroupScalarWhereInputObjectSchema.array()]).optional(), - get OR(){ return MarkGroupScalarWhereInputObjectSchema.array().optional(); }, - NOT: z.union([MarkGroupScalarWhereInputObjectSchema, MarkGroupScalarWhereInputObjectSchema.array()]).optional(), - markId: z.union([StringFilterObjectSchema, z.string()]).optional(), - groupId: z.union([StringFilterObjectSchema, z.string()]).optional() -}).strict(); -export const MarkGroupScalarWhereInputObjectSchema: z.ZodType = z.lazy(__makeSchema_MarkGroupScalarWhereInput_schema) as unknown as z.ZodType; -export const MarkGroupScalarWhereInputObjectZodSchema = z.lazy(__makeSchema_MarkGroupScalarWhereInput_schema); - - -// File: GroupRoleUpsertWithWhereUniqueWithoutGroupInput.schema.ts -const __makeSchema_GroupRoleUpsertWithWhereUniqueWithoutGroupInput_schema = () => z.object({ - get where(){ return GroupRoleWhereUniqueInputObjectSchema; }, - update: z.union([GroupRoleUpdateWithoutGroupInputObjectSchema, GroupRoleUncheckedUpdateWithoutGroupInputObjectSchema]), - create: z.union([GroupRoleCreateWithoutGroupInputObjectSchema, GroupRoleUncheckedCreateWithoutGroupInputObjectSchema]) -}).strict(); -export const GroupRoleUpsertWithWhereUniqueWithoutGroupInputObjectSchema: z.ZodType = z.lazy(__makeSchema_GroupRoleUpsertWithWhereUniqueWithoutGroupInput_schema) as unknown as z.ZodType; -export const GroupRoleUpsertWithWhereUniqueWithoutGroupInputObjectZodSchema = z.lazy(__makeSchema_GroupRoleUpsertWithWhereUniqueWithoutGroupInput_schema); - - -// File: GroupRoleUpdateWithWhereUniqueWithoutGroupInput.schema.ts -const __makeSchema_GroupRoleUpdateWithWhereUniqueWithoutGroupInput_schema = () => z.object({ - get where(){ return GroupRoleWhereUniqueInputObjectSchema; }, - data: z.union([GroupRoleUpdateWithoutGroupInputObjectSchema, GroupRoleUncheckedUpdateWithoutGroupInputObjectSchema]) -}).strict(); -export const GroupRoleUpdateWithWhereUniqueWithoutGroupInputObjectSchema: z.ZodType = z.lazy(__makeSchema_GroupRoleUpdateWithWhereUniqueWithoutGroupInput_schema) as unknown as z.ZodType; -export const GroupRoleUpdateWithWhereUniqueWithoutGroupInputObjectZodSchema = z.lazy(__makeSchema_GroupRoleUpdateWithWhereUniqueWithoutGroupInput_schema); - - -// File: GroupRoleUpdateManyWithWhereWithoutGroupInput.schema.ts -const __makeSchema_GroupRoleUpdateManyWithWhereWithoutGroupInput_schema = () => z.object({ - get where(){ return GroupRoleScalarWhereInputObjectSchema; }, - data: z.union([GroupRoleUpdateManyMutationInputObjectSchema, GroupRoleUncheckedUpdateManyWithoutGroupInputObjectSchema]) -}).strict(); -export const GroupRoleUpdateManyWithWhereWithoutGroupInputObjectSchema: z.ZodType = z.lazy(__makeSchema_GroupRoleUpdateManyWithWhereWithoutGroupInput_schema) as unknown as z.ZodType; -export const GroupRoleUpdateManyWithWhereWithoutGroupInputObjectZodSchema = z.lazy(__makeSchema_GroupRoleUpdateManyWithWhereWithoutGroupInput_schema); - - -// File: GroupRoleScalarWhereInput.schema.ts -const __makeSchema_GroupRoleScalarWhereInput_schema = () => z.object({ - AND: z.union([GroupRoleScalarWhereInputObjectSchema, GroupRoleScalarWhereInputObjectSchema.array()]).optional(), - get OR(){ return GroupRoleScalarWhereInputObjectSchema.array().optional(); }, - NOT: z.union([GroupRoleScalarWhereInputObjectSchema, GroupRoleScalarWhereInputObjectSchema.array()]).optional(), - id: z.union([StringFilterObjectSchema, z.string()]).optional(), - name: z.union([StringFilterObjectSchema, z.string()]).optional(), - type: z.union([EnumGroupRoleTypeFilterObjectSchema, GroupRoleTypeSchema]).optional(), - groupId: z.union([StringFilterObjectSchema, z.string()]).optional() -}).strict(); -export const GroupRoleScalarWhereInputObjectSchema: z.ZodType = z.lazy(__makeSchema_GroupRoleScalarWhereInput_schema) as unknown as z.ZodType; -export const GroupRoleScalarWhereInputObjectZodSchema = z.lazy(__makeSchema_GroupRoleScalarWhereInput_schema); - - -// File: NotificationUpsertWithWhereUniqueWithoutActorGroupInput.schema.ts -const __makeSchema_NotificationUpsertWithWhereUniqueWithoutActorGroupInput_schema = () => z.object({ - get where(){ return NotificationWhereUniqueInputObjectSchema; }, - update: z.union([NotificationUpdateWithoutActorGroupInputObjectSchema, NotificationUncheckedUpdateWithoutActorGroupInputObjectSchema]), - create: z.union([NotificationCreateWithoutActorGroupInputObjectSchema, NotificationUncheckedCreateWithoutActorGroupInputObjectSchema]) -}).strict(); -export const NotificationUpsertWithWhereUniqueWithoutActorGroupInputObjectSchema: z.ZodType = z.lazy(__makeSchema_NotificationUpsertWithWhereUniqueWithoutActorGroupInput_schema) as unknown as z.ZodType; -export const NotificationUpsertWithWhereUniqueWithoutActorGroupInputObjectZodSchema = z.lazy(__makeSchema_NotificationUpsertWithWhereUniqueWithoutActorGroupInput_schema); - - -// File: NotificationUpdateWithWhereUniqueWithoutActorGroupInput.schema.ts -const __makeSchema_NotificationUpdateWithWhereUniqueWithoutActorGroupInput_schema = () => z.object({ - get where(){ return NotificationWhereUniqueInputObjectSchema; }, - data: z.union([NotificationUpdateWithoutActorGroupInputObjectSchema, NotificationUncheckedUpdateWithoutActorGroupInputObjectSchema]) -}).strict(); -export const NotificationUpdateWithWhereUniqueWithoutActorGroupInputObjectSchema: z.ZodType = z.lazy(__makeSchema_NotificationUpdateWithWhereUniqueWithoutActorGroupInput_schema) as unknown as z.ZodType; -export const NotificationUpdateWithWhereUniqueWithoutActorGroupInputObjectZodSchema = z.lazy(__makeSchema_NotificationUpdateWithWhereUniqueWithoutActorGroupInput_schema); - - -// File: NotificationUpdateManyWithWhereWithoutActorGroupInput.schema.ts -const __makeSchema_NotificationUpdateManyWithWhereWithoutActorGroupInput_schema = () => z.object({ - get where(){ return NotificationScalarWhereInputObjectSchema; }, - data: z.union([NotificationUpdateManyMutationInputObjectSchema, NotificationUncheckedUpdateManyWithoutActorGroupInputObjectSchema]) -}).strict(); -export const NotificationUpdateManyWithWhereWithoutActorGroupInputObjectSchema: z.ZodType = z.lazy(__makeSchema_NotificationUpdateManyWithWhereWithoutActorGroupInput_schema) as unknown as z.ZodType; -export const NotificationUpdateManyWithWhereWithoutActorGroupInputObjectZodSchema = z.lazy(__makeSchema_NotificationUpdateManyWithWhereWithoutActorGroupInput_schema); - - -// File: GroupCreateWithoutMembershipsInput.schema.ts -const __makeSchema_GroupCreateWithoutMembershipsInput_schema = () => z.object({ - slug: z.string(), - abbreviation: z.string(), - name: z.string().optional().nullable(), - shortDescription: z.string().optional().nullable(), - description: z.string(), - imageUrl: z.string().optional().nullable(), - email: z.string().optional().nullable(), - contactUrl: z.string().optional().nullable(), - slackUrl: z.string().optional().nullable(), - showLeaderAsContact: z.boolean().optional(), - createdAt: z.coerce.date().optional(), - deactivatedAt: z.coerce.date().optional().nullable(), - workspaceGroupId: z.string().optional().nullable(), - memberVisibility: GroupMemberVisibilitySchema.optional(), - recruitmentMethod: GroupRecruitmentMethodSchema.optional(), - type: GroupTypeSchema, - get events(){ return EventHostingGroupCreateNestedManyWithoutGroupInputObjectSchema.optional(); }, - get contests(){ return ContestCreateNestedManyWithoutGroupsInputObjectSchema.optional(); }, - get marks(){ return MarkGroupCreateNestedManyWithoutGroupInputObjectSchema.optional(); }, - get roles(){ return GroupRoleCreateNestedManyWithoutGroupInputObjectSchema.optional(); }, - get notifications(){ return NotificationCreateNestedManyWithoutActorGroupInputObjectSchema.optional(); } -}).strict(); -export const GroupCreateWithoutMembershipsInputObjectSchema: z.ZodType = z.lazy(__makeSchema_GroupCreateWithoutMembershipsInput_schema) as unknown as z.ZodType; -export const GroupCreateWithoutMembershipsInputObjectZodSchema = z.lazy(__makeSchema_GroupCreateWithoutMembershipsInput_schema); - - -// File: GroupUncheckedCreateWithoutMembershipsInput.schema.ts -const __makeSchema_GroupUncheckedCreateWithoutMembershipsInput_schema = () => z.object({ - slug: z.string(), - abbreviation: z.string(), - name: z.string().optional().nullable(), - shortDescription: z.string().optional().nullable(), - description: z.string(), - imageUrl: z.string().optional().nullable(), - email: z.string().optional().nullable(), - contactUrl: z.string().optional().nullable(), - slackUrl: z.string().optional().nullable(), - showLeaderAsContact: z.boolean().optional(), - createdAt: z.coerce.date().optional(), - deactivatedAt: z.coerce.date().optional().nullable(), - workspaceGroupId: z.string().optional().nullable(), - memberVisibility: GroupMemberVisibilitySchema.optional(), - recruitmentMethod: GroupRecruitmentMethodSchema.optional(), - type: GroupTypeSchema, - get events(){ return EventHostingGroupUncheckedCreateNestedManyWithoutGroupInputObjectSchema.optional(); }, - get contests(){ return ContestUncheckedCreateNestedManyWithoutGroupsInputObjectSchema.optional(); }, - get marks(){ return MarkGroupUncheckedCreateNestedManyWithoutGroupInputObjectSchema.optional(); }, - get roles(){ return GroupRoleUncheckedCreateNestedManyWithoutGroupInputObjectSchema.optional(); }, - get notifications(){ return NotificationUncheckedCreateNestedManyWithoutActorGroupInputObjectSchema.optional(); } -}).strict(); -export const GroupUncheckedCreateWithoutMembershipsInputObjectSchema: z.ZodType = z.lazy(__makeSchema_GroupUncheckedCreateWithoutMembershipsInput_schema) as unknown as z.ZodType; -export const GroupUncheckedCreateWithoutMembershipsInputObjectZodSchema = z.lazy(__makeSchema_GroupUncheckedCreateWithoutMembershipsInput_schema); - - -// File: GroupCreateOrConnectWithoutMembershipsInput.schema.ts -const __makeSchema_GroupCreateOrConnectWithoutMembershipsInput_schema = () => z.object({ - get where(){ return GroupWhereUniqueInputObjectSchema; }, - create: z.union([GroupCreateWithoutMembershipsInputObjectSchema, GroupUncheckedCreateWithoutMembershipsInputObjectSchema]) -}).strict(); -export const GroupCreateOrConnectWithoutMembershipsInputObjectSchema: z.ZodType = z.lazy(__makeSchema_GroupCreateOrConnectWithoutMembershipsInput_schema) as unknown as z.ZodType; -export const GroupCreateOrConnectWithoutMembershipsInputObjectZodSchema = z.lazy(__makeSchema_GroupCreateOrConnectWithoutMembershipsInput_schema); - - -// File: UserCreateWithoutGroupMembershipsInput.schema.ts -const __makeSchema_UserCreateWithoutGroupMembershipsInput_schema = () => z.object({ - id: z.string(), - username: z.string(), - name: z.string().optional().nullable(), - email: z.string().optional().nullable(), - imageUrl: z.string().optional().nullable(), - biography: z.string().optional().nullable(), - phone: z.string().optional().nullable(), - gender: GenderSchema.optional(), - dietaryRestrictions: z.string().optional().nullable(), - ntnuUsername: z.string().optional().nullable(), - flags: z.union([UserCreateflagsInputObjectSchema, z.string().array()]).optional(), - workspaceUserId: z.string().optional().nullable(), - createdAt: z.coerce.date().optional(), - updatedAt: z.coerce.date().optional(), - privacyPermissionsId: z.string().optional().nullable(), - notificationPermissionsId: z.string().optional().nullable(), - get privacyPermissions(){ return PrivacyPermissionsCreateNestedOneWithoutUserInputObjectSchema.optional(); }, - get notificationPermissions(){ return NotificationPermissionsCreateNestedOneWithoutUserInputObjectSchema.optional(); }, - get attendee(){ return AttendeeCreateNestedManyWithoutUserInputObjectSchema.optional(); }, - get personalMark(){ return PersonalMarkCreateNestedManyWithoutUserInputObjectSchema.optional(); }, - get memberships(){ return MembershipCreateNestedManyWithoutUserInputObjectSchema.optional(); }, - get givenMarks(){ return PersonalMarkCreateNestedManyWithoutGivenByInputObjectSchema.optional(); }, - get attendeesRefunded(){ return AttendeeCreateNestedManyWithoutPaymentRefundedByInputObjectSchema.optional(); }, - get auditLogs(){ return AuditLogCreateNestedManyWithoutUserInputObjectSchema.optional(); }, - get deregisterReasons(){ return DeregisterReasonCreateNestedManyWithoutUserInputObjectSchema.optional(); }, - get notificationsReceived(){ return NotificationRecipientCreateNestedManyWithoutUserInputObjectSchema.optional(); }, - get notificationsCreated(){ return NotificationCreateNestedManyWithoutCreatedByInputObjectSchema.optional(); }, - get notificationsUpdated(){ return NotificationCreateNestedManyWithoutLastUpdatedByInputObjectSchema.optional(); }, - get contestants(){ return ContestantCreateNestedManyWithoutUserInputObjectSchema.optional(); }, - get contestTeams(){ return ContestTeamCreateNestedManyWithoutMembersInputObjectSchema.optional(); } -}).strict(); -export const UserCreateWithoutGroupMembershipsInputObjectSchema: z.ZodType = z.lazy(__makeSchema_UserCreateWithoutGroupMembershipsInput_schema) as unknown as z.ZodType; -export const UserCreateWithoutGroupMembershipsInputObjectZodSchema = z.lazy(__makeSchema_UserCreateWithoutGroupMembershipsInput_schema); - - -// File: UserUncheckedCreateWithoutGroupMembershipsInput.schema.ts -const __makeSchema_UserUncheckedCreateWithoutGroupMembershipsInput_schema = () => z.object({ - id: z.string(), - username: z.string(), - name: z.string().optional().nullable(), - email: z.string().optional().nullable(), - imageUrl: z.string().optional().nullable(), - biography: z.string().optional().nullable(), - phone: z.string().optional().nullable(), - gender: GenderSchema.optional(), - dietaryRestrictions: z.string().optional().nullable(), - ntnuUsername: z.string().optional().nullable(), - flags: z.union([UserCreateflagsInputObjectSchema, z.string().array()]).optional(), - workspaceUserId: z.string().optional().nullable(), - createdAt: z.coerce.date().optional(), - updatedAt: z.coerce.date().optional(), - privacyPermissionsId: z.string().optional().nullable(), - notificationPermissionsId: z.string().optional().nullable(), - get privacyPermissions(){ return PrivacyPermissionsUncheckedCreateNestedOneWithoutUserInputObjectSchema.optional(); }, - get notificationPermissions(){ return NotificationPermissionsUncheckedCreateNestedOneWithoutUserInputObjectSchema.optional(); }, - get attendee(){ return AttendeeUncheckedCreateNestedManyWithoutUserInputObjectSchema.optional(); }, - get personalMark(){ return PersonalMarkUncheckedCreateNestedManyWithoutUserInputObjectSchema.optional(); }, - get memberships(){ return MembershipUncheckedCreateNestedManyWithoutUserInputObjectSchema.optional(); }, - get givenMarks(){ return PersonalMarkUncheckedCreateNestedManyWithoutGivenByInputObjectSchema.optional(); }, - get attendeesRefunded(){ return AttendeeUncheckedCreateNestedManyWithoutPaymentRefundedByInputObjectSchema.optional(); }, - get auditLogs(){ return AuditLogUncheckedCreateNestedManyWithoutUserInputObjectSchema.optional(); }, - get deregisterReasons(){ return DeregisterReasonUncheckedCreateNestedManyWithoutUserInputObjectSchema.optional(); }, - get notificationsReceived(){ return NotificationRecipientUncheckedCreateNestedManyWithoutUserInputObjectSchema.optional(); }, - get notificationsCreated(){ return NotificationUncheckedCreateNestedManyWithoutCreatedByInputObjectSchema.optional(); }, - get notificationsUpdated(){ return NotificationUncheckedCreateNestedManyWithoutLastUpdatedByInputObjectSchema.optional(); }, - get contestants(){ return ContestantUncheckedCreateNestedManyWithoutUserInputObjectSchema.optional(); }, - get contestTeams(){ return ContestTeamUncheckedCreateNestedManyWithoutMembersInputObjectSchema.optional(); } -}).strict(); -export const UserUncheckedCreateWithoutGroupMembershipsInputObjectSchema: z.ZodType = z.lazy(__makeSchema_UserUncheckedCreateWithoutGroupMembershipsInput_schema) as unknown as z.ZodType; -export const UserUncheckedCreateWithoutGroupMembershipsInputObjectZodSchema = z.lazy(__makeSchema_UserUncheckedCreateWithoutGroupMembershipsInput_schema); - - -// File: UserCreateOrConnectWithoutGroupMembershipsInput.schema.ts -const __makeSchema_UserCreateOrConnectWithoutGroupMembershipsInput_schema = () => z.object({ - get where(){ return UserWhereUniqueInputObjectSchema; }, - create: z.union([UserCreateWithoutGroupMembershipsInputObjectSchema, UserUncheckedCreateWithoutGroupMembershipsInputObjectSchema]) -}).strict(); -export const UserCreateOrConnectWithoutGroupMembershipsInputObjectSchema: z.ZodType = z.lazy(__makeSchema_UserCreateOrConnectWithoutGroupMembershipsInput_schema) as unknown as z.ZodType; -export const UserCreateOrConnectWithoutGroupMembershipsInputObjectZodSchema = z.lazy(__makeSchema_UserCreateOrConnectWithoutGroupMembershipsInput_schema); - - -// File: GroupMembershipRoleCreateWithoutMembershipInput.schema.ts -const __makeSchema_GroupMembershipRoleCreateWithoutMembershipInput_schema = () => z.object({ - get role(){ return GroupRoleCreateNestedOneWithoutGroupMembershipRolesInputObjectSchema; } -}).strict(); -export const GroupMembershipRoleCreateWithoutMembershipInputObjectSchema: z.ZodType = z.lazy(__makeSchema_GroupMembershipRoleCreateWithoutMembershipInput_schema) as unknown as z.ZodType; -export const GroupMembershipRoleCreateWithoutMembershipInputObjectZodSchema = z.lazy(__makeSchema_GroupMembershipRoleCreateWithoutMembershipInput_schema); - - -// File: GroupMembershipRoleUncheckedCreateWithoutMembershipInput.schema.ts -const __makeSchema_GroupMembershipRoleUncheckedCreateWithoutMembershipInput_schema = () => z.object({ - roleId: z.string() -}).strict(); -export const GroupMembershipRoleUncheckedCreateWithoutMembershipInputObjectSchema: z.ZodType = z.lazy(__makeSchema_GroupMembershipRoleUncheckedCreateWithoutMembershipInput_schema) as unknown as z.ZodType; -export const GroupMembershipRoleUncheckedCreateWithoutMembershipInputObjectZodSchema = z.lazy(__makeSchema_GroupMembershipRoleUncheckedCreateWithoutMembershipInput_schema); - - -// File: GroupMembershipRoleCreateOrConnectWithoutMembershipInput.schema.ts -const __makeSchema_GroupMembershipRoleCreateOrConnectWithoutMembershipInput_schema = () => z.object({ - get where(){ return GroupMembershipRoleWhereUniqueInputObjectSchema; }, - create: z.union([GroupMembershipRoleCreateWithoutMembershipInputObjectSchema, GroupMembershipRoleUncheckedCreateWithoutMembershipInputObjectSchema]) -}).strict(); -export const GroupMembershipRoleCreateOrConnectWithoutMembershipInputObjectSchema: z.ZodType = z.lazy(__makeSchema_GroupMembershipRoleCreateOrConnectWithoutMembershipInput_schema) as unknown as z.ZodType; -export const GroupMembershipRoleCreateOrConnectWithoutMembershipInputObjectZodSchema = z.lazy(__makeSchema_GroupMembershipRoleCreateOrConnectWithoutMembershipInput_schema); - - -// File: GroupMembershipRoleCreateManyMembershipInputEnvelope.schema.ts -const __makeSchema_GroupMembershipRoleCreateManyMembershipInputEnvelope_schema = () => z.object({ - data: z.union([GroupMembershipRoleCreateManyMembershipInputObjectSchema, GroupMembershipRoleCreateManyMembershipInputObjectSchema.array()]), - skipDuplicates: z.boolean().optional() -}).strict(); -export const GroupMembershipRoleCreateManyMembershipInputEnvelopeObjectSchema: z.ZodType = z.lazy(__makeSchema_GroupMembershipRoleCreateManyMembershipInputEnvelope_schema) as unknown as z.ZodType; -export const GroupMembershipRoleCreateManyMembershipInputEnvelopeObjectZodSchema = z.lazy(__makeSchema_GroupMembershipRoleCreateManyMembershipInputEnvelope_schema); - - -// File: GroupUpsertWithoutMembershipsInput.schema.ts -const __makeSchema_GroupUpsertWithoutMembershipsInput_schema = () => z.object({ - update: z.union([GroupUpdateWithoutMembershipsInputObjectSchema, GroupUncheckedUpdateWithoutMembershipsInputObjectSchema]), - create: z.union([GroupCreateWithoutMembershipsInputObjectSchema, GroupUncheckedCreateWithoutMembershipsInputObjectSchema]), - get where(){ return GroupWhereInputObjectSchema.optional(); } -}).strict(); -export const GroupUpsertWithoutMembershipsInputObjectSchema: z.ZodType = z.lazy(__makeSchema_GroupUpsertWithoutMembershipsInput_schema) as unknown as z.ZodType; -export const GroupUpsertWithoutMembershipsInputObjectZodSchema = z.lazy(__makeSchema_GroupUpsertWithoutMembershipsInput_schema); - - -// File: GroupUpdateToOneWithWhereWithoutMembershipsInput.schema.ts -const __makeSchema_GroupUpdateToOneWithWhereWithoutMembershipsInput_schema = () => z.object({ - get where(){ return GroupWhereInputObjectSchema.optional(); }, - data: z.union([GroupUpdateWithoutMembershipsInputObjectSchema, GroupUncheckedUpdateWithoutMembershipsInputObjectSchema]) -}).strict(); -export const GroupUpdateToOneWithWhereWithoutMembershipsInputObjectSchema: z.ZodType = z.lazy(__makeSchema_GroupUpdateToOneWithWhereWithoutMembershipsInput_schema) as unknown as z.ZodType; -export const GroupUpdateToOneWithWhereWithoutMembershipsInputObjectZodSchema = z.lazy(__makeSchema_GroupUpdateToOneWithWhereWithoutMembershipsInput_schema); - - -// File: GroupUpdateWithoutMembershipsInput.schema.ts -const __makeSchema_GroupUpdateWithoutMembershipsInput_schema = () => z.object({ - slug: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - abbreviation: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - name: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - shortDescription: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - description: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - imageUrl: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - email: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - contactUrl: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - slackUrl: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - showLeaderAsContact: z.union([z.boolean(), BoolFieldUpdateOperationsInputObjectSchema]).optional(), - createdAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - deactivatedAt: z.union([z.coerce.date(), NullableDateTimeFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - workspaceGroupId: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - memberVisibility: z.union([GroupMemberVisibilitySchema, EnumGroupMemberVisibilityFieldUpdateOperationsInputObjectSchema]).optional(), - recruitmentMethod: z.union([GroupRecruitmentMethodSchema, EnumGroupRecruitmentMethodFieldUpdateOperationsInputObjectSchema]).optional(), - type: z.union([GroupTypeSchema, EnumGroupTypeFieldUpdateOperationsInputObjectSchema]).optional(), - get events(){ return EventHostingGroupUpdateManyWithoutGroupNestedInputObjectSchema.optional(); }, - get contests(){ return ContestUpdateManyWithoutGroupsNestedInputObjectSchema.optional(); }, - get marks(){ return MarkGroupUpdateManyWithoutGroupNestedInputObjectSchema.optional(); }, - get roles(){ return GroupRoleUpdateManyWithoutGroupNestedInputObjectSchema.optional(); }, - get notifications(){ return NotificationUpdateManyWithoutActorGroupNestedInputObjectSchema.optional(); } -}).strict(); -export const GroupUpdateWithoutMembershipsInputObjectSchema: z.ZodType = z.lazy(__makeSchema_GroupUpdateWithoutMembershipsInput_schema) as unknown as z.ZodType; -export const GroupUpdateWithoutMembershipsInputObjectZodSchema = z.lazy(__makeSchema_GroupUpdateWithoutMembershipsInput_schema); - - -// File: GroupUncheckedUpdateWithoutMembershipsInput.schema.ts -const __makeSchema_GroupUncheckedUpdateWithoutMembershipsInput_schema = () => z.object({ - slug: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - abbreviation: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - name: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - shortDescription: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - description: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - imageUrl: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - email: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - contactUrl: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - slackUrl: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - showLeaderAsContact: z.union([z.boolean(), BoolFieldUpdateOperationsInputObjectSchema]).optional(), - createdAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - deactivatedAt: z.union([z.coerce.date(), NullableDateTimeFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - workspaceGroupId: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - memberVisibility: z.union([GroupMemberVisibilitySchema, EnumGroupMemberVisibilityFieldUpdateOperationsInputObjectSchema]).optional(), - recruitmentMethod: z.union([GroupRecruitmentMethodSchema, EnumGroupRecruitmentMethodFieldUpdateOperationsInputObjectSchema]).optional(), - type: z.union([GroupTypeSchema, EnumGroupTypeFieldUpdateOperationsInputObjectSchema]).optional(), - get events(){ return EventHostingGroupUncheckedUpdateManyWithoutGroupNestedInputObjectSchema.optional(); }, - get contests(){ return ContestUncheckedUpdateManyWithoutGroupsNestedInputObjectSchema.optional(); }, - get marks(){ return MarkGroupUncheckedUpdateManyWithoutGroupNestedInputObjectSchema.optional(); }, - get roles(){ return GroupRoleUncheckedUpdateManyWithoutGroupNestedInputObjectSchema.optional(); }, - get notifications(){ return NotificationUncheckedUpdateManyWithoutActorGroupNestedInputObjectSchema.optional(); } -}).strict(); -export const GroupUncheckedUpdateWithoutMembershipsInputObjectSchema: z.ZodType = z.lazy(__makeSchema_GroupUncheckedUpdateWithoutMembershipsInput_schema) as unknown as z.ZodType; -export const GroupUncheckedUpdateWithoutMembershipsInputObjectZodSchema = z.lazy(__makeSchema_GroupUncheckedUpdateWithoutMembershipsInput_schema); - - -// File: UserUpsertWithoutGroupMembershipsInput.schema.ts -const __makeSchema_UserUpsertWithoutGroupMembershipsInput_schema = () => z.object({ - update: z.union([UserUpdateWithoutGroupMembershipsInputObjectSchema, UserUncheckedUpdateWithoutGroupMembershipsInputObjectSchema]), - create: z.union([UserCreateWithoutGroupMembershipsInputObjectSchema, UserUncheckedCreateWithoutGroupMembershipsInputObjectSchema]), - get where(){ return UserWhereInputObjectSchema.optional(); } -}).strict(); -export const UserUpsertWithoutGroupMembershipsInputObjectSchema: z.ZodType = z.lazy(__makeSchema_UserUpsertWithoutGroupMembershipsInput_schema) as unknown as z.ZodType; -export const UserUpsertWithoutGroupMembershipsInputObjectZodSchema = z.lazy(__makeSchema_UserUpsertWithoutGroupMembershipsInput_schema); - - -// File: UserUpdateToOneWithWhereWithoutGroupMembershipsInput.schema.ts -const __makeSchema_UserUpdateToOneWithWhereWithoutGroupMembershipsInput_schema = () => z.object({ - get where(){ return UserWhereInputObjectSchema.optional(); }, - data: z.union([UserUpdateWithoutGroupMembershipsInputObjectSchema, UserUncheckedUpdateWithoutGroupMembershipsInputObjectSchema]) -}).strict(); -export const UserUpdateToOneWithWhereWithoutGroupMembershipsInputObjectSchema: z.ZodType = z.lazy(__makeSchema_UserUpdateToOneWithWhereWithoutGroupMembershipsInput_schema) as unknown as z.ZodType; -export const UserUpdateToOneWithWhereWithoutGroupMembershipsInputObjectZodSchema = z.lazy(__makeSchema_UserUpdateToOneWithWhereWithoutGroupMembershipsInput_schema); - - -// File: UserUpdateWithoutGroupMembershipsInput.schema.ts -const __makeSchema_UserUpdateWithoutGroupMembershipsInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - username: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - name: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - email: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - imageUrl: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - biography: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - phone: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - gender: z.union([GenderSchema, EnumGenderFieldUpdateOperationsInputObjectSchema]).optional(), - dietaryRestrictions: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - ntnuUsername: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - flags: z.union([UserUpdateflagsInputObjectSchema, z.string().array()]).optional(), - workspaceUserId: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - createdAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - updatedAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - privacyPermissionsId: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - notificationPermissionsId: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - get privacyPermissions(){ return PrivacyPermissionsUpdateOneWithoutUserNestedInputObjectSchema.optional(); }, - get notificationPermissions(){ return NotificationPermissionsUpdateOneWithoutUserNestedInputObjectSchema.optional(); }, - get attendee(){ return AttendeeUpdateManyWithoutUserNestedInputObjectSchema.optional(); }, - get personalMark(){ return PersonalMarkUpdateManyWithoutUserNestedInputObjectSchema.optional(); }, - get memberships(){ return MembershipUpdateManyWithoutUserNestedInputObjectSchema.optional(); }, - get givenMarks(){ return PersonalMarkUpdateManyWithoutGivenByNestedInputObjectSchema.optional(); }, - get attendeesRefunded(){ return AttendeeUpdateManyWithoutPaymentRefundedByNestedInputObjectSchema.optional(); }, - get auditLogs(){ return AuditLogUpdateManyWithoutUserNestedInputObjectSchema.optional(); }, - get deregisterReasons(){ return DeregisterReasonUpdateManyWithoutUserNestedInputObjectSchema.optional(); }, - get notificationsReceived(){ return NotificationRecipientUpdateManyWithoutUserNestedInputObjectSchema.optional(); }, - get notificationsCreated(){ return NotificationUpdateManyWithoutCreatedByNestedInputObjectSchema.optional(); }, - get notificationsUpdated(){ return NotificationUpdateManyWithoutLastUpdatedByNestedInputObjectSchema.optional(); }, - get contestants(){ return ContestantUpdateManyWithoutUserNestedInputObjectSchema.optional(); }, - get contestTeams(){ return ContestTeamUpdateManyWithoutMembersNestedInputObjectSchema.optional(); } -}).strict(); -export const UserUpdateWithoutGroupMembershipsInputObjectSchema: z.ZodType = z.lazy(__makeSchema_UserUpdateWithoutGroupMembershipsInput_schema) as unknown as z.ZodType; -export const UserUpdateWithoutGroupMembershipsInputObjectZodSchema = z.lazy(__makeSchema_UserUpdateWithoutGroupMembershipsInput_schema); - - -// File: UserUncheckedUpdateWithoutGroupMembershipsInput.schema.ts -const __makeSchema_UserUncheckedUpdateWithoutGroupMembershipsInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - username: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - name: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - email: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - imageUrl: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - biography: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - phone: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - gender: z.union([GenderSchema, EnumGenderFieldUpdateOperationsInputObjectSchema]).optional(), - dietaryRestrictions: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - ntnuUsername: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - flags: z.union([UserUpdateflagsInputObjectSchema, z.string().array()]).optional(), - workspaceUserId: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - createdAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - updatedAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - privacyPermissionsId: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - notificationPermissionsId: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - get privacyPermissions(){ return PrivacyPermissionsUncheckedUpdateOneWithoutUserNestedInputObjectSchema.optional(); }, - get notificationPermissions(){ return NotificationPermissionsUncheckedUpdateOneWithoutUserNestedInputObjectSchema.optional(); }, - get attendee(){ return AttendeeUncheckedUpdateManyWithoutUserNestedInputObjectSchema.optional(); }, - get personalMark(){ return PersonalMarkUncheckedUpdateManyWithoutUserNestedInputObjectSchema.optional(); }, - get memberships(){ return MembershipUncheckedUpdateManyWithoutUserNestedInputObjectSchema.optional(); }, - get givenMarks(){ return PersonalMarkUncheckedUpdateManyWithoutGivenByNestedInputObjectSchema.optional(); }, - get attendeesRefunded(){ return AttendeeUncheckedUpdateManyWithoutPaymentRefundedByNestedInputObjectSchema.optional(); }, - get auditLogs(){ return AuditLogUncheckedUpdateManyWithoutUserNestedInputObjectSchema.optional(); }, - get deregisterReasons(){ return DeregisterReasonUncheckedUpdateManyWithoutUserNestedInputObjectSchema.optional(); }, - get notificationsReceived(){ return NotificationRecipientUncheckedUpdateManyWithoutUserNestedInputObjectSchema.optional(); }, - get notificationsCreated(){ return NotificationUncheckedUpdateManyWithoutCreatedByNestedInputObjectSchema.optional(); }, - get notificationsUpdated(){ return NotificationUncheckedUpdateManyWithoutLastUpdatedByNestedInputObjectSchema.optional(); }, - get contestants(){ return ContestantUncheckedUpdateManyWithoutUserNestedInputObjectSchema.optional(); }, - get contestTeams(){ return ContestTeamUncheckedUpdateManyWithoutMembersNestedInputObjectSchema.optional(); } -}).strict(); -export const UserUncheckedUpdateWithoutGroupMembershipsInputObjectSchema: z.ZodType = z.lazy(__makeSchema_UserUncheckedUpdateWithoutGroupMembershipsInput_schema) as unknown as z.ZodType; -export const UserUncheckedUpdateWithoutGroupMembershipsInputObjectZodSchema = z.lazy(__makeSchema_UserUncheckedUpdateWithoutGroupMembershipsInput_schema); - - -// File: GroupMembershipRoleUpsertWithWhereUniqueWithoutMembershipInput.schema.ts -const __makeSchema_GroupMembershipRoleUpsertWithWhereUniqueWithoutMembershipInput_schema = () => z.object({ - get where(){ return GroupMembershipRoleWhereUniqueInputObjectSchema; }, - update: z.union([GroupMembershipRoleUpdateWithoutMembershipInputObjectSchema, GroupMembershipRoleUncheckedUpdateWithoutMembershipInputObjectSchema]), - create: z.union([GroupMembershipRoleCreateWithoutMembershipInputObjectSchema, GroupMembershipRoleUncheckedCreateWithoutMembershipInputObjectSchema]) -}).strict(); -export const GroupMembershipRoleUpsertWithWhereUniqueWithoutMembershipInputObjectSchema: z.ZodType = z.lazy(__makeSchema_GroupMembershipRoleUpsertWithWhereUniqueWithoutMembershipInput_schema) as unknown as z.ZodType; -export const GroupMembershipRoleUpsertWithWhereUniqueWithoutMembershipInputObjectZodSchema = z.lazy(__makeSchema_GroupMembershipRoleUpsertWithWhereUniqueWithoutMembershipInput_schema); - - -// File: GroupMembershipRoleUpdateWithWhereUniqueWithoutMembershipInput.schema.ts -const __makeSchema_GroupMembershipRoleUpdateWithWhereUniqueWithoutMembershipInput_schema = () => z.object({ - get where(){ return GroupMembershipRoleWhereUniqueInputObjectSchema; }, - data: z.union([GroupMembershipRoleUpdateWithoutMembershipInputObjectSchema, GroupMembershipRoleUncheckedUpdateWithoutMembershipInputObjectSchema]) -}).strict(); -export const GroupMembershipRoleUpdateWithWhereUniqueWithoutMembershipInputObjectSchema: z.ZodType = z.lazy(__makeSchema_GroupMembershipRoleUpdateWithWhereUniqueWithoutMembershipInput_schema) as unknown as z.ZodType; -export const GroupMembershipRoleUpdateWithWhereUniqueWithoutMembershipInputObjectZodSchema = z.lazy(__makeSchema_GroupMembershipRoleUpdateWithWhereUniqueWithoutMembershipInput_schema); - - -// File: GroupMembershipRoleUpdateManyWithWhereWithoutMembershipInput.schema.ts -const __makeSchema_GroupMembershipRoleUpdateManyWithWhereWithoutMembershipInput_schema = () => z.object({ - get where(){ return GroupMembershipRoleScalarWhereInputObjectSchema; }, - data: z.union([GroupMembershipRoleUpdateManyMutationInputObjectSchema, GroupMembershipRoleUncheckedUpdateManyWithoutMembershipInputObjectSchema]) -}).strict(); -export const GroupMembershipRoleUpdateManyWithWhereWithoutMembershipInputObjectSchema: z.ZodType = z.lazy(__makeSchema_GroupMembershipRoleUpdateManyWithWhereWithoutMembershipInput_schema) as unknown as z.ZodType; -export const GroupMembershipRoleUpdateManyWithWhereWithoutMembershipInputObjectZodSchema = z.lazy(__makeSchema_GroupMembershipRoleUpdateManyWithWhereWithoutMembershipInput_schema); - - -// File: GroupMembershipRoleScalarWhereInput.schema.ts -const __makeSchema_GroupMembershipRoleScalarWhereInput_schema = () => z.object({ - AND: z.union([GroupMembershipRoleScalarWhereInputObjectSchema, GroupMembershipRoleScalarWhereInputObjectSchema.array()]).optional(), - get OR(){ return GroupMembershipRoleScalarWhereInputObjectSchema.array().optional(); }, - NOT: z.union([GroupMembershipRoleScalarWhereInputObjectSchema, GroupMembershipRoleScalarWhereInputObjectSchema.array()]).optional(), - membershipId: z.union([StringFilterObjectSchema, z.string()]).optional(), - roleId: z.union([StringFilterObjectSchema, z.string()]).optional() -}).strict(); -export const GroupMembershipRoleScalarWhereInputObjectSchema: z.ZodType = z.lazy(__makeSchema_GroupMembershipRoleScalarWhereInput_schema) as unknown as z.ZodType; -export const GroupMembershipRoleScalarWhereInputObjectZodSchema = z.lazy(__makeSchema_GroupMembershipRoleScalarWhereInput_schema); - - -// File: GroupMembershipCreateWithoutRolesInput.schema.ts -const __makeSchema_GroupMembershipCreateWithoutRolesInput_schema = () => z.object({ - id: z.string().optional(), - start: z.coerce.date(), - end: z.coerce.date().optional().nullable(), - createdAt: z.coerce.date().optional(), - updatedAt: z.coerce.date().optional(), - get group(){ return GroupCreateNestedOneWithoutMembershipsInputObjectSchema; }, - get user(){ return UserCreateNestedOneWithoutGroupMembershipsInputObjectSchema; } -}).strict(); -export const GroupMembershipCreateWithoutRolesInputObjectSchema: z.ZodType = z.lazy(__makeSchema_GroupMembershipCreateWithoutRolesInput_schema) as unknown as z.ZodType; -export const GroupMembershipCreateWithoutRolesInputObjectZodSchema = z.lazy(__makeSchema_GroupMembershipCreateWithoutRolesInput_schema); - - -// File: GroupMembershipUncheckedCreateWithoutRolesInput.schema.ts -const __makeSchema_GroupMembershipUncheckedCreateWithoutRolesInput_schema = () => z.object({ - id: z.string().optional(), - start: z.coerce.date(), - end: z.coerce.date().optional().nullable(), - createdAt: z.coerce.date().optional(), - updatedAt: z.coerce.date().optional(), - groupId: z.string(), - userId: z.string() -}).strict(); -export const GroupMembershipUncheckedCreateWithoutRolesInputObjectSchema: z.ZodType = z.lazy(__makeSchema_GroupMembershipUncheckedCreateWithoutRolesInput_schema) as unknown as z.ZodType; -export const GroupMembershipUncheckedCreateWithoutRolesInputObjectZodSchema = z.lazy(__makeSchema_GroupMembershipUncheckedCreateWithoutRolesInput_schema); - - -// File: GroupMembershipCreateOrConnectWithoutRolesInput.schema.ts -const __makeSchema_GroupMembershipCreateOrConnectWithoutRolesInput_schema = () => z.object({ - get where(){ return GroupMembershipWhereUniqueInputObjectSchema; }, - create: z.union([GroupMembershipCreateWithoutRolesInputObjectSchema, GroupMembershipUncheckedCreateWithoutRolesInputObjectSchema]) -}).strict(); -export const GroupMembershipCreateOrConnectWithoutRolesInputObjectSchema: z.ZodType = z.lazy(__makeSchema_GroupMembershipCreateOrConnectWithoutRolesInput_schema) as unknown as z.ZodType; -export const GroupMembershipCreateOrConnectWithoutRolesInputObjectZodSchema = z.lazy(__makeSchema_GroupMembershipCreateOrConnectWithoutRolesInput_schema); - - -// File: GroupRoleCreateWithoutGroupMembershipRolesInput.schema.ts -const __makeSchema_GroupRoleCreateWithoutGroupMembershipRolesInput_schema = () => z.object({ - id: z.string().optional(), - name: z.string(), - type: GroupRoleTypeSchema.optional(), - get group(){ return GroupCreateNestedOneWithoutRolesInputObjectSchema; } -}).strict(); -export const GroupRoleCreateWithoutGroupMembershipRolesInputObjectSchema: z.ZodType = z.lazy(__makeSchema_GroupRoleCreateWithoutGroupMembershipRolesInput_schema) as unknown as z.ZodType; -export const GroupRoleCreateWithoutGroupMembershipRolesInputObjectZodSchema = z.lazy(__makeSchema_GroupRoleCreateWithoutGroupMembershipRolesInput_schema); - - -// File: GroupRoleUncheckedCreateWithoutGroupMembershipRolesInput.schema.ts -const __makeSchema_GroupRoleUncheckedCreateWithoutGroupMembershipRolesInput_schema = () => z.object({ - id: z.string().optional(), - name: z.string(), - type: GroupRoleTypeSchema.optional(), - groupId: z.string() -}).strict(); -export const GroupRoleUncheckedCreateWithoutGroupMembershipRolesInputObjectSchema: z.ZodType = z.lazy(__makeSchema_GroupRoleUncheckedCreateWithoutGroupMembershipRolesInput_schema) as unknown as z.ZodType; -export const GroupRoleUncheckedCreateWithoutGroupMembershipRolesInputObjectZodSchema = z.lazy(__makeSchema_GroupRoleUncheckedCreateWithoutGroupMembershipRolesInput_schema); - - -// File: GroupRoleCreateOrConnectWithoutGroupMembershipRolesInput.schema.ts -const __makeSchema_GroupRoleCreateOrConnectWithoutGroupMembershipRolesInput_schema = () => z.object({ - get where(){ return GroupRoleWhereUniqueInputObjectSchema; }, - create: z.union([GroupRoleCreateWithoutGroupMembershipRolesInputObjectSchema, GroupRoleUncheckedCreateWithoutGroupMembershipRolesInputObjectSchema]) -}).strict(); -export const GroupRoleCreateOrConnectWithoutGroupMembershipRolesInputObjectSchema: z.ZodType = z.lazy(__makeSchema_GroupRoleCreateOrConnectWithoutGroupMembershipRolesInput_schema) as unknown as z.ZodType; -export const GroupRoleCreateOrConnectWithoutGroupMembershipRolesInputObjectZodSchema = z.lazy(__makeSchema_GroupRoleCreateOrConnectWithoutGroupMembershipRolesInput_schema); - - -// File: GroupMembershipUpsertWithoutRolesInput.schema.ts -const __makeSchema_GroupMembershipUpsertWithoutRolesInput_schema = () => z.object({ - update: z.union([GroupMembershipUpdateWithoutRolesInputObjectSchema, GroupMembershipUncheckedUpdateWithoutRolesInputObjectSchema]), - create: z.union([GroupMembershipCreateWithoutRolesInputObjectSchema, GroupMembershipUncheckedCreateWithoutRolesInputObjectSchema]), - get where(){ return GroupMembershipWhereInputObjectSchema.optional(); } -}).strict(); -export const GroupMembershipUpsertWithoutRolesInputObjectSchema: z.ZodType = z.lazy(__makeSchema_GroupMembershipUpsertWithoutRolesInput_schema) as unknown as z.ZodType; -export const GroupMembershipUpsertWithoutRolesInputObjectZodSchema = z.lazy(__makeSchema_GroupMembershipUpsertWithoutRolesInput_schema); - - -// File: GroupMembershipUpdateToOneWithWhereWithoutRolesInput.schema.ts -const __makeSchema_GroupMembershipUpdateToOneWithWhereWithoutRolesInput_schema = () => z.object({ - get where(){ return GroupMembershipWhereInputObjectSchema.optional(); }, - data: z.union([GroupMembershipUpdateWithoutRolesInputObjectSchema, GroupMembershipUncheckedUpdateWithoutRolesInputObjectSchema]) -}).strict(); -export const GroupMembershipUpdateToOneWithWhereWithoutRolesInputObjectSchema: z.ZodType = z.lazy(__makeSchema_GroupMembershipUpdateToOneWithWhereWithoutRolesInput_schema) as unknown as z.ZodType; -export const GroupMembershipUpdateToOneWithWhereWithoutRolesInputObjectZodSchema = z.lazy(__makeSchema_GroupMembershipUpdateToOneWithWhereWithoutRolesInput_schema); - - -// File: GroupMembershipUpdateWithoutRolesInput.schema.ts -const __makeSchema_GroupMembershipUpdateWithoutRolesInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - start: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - end: z.union([z.coerce.date(), NullableDateTimeFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - createdAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - updatedAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - get group(){ return GroupUpdateOneRequiredWithoutMembershipsNestedInputObjectSchema.optional(); }, - get user(){ return UserUpdateOneRequiredWithoutGroupMembershipsNestedInputObjectSchema.optional(); } -}).strict(); -export const GroupMembershipUpdateWithoutRolesInputObjectSchema: z.ZodType = z.lazy(__makeSchema_GroupMembershipUpdateWithoutRolesInput_schema) as unknown as z.ZodType; -export const GroupMembershipUpdateWithoutRolesInputObjectZodSchema = z.lazy(__makeSchema_GroupMembershipUpdateWithoutRolesInput_schema); - - -// File: GroupMembershipUncheckedUpdateWithoutRolesInput.schema.ts -const __makeSchema_GroupMembershipUncheckedUpdateWithoutRolesInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - start: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - end: z.union([z.coerce.date(), NullableDateTimeFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - createdAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - updatedAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - groupId: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - userId: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional() -}).strict(); -export const GroupMembershipUncheckedUpdateWithoutRolesInputObjectSchema: z.ZodType = z.lazy(__makeSchema_GroupMembershipUncheckedUpdateWithoutRolesInput_schema) as unknown as z.ZodType; -export const GroupMembershipUncheckedUpdateWithoutRolesInputObjectZodSchema = z.lazy(__makeSchema_GroupMembershipUncheckedUpdateWithoutRolesInput_schema); - - -// File: GroupRoleUpsertWithoutGroupMembershipRolesInput.schema.ts -const __makeSchema_GroupRoleUpsertWithoutGroupMembershipRolesInput_schema = () => z.object({ - update: z.union([GroupRoleUpdateWithoutGroupMembershipRolesInputObjectSchema, GroupRoleUncheckedUpdateWithoutGroupMembershipRolesInputObjectSchema]), - create: z.union([GroupRoleCreateWithoutGroupMembershipRolesInputObjectSchema, GroupRoleUncheckedCreateWithoutGroupMembershipRolesInputObjectSchema]), - get where(){ return GroupRoleWhereInputObjectSchema.optional(); } -}).strict(); -export const GroupRoleUpsertWithoutGroupMembershipRolesInputObjectSchema: z.ZodType = z.lazy(__makeSchema_GroupRoleUpsertWithoutGroupMembershipRolesInput_schema) as unknown as z.ZodType; -export const GroupRoleUpsertWithoutGroupMembershipRolesInputObjectZodSchema = z.lazy(__makeSchema_GroupRoleUpsertWithoutGroupMembershipRolesInput_schema); - - -// File: GroupRoleUpdateToOneWithWhereWithoutGroupMembershipRolesInput.schema.ts -const __makeSchema_GroupRoleUpdateToOneWithWhereWithoutGroupMembershipRolesInput_schema = () => z.object({ - get where(){ return GroupRoleWhereInputObjectSchema.optional(); }, - data: z.union([GroupRoleUpdateWithoutGroupMembershipRolesInputObjectSchema, GroupRoleUncheckedUpdateWithoutGroupMembershipRolesInputObjectSchema]) -}).strict(); -export const GroupRoleUpdateToOneWithWhereWithoutGroupMembershipRolesInputObjectSchema: z.ZodType = z.lazy(__makeSchema_GroupRoleUpdateToOneWithWhereWithoutGroupMembershipRolesInput_schema) as unknown as z.ZodType; -export const GroupRoleUpdateToOneWithWhereWithoutGroupMembershipRolesInputObjectZodSchema = z.lazy(__makeSchema_GroupRoleUpdateToOneWithWhereWithoutGroupMembershipRolesInput_schema); - - -// File: GroupRoleUpdateWithoutGroupMembershipRolesInput.schema.ts -const __makeSchema_GroupRoleUpdateWithoutGroupMembershipRolesInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - name: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - type: z.union([GroupRoleTypeSchema, EnumGroupRoleTypeFieldUpdateOperationsInputObjectSchema]).optional(), - get group(){ return GroupUpdateOneRequiredWithoutRolesNestedInputObjectSchema.optional(); } -}).strict(); -export const GroupRoleUpdateWithoutGroupMembershipRolesInputObjectSchema: z.ZodType = z.lazy(__makeSchema_GroupRoleUpdateWithoutGroupMembershipRolesInput_schema) as unknown as z.ZodType; -export const GroupRoleUpdateWithoutGroupMembershipRolesInputObjectZodSchema = z.lazy(__makeSchema_GroupRoleUpdateWithoutGroupMembershipRolesInput_schema); - - -// File: GroupRoleUncheckedUpdateWithoutGroupMembershipRolesInput.schema.ts -const __makeSchema_GroupRoleUncheckedUpdateWithoutGroupMembershipRolesInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - name: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - type: z.union([GroupRoleTypeSchema, EnumGroupRoleTypeFieldUpdateOperationsInputObjectSchema]).optional(), - groupId: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional() -}).strict(); -export const GroupRoleUncheckedUpdateWithoutGroupMembershipRolesInputObjectSchema: z.ZodType = z.lazy(__makeSchema_GroupRoleUncheckedUpdateWithoutGroupMembershipRolesInput_schema) as unknown as z.ZodType; -export const GroupRoleUncheckedUpdateWithoutGroupMembershipRolesInputObjectZodSchema = z.lazy(__makeSchema_GroupRoleUncheckedUpdateWithoutGroupMembershipRolesInput_schema); - - -// File: GroupCreateWithoutRolesInput.schema.ts -const __makeSchema_GroupCreateWithoutRolesInput_schema = () => z.object({ - slug: z.string(), - abbreviation: z.string(), - name: z.string().optional().nullable(), - shortDescription: z.string().optional().nullable(), - description: z.string(), - imageUrl: z.string().optional().nullable(), - email: z.string().optional().nullable(), - contactUrl: z.string().optional().nullable(), - slackUrl: z.string().optional().nullable(), - showLeaderAsContact: z.boolean().optional(), - createdAt: z.coerce.date().optional(), - deactivatedAt: z.coerce.date().optional().nullable(), - workspaceGroupId: z.string().optional().nullable(), - memberVisibility: GroupMemberVisibilitySchema.optional(), - recruitmentMethod: GroupRecruitmentMethodSchema.optional(), - type: GroupTypeSchema, - get events(){ return EventHostingGroupCreateNestedManyWithoutGroupInputObjectSchema.optional(); }, - get contests(){ return ContestCreateNestedManyWithoutGroupsInputObjectSchema.optional(); }, - get memberships(){ return GroupMembershipCreateNestedManyWithoutGroupInputObjectSchema.optional(); }, - get marks(){ return MarkGroupCreateNestedManyWithoutGroupInputObjectSchema.optional(); }, - get notifications(){ return NotificationCreateNestedManyWithoutActorGroupInputObjectSchema.optional(); } -}).strict(); -export const GroupCreateWithoutRolesInputObjectSchema: z.ZodType = z.lazy(__makeSchema_GroupCreateWithoutRolesInput_schema) as unknown as z.ZodType; -export const GroupCreateWithoutRolesInputObjectZodSchema = z.lazy(__makeSchema_GroupCreateWithoutRolesInput_schema); - - -// File: GroupUncheckedCreateWithoutRolesInput.schema.ts -const __makeSchema_GroupUncheckedCreateWithoutRolesInput_schema = () => z.object({ - slug: z.string(), - abbreviation: z.string(), - name: z.string().optional().nullable(), - shortDescription: z.string().optional().nullable(), - description: z.string(), - imageUrl: z.string().optional().nullable(), - email: z.string().optional().nullable(), - contactUrl: z.string().optional().nullable(), - slackUrl: z.string().optional().nullable(), - showLeaderAsContact: z.boolean().optional(), - createdAt: z.coerce.date().optional(), - deactivatedAt: z.coerce.date().optional().nullable(), - workspaceGroupId: z.string().optional().nullable(), - memberVisibility: GroupMemberVisibilitySchema.optional(), - recruitmentMethod: GroupRecruitmentMethodSchema.optional(), - type: GroupTypeSchema, - get events(){ return EventHostingGroupUncheckedCreateNestedManyWithoutGroupInputObjectSchema.optional(); }, - get contests(){ return ContestUncheckedCreateNestedManyWithoutGroupsInputObjectSchema.optional(); }, - get memberships(){ return GroupMembershipUncheckedCreateNestedManyWithoutGroupInputObjectSchema.optional(); }, - get marks(){ return MarkGroupUncheckedCreateNestedManyWithoutGroupInputObjectSchema.optional(); }, - get notifications(){ return NotificationUncheckedCreateNestedManyWithoutActorGroupInputObjectSchema.optional(); } -}).strict(); -export const GroupUncheckedCreateWithoutRolesInputObjectSchema: z.ZodType = z.lazy(__makeSchema_GroupUncheckedCreateWithoutRolesInput_schema) as unknown as z.ZodType; -export const GroupUncheckedCreateWithoutRolesInputObjectZodSchema = z.lazy(__makeSchema_GroupUncheckedCreateWithoutRolesInput_schema); - - -// File: GroupCreateOrConnectWithoutRolesInput.schema.ts -const __makeSchema_GroupCreateOrConnectWithoutRolesInput_schema = () => z.object({ - get where(){ return GroupWhereUniqueInputObjectSchema; }, - create: z.union([GroupCreateWithoutRolesInputObjectSchema, GroupUncheckedCreateWithoutRolesInputObjectSchema]) -}).strict(); -export const GroupCreateOrConnectWithoutRolesInputObjectSchema: z.ZodType = z.lazy(__makeSchema_GroupCreateOrConnectWithoutRolesInput_schema) as unknown as z.ZodType; -export const GroupCreateOrConnectWithoutRolesInputObjectZodSchema = z.lazy(__makeSchema_GroupCreateOrConnectWithoutRolesInput_schema); - - -// File: GroupMembershipRoleCreateWithoutRoleInput.schema.ts -const __makeSchema_GroupMembershipRoleCreateWithoutRoleInput_schema = () => z.object({ - get membership(){ return GroupMembershipCreateNestedOneWithoutRolesInputObjectSchema; } -}).strict(); -export const GroupMembershipRoleCreateWithoutRoleInputObjectSchema: z.ZodType = z.lazy(__makeSchema_GroupMembershipRoleCreateWithoutRoleInput_schema) as unknown as z.ZodType; -export const GroupMembershipRoleCreateWithoutRoleInputObjectZodSchema = z.lazy(__makeSchema_GroupMembershipRoleCreateWithoutRoleInput_schema); - - -// File: GroupMembershipRoleUncheckedCreateWithoutRoleInput.schema.ts -const __makeSchema_GroupMembershipRoleUncheckedCreateWithoutRoleInput_schema = () => z.object({ - membershipId: z.string() -}).strict(); -export const GroupMembershipRoleUncheckedCreateWithoutRoleInputObjectSchema: z.ZodType = z.lazy(__makeSchema_GroupMembershipRoleUncheckedCreateWithoutRoleInput_schema) as unknown as z.ZodType; -export const GroupMembershipRoleUncheckedCreateWithoutRoleInputObjectZodSchema = z.lazy(__makeSchema_GroupMembershipRoleUncheckedCreateWithoutRoleInput_schema); - - -// File: GroupMembershipRoleCreateOrConnectWithoutRoleInput.schema.ts -const __makeSchema_GroupMembershipRoleCreateOrConnectWithoutRoleInput_schema = () => z.object({ - get where(){ return GroupMembershipRoleWhereUniqueInputObjectSchema; }, - create: z.union([GroupMembershipRoleCreateWithoutRoleInputObjectSchema, GroupMembershipRoleUncheckedCreateWithoutRoleInputObjectSchema]) -}).strict(); -export const GroupMembershipRoleCreateOrConnectWithoutRoleInputObjectSchema: z.ZodType = z.lazy(__makeSchema_GroupMembershipRoleCreateOrConnectWithoutRoleInput_schema) as unknown as z.ZodType; -export const GroupMembershipRoleCreateOrConnectWithoutRoleInputObjectZodSchema = z.lazy(__makeSchema_GroupMembershipRoleCreateOrConnectWithoutRoleInput_schema); - - -// File: GroupMembershipRoleCreateManyRoleInputEnvelope.schema.ts -const __makeSchema_GroupMembershipRoleCreateManyRoleInputEnvelope_schema = () => z.object({ - data: z.union([GroupMembershipRoleCreateManyRoleInputObjectSchema, GroupMembershipRoleCreateManyRoleInputObjectSchema.array()]), - skipDuplicates: z.boolean().optional() -}).strict(); -export const GroupMembershipRoleCreateManyRoleInputEnvelopeObjectSchema: z.ZodType = z.lazy(__makeSchema_GroupMembershipRoleCreateManyRoleInputEnvelope_schema) as unknown as z.ZodType; -export const GroupMembershipRoleCreateManyRoleInputEnvelopeObjectZodSchema = z.lazy(__makeSchema_GroupMembershipRoleCreateManyRoleInputEnvelope_schema); - - -// File: GroupUpsertWithoutRolesInput.schema.ts -const __makeSchema_GroupUpsertWithoutRolesInput_schema = () => z.object({ - update: z.union([GroupUpdateWithoutRolesInputObjectSchema, GroupUncheckedUpdateWithoutRolesInputObjectSchema]), - create: z.union([GroupCreateWithoutRolesInputObjectSchema, GroupUncheckedCreateWithoutRolesInputObjectSchema]), - get where(){ return GroupWhereInputObjectSchema.optional(); } -}).strict(); -export const GroupUpsertWithoutRolesInputObjectSchema: z.ZodType = z.lazy(__makeSchema_GroupUpsertWithoutRolesInput_schema) as unknown as z.ZodType; -export const GroupUpsertWithoutRolesInputObjectZodSchema = z.lazy(__makeSchema_GroupUpsertWithoutRolesInput_schema); - - -// File: GroupUpdateToOneWithWhereWithoutRolesInput.schema.ts -const __makeSchema_GroupUpdateToOneWithWhereWithoutRolesInput_schema = () => z.object({ - get where(){ return GroupWhereInputObjectSchema.optional(); }, - data: z.union([GroupUpdateWithoutRolesInputObjectSchema, GroupUncheckedUpdateWithoutRolesInputObjectSchema]) -}).strict(); -export const GroupUpdateToOneWithWhereWithoutRolesInputObjectSchema: z.ZodType = z.lazy(__makeSchema_GroupUpdateToOneWithWhereWithoutRolesInput_schema) as unknown as z.ZodType; -export const GroupUpdateToOneWithWhereWithoutRolesInputObjectZodSchema = z.lazy(__makeSchema_GroupUpdateToOneWithWhereWithoutRolesInput_schema); - - -// File: GroupUpdateWithoutRolesInput.schema.ts -const __makeSchema_GroupUpdateWithoutRolesInput_schema = () => z.object({ - slug: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - abbreviation: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - name: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - shortDescription: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - description: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - imageUrl: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - email: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - contactUrl: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - slackUrl: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - showLeaderAsContact: z.union([z.boolean(), BoolFieldUpdateOperationsInputObjectSchema]).optional(), - createdAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - deactivatedAt: z.union([z.coerce.date(), NullableDateTimeFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - workspaceGroupId: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - memberVisibility: z.union([GroupMemberVisibilitySchema, EnumGroupMemberVisibilityFieldUpdateOperationsInputObjectSchema]).optional(), - recruitmentMethod: z.union([GroupRecruitmentMethodSchema, EnumGroupRecruitmentMethodFieldUpdateOperationsInputObjectSchema]).optional(), - type: z.union([GroupTypeSchema, EnumGroupTypeFieldUpdateOperationsInputObjectSchema]).optional(), - get events(){ return EventHostingGroupUpdateManyWithoutGroupNestedInputObjectSchema.optional(); }, - get contests(){ return ContestUpdateManyWithoutGroupsNestedInputObjectSchema.optional(); }, - get memberships(){ return GroupMembershipUpdateManyWithoutGroupNestedInputObjectSchema.optional(); }, - get marks(){ return MarkGroupUpdateManyWithoutGroupNestedInputObjectSchema.optional(); }, - get notifications(){ return NotificationUpdateManyWithoutActorGroupNestedInputObjectSchema.optional(); } -}).strict(); -export const GroupUpdateWithoutRolesInputObjectSchema: z.ZodType = z.lazy(__makeSchema_GroupUpdateWithoutRolesInput_schema) as unknown as z.ZodType; -export const GroupUpdateWithoutRolesInputObjectZodSchema = z.lazy(__makeSchema_GroupUpdateWithoutRolesInput_schema); - - -// File: GroupUncheckedUpdateWithoutRolesInput.schema.ts -const __makeSchema_GroupUncheckedUpdateWithoutRolesInput_schema = () => z.object({ - slug: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - abbreviation: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - name: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - shortDescription: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - description: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - imageUrl: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - email: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - contactUrl: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - slackUrl: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - showLeaderAsContact: z.union([z.boolean(), BoolFieldUpdateOperationsInputObjectSchema]).optional(), - createdAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - deactivatedAt: z.union([z.coerce.date(), NullableDateTimeFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - workspaceGroupId: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - memberVisibility: z.union([GroupMemberVisibilitySchema, EnumGroupMemberVisibilityFieldUpdateOperationsInputObjectSchema]).optional(), - recruitmentMethod: z.union([GroupRecruitmentMethodSchema, EnumGroupRecruitmentMethodFieldUpdateOperationsInputObjectSchema]).optional(), - type: z.union([GroupTypeSchema, EnumGroupTypeFieldUpdateOperationsInputObjectSchema]).optional(), - get events(){ return EventHostingGroupUncheckedUpdateManyWithoutGroupNestedInputObjectSchema.optional(); }, - get contests(){ return ContestUncheckedUpdateManyWithoutGroupsNestedInputObjectSchema.optional(); }, - get memberships(){ return GroupMembershipUncheckedUpdateManyWithoutGroupNestedInputObjectSchema.optional(); }, - get marks(){ return MarkGroupUncheckedUpdateManyWithoutGroupNestedInputObjectSchema.optional(); }, - get notifications(){ return NotificationUncheckedUpdateManyWithoutActorGroupNestedInputObjectSchema.optional(); } -}).strict(); -export const GroupUncheckedUpdateWithoutRolesInputObjectSchema: z.ZodType = z.lazy(__makeSchema_GroupUncheckedUpdateWithoutRolesInput_schema) as unknown as z.ZodType; -export const GroupUncheckedUpdateWithoutRolesInputObjectZodSchema = z.lazy(__makeSchema_GroupUncheckedUpdateWithoutRolesInput_schema); - - -// File: GroupMembershipRoleUpsertWithWhereUniqueWithoutRoleInput.schema.ts -const __makeSchema_GroupMembershipRoleUpsertWithWhereUniqueWithoutRoleInput_schema = () => z.object({ - get where(){ return GroupMembershipRoleWhereUniqueInputObjectSchema; }, - update: z.union([GroupMembershipRoleUpdateWithoutRoleInputObjectSchema, GroupMembershipRoleUncheckedUpdateWithoutRoleInputObjectSchema]), - create: z.union([GroupMembershipRoleCreateWithoutRoleInputObjectSchema, GroupMembershipRoleUncheckedCreateWithoutRoleInputObjectSchema]) -}).strict(); -export const GroupMembershipRoleUpsertWithWhereUniqueWithoutRoleInputObjectSchema: z.ZodType = z.lazy(__makeSchema_GroupMembershipRoleUpsertWithWhereUniqueWithoutRoleInput_schema) as unknown as z.ZodType; -export const GroupMembershipRoleUpsertWithWhereUniqueWithoutRoleInputObjectZodSchema = z.lazy(__makeSchema_GroupMembershipRoleUpsertWithWhereUniqueWithoutRoleInput_schema); - - -// File: GroupMembershipRoleUpdateWithWhereUniqueWithoutRoleInput.schema.ts -const __makeSchema_GroupMembershipRoleUpdateWithWhereUniqueWithoutRoleInput_schema = () => z.object({ - get where(){ return GroupMembershipRoleWhereUniqueInputObjectSchema; }, - data: z.union([GroupMembershipRoleUpdateWithoutRoleInputObjectSchema, GroupMembershipRoleUncheckedUpdateWithoutRoleInputObjectSchema]) -}).strict(); -export const GroupMembershipRoleUpdateWithWhereUniqueWithoutRoleInputObjectSchema: z.ZodType = z.lazy(__makeSchema_GroupMembershipRoleUpdateWithWhereUniqueWithoutRoleInput_schema) as unknown as z.ZodType; -export const GroupMembershipRoleUpdateWithWhereUniqueWithoutRoleInputObjectZodSchema = z.lazy(__makeSchema_GroupMembershipRoleUpdateWithWhereUniqueWithoutRoleInput_schema); - - -// File: GroupMembershipRoleUpdateManyWithWhereWithoutRoleInput.schema.ts -const __makeSchema_GroupMembershipRoleUpdateManyWithWhereWithoutRoleInput_schema = () => z.object({ - get where(){ return GroupMembershipRoleScalarWhereInputObjectSchema; }, - data: z.union([GroupMembershipRoleUpdateManyMutationInputObjectSchema, GroupMembershipRoleUncheckedUpdateManyWithoutRoleInputObjectSchema]) -}).strict(); -export const GroupMembershipRoleUpdateManyWithWhereWithoutRoleInputObjectSchema: z.ZodType = z.lazy(__makeSchema_GroupMembershipRoleUpdateManyWithWhereWithoutRoleInput_schema) as unknown as z.ZodType; -export const GroupMembershipRoleUpdateManyWithWhereWithoutRoleInputObjectZodSchema = z.lazy(__makeSchema_GroupMembershipRoleUpdateManyWithWhereWithoutRoleInput_schema); - - -// File: AttendancePoolCreateWithoutAttendanceInput.schema.ts -const __makeSchema_AttendancePoolCreateWithoutAttendanceInput_schema = () => z.object({ - id: z.string().optional(), - title: z.string(), - mergeDelayHours: z.number().int().optional().nullable(), - yearCriteria: z.union([JsonNullValueInputSchema, jsonSchema]), - capacity: z.number().int(), - createdAt: z.coerce.date().optional(), - updatedAt: z.coerce.date().optional(), - get task(){ return TaskCreateNestedOneWithoutAttendancePoolsInputObjectSchema.optional(); }, - get attendees(){ return AttendeeCreateNestedManyWithoutAttendancePoolInputObjectSchema.optional(); } -}).strict(); -export const AttendancePoolCreateWithoutAttendanceInputObjectSchema: z.ZodType = z.lazy(__makeSchema_AttendancePoolCreateWithoutAttendanceInput_schema) as unknown as z.ZodType; -export const AttendancePoolCreateWithoutAttendanceInputObjectZodSchema = z.lazy(__makeSchema_AttendancePoolCreateWithoutAttendanceInput_schema); - - -// File: AttendancePoolUncheckedCreateWithoutAttendanceInput.schema.ts -const __makeSchema_AttendancePoolUncheckedCreateWithoutAttendanceInput_schema = () => z.object({ - id: z.string().optional(), - title: z.string(), - mergeDelayHours: z.number().int().optional().nullable(), - yearCriteria: z.union([JsonNullValueInputSchema, jsonSchema]), - capacity: z.number().int(), - createdAt: z.coerce.date().optional(), - updatedAt: z.coerce.date().optional(), - taskId: z.string().optional().nullable(), - get attendees(){ return AttendeeUncheckedCreateNestedManyWithoutAttendancePoolInputObjectSchema.optional(); } -}).strict(); -export const AttendancePoolUncheckedCreateWithoutAttendanceInputObjectSchema: z.ZodType = z.lazy(__makeSchema_AttendancePoolUncheckedCreateWithoutAttendanceInput_schema) as unknown as z.ZodType; -export const AttendancePoolUncheckedCreateWithoutAttendanceInputObjectZodSchema = z.lazy(__makeSchema_AttendancePoolUncheckedCreateWithoutAttendanceInput_schema); - - -// File: AttendancePoolCreateOrConnectWithoutAttendanceInput.schema.ts -const __makeSchema_AttendancePoolCreateOrConnectWithoutAttendanceInput_schema = () => z.object({ - get where(){ return AttendancePoolWhereUniqueInputObjectSchema; }, - create: z.union([AttendancePoolCreateWithoutAttendanceInputObjectSchema, AttendancePoolUncheckedCreateWithoutAttendanceInputObjectSchema]) -}).strict(); -export const AttendancePoolCreateOrConnectWithoutAttendanceInputObjectSchema: z.ZodType = z.lazy(__makeSchema_AttendancePoolCreateOrConnectWithoutAttendanceInput_schema) as unknown as z.ZodType; -export const AttendancePoolCreateOrConnectWithoutAttendanceInputObjectZodSchema = z.lazy(__makeSchema_AttendancePoolCreateOrConnectWithoutAttendanceInput_schema); - - -// File: AttendancePoolCreateManyAttendanceInputEnvelope.schema.ts -const __makeSchema_AttendancePoolCreateManyAttendanceInputEnvelope_schema = () => z.object({ - data: z.union([AttendancePoolCreateManyAttendanceInputObjectSchema, AttendancePoolCreateManyAttendanceInputObjectSchema.array()]), - skipDuplicates: z.boolean().optional() -}).strict(); -export const AttendancePoolCreateManyAttendanceInputEnvelopeObjectSchema: z.ZodType = z.lazy(__makeSchema_AttendancePoolCreateManyAttendanceInputEnvelope_schema) as unknown as z.ZodType; -export const AttendancePoolCreateManyAttendanceInputEnvelopeObjectZodSchema = z.lazy(__makeSchema_AttendancePoolCreateManyAttendanceInputEnvelope_schema); - - -// File: AttendeeCreateWithoutAttendanceInput.schema.ts -const __makeSchema_AttendeeCreateWithoutAttendanceInput_schema = () => z.object({ - id: z.string().optional(), - userGrade: z.number().int().optional().nullable(), - selections: z.union([JsonNullValueInputSchema, jsonSchema]).optional(), - reserved: z.boolean(), - earliestReservationAt: z.coerce.date(), - attendedAt: z.coerce.date().optional().nullable(), - createdAt: z.coerce.date().optional(), - updatedAt: z.coerce.date().optional(), - paymentDeadline: z.coerce.date().optional().nullable(), - paymentLink: z.string().optional().nullable(), - paymentId: z.string().optional().nullable(), - paymentReservedAt: z.coerce.date().optional().nullable(), - paymentChargeDeadline: z.coerce.date().optional().nullable(), - paymentChargedAt: z.coerce.date().optional().nullable(), - paymentRefundedAt: z.coerce.date().optional().nullable(), - paymentCheckoutUrl: z.string().optional().nullable(), - get feedbackFormAnswer(){ return FeedbackFormAnswerCreateNestedOneWithoutAttendeeInputObjectSchema.optional(); }, - get user(){ return UserCreateNestedOneWithoutAttendeeInputObjectSchema; }, - get attendancePool(){ return AttendancePoolCreateNestedOneWithoutAttendeesInputObjectSchema; }, - get paymentRefundedBy(){ return UserCreateNestedOneWithoutAttendeesRefundedInputObjectSchema.optional(); } -}).strict(); -export const AttendeeCreateWithoutAttendanceInputObjectSchema: z.ZodType = z.lazy(__makeSchema_AttendeeCreateWithoutAttendanceInput_schema) as unknown as z.ZodType; -export const AttendeeCreateWithoutAttendanceInputObjectZodSchema = z.lazy(__makeSchema_AttendeeCreateWithoutAttendanceInput_schema); - - -// File: AttendeeUncheckedCreateWithoutAttendanceInput.schema.ts -const __makeSchema_AttendeeUncheckedCreateWithoutAttendanceInput_schema = () => z.object({ - id: z.string().optional(), - userGrade: z.number().int().optional().nullable(), - selections: z.union([JsonNullValueInputSchema, jsonSchema]).optional(), - reserved: z.boolean(), - earliestReservationAt: z.coerce.date(), - attendedAt: z.coerce.date().optional().nullable(), - createdAt: z.coerce.date().optional(), - updatedAt: z.coerce.date().optional(), - paymentDeadline: z.coerce.date().optional().nullable(), - paymentLink: z.string().optional().nullable(), - paymentId: z.string().optional().nullable(), - paymentReservedAt: z.coerce.date().optional().nullable(), - paymentChargeDeadline: z.coerce.date().optional().nullable(), - paymentChargedAt: z.coerce.date().optional().nullable(), - paymentRefundedAt: z.coerce.date().optional().nullable(), - paymentCheckoutUrl: z.string().optional().nullable(), - userId: z.string(), - attendancePoolId: z.string(), - paymentRefundedById: z.string().optional().nullable(), - get feedbackFormAnswer(){ return FeedbackFormAnswerUncheckedCreateNestedOneWithoutAttendeeInputObjectSchema.optional(); } -}).strict(); -export const AttendeeUncheckedCreateWithoutAttendanceInputObjectSchema: z.ZodType = z.lazy(__makeSchema_AttendeeUncheckedCreateWithoutAttendanceInput_schema) as unknown as z.ZodType; -export const AttendeeUncheckedCreateWithoutAttendanceInputObjectZodSchema = z.lazy(__makeSchema_AttendeeUncheckedCreateWithoutAttendanceInput_schema); - - -// File: AttendeeCreateOrConnectWithoutAttendanceInput.schema.ts -const __makeSchema_AttendeeCreateOrConnectWithoutAttendanceInput_schema = () => z.object({ - get where(){ return AttendeeWhereUniqueInputObjectSchema; }, - create: z.union([AttendeeCreateWithoutAttendanceInputObjectSchema, AttendeeUncheckedCreateWithoutAttendanceInputObjectSchema]) -}).strict(); -export const AttendeeCreateOrConnectWithoutAttendanceInputObjectSchema: z.ZodType = z.lazy(__makeSchema_AttendeeCreateOrConnectWithoutAttendanceInput_schema) as unknown as z.ZodType; -export const AttendeeCreateOrConnectWithoutAttendanceInputObjectZodSchema = z.lazy(__makeSchema_AttendeeCreateOrConnectWithoutAttendanceInput_schema); - - -// File: AttendeeCreateManyAttendanceInputEnvelope.schema.ts -const __makeSchema_AttendeeCreateManyAttendanceInputEnvelope_schema = () => z.object({ - data: z.union([AttendeeCreateManyAttendanceInputObjectSchema, AttendeeCreateManyAttendanceInputObjectSchema.array()]), - skipDuplicates: z.boolean().optional() -}).strict(); -export const AttendeeCreateManyAttendanceInputEnvelopeObjectSchema: z.ZodType = z.lazy(__makeSchema_AttendeeCreateManyAttendanceInputEnvelope_schema) as unknown as z.ZodType; -export const AttendeeCreateManyAttendanceInputEnvelopeObjectZodSchema = z.lazy(__makeSchema_AttendeeCreateManyAttendanceInputEnvelope_schema); - - -// File: EventCreateWithoutAttendanceInput.schema.ts -const __makeSchema_EventCreateWithoutAttendanceInput_schema = () => z.object({ - id: z.string().optional(), - title: z.string(), - start: z.coerce.date(), - end: z.coerce.date(), - status: EventStatusSchema, - description: z.string(), - shortDescription: z.string().optional().nullable(), - imageUrl: z.string().optional().nullable(), - locationTitle: z.string().optional().nullable(), - locationAddress: z.string().optional().nullable(), - locationLink: z.string().optional().nullable(), - type: EventTypeSchema, - markForMissedAttendance: z.boolean().optional(), - createdAt: z.coerce.date().optional(), - updatedAt: z.coerce.date().optional(), - metadataImportId: z.number().int().optional().nullable(), - get feedbackForm(){ return FeedbackFormCreateNestedOneWithoutEventInputObjectSchema.optional(); }, - get fadderuke(){ return FadderukeCreateNestedOneWithoutEventInputObjectSchema.optional(); }, - get parent(){ return EventCreateNestedOneWithoutChildrenInputObjectSchema.optional(); }, - get children(){ return EventCreateNestedManyWithoutParentInputObjectSchema.optional(); }, - get contest(){ return ContestCreateNestedOneWithoutEventsInputObjectSchema.optional(); }, - get companies(){ return EventCompanyCreateNestedManyWithoutEventInputObjectSchema.optional(); }, - get hostingGroups(){ return EventHostingGroupCreateNestedManyWithoutEventInputObjectSchema.optional(); }, - get deregisterReasons(){ return DeregisterReasonCreateNestedManyWithoutEventInputObjectSchema.optional(); } -}).strict(); -export const EventCreateWithoutAttendanceInputObjectSchema: z.ZodType = z.lazy(__makeSchema_EventCreateWithoutAttendanceInput_schema) as unknown as z.ZodType; -export const EventCreateWithoutAttendanceInputObjectZodSchema = z.lazy(__makeSchema_EventCreateWithoutAttendanceInput_schema); - - -// File: EventUncheckedCreateWithoutAttendanceInput.schema.ts -const __makeSchema_EventUncheckedCreateWithoutAttendanceInput_schema = () => z.object({ - id: z.string().optional(), - title: z.string(), - start: z.coerce.date(), - end: z.coerce.date(), - status: EventStatusSchema, - description: z.string(), - shortDescription: z.string().optional().nullable(), - imageUrl: z.string().optional().nullable(), - locationTitle: z.string().optional().nullable(), - locationAddress: z.string().optional().nullable(), - locationLink: z.string().optional().nullable(), - type: EventTypeSchema, - markForMissedAttendance: z.boolean().optional(), - createdAt: z.coerce.date().optional(), - updatedAt: z.coerce.date().optional(), - parentId: z.string().optional().nullable(), - contestId: z.string().optional().nullable(), - metadataImportId: z.number().int().optional().nullable(), - get feedbackForm(){ return FeedbackFormUncheckedCreateNestedOneWithoutEventInputObjectSchema.optional(); }, - get fadderuke(){ return FadderukeUncheckedCreateNestedOneWithoutEventInputObjectSchema.optional(); }, - get children(){ return EventUncheckedCreateNestedManyWithoutParentInputObjectSchema.optional(); }, - get companies(){ return EventCompanyUncheckedCreateNestedManyWithoutEventInputObjectSchema.optional(); }, - get hostingGroups(){ return EventHostingGroupUncheckedCreateNestedManyWithoutEventInputObjectSchema.optional(); }, - get deregisterReasons(){ return DeregisterReasonUncheckedCreateNestedManyWithoutEventInputObjectSchema.optional(); } -}).strict(); -export const EventUncheckedCreateWithoutAttendanceInputObjectSchema: z.ZodType = z.lazy(__makeSchema_EventUncheckedCreateWithoutAttendanceInput_schema) as unknown as z.ZodType; -export const EventUncheckedCreateWithoutAttendanceInputObjectZodSchema = z.lazy(__makeSchema_EventUncheckedCreateWithoutAttendanceInput_schema); - - -// File: EventCreateOrConnectWithoutAttendanceInput.schema.ts -const __makeSchema_EventCreateOrConnectWithoutAttendanceInput_schema = () => z.object({ - get where(){ return EventWhereUniqueInputObjectSchema; }, - create: z.union([EventCreateWithoutAttendanceInputObjectSchema, EventUncheckedCreateWithoutAttendanceInputObjectSchema]) -}).strict(); -export const EventCreateOrConnectWithoutAttendanceInputObjectSchema: z.ZodType = z.lazy(__makeSchema_EventCreateOrConnectWithoutAttendanceInput_schema) as unknown as z.ZodType; -export const EventCreateOrConnectWithoutAttendanceInputObjectZodSchema = z.lazy(__makeSchema_EventCreateOrConnectWithoutAttendanceInput_schema); - - -// File: EventCreateManyAttendanceInputEnvelope.schema.ts -const __makeSchema_EventCreateManyAttendanceInputEnvelope_schema = () => z.object({ - data: z.union([EventCreateManyAttendanceInputObjectSchema, EventCreateManyAttendanceInputObjectSchema.array()]), - skipDuplicates: z.boolean().optional() -}).strict(); -export const EventCreateManyAttendanceInputEnvelopeObjectSchema: z.ZodType = z.lazy(__makeSchema_EventCreateManyAttendanceInputEnvelope_schema) as unknown as z.ZodType; -export const EventCreateManyAttendanceInputEnvelopeObjectZodSchema = z.lazy(__makeSchema_EventCreateManyAttendanceInputEnvelope_schema); - - -// File: AttendancePoolUpsertWithWhereUniqueWithoutAttendanceInput.schema.ts -const __makeSchema_AttendancePoolUpsertWithWhereUniqueWithoutAttendanceInput_schema = () => z.object({ - get where(){ return AttendancePoolWhereUniqueInputObjectSchema; }, - update: z.union([AttendancePoolUpdateWithoutAttendanceInputObjectSchema, AttendancePoolUncheckedUpdateWithoutAttendanceInputObjectSchema]), - create: z.union([AttendancePoolCreateWithoutAttendanceInputObjectSchema, AttendancePoolUncheckedCreateWithoutAttendanceInputObjectSchema]) -}).strict(); -export const AttendancePoolUpsertWithWhereUniqueWithoutAttendanceInputObjectSchema: z.ZodType = z.lazy(__makeSchema_AttendancePoolUpsertWithWhereUniqueWithoutAttendanceInput_schema) as unknown as z.ZodType; -export const AttendancePoolUpsertWithWhereUniqueWithoutAttendanceInputObjectZodSchema = z.lazy(__makeSchema_AttendancePoolUpsertWithWhereUniqueWithoutAttendanceInput_schema); - - -// File: AttendancePoolUpdateWithWhereUniqueWithoutAttendanceInput.schema.ts -const __makeSchema_AttendancePoolUpdateWithWhereUniqueWithoutAttendanceInput_schema = () => z.object({ - get where(){ return AttendancePoolWhereUniqueInputObjectSchema; }, - data: z.union([AttendancePoolUpdateWithoutAttendanceInputObjectSchema, AttendancePoolUncheckedUpdateWithoutAttendanceInputObjectSchema]) -}).strict(); -export const AttendancePoolUpdateWithWhereUniqueWithoutAttendanceInputObjectSchema: z.ZodType = z.lazy(__makeSchema_AttendancePoolUpdateWithWhereUniqueWithoutAttendanceInput_schema) as unknown as z.ZodType; -export const AttendancePoolUpdateWithWhereUniqueWithoutAttendanceInputObjectZodSchema = z.lazy(__makeSchema_AttendancePoolUpdateWithWhereUniqueWithoutAttendanceInput_schema); - - -// File: AttendancePoolUpdateManyWithWhereWithoutAttendanceInput.schema.ts -const __makeSchema_AttendancePoolUpdateManyWithWhereWithoutAttendanceInput_schema = () => z.object({ - get where(){ return AttendancePoolScalarWhereInputObjectSchema; }, - data: z.union([AttendancePoolUpdateManyMutationInputObjectSchema, AttendancePoolUncheckedUpdateManyWithoutAttendanceInputObjectSchema]) -}).strict(); -export const AttendancePoolUpdateManyWithWhereWithoutAttendanceInputObjectSchema: z.ZodType = z.lazy(__makeSchema_AttendancePoolUpdateManyWithWhereWithoutAttendanceInput_schema) as unknown as z.ZodType; -export const AttendancePoolUpdateManyWithWhereWithoutAttendanceInputObjectZodSchema = z.lazy(__makeSchema_AttendancePoolUpdateManyWithWhereWithoutAttendanceInput_schema); - - -// File: AttendancePoolScalarWhereInput.schema.ts -const __makeSchema_AttendancePoolScalarWhereInput_schema = () => z.object({ - AND: z.union([AttendancePoolScalarWhereInputObjectSchema, AttendancePoolScalarWhereInputObjectSchema.array()]).optional(), - get OR(){ return AttendancePoolScalarWhereInputObjectSchema.array().optional(); }, - NOT: z.union([AttendancePoolScalarWhereInputObjectSchema, AttendancePoolScalarWhereInputObjectSchema.array()]).optional(), - id: z.union([StringFilterObjectSchema, z.string()]).optional(), - title: z.union([StringFilterObjectSchema, z.string()]).optional(), - mergeDelayHours: z.union([IntNullableFilterObjectSchema, z.number().int()]).optional().nullable(), - get yearCriteria(){ return JsonFilterObjectSchema.optional(); }, - capacity: z.union([IntFilterObjectSchema, z.number().int()]).optional(), - createdAt: z.union([DateTimeFilterObjectSchema, z.coerce.date()]).optional(), - updatedAt: z.union([DateTimeFilterObjectSchema, z.coerce.date()]).optional(), - attendanceId: z.union([StringFilterObjectSchema, z.string()]).optional(), - taskId: z.union([StringNullableFilterObjectSchema, z.string()]).optional().nullable() -}).strict(); -export const AttendancePoolScalarWhereInputObjectSchema: z.ZodType = z.lazy(__makeSchema_AttendancePoolScalarWhereInput_schema) as unknown as z.ZodType; -export const AttendancePoolScalarWhereInputObjectZodSchema = z.lazy(__makeSchema_AttendancePoolScalarWhereInput_schema); - - -// File: AttendeeUpsertWithWhereUniqueWithoutAttendanceInput.schema.ts -const __makeSchema_AttendeeUpsertWithWhereUniqueWithoutAttendanceInput_schema = () => z.object({ - get where(){ return AttendeeWhereUniqueInputObjectSchema; }, - update: z.union([AttendeeUpdateWithoutAttendanceInputObjectSchema, AttendeeUncheckedUpdateWithoutAttendanceInputObjectSchema]), - create: z.union([AttendeeCreateWithoutAttendanceInputObjectSchema, AttendeeUncheckedCreateWithoutAttendanceInputObjectSchema]) -}).strict(); -export const AttendeeUpsertWithWhereUniqueWithoutAttendanceInputObjectSchema: z.ZodType = z.lazy(__makeSchema_AttendeeUpsertWithWhereUniqueWithoutAttendanceInput_schema) as unknown as z.ZodType; -export const AttendeeUpsertWithWhereUniqueWithoutAttendanceInputObjectZodSchema = z.lazy(__makeSchema_AttendeeUpsertWithWhereUniqueWithoutAttendanceInput_schema); - - -// File: AttendeeUpdateWithWhereUniqueWithoutAttendanceInput.schema.ts -const __makeSchema_AttendeeUpdateWithWhereUniqueWithoutAttendanceInput_schema = () => z.object({ - get where(){ return AttendeeWhereUniqueInputObjectSchema; }, - data: z.union([AttendeeUpdateWithoutAttendanceInputObjectSchema, AttendeeUncheckedUpdateWithoutAttendanceInputObjectSchema]) -}).strict(); -export const AttendeeUpdateWithWhereUniqueWithoutAttendanceInputObjectSchema: z.ZodType = z.lazy(__makeSchema_AttendeeUpdateWithWhereUniqueWithoutAttendanceInput_schema) as unknown as z.ZodType; -export const AttendeeUpdateWithWhereUniqueWithoutAttendanceInputObjectZodSchema = z.lazy(__makeSchema_AttendeeUpdateWithWhereUniqueWithoutAttendanceInput_schema); - - -// File: AttendeeUpdateManyWithWhereWithoutAttendanceInput.schema.ts -const __makeSchema_AttendeeUpdateManyWithWhereWithoutAttendanceInput_schema = () => z.object({ - get where(){ return AttendeeScalarWhereInputObjectSchema; }, - data: z.union([AttendeeUpdateManyMutationInputObjectSchema, AttendeeUncheckedUpdateManyWithoutAttendanceInputObjectSchema]) -}).strict(); -export const AttendeeUpdateManyWithWhereWithoutAttendanceInputObjectSchema: z.ZodType = z.lazy(__makeSchema_AttendeeUpdateManyWithWhereWithoutAttendanceInput_schema) as unknown as z.ZodType; -export const AttendeeUpdateManyWithWhereWithoutAttendanceInputObjectZodSchema = z.lazy(__makeSchema_AttendeeUpdateManyWithWhereWithoutAttendanceInput_schema); - - -// File: EventUpsertWithWhereUniqueWithoutAttendanceInput.schema.ts -const __makeSchema_EventUpsertWithWhereUniqueWithoutAttendanceInput_schema = () => z.object({ - get where(){ return EventWhereUniqueInputObjectSchema; }, - update: z.union([EventUpdateWithoutAttendanceInputObjectSchema, EventUncheckedUpdateWithoutAttendanceInputObjectSchema]), - create: z.union([EventCreateWithoutAttendanceInputObjectSchema, EventUncheckedCreateWithoutAttendanceInputObjectSchema]) -}).strict(); -export const EventUpsertWithWhereUniqueWithoutAttendanceInputObjectSchema: z.ZodType = z.lazy(__makeSchema_EventUpsertWithWhereUniqueWithoutAttendanceInput_schema) as unknown as z.ZodType; -export const EventUpsertWithWhereUniqueWithoutAttendanceInputObjectZodSchema = z.lazy(__makeSchema_EventUpsertWithWhereUniqueWithoutAttendanceInput_schema); - - -// File: EventUpdateWithWhereUniqueWithoutAttendanceInput.schema.ts -const __makeSchema_EventUpdateWithWhereUniqueWithoutAttendanceInput_schema = () => z.object({ - get where(){ return EventWhereUniqueInputObjectSchema; }, - data: z.union([EventUpdateWithoutAttendanceInputObjectSchema, EventUncheckedUpdateWithoutAttendanceInputObjectSchema]) -}).strict(); -export const EventUpdateWithWhereUniqueWithoutAttendanceInputObjectSchema: z.ZodType = z.lazy(__makeSchema_EventUpdateWithWhereUniqueWithoutAttendanceInput_schema) as unknown as z.ZodType; -export const EventUpdateWithWhereUniqueWithoutAttendanceInputObjectZodSchema = z.lazy(__makeSchema_EventUpdateWithWhereUniqueWithoutAttendanceInput_schema); - - -// File: EventUpdateManyWithWhereWithoutAttendanceInput.schema.ts -const __makeSchema_EventUpdateManyWithWhereWithoutAttendanceInput_schema = () => z.object({ - get where(){ return EventScalarWhereInputObjectSchema; }, - data: z.union([EventUpdateManyMutationInputObjectSchema, EventUncheckedUpdateManyWithoutAttendanceInputObjectSchema]) -}).strict(); -export const EventUpdateManyWithWhereWithoutAttendanceInputObjectSchema: z.ZodType = z.lazy(__makeSchema_EventUpdateManyWithWhereWithoutAttendanceInput_schema) as unknown as z.ZodType; -export const EventUpdateManyWithWhereWithoutAttendanceInputObjectZodSchema = z.lazy(__makeSchema_EventUpdateManyWithWhereWithoutAttendanceInput_schema); - - -// File: EventScalarWhereInput.schema.ts -const __makeSchema_EventScalarWhereInput_schema = () => z.object({ - AND: z.union([EventScalarWhereInputObjectSchema, EventScalarWhereInputObjectSchema.array()]).optional(), - get OR(){ return EventScalarWhereInputObjectSchema.array().optional(); }, - NOT: z.union([EventScalarWhereInputObjectSchema, EventScalarWhereInputObjectSchema.array()]).optional(), - id: z.union([StringFilterObjectSchema, z.string()]).optional(), - title: z.union([StringFilterObjectSchema, z.string()]).optional(), - start: z.union([DateTimeFilterObjectSchema, z.coerce.date()]).optional(), - end: z.union([DateTimeFilterObjectSchema, z.coerce.date()]).optional(), - status: z.union([EnumEventStatusFilterObjectSchema, EventStatusSchema]).optional(), - description: z.union([StringFilterObjectSchema, z.string()]).optional(), - shortDescription: z.union([StringNullableFilterObjectSchema, z.string()]).optional().nullable(), - imageUrl: z.union([StringNullableFilterObjectSchema, z.string()]).optional().nullable(), - locationTitle: z.union([StringNullableFilterObjectSchema, z.string()]).optional().nullable(), - locationAddress: z.union([StringNullableFilterObjectSchema, z.string()]).optional().nullable(), - locationLink: z.union([StringNullableFilterObjectSchema, z.string()]).optional().nullable(), - type: z.union([EnumEventTypeFilterObjectSchema, EventTypeSchema]).optional(), - markForMissedAttendance: z.union([BoolFilterObjectSchema, z.boolean()]).optional(), - createdAt: z.union([DateTimeFilterObjectSchema, z.coerce.date()]).optional(), - updatedAt: z.union([DateTimeFilterObjectSchema, z.coerce.date()]).optional(), - attendanceId: z.union([StringNullableFilterObjectSchema, z.string()]).optional().nullable(), - parentId: z.union([StringNullableFilterObjectSchema, z.string()]).optional().nullable(), - contestId: z.union([StringNullableFilterObjectSchema, z.string()]).optional().nullable(), - metadataImportId: z.union([IntNullableFilterObjectSchema, z.number().int()]).optional().nullable() -}).strict(); -export const EventScalarWhereInputObjectSchema: z.ZodType = z.lazy(__makeSchema_EventScalarWhereInput_schema) as unknown as z.ZodType; -export const EventScalarWhereInputObjectZodSchema = z.lazy(__makeSchema_EventScalarWhereInput_schema); - - -// File: AttendanceCreateWithoutPoolsInput.schema.ts -const __makeSchema_AttendanceCreateWithoutPoolsInput_schema = () => z.object({ - id: z.string().optional(), - registerStart: z.coerce.date(), - registerEnd: z.coerce.date(), - deregisterDeadline: z.coerce.date(), - selections: z.union([JsonNullValueInputSchema, jsonSchema]).optional(), - createdAt: z.coerce.date().optional(), - updatedAt: z.coerce.date().optional(), - attendancePrice: z.number().int().optional().nullable(), - get attendees(){ return AttendeeCreateNestedManyWithoutAttendanceInputObjectSchema.optional(); }, - get events(){ return EventCreateNestedManyWithoutAttendanceInputObjectSchema.optional(); } -}).strict(); -export const AttendanceCreateWithoutPoolsInputObjectSchema: z.ZodType = z.lazy(__makeSchema_AttendanceCreateWithoutPoolsInput_schema) as unknown as z.ZodType; -export const AttendanceCreateWithoutPoolsInputObjectZodSchema = z.lazy(__makeSchema_AttendanceCreateWithoutPoolsInput_schema); - - -// File: AttendanceUncheckedCreateWithoutPoolsInput.schema.ts -const __makeSchema_AttendanceUncheckedCreateWithoutPoolsInput_schema = () => z.object({ - id: z.string().optional(), - registerStart: z.coerce.date(), - registerEnd: z.coerce.date(), - deregisterDeadline: z.coerce.date(), - selections: z.union([JsonNullValueInputSchema, jsonSchema]).optional(), - createdAt: z.coerce.date().optional(), - updatedAt: z.coerce.date().optional(), - attendancePrice: z.number().int().optional().nullable(), - get attendees(){ return AttendeeUncheckedCreateNestedManyWithoutAttendanceInputObjectSchema.optional(); }, - get events(){ return EventUncheckedCreateNestedManyWithoutAttendanceInputObjectSchema.optional(); } -}).strict(); -export const AttendanceUncheckedCreateWithoutPoolsInputObjectSchema: z.ZodType = z.lazy(__makeSchema_AttendanceUncheckedCreateWithoutPoolsInput_schema) as unknown as z.ZodType; -export const AttendanceUncheckedCreateWithoutPoolsInputObjectZodSchema = z.lazy(__makeSchema_AttendanceUncheckedCreateWithoutPoolsInput_schema); - - -// File: AttendanceCreateOrConnectWithoutPoolsInput.schema.ts -const __makeSchema_AttendanceCreateOrConnectWithoutPoolsInput_schema = () => z.object({ - get where(){ return AttendanceWhereUniqueInputObjectSchema; }, - create: z.union([AttendanceCreateWithoutPoolsInputObjectSchema, AttendanceUncheckedCreateWithoutPoolsInputObjectSchema]) -}).strict(); -export const AttendanceCreateOrConnectWithoutPoolsInputObjectSchema: z.ZodType = z.lazy(__makeSchema_AttendanceCreateOrConnectWithoutPoolsInput_schema) as unknown as z.ZodType; -export const AttendanceCreateOrConnectWithoutPoolsInputObjectZodSchema = z.lazy(__makeSchema_AttendanceCreateOrConnectWithoutPoolsInput_schema); - - -// File: TaskCreateWithoutAttendancePoolsInput.schema.ts -const __makeSchema_TaskCreateWithoutAttendancePoolsInput_schema = () => z.object({ - id: z.string().optional(), - type: TaskTypeSchema, - status: TaskStatusSchema.optional(), - payload: z.union([JsonNullValueInputSchema, jsonSchema]).optional(), - createdAt: z.coerce.date().optional(), - scheduledAt: z.coerce.date(), - processedAt: z.coerce.date().optional().nullable(), - get recurringTask(){ return RecurringTaskCreateNestedOneWithoutTasksInputObjectSchema.optional(); }, - get notifications(){ return NotificationCreateNestedManyWithoutTaskInputObjectSchema.optional(); } -}).strict(); -export const TaskCreateWithoutAttendancePoolsInputObjectSchema: z.ZodType = z.lazy(__makeSchema_TaskCreateWithoutAttendancePoolsInput_schema) as unknown as z.ZodType; -export const TaskCreateWithoutAttendancePoolsInputObjectZodSchema = z.lazy(__makeSchema_TaskCreateWithoutAttendancePoolsInput_schema); - - -// File: TaskUncheckedCreateWithoutAttendancePoolsInput.schema.ts -const __makeSchema_TaskUncheckedCreateWithoutAttendancePoolsInput_schema = () => z.object({ - id: z.string().optional(), - type: TaskTypeSchema, - status: TaskStatusSchema.optional(), - payload: z.union([JsonNullValueInputSchema, jsonSchema]).optional(), - createdAt: z.coerce.date().optional(), - scheduledAt: z.coerce.date(), - processedAt: z.coerce.date().optional().nullable(), - recurringTaskId: z.string().optional().nullable(), - get notifications(){ return NotificationUncheckedCreateNestedManyWithoutTaskInputObjectSchema.optional(); } -}).strict(); -export const TaskUncheckedCreateWithoutAttendancePoolsInputObjectSchema: z.ZodType = z.lazy(__makeSchema_TaskUncheckedCreateWithoutAttendancePoolsInput_schema) as unknown as z.ZodType; -export const TaskUncheckedCreateWithoutAttendancePoolsInputObjectZodSchema = z.lazy(__makeSchema_TaskUncheckedCreateWithoutAttendancePoolsInput_schema); - - -// File: TaskCreateOrConnectWithoutAttendancePoolsInput.schema.ts -const __makeSchema_TaskCreateOrConnectWithoutAttendancePoolsInput_schema = () => z.object({ - get where(){ return TaskWhereUniqueInputObjectSchema; }, - create: z.union([TaskCreateWithoutAttendancePoolsInputObjectSchema, TaskUncheckedCreateWithoutAttendancePoolsInputObjectSchema]) -}).strict(); -export const TaskCreateOrConnectWithoutAttendancePoolsInputObjectSchema: z.ZodType = z.lazy(__makeSchema_TaskCreateOrConnectWithoutAttendancePoolsInput_schema) as unknown as z.ZodType; -export const TaskCreateOrConnectWithoutAttendancePoolsInputObjectZodSchema = z.lazy(__makeSchema_TaskCreateOrConnectWithoutAttendancePoolsInput_schema); - - -// File: AttendeeCreateWithoutAttendancePoolInput.schema.ts -const __makeSchema_AttendeeCreateWithoutAttendancePoolInput_schema = () => z.object({ - id: z.string().optional(), - userGrade: z.number().int().optional().nullable(), - selections: z.union([JsonNullValueInputSchema, jsonSchema]).optional(), - reserved: z.boolean(), - earliestReservationAt: z.coerce.date(), - attendedAt: z.coerce.date().optional().nullable(), - createdAt: z.coerce.date().optional(), - updatedAt: z.coerce.date().optional(), - paymentDeadline: z.coerce.date().optional().nullable(), - paymentLink: z.string().optional().nullable(), - paymentId: z.string().optional().nullable(), - paymentReservedAt: z.coerce.date().optional().nullable(), - paymentChargeDeadline: z.coerce.date().optional().nullable(), - paymentChargedAt: z.coerce.date().optional().nullable(), - paymentRefundedAt: z.coerce.date().optional().nullable(), - paymentCheckoutUrl: z.string().optional().nullable(), - get feedbackFormAnswer(){ return FeedbackFormAnswerCreateNestedOneWithoutAttendeeInputObjectSchema.optional(); }, - get attendance(){ return AttendanceCreateNestedOneWithoutAttendeesInputObjectSchema; }, - get user(){ return UserCreateNestedOneWithoutAttendeeInputObjectSchema; }, - get paymentRefundedBy(){ return UserCreateNestedOneWithoutAttendeesRefundedInputObjectSchema.optional(); } -}).strict(); -export const AttendeeCreateWithoutAttendancePoolInputObjectSchema: z.ZodType = z.lazy(__makeSchema_AttendeeCreateWithoutAttendancePoolInput_schema) as unknown as z.ZodType; -export const AttendeeCreateWithoutAttendancePoolInputObjectZodSchema = z.lazy(__makeSchema_AttendeeCreateWithoutAttendancePoolInput_schema); - - -// File: AttendeeUncheckedCreateWithoutAttendancePoolInput.schema.ts -const __makeSchema_AttendeeUncheckedCreateWithoutAttendancePoolInput_schema = () => z.object({ - id: z.string().optional(), - userGrade: z.number().int().optional().nullable(), - selections: z.union([JsonNullValueInputSchema, jsonSchema]).optional(), - reserved: z.boolean(), - earliestReservationAt: z.coerce.date(), - attendedAt: z.coerce.date().optional().nullable(), - createdAt: z.coerce.date().optional(), - updatedAt: z.coerce.date().optional(), - paymentDeadline: z.coerce.date().optional().nullable(), - paymentLink: z.string().optional().nullable(), - paymentId: z.string().optional().nullable(), - paymentReservedAt: z.coerce.date().optional().nullable(), - paymentChargeDeadline: z.coerce.date().optional().nullable(), - paymentChargedAt: z.coerce.date().optional().nullable(), - paymentRefundedAt: z.coerce.date().optional().nullable(), - paymentCheckoutUrl: z.string().optional().nullable(), - attendanceId: z.string(), - userId: z.string(), - paymentRefundedById: z.string().optional().nullable(), - get feedbackFormAnswer(){ return FeedbackFormAnswerUncheckedCreateNestedOneWithoutAttendeeInputObjectSchema.optional(); } -}).strict(); -export const AttendeeUncheckedCreateWithoutAttendancePoolInputObjectSchema: z.ZodType = z.lazy(__makeSchema_AttendeeUncheckedCreateWithoutAttendancePoolInput_schema) as unknown as z.ZodType; -export const AttendeeUncheckedCreateWithoutAttendancePoolInputObjectZodSchema = z.lazy(__makeSchema_AttendeeUncheckedCreateWithoutAttendancePoolInput_schema); - - -// File: AttendeeCreateOrConnectWithoutAttendancePoolInput.schema.ts -const __makeSchema_AttendeeCreateOrConnectWithoutAttendancePoolInput_schema = () => z.object({ - get where(){ return AttendeeWhereUniqueInputObjectSchema; }, - create: z.union([AttendeeCreateWithoutAttendancePoolInputObjectSchema, AttendeeUncheckedCreateWithoutAttendancePoolInputObjectSchema]) -}).strict(); -export const AttendeeCreateOrConnectWithoutAttendancePoolInputObjectSchema: z.ZodType = z.lazy(__makeSchema_AttendeeCreateOrConnectWithoutAttendancePoolInput_schema) as unknown as z.ZodType; -export const AttendeeCreateOrConnectWithoutAttendancePoolInputObjectZodSchema = z.lazy(__makeSchema_AttendeeCreateOrConnectWithoutAttendancePoolInput_schema); - - -// File: AttendeeCreateManyAttendancePoolInputEnvelope.schema.ts -const __makeSchema_AttendeeCreateManyAttendancePoolInputEnvelope_schema = () => z.object({ - data: z.union([AttendeeCreateManyAttendancePoolInputObjectSchema, AttendeeCreateManyAttendancePoolInputObjectSchema.array()]), - skipDuplicates: z.boolean().optional() -}).strict(); -export const AttendeeCreateManyAttendancePoolInputEnvelopeObjectSchema: z.ZodType = z.lazy(__makeSchema_AttendeeCreateManyAttendancePoolInputEnvelope_schema) as unknown as z.ZodType; -export const AttendeeCreateManyAttendancePoolInputEnvelopeObjectZodSchema = z.lazy(__makeSchema_AttendeeCreateManyAttendancePoolInputEnvelope_schema); - - -// File: AttendanceUpsertWithoutPoolsInput.schema.ts -const __makeSchema_AttendanceUpsertWithoutPoolsInput_schema = () => z.object({ - update: z.union([AttendanceUpdateWithoutPoolsInputObjectSchema, AttendanceUncheckedUpdateWithoutPoolsInputObjectSchema]), - create: z.union([AttendanceCreateWithoutPoolsInputObjectSchema, AttendanceUncheckedCreateWithoutPoolsInputObjectSchema]), - get where(){ return AttendanceWhereInputObjectSchema.optional(); } -}).strict(); -export const AttendanceUpsertWithoutPoolsInputObjectSchema: z.ZodType = z.lazy(__makeSchema_AttendanceUpsertWithoutPoolsInput_schema) as unknown as z.ZodType; -export const AttendanceUpsertWithoutPoolsInputObjectZodSchema = z.lazy(__makeSchema_AttendanceUpsertWithoutPoolsInput_schema); - - -// File: AttendanceUpdateToOneWithWhereWithoutPoolsInput.schema.ts -const __makeSchema_AttendanceUpdateToOneWithWhereWithoutPoolsInput_schema = () => z.object({ - get where(){ return AttendanceWhereInputObjectSchema.optional(); }, - data: z.union([AttendanceUpdateWithoutPoolsInputObjectSchema, AttendanceUncheckedUpdateWithoutPoolsInputObjectSchema]) -}).strict(); -export const AttendanceUpdateToOneWithWhereWithoutPoolsInputObjectSchema: z.ZodType = z.lazy(__makeSchema_AttendanceUpdateToOneWithWhereWithoutPoolsInput_schema) as unknown as z.ZodType; -export const AttendanceUpdateToOneWithWhereWithoutPoolsInputObjectZodSchema = z.lazy(__makeSchema_AttendanceUpdateToOneWithWhereWithoutPoolsInput_schema); - - -// File: AttendanceUpdateWithoutPoolsInput.schema.ts -const __makeSchema_AttendanceUpdateWithoutPoolsInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - registerStart: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - registerEnd: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - deregisterDeadline: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - selections: z.union([JsonNullValueInputSchema, jsonSchema]).optional(), - createdAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - updatedAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - attendancePrice: z.union([z.number().int(), NullableIntFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - get attendees(){ return AttendeeUpdateManyWithoutAttendanceNestedInputObjectSchema.optional(); }, - get events(){ return EventUpdateManyWithoutAttendanceNestedInputObjectSchema.optional(); } -}).strict(); -export const AttendanceUpdateWithoutPoolsInputObjectSchema: z.ZodType = z.lazy(__makeSchema_AttendanceUpdateWithoutPoolsInput_schema) as unknown as z.ZodType; -export const AttendanceUpdateWithoutPoolsInputObjectZodSchema = z.lazy(__makeSchema_AttendanceUpdateWithoutPoolsInput_schema); - - -// File: AttendanceUncheckedUpdateWithoutPoolsInput.schema.ts -const __makeSchema_AttendanceUncheckedUpdateWithoutPoolsInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - registerStart: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - registerEnd: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - deregisterDeadline: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - selections: z.union([JsonNullValueInputSchema, jsonSchema]).optional(), - createdAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - updatedAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - attendancePrice: z.union([z.number().int(), NullableIntFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - get attendees(){ return AttendeeUncheckedUpdateManyWithoutAttendanceNestedInputObjectSchema.optional(); }, - get events(){ return EventUncheckedUpdateManyWithoutAttendanceNestedInputObjectSchema.optional(); } -}).strict(); -export const AttendanceUncheckedUpdateWithoutPoolsInputObjectSchema: z.ZodType = z.lazy(__makeSchema_AttendanceUncheckedUpdateWithoutPoolsInput_schema) as unknown as z.ZodType; -export const AttendanceUncheckedUpdateWithoutPoolsInputObjectZodSchema = z.lazy(__makeSchema_AttendanceUncheckedUpdateWithoutPoolsInput_schema); - - -// File: TaskUpsertWithoutAttendancePoolsInput.schema.ts -const __makeSchema_TaskUpsertWithoutAttendancePoolsInput_schema = () => z.object({ - update: z.union([TaskUpdateWithoutAttendancePoolsInputObjectSchema, TaskUncheckedUpdateWithoutAttendancePoolsInputObjectSchema]), - create: z.union([TaskCreateWithoutAttendancePoolsInputObjectSchema, TaskUncheckedCreateWithoutAttendancePoolsInputObjectSchema]), - get where(){ return TaskWhereInputObjectSchema.optional(); } -}).strict(); -export const TaskUpsertWithoutAttendancePoolsInputObjectSchema: z.ZodType = z.lazy(__makeSchema_TaskUpsertWithoutAttendancePoolsInput_schema) as unknown as z.ZodType; -export const TaskUpsertWithoutAttendancePoolsInputObjectZodSchema = z.lazy(__makeSchema_TaskUpsertWithoutAttendancePoolsInput_schema); - - -// File: TaskUpdateToOneWithWhereWithoutAttendancePoolsInput.schema.ts -const __makeSchema_TaskUpdateToOneWithWhereWithoutAttendancePoolsInput_schema = () => z.object({ - get where(){ return TaskWhereInputObjectSchema.optional(); }, - data: z.union([TaskUpdateWithoutAttendancePoolsInputObjectSchema, TaskUncheckedUpdateWithoutAttendancePoolsInputObjectSchema]) -}).strict(); -export const TaskUpdateToOneWithWhereWithoutAttendancePoolsInputObjectSchema: z.ZodType = z.lazy(__makeSchema_TaskUpdateToOneWithWhereWithoutAttendancePoolsInput_schema) as unknown as z.ZodType; -export const TaskUpdateToOneWithWhereWithoutAttendancePoolsInputObjectZodSchema = z.lazy(__makeSchema_TaskUpdateToOneWithWhereWithoutAttendancePoolsInput_schema); - - -// File: TaskUpdateWithoutAttendancePoolsInput.schema.ts -const __makeSchema_TaskUpdateWithoutAttendancePoolsInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - type: z.union([TaskTypeSchema, EnumTaskTypeFieldUpdateOperationsInputObjectSchema]).optional(), - status: z.union([TaskStatusSchema, EnumTaskStatusFieldUpdateOperationsInputObjectSchema]).optional(), - payload: z.union([JsonNullValueInputSchema, jsonSchema]).optional(), - createdAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - scheduledAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - processedAt: z.union([z.coerce.date(), NullableDateTimeFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - get recurringTask(){ return RecurringTaskUpdateOneWithoutTasksNestedInputObjectSchema.optional(); }, - get notifications(){ return NotificationUpdateManyWithoutTaskNestedInputObjectSchema.optional(); } -}).strict(); -export const TaskUpdateWithoutAttendancePoolsInputObjectSchema: z.ZodType = z.lazy(__makeSchema_TaskUpdateWithoutAttendancePoolsInput_schema) as unknown as z.ZodType; -export const TaskUpdateWithoutAttendancePoolsInputObjectZodSchema = z.lazy(__makeSchema_TaskUpdateWithoutAttendancePoolsInput_schema); - - -// File: TaskUncheckedUpdateWithoutAttendancePoolsInput.schema.ts -const __makeSchema_TaskUncheckedUpdateWithoutAttendancePoolsInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - type: z.union([TaskTypeSchema, EnumTaskTypeFieldUpdateOperationsInputObjectSchema]).optional(), - status: z.union([TaskStatusSchema, EnumTaskStatusFieldUpdateOperationsInputObjectSchema]).optional(), - payload: z.union([JsonNullValueInputSchema, jsonSchema]).optional(), - createdAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - scheduledAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - processedAt: z.union([z.coerce.date(), NullableDateTimeFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - recurringTaskId: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - get notifications(){ return NotificationUncheckedUpdateManyWithoutTaskNestedInputObjectSchema.optional(); } -}).strict(); -export const TaskUncheckedUpdateWithoutAttendancePoolsInputObjectSchema: z.ZodType = z.lazy(__makeSchema_TaskUncheckedUpdateWithoutAttendancePoolsInput_schema) as unknown as z.ZodType; -export const TaskUncheckedUpdateWithoutAttendancePoolsInputObjectZodSchema = z.lazy(__makeSchema_TaskUncheckedUpdateWithoutAttendancePoolsInput_schema); - - -// File: AttendeeUpsertWithWhereUniqueWithoutAttendancePoolInput.schema.ts -const __makeSchema_AttendeeUpsertWithWhereUniqueWithoutAttendancePoolInput_schema = () => z.object({ - get where(){ return AttendeeWhereUniqueInputObjectSchema; }, - update: z.union([AttendeeUpdateWithoutAttendancePoolInputObjectSchema, AttendeeUncheckedUpdateWithoutAttendancePoolInputObjectSchema]), - create: z.union([AttendeeCreateWithoutAttendancePoolInputObjectSchema, AttendeeUncheckedCreateWithoutAttendancePoolInputObjectSchema]) -}).strict(); -export const AttendeeUpsertWithWhereUniqueWithoutAttendancePoolInputObjectSchema: z.ZodType = z.lazy(__makeSchema_AttendeeUpsertWithWhereUniqueWithoutAttendancePoolInput_schema) as unknown as z.ZodType; -export const AttendeeUpsertWithWhereUniqueWithoutAttendancePoolInputObjectZodSchema = z.lazy(__makeSchema_AttendeeUpsertWithWhereUniqueWithoutAttendancePoolInput_schema); - - -// File: AttendeeUpdateWithWhereUniqueWithoutAttendancePoolInput.schema.ts -const __makeSchema_AttendeeUpdateWithWhereUniqueWithoutAttendancePoolInput_schema = () => z.object({ - get where(){ return AttendeeWhereUniqueInputObjectSchema; }, - data: z.union([AttendeeUpdateWithoutAttendancePoolInputObjectSchema, AttendeeUncheckedUpdateWithoutAttendancePoolInputObjectSchema]) -}).strict(); -export const AttendeeUpdateWithWhereUniqueWithoutAttendancePoolInputObjectSchema: z.ZodType = z.lazy(__makeSchema_AttendeeUpdateWithWhereUniqueWithoutAttendancePoolInput_schema) as unknown as z.ZodType; -export const AttendeeUpdateWithWhereUniqueWithoutAttendancePoolInputObjectZodSchema = z.lazy(__makeSchema_AttendeeUpdateWithWhereUniqueWithoutAttendancePoolInput_schema); - - -// File: AttendeeUpdateManyWithWhereWithoutAttendancePoolInput.schema.ts -const __makeSchema_AttendeeUpdateManyWithWhereWithoutAttendancePoolInput_schema = () => z.object({ - get where(){ return AttendeeScalarWhereInputObjectSchema; }, - data: z.union([AttendeeUpdateManyMutationInputObjectSchema, AttendeeUncheckedUpdateManyWithoutAttendancePoolInputObjectSchema]) -}).strict(); -export const AttendeeUpdateManyWithWhereWithoutAttendancePoolInputObjectSchema: z.ZodType = z.lazy(__makeSchema_AttendeeUpdateManyWithWhereWithoutAttendancePoolInput_schema) as unknown as z.ZodType; -export const AttendeeUpdateManyWithWhereWithoutAttendancePoolInputObjectZodSchema = z.lazy(__makeSchema_AttendeeUpdateManyWithWhereWithoutAttendancePoolInput_schema); - - -// File: FeedbackFormAnswerCreateWithoutAttendeeInput.schema.ts -const __makeSchema_FeedbackFormAnswerCreateWithoutAttendeeInput_schema = () => z.object({ - id: z.string().optional(), - createdAt: z.coerce.date().optional(), - updatedAt: z.coerce.date().optional(), - get feedbackForm(){ return FeedbackFormCreateNestedOneWithoutAnswersInputObjectSchema; }, - get answers(){ return FeedbackQuestionAnswerCreateNestedManyWithoutFormAnswerInputObjectSchema.optional(); } -}).strict(); -export const FeedbackFormAnswerCreateWithoutAttendeeInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackFormAnswerCreateWithoutAttendeeInput_schema) as unknown as z.ZodType; -export const FeedbackFormAnswerCreateWithoutAttendeeInputObjectZodSchema = z.lazy(__makeSchema_FeedbackFormAnswerCreateWithoutAttendeeInput_schema); - - -// File: FeedbackFormAnswerUncheckedCreateWithoutAttendeeInput.schema.ts -const __makeSchema_FeedbackFormAnswerUncheckedCreateWithoutAttendeeInput_schema = () => z.object({ - id: z.string().optional(), - createdAt: z.coerce.date().optional(), - updatedAt: z.coerce.date().optional(), - feedbackFormId: z.string(), - get answers(){ return FeedbackQuestionAnswerUncheckedCreateNestedManyWithoutFormAnswerInputObjectSchema.optional(); } -}).strict(); -export const FeedbackFormAnswerUncheckedCreateWithoutAttendeeInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackFormAnswerUncheckedCreateWithoutAttendeeInput_schema) as unknown as z.ZodType; -export const FeedbackFormAnswerUncheckedCreateWithoutAttendeeInputObjectZodSchema = z.lazy(__makeSchema_FeedbackFormAnswerUncheckedCreateWithoutAttendeeInput_schema); - - -// File: FeedbackFormAnswerCreateOrConnectWithoutAttendeeInput.schema.ts -const __makeSchema_FeedbackFormAnswerCreateOrConnectWithoutAttendeeInput_schema = () => z.object({ - get where(){ return FeedbackFormAnswerWhereUniqueInputObjectSchema; }, - create: z.union([FeedbackFormAnswerCreateWithoutAttendeeInputObjectSchema, FeedbackFormAnswerUncheckedCreateWithoutAttendeeInputObjectSchema]) -}).strict(); -export const FeedbackFormAnswerCreateOrConnectWithoutAttendeeInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackFormAnswerCreateOrConnectWithoutAttendeeInput_schema) as unknown as z.ZodType; -export const FeedbackFormAnswerCreateOrConnectWithoutAttendeeInputObjectZodSchema = z.lazy(__makeSchema_FeedbackFormAnswerCreateOrConnectWithoutAttendeeInput_schema); - - -// File: AttendanceCreateWithoutAttendeesInput.schema.ts -const __makeSchema_AttendanceCreateWithoutAttendeesInput_schema = () => z.object({ - id: z.string().optional(), - registerStart: z.coerce.date(), - registerEnd: z.coerce.date(), - deregisterDeadline: z.coerce.date(), - selections: z.union([JsonNullValueInputSchema, jsonSchema]).optional(), - createdAt: z.coerce.date().optional(), - updatedAt: z.coerce.date().optional(), - attendancePrice: z.number().int().optional().nullable(), - get pools(){ return AttendancePoolCreateNestedManyWithoutAttendanceInputObjectSchema.optional(); }, - get events(){ return EventCreateNestedManyWithoutAttendanceInputObjectSchema.optional(); } -}).strict(); -export const AttendanceCreateWithoutAttendeesInputObjectSchema: z.ZodType = z.lazy(__makeSchema_AttendanceCreateWithoutAttendeesInput_schema) as unknown as z.ZodType; -export const AttendanceCreateWithoutAttendeesInputObjectZodSchema = z.lazy(__makeSchema_AttendanceCreateWithoutAttendeesInput_schema); - - -// File: AttendanceUncheckedCreateWithoutAttendeesInput.schema.ts -const __makeSchema_AttendanceUncheckedCreateWithoutAttendeesInput_schema = () => z.object({ - id: z.string().optional(), - registerStart: z.coerce.date(), - registerEnd: z.coerce.date(), - deregisterDeadline: z.coerce.date(), - selections: z.union([JsonNullValueInputSchema, jsonSchema]).optional(), - createdAt: z.coerce.date().optional(), - updatedAt: z.coerce.date().optional(), - attendancePrice: z.number().int().optional().nullable(), - get pools(){ return AttendancePoolUncheckedCreateNestedManyWithoutAttendanceInputObjectSchema.optional(); }, - get events(){ return EventUncheckedCreateNestedManyWithoutAttendanceInputObjectSchema.optional(); } -}).strict(); -export const AttendanceUncheckedCreateWithoutAttendeesInputObjectSchema: z.ZodType = z.lazy(__makeSchema_AttendanceUncheckedCreateWithoutAttendeesInput_schema) as unknown as z.ZodType; -export const AttendanceUncheckedCreateWithoutAttendeesInputObjectZodSchema = z.lazy(__makeSchema_AttendanceUncheckedCreateWithoutAttendeesInput_schema); - - -// File: AttendanceCreateOrConnectWithoutAttendeesInput.schema.ts -const __makeSchema_AttendanceCreateOrConnectWithoutAttendeesInput_schema = () => z.object({ - get where(){ return AttendanceWhereUniqueInputObjectSchema; }, - create: z.union([AttendanceCreateWithoutAttendeesInputObjectSchema, AttendanceUncheckedCreateWithoutAttendeesInputObjectSchema]) -}).strict(); -export const AttendanceCreateOrConnectWithoutAttendeesInputObjectSchema: z.ZodType = z.lazy(__makeSchema_AttendanceCreateOrConnectWithoutAttendeesInput_schema) as unknown as z.ZodType; -export const AttendanceCreateOrConnectWithoutAttendeesInputObjectZodSchema = z.lazy(__makeSchema_AttendanceCreateOrConnectWithoutAttendeesInput_schema); - - -// File: UserCreateWithoutAttendeeInput.schema.ts -const __makeSchema_UserCreateWithoutAttendeeInput_schema = () => z.object({ - id: z.string(), - username: z.string(), - name: z.string().optional().nullable(), - email: z.string().optional().nullable(), - imageUrl: z.string().optional().nullable(), - biography: z.string().optional().nullable(), - phone: z.string().optional().nullable(), - gender: GenderSchema.optional(), - dietaryRestrictions: z.string().optional().nullable(), - ntnuUsername: z.string().optional().nullable(), - flags: z.union([UserCreateflagsInputObjectSchema, z.string().array()]).optional(), - workspaceUserId: z.string().optional().nullable(), - createdAt: z.coerce.date().optional(), - updatedAt: z.coerce.date().optional(), - privacyPermissionsId: z.string().optional().nullable(), - notificationPermissionsId: z.string().optional().nullable(), - get privacyPermissions(){ return PrivacyPermissionsCreateNestedOneWithoutUserInputObjectSchema.optional(); }, - get notificationPermissions(){ return NotificationPermissionsCreateNestedOneWithoutUserInputObjectSchema.optional(); }, - get personalMark(){ return PersonalMarkCreateNestedManyWithoutUserInputObjectSchema.optional(); }, - get groupMemberships(){ return GroupMembershipCreateNestedManyWithoutUserInputObjectSchema.optional(); }, - get memberships(){ return MembershipCreateNestedManyWithoutUserInputObjectSchema.optional(); }, - get givenMarks(){ return PersonalMarkCreateNestedManyWithoutGivenByInputObjectSchema.optional(); }, - get attendeesRefunded(){ return AttendeeCreateNestedManyWithoutPaymentRefundedByInputObjectSchema.optional(); }, - get auditLogs(){ return AuditLogCreateNestedManyWithoutUserInputObjectSchema.optional(); }, - get deregisterReasons(){ return DeregisterReasonCreateNestedManyWithoutUserInputObjectSchema.optional(); }, - get notificationsReceived(){ return NotificationRecipientCreateNestedManyWithoutUserInputObjectSchema.optional(); }, - get notificationsCreated(){ return NotificationCreateNestedManyWithoutCreatedByInputObjectSchema.optional(); }, - get notificationsUpdated(){ return NotificationCreateNestedManyWithoutLastUpdatedByInputObjectSchema.optional(); }, - get contestants(){ return ContestantCreateNestedManyWithoutUserInputObjectSchema.optional(); }, - get contestTeams(){ return ContestTeamCreateNestedManyWithoutMembersInputObjectSchema.optional(); } -}).strict(); -export const UserCreateWithoutAttendeeInputObjectSchema: z.ZodType = z.lazy(__makeSchema_UserCreateWithoutAttendeeInput_schema) as unknown as z.ZodType; -export const UserCreateWithoutAttendeeInputObjectZodSchema = z.lazy(__makeSchema_UserCreateWithoutAttendeeInput_schema); - - -// File: UserUncheckedCreateWithoutAttendeeInput.schema.ts -const __makeSchema_UserUncheckedCreateWithoutAttendeeInput_schema = () => z.object({ - id: z.string(), - username: z.string(), - name: z.string().optional().nullable(), - email: z.string().optional().nullable(), - imageUrl: z.string().optional().nullable(), - biography: z.string().optional().nullable(), - phone: z.string().optional().nullable(), - gender: GenderSchema.optional(), - dietaryRestrictions: z.string().optional().nullable(), - ntnuUsername: z.string().optional().nullable(), - flags: z.union([UserCreateflagsInputObjectSchema, z.string().array()]).optional(), - workspaceUserId: z.string().optional().nullable(), - createdAt: z.coerce.date().optional(), - updatedAt: z.coerce.date().optional(), - privacyPermissionsId: z.string().optional().nullable(), - notificationPermissionsId: z.string().optional().nullable(), - get privacyPermissions(){ return PrivacyPermissionsUncheckedCreateNestedOneWithoutUserInputObjectSchema.optional(); }, - get notificationPermissions(){ return NotificationPermissionsUncheckedCreateNestedOneWithoutUserInputObjectSchema.optional(); }, - get personalMark(){ return PersonalMarkUncheckedCreateNestedManyWithoutUserInputObjectSchema.optional(); }, - get groupMemberships(){ return GroupMembershipUncheckedCreateNestedManyWithoutUserInputObjectSchema.optional(); }, - get memberships(){ return MembershipUncheckedCreateNestedManyWithoutUserInputObjectSchema.optional(); }, - get givenMarks(){ return PersonalMarkUncheckedCreateNestedManyWithoutGivenByInputObjectSchema.optional(); }, - get attendeesRefunded(){ return AttendeeUncheckedCreateNestedManyWithoutPaymentRefundedByInputObjectSchema.optional(); }, - get auditLogs(){ return AuditLogUncheckedCreateNestedManyWithoutUserInputObjectSchema.optional(); }, - get deregisterReasons(){ return DeregisterReasonUncheckedCreateNestedManyWithoutUserInputObjectSchema.optional(); }, - get notificationsReceived(){ return NotificationRecipientUncheckedCreateNestedManyWithoutUserInputObjectSchema.optional(); }, - get notificationsCreated(){ return NotificationUncheckedCreateNestedManyWithoutCreatedByInputObjectSchema.optional(); }, - get notificationsUpdated(){ return NotificationUncheckedCreateNestedManyWithoutLastUpdatedByInputObjectSchema.optional(); }, - get contestants(){ return ContestantUncheckedCreateNestedManyWithoutUserInputObjectSchema.optional(); }, - get contestTeams(){ return ContestTeamUncheckedCreateNestedManyWithoutMembersInputObjectSchema.optional(); } -}).strict(); -export const UserUncheckedCreateWithoutAttendeeInputObjectSchema: z.ZodType = z.lazy(__makeSchema_UserUncheckedCreateWithoutAttendeeInput_schema) as unknown as z.ZodType; -export const UserUncheckedCreateWithoutAttendeeInputObjectZodSchema = z.lazy(__makeSchema_UserUncheckedCreateWithoutAttendeeInput_schema); - - -// File: UserCreateOrConnectWithoutAttendeeInput.schema.ts -const __makeSchema_UserCreateOrConnectWithoutAttendeeInput_schema = () => z.object({ - get where(){ return UserWhereUniqueInputObjectSchema; }, - create: z.union([UserCreateWithoutAttendeeInputObjectSchema, UserUncheckedCreateWithoutAttendeeInputObjectSchema]) -}).strict(); -export const UserCreateOrConnectWithoutAttendeeInputObjectSchema: z.ZodType = z.lazy(__makeSchema_UserCreateOrConnectWithoutAttendeeInput_schema) as unknown as z.ZodType; -export const UserCreateOrConnectWithoutAttendeeInputObjectZodSchema = z.lazy(__makeSchema_UserCreateOrConnectWithoutAttendeeInput_schema); - - -// File: AttendancePoolCreateWithoutAttendeesInput.schema.ts -const __makeSchema_AttendancePoolCreateWithoutAttendeesInput_schema = () => z.object({ - id: z.string().optional(), - title: z.string(), - mergeDelayHours: z.number().int().optional().nullable(), - yearCriteria: z.union([JsonNullValueInputSchema, jsonSchema]), - capacity: z.number().int(), - createdAt: z.coerce.date().optional(), - updatedAt: z.coerce.date().optional(), - get attendance(){ return AttendanceCreateNestedOneWithoutPoolsInputObjectSchema; }, - get task(){ return TaskCreateNestedOneWithoutAttendancePoolsInputObjectSchema.optional(); } -}).strict(); -export const AttendancePoolCreateWithoutAttendeesInputObjectSchema: z.ZodType = z.lazy(__makeSchema_AttendancePoolCreateWithoutAttendeesInput_schema) as unknown as z.ZodType; -export const AttendancePoolCreateWithoutAttendeesInputObjectZodSchema = z.lazy(__makeSchema_AttendancePoolCreateWithoutAttendeesInput_schema); - - -// File: AttendancePoolUncheckedCreateWithoutAttendeesInput.schema.ts -const __makeSchema_AttendancePoolUncheckedCreateWithoutAttendeesInput_schema = () => z.object({ - id: z.string().optional(), - title: z.string(), - mergeDelayHours: z.number().int().optional().nullable(), - yearCriteria: z.union([JsonNullValueInputSchema, jsonSchema]), - capacity: z.number().int(), - createdAt: z.coerce.date().optional(), - updatedAt: z.coerce.date().optional(), - attendanceId: z.string(), - taskId: z.string().optional().nullable() -}).strict(); -export const AttendancePoolUncheckedCreateWithoutAttendeesInputObjectSchema: z.ZodType = z.lazy(__makeSchema_AttendancePoolUncheckedCreateWithoutAttendeesInput_schema) as unknown as z.ZodType; -export const AttendancePoolUncheckedCreateWithoutAttendeesInputObjectZodSchema = z.lazy(__makeSchema_AttendancePoolUncheckedCreateWithoutAttendeesInput_schema); - - -// File: AttendancePoolCreateOrConnectWithoutAttendeesInput.schema.ts -const __makeSchema_AttendancePoolCreateOrConnectWithoutAttendeesInput_schema = () => z.object({ - get where(){ return AttendancePoolWhereUniqueInputObjectSchema; }, - create: z.union([AttendancePoolCreateWithoutAttendeesInputObjectSchema, AttendancePoolUncheckedCreateWithoutAttendeesInputObjectSchema]) -}).strict(); -export const AttendancePoolCreateOrConnectWithoutAttendeesInputObjectSchema: z.ZodType = z.lazy(__makeSchema_AttendancePoolCreateOrConnectWithoutAttendeesInput_schema) as unknown as z.ZodType; -export const AttendancePoolCreateOrConnectWithoutAttendeesInputObjectZodSchema = z.lazy(__makeSchema_AttendancePoolCreateOrConnectWithoutAttendeesInput_schema); - - -// File: UserCreateWithoutAttendeesRefundedInput.schema.ts -const __makeSchema_UserCreateWithoutAttendeesRefundedInput_schema = () => z.object({ - id: z.string(), - username: z.string(), - name: z.string().optional().nullable(), - email: z.string().optional().nullable(), - imageUrl: z.string().optional().nullable(), - biography: z.string().optional().nullable(), - phone: z.string().optional().nullable(), - gender: GenderSchema.optional(), - dietaryRestrictions: z.string().optional().nullable(), - ntnuUsername: z.string().optional().nullable(), - flags: z.union([UserCreateflagsInputObjectSchema, z.string().array()]).optional(), - workspaceUserId: z.string().optional().nullable(), - createdAt: z.coerce.date().optional(), - updatedAt: z.coerce.date().optional(), - privacyPermissionsId: z.string().optional().nullable(), - notificationPermissionsId: z.string().optional().nullable(), - get privacyPermissions(){ return PrivacyPermissionsCreateNestedOneWithoutUserInputObjectSchema.optional(); }, - get notificationPermissions(){ return NotificationPermissionsCreateNestedOneWithoutUserInputObjectSchema.optional(); }, - get attendee(){ return AttendeeCreateNestedManyWithoutUserInputObjectSchema.optional(); }, - get personalMark(){ return PersonalMarkCreateNestedManyWithoutUserInputObjectSchema.optional(); }, - get groupMemberships(){ return GroupMembershipCreateNestedManyWithoutUserInputObjectSchema.optional(); }, - get memberships(){ return MembershipCreateNestedManyWithoutUserInputObjectSchema.optional(); }, - get givenMarks(){ return PersonalMarkCreateNestedManyWithoutGivenByInputObjectSchema.optional(); }, - get auditLogs(){ return AuditLogCreateNestedManyWithoutUserInputObjectSchema.optional(); }, - get deregisterReasons(){ return DeregisterReasonCreateNestedManyWithoutUserInputObjectSchema.optional(); }, - get notificationsReceived(){ return NotificationRecipientCreateNestedManyWithoutUserInputObjectSchema.optional(); }, - get notificationsCreated(){ return NotificationCreateNestedManyWithoutCreatedByInputObjectSchema.optional(); }, - get notificationsUpdated(){ return NotificationCreateNestedManyWithoutLastUpdatedByInputObjectSchema.optional(); }, - get contestants(){ return ContestantCreateNestedManyWithoutUserInputObjectSchema.optional(); }, - get contestTeams(){ return ContestTeamCreateNestedManyWithoutMembersInputObjectSchema.optional(); } -}).strict(); -export const UserCreateWithoutAttendeesRefundedInputObjectSchema: z.ZodType = z.lazy(__makeSchema_UserCreateWithoutAttendeesRefundedInput_schema) as unknown as z.ZodType; -export const UserCreateWithoutAttendeesRefundedInputObjectZodSchema = z.lazy(__makeSchema_UserCreateWithoutAttendeesRefundedInput_schema); - - -// File: UserUncheckedCreateWithoutAttendeesRefundedInput.schema.ts -const __makeSchema_UserUncheckedCreateWithoutAttendeesRefundedInput_schema = () => z.object({ - id: z.string(), - username: z.string(), - name: z.string().optional().nullable(), - email: z.string().optional().nullable(), - imageUrl: z.string().optional().nullable(), - biography: z.string().optional().nullable(), - phone: z.string().optional().nullable(), - gender: GenderSchema.optional(), - dietaryRestrictions: z.string().optional().nullable(), - ntnuUsername: z.string().optional().nullable(), - flags: z.union([UserCreateflagsInputObjectSchema, z.string().array()]).optional(), - workspaceUserId: z.string().optional().nullable(), - createdAt: z.coerce.date().optional(), - updatedAt: z.coerce.date().optional(), - privacyPermissionsId: z.string().optional().nullable(), - notificationPermissionsId: z.string().optional().nullable(), - get privacyPermissions(){ return PrivacyPermissionsUncheckedCreateNestedOneWithoutUserInputObjectSchema.optional(); }, - get notificationPermissions(){ return NotificationPermissionsUncheckedCreateNestedOneWithoutUserInputObjectSchema.optional(); }, - get attendee(){ return AttendeeUncheckedCreateNestedManyWithoutUserInputObjectSchema.optional(); }, - get personalMark(){ return PersonalMarkUncheckedCreateNestedManyWithoutUserInputObjectSchema.optional(); }, - get groupMemberships(){ return GroupMembershipUncheckedCreateNestedManyWithoutUserInputObjectSchema.optional(); }, - get memberships(){ return MembershipUncheckedCreateNestedManyWithoutUserInputObjectSchema.optional(); }, - get givenMarks(){ return PersonalMarkUncheckedCreateNestedManyWithoutGivenByInputObjectSchema.optional(); }, - get auditLogs(){ return AuditLogUncheckedCreateNestedManyWithoutUserInputObjectSchema.optional(); }, - get deregisterReasons(){ return DeregisterReasonUncheckedCreateNestedManyWithoutUserInputObjectSchema.optional(); }, - get notificationsReceived(){ return NotificationRecipientUncheckedCreateNestedManyWithoutUserInputObjectSchema.optional(); }, - get notificationsCreated(){ return NotificationUncheckedCreateNestedManyWithoutCreatedByInputObjectSchema.optional(); }, - get notificationsUpdated(){ return NotificationUncheckedCreateNestedManyWithoutLastUpdatedByInputObjectSchema.optional(); }, - get contestants(){ return ContestantUncheckedCreateNestedManyWithoutUserInputObjectSchema.optional(); }, - get contestTeams(){ return ContestTeamUncheckedCreateNestedManyWithoutMembersInputObjectSchema.optional(); } -}).strict(); -export const UserUncheckedCreateWithoutAttendeesRefundedInputObjectSchema: z.ZodType = z.lazy(__makeSchema_UserUncheckedCreateWithoutAttendeesRefundedInput_schema) as unknown as z.ZodType; -export const UserUncheckedCreateWithoutAttendeesRefundedInputObjectZodSchema = z.lazy(__makeSchema_UserUncheckedCreateWithoutAttendeesRefundedInput_schema); - - -// File: UserCreateOrConnectWithoutAttendeesRefundedInput.schema.ts -const __makeSchema_UserCreateOrConnectWithoutAttendeesRefundedInput_schema = () => z.object({ - get where(){ return UserWhereUniqueInputObjectSchema; }, - create: z.union([UserCreateWithoutAttendeesRefundedInputObjectSchema, UserUncheckedCreateWithoutAttendeesRefundedInputObjectSchema]) -}).strict(); -export const UserCreateOrConnectWithoutAttendeesRefundedInputObjectSchema: z.ZodType = z.lazy(__makeSchema_UserCreateOrConnectWithoutAttendeesRefundedInput_schema) as unknown as z.ZodType; -export const UserCreateOrConnectWithoutAttendeesRefundedInputObjectZodSchema = z.lazy(__makeSchema_UserCreateOrConnectWithoutAttendeesRefundedInput_schema); - - -// File: FeedbackFormAnswerUpsertWithoutAttendeeInput.schema.ts -const __makeSchema_FeedbackFormAnswerUpsertWithoutAttendeeInput_schema = () => z.object({ - update: z.union([FeedbackFormAnswerUpdateWithoutAttendeeInputObjectSchema, FeedbackFormAnswerUncheckedUpdateWithoutAttendeeInputObjectSchema]), - create: z.union([FeedbackFormAnswerCreateWithoutAttendeeInputObjectSchema, FeedbackFormAnswerUncheckedCreateWithoutAttendeeInputObjectSchema]), - get where(){ return FeedbackFormAnswerWhereInputObjectSchema.optional(); } -}).strict(); -export const FeedbackFormAnswerUpsertWithoutAttendeeInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackFormAnswerUpsertWithoutAttendeeInput_schema) as unknown as z.ZodType; -export const FeedbackFormAnswerUpsertWithoutAttendeeInputObjectZodSchema = z.lazy(__makeSchema_FeedbackFormAnswerUpsertWithoutAttendeeInput_schema); - - -// File: FeedbackFormAnswerUpdateToOneWithWhereWithoutAttendeeInput.schema.ts -const __makeSchema_FeedbackFormAnswerUpdateToOneWithWhereWithoutAttendeeInput_schema = () => z.object({ - get where(){ return FeedbackFormAnswerWhereInputObjectSchema.optional(); }, - data: z.union([FeedbackFormAnswerUpdateWithoutAttendeeInputObjectSchema, FeedbackFormAnswerUncheckedUpdateWithoutAttendeeInputObjectSchema]) -}).strict(); -export const FeedbackFormAnswerUpdateToOneWithWhereWithoutAttendeeInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackFormAnswerUpdateToOneWithWhereWithoutAttendeeInput_schema) as unknown as z.ZodType; -export const FeedbackFormAnswerUpdateToOneWithWhereWithoutAttendeeInputObjectZodSchema = z.lazy(__makeSchema_FeedbackFormAnswerUpdateToOneWithWhereWithoutAttendeeInput_schema); - - -// File: FeedbackFormAnswerUpdateWithoutAttendeeInput.schema.ts -const __makeSchema_FeedbackFormAnswerUpdateWithoutAttendeeInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - createdAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - updatedAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - get feedbackForm(){ return FeedbackFormUpdateOneRequiredWithoutAnswersNestedInputObjectSchema.optional(); }, - get answers(){ return FeedbackQuestionAnswerUpdateManyWithoutFormAnswerNestedInputObjectSchema.optional(); } -}).strict(); -export const FeedbackFormAnswerUpdateWithoutAttendeeInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackFormAnswerUpdateWithoutAttendeeInput_schema) as unknown as z.ZodType; -export const FeedbackFormAnswerUpdateWithoutAttendeeInputObjectZodSchema = z.lazy(__makeSchema_FeedbackFormAnswerUpdateWithoutAttendeeInput_schema); - - -// File: FeedbackFormAnswerUncheckedUpdateWithoutAttendeeInput.schema.ts -const __makeSchema_FeedbackFormAnswerUncheckedUpdateWithoutAttendeeInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - createdAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - updatedAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - feedbackFormId: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - get answers(){ return FeedbackQuestionAnswerUncheckedUpdateManyWithoutFormAnswerNestedInputObjectSchema.optional(); } -}).strict(); -export const FeedbackFormAnswerUncheckedUpdateWithoutAttendeeInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackFormAnswerUncheckedUpdateWithoutAttendeeInput_schema) as unknown as z.ZodType; -export const FeedbackFormAnswerUncheckedUpdateWithoutAttendeeInputObjectZodSchema = z.lazy(__makeSchema_FeedbackFormAnswerUncheckedUpdateWithoutAttendeeInput_schema); - - -// File: AttendanceUpsertWithoutAttendeesInput.schema.ts -const __makeSchema_AttendanceUpsertWithoutAttendeesInput_schema = () => z.object({ - update: z.union([AttendanceUpdateWithoutAttendeesInputObjectSchema, AttendanceUncheckedUpdateWithoutAttendeesInputObjectSchema]), - create: z.union([AttendanceCreateWithoutAttendeesInputObjectSchema, AttendanceUncheckedCreateWithoutAttendeesInputObjectSchema]), - get where(){ return AttendanceWhereInputObjectSchema.optional(); } -}).strict(); -export const AttendanceUpsertWithoutAttendeesInputObjectSchema: z.ZodType = z.lazy(__makeSchema_AttendanceUpsertWithoutAttendeesInput_schema) as unknown as z.ZodType; -export const AttendanceUpsertWithoutAttendeesInputObjectZodSchema = z.lazy(__makeSchema_AttendanceUpsertWithoutAttendeesInput_schema); - - -// File: AttendanceUpdateToOneWithWhereWithoutAttendeesInput.schema.ts -const __makeSchema_AttendanceUpdateToOneWithWhereWithoutAttendeesInput_schema = () => z.object({ - get where(){ return AttendanceWhereInputObjectSchema.optional(); }, - data: z.union([AttendanceUpdateWithoutAttendeesInputObjectSchema, AttendanceUncheckedUpdateWithoutAttendeesInputObjectSchema]) -}).strict(); -export const AttendanceUpdateToOneWithWhereWithoutAttendeesInputObjectSchema: z.ZodType = z.lazy(__makeSchema_AttendanceUpdateToOneWithWhereWithoutAttendeesInput_schema) as unknown as z.ZodType; -export const AttendanceUpdateToOneWithWhereWithoutAttendeesInputObjectZodSchema = z.lazy(__makeSchema_AttendanceUpdateToOneWithWhereWithoutAttendeesInput_schema); - - -// File: AttendanceUpdateWithoutAttendeesInput.schema.ts -const __makeSchema_AttendanceUpdateWithoutAttendeesInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - registerStart: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - registerEnd: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - deregisterDeadline: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - selections: z.union([JsonNullValueInputSchema, jsonSchema]).optional(), - createdAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - updatedAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - attendancePrice: z.union([z.number().int(), NullableIntFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - get pools(){ return AttendancePoolUpdateManyWithoutAttendanceNestedInputObjectSchema.optional(); }, - get events(){ return EventUpdateManyWithoutAttendanceNestedInputObjectSchema.optional(); } -}).strict(); -export const AttendanceUpdateWithoutAttendeesInputObjectSchema: z.ZodType = z.lazy(__makeSchema_AttendanceUpdateWithoutAttendeesInput_schema) as unknown as z.ZodType; -export const AttendanceUpdateWithoutAttendeesInputObjectZodSchema = z.lazy(__makeSchema_AttendanceUpdateWithoutAttendeesInput_schema); - - -// File: AttendanceUncheckedUpdateWithoutAttendeesInput.schema.ts -const __makeSchema_AttendanceUncheckedUpdateWithoutAttendeesInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - registerStart: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - registerEnd: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - deregisterDeadline: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - selections: z.union([JsonNullValueInputSchema, jsonSchema]).optional(), - createdAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - updatedAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - attendancePrice: z.union([z.number().int(), NullableIntFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - get pools(){ return AttendancePoolUncheckedUpdateManyWithoutAttendanceNestedInputObjectSchema.optional(); }, - get events(){ return EventUncheckedUpdateManyWithoutAttendanceNestedInputObjectSchema.optional(); } -}).strict(); -export const AttendanceUncheckedUpdateWithoutAttendeesInputObjectSchema: z.ZodType = z.lazy(__makeSchema_AttendanceUncheckedUpdateWithoutAttendeesInput_schema) as unknown as z.ZodType; -export const AttendanceUncheckedUpdateWithoutAttendeesInputObjectZodSchema = z.lazy(__makeSchema_AttendanceUncheckedUpdateWithoutAttendeesInput_schema); - - -// File: UserUpsertWithoutAttendeeInput.schema.ts -const __makeSchema_UserUpsertWithoutAttendeeInput_schema = () => z.object({ - update: z.union([UserUpdateWithoutAttendeeInputObjectSchema, UserUncheckedUpdateWithoutAttendeeInputObjectSchema]), - create: z.union([UserCreateWithoutAttendeeInputObjectSchema, UserUncheckedCreateWithoutAttendeeInputObjectSchema]), - get where(){ return UserWhereInputObjectSchema.optional(); } -}).strict(); -export const UserUpsertWithoutAttendeeInputObjectSchema: z.ZodType = z.lazy(__makeSchema_UserUpsertWithoutAttendeeInput_schema) as unknown as z.ZodType; -export const UserUpsertWithoutAttendeeInputObjectZodSchema = z.lazy(__makeSchema_UserUpsertWithoutAttendeeInput_schema); - - -// File: UserUpdateToOneWithWhereWithoutAttendeeInput.schema.ts -const __makeSchema_UserUpdateToOneWithWhereWithoutAttendeeInput_schema = () => z.object({ - get where(){ return UserWhereInputObjectSchema.optional(); }, - data: z.union([UserUpdateWithoutAttendeeInputObjectSchema, UserUncheckedUpdateWithoutAttendeeInputObjectSchema]) -}).strict(); -export const UserUpdateToOneWithWhereWithoutAttendeeInputObjectSchema: z.ZodType = z.lazy(__makeSchema_UserUpdateToOneWithWhereWithoutAttendeeInput_schema) as unknown as z.ZodType; -export const UserUpdateToOneWithWhereWithoutAttendeeInputObjectZodSchema = z.lazy(__makeSchema_UserUpdateToOneWithWhereWithoutAttendeeInput_schema); - - -// File: UserUpdateWithoutAttendeeInput.schema.ts -const __makeSchema_UserUpdateWithoutAttendeeInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - username: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - name: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - email: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - imageUrl: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - biography: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - phone: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - gender: z.union([GenderSchema, EnumGenderFieldUpdateOperationsInputObjectSchema]).optional(), - dietaryRestrictions: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - ntnuUsername: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - flags: z.union([UserUpdateflagsInputObjectSchema, z.string().array()]).optional(), - workspaceUserId: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - createdAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - updatedAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - privacyPermissionsId: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - notificationPermissionsId: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - get privacyPermissions(){ return PrivacyPermissionsUpdateOneWithoutUserNestedInputObjectSchema.optional(); }, - get notificationPermissions(){ return NotificationPermissionsUpdateOneWithoutUserNestedInputObjectSchema.optional(); }, - get personalMark(){ return PersonalMarkUpdateManyWithoutUserNestedInputObjectSchema.optional(); }, - get groupMemberships(){ return GroupMembershipUpdateManyWithoutUserNestedInputObjectSchema.optional(); }, - get memberships(){ return MembershipUpdateManyWithoutUserNestedInputObjectSchema.optional(); }, - get givenMarks(){ return PersonalMarkUpdateManyWithoutGivenByNestedInputObjectSchema.optional(); }, - get attendeesRefunded(){ return AttendeeUpdateManyWithoutPaymentRefundedByNestedInputObjectSchema.optional(); }, - get auditLogs(){ return AuditLogUpdateManyWithoutUserNestedInputObjectSchema.optional(); }, - get deregisterReasons(){ return DeregisterReasonUpdateManyWithoutUserNestedInputObjectSchema.optional(); }, - get notificationsReceived(){ return NotificationRecipientUpdateManyWithoutUserNestedInputObjectSchema.optional(); }, - get notificationsCreated(){ return NotificationUpdateManyWithoutCreatedByNestedInputObjectSchema.optional(); }, - get notificationsUpdated(){ return NotificationUpdateManyWithoutLastUpdatedByNestedInputObjectSchema.optional(); }, - get contestants(){ return ContestantUpdateManyWithoutUserNestedInputObjectSchema.optional(); }, - get contestTeams(){ return ContestTeamUpdateManyWithoutMembersNestedInputObjectSchema.optional(); } -}).strict(); -export const UserUpdateWithoutAttendeeInputObjectSchema: z.ZodType = z.lazy(__makeSchema_UserUpdateWithoutAttendeeInput_schema) as unknown as z.ZodType; -export const UserUpdateWithoutAttendeeInputObjectZodSchema = z.lazy(__makeSchema_UserUpdateWithoutAttendeeInput_schema); - - -// File: UserUncheckedUpdateWithoutAttendeeInput.schema.ts -const __makeSchema_UserUncheckedUpdateWithoutAttendeeInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - username: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - name: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - email: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - imageUrl: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - biography: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - phone: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - gender: z.union([GenderSchema, EnumGenderFieldUpdateOperationsInputObjectSchema]).optional(), - dietaryRestrictions: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - ntnuUsername: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - flags: z.union([UserUpdateflagsInputObjectSchema, z.string().array()]).optional(), - workspaceUserId: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - createdAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - updatedAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - privacyPermissionsId: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - notificationPermissionsId: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - get privacyPermissions(){ return PrivacyPermissionsUncheckedUpdateOneWithoutUserNestedInputObjectSchema.optional(); }, - get notificationPermissions(){ return NotificationPermissionsUncheckedUpdateOneWithoutUserNestedInputObjectSchema.optional(); }, - get personalMark(){ return PersonalMarkUncheckedUpdateManyWithoutUserNestedInputObjectSchema.optional(); }, - get groupMemberships(){ return GroupMembershipUncheckedUpdateManyWithoutUserNestedInputObjectSchema.optional(); }, - get memberships(){ return MembershipUncheckedUpdateManyWithoutUserNestedInputObjectSchema.optional(); }, - get givenMarks(){ return PersonalMarkUncheckedUpdateManyWithoutGivenByNestedInputObjectSchema.optional(); }, - get attendeesRefunded(){ return AttendeeUncheckedUpdateManyWithoutPaymentRefundedByNestedInputObjectSchema.optional(); }, - get auditLogs(){ return AuditLogUncheckedUpdateManyWithoutUserNestedInputObjectSchema.optional(); }, - get deregisterReasons(){ return DeregisterReasonUncheckedUpdateManyWithoutUserNestedInputObjectSchema.optional(); }, - get notificationsReceived(){ return NotificationRecipientUncheckedUpdateManyWithoutUserNestedInputObjectSchema.optional(); }, - get notificationsCreated(){ return NotificationUncheckedUpdateManyWithoutCreatedByNestedInputObjectSchema.optional(); }, - get notificationsUpdated(){ return NotificationUncheckedUpdateManyWithoutLastUpdatedByNestedInputObjectSchema.optional(); }, - get contestants(){ return ContestantUncheckedUpdateManyWithoutUserNestedInputObjectSchema.optional(); }, - get contestTeams(){ return ContestTeamUncheckedUpdateManyWithoutMembersNestedInputObjectSchema.optional(); } -}).strict(); -export const UserUncheckedUpdateWithoutAttendeeInputObjectSchema: z.ZodType = z.lazy(__makeSchema_UserUncheckedUpdateWithoutAttendeeInput_schema) as unknown as z.ZodType; -export const UserUncheckedUpdateWithoutAttendeeInputObjectZodSchema = z.lazy(__makeSchema_UserUncheckedUpdateWithoutAttendeeInput_schema); - - -// File: AttendancePoolUpsertWithoutAttendeesInput.schema.ts -const __makeSchema_AttendancePoolUpsertWithoutAttendeesInput_schema = () => z.object({ - update: z.union([AttendancePoolUpdateWithoutAttendeesInputObjectSchema, AttendancePoolUncheckedUpdateWithoutAttendeesInputObjectSchema]), - create: z.union([AttendancePoolCreateWithoutAttendeesInputObjectSchema, AttendancePoolUncheckedCreateWithoutAttendeesInputObjectSchema]), - get where(){ return AttendancePoolWhereInputObjectSchema.optional(); } -}).strict(); -export const AttendancePoolUpsertWithoutAttendeesInputObjectSchema: z.ZodType = z.lazy(__makeSchema_AttendancePoolUpsertWithoutAttendeesInput_schema) as unknown as z.ZodType; -export const AttendancePoolUpsertWithoutAttendeesInputObjectZodSchema = z.lazy(__makeSchema_AttendancePoolUpsertWithoutAttendeesInput_schema); - - -// File: AttendancePoolUpdateToOneWithWhereWithoutAttendeesInput.schema.ts -const __makeSchema_AttendancePoolUpdateToOneWithWhereWithoutAttendeesInput_schema = () => z.object({ - get where(){ return AttendancePoolWhereInputObjectSchema.optional(); }, - data: z.union([AttendancePoolUpdateWithoutAttendeesInputObjectSchema, AttendancePoolUncheckedUpdateWithoutAttendeesInputObjectSchema]) -}).strict(); -export const AttendancePoolUpdateToOneWithWhereWithoutAttendeesInputObjectSchema: z.ZodType = z.lazy(__makeSchema_AttendancePoolUpdateToOneWithWhereWithoutAttendeesInput_schema) as unknown as z.ZodType; -export const AttendancePoolUpdateToOneWithWhereWithoutAttendeesInputObjectZodSchema = z.lazy(__makeSchema_AttendancePoolUpdateToOneWithWhereWithoutAttendeesInput_schema); - - -// File: AttendancePoolUpdateWithoutAttendeesInput.schema.ts -const __makeSchema_AttendancePoolUpdateWithoutAttendeesInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - title: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - mergeDelayHours: z.union([z.number().int(), NullableIntFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - yearCriteria: z.union([JsonNullValueInputSchema, jsonSchema]).optional(), - capacity: z.union([z.number().int(), IntFieldUpdateOperationsInputObjectSchema]).optional(), - createdAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - updatedAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - get attendance(){ return AttendanceUpdateOneRequiredWithoutPoolsNestedInputObjectSchema.optional(); }, - get task(){ return TaskUpdateOneWithoutAttendancePoolsNestedInputObjectSchema.optional(); } -}).strict(); -export const AttendancePoolUpdateWithoutAttendeesInputObjectSchema: z.ZodType = z.lazy(__makeSchema_AttendancePoolUpdateWithoutAttendeesInput_schema) as unknown as z.ZodType; -export const AttendancePoolUpdateWithoutAttendeesInputObjectZodSchema = z.lazy(__makeSchema_AttendancePoolUpdateWithoutAttendeesInput_schema); - - -// File: AttendancePoolUncheckedUpdateWithoutAttendeesInput.schema.ts -const __makeSchema_AttendancePoolUncheckedUpdateWithoutAttendeesInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - title: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - mergeDelayHours: z.union([z.number().int(), NullableIntFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - yearCriteria: z.union([JsonNullValueInputSchema, jsonSchema]).optional(), - capacity: z.union([z.number().int(), IntFieldUpdateOperationsInputObjectSchema]).optional(), - createdAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - updatedAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - attendanceId: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - taskId: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable() -}).strict(); -export const AttendancePoolUncheckedUpdateWithoutAttendeesInputObjectSchema: z.ZodType = z.lazy(__makeSchema_AttendancePoolUncheckedUpdateWithoutAttendeesInput_schema) as unknown as z.ZodType; -export const AttendancePoolUncheckedUpdateWithoutAttendeesInputObjectZodSchema = z.lazy(__makeSchema_AttendancePoolUncheckedUpdateWithoutAttendeesInput_schema); - - -// File: UserUpsertWithoutAttendeesRefundedInput.schema.ts -const __makeSchema_UserUpsertWithoutAttendeesRefundedInput_schema = () => z.object({ - update: z.union([UserUpdateWithoutAttendeesRefundedInputObjectSchema, UserUncheckedUpdateWithoutAttendeesRefundedInputObjectSchema]), - create: z.union([UserCreateWithoutAttendeesRefundedInputObjectSchema, UserUncheckedCreateWithoutAttendeesRefundedInputObjectSchema]), - get where(){ return UserWhereInputObjectSchema.optional(); } -}).strict(); -export const UserUpsertWithoutAttendeesRefundedInputObjectSchema: z.ZodType = z.lazy(__makeSchema_UserUpsertWithoutAttendeesRefundedInput_schema) as unknown as z.ZodType; -export const UserUpsertWithoutAttendeesRefundedInputObjectZodSchema = z.lazy(__makeSchema_UserUpsertWithoutAttendeesRefundedInput_schema); - - -// File: UserUpdateToOneWithWhereWithoutAttendeesRefundedInput.schema.ts -const __makeSchema_UserUpdateToOneWithWhereWithoutAttendeesRefundedInput_schema = () => z.object({ - get where(){ return UserWhereInputObjectSchema.optional(); }, - data: z.union([UserUpdateWithoutAttendeesRefundedInputObjectSchema, UserUncheckedUpdateWithoutAttendeesRefundedInputObjectSchema]) -}).strict(); -export const UserUpdateToOneWithWhereWithoutAttendeesRefundedInputObjectSchema: z.ZodType = z.lazy(__makeSchema_UserUpdateToOneWithWhereWithoutAttendeesRefundedInput_schema) as unknown as z.ZodType; -export const UserUpdateToOneWithWhereWithoutAttendeesRefundedInputObjectZodSchema = z.lazy(__makeSchema_UserUpdateToOneWithWhereWithoutAttendeesRefundedInput_schema); - - -// File: UserUpdateWithoutAttendeesRefundedInput.schema.ts -const __makeSchema_UserUpdateWithoutAttendeesRefundedInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - username: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - name: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - email: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - imageUrl: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - biography: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - phone: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - gender: z.union([GenderSchema, EnumGenderFieldUpdateOperationsInputObjectSchema]).optional(), - dietaryRestrictions: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - ntnuUsername: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - flags: z.union([UserUpdateflagsInputObjectSchema, z.string().array()]).optional(), - workspaceUserId: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - createdAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - updatedAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - privacyPermissionsId: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - notificationPermissionsId: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - get privacyPermissions(){ return PrivacyPermissionsUpdateOneWithoutUserNestedInputObjectSchema.optional(); }, - get notificationPermissions(){ return NotificationPermissionsUpdateOneWithoutUserNestedInputObjectSchema.optional(); }, - get attendee(){ return AttendeeUpdateManyWithoutUserNestedInputObjectSchema.optional(); }, - get personalMark(){ return PersonalMarkUpdateManyWithoutUserNestedInputObjectSchema.optional(); }, - get groupMemberships(){ return GroupMembershipUpdateManyWithoutUserNestedInputObjectSchema.optional(); }, - get memberships(){ return MembershipUpdateManyWithoutUserNestedInputObjectSchema.optional(); }, - get givenMarks(){ return PersonalMarkUpdateManyWithoutGivenByNestedInputObjectSchema.optional(); }, - get auditLogs(){ return AuditLogUpdateManyWithoutUserNestedInputObjectSchema.optional(); }, - get deregisterReasons(){ return DeregisterReasonUpdateManyWithoutUserNestedInputObjectSchema.optional(); }, - get notificationsReceived(){ return NotificationRecipientUpdateManyWithoutUserNestedInputObjectSchema.optional(); }, - get notificationsCreated(){ return NotificationUpdateManyWithoutCreatedByNestedInputObjectSchema.optional(); }, - get notificationsUpdated(){ return NotificationUpdateManyWithoutLastUpdatedByNestedInputObjectSchema.optional(); }, - get contestants(){ return ContestantUpdateManyWithoutUserNestedInputObjectSchema.optional(); }, - get contestTeams(){ return ContestTeamUpdateManyWithoutMembersNestedInputObjectSchema.optional(); } -}).strict(); -export const UserUpdateWithoutAttendeesRefundedInputObjectSchema: z.ZodType = z.lazy(__makeSchema_UserUpdateWithoutAttendeesRefundedInput_schema) as unknown as z.ZodType; -export const UserUpdateWithoutAttendeesRefundedInputObjectZodSchema = z.lazy(__makeSchema_UserUpdateWithoutAttendeesRefundedInput_schema); - - -// File: UserUncheckedUpdateWithoutAttendeesRefundedInput.schema.ts -const __makeSchema_UserUncheckedUpdateWithoutAttendeesRefundedInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - username: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - name: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - email: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - imageUrl: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - biography: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - phone: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - gender: z.union([GenderSchema, EnumGenderFieldUpdateOperationsInputObjectSchema]).optional(), - dietaryRestrictions: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - ntnuUsername: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - flags: z.union([UserUpdateflagsInputObjectSchema, z.string().array()]).optional(), - workspaceUserId: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - createdAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - updatedAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - privacyPermissionsId: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - notificationPermissionsId: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - get privacyPermissions(){ return PrivacyPermissionsUncheckedUpdateOneWithoutUserNestedInputObjectSchema.optional(); }, - get notificationPermissions(){ return NotificationPermissionsUncheckedUpdateOneWithoutUserNestedInputObjectSchema.optional(); }, - get attendee(){ return AttendeeUncheckedUpdateManyWithoutUserNestedInputObjectSchema.optional(); }, - get personalMark(){ return PersonalMarkUncheckedUpdateManyWithoutUserNestedInputObjectSchema.optional(); }, - get groupMemberships(){ return GroupMembershipUncheckedUpdateManyWithoutUserNestedInputObjectSchema.optional(); }, - get memberships(){ return MembershipUncheckedUpdateManyWithoutUserNestedInputObjectSchema.optional(); }, - get givenMarks(){ return PersonalMarkUncheckedUpdateManyWithoutGivenByNestedInputObjectSchema.optional(); }, - get auditLogs(){ return AuditLogUncheckedUpdateManyWithoutUserNestedInputObjectSchema.optional(); }, - get deregisterReasons(){ return DeregisterReasonUncheckedUpdateManyWithoutUserNestedInputObjectSchema.optional(); }, - get notificationsReceived(){ return NotificationRecipientUncheckedUpdateManyWithoutUserNestedInputObjectSchema.optional(); }, - get notificationsCreated(){ return NotificationUncheckedUpdateManyWithoutCreatedByNestedInputObjectSchema.optional(); }, - get notificationsUpdated(){ return NotificationUncheckedUpdateManyWithoutLastUpdatedByNestedInputObjectSchema.optional(); }, - get contestants(){ return ContestantUncheckedUpdateManyWithoutUserNestedInputObjectSchema.optional(); }, - get contestTeams(){ return ContestTeamUncheckedUpdateManyWithoutMembersNestedInputObjectSchema.optional(); } -}).strict(); -export const UserUncheckedUpdateWithoutAttendeesRefundedInputObjectSchema: z.ZodType = z.lazy(__makeSchema_UserUncheckedUpdateWithoutAttendeesRefundedInput_schema) as unknown as z.ZodType; -export const UserUncheckedUpdateWithoutAttendeesRefundedInputObjectZodSchema = z.lazy(__makeSchema_UserUncheckedUpdateWithoutAttendeesRefundedInput_schema); - - -// File: FeedbackFormCreateWithoutEventInput.schema.ts -const __makeSchema_FeedbackFormCreateWithoutEventInput_schema = () => z.object({ - id: z.string().optional(), - publicResultsToken: z.string().optional(), - createdAt: z.coerce.date().optional(), - updatedAt: z.coerce.date().optional(), - answerDeadline: z.coerce.date(), - get questions(){ return FeedbackQuestionCreateNestedManyWithoutFeedbackFormInputObjectSchema.optional(); }, - get answers(){ return FeedbackFormAnswerCreateNestedManyWithoutFeedbackFormInputObjectSchema.optional(); } -}).strict(); -export const FeedbackFormCreateWithoutEventInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackFormCreateWithoutEventInput_schema) as unknown as z.ZodType; -export const FeedbackFormCreateWithoutEventInputObjectZodSchema = z.lazy(__makeSchema_FeedbackFormCreateWithoutEventInput_schema); - - -// File: FeedbackFormUncheckedCreateWithoutEventInput.schema.ts -const __makeSchema_FeedbackFormUncheckedCreateWithoutEventInput_schema = () => z.object({ - id: z.string().optional(), - publicResultsToken: z.string().optional(), - createdAt: z.coerce.date().optional(), - updatedAt: z.coerce.date().optional(), - answerDeadline: z.coerce.date(), - get questions(){ return FeedbackQuestionUncheckedCreateNestedManyWithoutFeedbackFormInputObjectSchema.optional(); }, - get answers(){ return FeedbackFormAnswerUncheckedCreateNestedManyWithoutFeedbackFormInputObjectSchema.optional(); } -}).strict(); -export const FeedbackFormUncheckedCreateWithoutEventInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackFormUncheckedCreateWithoutEventInput_schema) as unknown as z.ZodType; -export const FeedbackFormUncheckedCreateWithoutEventInputObjectZodSchema = z.lazy(__makeSchema_FeedbackFormUncheckedCreateWithoutEventInput_schema); - - -// File: FeedbackFormCreateOrConnectWithoutEventInput.schema.ts -const __makeSchema_FeedbackFormCreateOrConnectWithoutEventInput_schema = () => z.object({ - get where(){ return FeedbackFormWhereUniqueInputObjectSchema; }, - create: z.union([FeedbackFormCreateWithoutEventInputObjectSchema, FeedbackFormUncheckedCreateWithoutEventInputObjectSchema]) -}).strict(); -export const FeedbackFormCreateOrConnectWithoutEventInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackFormCreateOrConnectWithoutEventInput_schema) as unknown as z.ZodType; -export const FeedbackFormCreateOrConnectWithoutEventInputObjectZodSchema = z.lazy(__makeSchema_FeedbackFormCreateOrConnectWithoutEventInput_schema); - - -// File: FadderukeCreateWithoutEventInput.schema.ts -const __makeSchema_FadderukeCreateWithoutEventInput_schema = () => z.object({ - id: z.string().optional(), - year: z.number().int(), - createdAt: z.coerce.date().optional(), - updatedAt: z.coerce.date().optional() -}).strict(); -export const FadderukeCreateWithoutEventInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FadderukeCreateWithoutEventInput_schema) as unknown as z.ZodType; -export const FadderukeCreateWithoutEventInputObjectZodSchema = z.lazy(__makeSchema_FadderukeCreateWithoutEventInput_schema); - - -// File: FadderukeUncheckedCreateWithoutEventInput.schema.ts -const __makeSchema_FadderukeUncheckedCreateWithoutEventInput_schema = () => z.object({ - id: z.string().optional(), - year: z.number().int(), - createdAt: z.coerce.date().optional(), - updatedAt: z.coerce.date().optional() -}).strict(); -export const FadderukeUncheckedCreateWithoutEventInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FadderukeUncheckedCreateWithoutEventInput_schema) as unknown as z.ZodType; -export const FadderukeUncheckedCreateWithoutEventInputObjectZodSchema = z.lazy(__makeSchema_FadderukeUncheckedCreateWithoutEventInput_schema); - - -// File: FadderukeCreateOrConnectWithoutEventInput.schema.ts -const __makeSchema_FadderukeCreateOrConnectWithoutEventInput_schema = () => z.object({ - get where(){ return FadderukeWhereUniqueInputObjectSchema; }, - create: z.union([FadderukeCreateWithoutEventInputObjectSchema, FadderukeUncheckedCreateWithoutEventInputObjectSchema]) -}).strict(); -export const FadderukeCreateOrConnectWithoutEventInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FadderukeCreateOrConnectWithoutEventInput_schema) as unknown as z.ZodType; -export const FadderukeCreateOrConnectWithoutEventInputObjectZodSchema = z.lazy(__makeSchema_FadderukeCreateOrConnectWithoutEventInput_schema); - - -// File: AttendanceCreateWithoutEventsInput.schema.ts -const __makeSchema_AttendanceCreateWithoutEventsInput_schema = () => z.object({ - id: z.string().optional(), - registerStart: z.coerce.date(), - registerEnd: z.coerce.date(), - deregisterDeadline: z.coerce.date(), - selections: z.union([JsonNullValueInputSchema, jsonSchema]).optional(), - createdAt: z.coerce.date().optional(), - updatedAt: z.coerce.date().optional(), - attendancePrice: z.number().int().optional().nullable(), - get pools(){ return AttendancePoolCreateNestedManyWithoutAttendanceInputObjectSchema.optional(); }, - get attendees(){ return AttendeeCreateNestedManyWithoutAttendanceInputObjectSchema.optional(); } -}).strict(); -export const AttendanceCreateWithoutEventsInputObjectSchema: z.ZodType = z.lazy(__makeSchema_AttendanceCreateWithoutEventsInput_schema) as unknown as z.ZodType; -export const AttendanceCreateWithoutEventsInputObjectZodSchema = z.lazy(__makeSchema_AttendanceCreateWithoutEventsInput_schema); - - -// File: AttendanceUncheckedCreateWithoutEventsInput.schema.ts -const __makeSchema_AttendanceUncheckedCreateWithoutEventsInput_schema = () => z.object({ - id: z.string().optional(), - registerStart: z.coerce.date(), - registerEnd: z.coerce.date(), - deregisterDeadline: z.coerce.date(), - selections: z.union([JsonNullValueInputSchema, jsonSchema]).optional(), - createdAt: z.coerce.date().optional(), - updatedAt: z.coerce.date().optional(), - attendancePrice: z.number().int().optional().nullable(), - get pools(){ return AttendancePoolUncheckedCreateNestedManyWithoutAttendanceInputObjectSchema.optional(); }, - get attendees(){ return AttendeeUncheckedCreateNestedManyWithoutAttendanceInputObjectSchema.optional(); } -}).strict(); -export const AttendanceUncheckedCreateWithoutEventsInputObjectSchema: z.ZodType = z.lazy(__makeSchema_AttendanceUncheckedCreateWithoutEventsInput_schema) as unknown as z.ZodType; -export const AttendanceUncheckedCreateWithoutEventsInputObjectZodSchema = z.lazy(__makeSchema_AttendanceUncheckedCreateWithoutEventsInput_schema); - - -// File: AttendanceCreateOrConnectWithoutEventsInput.schema.ts -const __makeSchema_AttendanceCreateOrConnectWithoutEventsInput_schema = () => z.object({ - get where(){ return AttendanceWhereUniqueInputObjectSchema; }, - create: z.union([AttendanceCreateWithoutEventsInputObjectSchema, AttendanceUncheckedCreateWithoutEventsInputObjectSchema]) -}).strict(); -export const AttendanceCreateOrConnectWithoutEventsInputObjectSchema: z.ZodType = z.lazy(__makeSchema_AttendanceCreateOrConnectWithoutEventsInput_schema) as unknown as z.ZodType; -export const AttendanceCreateOrConnectWithoutEventsInputObjectZodSchema = z.lazy(__makeSchema_AttendanceCreateOrConnectWithoutEventsInput_schema); - - -// File: EventCreateWithoutChildrenInput.schema.ts -const __makeSchema_EventCreateWithoutChildrenInput_schema = () => z.object({ - id: z.string().optional(), - title: z.string(), - start: z.coerce.date(), - end: z.coerce.date(), - status: EventStatusSchema, - description: z.string(), - shortDescription: z.string().optional().nullable(), - imageUrl: z.string().optional().nullable(), - locationTitle: z.string().optional().nullable(), - locationAddress: z.string().optional().nullable(), - locationLink: z.string().optional().nullable(), - type: EventTypeSchema, - markForMissedAttendance: z.boolean().optional(), - createdAt: z.coerce.date().optional(), - updatedAt: z.coerce.date().optional(), - metadataImportId: z.number().int().optional().nullable(), - get feedbackForm(){ return FeedbackFormCreateNestedOneWithoutEventInputObjectSchema.optional(); }, - get fadderuke(){ return FadderukeCreateNestedOneWithoutEventInputObjectSchema.optional(); }, - get attendance(){ return AttendanceCreateNestedOneWithoutEventsInputObjectSchema.optional(); }, - get parent(){ return EventCreateNestedOneWithoutChildrenInputObjectSchema.optional(); }, - get contest(){ return ContestCreateNestedOneWithoutEventsInputObjectSchema.optional(); }, - get companies(){ return EventCompanyCreateNestedManyWithoutEventInputObjectSchema.optional(); }, - get hostingGroups(){ return EventHostingGroupCreateNestedManyWithoutEventInputObjectSchema.optional(); }, - get deregisterReasons(){ return DeregisterReasonCreateNestedManyWithoutEventInputObjectSchema.optional(); } -}).strict(); -export const EventCreateWithoutChildrenInputObjectSchema: z.ZodType = z.lazy(__makeSchema_EventCreateWithoutChildrenInput_schema) as unknown as z.ZodType; -export const EventCreateWithoutChildrenInputObjectZodSchema = z.lazy(__makeSchema_EventCreateWithoutChildrenInput_schema); - - -// File: EventUncheckedCreateWithoutChildrenInput.schema.ts -const __makeSchema_EventUncheckedCreateWithoutChildrenInput_schema = () => z.object({ - id: z.string().optional(), - title: z.string(), - start: z.coerce.date(), - end: z.coerce.date(), - status: EventStatusSchema, - description: z.string(), - shortDescription: z.string().optional().nullable(), - imageUrl: z.string().optional().nullable(), - locationTitle: z.string().optional().nullable(), - locationAddress: z.string().optional().nullable(), - locationLink: z.string().optional().nullable(), - type: EventTypeSchema, - markForMissedAttendance: z.boolean().optional(), - createdAt: z.coerce.date().optional(), - updatedAt: z.coerce.date().optional(), - attendanceId: z.string().optional().nullable(), - parentId: z.string().optional().nullable(), - contestId: z.string().optional().nullable(), - metadataImportId: z.number().int().optional().nullable(), - get feedbackForm(){ return FeedbackFormUncheckedCreateNestedOneWithoutEventInputObjectSchema.optional(); }, - get fadderuke(){ return FadderukeUncheckedCreateNestedOneWithoutEventInputObjectSchema.optional(); }, - get companies(){ return EventCompanyUncheckedCreateNestedManyWithoutEventInputObjectSchema.optional(); }, - get hostingGroups(){ return EventHostingGroupUncheckedCreateNestedManyWithoutEventInputObjectSchema.optional(); }, - get deregisterReasons(){ return DeregisterReasonUncheckedCreateNestedManyWithoutEventInputObjectSchema.optional(); } -}).strict(); -export const EventUncheckedCreateWithoutChildrenInputObjectSchema: z.ZodType = z.lazy(__makeSchema_EventUncheckedCreateWithoutChildrenInput_schema) as unknown as z.ZodType; -export const EventUncheckedCreateWithoutChildrenInputObjectZodSchema = z.lazy(__makeSchema_EventUncheckedCreateWithoutChildrenInput_schema); - - -// File: EventCreateOrConnectWithoutChildrenInput.schema.ts -const __makeSchema_EventCreateOrConnectWithoutChildrenInput_schema = () => z.object({ - get where(){ return EventWhereUniqueInputObjectSchema; }, - create: z.union([EventCreateWithoutChildrenInputObjectSchema, EventUncheckedCreateWithoutChildrenInputObjectSchema]) -}).strict(); -export const EventCreateOrConnectWithoutChildrenInputObjectSchema: z.ZodType = z.lazy(__makeSchema_EventCreateOrConnectWithoutChildrenInput_schema) as unknown as z.ZodType; -export const EventCreateOrConnectWithoutChildrenInputObjectZodSchema = z.lazy(__makeSchema_EventCreateOrConnectWithoutChildrenInput_schema); - - -// File: EventCreateWithoutParentInput.schema.ts -const __makeSchema_EventCreateWithoutParentInput_schema = () => z.object({ - id: z.string().optional(), - title: z.string(), - start: z.coerce.date(), - end: z.coerce.date(), - status: EventStatusSchema, - description: z.string(), - shortDescription: z.string().optional().nullable(), - imageUrl: z.string().optional().nullable(), - locationTitle: z.string().optional().nullable(), - locationAddress: z.string().optional().nullable(), - locationLink: z.string().optional().nullable(), - type: EventTypeSchema, - markForMissedAttendance: z.boolean().optional(), - createdAt: z.coerce.date().optional(), - updatedAt: z.coerce.date().optional(), - metadataImportId: z.number().int().optional().nullable(), - get feedbackForm(){ return FeedbackFormCreateNestedOneWithoutEventInputObjectSchema.optional(); }, - get fadderuke(){ return FadderukeCreateNestedOneWithoutEventInputObjectSchema.optional(); }, - get attendance(){ return AttendanceCreateNestedOneWithoutEventsInputObjectSchema.optional(); }, - get children(){ return EventCreateNestedManyWithoutParentInputObjectSchema.optional(); }, - get contest(){ return ContestCreateNestedOneWithoutEventsInputObjectSchema.optional(); }, - get companies(){ return EventCompanyCreateNestedManyWithoutEventInputObjectSchema.optional(); }, - get hostingGroups(){ return EventHostingGroupCreateNestedManyWithoutEventInputObjectSchema.optional(); }, - get deregisterReasons(){ return DeregisterReasonCreateNestedManyWithoutEventInputObjectSchema.optional(); } -}).strict(); -export const EventCreateWithoutParentInputObjectSchema: z.ZodType = z.lazy(__makeSchema_EventCreateWithoutParentInput_schema) as unknown as z.ZodType; -export const EventCreateWithoutParentInputObjectZodSchema = z.lazy(__makeSchema_EventCreateWithoutParentInput_schema); - - -// File: EventUncheckedCreateWithoutParentInput.schema.ts -const __makeSchema_EventUncheckedCreateWithoutParentInput_schema = () => z.object({ - id: z.string().optional(), - title: z.string(), - start: z.coerce.date(), - end: z.coerce.date(), - status: EventStatusSchema, - description: z.string(), - shortDescription: z.string().optional().nullable(), - imageUrl: z.string().optional().nullable(), - locationTitle: z.string().optional().nullable(), - locationAddress: z.string().optional().nullable(), - locationLink: z.string().optional().nullable(), - type: EventTypeSchema, - markForMissedAttendance: z.boolean().optional(), - createdAt: z.coerce.date().optional(), - updatedAt: z.coerce.date().optional(), - attendanceId: z.string().optional().nullable(), - contestId: z.string().optional().nullable(), - metadataImportId: z.number().int().optional().nullable(), - get feedbackForm(){ return FeedbackFormUncheckedCreateNestedOneWithoutEventInputObjectSchema.optional(); }, - get fadderuke(){ return FadderukeUncheckedCreateNestedOneWithoutEventInputObjectSchema.optional(); }, - get children(){ return EventUncheckedCreateNestedManyWithoutParentInputObjectSchema.optional(); }, - get companies(){ return EventCompanyUncheckedCreateNestedManyWithoutEventInputObjectSchema.optional(); }, - get hostingGroups(){ return EventHostingGroupUncheckedCreateNestedManyWithoutEventInputObjectSchema.optional(); }, - get deregisterReasons(){ return DeregisterReasonUncheckedCreateNestedManyWithoutEventInputObjectSchema.optional(); } -}).strict(); -export const EventUncheckedCreateWithoutParentInputObjectSchema: z.ZodType = z.lazy(__makeSchema_EventUncheckedCreateWithoutParentInput_schema) as unknown as z.ZodType; -export const EventUncheckedCreateWithoutParentInputObjectZodSchema = z.lazy(__makeSchema_EventUncheckedCreateWithoutParentInput_schema); - - -// File: EventCreateOrConnectWithoutParentInput.schema.ts -const __makeSchema_EventCreateOrConnectWithoutParentInput_schema = () => z.object({ - get where(){ return EventWhereUniqueInputObjectSchema; }, - create: z.union([EventCreateWithoutParentInputObjectSchema, EventUncheckedCreateWithoutParentInputObjectSchema]) -}).strict(); -export const EventCreateOrConnectWithoutParentInputObjectSchema: z.ZodType = z.lazy(__makeSchema_EventCreateOrConnectWithoutParentInput_schema) as unknown as z.ZodType; -export const EventCreateOrConnectWithoutParentInputObjectZodSchema = z.lazy(__makeSchema_EventCreateOrConnectWithoutParentInput_schema); - - -// File: EventCreateManyParentInputEnvelope.schema.ts -const __makeSchema_EventCreateManyParentInputEnvelope_schema = () => z.object({ - data: z.union([EventCreateManyParentInputObjectSchema, EventCreateManyParentInputObjectSchema.array()]), - skipDuplicates: z.boolean().optional() -}).strict(); -export const EventCreateManyParentInputEnvelopeObjectSchema: z.ZodType = z.lazy(__makeSchema_EventCreateManyParentInputEnvelope_schema) as unknown as z.ZodType; -export const EventCreateManyParentInputEnvelopeObjectZodSchema = z.lazy(__makeSchema_EventCreateManyParentInputEnvelope_schema); - - -// File: ContestCreateWithoutEventsInput.schema.ts -const __makeSchema_ContestCreateWithoutEventsInput_schema = () => z.object({ - id: z.string().optional(), - name: z.string(), - description: z.string().optional().nullable(), - startDate: z.coerce.date().optional().nullable(), - resultType: ContestResultTypeSchema, - resultOrder: ContestResultOrderSchema, - get winnerContestant(){ return ContestantCreateNestedOneWithoutWonContestInputObjectSchema.optional(); }, - get contestants(){ return ContestantCreateNestedManyWithoutContestInputObjectSchema.optional(); }, - get groups(){ return GroupCreateNestedManyWithoutContestsInputObjectSchema.optional(); } -}).strict(); -export const ContestCreateWithoutEventsInputObjectSchema: z.ZodType = z.lazy(__makeSchema_ContestCreateWithoutEventsInput_schema) as unknown as z.ZodType; -export const ContestCreateWithoutEventsInputObjectZodSchema = z.lazy(__makeSchema_ContestCreateWithoutEventsInput_schema); - - -// File: ContestUncheckedCreateWithoutEventsInput.schema.ts -const __makeSchema_ContestUncheckedCreateWithoutEventsInput_schema = () => z.object({ - id: z.string().optional(), - name: z.string(), - description: z.string().optional().nullable(), - startDate: z.coerce.date().optional().nullable(), - resultType: ContestResultTypeSchema, - resultOrder: ContestResultOrderSchema, - winnerContestantId: z.string().optional().nullable(), - get contestants(){ return ContestantUncheckedCreateNestedManyWithoutContestInputObjectSchema.optional(); }, - get groups(){ return GroupUncheckedCreateNestedManyWithoutContestsInputObjectSchema.optional(); } -}).strict(); -export const ContestUncheckedCreateWithoutEventsInputObjectSchema: z.ZodType = z.lazy(__makeSchema_ContestUncheckedCreateWithoutEventsInput_schema) as unknown as z.ZodType; -export const ContestUncheckedCreateWithoutEventsInputObjectZodSchema = z.lazy(__makeSchema_ContestUncheckedCreateWithoutEventsInput_schema); - - -// File: ContestCreateOrConnectWithoutEventsInput.schema.ts -const __makeSchema_ContestCreateOrConnectWithoutEventsInput_schema = () => z.object({ - get where(){ return ContestWhereUniqueInputObjectSchema; }, - create: z.union([ContestCreateWithoutEventsInputObjectSchema, ContestUncheckedCreateWithoutEventsInputObjectSchema]) -}).strict(); -export const ContestCreateOrConnectWithoutEventsInputObjectSchema: z.ZodType = z.lazy(__makeSchema_ContestCreateOrConnectWithoutEventsInput_schema) as unknown as z.ZodType; -export const ContestCreateOrConnectWithoutEventsInputObjectZodSchema = z.lazy(__makeSchema_ContestCreateOrConnectWithoutEventsInput_schema); - - -// File: EventCompanyCreateWithoutEventInput.schema.ts -const __makeSchema_EventCompanyCreateWithoutEventInput_schema = () => z.object({ - get company(){ return CompanyCreateNestedOneWithoutEventsInputObjectSchema; } -}).strict(); -export const EventCompanyCreateWithoutEventInputObjectSchema: z.ZodType = z.lazy(__makeSchema_EventCompanyCreateWithoutEventInput_schema) as unknown as z.ZodType; -export const EventCompanyCreateWithoutEventInputObjectZodSchema = z.lazy(__makeSchema_EventCompanyCreateWithoutEventInput_schema); - - -// File: EventCompanyUncheckedCreateWithoutEventInput.schema.ts -const __makeSchema_EventCompanyUncheckedCreateWithoutEventInput_schema = () => z.object({ - companyId: z.string() -}).strict(); -export const EventCompanyUncheckedCreateWithoutEventInputObjectSchema: z.ZodType = z.lazy(__makeSchema_EventCompanyUncheckedCreateWithoutEventInput_schema) as unknown as z.ZodType; -export const EventCompanyUncheckedCreateWithoutEventInputObjectZodSchema = z.lazy(__makeSchema_EventCompanyUncheckedCreateWithoutEventInput_schema); - - -// File: EventCompanyCreateOrConnectWithoutEventInput.schema.ts -const __makeSchema_EventCompanyCreateOrConnectWithoutEventInput_schema = () => z.object({ - get where(){ return EventCompanyWhereUniqueInputObjectSchema; }, - create: z.union([EventCompanyCreateWithoutEventInputObjectSchema, EventCompanyUncheckedCreateWithoutEventInputObjectSchema]) -}).strict(); -export const EventCompanyCreateOrConnectWithoutEventInputObjectSchema: z.ZodType = z.lazy(__makeSchema_EventCompanyCreateOrConnectWithoutEventInput_schema) as unknown as z.ZodType; -export const EventCompanyCreateOrConnectWithoutEventInputObjectZodSchema = z.lazy(__makeSchema_EventCompanyCreateOrConnectWithoutEventInput_schema); - - -// File: EventCompanyCreateManyEventInputEnvelope.schema.ts -const __makeSchema_EventCompanyCreateManyEventInputEnvelope_schema = () => z.object({ - data: z.union([EventCompanyCreateManyEventInputObjectSchema, EventCompanyCreateManyEventInputObjectSchema.array()]), - skipDuplicates: z.boolean().optional() -}).strict(); -export const EventCompanyCreateManyEventInputEnvelopeObjectSchema: z.ZodType = z.lazy(__makeSchema_EventCompanyCreateManyEventInputEnvelope_schema) as unknown as z.ZodType; -export const EventCompanyCreateManyEventInputEnvelopeObjectZodSchema = z.lazy(__makeSchema_EventCompanyCreateManyEventInputEnvelope_schema); - - -// File: EventHostingGroupCreateWithoutEventInput.schema.ts -const __makeSchema_EventHostingGroupCreateWithoutEventInput_schema = () => z.object({ - get group(){ return GroupCreateNestedOneWithoutEventsInputObjectSchema; } -}).strict(); -export const EventHostingGroupCreateWithoutEventInputObjectSchema: z.ZodType = z.lazy(__makeSchema_EventHostingGroupCreateWithoutEventInput_schema) as unknown as z.ZodType; -export const EventHostingGroupCreateWithoutEventInputObjectZodSchema = z.lazy(__makeSchema_EventHostingGroupCreateWithoutEventInput_schema); - - -// File: EventHostingGroupUncheckedCreateWithoutEventInput.schema.ts -const __makeSchema_EventHostingGroupUncheckedCreateWithoutEventInput_schema = () => z.object({ - groupId: z.string() -}).strict(); -export const EventHostingGroupUncheckedCreateWithoutEventInputObjectSchema: z.ZodType = z.lazy(__makeSchema_EventHostingGroupUncheckedCreateWithoutEventInput_schema) as unknown as z.ZodType; -export const EventHostingGroupUncheckedCreateWithoutEventInputObjectZodSchema = z.lazy(__makeSchema_EventHostingGroupUncheckedCreateWithoutEventInput_schema); - - -// File: EventHostingGroupCreateOrConnectWithoutEventInput.schema.ts -const __makeSchema_EventHostingGroupCreateOrConnectWithoutEventInput_schema = () => z.object({ - get where(){ return EventHostingGroupWhereUniqueInputObjectSchema; }, - create: z.union([EventHostingGroupCreateWithoutEventInputObjectSchema, EventHostingGroupUncheckedCreateWithoutEventInputObjectSchema]) -}).strict(); -export const EventHostingGroupCreateOrConnectWithoutEventInputObjectSchema: z.ZodType = z.lazy(__makeSchema_EventHostingGroupCreateOrConnectWithoutEventInput_schema) as unknown as z.ZodType; -export const EventHostingGroupCreateOrConnectWithoutEventInputObjectZodSchema = z.lazy(__makeSchema_EventHostingGroupCreateOrConnectWithoutEventInput_schema); - - -// File: EventHostingGroupCreateManyEventInputEnvelope.schema.ts -const __makeSchema_EventHostingGroupCreateManyEventInputEnvelope_schema = () => z.object({ - data: z.union([EventHostingGroupCreateManyEventInputObjectSchema, EventHostingGroupCreateManyEventInputObjectSchema.array()]), - skipDuplicates: z.boolean().optional() -}).strict(); -export const EventHostingGroupCreateManyEventInputEnvelopeObjectSchema: z.ZodType = z.lazy(__makeSchema_EventHostingGroupCreateManyEventInputEnvelope_schema) as unknown as z.ZodType; -export const EventHostingGroupCreateManyEventInputEnvelopeObjectZodSchema = z.lazy(__makeSchema_EventHostingGroupCreateManyEventInputEnvelope_schema); - - -// File: DeregisterReasonCreateWithoutEventInput.schema.ts -const __makeSchema_DeregisterReasonCreateWithoutEventInput_schema = () => z.object({ - id: z.string().optional(), - createdAt: z.coerce.date().optional(), - registeredAt: z.coerce.date(), - type: DeregisterReasonTypeSchema, - details: z.string().optional().nullable(), - userGrade: z.number().int().optional().nullable(), - get user(){ return UserCreateNestedOneWithoutDeregisterReasonsInputObjectSchema; } -}).strict(); -export const DeregisterReasonCreateWithoutEventInputObjectSchema: z.ZodType = z.lazy(__makeSchema_DeregisterReasonCreateWithoutEventInput_schema) as unknown as z.ZodType; -export const DeregisterReasonCreateWithoutEventInputObjectZodSchema = z.lazy(__makeSchema_DeregisterReasonCreateWithoutEventInput_schema); - - -// File: DeregisterReasonUncheckedCreateWithoutEventInput.schema.ts -const __makeSchema_DeregisterReasonUncheckedCreateWithoutEventInput_schema = () => z.object({ - id: z.string().optional(), - createdAt: z.coerce.date().optional(), - registeredAt: z.coerce.date(), - type: DeregisterReasonTypeSchema, - details: z.string().optional().nullable(), - userGrade: z.number().int().optional().nullable(), - userId: z.string() -}).strict(); -export const DeregisterReasonUncheckedCreateWithoutEventInputObjectSchema: z.ZodType = z.lazy(__makeSchema_DeregisterReasonUncheckedCreateWithoutEventInput_schema) as unknown as z.ZodType; -export const DeregisterReasonUncheckedCreateWithoutEventInputObjectZodSchema = z.lazy(__makeSchema_DeregisterReasonUncheckedCreateWithoutEventInput_schema); - - -// File: DeregisterReasonCreateOrConnectWithoutEventInput.schema.ts -const __makeSchema_DeregisterReasonCreateOrConnectWithoutEventInput_schema = () => z.object({ - get where(){ return DeregisterReasonWhereUniqueInputObjectSchema; }, - create: z.union([DeregisterReasonCreateWithoutEventInputObjectSchema, DeregisterReasonUncheckedCreateWithoutEventInputObjectSchema]) -}).strict(); -export const DeregisterReasonCreateOrConnectWithoutEventInputObjectSchema: z.ZodType = z.lazy(__makeSchema_DeregisterReasonCreateOrConnectWithoutEventInput_schema) as unknown as z.ZodType; -export const DeregisterReasonCreateOrConnectWithoutEventInputObjectZodSchema = z.lazy(__makeSchema_DeregisterReasonCreateOrConnectWithoutEventInput_schema); - - -// File: DeregisterReasonCreateManyEventInputEnvelope.schema.ts -const __makeSchema_DeregisterReasonCreateManyEventInputEnvelope_schema = () => z.object({ - data: z.union([DeregisterReasonCreateManyEventInputObjectSchema, DeregisterReasonCreateManyEventInputObjectSchema.array()]), - skipDuplicates: z.boolean().optional() -}).strict(); -export const DeregisterReasonCreateManyEventInputEnvelopeObjectSchema: z.ZodType = z.lazy(__makeSchema_DeregisterReasonCreateManyEventInputEnvelope_schema) as unknown as z.ZodType; -export const DeregisterReasonCreateManyEventInputEnvelopeObjectZodSchema = z.lazy(__makeSchema_DeregisterReasonCreateManyEventInputEnvelope_schema); - - -// File: FeedbackFormUpsertWithoutEventInput.schema.ts -const __makeSchema_FeedbackFormUpsertWithoutEventInput_schema = () => z.object({ - update: z.union([FeedbackFormUpdateWithoutEventInputObjectSchema, FeedbackFormUncheckedUpdateWithoutEventInputObjectSchema]), - create: z.union([FeedbackFormCreateWithoutEventInputObjectSchema, FeedbackFormUncheckedCreateWithoutEventInputObjectSchema]), - get where(){ return FeedbackFormWhereInputObjectSchema.optional(); } -}).strict(); -export const FeedbackFormUpsertWithoutEventInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackFormUpsertWithoutEventInput_schema) as unknown as z.ZodType; -export const FeedbackFormUpsertWithoutEventInputObjectZodSchema = z.lazy(__makeSchema_FeedbackFormUpsertWithoutEventInput_schema); - - -// File: FeedbackFormUpdateToOneWithWhereWithoutEventInput.schema.ts -const __makeSchema_FeedbackFormUpdateToOneWithWhereWithoutEventInput_schema = () => z.object({ - get where(){ return FeedbackFormWhereInputObjectSchema.optional(); }, - data: z.union([FeedbackFormUpdateWithoutEventInputObjectSchema, FeedbackFormUncheckedUpdateWithoutEventInputObjectSchema]) -}).strict(); -export const FeedbackFormUpdateToOneWithWhereWithoutEventInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackFormUpdateToOneWithWhereWithoutEventInput_schema) as unknown as z.ZodType; -export const FeedbackFormUpdateToOneWithWhereWithoutEventInputObjectZodSchema = z.lazy(__makeSchema_FeedbackFormUpdateToOneWithWhereWithoutEventInput_schema); - - -// File: FeedbackFormUpdateWithoutEventInput.schema.ts -const __makeSchema_FeedbackFormUpdateWithoutEventInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - publicResultsToken: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - createdAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - updatedAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - answerDeadline: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - get questions(){ return FeedbackQuestionUpdateManyWithoutFeedbackFormNestedInputObjectSchema.optional(); }, - get answers(){ return FeedbackFormAnswerUpdateManyWithoutFeedbackFormNestedInputObjectSchema.optional(); } -}).strict(); -export const FeedbackFormUpdateWithoutEventInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackFormUpdateWithoutEventInput_schema) as unknown as z.ZodType; -export const FeedbackFormUpdateWithoutEventInputObjectZodSchema = z.lazy(__makeSchema_FeedbackFormUpdateWithoutEventInput_schema); - - -// File: FeedbackFormUncheckedUpdateWithoutEventInput.schema.ts -const __makeSchema_FeedbackFormUncheckedUpdateWithoutEventInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - publicResultsToken: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - createdAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - updatedAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - answerDeadline: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - get questions(){ return FeedbackQuestionUncheckedUpdateManyWithoutFeedbackFormNestedInputObjectSchema.optional(); }, - get answers(){ return FeedbackFormAnswerUncheckedUpdateManyWithoutFeedbackFormNestedInputObjectSchema.optional(); } -}).strict(); -export const FeedbackFormUncheckedUpdateWithoutEventInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackFormUncheckedUpdateWithoutEventInput_schema) as unknown as z.ZodType; -export const FeedbackFormUncheckedUpdateWithoutEventInputObjectZodSchema = z.lazy(__makeSchema_FeedbackFormUncheckedUpdateWithoutEventInput_schema); - - -// File: FadderukeUpsertWithoutEventInput.schema.ts -const __makeSchema_FadderukeUpsertWithoutEventInput_schema = () => z.object({ - update: z.union([FadderukeUpdateWithoutEventInputObjectSchema, FadderukeUncheckedUpdateWithoutEventInputObjectSchema]), - create: z.union([FadderukeCreateWithoutEventInputObjectSchema, FadderukeUncheckedCreateWithoutEventInputObjectSchema]), - get where(){ return FadderukeWhereInputObjectSchema.optional(); } -}).strict(); -export const FadderukeUpsertWithoutEventInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FadderukeUpsertWithoutEventInput_schema) as unknown as z.ZodType; -export const FadderukeUpsertWithoutEventInputObjectZodSchema = z.lazy(__makeSchema_FadderukeUpsertWithoutEventInput_schema); - - -// File: FadderukeUpdateToOneWithWhereWithoutEventInput.schema.ts -const __makeSchema_FadderukeUpdateToOneWithWhereWithoutEventInput_schema = () => z.object({ - get where(){ return FadderukeWhereInputObjectSchema.optional(); }, - data: z.union([FadderukeUpdateWithoutEventInputObjectSchema, FadderukeUncheckedUpdateWithoutEventInputObjectSchema]) -}).strict(); -export const FadderukeUpdateToOneWithWhereWithoutEventInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FadderukeUpdateToOneWithWhereWithoutEventInput_schema) as unknown as z.ZodType; -export const FadderukeUpdateToOneWithWhereWithoutEventInputObjectZodSchema = z.lazy(__makeSchema_FadderukeUpdateToOneWithWhereWithoutEventInput_schema); - - -// File: FadderukeUpdateWithoutEventInput.schema.ts -const __makeSchema_FadderukeUpdateWithoutEventInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - year: z.union([z.number().int(), IntFieldUpdateOperationsInputObjectSchema]).optional(), - createdAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - updatedAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional() -}).strict(); -export const FadderukeUpdateWithoutEventInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FadderukeUpdateWithoutEventInput_schema) as unknown as z.ZodType; -export const FadderukeUpdateWithoutEventInputObjectZodSchema = z.lazy(__makeSchema_FadderukeUpdateWithoutEventInput_schema); - - -// File: FadderukeUncheckedUpdateWithoutEventInput.schema.ts -const __makeSchema_FadderukeUncheckedUpdateWithoutEventInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - year: z.union([z.number().int(), IntFieldUpdateOperationsInputObjectSchema]).optional(), - createdAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - updatedAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional() -}).strict(); -export const FadderukeUncheckedUpdateWithoutEventInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FadderukeUncheckedUpdateWithoutEventInput_schema) as unknown as z.ZodType; -export const FadderukeUncheckedUpdateWithoutEventInputObjectZodSchema = z.lazy(__makeSchema_FadderukeUncheckedUpdateWithoutEventInput_schema); - - -// File: AttendanceUpsertWithoutEventsInput.schema.ts -const __makeSchema_AttendanceUpsertWithoutEventsInput_schema = () => z.object({ - update: z.union([AttendanceUpdateWithoutEventsInputObjectSchema, AttendanceUncheckedUpdateWithoutEventsInputObjectSchema]), - create: z.union([AttendanceCreateWithoutEventsInputObjectSchema, AttendanceUncheckedCreateWithoutEventsInputObjectSchema]), - get where(){ return AttendanceWhereInputObjectSchema.optional(); } -}).strict(); -export const AttendanceUpsertWithoutEventsInputObjectSchema: z.ZodType = z.lazy(__makeSchema_AttendanceUpsertWithoutEventsInput_schema) as unknown as z.ZodType; -export const AttendanceUpsertWithoutEventsInputObjectZodSchema = z.lazy(__makeSchema_AttendanceUpsertWithoutEventsInput_schema); - - -// File: AttendanceUpdateToOneWithWhereWithoutEventsInput.schema.ts -const __makeSchema_AttendanceUpdateToOneWithWhereWithoutEventsInput_schema = () => z.object({ - get where(){ return AttendanceWhereInputObjectSchema.optional(); }, - data: z.union([AttendanceUpdateWithoutEventsInputObjectSchema, AttendanceUncheckedUpdateWithoutEventsInputObjectSchema]) -}).strict(); -export const AttendanceUpdateToOneWithWhereWithoutEventsInputObjectSchema: z.ZodType = z.lazy(__makeSchema_AttendanceUpdateToOneWithWhereWithoutEventsInput_schema) as unknown as z.ZodType; -export const AttendanceUpdateToOneWithWhereWithoutEventsInputObjectZodSchema = z.lazy(__makeSchema_AttendanceUpdateToOneWithWhereWithoutEventsInput_schema); - - -// File: AttendanceUpdateWithoutEventsInput.schema.ts -const __makeSchema_AttendanceUpdateWithoutEventsInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - registerStart: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - registerEnd: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - deregisterDeadline: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - selections: z.union([JsonNullValueInputSchema, jsonSchema]).optional(), - createdAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - updatedAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - attendancePrice: z.union([z.number().int(), NullableIntFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - get pools(){ return AttendancePoolUpdateManyWithoutAttendanceNestedInputObjectSchema.optional(); }, - get attendees(){ return AttendeeUpdateManyWithoutAttendanceNestedInputObjectSchema.optional(); } -}).strict(); -export const AttendanceUpdateWithoutEventsInputObjectSchema: z.ZodType = z.lazy(__makeSchema_AttendanceUpdateWithoutEventsInput_schema) as unknown as z.ZodType; -export const AttendanceUpdateWithoutEventsInputObjectZodSchema = z.lazy(__makeSchema_AttendanceUpdateWithoutEventsInput_schema); - - -// File: AttendanceUncheckedUpdateWithoutEventsInput.schema.ts -const __makeSchema_AttendanceUncheckedUpdateWithoutEventsInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - registerStart: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - registerEnd: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - deregisterDeadline: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - selections: z.union([JsonNullValueInputSchema, jsonSchema]).optional(), - createdAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - updatedAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - attendancePrice: z.union([z.number().int(), NullableIntFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - get pools(){ return AttendancePoolUncheckedUpdateManyWithoutAttendanceNestedInputObjectSchema.optional(); }, - get attendees(){ return AttendeeUncheckedUpdateManyWithoutAttendanceNestedInputObjectSchema.optional(); } -}).strict(); -export const AttendanceUncheckedUpdateWithoutEventsInputObjectSchema: z.ZodType = z.lazy(__makeSchema_AttendanceUncheckedUpdateWithoutEventsInput_schema) as unknown as z.ZodType; -export const AttendanceUncheckedUpdateWithoutEventsInputObjectZodSchema = z.lazy(__makeSchema_AttendanceUncheckedUpdateWithoutEventsInput_schema); - - -// File: EventUpsertWithoutChildrenInput.schema.ts -const __makeSchema_EventUpsertWithoutChildrenInput_schema = () => z.object({ - update: z.union([EventUpdateWithoutChildrenInputObjectSchema, EventUncheckedUpdateWithoutChildrenInputObjectSchema]), - create: z.union([EventCreateWithoutChildrenInputObjectSchema, EventUncheckedCreateWithoutChildrenInputObjectSchema]), - get where(){ return EventWhereInputObjectSchema.optional(); } -}).strict(); -export const EventUpsertWithoutChildrenInputObjectSchema: z.ZodType = z.lazy(__makeSchema_EventUpsertWithoutChildrenInput_schema) as unknown as z.ZodType; -export const EventUpsertWithoutChildrenInputObjectZodSchema = z.lazy(__makeSchema_EventUpsertWithoutChildrenInput_schema); - - -// File: EventUpdateToOneWithWhereWithoutChildrenInput.schema.ts -const __makeSchema_EventUpdateToOneWithWhereWithoutChildrenInput_schema = () => z.object({ - get where(){ return EventWhereInputObjectSchema.optional(); }, - data: z.union([EventUpdateWithoutChildrenInputObjectSchema, EventUncheckedUpdateWithoutChildrenInputObjectSchema]) -}).strict(); -export const EventUpdateToOneWithWhereWithoutChildrenInputObjectSchema: z.ZodType = z.lazy(__makeSchema_EventUpdateToOneWithWhereWithoutChildrenInput_schema) as unknown as z.ZodType; -export const EventUpdateToOneWithWhereWithoutChildrenInputObjectZodSchema = z.lazy(__makeSchema_EventUpdateToOneWithWhereWithoutChildrenInput_schema); - - -// File: EventUpdateWithoutChildrenInput.schema.ts -const __makeSchema_EventUpdateWithoutChildrenInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - title: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - start: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - end: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - status: z.union([EventStatusSchema, EnumEventStatusFieldUpdateOperationsInputObjectSchema]).optional(), - description: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - shortDescription: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - imageUrl: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - locationTitle: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - locationAddress: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - locationLink: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - type: z.union([EventTypeSchema, EnumEventTypeFieldUpdateOperationsInputObjectSchema]).optional(), - markForMissedAttendance: z.union([z.boolean(), BoolFieldUpdateOperationsInputObjectSchema]).optional(), - createdAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - updatedAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - metadataImportId: z.union([z.number().int(), NullableIntFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - get feedbackForm(){ return FeedbackFormUpdateOneWithoutEventNestedInputObjectSchema.optional(); }, - get fadderuke(){ return FadderukeUpdateOneWithoutEventNestedInputObjectSchema.optional(); }, - get attendance(){ return AttendanceUpdateOneWithoutEventsNestedInputObjectSchema.optional(); }, - get parent(){ return EventUpdateOneWithoutChildrenNestedInputObjectSchema.optional(); }, - get contest(){ return ContestUpdateOneWithoutEventsNestedInputObjectSchema.optional(); }, - get companies(){ return EventCompanyUpdateManyWithoutEventNestedInputObjectSchema.optional(); }, - get hostingGroups(){ return EventHostingGroupUpdateManyWithoutEventNestedInputObjectSchema.optional(); }, - get deregisterReasons(){ return DeregisterReasonUpdateManyWithoutEventNestedInputObjectSchema.optional(); } -}).strict(); -export const EventUpdateWithoutChildrenInputObjectSchema: z.ZodType = z.lazy(__makeSchema_EventUpdateWithoutChildrenInput_schema) as unknown as z.ZodType; -export const EventUpdateWithoutChildrenInputObjectZodSchema = z.lazy(__makeSchema_EventUpdateWithoutChildrenInput_schema); - - -// File: EventUncheckedUpdateWithoutChildrenInput.schema.ts -const __makeSchema_EventUncheckedUpdateWithoutChildrenInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - title: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - start: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - end: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - status: z.union([EventStatusSchema, EnumEventStatusFieldUpdateOperationsInputObjectSchema]).optional(), - description: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - shortDescription: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - imageUrl: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - locationTitle: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - locationAddress: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - locationLink: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - type: z.union([EventTypeSchema, EnumEventTypeFieldUpdateOperationsInputObjectSchema]).optional(), - markForMissedAttendance: z.union([z.boolean(), BoolFieldUpdateOperationsInputObjectSchema]).optional(), - createdAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - updatedAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - attendanceId: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - parentId: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - contestId: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - metadataImportId: z.union([z.number().int(), NullableIntFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - get feedbackForm(){ return FeedbackFormUncheckedUpdateOneWithoutEventNestedInputObjectSchema.optional(); }, - get fadderuke(){ return FadderukeUncheckedUpdateOneWithoutEventNestedInputObjectSchema.optional(); }, - get companies(){ return EventCompanyUncheckedUpdateManyWithoutEventNestedInputObjectSchema.optional(); }, - get hostingGroups(){ return EventHostingGroupUncheckedUpdateManyWithoutEventNestedInputObjectSchema.optional(); }, - get deregisterReasons(){ return DeregisterReasonUncheckedUpdateManyWithoutEventNestedInputObjectSchema.optional(); } -}).strict(); -export const EventUncheckedUpdateWithoutChildrenInputObjectSchema: z.ZodType = z.lazy(__makeSchema_EventUncheckedUpdateWithoutChildrenInput_schema) as unknown as z.ZodType; -export const EventUncheckedUpdateWithoutChildrenInputObjectZodSchema = z.lazy(__makeSchema_EventUncheckedUpdateWithoutChildrenInput_schema); - - -// File: EventUpsertWithWhereUniqueWithoutParentInput.schema.ts -const __makeSchema_EventUpsertWithWhereUniqueWithoutParentInput_schema = () => z.object({ - get where(){ return EventWhereUniqueInputObjectSchema; }, - update: z.union([EventUpdateWithoutParentInputObjectSchema, EventUncheckedUpdateWithoutParentInputObjectSchema]), - create: z.union([EventCreateWithoutParentInputObjectSchema, EventUncheckedCreateWithoutParentInputObjectSchema]) -}).strict(); -export const EventUpsertWithWhereUniqueWithoutParentInputObjectSchema: z.ZodType = z.lazy(__makeSchema_EventUpsertWithWhereUniqueWithoutParentInput_schema) as unknown as z.ZodType; -export const EventUpsertWithWhereUniqueWithoutParentInputObjectZodSchema = z.lazy(__makeSchema_EventUpsertWithWhereUniqueWithoutParentInput_schema); - - -// File: EventUpdateWithWhereUniqueWithoutParentInput.schema.ts -const __makeSchema_EventUpdateWithWhereUniqueWithoutParentInput_schema = () => z.object({ - get where(){ return EventWhereUniqueInputObjectSchema; }, - data: z.union([EventUpdateWithoutParentInputObjectSchema, EventUncheckedUpdateWithoutParentInputObjectSchema]) -}).strict(); -export const EventUpdateWithWhereUniqueWithoutParentInputObjectSchema: z.ZodType = z.lazy(__makeSchema_EventUpdateWithWhereUniqueWithoutParentInput_schema) as unknown as z.ZodType; -export const EventUpdateWithWhereUniqueWithoutParentInputObjectZodSchema = z.lazy(__makeSchema_EventUpdateWithWhereUniqueWithoutParentInput_schema); - - -// File: EventUpdateManyWithWhereWithoutParentInput.schema.ts -const __makeSchema_EventUpdateManyWithWhereWithoutParentInput_schema = () => z.object({ - get where(){ return EventScalarWhereInputObjectSchema; }, - data: z.union([EventUpdateManyMutationInputObjectSchema, EventUncheckedUpdateManyWithoutParentInputObjectSchema]) -}).strict(); -export const EventUpdateManyWithWhereWithoutParentInputObjectSchema: z.ZodType = z.lazy(__makeSchema_EventUpdateManyWithWhereWithoutParentInput_schema) as unknown as z.ZodType; -export const EventUpdateManyWithWhereWithoutParentInputObjectZodSchema = z.lazy(__makeSchema_EventUpdateManyWithWhereWithoutParentInput_schema); - - -// File: ContestUpsertWithoutEventsInput.schema.ts -const __makeSchema_ContestUpsertWithoutEventsInput_schema = () => z.object({ - update: z.union([ContestUpdateWithoutEventsInputObjectSchema, ContestUncheckedUpdateWithoutEventsInputObjectSchema]), - create: z.union([ContestCreateWithoutEventsInputObjectSchema, ContestUncheckedCreateWithoutEventsInputObjectSchema]), - get where(){ return ContestWhereInputObjectSchema.optional(); } -}).strict(); -export const ContestUpsertWithoutEventsInputObjectSchema: z.ZodType = z.lazy(__makeSchema_ContestUpsertWithoutEventsInput_schema) as unknown as z.ZodType; -export const ContestUpsertWithoutEventsInputObjectZodSchema = z.lazy(__makeSchema_ContestUpsertWithoutEventsInput_schema); - - -// File: ContestUpdateToOneWithWhereWithoutEventsInput.schema.ts -const __makeSchema_ContestUpdateToOneWithWhereWithoutEventsInput_schema = () => z.object({ - get where(){ return ContestWhereInputObjectSchema.optional(); }, - data: z.union([ContestUpdateWithoutEventsInputObjectSchema, ContestUncheckedUpdateWithoutEventsInputObjectSchema]) -}).strict(); -export const ContestUpdateToOneWithWhereWithoutEventsInputObjectSchema: z.ZodType = z.lazy(__makeSchema_ContestUpdateToOneWithWhereWithoutEventsInput_schema) as unknown as z.ZodType; -export const ContestUpdateToOneWithWhereWithoutEventsInputObjectZodSchema = z.lazy(__makeSchema_ContestUpdateToOneWithWhereWithoutEventsInput_schema); - - -// File: ContestUpdateWithoutEventsInput.schema.ts -const __makeSchema_ContestUpdateWithoutEventsInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - name: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - description: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - startDate: z.union([z.coerce.date(), NullableDateTimeFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - resultType: z.union([ContestResultTypeSchema, EnumContestResultTypeFieldUpdateOperationsInputObjectSchema]).optional(), - resultOrder: z.union([ContestResultOrderSchema, EnumContestResultOrderFieldUpdateOperationsInputObjectSchema]).optional(), - get winnerContestant(){ return ContestantUpdateOneWithoutWonContestNestedInputObjectSchema.optional(); }, - get contestants(){ return ContestantUpdateManyWithoutContestNestedInputObjectSchema.optional(); }, - get groups(){ return GroupUpdateManyWithoutContestsNestedInputObjectSchema.optional(); } -}).strict(); -export const ContestUpdateWithoutEventsInputObjectSchema: z.ZodType = z.lazy(__makeSchema_ContestUpdateWithoutEventsInput_schema) as unknown as z.ZodType; -export const ContestUpdateWithoutEventsInputObjectZodSchema = z.lazy(__makeSchema_ContestUpdateWithoutEventsInput_schema); - - -// File: ContestUncheckedUpdateWithoutEventsInput.schema.ts -const __makeSchema_ContestUncheckedUpdateWithoutEventsInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - name: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - description: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - startDate: z.union([z.coerce.date(), NullableDateTimeFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - resultType: z.union([ContestResultTypeSchema, EnumContestResultTypeFieldUpdateOperationsInputObjectSchema]).optional(), - resultOrder: z.union([ContestResultOrderSchema, EnumContestResultOrderFieldUpdateOperationsInputObjectSchema]).optional(), - winnerContestantId: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - get contestants(){ return ContestantUncheckedUpdateManyWithoutContestNestedInputObjectSchema.optional(); }, - get groups(){ return GroupUncheckedUpdateManyWithoutContestsNestedInputObjectSchema.optional(); } -}).strict(); -export const ContestUncheckedUpdateWithoutEventsInputObjectSchema: z.ZodType = z.lazy(__makeSchema_ContestUncheckedUpdateWithoutEventsInput_schema) as unknown as z.ZodType; -export const ContestUncheckedUpdateWithoutEventsInputObjectZodSchema = z.lazy(__makeSchema_ContestUncheckedUpdateWithoutEventsInput_schema); - - -// File: EventCompanyUpsertWithWhereUniqueWithoutEventInput.schema.ts -const __makeSchema_EventCompanyUpsertWithWhereUniqueWithoutEventInput_schema = () => z.object({ - get where(){ return EventCompanyWhereUniqueInputObjectSchema; }, - update: z.union([EventCompanyUpdateWithoutEventInputObjectSchema, EventCompanyUncheckedUpdateWithoutEventInputObjectSchema]), - create: z.union([EventCompanyCreateWithoutEventInputObjectSchema, EventCompanyUncheckedCreateWithoutEventInputObjectSchema]) -}).strict(); -export const EventCompanyUpsertWithWhereUniqueWithoutEventInputObjectSchema: z.ZodType = z.lazy(__makeSchema_EventCompanyUpsertWithWhereUniqueWithoutEventInput_schema) as unknown as z.ZodType; -export const EventCompanyUpsertWithWhereUniqueWithoutEventInputObjectZodSchema = z.lazy(__makeSchema_EventCompanyUpsertWithWhereUniqueWithoutEventInput_schema); - - -// File: EventCompanyUpdateWithWhereUniqueWithoutEventInput.schema.ts -const __makeSchema_EventCompanyUpdateWithWhereUniqueWithoutEventInput_schema = () => z.object({ - get where(){ return EventCompanyWhereUniqueInputObjectSchema; }, - data: z.union([EventCompanyUpdateWithoutEventInputObjectSchema, EventCompanyUncheckedUpdateWithoutEventInputObjectSchema]) -}).strict(); -export const EventCompanyUpdateWithWhereUniqueWithoutEventInputObjectSchema: z.ZodType = z.lazy(__makeSchema_EventCompanyUpdateWithWhereUniqueWithoutEventInput_schema) as unknown as z.ZodType; -export const EventCompanyUpdateWithWhereUniqueWithoutEventInputObjectZodSchema = z.lazy(__makeSchema_EventCompanyUpdateWithWhereUniqueWithoutEventInput_schema); - - -// File: EventCompanyUpdateManyWithWhereWithoutEventInput.schema.ts -const __makeSchema_EventCompanyUpdateManyWithWhereWithoutEventInput_schema = () => z.object({ - get where(){ return EventCompanyScalarWhereInputObjectSchema; }, - data: z.union([EventCompanyUpdateManyMutationInputObjectSchema, EventCompanyUncheckedUpdateManyWithoutEventInputObjectSchema]) -}).strict(); -export const EventCompanyUpdateManyWithWhereWithoutEventInputObjectSchema: z.ZodType = z.lazy(__makeSchema_EventCompanyUpdateManyWithWhereWithoutEventInput_schema) as unknown as z.ZodType; -export const EventCompanyUpdateManyWithWhereWithoutEventInputObjectZodSchema = z.lazy(__makeSchema_EventCompanyUpdateManyWithWhereWithoutEventInput_schema); - - -// File: EventHostingGroupUpsertWithWhereUniqueWithoutEventInput.schema.ts -const __makeSchema_EventHostingGroupUpsertWithWhereUniqueWithoutEventInput_schema = () => z.object({ - get where(){ return EventHostingGroupWhereUniqueInputObjectSchema; }, - update: z.union([EventHostingGroupUpdateWithoutEventInputObjectSchema, EventHostingGroupUncheckedUpdateWithoutEventInputObjectSchema]), - create: z.union([EventHostingGroupCreateWithoutEventInputObjectSchema, EventHostingGroupUncheckedCreateWithoutEventInputObjectSchema]) -}).strict(); -export const EventHostingGroupUpsertWithWhereUniqueWithoutEventInputObjectSchema: z.ZodType = z.lazy(__makeSchema_EventHostingGroupUpsertWithWhereUniqueWithoutEventInput_schema) as unknown as z.ZodType; -export const EventHostingGroupUpsertWithWhereUniqueWithoutEventInputObjectZodSchema = z.lazy(__makeSchema_EventHostingGroupUpsertWithWhereUniqueWithoutEventInput_schema); - - -// File: EventHostingGroupUpdateWithWhereUniqueWithoutEventInput.schema.ts -const __makeSchema_EventHostingGroupUpdateWithWhereUniqueWithoutEventInput_schema = () => z.object({ - get where(){ return EventHostingGroupWhereUniqueInputObjectSchema; }, - data: z.union([EventHostingGroupUpdateWithoutEventInputObjectSchema, EventHostingGroupUncheckedUpdateWithoutEventInputObjectSchema]) -}).strict(); -export const EventHostingGroupUpdateWithWhereUniqueWithoutEventInputObjectSchema: z.ZodType = z.lazy(__makeSchema_EventHostingGroupUpdateWithWhereUniqueWithoutEventInput_schema) as unknown as z.ZodType; -export const EventHostingGroupUpdateWithWhereUniqueWithoutEventInputObjectZodSchema = z.lazy(__makeSchema_EventHostingGroupUpdateWithWhereUniqueWithoutEventInput_schema); - - -// File: EventHostingGroupUpdateManyWithWhereWithoutEventInput.schema.ts -const __makeSchema_EventHostingGroupUpdateManyWithWhereWithoutEventInput_schema = () => z.object({ - get where(){ return EventHostingGroupScalarWhereInputObjectSchema; }, - data: z.union([EventHostingGroupUpdateManyMutationInputObjectSchema, EventHostingGroupUncheckedUpdateManyWithoutEventInputObjectSchema]) -}).strict(); -export const EventHostingGroupUpdateManyWithWhereWithoutEventInputObjectSchema: z.ZodType = z.lazy(__makeSchema_EventHostingGroupUpdateManyWithWhereWithoutEventInput_schema) as unknown as z.ZodType; -export const EventHostingGroupUpdateManyWithWhereWithoutEventInputObjectZodSchema = z.lazy(__makeSchema_EventHostingGroupUpdateManyWithWhereWithoutEventInput_schema); - - -// File: DeregisterReasonUpsertWithWhereUniqueWithoutEventInput.schema.ts -const __makeSchema_DeregisterReasonUpsertWithWhereUniqueWithoutEventInput_schema = () => z.object({ - get where(){ return DeregisterReasonWhereUniqueInputObjectSchema; }, - update: z.union([DeregisterReasonUpdateWithoutEventInputObjectSchema, DeregisterReasonUncheckedUpdateWithoutEventInputObjectSchema]), - create: z.union([DeregisterReasonCreateWithoutEventInputObjectSchema, DeregisterReasonUncheckedCreateWithoutEventInputObjectSchema]) -}).strict(); -export const DeregisterReasonUpsertWithWhereUniqueWithoutEventInputObjectSchema: z.ZodType = z.lazy(__makeSchema_DeregisterReasonUpsertWithWhereUniqueWithoutEventInput_schema) as unknown as z.ZodType; -export const DeregisterReasonUpsertWithWhereUniqueWithoutEventInputObjectZodSchema = z.lazy(__makeSchema_DeregisterReasonUpsertWithWhereUniqueWithoutEventInput_schema); - - -// File: DeregisterReasonUpdateWithWhereUniqueWithoutEventInput.schema.ts -const __makeSchema_DeregisterReasonUpdateWithWhereUniqueWithoutEventInput_schema = () => z.object({ - get where(){ return DeregisterReasonWhereUniqueInputObjectSchema; }, - data: z.union([DeregisterReasonUpdateWithoutEventInputObjectSchema, DeregisterReasonUncheckedUpdateWithoutEventInputObjectSchema]) -}).strict(); -export const DeregisterReasonUpdateWithWhereUniqueWithoutEventInputObjectSchema: z.ZodType = z.lazy(__makeSchema_DeregisterReasonUpdateWithWhereUniqueWithoutEventInput_schema) as unknown as z.ZodType; -export const DeregisterReasonUpdateWithWhereUniqueWithoutEventInputObjectZodSchema = z.lazy(__makeSchema_DeregisterReasonUpdateWithWhereUniqueWithoutEventInput_schema); - - -// File: DeregisterReasonUpdateManyWithWhereWithoutEventInput.schema.ts -const __makeSchema_DeregisterReasonUpdateManyWithWhereWithoutEventInput_schema = () => z.object({ - get where(){ return DeregisterReasonScalarWhereInputObjectSchema; }, - data: z.union([DeregisterReasonUpdateManyMutationInputObjectSchema, DeregisterReasonUncheckedUpdateManyWithoutEventInputObjectSchema]) -}).strict(); -export const DeregisterReasonUpdateManyWithWhereWithoutEventInputObjectSchema: z.ZodType = z.lazy(__makeSchema_DeregisterReasonUpdateManyWithWhereWithoutEventInput_schema) as unknown as z.ZodType; -export const DeregisterReasonUpdateManyWithWhereWithoutEventInputObjectZodSchema = z.lazy(__makeSchema_DeregisterReasonUpdateManyWithWhereWithoutEventInput_schema); - - -// File: EventCreateWithoutCompaniesInput.schema.ts -const __makeSchema_EventCreateWithoutCompaniesInput_schema = () => z.object({ - id: z.string().optional(), - title: z.string(), - start: z.coerce.date(), - end: z.coerce.date(), - status: EventStatusSchema, - description: z.string(), - shortDescription: z.string().optional().nullable(), - imageUrl: z.string().optional().nullable(), - locationTitle: z.string().optional().nullable(), - locationAddress: z.string().optional().nullable(), - locationLink: z.string().optional().nullable(), - type: EventTypeSchema, - markForMissedAttendance: z.boolean().optional(), - createdAt: z.coerce.date().optional(), - updatedAt: z.coerce.date().optional(), - metadataImportId: z.number().int().optional().nullable(), - get feedbackForm(){ return FeedbackFormCreateNestedOneWithoutEventInputObjectSchema.optional(); }, - get fadderuke(){ return FadderukeCreateNestedOneWithoutEventInputObjectSchema.optional(); }, - get attendance(){ return AttendanceCreateNestedOneWithoutEventsInputObjectSchema.optional(); }, - get parent(){ return EventCreateNestedOneWithoutChildrenInputObjectSchema.optional(); }, - get children(){ return EventCreateNestedManyWithoutParentInputObjectSchema.optional(); }, - get contest(){ return ContestCreateNestedOneWithoutEventsInputObjectSchema.optional(); }, - get hostingGroups(){ return EventHostingGroupCreateNestedManyWithoutEventInputObjectSchema.optional(); }, - get deregisterReasons(){ return DeregisterReasonCreateNestedManyWithoutEventInputObjectSchema.optional(); } -}).strict(); -export const EventCreateWithoutCompaniesInputObjectSchema: z.ZodType = z.lazy(__makeSchema_EventCreateWithoutCompaniesInput_schema) as unknown as z.ZodType; -export const EventCreateWithoutCompaniesInputObjectZodSchema = z.lazy(__makeSchema_EventCreateWithoutCompaniesInput_schema); - - -// File: EventUncheckedCreateWithoutCompaniesInput.schema.ts -const __makeSchema_EventUncheckedCreateWithoutCompaniesInput_schema = () => z.object({ - id: z.string().optional(), - title: z.string(), - start: z.coerce.date(), - end: z.coerce.date(), - status: EventStatusSchema, - description: z.string(), - shortDescription: z.string().optional().nullable(), - imageUrl: z.string().optional().nullable(), - locationTitle: z.string().optional().nullable(), - locationAddress: z.string().optional().nullable(), - locationLink: z.string().optional().nullable(), - type: EventTypeSchema, - markForMissedAttendance: z.boolean().optional(), - createdAt: z.coerce.date().optional(), - updatedAt: z.coerce.date().optional(), - attendanceId: z.string().optional().nullable(), - parentId: z.string().optional().nullable(), - contestId: z.string().optional().nullable(), - metadataImportId: z.number().int().optional().nullable(), - get feedbackForm(){ return FeedbackFormUncheckedCreateNestedOneWithoutEventInputObjectSchema.optional(); }, - get fadderuke(){ return FadderukeUncheckedCreateNestedOneWithoutEventInputObjectSchema.optional(); }, - get children(){ return EventUncheckedCreateNestedManyWithoutParentInputObjectSchema.optional(); }, - get hostingGroups(){ return EventHostingGroupUncheckedCreateNestedManyWithoutEventInputObjectSchema.optional(); }, - get deregisterReasons(){ return DeregisterReasonUncheckedCreateNestedManyWithoutEventInputObjectSchema.optional(); } -}).strict(); -export const EventUncheckedCreateWithoutCompaniesInputObjectSchema: z.ZodType = z.lazy(__makeSchema_EventUncheckedCreateWithoutCompaniesInput_schema) as unknown as z.ZodType; -export const EventUncheckedCreateWithoutCompaniesInputObjectZodSchema = z.lazy(__makeSchema_EventUncheckedCreateWithoutCompaniesInput_schema); - - -// File: EventCreateOrConnectWithoutCompaniesInput.schema.ts -const __makeSchema_EventCreateOrConnectWithoutCompaniesInput_schema = () => z.object({ - get where(){ return EventWhereUniqueInputObjectSchema; }, - create: z.union([EventCreateWithoutCompaniesInputObjectSchema, EventUncheckedCreateWithoutCompaniesInputObjectSchema]) -}).strict(); -export const EventCreateOrConnectWithoutCompaniesInputObjectSchema: z.ZodType = z.lazy(__makeSchema_EventCreateOrConnectWithoutCompaniesInput_schema) as unknown as z.ZodType; -export const EventCreateOrConnectWithoutCompaniesInputObjectZodSchema = z.lazy(__makeSchema_EventCreateOrConnectWithoutCompaniesInput_schema); - - -// File: CompanyCreateWithoutEventsInput.schema.ts -const __makeSchema_CompanyCreateWithoutEventsInput_schema = () => z.object({ - id: z.string().optional(), - name: z.string(), - slug: z.string(), - description: z.string().optional().nullable(), - phone: z.string().optional().nullable(), - email: z.string().optional().nullable(), - website: z.string(), - location: z.string().optional().nullable(), - imageUrl: z.string().optional().nullable(), - createdAt: z.coerce.date().optional(), - updatedAt: z.coerce.date().optional(), - get JobListing(){ return JobListingCreateNestedManyWithoutCompanyInputObjectSchema.optional(); } -}).strict(); -export const CompanyCreateWithoutEventsInputObjectSchema: z.ZodType = z.lazy(__makeSchema_CompanyCreateWithoutEventsInput_schema) as unknown as z.ZodType; -export const CompanyCreateWithoutEventsInputObjectZodSchema = z.lazy(__makeSchema_CompanyCreateWithoutEventsInput_schema); - - -// File: CompanyUncheckedCreateWithoutEventsInput.schema.ts -const __makeSchema_CompanyUncheckedCreateWithoutEventsInput_schema = () => z.object({ - id: z.string().optional(), - name: z.string(), - slug: z.string(), - description: z.string().optional().nullable(), - phone: z.string().optional().nullable(), - email: z.string().optional().nullable(), - website: z.string(), - location: z.string().optional().nullable(), - imageUrl: z.string().optional().nullable(), - createdAt: z.coerce.date().optional(), - updatedAt: z.coerce.date().optional(), - get JobListing(){ return JobListingUncheckedCreateNestedManyWithoutCompanyInputObjectSchema.optional(); } -}).strict(); -export const CompanyUncheckedCreateWithoutEventsInputObjectSchema: z.ZodType = z.lazy(__makeSchema_CompanyUncheckedCreateWithoutEventsInput_schema) as unknown as z.ZodType; -export const CompanyUncheckedCreateWithoutEventsInputObjectZodSchema = z.lazy(__makeSchema_CompanyUncheckedCreateWithoutEventsInput_schema); - - -// File: CompanyCreateOrConnectWithoutEventsInput.schema.ts -const __makeSchema_CompanyCreateOrConnectWithoutEventsInput_schema = () => z.object({ - get where(){ return CompanyWhereUniqueInputObjectSchema; }, - create: z.union([CompanyCreateWithoutEventsInputObjectSchema, CompanyUncheckedCreateWithoutEventsInputObjectSchema]) -}).strict(); -export const CompanyCreateOrConnectWithoutEventsInputObjectSchema: z.ZodType = z.lazy(__makeSchema_CompanyCreateOrConnectWithoutEventsInput_schema) as unknown as z.ZodType; -export const CompanyCreateOrConnectWithoutEventsInputObjectZodSchema = z.lazy(__makeSchema_CompanyCreateOrConnectWithoutEventsInput_schema); - - -// File: EventUpsertWithoutCompaniesInput.schema.ts -const __makeSchema_EventUpsertWithoutCompaniesInput_schema = () => z.object({ - update: z.union([EventUpdateWithoutCompaniesInputObjectSchema, EventUncheckedUpdateWithoutCompaniesInputObjectSchema]), - create: z.union([EventCreateWithoutCompaniesInputObjectSchema, EventUncheckedCreateWithoutCompaniesInputObjectSchema]), - get where(){ return EventWhereInputObjectSchema.optional(); } -}).strict(); -export const EventUpsertWithoutCompaniesInputObjectSchema: z.ZodType = z.lazy(__makeSchema_EventUpsertWithoutCompaniesInput_schema) as unknown as z.ZodType; -export const EventUpsertWithoutCompaniesInputObjectZodSchema = z.lazy(__makeSchema_EventUpsertWithoutCompaniesInput_schema); - - -// File: EventUpdateToOneWithWhereWithoutCompaniesInput.schema.ts -const __makeSchema_EventUpdateToOneWithWhereWithoutCompaniesInput_schema = () => z.object({ - get where(){ return EventWhereInputObjectSchema.optional(); }, - data: z.union([EventUpdateWithoutCompaniesInputObjectSchema, EventUncheckedUpdateWithoutCompaniesInputObjectSchema]) -}).strict(); -export const EventUpdateToOneWithWhereWithoutCompaniesInputObjectSchema: z.ZodType = z.lazy(__makeSchema_EventUpdateToOneWithWhereWithoutCompaniesInput_schema) as unknown as z.ZodType; -export const EventUpdateToOneWithWhereWithoutCompaniesInputObjectZodSchema = z.lazy(__makeSchema_EventUpdateToOneWithWhereWithoutCompaniesInput_schema); - - -// File: EventUpdateWithoutCompaniesInput.schema.ts -const __makeSchema_EventUpdateWithoutCompaniesInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - title: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - start: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - end: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - status: z.union([EventStatusSchema, EnumEventStatusFieldUpdateOperationsInputObjectSchema]).optional(), - description: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - shortDescription: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - imageUrl: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - locationTitle: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - locationAddress: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - locationLink: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - type: z.union([EventTypeSchema, EnumEventTypeFieldUpdateOperationsInputObjectSchema]).optional(), - markForMissedAttendance: z.union([z.boolean(), BoolFieldUpdateOperationsInputObjectSchema]).optional(), - createdAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - updatedAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - metadataImportId: z.union([z.number().int(), NullableIntFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - get feedbackForm(){ return FeedbackFormUpdateOneWithoutEventNestedInputObjectSchema.optional(); }, - get fadderuke(){ return FadderukeUpdateOneWithoutEventNestedInputObjectSchema.optional(); }, - get attendance(){ return AttendanceUpdateOneWithoutEventsNestedInputObjectSchema.optional(); }, - get parent(){ return EventUpdateOneWithoutChildrenNestedInputObjectSchema.optional(); }, - get children(){ return EventUpdateManyWithoutParentNestedInputObjectSchema.optional(); }, - get contest(){ return ContestUpdateOneWithoutEventsNestedInputObjectSchema.optional(); }, - get hostingGroups(){ return EventHostingGroupUpdateManyWithoutEventNestedInputObjectSchema.optional(); }, - get deregisterReasons(){ return DeregisterReasonUpdateManyWithoutEventNestedInputObjectSchema.optional(); } -}).strict(); -export const EventUpdateWithoutCompaniesInputObjectSchema: z.ZodType = z.lazy(__makeSchema_EventUpdateWithoutCompaniesInput_schema) as unknown as z.ZodType; -export const EventUpdateWithoutCompaniesInputObjectZodSchema = z.lazy(__makeSchema_EventUpdateWithoutCompaniesInput_schema); - - -// File: EventUncheckedUpdateWithoutCompaniesInput.schema.ts -const __makeSchema_EventUncheckedUpdateWithoutCompaniesInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - title: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - start: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - end: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - status: z.union([EventStatusSchema, EnumEventStatusFieldUpdateOperationsInputObjectSchema]).optional(), - description: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - shortDescription: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - imageUrl: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - locationTitle: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - locationAddress: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - locationLink: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - type: z.union([EventTypeSchema, EnumEventTypeFieldUpdateOperationsInputObjectSchema]).optional(), - markForMissedAttendance: z.union([z.boolean(), BoolFieldUpdateOperationsInputObjectSchema]).optional(), - createdAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - updatedAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - attendanceId: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - parentId: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - contestId: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - metadataImportId: z.union([z.number().int(), NullableIntFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - get feedbackForm(){ return FeedbackFormUncheckedUpdateOneWithoutEventNestedInputObjectSchema.optional(); }, - get fadderuke(){ return FadderukeUncheckedUpdateOneWithoutEventNestedInputObjectSchema.optional(); }, - get children(){ return EventUncheckedUpdateManyWithoutParentNestedInputObjectSchema.optional(); }, - get hostingGroups(){ return EventHostingGroupUncheckedUpdateManyWithoutEventNestedInputObjectSchema.optional(); }, - get deregisterReasons(){ return DeregisterReasonUncheckedUpdateManyWithoutEventNestedInputObjectSchema.optional(); } -}).strict(); -export const EventUncheckedUpdateWithoutCompaniesInputObjectSchema: z.ZodType = z.lazy(__makeSchema_EventUncheckedUpdateWithoutCompaniesInput_schema) as unknown as z.ZodType; -export const EventUncheckedUpdateWithoutCompaniesInputObjectZodSchema = z.lazy(__makeSchema_EventUncheckedUpdateWithoutCompaniesInput_schema); - - -// File: CompanyUpsertWithoutEventsInput.schema.ts -const __makeSchema_CompanyUpsertWithoutEventsInput_schema = () => z.object({ - update: z.union([CompanyUpdateWithoutEventsInputObjectSchema, CompanyUncheckedUpdateWithoutEventsInputObjectSchema]), - create: z.union([CompanyCreateWithoutEventsInputObjectSchema, CompanyUncheckedCreateWithoutEventsInputObjectSchema]), - get where(){ return CompanyWhereInputObjectSchema.optional(); } -}).strict(); -export const CompanyUpsertWithoutEventsInputObjectSchema: z.ZodType = z.lazy(__makeSchema_CompanyUpsertWithoutEventsInput_schema) as unknown as z.ZodType; -export const CompanyUpsertWithoutEventsInputObjectZodSchema = z.lazy(__makeSchema_CompanyUpsertWithoutEventsInput_schema); - - -// File: CompanyUpdateToOneWithWhereWithoutEventsInput.schema.ts -const __makeSchema_CompanyUpdateToOneWithWhereWithoutEventsInput_schema = () => z.object({ - get where(){ return CompanyWhereInputObjectSchema.optional(); }, - data: z.union([CompanyUpdateWithoutEventsInputObjectSchema, CompanyUncheckedUpdateWithoutEventsInputObjectSchema]) -}).strict(); -export const CompanyUpdateToOneWithWhereWithoutEventsInputObjectSchema: z.ZodType = z.lazy(__makeSchema_CompanyUpdateToOneWithWhereWithoutEventsInput_schema) as unknown as z.ZodType; -export const CompanyUpdateToOneWithWhereWithoutEventsInputObjectZodSchema = z.lazy(__makeSchema_CompanyUpdateToOneWithWhereWithoutEventsInput_schema); - - -// File: CompanyUpdateWithoutEventsInput.schema.ts -const __makeSchema_CompanyUpdateWithoutEventsInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - name: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - slug: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - description: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - phone: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - email: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - website: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - location: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - imageUrl: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - createdAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - updatedAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - get JobListing(){ return JobListingUpdateManyWithoutCompanyNestedInputObjectSchema.optional(); } -}).strict(); -export const CompanyUpdateWithoutEventsInputObjectSchema: z.ZodType = z.lazy(__makeSchema_CompanyUpdateWithoutEventsInput_schema) as unknown as z.ZodType; -export const CompanyUpdateWithoutEventsInputObjectZodSchema = z.lazy(__makeSchema_CompanyUpdateWithoutEventsInput_schema); - - -// File: CompanyUncheckedUpdateWithoutEventsInput.schema.ts -const __makeSchema_CompanyUncheckedUpdateWithoutEventsInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - name: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - slug: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - description: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - phone: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - email: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - website: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - location: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - imageUrl: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - createdAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - updatedAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - get JobListing(){ return JobListingUncheckedUpdateManyWithoutCompanyNestedInputObjectSchema.optional(); } -}).strict(); -export const CompanyUncheckedUpdateWithoutEventsInputObjectSchema: z.ZodType = z.lazy(__makeSchema_CompanyUncheckedUpdateWithoutEventsInput_schema) as unknown as z.ZodType; -export const CompanyUncheckedUpdateWithoutEventsInputObjectZodSchema = z.lazy(__makeSchema_CompanyUncheckedUpdateWithoutEventsInput_schema); - - -// File: PersonalMarkCreateWithoutMarkInput.schema.ts -const __makeSchema_PersonalMarkCreateWithoutMarkInput_schema = () => z.object({ - createdAt: z.coerce.date().optional(), - get user(){ return UserCreateNestedOneWithoutPersonalMarkInputObjectSchema; }, - get givenBy(){ return UserCreateNestedOneWithoutGivenMarksInputObjectSchema.optional(); } -}).strict(); -export const PersonalMarkCreateWithoutMarkInputObjectSchema: z.ZodType = z.lazy(__makeSchema_PersonalMarkCreateWithoutMarkInput_schema) as unknown as z.ZodType; -export const PersonalMarkCreateWithoutMarkInputObjectZodSchema = z.lazy(__makeSchema_PersonalMarkCreateWithoutMarkInput_schema); - - -// File: PersonalMarkUncheckedCreateWithoutMarkInput.schema.ts -const __makeSchema_PersonalMarkUncheckedCreateWithoutMarkInput_schema = () => z.object({ - createdAt: z.coerce.date().optional(), - userId: z.string(), - givenById: z.string().optional().nullable() -}).strict(); -export const PersonalMarkUncheckedCreateWithoutMarkInputObjectSchema: z.ZodType = z.lazy(__makeSchema_PersonalMarkUncheckedCreateWithoutMarkInput_schema) as unknown as z.ZodType; -export const PersonalMarkUncheckedCreateWithoutMarkInputObjectZodSchema = z.lazy(__makeSchema_PersonalMarkUncheckedCreateWithoutMarkInput_schema); - - -// File: PersonalMarkCreateOrConnectWithoutMarkInput.schema.ts -const __makeSchema_PersonalMarkCreateOrConnectWithoutMarkInput_schema = () => z.object({ - get where(){ return PersonalMarkWhereUniqueInputObjectSchema; }, - create: z.union([PersonalMarkCreateWithoutMarkInputObjectSchema, PersonalMarkUncheckedCreateWithoutMarkInputObjectSchema]) -}).strict(); -export const PersonalMarkCreateOrConnectWithoutMarkInputObjectSchema: z.ZodType = z.lazy(__makeSchema_PersonalMarkCreateOrConnectWithoutMarkInput_schema) as unknown as z.ZodType; -export const PersonalMarkCreateOrConnectWithoutMarkInputObjectZodSchema = z.lazy(__makeSchema_PersonalMarkCreateOrConnectWithoutMarkInput_schema); - - -// File: PersonalMarkCreateManyMarkInputEnvelope.schema.ts -const __makeSchema_PersonalMarkCreateManyMarkInputEnvelope_schema = () => z.object({ - data: z.union([PersonalMarkCreateManyMarkInputObjectSchema, PersonalMarkCreateManyMarkInputObjectSchema.array()]), - skipDuplicates: z.boolean().optional() -}).strict(); -export const PersonalMarkCreateManyMarkInputEnvelopeObjectSchema: z.ZodType = z.lazy(__makeSchema_PersonalMarkCreateManyMarkInputEnvelope_schema) as unknown as z.ZodType; -export const PersonalMarkCreateManyMarkInputEnvelopeObjectZodSchema = z.lazy(__makeSchema_PersonalMarkCreateManyMarkInputEnvelope_schema); - - -// File: MarkGroupCreateWithoutMarkInput.schema.ts -const __makeSchema_MarkGroupCreateWithoutMarkInput_schema = () => z.object({ - get group(){ return GroupCreateNestedOneWithoutMarksInputObjectSchema; } -}).strict(); -export const MarkGroupCreateWithoutMarkInputObjectSchema: z.ZodType = z.lazy(__makeSchema_MarkGroupCreateWithoutMarkInput_schema) as unknown as z.ZodType; -export const MarkGroupCreateWithoutMarkInputObjectZodSchema = z.lazy(__makeSchema_MarkGroupCreateWithoutMarkInput_schema); - - -// File: MarkGroupUncheckedCreateWithoutMarkInput.schema.ts -const __makeSchema_MarkGroupUncheckedCreateWithoutMarkInput_schema = () => z.object({ - groupId: z.string() -}).strict(); -export const MarkGroupUncheckedCreateWithoutMarkInputObjectSchema: z.ZodType = z.lazy(__makeSchema_MarkGroupUncheckedCreateWithoutMarkInput_schema) as unknown as z.ZodType; -export const MarkGroupUncheckedCreateWithoutMarkInputObjectZodSchema = z.lazy(__makeSchema_MarkGroupUncheckedCreateWithoutMarkInput_schema); - - -// File: MarkGroupCreateOrConnectWithoutMarkInput.schema.ts -const __makeSchema_MarkGroupCreateOrConnectWithoutMarkInput_schema = () => z.object({ - get where(){ return MarkGroupWhereUniqueInputObjectSchema; }, - create: z.union([MarkGroupCreateWithoutMarkInputObjectSchema, MarkGroupUncheckedCreateWithoutMarkInputObjectSchema]) -}).strict(); -export const MarkGroupCreateOrConnectWithoutMarkInputObjectSchema: z.ZodType = z.lazy(__makeSchema_MarkGroupCreateOrConnectWithoutMarkInput_schema) as unknown as z.ZodType; -export const MarkGroupCreateOrConnectWithoutMarkInputObjectZodSchema = z.lazy(__makeSchema_MarkGroupCreateOrConnectWithoutMarkInput_schema); - - -// File: MarkGroupCreateManyMarkInputEnvelope.schema.ts -const __makeSchema_MarkGroupCreateManyMarkInputEnvelope_schema = () => z.object({ - data: z.union([MarkGroupCreateManyMarkInputObjectSchema, MarkGroupCreateManyMarkInputObjectSchema.array()]), - skipDuplicates: z.boolean().optional() -}).strict(); -export const MarkGroupCreateManyMarkInputEnvelopeObjectSchema: z.ZodType = z.lazy(__makeSchema_MarkGroupCreateManyMarkInputEnvelope_schema) as unknown as z.ZodType; -export const MarkGroupCreateManyMarkInputEnvelopeObjectZodSchema = z.lazy(__makeSchema_MarkGroupCreateManyMarkInputEnvelope_schema); - - -// File: PersonalMarkUpsertWithWhereUniqueWithoutMarkInput.schema.ts -const __makeSchema_PersonalMarkUpsertWithWhereUniqueWithoutMarkInput_schema = () => z.object({ - get where(){ return PersonalMarkWhereUniqueInputObjectSchema; }, - update: z.union([PersonalMarkUpdateWithoutMarkInputObjectSchema, PersonalMarkUncheckedUpdateWithoutMarkInputObjectSchema]), - create: z.union([PersonalMarkCreateWithoutMarkInputObjectSchema, PersonalMarkUncheckedCreateWithoutMarkInputObjectSchema]) -}).strict(); -export const PersonalMarkUpsertWithWhereUniqueWithoutMarkInputObjectSchema: z.ZodType = z.lazy(__makeSchema_PersonalMarkUpsertWithWhereUniqueWithoutMarkInput_schema) as unknown as z.ZodType; -export const PersonalMarkUpsertWithWhereUniqueWithoutMarkInputObjectZodSchema = z.lazy(__makeSchema_PersonalMarkUpsertWithWhereUniqueWithoutMarkInput_schema); - - -// File: PersonalMarkUpdateWithWhereUniqueWithoutMarkInput.schema.ts -const __makeSchema_PersonalMarkUpdateWithWhereUniqueWithoutMarkInput_schema = () => z.object({ - get where(){ return PersonalMarkWhereUniqueInputObjectSchema; }, - data: z.union([PersonalMarkUpdateWithoutMarkInputObjectSchema, PersonalMarkUncheckedUpdateWithoutMarkInputObjectSchema]) -}).strict(); -export const PersonalMarkUpdateWithWhereUniqueWithoutMarkInputObjectSchema: z.ZodType = z.lazy(__makeSchema_PersonalMarkUpdateWithWhereUniqueWithoutMarkInput_schema) as unknown as z.ZodType; -export const PersonalMarkUpdateWithWhereUniqueWithoutMarkInputObjectZodSchema = z.lazy(__makeSchema_PersonalMarkUpdateWithWhereUniqueWithoutMarkInput_schema); - - -// File: PersonalMarkUpdateManyWithWhereWithoutMarkInput.schema.ts -const __makeSchema_PersonalMarkUpdateManyWithWhereWithoutMarkInput_schema = () => z.object({ - get where(){ return PersonalMarkScalarWhereInputObjectSchema; }, - data: z.union([PersonalMarkUpdateManyMutationInputObjectSchema, PersonalMarkUncheckedUpdateManyWithoutMarkInputObjectSchema]) -}).strict(); -export const PersonalMarkUpdateManyWithWhereWithoutMarkInputObjectSchema: z.ZodType = z.lazy(__makeSchema_PersonalMarkUpdateManyWithWhereWithoutMarkInput_schema) as unknown as z.ZodType; -export const PersonalMarkUpdateManyWithWhereWithoutMarkInputObjectZodSchema = z.lazy(__makeSchema_PersonalMarkUpdateManyWithWhereWithoutMarkInput_schema); - - -// File: MarkGroupUpsertWithWhereUniqueWithoutMarkInput.schema.ts -const __makeSchema_MarkGroupUpsertWithWhereUniqueWithoutMarkInput_schema = () => z.object({ - get where(){ return MarkGroupWhereUniqueInputObjectSchema; }, - update: z.union([MarkGroupUpdateWithoutMarkInputObjectSchema, MarkGroupUncheckedUpdateWithoutMarkInputObjectSchema]), - create: z.union([MarkGroupCreateWithoutMarkInputObjectSchema, MarkGroupUncheckedCreateWithoutMarkInputObjectSchema]) -}).strict(); -export const MarkGroupUpsertWithWhereUniqueWithoutMarkInputObjectSchema: z.ZodType = z.lazy(__makeSchema_MarkGroupUpsertWithWhereUniqueWithoutMarkInput_schema) as unknown as z.ZodType; -export const MarkGroupUpsertWithWhereUniqueWithoutMarkInputObjectZodSchema = z.lazy(__makeSchema_MarkGroupUpsertWithWhereUniqueWithoutMarkInput_schema); - - -// File: MarkGroupUpdateWithWhereUniqueWithoutMarkInput.schema.ts -const __makeSchema_MarkGroupUpdateWithWhereUniqueWithoutMarkInput_schema = () => z.object({ - get where(){ return MarkGroupWhereUniqueInputObjectSchema; }, - data: z.union([MarkGroupUpdateWithoutMarkInputObjectSchema, MarkGroupUncheckedUpdateWithoutMarkInputObjectSchema]) -}).strict(); -export const MarkGroupUpdateWithWhereUniqueWithoutMarkInputObjectSchema: z.ZodType = z.lazy(__makeSchema_MarkGroupUpdateWithWhereUniqueWithoutMarkInput_schema) as unknown as z.ZodType; -export const MarkGroupUpdateWithWhereUniqueWithoutMarkInputObjectZodSchema = z.lazy(__makeSchema_MarkGroupUpdateWithWhereUniqueWithoutMarkInput_schema); - - -// File: MarkGroupUpdateManyWithWhereWithoutMarkInput.schema.ts -const __makeSchema_MarkGroupUpdateManyWithWhereWithoutMarkInput_schema = () => z.object({ - get where(){ return MarkGroupScalarWhereInputObjectSchema; }, - data: z.union([MarkGroupUpdateManyMutationInputObjectSchema, MarkGroupUncheckedUpdateManyWithoutMarkInputObjectSchema]) -}).strict(); -export const MarkGroupUpdateManyWithWhereWithoutMarkInputObjectSchema: z.ZodType = z.lazy(__makeSchema_MarkGroupUpdateManyWithWhereWithoutMarkInput_schema) as unknown as z.ZodType; -export const MarkGroupUpdateManyWithWhereWithoutMarkInputObjectZodSchema = z.lazy(__makeSchema_MarkGroupUpdateManyWithWhereWithoutMarkInput_schema); - - -// File: MarkCreateWithoutGroupsInput.schema.ts -const __makeSchema_MarkCreateWithoutGroupsInput_schema = () => z.object({ - id: z.string().optional(), - title: z.string(), - details: z.string().optional().nullable(), - duration: z.number().int(), - weight: z.number().int(), - type: MarkTypeSchema.optional(), - createdAt: z.coerce.date().optional(), - updatedAt: z.coerce.date().optional(), - get users(){ return PersonalMarkCreateNestedManyWithoutMarkInputObjectSchema.optional(); } -}).strict(); -export const MarkCreateWithoutGroupsInputObjectSchema: z.ZodType = z.lazy(__makeSchema_MarkCreateWithoutGroupsInput_schema) as unknown as z.ZodType; -export const MarkCreateWithoutGroupsInputObjectZodSchema = z.lazy(__makeSchema_MarkCreateWithoutGroupsInput_schema); - - -// File: MarkUncheckedCreateWithoutGroupsInput.schema.ts -const __makeSchema_MarkUncheckedCreateWithoutGroupsInput_schema = () => z.object({ - id: z.string().optional(), - title: z.string(), - details: z.string().optional().nullable(), - duration: z.number().int(), - weight: z.number().int(), - type: MarkTypeSchema.optional(), - createdAt: z.coerce.date().optional(), - updatedAt: z.coerce.date().optional(), - get users(){ return PersonalMarkUncheckedCreateNestedManyWithoutMarkInputObjectSchema.optional(); } -}).strict(); -export const MarkUncheckedCreateWithoutGroupsInputObjectSchema: z.ZodType = z.lazy(__makeSchema_MarkUncheckedCreateWithoutGroupsInput_schema) as unknown as z.ZodType; -export const MarkUncheckedCreateWithoutGroupsInputObjectZodSchema = z.lazy(__makeSchema_MarkUncheckedCreateWithoutGroupsInput_schema); - - -// File: MarkCreateOrConnectWithoutGroupsInput.schema.ts -const __makeSchema_MarkCreateOrConnectWithoutGroupsInput_schema = () => z.object({ - get where(){ return MarkWhereUniqueInputObjectSchema; }, - create: z.union([MarkCreateWithoutGroupsInputObjectSchema, MarkUncheckedCreateWithoutGroupsInputObjectSchema]) -}).strict(); -export const MarkCreateOrConnectWithoutGroupsInputObjectSchema: z.ZodType = z.lazy(__makeSchema_MarkCreateOrConnectWithoutGroupsInput_schema) as unknown as z.ZodType; -export const MarkCreateOrConnectWithoutGroupsInputObjectZodSchema = z.lazy(__makeSchema_MarkCreateOrConnectWithoutGroupsInput_schema); - - -// File: GroupCreateWithoutMarksInput.schema.ts -const __makeSchema_GroupCreateWithoutMarksInput_schema = () => z.object({ - slug: z.string(), - abbreviation: z.string(), - name: z.string().optional().nullable(), - shortDescription: z.string().optional().nullable(), - description: z.string(), - imageUrl: z.string().optional().nullable(), - email: z.string().optional().nullable(), - contactUrl: z.string().optional().nullable(), - slackUrl: z.string().optional().nullable(), - showLeaderAsContact: z.boolean().optional(), - createdAt: z.coerce.date().optional(), - deactivatedAt: z.coerce.date().optional().nullable(), - workspaceGroupId: z.string().optional().nullable(), - memberVisibility: GroupMemberVisibilitySchema.optional(), - recruitmentMethod: GroupRecruitmentMethodSchema.optional(), - type: GroupTypeSchema, - get events(){ return EventHostingGroupCreateNestedManyWithoutGroupInputObjectSchema.optional(); }, - get contests(){ return ContestCreateNestedManyWithoutGroupsInputObjectSchema.optional(); }, - get memberships(){ return GroupMembershipCreateNestedManyWithoutGroupInputObjectSchema.optional(); }, - get roles(){ return GroupRoleCreateNestedManyWithoutGroupInputObjectSchema.optional(); }, - get notifications(){ return NotificationCreateNestedManyWithoutActorGroupInputObjectSchema.optional(); } -}).strict(); -export const GroupCreateWithoutMarksInputObjectSchema: z.ZodType = z.lazy(__makeSchema_GroupCreateWithoutMarksInput_schema) as unknown as z.ZodType; -export const GroupCreateWithoutMarksInputObjectZodSchema = z.lazy(__makeSchema_GroupCreateWithoutMarksInput_schema); - - -// File: GroupUncheckedCreateWithoutMarksInput.schema.ts -const __makeSchema_GroupUncheckedCreateWithoutMarksInput_schema = () => z.object({ - slug: z.string(), - abbreviation: z.string(), - name: z.string().optional().nullable(), - shortDescription: z.string().optional().nullable(), - description: z.string(), - imageUrl: z.string().optional().nullable(), - email: z.string().optional().nullable(), - contactUrl: z.string().optional().nullable(), - slackUrl: z.string().optional().nullable(), - showLeaderAsContact: z.boolean().optional(), - createdAt: z.coerce.date().optional(), - deactivatedAt: z.coerce.date().optional().nullable(), - workspaceGroupId: z.string().optional().nullable(), - memberVisibility: GroupMemberVisibilitySchema.optional(), - recruitmentMethod: GroupRecruitmentMethodSchema.optional(), - type: GroupTypeSchema, - get events(){ return EventHostingGroupUncheckedCreateNestedManyWithoutGroupInputObjectSchema.optional(); }, - get contests(){ return ContestUncheckedCreateNestedManyWithoutGroupsInputObjectSchema.optional(); }, - get memberships(){ return GroupMembershipUncheckedCreateNestedManyWithoutGroupInputObjectSchema.optional(); }, - get roles(){ return GroupRoleUncheckedCreateNestedManyWithoutGroupInputObjectSchema.optional(); }, - get notifications(){ return NotificationUncheckedCreateNestedManyWithoutActorGroupInputObjectSchema.optional(); } -}).strict(); -export const GroupUncheckedCreateWithoutMarksInputObjectSchema: z.ZodType = z.lazy(__makeSchema_GroupUncheckedCreateWithoutMarksInput_schema) as unknown as z.ZodType; -export const GroupUncheckedCreateWithoutMarksInputObjectZodSchema = z.lazy(__makeSchema_GroupUncheckedCreateWithoutMarksInput_schema); - - -// File: GroupCreateOrConnectWithoutMarksInput.schema.ts -const __makeSchema_GroupCreateOrConnectWithoutMarksInput_schema = () => z.object({ - get where(){ return GroupWhereUniqueInputObjectSchema; }, - create: z.union([GroupCreateWithoutMarksInputObjectSchema, GroupUncheckedCreateWithoutMarksInputObjectSchema]) -}).strict(); -export const GroupCreateOrConnectWithoutMarksInputObjectSchema: z.ZodType = z.lazy(__makeSchema_GroupCreateOrConnectWithoutMarksInput_schema) as unknown as z.ZodType; -export const GroupCreateOrConnectWithoutMarksInputObjectZodSchema = z.lazy(__makeSchema_GroupCreateOrConnectWithoutMarksInput_schema); - - -// File: MarkUpsertWithoutGroupsInput.schema.ts -const __makeSchema_MarkUpsertWithoutGroupsInput_schema = () => z.object({ - update: z.union([MarkUpdateWithoutGroupsInputObjectSchema, MarkUncheckedUpdateWithoutGroupsInputObjectSchema]), - create: z.union([MarkCreateWithoutGroupsInputObjectSchema, MarkUncheckedCreateWithoutGroupsInputObjectSchema]), - get where(){ return MarkWhereInputObjectSchema.optional(); } -}).strict(); -export const MarkUpsertWithoutGroupsInputObjectSchema: z.ZodType = z.lazy(__makeSchema_MarkUpsertWithoutGroupsInput_schema) as unknown as z.ZodType; -export const MarkUpsertWithoutGroupsInputObjectZodSchema = z.lazy(__makeSchema_MarkUpsertWithoutGroupsInput_schema); - - -// File: MarkUpdateToOneWithWhereWithoutGroupsInput.schema.ts -const __makeSchema_MarkUpdateToOneWithWhereWithoutGroupsInput_schema = () => z.object({ - get where(){ return MarkWhereInputObjectSchema.optional(); }, - data: z.union([MarkUpdateWithoutGroupsInputObjectSchema, MarkUncheckedUpdateWithoutGroupsInputObjectSchema]) -}).strict(); -export const MarkUpdateToOneWithWhereWithoutGroupsInputObjectSchema: z.ZodType = z.lazy(__makeSchema_MarkUpdateToOneWithWhereWithoutGroupsInput_schema) as unknown as z.ZodType; -export const MarkUpdateToOneWithWhereWithoutGroupsInputObjectZodSchema = z.lazy(__makeSchema_MarkUpdateToOneWithWhereWithoutGroupsInput_schema); - - -// File: MarkUpdateWithoutGroupsInput.schema.ts -const __makeSchema_MarkUpdateWithoutGroupsInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - title: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - details: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - duration: z.union([z.number().int(), IntFieldUpdateOperationsInputObjectSchema]).optional(), - weight: z.union([z.number().int(), IntFieldUpdateOperationsInputObjectSchema]).optional(), - type: z.union([MarkTypeSchema, EnumMarkTypeFieldUpdateOperationsInputObjectSchema]).optional(), - createdAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - updatedAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - get users(){ return PersonalMarkUpdateManyWithoutMarkNestedInputObjectSchema.optional(); } -}).strict(); -export const MarkUpdateWithoutGroupsInputObjectSchema: z.ZodType = z.lazy(__makeSchema_MarkUpdateWithoutGroupsInput_schema) as unknown as z.ZodType; -export const MarkUpdateWithoutGroupsInputObjectZodSchema = z.lazy(__makeSchema_MarkUpdateWithoutGroupsInput_schema); - - -// File: MarkUncheckedUpdateWithoutGroupsInput.schema.ts -const __makeSchema_MarkUncheckedUpdateWithoutGroupsInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - title: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - details: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - duration: z.union([z.number().int(), IntFieldUpdateOperationsInputObjectSchema]).optional(), - weight: z.union([z.number().int(), IntFieldUpdateOperationsInputObjectSchema]).optional(), - type: z.union([MarkTypeSchema, EnumMarkTypeFieldUpdateOperationsInputObjectSchema]).optional(), - createdAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - updatedAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - get users(){ return PersonalMarkUncheckedUpdateManyWithoutMarkNestedInputObjectSchema.optional(); } -}).strict(); -export const MarkUncheckedUpdateWithoutGroupsInputObjectSchema: z.ZodType = z.lazy(__makeSchema_MarkUncheckedUpdateWithoutGroupsInput_schema) as unknown as z.ZodType; -export const MarkUncheckedUpdateWithoutGroupsInputObjectZodSchema = z.lazy(__makeSchema_MarkUncheckedUpdateWithoutGroupsInput_schema); - - -// File: GroupUpsertWithoutMarksInput.schema.ts -const __makeSchema_GroupUpsertWithoutMarksInput_schema = () => z.object({ - update: z.union([GroupUpdateWithoutMarksInputObjectSchema, GroupUncheckedUpdateWithoutMarksInputObjectSchema]), - create: z.union([GroupCreateWithoutMarksInputObjectSchema, GroupUncheckedCreateWithoutMarksInputObjectSchema]), - get where(){ return GroupWhereInputObjectSchema.optional(); } -}).strict(); -export const GroupUpsertWithoutMarksInputObjectSchema: z.ZodType = z.lazy(__makeSchema_GroupUpsertWithoutMarksInput_schema) as unknown as z.ZodType; -export const GroupUpsertWithoutMarksInputObjectZodSchema = z.lazy(__makeSchema_GroupUpsertWithoutMarksInput_schema); - - -// File: GroupUpdateToOneWithWhereWithoutMarksInput.schema.ts -const __makeSchema_GroupUpdateToOneWithWhereWithoutMarksInput_schema = () => z.object({ - get where(){ return GroupWhereInputObjectSchema.optional(); }, - data: z.union([GroupUpdateWithoutMarksInputObjectSchema, GroupUncheckedUpdateWithoutMarksInputObjectSchema]) -}).strict(); -export const GroupUpdateToOneWithWhereWithoutMarksInputObjectSchema: z.ZodType = z.lazy(__makeSchema_GroupUpdateToOneWithWhereWithoutMarksInput_schema) as unknown as z.ZodType; -export const GroupUpdateToOneWithWhereWithoutMarksInputObjectZodSchema = z.lazy(__makeSchema_GroupUpdateToOneWithWhereWithoutMarksInput_schema); - - -// File: GroupUpdateWithoutMarksInput.schema.ts -const __makeSchema_GroupUpdateWithoutMarksInput_schema = () => z.object({ - slug: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - abbreviation: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - name: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - shortDescription: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - description: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - imageUrl: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - email: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - contactUrl: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - slackUrl: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - showLeaderAsContact: z.union([z.boolean(), BoolFieldUpdateOperationsInputObjectSchema]).optional(), - createdAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - deactivatedAt: z.union([z.coerce.date(), NullableDateTimeFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - workspaceGroupId: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - memberVisibility: z.union([GroupMemberVisibilitySchema, EnumGroupMemberVisibilityFieldUpdateOperationsInputObjectSchema]).optional(), - recruitmentMethod: z.union([GroupRecruitmentMethodSchema, EnumGroupRecruitmentMethodFieldUpdateOperationsInputObjectSchema]).optional(), - type: z.union([GroupTypeSchema, EnumGroupTypeFieldUpdateOperationsInputObjectSchema]).optional(), - get events(){ return EventHostingGroupUpdateManyWithoutGroupNestedInputObjectSchema.optional(); }, - get contests(){ return ContestUpdateManyWithoutGroupsNestedInputObjectSchema.optional(); }, - get memberships(){ return GroupMembershipUpdateManyWithoutGroupNestedInputObjectSchema.optional(); }, - get roles(){ return GroupRoleUpdateManyWithoutGroupNestedInputObjectSchema.optional(); }, - get notifications(){ return NotificationUpdateManyWithoutActorGroupNestedInputObjectSchema.optional(); } -}).strict(); -export const GroupUpdateWithoutMarksInputObjectSchema: z.ZodType = z.lazy(__makeSchema_GroupUpdateWithoutMarksInput_schema) as unknown as z.ZodType; -export const GroupUpdateWithoutMarksInputObjectZodSchema = z.lazy(__makeSchema_GroupUpdateWithoutMarksInput_schema); - - -// File: GroupUncheckedUpdateWithoutMarksInput.schema.ts -const __makeSchema_GroupUncheckedUpdateWithoutMarksInput_schema = () => z.object({ - slug: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - abbreviation: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - name: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - shortDescription: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - description: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - imageUrl: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - email: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - contactUrl: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - slackUrl: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - showLeaderAsContact: z.union([z.boolean(), BoolFieldUpdateOperationsInputObjectSchema]).optional(), - createdAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - deactivatedAt: z.union([z.coerce.date(), NullableDateTimeFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - workspaceGroupId: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - memberVisibility: z.union([GroupMemberVisibilitySchema, EnumGroupMemberVisibilityFieldUpdateOperationsInputObjectSchema]).optional(), - recruitmentMethod: z.union([GroupRecruitmentMethodSchema, EnumGroupRecruitmentMethodFieldUpdateOperationsInputObjectSchema]).optional(), - type: z.union([GroupTypeSchema, EnumGroupTypeFieldUpdateOperationsInputObjectSchema]).optional(), - get events(){ return EventHostingGroupUncheckedUpdateManyWithoutGroupNestedInputObjectSchema.optional(); }, - get contests(){ return ContestUncheckedUpdateManyWithoutGroupsNestedInputObjectSchema.optional(); }, - get memberships(){ return GroupMembershipUncheckedUpdateManyWithoutGroupNestedInputObjectSchema.optional(); }, - get roles(){ return GroupRoleUncheckedUpdateManyWithoutGroupNestedInputObjectSchema.optional(); }, - get notifications(){ return NotificationUncheckedUpdateManyWithoutActorGroupNestedInputObjectSchema.optional(); } -}).strict(); -export const GroupUncheckedUpdateWithoutMarksInputObjectSchema: z.ZodType = z.lazy(__makeSchema_GroupUncheckedUpdateWithoutMarksInput_schema) as unknown as z.ZodType; -export const GroupUncheckedUpdateWithoutMarksInputObjectZodSchema = z.lazy(__makeSchema_GroupUncheckedUpdateWithoutMarksInput_schema); - - -// File: MarkCreateWithoutUsersInput.schema.ts -const __makeSchema_MarkCreateWithoutUsersInput_schema = () => z.object({ - id: z.string().optional(), - title: z.string(), - details: z.string().optional().nullable(), - duration: z.number().int(), - weight: z.number().int(), - type: MarkTypeSchema.optional(), - createdAt: z.coerce.date().optional(), - updatedAt: z.coerce.date().optional(), - get groups(){ return MarkGroupCreateNestedManyWithoutMarkInputObjectSchema.optional(); } -}).strict(); -export const MarkCreateWithoutUsersInputObjectSchema: z.ZodType = z.lazy(__makeSchema_MarkCreateWithoutUsersInput_schema) as unknown as z.ZodType; -export const MarkCreateWithoutUsersInputObjectZodSchema = z.lazy(__makeSchema_MarkCreateWithoutUsersInput_schema); - - -// File: MarkUncheckedCreateWithoutUsersInput.schema.ts -const __makeSchema_MarkUncheckedCreateWithoutUsersInput_schema = () => z.object({ - id: z.string().optional(), - title: z.string(), - details: z.string().optional().nullable(), - duration: z.number().int(), - weight: z.number().int(), - type: MarkTypeSchema.optional(), - createdAt: z.coerce.date().optional(), - updatedAt: z.coerce.date().optional(), - get groups(){ return MarkGroupUncheckedCreateNestedManyWithoutMarkInputObjectSchema.optional(); } -}).strict(); -export const MarkUncheckedCreateWithoutUsersInputObjectSchema: z.ZodType = z.lazy(__makeSchema_MarkUncheckedCreateWithoutUsersInput_schema) as unknown as z.ZodType; -export const MarkUncheckedCreateWithoutUsersInputObjectZodSchema = z.lazy(__makeSchema_MarkUncheckedCreateWithoutUsersInput_schema); - - -// File: MarkCreateOrConnectWithoutUsersInput.schema.ts -const __makeSchema_MarkCreateOrConnectWithoutUsersInput_schema = () => z.object({ - get where(){ return MarkWhereUniqueInputObjectSchema; }, - create: z.union([MarkCreateWithoutUsersInputObjectSchema, MarkUncheckedCreateWithoutUsersInputObjectSchema]) -}).strict(); -export const MarkCreateOrConnectWithoutUsersInputObjectSchema: z.ZodType = z.lazy(__makeSchema_MarkCreateOrConnectWithoutUsersInput_schema) as unknown as z.ZodType; -export const MarkCreateOrConnectWithoutUsersInputObjectZodSchema = z.lazy(__makeSchema_MarkCreateOrConnectWithoutUsersInput_schema); - - -// File: UserCreateWithoutPersonalMarkInput.schema.ts -const __makeSchema_UserCreateWithoutPersonalMarkInput_schema = () => z.object({ - id: z.string(), - username: z.string(), - name: z.string().optional().nullable(), - email: z.string().optional().nullable(), - imageUrl: z.string().optional().nullable(), - biography: z.string().optional().nullable(), - phone: z.string().optional().nullable(), - gender: GenderSchema.optional(), - dietaryRestrictions: z.string().optional().nullable(), - ntnuUsername: z.string().optional().nullable(), - flags: z.union([UserCreateflagsInputObjectSchema, z.string().array()]).optional(), - workspaceUserId: z.string().optional().nullable(), - createdAt: z.coerce.date().optional(), - updatedAt: z.coerce.date().optional(), - privacyPermissionsId: z.string().optional().nullable(), - notificationPermissionsId: z.string().optional().nullable(), - get privacyPermissions(){ return PrivacyPermissionsCreateNestedOneWithoutUserInputObjectSchema.optional(); }, - get notificationPermissions(){ return NotificationPermissionsCreateNestedOneWithoutUserInputObjectSchema.optional(); }, - get attendee(){ return AttendeeCreateNestedManyWithoutUserInputObjectSchema.optional(); }, - get groupMemberships(){ return GroupMembershipCreateNestedManyWithoutUserInputObjectSchema.optional(); }, - get memberships(){ return MembershipCreateNestedManyWithoutUserInputObjectSchema.optional(); }, - get givenMarks(){ return PersonalMarkCreateNestedManyWithoutGivenByInputObjectSchema.optional(); }, - get attendeesRefunded(){ return AttendeeCreateNestedManyWithoutPaymentRefundedByInputObjectSchema.optional(); }, - get auditLogs(){ return AuditLogCreateNestedManyWithoutUserInputObjectSchema.optional(); }, - get deregisterReasons(){ return DeregisterReasonCreateNestedManyWithoutUserInputObjectSchema.optional(); }, - get notificationsReceived(){ return NotificationRecipientCreateNestedManyWithoutUserInputObjectSchema.optional(); }, - get notificationsCreated(){ return NotificationCreateNestedManyWithoutCreatedByInputObjectSchema.optional(); }, - get notificationsUpdated(){ return NotificationCreateNestedManyWithoutLastUpdatedByInputObjectSchema.optional(); }, - get contestants(){ return ContestantCreateNestedManyWithoutUserInputObjectSchema.optional(); }, - get contestTeams(){ return ContestTeamCreateNestedManyWithoutMembersInputObjectSchema.optional(); } -}).strict(); -export const UserCreateWithoutPersonalMarkInputObjectSchema: z.ZodType = z.lazy(__makeSchema_UserCreateWithoutPersonalMarkInput_schema) as unknown as z.ZodType; -export const UserCreateWithoutPersonalMarkInputObjectZodSchema = z.lazy(__makeSchema_UserCreateWithoutPersonalMarkInput_schema); - - -// File: UserUncheckedCreateWithoutPersonalMarkInput.schema.ts -const __makeSchema_UserUncheckedCreateWithoutPersonalMarkInput_schema = () => z.object({ - id: z.string(), - username: z.string(), - name: z.string().optional().nullable(), - email: z.string().optional().nullable(), - imageUrl: z.string().optional().nullable(), - biography: z.string().optional().nullable(), - phone: z.string().optional().nullable(), - gender: GenderSchema.optional(), - dietaryRestrictions: z.string().optional().nullable(), - ntnuUsername: z.string().optional().nullable(), - flags: z.union([UserCreateflagsInputObjectSchema, z.string().array()]).optional(), - workspaceUserId: z.string().optional().nullable(), - createdAt: z.coerce.date().optional(), - updatedAt: z.coerce.date().optional(), - privacyPermissionsId: z.string().optional().nullable(), - notificationPermissionsId: z.string().optional().nullable(), - get privacyPermissions(){ return PrivacyPermissionsUncheckedCreateNestedOneWithoutUserInputObjectSchema.optional(); }, - get notificationPermissions(){ return NotificationPermissionsUncheckedCreateNestedOneWithoutUserInputObjectSchema.optional(); }, - get attendee(){ return AttendeeUncheckedCreateNestedManyWithoutUserInputObjectSchema.optional(); }, - get groupMemberships(){ return GroupMembershipUncheckedCreateNestedManyWithoutUserInputObjectSchema.optional(); }, - get memberships(){ return MembershipUncheckedCreateNestedManyWithoutUserInputObjectSchema.optional(); }, - get givenMarks(){ return PersonalMarkUncheckedCreateNestedManyWithoutGivenByInputObjectSchema.optional(); }, - get attendeesRefunded(){ return AttendeeUncheckedCreateNestedManyWithoutPaymentRefundedByInputObjectSchema.optional(); }, - get auditLogs(){ return AuditLogUncheckedCreateNestedManyWithoutUserInputObjectSchema.optional(); }, - get deregisterReasons(){ return DeregisterReasonUncheckedCreateNestedManyWithoutUserInputObjectSchema.optional(); }, - get notificationsReceived(){ return NotificationRecipientUncheckedCreateNestedManyWithoutUserInputObjectSchema.optional(); }, - get notificationsCreated(){ return NotificationUncheckedCreateNestedManyWithoutCreatedByInputObjectSchema.optional(); }, - get notificationsUpdated(){ return NotificationUncheckedCreateNestedManyWithoutLastUpdatedByInputObjectSchema.optional(); }, - get contestants(){ return ContestantUncheckedCreateNestedManyWithoutUserInputObjectSchema.optional(); }, - get contestTeams(){ return ContestTeamUncheckedCreateNestedManyWithoutMembersInputObjectSchema.optional(); } -}).strict(); -export const UserUncheckedCreateWithoutPersonalMarkInputObjectSchema: z.ZodType = z.lazy(__makeSchema_UserUncheckedCreateWithoutPersonalMarkInput_schema) as unknown as z.ZodType; -export const UserUncheckedCreateWithoutPersonalMarkInputObjectZodSchema = z.lazy(__makeSchema_UserUncheckedCreateWithoutPersonalMarkInput_schema); - - -// File: UserCreateOrConnectWithoutPersonalMarkInput.schema.ts -const __makeSchema_UserCreateOrConnectWithoutPersonalMarkInput_schema = () => z.object({ - get where(){ return UserWhereUniqueInputObjectSchema; }, - create: z.union([UserCreateWithoutPersonalMarkInputObjectSchema, UserUncheckedCreateWithoutPersonalMarkInputObjectSchema]) -}).strict(); -export const UserCreateOrConnectWithoutPersonalMarkInputObjectSchema: z.ZodType = z.lazy(__makeSchema_UserCreateOrConnectWithoutPersonalMarkInput_schema) as unknown as z.ZodType; -export const UserCreateOrConnectWithoutPersonalMarkInputObjectZodSchema = z.lazy(__makeSchema_UserCreateOrConnectWithoutPersonalMarkInput_schema); - - -// File: UserCreateWithoutGivenMarksInput.schema.ts -const __makeSchema_UserCreateWithoutGivenMarksInput_schema = () => z.object({ - id: z.string(), - username: z.string(), - name: z.string().optional().nullable(), - email: z.string().optional().nullable(), - imageUrl: z.string().optional().nullable(), - biography: z.string().optional().nullable(), - phone: z.string().optional().nullable(), - gender: GenderSchema.optional(), - dietaryRestrictions: z.string().optional().nullable(), - ntnuUsername: z.string().optional().nullable(), - flags: z.union([UserCreateflagsInputObjectSchema, z.string().array()]).optional(), - workspaceUserId: z.string().optional().nullable(), - createdAt: z.coerce.date().optional(), - updatedAt: z.coerce.date().optional(), - privacyPermissionsId: z.string().optional().nullable(), - notificationPermissionsId: z.string().optional().nullable(), - get privacyPermissions(){ return PrivacyPermissionsCreateNestedOneWithoutUserInputObjectSchema.optional(); }, - get notificationPermissions(){ return NotificationPermissionsCreateNestedOneWithoutUserInputObjectSchema.optional(); }, - get attendee(){ return AttendeeCreateNestedManyWithoutUserInputObjectSchema.optional(); }, - get personalMark(){ return PersonalMarkCreateNestedManyWithoutUserInputObjectSchema.optional(); }, - get groupMemberships(){ return GroupMembershipCreateNestedManyWithoutUserInputObjectSchema.optional(); }, - get memberships(){ return MembershipCreateNestedManyWithoutUserInputObjectSchema.optional(); }, - get attendeesRefunded(){ return AttendeeCreateNestedManyWithoutPaymentRefundedByInputObjectSchema.optional(); }, - get auditLogs(){ return AuditLogCreateNestedManyWithoutUserInputObjectSchema.optional(); }, - get deregisterReasons(){ return DeregisterReasonCreateNestedManyWithoutUserInputObjectSchema.optional(); }, - get notificationsReceived(){ return NotificationRecipientCreateNestedManyWithoutUserInputObjectSchema.optional(); }, - get notificationsCreated(){ return NotificationCreateNestedManyWithoutCreatedByInputObjectSchema.optional(); }, - get notificationsUpdated(){ return NotificationCreateNestedManyWithoutLastUpdatedByInputObjectSchema.optional(); }, - get contestants(){ return ContestantCreateNestedManyWithoutUserInputObjectSchema.optional(); }, - get contestTeams(){ return ContestTeamCreateNestedManyWithoutMembersInputObjectSchema.optional(); } -}).strict(); -export const UserCreateWithoutGivenMarksInputObjectSchema: z.ZodType = z.lazy(__makeSchema_UserCreateWithoutGivenMarksInput_schema) as unknown as z.ZodType; -export const UserCreateWithoutGivenMarksInputObjectZodSchema = z.lazy(__makeSchema_UserCreateWithoutGivenMarksInput_schema); - - -// File: UserUncheckedCreateWithoutGivenMarksInput.schema.ts -const __makeSchema_UserUncheckedCreateWithoutGivenMarksInput_schema = () => z.object({ - id: z.string(), - username: z.string(), - name: z.string().optional().nullable(), - email: z.string().optional().nullable(), - imageUrl: z.string().optional().nullable(), - biography: z.string().optional().nullable(), - phone: z.string().optional().nullable(), - gender: GenderSchema.optional(), - dietaryRestrictions: z.string().optional().nullable(), - ntnuUsername: z.string().optional().nullable(), - flags: z.union([UserCreateflagsInputObjectSchema, z.string().array()]).optional(), - workspaceUserId: z.string().optional().nullable(), - createdAt: z.coerce.date().optional(), - updatedAt: z.coerce.date().optional(), - privacyPermissionsId: z.string().optional().nullable(), - notificationPermissionsId: z.string().optional().nullable(), - get privacyPermissions(){ return PrivacyPermissionsUncheckedCreateNestedOneWithoutUserInputObjectSchema.optional(); }, - get notificationPermissions(){ return NotificationPermissionsUncheckedCreateNestedOneWithoutUserInputObjectSchema.optional(); }, - get attendee(){ return AttendeeUncheckedCreateNestedManyWithoutUserInputObjectSchema.optional(); }, - get personalMark(){ return PersonalMarkUncheckedCreateNestedManyWithoutUserInputObjectSchema.optional(); }, - get groupMemberships(){ return GroupMembershipUncheckedCreateNestedManyWithoutUserInputObjectSchema.optional(); }, - get memberships(){ return MembershipUncheckedCreateNestedManyWithoutUserInputObjectSchema.optional(); }, - get attendeesRefunded(){ return AttendeeUncheckedCreateNestedManyWithoutPaymentRefundedByInputObjectSchema.optional(); }, - get auditLogs(){ return AuditLogUncheckedCreateNestedManyWithoutUserInputObjectSchema.optional(); }, - get deregisterReasons(){ return DeregisterReasonUncheckedCreateNestedManyWithoutUserInputObjectSchema.optional(); }, - get notificationsReceived(){ return NotificationRecipientUncheckedCreateNestedManyWithoutUserInputObjectSchema.optional(); }, - get notificationsCreated(){ return NotificationUncheckedCreateNestedManyWithoutCreatedByInputObjectSchema.optional(); }, - get notificationsUpdated(){ return NotificationUncheckedCreateNestedManyWithoutLastUpdatedByInputObjectSchema.optional(); }, - get contestants(){ return ContestantUncheckedCreateNestedManyWithoutUserInputObjectSchema.optional(); }, - get contestTeams(){ return ContestTeamUncheckedCreateNestedManyWithoutMembersInputObjectSchema.optional(); } -}).strict(); -export const UserUncheckedCreateWithoutGivenMarksInputObjectSchema: z.ZodType = z.lazy(__makeSchema_UserUncheckedCreateWithoutGivenMarksInput_schema) as unknown as z.ZodType; -export const UserUncheckedCreateWithoutGivenMarksInputObjectZodSchema = z.lazy(__makeSchema_UserUncheckedCreateWithoutGivenMarksInput_schema); - - -// File: UserCreateOrConnectWithoutGivenMarksInput.schema.ts -const __makeSchema_UserCreateOrConnectWithoutGivenMarksInput_schema = () => z.object({ - get where(){ return UserWhereUniqueInputObjectSchema; }, - create: z.union([UserCreateWithoutGivenMarksInputObjectSchema, UserUncheckedCreateWithoutGivenMarksInputObjectSchema]) -}).strict(); -export const UserCreateOrConnectWithoutGivenMarksInputObjectSchema: z.ZodType = z.lazy(__makeSchema_UserCreateOrConnectWithoutGivenMarksInput_schema) as unknown as z.ZodType; -export const UserCreateOrConnectWithoutGivenMarksInputObjectZodSchema = z.lazy(__makeSchema_UserCreateOrConnectWithoutGivenMarksInput_schema); - - -// File: MarkUpsertWithoutUsersInput.schema.ts -const __makeSchema_MarkUpsertWithoutUsersInput_schema = () => z.object({ - update: z.union([MarkUpdateWithoutUsersInputObjectSchema, MarkUncheckedUpdateWithoutUsersInputObjectSchema]), - create: z.union([MarkCreateWithoutUsersInputObjectSchema, MarkUncheckedCreateWithoutUsersInputObjectSchema]), - get where(){ return MarkWhereInputObjectSchema.optional(); } -}).strict(); -export const MarkUpsertWithoutUsersInputObjectSchema: z.ZodType = z.lazy(__makeSchema_MarkUpsertWithoutUsersInput_schema) as unknown as z.ZodType; -export const MarkUpsertWithoutUsersInputObjectZodSchema = z.lazy(__makeSchema_MarkUpsertWithoutUsersInput_schema); - - -// File: MarkUpdateToOneWithWhereWithoutUsersInput.schema.ts -const __makeSchema_MarkUpdateToOneWithWhereWithoutUsersInput_schema = () => z.object({ - get where(){ return MarkWhereInputObjectSchema.optional(); }, - data: z.union([MarkUpdateWithoutUsersInputObjectSchema, MarkUncheckedUpdateWithoutUsersInputObjectSchema]) -}).strict(); -export const MarkUpdateToOneWithWhereWithoutUsersInputObjectSchema: z.ZodType = z.lazy(__makeSchema_MarkUpdateToOneWithWhereWithoutUsersInput_schema) as unknown as z.ZodType; -export const MarkUpdateToOneWithWhereWithoutUsersInputObjectZodSchema = z.lazy(__makeSchema_MarkUpdateToOneWithWhereWithoutUsersInput_schema); - - -// File: MarkUpdateWithoutUsersInput.schema.ts -const __makeSchema_MarkUpdateWithoutUsersInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - title: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - details: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - duration: z.union([z.number().int(), IntFieldUpdateOperationsInputObjectSchema]).optional(), - weight: z.union([z.number().int(), IntFieldUpdateOperationsInputObjectSchema]).optional(), - type: z.union([MarkTypeSchema, EnumMarkTypeFieldUpdateOperationsInputObjectSchema]).optional(), - createdAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - updatedAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - get groups(){ return MarkGroupUpdateManyWithoutMarkNestedInputObjectSchema.optional(); } -}).strict(); -export const MarkUpdateWithoutUsersInputObjectSchema: z.ZodType = z.lazy(__makeSchema_MarkUpdateWithoutUsersInput_schema) as unknown as z.ZodType; -export const MarkUpdateWithoutUsersInputObjectZodSchema = z.lazy(__makeSchema_MarkUpdateWithoutUsersInput_schema); - - -// File: MarkUncheckedUpdateWithoutUsersInput.schema.ts -const __makeSchema_MarkUncheckedUpdateWithoutUsersInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - title: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - details: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - duration: z.union([z.number().int(), IntFieldUpdateOperationsInputObjectSchema]).optional(), - weight: z.union([z.number().int(), IntFieldUpdateOperationsInputObjectSchema]).optional(), - type: z.union([MarkTypeSchema, EnumMarkTypeFieldUpdateOperationsInputObjectSchema]).optional(), - createdAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - updatedAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - get groups(){ return MarkGroupUncheckedUpdateManyWithoutMarkNestedInputObjectSchema.optional(); } -}).strict(); -export const MarkUncheckedUpdateWithoutUsersInputObjectSchema: z.ZodType = z.lazy(__makeSchema_MarkUncheckedUpdateWithoutUsersInput_schema) as unknown as z.ZodType; -export const MarkUncheckedUpdateWithoutUsersInputObjectZodSchema = z.lazy(__makeSchema_MarkUncheckedUpdateWithoutUsersInput_schema); - - -// File: UserUpsertWithoutPersonalMarkInput.schema.ts -const __makeSchema_UserUpsertWithoutPersonalMarkInput_schema = () => z.object({ - update: z.union([UserUpdateWithoutPersonalMarkInputObjectSchema, UserUncheckedUpdateWithoutPersonalMarkInputObjectSchema]), - create: z.union([UserCreateWithoutPersonalMarkInputObjectSchema, UserUncheckedCreateWithoutPersonalMarkInputObjectSchema]), - get where(){ return UserWhereInputObjectSchema.optional(); } -}).strict(); -export const UserUpsertWithoutPersonalMarkInputObjectSchema: z.ZodType = z.lazy(__makeSchema_UserUpsertWithoutPersonalMarkInput_schema) as unknown as z.ZodType; -export const UserUpsertWithoutPersonalMarkInputObjectZodSchema = z.lazy(__makeSchema_UserUpsertWithoutPersonalMarkInput_schema); - - -// File: UserUpdateToOneWithWhereWithoutPersonalMarkInput.schema.ts -const __makeSchema_UserUpdateToOneWithWhereWithoutPersonalMarkInput_schema = () => z.object({ - get where(){ return UserWhereInputObjectSchema.optional(); }, - data: z.union([UserUpdateWithoutPersonalMarkInputObjectSchema, UserUncheckedUpdateWithoutPersonalMarkInputObjectSchema]) -}).strict(); -export const UserUpdateToOneWithWhereWithoutPersonalMarkInputObjectSchema: z.ZodType = z.lazy(__makeSchema_UserUpdateToOneWithWhereWithoutPersonalMarkInput_schema) as unknown as z.ZodType; -export const UserUpdateToOneWithWhereWithoutPersonalMarkInputObjectZodSchema = z.lazy(__makeSchema_UserUpdateToOneWithWhereWithoutPersonalMarkInput_schema); - - -// File: UserUpdateWithoutPersonalMarkInput.schema.ts -const __makeSchema_UserUpdateWithoutPersonalMarkInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - username: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - name: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - email: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - imageUrl: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - biography: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - phone: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - gender: z.union([GenderSchema, EnumGenderFieldUpdateOperationsInputObjectSchema]).optional(), - dietaryRestrictions: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - ntnuUsername: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - flags: z.union([UserUpdateflagsInputObjectSchema, z.string().array()]).optional(), - workspaceUserId: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - createdAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - updatedAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - privacyPermissionsId: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - notificationPermissionsId: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - get privacyPermissions(){ return PrivacyPermissionsUpdateOneWithoutUserNestedInputObjectSchema.optional(); }, - get notificationPermissions(){ return NotificationPermissionsUpdateOneWithoutUserNestedInputObjectSchema.optional(); }, - get attendee(){ return AttendeeUpdateManyWithoutUserNestedInputObjectSchema.optional(); }, - get groupMemberships(){ return GroupMembershipUpdateManyWithoutUserNestedInputObjectSchema.optional(); }, - get memberships(){ return MembershipUpdateManyWithoutUserNestedInputObjectSchema.optional(); }, - get givenMarks(){ return PersonalMarkUpdateManyWithoutGivenByNestedInputObjectSchema.optional(); }, - get attendeesRefunded(){ return AttendeeUpdateManyWithoutPaymentRefundedByNestedInputObjectSchema.optional(); }, - get auditLogs(){ return AuditLogUpdateManyWithoutUserNestedInputObjectSchema.optional(); }, - get deregisterReasons(){ return DeregisterReasonUpdateManyWithoutUserNestedInputObjectSchema.optional(); }, - get notificationsReceived(){ return NotificationRecipientUpdateManyWithoutUserNestedInputObjectSchema.optional(); }, - get notificationsCreated(){ return NotificationUpdateManyWithoutCreatedByNestedInputObjectSchema.optional(); }, - get notificationsUpdated(){ return NotificationUpdateManyWithoutLastUpdatedByNestedInputObjectSchema.optional(); }, - get contestants(){ return ContestantUpdateManyWithoutUserNestedInputObjectSchema.optional(); }, - get contestTeams(){ return ContestTeamUpdateManyWithoutMembersNestedInputObjectSchema.optional(); } -}).strict(); -export const UserUpdateWithoutPersonalMarkInputObjectSchema: z.ZodType = z.lazy(__makeSchema_UserUpdateWithoutPersonalMarkInput_schema) as unknown as z.ZodType; -export const UserUpdateWithoutPersonalMarkInputObjectZodSchema = z.lazy(__makeSchema_UserUpdateWithoutPersonalMarkInput_schema); - - -// File: UserUncheckedUpdateWithoutPersonalMarkInput.schema.ts -const __makeSchema_UserUncheckedUpdateWithoutPersonalMarkInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - username: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - name: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - email: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - imageUrl: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - biography: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - phone: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - gender: z.union([GenderSchema, EnumGenderFieldUpdateOperationsInputObjectSchema]).optional(), - dietaryRestrictions: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - ntnuUsername: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - flags: z.union([UserUpdateflagsInputObjectSchema, z.string().array()]).optional(), - workspaceUserId: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - createdAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - updatedAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - privacyPermissionsId: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - notificationPermissionsId: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - get privacyPermissions(){ return PrivacyPermissionsUncheckedUpdateOneWithoutUserNestedInputObjectSchema.optional(); }, - get notificationPermissions(){ return NotificationPermissionsUncheckedUpdateOneWithoutUserNestedInputObjectSchema.optional(); }, - get attendee(){ return AttendeeUncheckedUpdateManyWithoutUserNestedInputObjectSchema.optional(); }, - get groupMemberships(){ return GroupMembershipUncheckedUpdateManyWithoutUserNestedInputObjectSchema.optional(); }, - get memberships(){ return MembershipUncheckedUpdateManyWithoutUserNestedInputObjectSchema.optional(); }, - get givenMarks(){ return PersonalMarkUncheckedUpdateManyWithoutGivenByNestedInputObjectSchema.optional(); }, - get attendeesRefunded(){ return AttendeeUncheckedUpdateManyWithoutPaymentRefundedByNestedInputObjectSchema.optional(); }, - get auditLogs(){ return AuditLogUncheckedUpdateManyWithoutUserNestedInputObjectSchema.optional(); }, - get deregisterReasons(){ return DeregisterReasonUncheckedUpdateManyWithoutUserNestedInputObjectSchema.optional(); }, - get notificationsReceived(){ return NotificationRecipientUncheckedUpdateManyWithoutUserNestedInputObjectSchema.optional(); }, - get notificationsCreated(){ return NotificationUncheckedUpdateManyWithoutCreatedByNestedInputObjectSchema.optional(); }, - get notificationsUpdated(){ return NotificationUncheckedUpdateManyWithoutLastUpdatedByNestedInputObjectSchema.optional(); }, - get contestants(){ return ContestantUncheckedUpdateManyWithoutUserNestedInputObjectSchema.optional(); }, - get contestTeams(){ return ContestTeamUncheckedUpdateManyWithoutMembersNestedInputObjectSchema.optional(); } -}).strict(); -export const UserUncheckedUpdateWithoutPersonalMarkInputObjectSchema: z.ZodType = z.lazy(__makeSchema_UserUncheckedUpdateWithoutPersonalMarkInput_schema) as unknown as z.ZodType; -export const UserUncheckedUpdateWithoutPersonalMarkInputObjectZodSchema = z.lazy(__makeSchema_UserUncheckedUpdateWithoutPersonalMarkInput_schema); - - -// File: UserUpsertWithoutGivenMarksInput.schema.ts -const __makeSchema_UserUpsertWithoutGivenMarksInput_schema = () => z.object({ - update: z.union([UserUpdateWithoutGivenMarksInputObjectSchema, UserUncheckedUpdateWithoutGivenMarksInputObjectSchema]), - create: z.union([UserCreateWithoutGivenMarksInputObjectSchema, UserUncheckedCreateWithoutGivenMarksInputObjectSchema]), - get where(){ return UserWhereInputObjectSchema.optional(); } -}).strict(); -export const UserUpsertWithoutGivenMarksInputObjectSchema: z.ZodType = z.lazy(__makeSchema_UserUpsertWithoutGivenMarksInput_schema) as unknown as z.ZodType; -export const UserUpsertWithoutGivenMarksInputObjectZodSchema = z.lazy(__makeSchema_UserUpsertWithoutGivenMarksInput_schema); - - -// File: UserUpdateToOneWithWhereWithoutGivenMarksInput.schema.ts -const __makeSchema_UserUpdateToOneWithWhereWithoutGivenMarksInput_schema = () => z.object({ - get where(){ return UserWhereInputObjectSchema.optional(); }, - data: z.union([UserUpdateWithoutGivenMarksInputObjectSchema, UserUncheckedUpdateWithoutGivenMarksInputObjectSchema]) -}).strict(); -export const UserUpdateToOneWithWhereWithoutGivenMarksInputObjectSchema: z.ZodType = z.lazy(__makeSchema_UserUpdateToOneWithWhereWithoutGivenMarksInput_schema) as unknown as z.ZodType; -export const UserUpdateToOneWithWhereWithoutGivenMarksInputObjectZodSchema = z.lazy(__makeSchema_UserUpdateToOneWithWhereWithoutGivenMarksInput_schema); - - -// File: UserUpdateWithoutGivenMarksInput.schema.ts -const __makeSchema_UserUpdateWithoutGivenMarksInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - username: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - name: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - email: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - imageUrl: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - biography: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - phone: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - gender: z.union([GenderSchema, EnumGenderFieldUpdateOperationsInputObjectSchema]).optional(), - dietaryRestrictions: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - ntnuUsername: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - flags: z.union([UserUpdateflagsInputObjectSchema, z.string().array()]).optional(), - workspaceUserId: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - createdAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - updatedAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - privacyPermissionsId: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - notificationPermissionsId: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - get privacyPermissions(){ return PrivacyPermissionsUpdateOneWithoutUserNestedInputObjectSchema.optional(); }, - get notificationPermissions(){ return NotificationPermissionsUpdateOneWithoutUserNestedInputObjectSchema.optional(); }, - get attendee(){ return AttendeeUpdateManyWithoutUserNestedInputObjectSchema.optional(); }, - get personalMark(){ return PersonalMarkUpdateManyWithoutUserNestedInputObjectSchema.optional(); }, - get groupMemberships(){ return GroupMembershipUpdateManyWithoutUserNestedInputObjectSchema.optional(); }, - get memberships(){ return MembershipUpdateManyWithoutUserNestedInputObjectSchema.optional(); }, - get attendeesRefunded(){ return AttendeeUpdateManyWithoutPaymentRefundedByNestedInputObjectSchema.optional(); }, - get auditLogs(){ return AuditLogUpdateManyWithoutUserNestedInputObjectSchema.optional(); }, - get deregisterReasons(){ return DeregisterReasonUpdateManyWithoutUserNestedInputObjectSchema.optional(); }, - get notificationsReceived(){ return NotificationRecipientUpdateManyWithoutUserNestedInputObjectSchema.optional(); }, - get notificationsCreated(){ return NotificationUpdateManyWithoutCreatedByNestedInputObjectSchema.optional(); }, - get notificationsUpdated(){ return NotificationUpdateManyWithoutLastUpdatedByNestedInputObjectSchema.optional(); }, - get contestants(){ return ContestantUpdateManyWithoutUserNestedInputObjectSchema.optional(); }, - get contestTeams(){ return ContestTeamUpdateManyWithoutMembersNestedInputObjectSchema.optional(); } -}).strict(); -export const UserUpdateWithoutGivenMarksInputObjectSchema: z.ZodType = z.lazy(__makeSchema_UserUpdateWithoutGivenMarksInput_schema) as unknown as z.ZodType; -export const UserUpdateWithoutGivenMarksInputObjectZodSchema = z.lazy(__makeSchema_UserUpdateWithoutGivenMarksInput_schema); - - -// File: UserUncheckedUpdateWithoutGivenMarksInput.schema.ts -const __makeSchema_UserUncheckedUpdateWithoutGivenMarksInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - username: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - name: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - email: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - imageUrl: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - biography: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - phone: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - gender: z.union([GenderSchema, EnumGenderFieldUpdateOperationsInputObjectSchema]).optional(), - dietaryRestrictions: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - ntnuUsername: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - flags: z.union([UserUpdateflagsInputObjectSchema, z.string().array()]).optional(), - workspaceUserId: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - createdAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - updatedAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - privacyPermissionsId: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - notificationPermissionsId: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - get privacyPermissions(){ return PrivacyPermissionsUncheckedUpdateOneWithoutUserNestedInputObjectSchema.optional(); }, - get notificationPermissions(){ return NotificationPermissionsUncheckedUpdateOneWithoutUserNestedInputObjectSchema.optional(); }, - get attendee(){ return AttendeeUncheckedUpdateManyWithoutUserNestedInputObjectSchema.optional(); }, - get personalMark(){ return PersonalMarkUncheckedUpdateManyWithoutUserNestedInputObjectSchema.optional(); }, - get groupMemberships(){ return GroupMembershipUncheckedUpdateManyWithoutUserNestedInputObjectSchema.optional(); }, - get memberships(){ return MembershipUncheckedUpdateManyWithoutUserNestedInputObjectSchema.optional(); }, - get attendeesRefunded(){ return AttendeeUncheckedUpdateManyWithoutPaymentRefundedByNestedInputObjectSchema.optional(); }, - get auditLogs(){ return AuditLogUncheckedUpdateManyWithoutUserNestedInputObjectSchema.optional(); }, - get deregisterReasons(){ return DeregisterReasonUncheckedUpdateManyWithoutUserNestedInputObjectSchema.optional(); }, - get notificationsReceived(){ return NotificationRecipientUncheckedUpdateManyWithoutUserNestedInputObjectSchema.optional(); }, - get notificationsCreated(){ return NotificationUncheckedUpdateManyWithoutCreatedByNestedInputObjectSchema.optional(); }, - get notificationsUpdated(){ return NotificationUncheckedUpdateManyWithoutLastUpdatedByNestedInputObjectSchema.optional(); }, - get contestants(){ return ContestantUncheckedUpdateManyWithoutUserNestedInputObjectSchema.optional(); }, - get contestTeams(){ return ContestTeamUncheckedUpdateManyWithoutMembersNestedInputObjectSchema.optional(); } -}).strict(); -export const UserUncheckedUpdateWithoutGivenMarksInputObjectSchema: z.ZodType = z.lazy(__makeSchema_UserUncheckedUpdateWithoutGivenMarksInput_schema) as unknown as z.ZodType; -export const UserUncheckedUpdateWithoutGivenMarksInputObjectZodSchema = z.lazy(__makeSchema_UserUncheckedUpdateWithoutGivenMarksInput_schema); - - -// File: UserCreateWithoutPrivacyPermissionsInput.schema.ts -const __makeSchema_UserCreateWithoutPrivacyPermissionsInput_schema = () => z.object({ - id: z.string(), - username: z.string(), - name: z.string().optional().nullable(), - email: z.string().optional().nullable(), - imageUrl: z.string().optional().nullable(), - biography: z.string().optional().nullable(), - phone: z.string().optional().nullable(), - gender: GenderSchema.optional(), - dietaryRestrictions: z.string().optional().nullable(), - ntnuUsername: z.string().optional().nullable(), - flags: z.union([UserCreateflagsInputObjectSchema, z.string().array()]).optional(), - workspaceUserId: z.string().optional().nullable(), - createdAt: z.coerce.date().optional(), - updatedAt: z.coerce.date().optional(), - privacyPermissionsId: z.string().optional().nullable(), - notificationPermissionsId: z.string().optional().nullable(), - get notificationPermissions(){ return NotificationPermissionsCreateNestedOneWithoutUserInputObjectSchema.optional(); }, - get attendee(){ return AttendeeCreateNestedManyWithoutUserInputObjectSchema.optional(); }, - get personalMark(){ return PersonalMarkCreateNestedManyWithoutUserInputObjectSchema.optional(); }, - get groupMemberships(){ return GroupMembershipCreateNestedManyWithoutUserInputObjectSchema.optional(); }, - get memberships(){ return MembershipCreateNestedManyWithoutUserInputObjectSchema.optional(); }, - get givenMarks(){ return PersonalMarkCreateNestedManyWithoutGivenByInputObjectSchema.optional(); }, - get attendeesRefunded(){ return AttendeeCreateNestedManyWithoutPaymentRefundedByInputObjectSchema.optional(); }, - get auditLogs(){ return AuditLogCreateNestedManyWithoutUserInputObjectSchema.optional(); }, - get deregisterReasons(){ return DeregisterReasonCreateNestedManyWithoutUserInputObjectSchema.optional(); }, - get notificationsReceived(){ return NotificationRecipientCreateNestedManyWithoutUserInputObjectSchema.optional(); }, - get notificationsCreated(){ return NotificationCreateNestedManyWithoutCreatedByInputObjectSchema.optional(); }, - get notificationsUpdated(){ return NotificationCreateNestedManyWithoutLastUpdatedByInputObjectSchema.optional(); }, - get contestants(){ return ContestantCreateNestedManyWithoutUserInputObjectSchema.optional(); }, - get contestTeams(){ return ContestTeamCreateNestedManyWithoutMembersInputObjectSchema.optional(); } -}).strict(); -export const UserCreateWithoutPrivacyPermissionsInputObjectSchema: z.ZodType = z.lazy(__makeSchema_UserCreateWithoutPrivacyPermissionsInput_schema) as unknown as z.ZodType; -export const UserCreateWithoutPrivacyPermissionsInputObjectZodSchema = z.lazy(__makeSchema_UserCreateWithoutPrivacyPermissionsInput_schema); - - -// File: UserUncheckedCreateWithoutPrivacyPermissionsInput.schema.ts -const __makeSchema_UserUncheckedCreateWithoutPrivacyPermissionsInput_schema = () => z.object({ - id: z.string(), - username: z.string(), - name: z.string().optional().nullable(), - email: z.string().optional().nullable(), - imageUrl: z.string().optional().nullable(), - biography: z.string().optional().nullable(), - phone: z.string().optional().nullable(), - gender: GenderSchema.optional(), - dietaryRestrictions: z.string().optional().nullable(), - ntnuUsername: z.string().optional().nullable(), - flags: z.union([UserCreateflagsInputObjectSchema, z.string().array()]).optional(), - workspaceUserId: z.string().optional().nullable(), - createdAt: z.coerce.date().optional(), - updatedAt: z.coerce.date().optional(), - privacyPermissionsId: z.string().optional().nullable(), - notificationPermissionsId: z.string().optional().nullable(), - get notificationPermissions(){ return NotificationPermissionsUncheckedCreateNestedOneWithoutUserInputObjectSchema.optional(); }, - get attendee(){ return AttendeeUncheckedCreateNestedManyWithoutUserInputObjectSchema.optional(); }, - get personalMark(){ return PersonalMarkUncheckedCreateNestedManyWithoutUserInputObjectSchema.optional(); }, - get groupMemberships(){ return GroupMembershipUncheckedCreateNestedManyWithoutUserInputObjectSchema.optional(); }, - get memberships(){ return MembershipUncheckedCreateNestedManyWithoutUserInputObjectSchema.optional(); }, - get givenMarks(){ return PersonalMarkUncheckedCreateNestedManyWithoutGivenByInputObjectSchema.optional(); }, - get attendeesRefunded(){ return AttendeeUncheckedCreateNestedManyWithoutPaymentRefundedByInputObjectSchema.optional(); }, - get auditLogs(){ return AuditLogUncheckedCreateNestedManyWithoutUserInputObjectSchema.optional(); }, - get deregisterReasons(){ return DeregisterReasonUncheckedCreateNestedManyWithoutUserInputObjectSchema.optional(); }, - get notificationsReceived(){ return NotificationRecipientUncheckedCreateNestedManyWithoutUserInputObjectSchema.optional(); }, - get notificationsCreated(){ return NotificationUncheckedCreateNestedManyWithoutCreatedByInputObjectSchema.optional(); }, - get notificationsUpdated(){ return NotificationUncheckedCreateNestedManyWithoutLastUpdatedByInputObjectSchema.optional(); }, - get contestants(){ return ContestantUncheckedCreateNestedManyWithoutUserInputObjectSchema.optional(); }, - get contestTeams(){ return ContestTeamUncheckedCreateNestedManyWithoutMembersInputObjectSchema.optional(); } -}).strict(); -export const UserUncheckedCreateWithoutPrivacyPermissionsInputObjectSchema: z.ZodType = z.lazy(__makeSchema_UserUncheckedCreateWithoutPrivacyPermissionsInput_schema) as unknown as z.ZodType; -export const UserUncheckedCreateWithoutPrivacyPermissionsInputObjectZodSchema = z.lazy(__makeSchema_UserUncheckedCreateWithoutPrivacyPermissionsInput_schema); - - -// File: UserCreateOrConnectWithoutPrivacyPermissionsInput.schema.ts -const __makeSchema_UserCreateOrConnectWithoutPrivacyPermissionsInput_schema = () => z.object({ - get where(){ return UserWhereUniqueInputObjectSchema; }, - create: z.union([UserCreateWithoutPrivacyPermissionsInputObjectSchema, UserUncheckedCreateWithoutPrivacyPermissionsInputObjectSchema]) -}).strict(); -export const UserCreateOrConnectWithoutPrivacyPermissionsInputObjectSchema: z.ZodType = z.lazy(__makeSchema_UserCreateOrConnectWithoutPrivacyPermissionsInput_schema) as unknown as z.ZodType; -export const UserCreateOrConnectWithoutPrivacyPermissionsInputObjectZodSchema = z.lazy(__makeSchema_UserCreateOrConnectWithoutPrivacyPermissionsInput_schema); - - -// File: UserUpsertWithoutPrivacyPermissionsInput.schema.ts -const __makeSchema_UserUpsertWithoutPrivacyPermissionsInput_schema = () => z.object({ - update: z.union([UserUpdateWithoutPrivacyPermissionsInputObjectSchema, UserUncheckedUpdateWithoutPrivacyPermissionsInputObjectSchema]), - create: z.union([UserCreateWithoutPrivacyPermissionsInputObjectSchema, UserUncheckedCreateWithoutPrivacyPermissionsInputObjectSchema]), - get where(){ return UserWhereInputObjectSchema.optional(); } -}).strict(); -export const UserUpsertWithoutPrivacyPermissionsInputObjectSchema: z.ZodType = z.lazy(__makeSchema_UserUpsertWithoutPrivacyPermissionsInput_schema) as unknown as z.ZodType; -export const UserUpsertWithoutPrivacyPermissionsInputObjectZodSchema = z.lazy(__makeSchema_UserUpsertWithoutPrivacyPermissionsInput_schema); - - -// File: UserUpdateToOneWithWhereWithoutPrivacyPermissionsInput.schema.ts -const __makeSchema_UserUpdateToOneWithWhereWithoutPrivacyPermissionsInput_schema = () => z.object({ - get where(){ return UserWhereInputObjectSchema.optional(); }, - data: z.union([UserUpdateWithoutPrivacyPermissionsInputObjectSchema, UserUncheckedUpdateWithoutPrivacyPermissionsInputObjectSchema]) -}).strict(); -export const UserUpdateToOneWithWhereWithoutPrivacyPermissionsInputObjectSchema: z.ZodType = z.lazy(__makeSchema_UserUpdateToOneWithWhereWithoutPrivacyPermissionsInput_schema) as unknown as z.ZodType; -export const UserUpdateToOneWithWhereWithoutPrivacyPermissionsInputObjectZodSchema = z.lazy(__makeSchema_UserUpdateToOneWithWhereWithoutPrivacyPermissionsInput_schema); - - -// File: UserUpdateWithoutPrivacyPermissionsInput.schema.ts -const __makeSchema_UserUpdateWithoutPrivacyPermissionsInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - username: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - name: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - email: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - imageUrl: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - biography: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - phone: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - gender: z.union([GenderSchema, EnumGenderFieldUpdateOperationsInputObjectSchema]).optional(), - dietaryRestrictions: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - ntnuUsername: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - flags: z.union([UserUpdateflagsInputObjectSchema, z.string().array()]).optional(), - workspaceUserId: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - createdAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - updatedAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - privacyPermissionsId: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - notificationPermissionsId: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - get notificationPermissions(){ return NotificationPermissionsUpdateOneWithoutUserNestedInputObjectSchema.optional(); }, - get attendee(){ return AttendeeUpdateManyWithoutUserNestedInputObjectSchema.optional(); }, - get personalMark(){ return PersonalMarkUpdateManyWithoutUserNestedInputObjectSchema.optional(); }, - get groupMemberships(){ return GroupMembershipUpdateManyWithoutUserNestedInputObjectSchema.optional(); }, - get memberships(){ return MembershipUpdateManyWithoutUserNestedInputObjectSchema.optional(); }, - get givenMarks(){ return PersonalMarkUpdateManyWithoutGivenByNestedInputObjectSchema.optional(); }, - get attendeesRefunded(){ return AttendeeUpdateManyWithoutPaymentRefundedByNestedInputObjectSchema.optional(); }, - get auditLogs(){ return AuditLogUpdateManyWithoutUserNestedInputObjectSchema.optional(); }, - get deregisterReasons(){ return DeregisterReasonUpdateManyWithoutUserNestedInputObjectSchema.optional(); }, - get notificationsReceived(){ return NotificationRecipientUpdateManyWithoutUserNestedInputObjectSchema.optional(); }, - get notificationsCreated(){ return NotificationUpdateManyWithoutCreatedByNestedInputObjectSchema.optional(); }, - get notificationsUpdated(){ return NotificationUpdateManyWithoutLastUpdatedByNestedInputObjectSchema.optional(); }, - get contestants(){ return ContestantUpdateManyWithoutUserNestedInputObjectSchema.optional(); }, - get contestTeams(){ return ContestTeamUpdateManyWithoutMembersNestedInputObjectSchema.optional(); } -}).strict(); -export const UserUpdateWithoutPrivacyPermissionsInputObjectSchema: z.ZodType = z.lazy(__makeSchema_UserUpdateWithoutPrivacyPermissionsInput_schema) as unknown as z.ZodType; -export const UserUpdateWithoutPrivacyPermissionsInputObjectZodSchema = z.lazy(__makeSchema_UserUpdateWithoutPrivacyPermissionsInput_schema); - - -// File: UserUncheckedUpdateWithoutPrivacyPermissionsInput.schema.ts -const __makeSchema_UserUncheckedUpdateWithoutPrivacyPermissionsInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - username: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - name: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - email: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - imageUrl: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - biography: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - phone: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - gender: z.union([GenderSchema, EnumGenderFieldUpdateOperationsInputObjectSchema]).optional(), - dietaryRestrictions: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - ntnuUsername: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - flags: z.union([UserUpdateflagsInputObjectSchema, z.string().array()]).optional(), - workspaceUserId: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - createdAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - updatedAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - privacyPermissionsId: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - notificationPermissionsId: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - get notificationPermissions(){ return NotificationPermissionsUncheckedUpdateOneWithoutUserNestedInputObjectSchema.optional(); }, - get attendee(){ return AttendeeUncheckedUpdateManyWithoutUserNestedInputObjectSchema.optional(); }, - get personalMark(){ return PersonalMarkUncheckedUpdateManyWithoutUserNestedInputObjectSchema.optional(); }, - get groupMemberships(){ return GroupMembershipUncheckedUpdateManyWithoutUserNestedInputObjectSchema.optional(); }, - get memberships(){ return MembershipUncheckedUpdateManyWithoutUserNestedInputObjectSchema.optional(); }, - get givenMarks(){ return PersonalMarkUncheckedUpdateManyWithoutGivenByNestedInputObjectSchema.optional(); }, - get attendeesRefunded(){ return AttendeeUncheckedUpdateManyWithoutPaymentRefundedByNestedInputObjectSchema.optional(); }, - get auditLogs(){ return AuditLogUncheckedUpdateManyWithoutUserNestedInputObjectSchema.optional(); }, - get deregisterReasons(){ return DeregisterReasonUncheckedUpdateManyWithoutUserNestedInputObjectSchema.optional(); }, - get notificationsReceived(){ return NotificationRecipientUncheckedUpdateManyWithoutUserNestedInputObjectSchema.optional(); }, - get notificationsCreated(){ return NotificationUncheckedUpdateManyWithoutCreatedByNestedInputObjectSchema.optional(); }, - get notificationsUpdated(){ return NotificationUncheckedUpdateManyWithoutLastUpdatedByNestedInputObjectSchema.optional(); }, - get contestants(){ return ContestantUncheckedUpdateManyWithoutUserNestedInputObjectSchema.optional(); }, - get contestTeams(){ return ContestTeamUncheckedUpdateManyWithoutMembersNestedInputObjectSchema.optional(); } -}).strict(); -export const UserUncheckedUpdateWithoutPrivacyPermissionsInputObjectSchema: z.ZodType = z.lazy(__makeSchema_UserUncheckedUpdateWithoutPrivacyPermissionsInput_schema) as unknown as z.ZodType; -export const UserUncheckedUpdateWithoutPrivacyPermissionsInputObjectZodSchema = z.lazy(__makeSchema_UserUncheckedUpdateWithoutPrivacyPermissionsInput_schema); - - -// File: UserCreateWithoutNotificationPermissionsInput.schema.ts -const __makeSchema_UserCreateWithoutNotificationPermissionsInput_schema = () => z.object({ - id: z.string(), - username: z.string(), - name: z.string().optional().nullable(), - email: z.string().optional().nullable(), - imageUrl: z.string().optional().nullable(), - biography: z.string().optional().nullable(), - phone: z.string().optional().nullable(), - gender: GenderSchema.optional(), - dietaryRestrictions: z.string().optional().nullable(), - ntnuUsername: z.string().optional().nullable(), - flags: z.union([UserCreateflagsInputObjectSchema, z.string().array()]).optional(), - workspaceUserId: z.string().optional().nullable(), - createdAt: z.coerce.date().optional(), - updatedAt: z.coerce.date().optional(), - privacyPermissionsId: z.string().optional().nullable(), - notificationPermissionsId: z.string().optional().nullable(), - get privacyPermissions(){ return PrivacyPermissionsCreateNestedOneWithoutUserInputObjectSchema.optional(); }, - get attendee(){ return AttendeeCreateNestedManyWithoutUserInputObjectSchema.optional(); }, - get personalMark(){ return PersonalMarkCreateNestedManyWithoutUserInputObjectSchema.optional(); }, - get groupMemberships(){ return GroupMembershipCreateNestedManyWithoutUserInputObjectSchema.optional(); }, - get memberships(){ return MembershipCreateNestedManyWithoutUserInputObjectSchema.optional(); }, - get givenMarks(){ return PersonalMarkCreateNestedManyWithoutGivenByInputObjectSchema.optional(); }, - get attendeesRefunded(){ return AttendeeCreateNestedManyWithoutPaymentRefundedByInputObjectSchema.optional(); }, - get auditLogs(){ return AuditLogCreateNestedManyWithoutUserInputObjectSchema.optional(); }, - get deregisterReasons(){ return DeregisterReasonCreateNestedManyWithoutUserInputObjectSchema.optional(); }, - get notificationsReceived(){ return NotificationRecipientCreateNestedManyWithoutUserInputObjectSchema.optional(); }, - get notificationsCreated(){ return NotificationCreateNestedManyWithoutCreatedByInputObjectSchema.optional(); }, - get notificationsUpdated(){ return NotificationCreateNestedManyWithoutLastUpdatedByInputObjectSchema.optional(); }, - get contestants(){ return ContestantCreateNestedManyWithoutUserInputObjectSchema.optional(); }, - get contestTeams(){ return ContestTeamCreateNestedManyWithoutMembersInputObjectSchema.optional(); } -}).strict(); -export const UserCreateWithoutNotificationPermissionsInputObjectSchema: z.ZodType = z.lazy(__makeSchema_UserCreateWithoutNotificationPermissionsInput_schema) as unknown as z.ZodType; -export const UserCreateWithoutNotificationPermissionsInputObjectZodSchema = z.lazy(__makeSchema_UserCreateWithoutNotificationPermissionsInput_schema); - - -// File: UserUncheckedCreateWithoutNotificationPermissionsInput.schema.ts -const __makeSchema_UserUncheckedCreateWithoutNotificationPermissionsInput_schema = () => z.object({ - id: z.string(), - username: z.string(), - name: z.string().optional().nullable(), - email: z.string().optional().nullable(), - imageUrl: z.string().optional().nullable(), - biography: z.string().optional().nullable(), - phone: z.string().optional().nullable(), - gender: GenderSchema.optional(), - dietaryRestrictions: z.string().optional().nullable(), - ntnuUsername: z.string().optional().nullable(), - flags: z.union([UserCreateflagsInputObjectSchema, z.string().array()]).optional(), - workspaceUserId: z.string().optional().nullable(), - createdAt: z.coerce.date().optional(), - updatedAt: z.coerce.date().optional(), - privacyPermissionsId: z.string().optional().nullable(), - notificationPermissionsId: z.string().optional().nullable(), - get privacyPermissions(){ return PrivacyPermissionsUncheckedCreateNestedOneWithoutUserInputObjectSchema.optional(); }, - get attendee(){ return AttendeeUncheckedCreateNestedManyWithoutUserInputObjectSchema.optional(); }, - get personalMark(){ return PersonalMarkUncheckedCreateNestedManyWithoutUserInputObjectSchema.optional(); }, - get groupMemberships(){ return GroupMembershipUncheckedCreateNestedManyWithoutUserInputObjectSchema.optional(); }, - get memberships(){ return MembershipUncheckedCreateNestedManyWithoutUserInputObjectSchema.optional(); }, - get givenMarks(){ return PersonalMarkUncheckedCreateNestedManyWithoutGivenByInputObjectSchema.optional(); }, - get attendeesRefunded(){ return AttendeeUncheckedCreateNestedManyWithoutPaymentRefundedByInputObjectSchema.optional(); }, - get auditLogs(){ return AuditLogUncheckedCreateNestedManyWithoutUserInputObjectSchema.optional(); }, - get deregisterReasons(){ return DeregisterReasonUncheckedCreateNestedManyWithoutUserInputObjectSchema.optional(); }, - get notificationsReceived(){ return NotificationRecipientUncheckedCreateNestedManyWithoutUserInputObjectSchema.optional(); }, - get notificationsCreated(){ return NotificationUncheckedCreateNestedManyWithoutCreatedByInputObjectSchema.optional(); }, - get notificationsUpdated(){ return NotificationUncheckedCreateNestedManyWithoutLastUpdatedByInputObjectSchema.optional(); }, - get contestants(){ return ContestantUncheckedCreateNestedManyWithoutUserInputObjectSchema.optional(); }, - get contestTeams(){ return ContestTeamUncheckedCreateNestedManyWithoutMembersInputObjectSchema.optional(); } -}).strict(); -export const UserUncheckedCreateWithoutNotificationPermissionsInputObjectSchema: z.ZodType = z.lazy(__makeSchema_UserUncheckedCreateWithoutNotificationPermissionsInput_schema) as unknown as z.ZodType; -export const UserUncheckedCreateWithoutNotificationPermissionsInputObjectZodSchema = z.lazy(__makeSchema_UserUncheckedCreateWithoutNotificationPermissionsInput_schema); - - -// File: UserCreateOrConnectWithoutNotificationPermissionsInput.schema.ts -const __makeSchema_UserCreateOrConnectWithoutNotificationPermissionsInput_schema = () => z.object({ - get where(){ return UserWhereUniqueInputObjectSchema; }, - create: z.union([UserCreateWithoutNotificationPermissionsInputObjectSchema, UserUncheckedCreateWithoutNotificationPermissionsInputObjectSchema]) -}).strict(); -export const UserCreateOrConnectWithoutNotificationPermissionsInputObjectSchema: z.ZodType = z.lazy(__makeSchema_UserCreateOrConnectWithoutNotificationPermissionsInput_schema) as unknown as z.ZodType; -export const UserCreateOrConnectWithoutNotificationPermissionsInputObjectZodSchema = z.lazy(__makeSchema_UserCreateOrConnectWithoutNotificationPermissionsInput_schema); - - -// File: UserUpsertWithoutNotificationPermissionsInput.schema.ts -const __makeSchema_UserUpsertWithoutNotificationPermissionsInput_schema = () => z.object({ - update: z.union([UserUpdateWithoutNotificationPermissionsInputObjectSchema, UserUncheckedUpdateWithoutNotificationPermissionsInputObjectSchema]), - create: z.union([UserCreateWithoutNotificationPermissionsInputObjectSchema, UserUncheckedCreateWithoutNotificationPermissionsInputObjectSchema]), - get where(){ return UserWhereInputObjectSchema.optional(); } -}).strict(); -export const UserUpsertWithoutNotificationPermissionsInputObjectSchema: z.ZodType = z.lazy(__makeSchema_UserUpsertWithoutNotificationPermissionsInput_schema) as unknown as z.ZodType; -export const UserUpsertWithoutNotificationPermissionsInputObjectZodSchema = z.lazy(__makeSchema_UserUpsertWithoutNotificationPermissionsInput_schema); - - -// File: UserUpdateToOneWithWhereWithoutNotificationPermissionsInput.schema.ts -const __makeSchema_UserUpdateToOneWithWhereWithoutNotificationPermissionsInput_schema = () => z.object({ - get where(){ return UserWhereInputObjectSchema.optional(); }, - data: z.union([UserUpdateWithoutNotificationPermissionsInputObjectSchema, UserUncheckedUpdateWithoutNotificationPermissionsInputObjectSchema]) -}).strict(); -export const UserUpdateToOneWithWhereWithoutNotificationPermissionsInputObjectSchema: z.ZodType = z.lazy(__makeSchema_UserUpdateToOneWithWhereWithoutNotificationPermissionsInput_schema) as unknown as z.ZodType; -export const UserUpdateToOneWithWhereWithoutNotificationPermissionsInputObjectZodSchema = z.lazy(__makeSchema_UserUpdateToOneWithWhereWithoutNotificationPermissionsInput_schema); - - -// File: UserUpdateWithoutNotificationPermissionsInput.schema.ts -const __makeSchema_UserUpdateWithoutNotificationPermissionsInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - username: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - name: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - email: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - imageUrl: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - biography: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - phone: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - gender: z.union([GenderSchema, EnumGenderFieldUpdateOperationsInputObjectSchema]).optional(), - dietaryRestrictions: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - ntnuUsername: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - flags: z.union([UserUpdateflagsInputObjectSchema, z.string().array()]).optional(), - workspaceUserId: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - createdAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - updatedAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - privacyPermissionsId: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - notificationPermissionsId: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - get privacyPermissions(){ return PrivacyPermissionsUpdateOneWithoutUserNestedInputObjectSchema.optional(); }, - get attendee(){ return AttendeeUpdateManyWithoutUserNestedInputObjectSchema.optional(); }, - get personalMark(){ return PersonalMarkUpdateManyWithoutUserNestedInputObjectSchema.optional(); }, - get groupMemberships(){ return GroupMembershipUpdateManyWithoutUserNestedInputObjectSchema.optional(); }, - get memberships(){ return MembershipUpdateManyWithoutUserNestedInputObjectSchema.optional(); }, - get givenMarks(){ return PersonalMarkUpdateManyWithoutGivenByNestedInputObjectSchema.optional(); }, - get attendeesRefunded(){ return AttendeeUpdateManyWithoutPaymentRefundedByNestedInputObjectSchema.optional(); }, - get auditLogs(){ return AuditLogUpdateManyWithoutUserNestedInputObjectSchema.optional(); }, - get deregisterReasons(){ return DeregisterReasonUpdateManyWithoutUserNestedInputObjectSchema.optional(); }, - get notificationsReceived(){ return NotificationRecipientUpdateManyWithoutUserNestedInputObjectSchema.optional(); }, - get notificationsCreated(){ return NotificationUpdateManyWithoutCreatedByNestedInputObjectSchema.optional(); }, - get notificationsUpdated(){ return NotificationUpdateManyWithoutLastUpdatedByNestedInputObjectSchema.optional(); }, - get contestants(){ return ContestantUpdateManyWithoutUserNestedInputObjectSchema.optional(); }, - get contestTeams(){ return ContestTeamUpdateManyWithoutMembersNestedInputObjectSchema.optional(); } -}).strict(); -export const UserUpdateWithoutNotificationPermissionsInputObjectSchema: z.ZodType = z.lazy(__makeSchema_UserUpdateWithoutNotificationPermissionsInput_schema) as unknown as z.ZodType; -export const UserUpdateWithoutNotificationPermissionsInputObjectZodSchema = z.lazy(__makeSchema_UserUpdateWithoutNotificationPermissionsInput_schema); - - -// File: UserUncheckedUpdateWithoutNotificationPermissionsInput.schema.ts -const __makeSchema_UserUncheckedUpdateWithoutNotificationPermissionsInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - username: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - name: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - email: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - imageUrl: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - biography: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - phone: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - gender: z.union([GenderSchema, EnumGenderFieldUpdateOperationsInputObjectSchema]).optional(), - dietaryRestrictions: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - ntnuUsername: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - flags: z.union([UserUpdateflagsInputObjectSchema, z.string().array()]).optional(), - workspaceUserId: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - createdAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - updatedAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - privacyPermissionsId: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - notificationPermissionsId: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - get privacyPermissions(){ return PrivacyPermissionsUncheckedUpdateOneWithoutUserNestedInputObjectSchema.optional(); }, - get attendee(){ return AttendeeUncheckedUpdateManyWithoutUserNestedInputObjectSchema.optional(); }, - get personalMark(){ return PersonalMarkUncheckedUpdateManyWithoutUserNestedInputObjectSchema.optional(); }, - get groupMemberships(){ return GroupMembershipUncheckedUpdateManyWithoutUserNestedInputObjectSchema.optional(); }, - get memberships(){ return MembershipUncheckedUpdateManyWithoutUserNestedInputObjectSchema.optional(); }, - get givenMarks(){ return PersonalMarkUncheckedUpdateManyWithoutGivenByNestedInputObjectSchema.optional(); }, - get attendeesRefunded(){ return AttendeeUncheckedUpdateManyWithoutPaymentRefundedByNestedInputObjectSchema.optional(); }, - get auditLogs(){ return AuditLogUncheckedUpdateManyWithoutUserNestedInputObjectSchema.optional(); }, - get deregisterReasons(){ return DeregisterReasonUncheckedUpdateManyWithoutUserNestedInputObjectSchema.optional(); }, - get notificationsReceived(){ return NotificationRecipientUncheckedUpdateManyWithoutUserNestedInputObjectSchema.optional(); }, - get notificationsCreated(){ return NotificationUncheckedUpdateManyWithoutCreatedByNestedInputObjectSchema.optional(); }, - get notificationsUpdated(){ return NotificationUncheckedUpdateManyWithoutLastUpdatedByNestedInputObjectSchema.optional(); }, - get contestants(){ return ContestantUncheckedUpdateManyWithoutUserNestedInputObjectSchema.optional(); }, - get contestTeams(){ return ContestTeamUncheckedUpdateManyWithoutMembersNestedInputObjectSchema.optional(); } -}).strict(); -export const UserUncheckedUpdateWithoutNotificationPermissionsInputObjectSchema: z.ZodType = z.lazy(__makeSchema_UserUncheckedUpdateWithoutNotificationPermissionsInput_schema) as unknown as z.ZodType; -export const UserUncheckedUpdateWithoutNotificationPermissionsInputObjectZodSchema = z.lazy(__makeSchema_UserUncheckedUpdateWithoutNotificationPermissionsInput_schema); - - -// File: GroupCreateWithoutEventsInput.schema.ts -const __makeSchema_GroupCreateWithoutEventsInput_schema = () => z.object({ - slug: z.string(), - abbreviation: z.string(), - name: z.string().optional().nullable(), - shortDescription: z.string().optional().nullable(), - description: z.string(), - imageUrl: z.string().optional().nullable(), - email: z.string().optional().nullable(), - contactUrl: z.string().optional().nullable(), - slackUrl: z.string().optional().nullable(), - showLeaderAsContact: z.boolean().optional(), - createdAt: z.coerce.date().optional(), - deactivatedAt: z.coerce.date().optional().nullable(), - workspaceGroupId: z.string().optional().nullable(), - memberVisibility: GroupMemberVisibilitySchema.optional(), - recruitmentMethod: GroupRecruitmentMethodSchema.optional(), - type: GroupTypeSchema, - get contests(){ return ContestCreateNestedManyWithoutGroupsInputObjectSchema.optional(); }, - get memberships(){ return GroupMembershipCreateNestedManyWithoutGroupInputObjectSchema.optional(); }, - get marks(){ return MarkGroupCreateNestedManyWithoutGroupInputObjectSchema.optional(); }, - get roles(){ return GroupRoleCreateNestedManyWithoutGroupInputObjectSchema.optional(); }, - get notifications(){ return NotificationCreateNestedManyWithoutActorGroupInputObjectSchema.optional(); } -}).strict(); -export const GroupCreateWithoutEventsInputObjectSchema: z.ZodType = z.lazy(__makeSchema_GroupCreateWithoutEventsInput_schema) as unknown as z.ZodType; -export const GroupCreateWithoutEventsInputObjectZodSchema = z.lazy(__makeSchema_GroupCreateWithoutEventsInput_schema); - - -// File: GroupUncheckedCreateWithoutEventsInput.schema.ts -const __makeSchema_GroupUncheckedCreateWithoutEventsInput_schema = () => z.object({ - slug: z.string(), - abbreviation: z.string(), - name: z.string().optional().nullable(), - shortDescription: z.string().optional().nullable(), - description: z.string(), - imageUrl: z.string().optional().nullable(), - email: z.string().optional().nullable(), - contactUrl: z.string().optional().nullable(), - slackUrl: z.string().optional().nullable(), - showLeaderAsContact: z.boolean().optional(), - createdAt: z.coerce.date().optional(), - deactivatedAt: z.coerce.date().optional().nullable(), - workspaceGroupId: z.string().optional().nullable(), - memberVisibility: GroupMemberVisibilitySchema.optional(), - recruitmentMethod: GroupRecruitmentMethodSchema.optional(), - type: GroupTypeSchema, - get contests(){ return ContestUncheckedCreateNestedManyWithoutGroupsInputObjectSchema.optional(); }, - get memberships(){ return GroupMembershipUncheckedCreateNestedManyWithoutGroupInputObjectSchema.optional(); }, - get marks(){ return MarkGroupUncheckedCreateNestedManyWithoutGroupInputObjectSchema.optional(); }, - get roles(){ return GroupRoleUncheckedCreateNestedManyWithoutGroupInputObjectSchema.optional(); }, - get notifications(){ return NotificationUncheckedCreateNestedManyWithoutActorGroupInputObjectSchema.optional(); } -}).strict(); -export const GroupUncheckedCreateWithoutEventsInputObjectSchema: z.ZodType = z.lazy(__makeSchema_GroupUncheckedCreateWithoutEventsInput_schema) as unknown as z.ZodType; -export const GroupUncheckedCreateWithoutEventsInputObjectZodSchema = z.lazy(__makeSchema_GroupUncheckedCreateWithoutEventsInput_schema); - - -// File: GroupCreateOrConnectWithoutEventsInput.schema.ts -const __makeSchema_GroupCreateOrConnectWithoutEventsInput_schema = () => z.object({ - get where(){ return GroupWhereUniqueInputObjectSchema; }, - create: z.union([GroupCreateWithoutEventsInputObjectSchema, GroupUncheckedCreateWithoutEventsInputObjectSchema]) -}).strict(); -export const GroupCreateOrConnectWithoutEventsInputObjectSchema: z.ZodType = z.lazy(__makeSchema_GroupCreateOrConnectWithoutEventsInput_schema) as unknown as z.ZodType; -export const GroupCreateOrConnectWithoutEventsInputObjectZodSchema = z.lazy(__makeSchema_GroupCreateOrConnectWithoutEventsInput_schema); - - -// File: EventCreateWithoutHostingGroupsInput.schema.ts -const __makeSchema_EventCreateWithoutHostingGroupsInput_schema = () => z.object({ - id: z.string().optional(), - title: z.string(), - start: z.coerce.date(), - end: z.coerce.date(), - status: EventStatusSchema, - description: z.string(), - shortDescription: z.string().optional().nullable(), - imageUrl: z.string().optional().nullable(), - locationTitle: z.string().optional().nullable(), - locationAddress: z.string().optional().nullable(), - locationLink: z.string().optional().nullable(), - type: EventTypeSchema, - markForMissedAttendance: z.boolean().optional(), - createdAt: z.coerce.date().optional(), - updatedAt: z.coerce.date().optional(), - metadataImportId: z.number().int().optional().nullable(), - get feedbackForm(){ return FeedbackFormCreateNestedOneWithoutEventInputObjectSchema.optional(); }, - get fadderuke(){ return FadderukeCreateNestedOneWithoutEventInputObjectSchema.optional(); }, - get attendance(){ return AttendanceCreateNestedOneWithoutEventsInputObjectSchema.optional(); }, - get parent(){ return EventCreateNestedOneWithoutChildrenInputObjectSchema.optional(); }, - get children(){ return EventCreateNestedManyWithoutParentInputObjectSchema.optional(); }, - get contest(){ return ContestCreateNestedOneWithoutEventsInputObjectSchema.optional(); }, - get companies(){ return EventCompanyCreateNestedManyWithoutEventInputObjectSchema.optional(); }, - get deregisterReasons(){ return DeregisterReasonCreateNestedManyWithoutEventInputObjectSchema.optional(); } -}).strict(); -export const EventCreateWithoutHostingGroupsInputObjectSchema: z.ZodType = z.lazy(__makeSchema_EventCreateWithoutHostingGroupsInput_schema) as unknown as z.ZodType; -export const EventCreateWithoutHostingGroupsInputObjectZodSchema = z.lazy(__makeSchema_EventCreateWithoutHostingGroupsInput_schema); - - -// File: EventUncheckedCreateWithoutHostingGroupsInput.schema.ts -const __makeSchema_EventUncheckedCreateWithoutHostingGroupsInput_schema = () => z.object({ - id: z.string().optional(), - title: z.string(), - start: z.coerce.date(), - end: z.coerce.date(), - status: EventStatusSchema, - description: z.string(), - shortDescription: z.string().optional().nullable(), - imageUrl: z.string().optional().nullable(), - locationTitle: z.string().optional().nullable(), - locationAddress: z.string().optional().nullable(), - locationLink: z.string().optional().nullable(), - type: EventTypeSchema, - markForMissedAttendance: z.boolean().optional(), - createdAt: z.coerce.date().optional(), - updatedAt: z.coerce.date().optional(), - attendanceId: z.string().optional().nullable(), - parentId: z.string().optional().nullable(), - contestId: z.string().optional().nullable(), - metadataImportId: z.number().int().optional().nullable(), - get feedbackForm(){ return FeedbackFormUncheckedCreateNestedOneWithoutEventInputObjectSchema.optional(); }, - get fadderuke(){ return FadderukeUncheckedCreateNestedOneWithoutEventInputObjectSchema.optional(); }, - get children(){ return EventUncheckedCreateNestedManyWithoutParentInputObjectSchema.optional(); }, - get companies(){ return EventCompanyUncheckedCreateNestedManyWithoutEventInputObjectSchema.optional(); }, - get deregisterReasons(){ return DeregisterReasonUncheckedCreateNestedManyWithoutEventInputObjectSchema.optional(); } -}).strict(); -export const EventUncheckedCreateWithoutHostingGroupsInputObjectSchema: z.ZodType = z.lazy(__makeSchema_EventUncheckedCreateWithoutHostingGroupsInput_schema) as unknown as z.ZodType; -export const EventUncheckedCreateWithoutHostingGroupsInputObjectZodSchema = z.lazy(__makeSchema_EventUncheckedCreateWithoutHostingGroupsInput_schema); - - -// File: EventCreateOrConnectWithoutHostingGroupsInput.schema.ts -const __makeSchema_EventCreateOrConnectWithoutHostingGroupsInput_schema = () => z.object({ - get where(){ return EventWhereUniqueInputObjectSchema; }, - create: z.union([EventCreateWithoutHostingGroupsInputObjectSchema, EventUncheckedCreateWithoutHostingGroupsInputObjectSchema]) -}).strict(); -export const EventCreateOrConnectWithoutHostingGroupsInputObjectSchema: z.ZodType = z.lazy(__makeSchema_EventCreateOrConnectWithoutHostingGroupsInput_schema) as unknown as z.ZodType; -export const EventCreateOrConnectWithoutHostingGroupsInputObjectZodSchema = z.lazy(__makeSchema_EventCreateOrConnectWithoutHostingGroupsInput_schema); - - -// File: GroupUpsertWithoutEventsInput.schema.ts -const __makeSchema_GroupUpsertWithoutEventsInput_schema = () => z.object({ - update: z.union([GroupUpdateWithoutEventsInputObjectSchema, GroupUncheckedUpdateWithoutEventsInputObjectSchema]), - create: z.union([GroupCreateWithoutEventsInputObjectSchema, GroupUncheckedCreateWithoutEventsInputObjectSchema]), - get where(){ return GroupWhereInputObjectSchema.optional(); } -}).strict(); -export const GroupUpsertWithoutEventsInputObjectSchema: z.ZodType = z.lazy(__makeSchema_GroupUpsertWithoutEventsInput_schema) as unknown as z.ZodType; -export const GroupUpsertWithoutEventsInputObjectZodSchema = z.lazy(__makeSchema_GroupUpsertWithoutEventsInput_schema); - - -// File: GroupUpdateToOneWithWhereWithoutEventsInput.schema.ts -const __makeSchema_GroupUpdateToOneWithWhereWithoutEventsInput_schema = () => z.object({ - get where(){ return GroupWhereInputObjectSchema.optional(); }, - data: z.union([GroupUpdateWithoutEventsInputObjectSchema, GroupUncheckedUpdateWithoutEventsInputObjectSchema]) -}).strict(); -export const GroupUpdateToOneWithWhereWithoutEventsInputObjectSchema: z.ZodType = z.lazy(__makeSchema_GroupUpdateToOneWithWhereWithoutEventsInput_schema) as unknown as z.ZodType; -export const GroupUpdateToOneWithWhereWithoutEventsInputObjectZodSchema = z.lazy(__makeSchema_GroupUpdateToOneWithWhereWithoutEventsInput_schema); - - -// File: GroupUpdateWithoutEventsInput.schema.ts -const __makeSchema_GroupUpdateWithoutEventsInput_schema = () => z.object({ - slug: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - abbreviation: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - name: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - shortDescription: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - description: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - imageUrl: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - email: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - contactUrl: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - slackUrl: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - showLeaderAsContact: z.union([z.boolean(), BoolFieldUpdateOperationsInputObjectSchema]).optional(), - createdAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - deactivatedAt: z.union([z.coerce.date(), NullableDateTimeFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - workspaceGroupId: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - memberVisibility: z.union([GroupMemberVisibilitySchema, EnumGroupMemberVisibilityFieldUpdateOperationsInputObjectSchema]).optional(), - recruitmentMethod: z.union([GroupRecruitmentMethodSchema, EnumGroupRecruitmentMethodFieldUpdateOperationsInputObjectSchema]).optional(), - type: z.union([GroupTypeSchema, EnumGroupTypeFieldUpdateOperationsInputObjectSchema]).optional(), - get contests(){ return ContestUpdateManyWithoutGroupsNestedInputObjectSchema.optional(); }, - get memberships(){ return GroupMembershipUpdateManyWithoutGroupNestedInputObjectSchema.optional(); }, - get marks(){ return MarkGroupUpdateManyWithoutGroupNestedInputObjectSchema.optional(); }, - get roles(){ return GroupRoleUpdateManyWithoutGroupNestedInputObjectSchema.optional(); }, - get notifications(){ return NotificationUpdateManyWithoutActorGroupNestedInputObjectSchema.optional(); } -}).strict(); -export const GroupUpdateWithoutEventsInputObjectSchema: z.ZodType = z.lazy(__makeSchema_GroupUpdateWithoutEventsInput_schema) as unknown as z.ZodType; -export const GroupUpdateWithoutEventsInputObjectZodSchema = z.lazy(__makeSchema_GroupUpdateWithoutEventsInput_schema); - - -// File: GroupUncheckedUpdateWithoutEventsInput.schema.ts -const __makeSchema_GroupUncheckedUpdateWithoutEventsInput_schema = () => z.object({ - slug: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - abbreviation: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - name: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - shortDescription: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - description: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - imageUrl: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - email: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - contactUrl: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - slackUrl: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - showLeaderAsContact: z.union([z.boolean(), BoolFieldUpdateOperationsInputObjectSchema]).optional(), - createdAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - deactivatedAt: z.union([z.coerce.date(), NullableDateTimeFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - workspaceGroupId: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - memberVisibility: z.union([GroupMemberVisibilitySchema, EnumGroupMemberVisibilityFieldUpdateOperationsInputObjectSchema]).optional(), - recruitmentMethod: z.union([GroupRecruitmentMethodSchema, EnumGroupRecruitmentMethodFieldUpdateOperationsInputObjectSchema]).optional(), - type: z.union([GroupTypeSchema, EnumGroupTypeFieldUpdateOperationsInputObjectSchema]).optional(), - get contests(){ return ContestUncheckedUpdateManyWithoutGroupsNestedInputObjectSchema.optional(); }, - get memberships(){ return GroupMembershipUncheckedUpdateManyWithoutGroupNestedInputObjectSchema.optional(); }, - get marks(){ return MarkGroupUncheckedUpdateManyWithoutGroupNestedInputObjectSchema.optional(); }, - get roles(){ return GroupRoleUncheckedUpdateManyWithoutGroupNestedInputObjectSchema.optional(); }, - get notifications(){ return NotificationUncheckedUpdateManyWithoutActorGroupNestedInputObjectSchema.optional(); } -}).strict(); -export const GroupUncheckedUpdateWithoutEventsInputObjectSchema: z.ZodType = z.lazy(__makeSchema_GroupUncheckedUpdateWithoutEventsInput_schema) as unknown as z.ZodType; -export const GroupUncheckedUpdateWithoutEventsInputObjectZodSchema = z.lazy(__makeSchema_GroupUncheckedUpdateWithoutEventsInput_schema); - - -// File: EventUpsertWithoutHostingGroupsInput.schema.ts -const __makeSchema_EventUpsertWithoutHostingGroupsInput_schema = () => z.object({ - update: z.union([EventUpdateWithoutHostingGroupsInputObjectSchema, EventUncheckedUpdateWithoutHostingGroupsInputObjectSchema]), - create: z.union([EventCreateWithoutHostingGroupsInputObjectSchema, EventUncheckedCreateWithoutHostingGroupsInputObjectSchema]), - get where(){ return EventWhereInputObjectSchema.optional(); } -}).strict(); -export const EventUpsertWithoutHostingGroupsInputObjectSchema: z.ZodType = z.lazy(__makeSchema_EventUpsertWithoutHostingGroupsInput_schema) as unknown as z.ZodType; -export const EventUpsertWithoutHostingGroupsInputObjectZodSchema = z.lazy(__makeSchema_EventUpsertWithoutHostingGroupsInput_schema); - - -// File: EventUpdateToOneWithWhereWithoutHostingGroupsInput.schema.ts -const __makeSchema_EventUpdateToOneWithWhereWithoutHostingGroupsInput_schema = () => z.object({ - get where(){ return EventWhereInputObjectSchema.optional(); }, - data: z.union([EventUpdateWithoutHostingGroupsInputObjectSchema, EventUncheckedUpdateWithoutHostingGroupsInputObjectSchema]) -}).strict(); -export const EventUpdateToOneWithWhereWithoutHostingGroupsInputObjectSchema: z.ZodType = z.lazy(__makeSchema_EventUpdateToOneWithWhereWithoutHostingGroupsInput_schema) as unknown as z.ZodType; -export const EventUpdateToOneWithWhereWithoutHostingGroupsInputObjectZodSchema = z.lazy(__makeSchema_EventUpdateToOneWithWhereWithoutHostingGroupsInput_schema); - - -// File: EventUpdateWithoutHostingGroupsInput.schema.ts -const __makeSchema_EventUpdateWithoutHostingGroupsInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - title: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - start: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - end: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - status: z.union([EventStatusSchema, EnumEventStatusFieldUpdateOperationsInputObjectSchema]).optional(), - description: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - shortDescription: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - imageUrl: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - locationTitle: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - locationAddress: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - locationLink: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - type: z.union([EventTypeSchema, EnumEventTypeFieldUpdateOperationsInputObjectSchema]).optional(), - markForMissedAttendance: z.union([z.boolean(), BoolFieldUpdateOperationsInputObjectSchema]).optional(), - createdAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - updatedAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - metadataImportId: z.union([z.number().int(), NullableIntFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - get feedbackForm(){ return FeedbackFormUpdateOneWithoutEventNestedInputObjectSchema.optional(); }, - get fadderuke(){ return FadderukeUpdateOneWithoutEventNestedInputObjectSchema.optional(); }, - get attendance(){ return AttendanceUpdateOneWithoutEventsNestedInputObjectSchema.optional(); }, - get parent(){ return EventUpdateOneWithoutChildrenNestedInputObjectSchema.optional(); }, - get children(){ return EventUpdateManyWithoutParentNestedInputObjectSchema.optional(); }, - get contest(){ return ContestUpdateOneWithoutEventsNestedInputObjectSchema.optional(); }, - get companies(){ return EventCompanyUpdateManyWithoutEventNestedInputObjectSchema.optional(); }, - get deregisterReasons(){ return DeregisterReasonUpdateManyWithoutEventNestedInputObjectSchema.optional(); } -}).strict(); -export const EventUpdateWithoutHostingGroupsInputObjectSchema: z.ZodType = z.lazy(__makeSchema_EventUpdateWithoutHostingGroupsInput_schema) as unknown as z.ZodType; -export const EventUpdateWithoutHostingGroupsInputObjectZodSchema = z.lazy(__makeSchema_EventUpdateWithoutHostingGroupsInput_schema); - - -// File: EventUncheckedUpdateWithoutHostingGroupsInput.schema.ts -const __makeSchema_EventUncheckedUpdateWithoutHostingGroupsInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - title: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - start: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - end: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - status: z.union([EventStatusSchema, EnumEventStatusFieldUpdateOperationsInputObjectSchema]).optional(), - description: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - shortDescription: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - imageUrl: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - locationTitle: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - locationAddress: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - locationLink: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - type: z.union([EventTypeSchema, EnumEventTypeFieldUpdateOperationsInputObjectSchema]).optional(), - markForMissedAttendance: z.union([z.boolean(), BoolFieldUpdateOperationsInputObjectSchema]).optional(), - createdAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - updatedAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - attendanceId: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - parentId: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - contestId: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - metadataImportId: z.union([z.number().int(), NullableIntFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - get feedbackForm(){ return FeedbackFormUncheckedUpdateOneWithoutEventNestedInputObjectSchema.optional(); }, - get fadderuke(){ return FadderukeUncheckedUpdateOneWithoutEventNestedInputObjectSchema.optional(); }, - get children(){ return EventUncheckedUpdateManyWithoutParentNestedInputObjectSchema.optional(); }, - get companies(){ return EventCompanyUncheckedUpdateManyWithoutEventNestedInputObjectSchema.optional(); }, - get deregisterReasons(){ return DeregisterReasonUncheckedUpdateManyWithoutEventNestedInputObjectSchema.optional(); } -}).strict(); -export const EventUncheckedUpdateWithoutHostingGroupsInputObjectSchema: z.ZodType = z.lazy(__makeSchema_EventUncheckedUpdateWithoutHostingGroupsInput_schema) as unknown as z.ZodType; -export const EventUncheckedUpdateWithoutHostingGroupsInputObjectZodSchema = z.lazy(__makeSchema_EventUncheckedUpdateWithoutHostingGroupsInput_schema); - - -// File: CompanyCreateWithoutJobListingInput.schema.ts -const __makeSchema_CompanyCreateWithoutJobListingInput_schema = () => z.object({ - id: z.string().optional(), - name: z.string(), - slug: z.string(), - description: z.string().optional().nullable(), - phone: z.string().optional().nullable(), - email: z.string().optional().nullable(), - website: z.string(), - location: z.string().optional().nullable(), - imageUrl: z.string().optional().nullable(), - createdAt: z.coerce.date().optional(), - updatedAt: z.coerce.date().optional(), - get events(){ return EventCompanyCreateNestedManyWithoutCompanyInputObjectSchema.optional(); } -}).strict(); -export const CompanyCreateWithoutJobListingInputObjectSchema: z.ZodType = z.lazy(__makeSchema_CompanyCreateWithoutJobListingInput_schema) as unknown as z.ZodType; -export const CompanyCreateWithoutJobListingInputObjectZodSchema = z.lazy(__makeSchema_CompanyCreateWithoutJobListingInput_schema); - - -// File: CompanyUncheckedCreateWithoutJobListingInput.schema.ts -const __makeSchema_CompanyUncheckedCreateWithoutJobListingInput_schema = () => z.object({ - id: z.string().optional(), - name: z.string(), - slug: z.string(), - description: z.string().optional().nullable(), - phone: z.string().optional().nullable(), - email: z.string().optional().nullable(), - website: z.string(), - location: z.string().optional().nullable(), - imageUrl: z.string().optional().nullable(), - createdAt: z.coerce.date().optional(), - updatedAt: z.coerce.date().optional(), - get events(){ return EventCompanyUncheckedCreateNestedManyWithoutCompanyInputObjectSchema.optional(); } -}).strict(); -export const CompanyUncheckedCreateWithoutJobListingInputObjectSchema: z.ZodType = z.lazy(__makeSchema_CompanyUncheckedCreateWithoutJobListingInput_schema) as unknown as z.ZodType; -export const CompanyUncheckedCreateWithoutJobListingInputObjectZodSchema = z.lazy(__makeSchema_CompanyUncheckedCreateWithoutJobListingInput_schema); - - -// File: CompanyCreateOrConnectWithoutJobListingInput.schema.ts -const __makeSchema_CompanyCreateOrConnectWithoutJobListingInput_schema = () => z.object({ - get where(){ return CompanyWhereUniqueInputObjectSchema; }, - create: z.union([CompanyCreateWithoutJobListingInputObjectSchema, CompanyUncheckedCreateWithoutJobListingInputObjectSchema]) -}).strict(); -export const CompanyCreateOrConnectWithoutJobListingInputObjectSchema: z.ZodType = z.lazy(__makeSchema_CompanyCreateOrConnectWithoutJobListingInput_schema) as unknown as z.ZodType; -export const CompanyCreateOrConnectWithoutJobListingInputObjectZodSchema = z.lazy(__makeSchema_CompanyCreateOrConnectWithoutJobListingInput_schema); - - -// File: JobListingLocationCreateWithoutJobListingInput.schema.ts -const __makeSchema_JobListingLocationCreateWithoutJobListingInput_schema = () => z.object({ - name: z.string(), - createdAt: z.coerce.date().optional() -}).strict(); -export const JobListingLocationCreateWithoutJobListingInputObjectSchema: z.ZodType = z.lazy(__makeSchema_JobListingLocationCreateWithoutJobListingInput_schema) as unknown as z.ZodType; -export const JobListingLocationCreateWithoutJobListingInputObjectZodSchema = z.lazy(__makeSchema_JobListingLocationCreateWithoutJobListingInput_schema); - - -// File: JobListingLocationUncheckedCreateWithoutJobListingInput.schema.ts -const __makeSchema_JobListingLocationUncheckedCreateWithoutJobListingInput_schema = () => z.object({ - name: z.string(), - createdAt: z.coerce.date().optional() -}).strict(); -export const JobListingLocationUncheckedCreateWithoutJobListingInputObjectSchema: z.ZodType = z.lazy(__makeSchema_JobListingLocationUncheckedCreateWithoutJobListingInput_schema) as unknown as z.ZodType; -export const JobListingLocationUncheckedCreateWithoutJobListingInputObjectZodSchema = z.lazy(__makeSchema_JobListingLocationUncheckedCreateWithoutJobListingInput_schema); - - -// File: JobListingLocationCreateOrConnectWithoutJobListingInput.schema.ts -const __makeSchema_JobListingLocationCreateOrConnectWithoutJobListingInput_schema = () => z.object({ - get where(){ return JobListingLocationWhereUniqueInputObjectSchema; }, - create: z.union([JobListingLocationCreateWithoutJobListingInputObjectSchema, JobListingLocationUncheckedCreateWithoutJobListingInputObjectSchema]) -}).strict(); -export const JobListingLocationCreateOrConnectWithoutJobListingInputObjectSchema: z.ZodType = z.lazy(__makeSchema_JobListingLocationCreateOrConnectWithoutJobListingInput_schema) as unknown as z.ZodType; -export const JobListingLocationCreateOrConnectWithoutJobListingInputObjectZodSchema = z.lazy(__makeSchema_JobListingLocationCreateOrConnectWithoutJobListingInput_schema); - - -// File: JobListingLocationCreateManyJobListingInputEnvelope.schema.ts -const __makeSchema_JobListingLocationCreateManyJobListingInputEnvelope_schema = () => z.object({ - data: z.union([JobListingLocationCreateManyJobListingInputObjectSchema, JobListingLocationCreateManyJobListingInputObjectSchema.array()]), - skipDuplicates: z.boolean().optional() -}).strict(); -export const JobListingLocationCreateManyJobListingInputEnvelopeObjectSchema: z.ZodType = z.lazy(__makeSchema_JobListingLocationCreateManyJobListingInputEnvelope_schema) as unknown as z.ZodType; -export const JobListingLocationCreateManyJobListingInputEnvelopeObjectZodSchema = z.lazy(__makeSchema_JobListingLocationCreateManyJobListingInputEnvelope_schema); - - -// File: CompanyUpsertWithoutJobListingInput.schema.ts -const __makeSchema_CompanyUpsertWithoutJobListingInput_schema = () => z.object({ - update: z.union([CompanyUpdateWithoutJobListingInputObjectSchema, CompanyUncheckedUpdateWithoutJobListingInputObjectSchema]), - create: z.union([CompanyCreateWithoutJobListingInputObjectSchema, CompanyUncheckedCreateWithoutJobListingInputObjectSchema]), - get where(){ return CompanyWhereInputObjectSchema.optional(); } -}).strict(); -export const CompanyUpsertWithoutJobListingInputObjectSchema: z.ZodType = z.lazy(__makeSchema_CompanyUpsertWithoutJobListingInput_schema) as unknown as z.ZodType; -export const CompanyUpsertWithoutJobListingInputObjectZodSchema = z.lazy(__makeSchema_CompanyUpsertWithoutJobListingInput_schema); - - -// File: CompanyUpdateToOneWithWhereWithoutJobListingInput.schema.ts -const __makeSchema_CompanyUpdateToOneWithWhereWithoutJobListingInput_schema = () => z.object({ - get where(){ return CompanyWhereInputObjectSchema.optional(); }, - data: z.union([CompanyUpdateWithoutJobListingInputObjectSchema, CompanyUncheckedUpdateWithoutJobListingInputObjectSchema]) -}).strict(); -export const CompanyUpdateToOneWithWhereWithoutJobListingInputObjectSchema: z.ZodType = z.lazy(__makeSchema_CompanyUpdateToOneWithWhereWithoutJobListingInput_schema) as unknown as z.ZodType; -export const CompanyUpdateToOneWithWhereWithoutJobListingInputObjectZodSchema = z.lazy(__makeSchema_CompanyUpdateToOneWithWhereWithoutJobListingInput_schema); - - -// File: CompanyUpdateWithoutJobListingInput.schema.ts -const __makeSchema_CompanyUpdateWithoutJobListingInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - name: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - slug: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - description: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - phone: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - email: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - website: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - location: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - imageUrl: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - createdAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - updatedAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - get events(){ return EventCompanyUpdateManyWithoutCompanyNestedInputObjectSchema.optional(); } -}).strict(); -export const CompanyUpdateWithoutJobListingInputObjectSchema: z.ZodType = z.lazy(__makeSchema_CompanyUpdateWithoutJobListingInput_schema) as unknown as z.ZodType; -export const CompanyUpdateWithoutJobListingInputObjectZodSchema = z.lazy(__makeSchema_CompanyUpdateWithoutJobListingInput_schema); - - -// File: CompanyUncheckedUpdateWithoutJobListingInput.schema.ts -const __makeSchema_CompanyUncheckedUpdateWithoutJobListingInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - name: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - slug: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - description: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - phone: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - email: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - website: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - location: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - imageUrl: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - createdAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - updatedAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - get events(){ return EventCompanyUncheckedUpdateManyWithoutCompanyNestedInputObjectSchema.optional(); } -}).strict(); -export const CompanyUncheckedUpdateWithoutJobListingInputObjectSchema: z.ZodType = z.lazy(__makeSchema_CompanyUncheckedUpdateWithoutJobListingInput_schema) as unknown as z.ZodType; -export const CompanyUncheckedUpdateWithoutJobListingInputObjectZodSchema = z.lazy(__makeSchema_CompanyUncheckedUpdateWithoutJobListingInput_schema); - - -// File: JobListingLocationUpsertWithWhereUniqueWithoutJobListingInput.schema.ts -const __makeSchema_JobListingLocationUpsertWithWhereUniqueWithoutJobListingInput_schema = () => z.object({ - get where(){ return JobListingLocationWhereUniqueInputObjectSchema; }, - update: z.union([JobListingLocationUpdateWithoutJobListingInputObjectSchema, JobListingLocationUncheckedUpdateWithoutJobListingInputObjectSchema]), - create: z.union([JobListingLocationCreateWithoutJobListingInputObjectSchema, JobListingLocationUncheckedCreateWithoutJobListingInputObjectSchema]) -}).strict(); -export const JobListingLocationUpsertWithWhereUniqueWithoutJobListingInputObjectSchema: z.ZodType = z.lazy(__makeSchema_JobListingLocationUpsertWithWhereUniqueWithoutJobListingInput_schema) as unknown as z.ZodType; -export const JobListingLocationUpsertWithWhereUniqueWithoutJobListingInputObjectZodSchema = z.lazy(__makeSchema_JobListingLocationUpsertWithWhereUniqueWithoutJobListingInput_schema); - - -// File: JobListingLocationUpdateWithWhereUniqueWithoutJobListingInput.schema.ts -const __makeSchema_JobListingLocationUpdateWithWhereUniqueWithoutJobListingInput_schema = () => z.object({ - get where(){ return JobListingLocationWhereUniqueInputObjectSchema; }, - data: z.union([JobListingLocationUpdateWithoutJobListingInputObjectSchema, JobListingLocationUncheckedUpdateWithoutJobListingInputObjectSchema]) -}).strict(); -export const JobListingLocationUpdateWithWhereUniqueWithoutJobListingInputObjectSchema: z.ZodType = z.lazy(__makeSchema_JobListingLocationUpdateWithWhereUniqueWithoutJobListingInput_schema) as unknown as z.ZodType; -export const JobListingLocationUpdateWithWhereUniqueWithoutJobListingInputObjectZodSchema = z.lazy(__makeSchema_JobListingLocationUpdateWithWhereUniqueWithoutJobListingInput_schema); - - -// File: JobListingLocationUpdateManyWithWhereWithoutJobListingInput.schema.ts -const __makeSchema_JobListingLocationUpdateManyWithWhereWithoutJobListingInput_schema = () => z.object({ - get where(){ return JobListingLocationScalarWhereInputObjectSchema; }, - data: z.union([JobListingLocationUpdateManyMutationInputObjectSchema, JobListingLocationUncheckedUpdateManyWithoutJobListingInputObjectSchema]) -}).strict(); -export const JobListingLocationUpdateManyWithWhereWithoutJobListingInputObjectSchema: z.ZodType = z.lazy(__makeSchema_JobListingLocationUpdateManyWithWhereWithoutJobListingInput_schema) as unknown as z.ZodType; -export const JobListingLocationUpdateManyWithWhereWithoutJobListingInputObjectZodSchema = z.lazy(__makeSchema_JobListingLocationUpdateManyWithWhereWithoutJobListingInput_schema); - - -// File: JobListingLocationScalarWhereInput.schema.ts -const __makeSchema_JobListingLocationScalarWhereInput_schema = () => z.object({ - AND: z.union([JobListingLocationScalarWhereInputObjectSchema, JobListingLocationScalarWhereInputObjectSchema.array()]).optional(), - get OR(){ return JobListingLocationScalarWhereInputObjectSchema.array().optional(); }, - NOT: z.union([JobListingLocationScalarWhereInputObjectSchema, JobListingLocationScalarWhereInputObjectSchema.array()]).optional(), - name: z.union([StringFilterObjectSchema, z.string()]).optional(), - createdAt: z.union([DateTimeFilterObjectSchema, z.coerce.date()]).optional(), - jobListingId: z.union([StringFilterObjectSchema, z.string()]).optional() -}).strict(); -export const JobListingLocationScalarWhereInputObjectSchema: z.ZodType = z.lazy(__makeSchema_JobListingLocationScalarWhereInput_schema) as unknown as z.ZodType; -export const JobListingLocationScalarWhereInputObjectZodSchema = z.lazy(__makeSchema_JobListingLocationScalarWhereInput_schema); - - -// File: JobListingCreateWithoutLocationsInput.schema.ts -const __makeSchema_JobListingCreateWithoutLocationsInput_schema = () => z.object({ - id: z.string().optional(), - title: z.string(), - description: z.string(), - shortDescription: z.string().optional().nullable(), - start: z.coerce.date(), - end: z.coerce.date(), - featured: z.boolean(), - hidden: z.boolean(), - deadline: z.coerce.date().optional().nullable(), - employment: EmploymentTypeSchema, - applicationLink: z.string().optional().nullable(), - applicationEmail: z.string().optional().nullable(), - rollingAdmission: z.boolean(), - createdAt: z.coerce.date().optional(), - updatedAt: z.coerce.date().optional(), - get company(){ return CompanyCreateNestedOneWithoutJobListingInputObjectSchema; } -}).strict(); -export const JobListingCreateWithoutLocationsInputObjectSchema: z.ZodType = z.lazy(__makeSchema_JobListingCreateWithoutLocationsInput_schema) as unknown as z.ZodType; -export const JobListingCreateWithoutLocationsInputObjectZodSchema = z.lazy(__makeSchema_JobListingCreateWithoutLocationsInput_schema); - - -// File: JobListingUncheckedCreateWithoutLocationsInput.schema.ts -const __makeSchema_JobListingUncheckedCreateWithoutLocationsInput_schema = () => z.object({ - id: z.string().optional(), - title: z.string(), - description: z.string(), - shortDescription: z.string().optional().nullable(), - start: z.coerce.date(), - end: z.coerce.date(), - featured: z.boolean(), - hidden: z.boolean(), - deadline: z.coerce.date().optional().nullable(), - employment: EmploymentTypeSchema, - applicationLink: z.string().optional().nullable(), - applicationEmail: z.string().optional().nullable(), - rollingAdmission: z.boolean(), - createdAt: z.coerce.date().optional(), - updatedAt: z.coerce.date().optional(), - companyId: z.string() -}).strict(); -export const JobListingUncheckedCreateWithoutLocationsInputObjectSchema: z.ZodType = z.lazy(__makeSchema_JobListingUncheckedCreateWithoutLocationsInput_schema) as unknown as z.ZodType; -export const JobListingUncheckedCreateWithoutLocationsInputObjectZodSchema = z.lazy(__makeSchema_JobListingUncheckedCreateWithoutLocationsInput_schema); - - -// File: JobListingCreateOrConnectWithoutLocationsInput.schema.ts -const __makeSchema_JobListingCreateOrConnectWithoutLocationsInput_schema = () => z.object({ - get where(){ return JobListingWhereUniqueInputObjectSchema; }, - create: z.union([JobListingCreateWithoutLocationsInputObjectSchema, JobListingUncheckedCreateWithoutLocationsInputObjectSchema]) -}).strict(); -export const JobListingCreateOrConnectWithoutLocationsInputObjectSchema: z.ZodType = z.lazy(__makeSchema_JobListingCreateOrConnectWithoutLocationsInput_schema) as unknown as z.ZodType; -export const JobListingCreateOrConnectWithoutLocationsInputObjectZodSchema = z.lazy(__makeSchema_JobListingCreateOrConnectWithoutLocationsInput_schema); - - -// File: JobListingUpsertWithoutLocationsInput.schema.ts -const __makeSchema_JobListingUpsertWithoutLocationsInput_schema = () => z.object({ - update: z.union([JobListingUpdateWithoutLocationsInputObjectSchema, JobListingUncheckedUpdateWithoutLocationsInputObjectSchema]), - create: z.union([JobListingCreateWithoutLocationsInputObjectSchema, JobListingUncheckedCreateWithoutLocationsInputObjectSchema]), - get where(){ return JobListingWhereInputObjectSchema.optional(); } -}).strict(); -export const JobListingUpsertWithoutLocationsInputObjectSchema: z.ZodType = z.lazy(__makeSchema_JobListingUpsertWithoutLocationsInput_schema) as unknown as z.ZodType; -export const JobListingUpsertWithoutLocationsInputObjectZodSchema = z.lazy(__makeSchema_JobListingUpsertWithoutLocationsInput_schema); - - -// File: JobListingUpdateToOneWithWhereWithoutLocationsInput.schema.ts -const __makeSchema_JobListingUpdateToOneWithWhereWithoutLocationsInput_schema = () => z.object({ - get where(){ return JobListingWhereInputObjectSchema.optional(); }, - data: z.union([JobListingUpdateWithoutLocationsInputObjectSchema, JobListingUncheckedUpdateWithoutLocationsInputObjectSchema]) -}).strict(); -export const JobListingUpdateToOneWithWhereWithoutLocationsInputObjectSchema: z.ZodType = z.lazy(__makeSchema_JobListingUpdateToOneWithWhereWithoutLocationsInput_schema) as unknown as z.ZodType; -export const JobListingUpdateToOneWithWhereWithoutLocationsInputObjectZodSchema = z.lazy(__makeSchema_JobListingUpdateToOneWithWhereWithoutLocationsInput_schema); - - -// File: JobListingUpdateWithoutLocationsInput.schema.ts -const __makeSchema_JobListingUpdateWithoutLocationsInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - title: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - description: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - shortDescription: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - start: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - end: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - featured: z.union([z.boolean(), BoolFieldUpdateOperationsInputObjectSchema]).optional(), - hidden: z.union([z.boolean(), BoolFieldUpdateOperationsInputObjectSchema]).optional(), - deadline: z.union([z.coerce.date(), NullableDateTimeFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - employment: z.union([EmploymentTypeSchema, EnumEmploymentTypeFieldUpdateOperationsInputObjectSchema]).optional(), - applicationLink: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - applicationEmail: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - rollingAdmission: z.union([z.boolean(), BoolFieldUpdateOperationsInputObjectSchema]).optional(), - createdAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - updatedAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - get company(){ return CompanyUpdateOneRequiredWithoutJobListingNestedInputObjectSchema.optional(); } -}).strict(); -export const JobListingUpdateWithoutLocationsInputObjectSchema: z.ZodType = z.lazy(__makeSchema_JobListingUpdateWithoutLocationsInput_schema) as unknown as z.ZodType; -export const JobListingUpdateWithoutLocationsInputObjectZodSchema = z.lazy(__makeSchema_JobListingUpdateWithoutLocationsInput_schema); - - -// File: JobListingUncheckedUpdateWithoutLocationsInput.schema.ts -const __makeSchema_JobListingUncheckedUpdateWithoutLocationsInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - title: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - description: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - shortDescription: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - start: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - end: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - featured: z.union([z.boolean(), BoolFieldUpdateOperationsInputObjectSchema]).optional(), - hidden: z.union([z.boolean(), BoolFieldUpdateOperationsInputObjectSchema]).optional(), - deadline: z.union([z.coerce.date(), NullableDateTimeFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - employment: z.union([EmploymentTypeSchema, EnumEmploymentTypeFieldUpdateOperationsInputObjectSchema]).optional(), - applicationLink: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - applicationEmail: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - rollingAdmission: z.union([z.boolean(), BoolFieldUpdateOperationsInputObjectSchema]).optional(), - createdAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - updatedAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - companyId: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional() -}).strict(); -export const JobListingUncheckedUpdateWithoutLocationsInputObjectSchema: z.ZodType = z.lazy(__makeSchema_JobListingUncheckedUpdateWithoutLocationsInput_schema) as unknown as z.ZodType; -export const JobListingUncheckedUpdateWithoutLocationsInputObjectZodSchema = z.lazy(__makeSchema_JobListingUncheckedUpdateWithoutLocationsInput_schema); - - -// File: ArticleTagLinkCreateWithoutArticleInput.schema.ts -const __makeSchema_ArticleTagLinkCreateWithoutArticleInput_schema = () => z.object({ - get tag(){ return ArticleTagCreateNestedOneWithoutArticlesInputObjectSchema; } -}).strict(); -export const ArticleTagLinkCreateWithoutArticleInputObjectSchema: z.ZodType = z.lazy(__makeSchema_ArticleTagLinkCreateWithoutArticleInput_schema) as unknown as z.ZodType; -export const ArticleTagLinkCreateWithoutArticleInputObjectZodSchema = z.lazy(__makeSchema_ArticleTagLinkCreateWithoutArticleInput_schema); - - -// File: ArticleTagLinkUncheckedCreateWithoutArticleInput.schema.ts -const __makeSchema_ArticleTagLinkUncheckedCreateWithoutArticleInput_schema = () => z.object({ - tagName: z.string() -}).strict(); -export const ArticleTagLinkUncheckedCreateWithoutArticleInputObjectSchema: z.ZodType = z.lazy(__makeSchema_ArticleTagLinkUncheckedCreateWithoutArticleInput_schema) as unknown as z.ZodType; -export const ArticleTagLinkUncheckedCreateWithoutArticleInputObjectZodSchema = z.lazy(__makeSchema_ArticleTagLinkUncheckedCreateWithoutArticleInput_schema); - - -// File: ArticleTagLinkCreateOrConnectWithoutArticleInput.schema.ts -const __makeSchema_ArticleTagLinkCreateOrConnectWithoutArticleInput_schema = () => z.object({ - get where(){ return ArticleTagLinkWhereUniqueInputObjectSchema; }, - create: z.union([ArticleTagLinkCreateWithoutArticleInputObjectSchema, ArticleTagLinkUncheckedCreateWithoutArticleInputObjectSchema]) -}).strict(); -export const ArticleTagLinkCreateOrConnectWithoutArticleInputObjectSchema: z.ZodType = z.lazy(__makeSchema_ArticleTagLinkCreateOrConnectWithoutArticleInput_schema) as unknown as z.ZodType; -export const ArticleTagLinkCreateOrConnectWithoutArticleInputObjectZodSchema = z.lazy(__makeSchema_ArticleTagLinkCreateOrConnectWithoutArticleInput_schema); - - -// File: ArticleTagLinkCreateManyArticleInputEnvelope.schema.ts -const __makeSchema_ArticleTagLinkCreateManyArticleInputEnvelope_schema = () => z.object({ - data: z.union([ArticleTagLinkCreateManyArticleInputObjectSchema, ArticleTagLinkCreateManyArticleInputObjectSchema.array()]), - skipDuplicates: z.boolean().optional() -}).strict(); -export const ArticleTagLinkCreateManyArticleInputEnvelopeObjectSchema: z.ZodType = z.lazy(__makeSchema_ArticleTagLinkCreateManyArticleInputEnvelope_schema) as unknown as z.ZodType; -export const ArticleTagLinkCreateManyArticleInputEnvelopeObjectZodSchema = z.lazy(__makeSchema_ArticleTagLinkCreateManyArticleInputEnvelope_schema); - - -// File: ArticleTagLinkUpsertWithWhereUniqueWithoutArticleInput.schema.ts -const __makeSchema_ArticleTagLinkUpsertWithWhereUniqueWithoutArticleInput_schema = () => z.object({ - get where(){ return ArticleTagLinkWhereUniqueInputObjectSchema; }, - update: z.union([ArticleTagLinkUpdateWithoutArticleInputObjectSchema, ArticleTagLinkUncheckedUpdateWithoutArticleInputObjectSchema]), - create: z.union([ArticleTagLinkCreateWithoutArticleInputObjectSchema, ArticleTagLinkUncheckedCreateWithoutArticleInputObjectSchema]) -}).strict(); -export const ArticleTagLinkUpsertWithWhereUniqueWithoutArticleInputObjectSchema: z.ZodType = z.lazy(__makeSchema_ArticleTagLinkUpsertWithWhereUniqueWithoutArticleInput_schema) as unknown as z.ZodType; -export const ArticleTagLinkUpsertWithWhereUniqueWithoutArticleInputObjectZodSchema = z.lazy(__makeSchema_ArticleTagLinkUpsertWithWhereUniqueWithoutArticleInput_schema); - - -// File: ArticleTagLinkUpdateWithWhereUniqueWithoutArticleInput.schema.ts -const __makeSchema_ArticleTagLinkUpdateWithWhereUniqueWithoutArticleInput_schema = () => z.object({ - get where(){ return ArticleTagLinkWhereUniqueInputObjectSchema; }, - data: z.union([ArticleTagLinkUpdateWithoutArticleInputObjectSchema, ArticleTagLinkUncheckedUpdateWithoutArticleInputObjectSchema]) -}).strict(); -export const ArticleTagLinkUpdateWithWhereUniqueWithoutArticleInputObjectSchema: z.ZodType = z.lazy(__makeSchema_ArticleTagLinkUpdateWithWhereUniqueWithoutArticleInput_schema) as unknown as z.ZodType; -export const ArticleTagLinkUpdateWithWhereUniqueWithoutArticleInputObjectZodSchema = z.lazy(__makeSchema_ArticleTagLinkUpdateWithWhereUniqueWithoutArticleInput_schema); - - -// File: ArticleTagLinkUpdateManyWithWhereWithoutArticleInput.schema.ts -const __makeSchema_ArticleTagLinkUpdateManyWithWhereWithoutArticleInput_schema = () => z.object({ - get where(){ return ArticleTagLinkScalarWhereInputObjectSchema; }, - data: z.union([ArticleTagLinkUpdateManyMutationInputObjectSchema, ArticleTagLinkUncheckedUpdateManyWithoutArticleInputObjectSchema]) -}).strict(); -export const ArticleTagLinkUpdateManyWithWhereWithoutArticleInputObjectSchema: z.ZodType = z.lazy(__makeSchema_ArticleTagLinkUpdateManyWithWhereWithoutArticleInput_schema) as unknown as z.ZodType; -export const ArticleTagLinkUpdateManyWithWhereWithoutArticleInputObjectZodSchema = z.lazy(__makeSchema_ArticleTagLinkUpdateManyWithWhereWithoutArticleInput_schema); - - -// File: ArticleTagLinkScalarWhereInput.schema.ts -const __makeSchema_ArticleTagLinkScalarWhereInput_schema = () => z.object({ - AND: z.union([ArticleTagLinkScalarWhereInputObjectSchema, ArticleTagLinkScalarWhereInputObjectSchema.array()]).optional(), - get OR(){ return ArticleTagLinkScalarWhereInputObjectSchema.array().optional(); }, - NOT: z.union([ArticleTagLinkScalarWhereInputObjectSchema, ArticleTagLinkScalarWhereInputObjectSchema.array()]).optional(), - articleId: z.union([StringFilterObjectSchema, z.string()]).optional(), - tagName: z.union([StringFilterObjectSchema, z.string()]).optional() -}).strict(); -export const ArticleTagLinkScalarWhereInputObjectSchema: z.ZodType = z.lazy(__makeSchema_ArticleTagLinkScalarWhereInput_schema) as unknown as z.ZodType; -export const ArticleTagLinkScalarWhereInputObjectZodSchema = z.lazy(__makeSchema_ArticleTagLinkScalarWhereInput_schema); - - -// File: ArticleTagLinkCreateWithoutTagInput.schema.ts -const __makeSchema_ArticleTagLinkCreateWithoutTagInput_schema = () => z.object({ - get article(){ return ArticleCreateNestedOneWithoutTagsInputObjectSchema; } -}).strict(); -export const ArticleTagLinkCreateWithoutTagInputObjectSchema: z.ZodType = z.lazy(__makeSchema_ArticleTagLinkCreateWithoutTagInput_schema) as unknown as z.ZodType; -export const ArticleTagLinkCreateWithoutTagInputObjectZodSchema = z.lazy(__makeSchema_ArticleTagLinkCreateWithoutTagInput_schema); - - -// File: ArticleTagLinkUncheckedCreateWithoutTagInput.schema.ts -const __makeSchema_ArticleTagLinkUncheckedCreateWithoutTagInput_schema = () => z.object({ - articleId: z.string() -}).strict(); -export const ArticleTagLinkUncheckedCreateWithoutTagInputObjectSchema: z.ZodType = z.lazy(__makeSchema_ArticleTagLinkUncheckedCreateWithoutTagInput_schema) as unknown as z.ZodType; -export const ArticleTagLinkUncheckedCreateWithoutTagInputObjectZodSchema = z.lazy(__makeSchema_ArticleTagLinkUncheckedCreateWithoutTagInput_schema); - - -// File: ArticleTagLinkCreateOrConnectWithoutTagInput.schema.ts -const __makeSchema_ArticleTagLinkCreateOrConnectWithoutTagInput_schema = () => z.object({ - get where(){ return ArticleTagLinkWhereUniqueInputObjectSchema; }, - create: z.union([ArticleTagLinkCreateWithoutTagInputObjectSchema, ArticleTagLinkUncheckedCreateWithoutTagInputObjectSchema]) -}).strict(); -export const ArticleTagLinkCreateOrConnectWithoutTagInputObjectSchema: z.ZodType = z.lazy(__makeSchema_ArticleTagLinkCreateOrConnectWithoutTagInput_schema) as unknown as z.ZodType; -export const ArticleTagLinkCreateOrConnectWithoutTagInputObjectZodSchema = z.lazy(__makeSchema_ArticleTagLinkCreateOrConnectWithoutTagInput_schema); - - -// File: ArticleTagLinkCreateManyTagInputEnvelope.schema.ts -const __makeSchema_ArticleTagLinkCreateManyTagInputEnvelope_schema = () => z.object({ - data: z.union([ArticleTagLinkCreateManyTagInputObjectSchema, ArticleTagLinkCreateManyTagInputObjectSchema.array()]), - skipDuplicates: z.boolean().optional() -}).strict(); -export const ArticleTagLinkCreateManyTagInputEnvelopeObjectSchema: z.ZodType = z.lazy(__makeSchema_ArticleTagLinkCreateManyTagInputEnvelope_schema) as unknown as z.ZodType; -export const ArticleTagLinkCreateManyTagInputEnvelopeObjectZodSchema = z.lazy(__makeSchema_ArticleTagLinkCreateManyTagInputEnvelope_schema); - - -// File: ArticleTagLinkUpsertWithWhereUniqueWithoutTagInput.schema.ts -const __makeSchema_ArticleTagLinkUpsertWithWhereUniqueWithoutTagInput_schema = () => z.object({ - get where(){ return ArticleTagLinkWhereUniqueInputObjectSchema; }, - update: z.union([ArticleTagLinkUpdateWithoutTagInputObjectSchema, ArticleTagLinkUncheckedUpdateWithoutTagInputObjectSchema]), - create: z.union([ArticleTagLinkCreateWithoutTagInputObjectSchema, ArticleTagLinkUncheckedCreateWithoutTagInputObjectSchema]) -}).strict(); -export const ArticleTagLinkUpsertWithWhereUniqueWithoutTagInputObjectSchema: z.ZodType = z.lazy(__makeSchema_ArticleTagLinkUpsertWithWhereUniqueWithoutTagInput_schema) as unknown as z.ZodType; -export const ArticleTagLinkUpsertWithWhereUniqueWithoutTagInputObjectZodSchema = z.lazy(__makeSchema_ArticleTagLinkUpsertWithWhereUniqueWithoutTagInput_schema); - - -// File: ArticleTagLinkUpdateWithWhereUniqueWithoutTagInput.schema.ts -const __makeSchema_ArticleTagLinkUpdateWithWhereUniqueWithoutTagInput_schema = () => z.object({ - get where(){ return ArticleTagLinkWhereUniqueInputObjectSchema; }, - data: z.union([ArticleTagLinkUpdateWithoutTagInputObjectSchema, ArticleTagLinkUncheckedUpdateWithoutTagInputObjectSchema]) -}).strict(); -export const ArticleTagLinkUpdateWithWhereUniqueWithoutTagInputObjectSchema: z.ZodType = z.lazy(__makeSchema_ArticleTagLinkUpdateWithWhereUniqueWithoutTagInput_schema) as unknown as z.ZodType; -export const ArticleTagLinkUpdateWithWhereUniqueWithoutTagInputObjectZodSchema = z.lazy(__makeSchema_ArticleTagLinkUpdateWithWhereUniqueWithoutTagInput_schema); - - -// File: ArticleTagLinkUpdateManyWithWhereWithoutTagInput.schema.ts -const __makeSchema_ArticleTagLinkUpdateManyWithWhereWithoutTagInput_schema = () => z.object({ - get where(){ return ArticleTagLinkScalarWhereInputObjectSchema; }, - data: z.union([ArticleTagLinkUpdateManyMutationInputObjectSchema, ArticleTagLinkUncheckedUpdateManyWithoutTagInputObjectSchema]) -}).strict(); -export const ArticleTagLinkUpdateManyWithWhereWithoutTagInputObjectSchema: z.ZodType = z.lazy(__makeSchema_ArticleTagLinkUpdateManyWithWhereWithoutTagInput_schema) as unknown as z.ZodType; -export const ArticleTagLinkUpdateManyWithWhereWithoutTagInputObjectZodSchema = z.lazy(__makeSchema_ArticleTagLinkUpdateManyWithWhereWithoutTagInput_schema); - - -// File: ArticleCreateWithoutTagsInput.schema.ts -const __makeSchema_ArticleCreateWithoutTagsInput_schema = () => z.object({ - id: z.string().optional(), - slug: z.string(), - title: z.string(), - author: z.string(), - photographer: z.string(), - imageUrl: z.string(), - excerpt: z.string(), - content: z.string(), - isFeatured: z.boolean().optional(), - vimeoId: z.string().optional().nullable(), - createdAt: z.coerce.date().optional(), - updatedAt: z.coerce.date().optional() -}).strict(); -export const ArticleCreateWithoutTagsInputObjectSchema: z.ZodType = z.lazy(__makeSchema_ArticleCreateWithoutTagsInput_schema) as unknown as z.ZodType; -export const ArticleCreateWithoutTagsInputObjectZodSchema = z.lazy(__makeSchema_ArticleCreateWithoutTagsInput_schema); - - -// File: ArticleUncheckedCreateWithoutTagsInput.schema.ts -const __makeSchema_ArticleUncheckedCreateWithoutTagsInput_schema = () => z.object({ - id: z.string().optional(), - slug: z.string(), - title: z.string(), - author: z.string(), - photographer: z.string(), - imageUrl: z.string(), - excerpt: z.string(), - content: z.string(), - isFeatured: z.boolean().optional(), - vimeoId: z.string().optional().nullable(), - createdAt: z.coerce.date().optional(), - updatedAt: z.coerce.date().optional() -}).strict(); -export const ArticleUncheckedCreateWithoutTagsInputObjectSchema: z.ZodType = z.lazy(__makeSchema_ArticleUncheckedCreateWithoutTagsInput_schema) as unknown as z.ZodType; -export const ArticleUncheckedCreateWithoutTagsInputObjectZodSchema = z.lazy(__makeSchema_ArticleUncheckedCreateWithoutTagsInput_schema); - - -// File: ArticleCreateOrConnectWithoutTagsInput.schema.ts -const __makeSchema_ArticleCreateOrConnectWithoutTagsInput_schema = () => z.object({ - get where(){ return ArticleWhereUniqueInputObjectSchema; }, - create: z.union([ArticleCreateWithoutTagsInputObjectSchema, ArticleUncheckedCreateWithoutTagsInputObjectSchema]) -}).strict(); -export const ArticleCreateOrConnectWithoutTagsInputObjectSchema: z.ZodType = z.lazy(__makeSchema_ArticleCreateOrConnectWithoutTagsInput_schema) as unknown as z.ZodType; -export const ArticleCreateOrConnectWithoutTagsInputObjectZodSchema = z.lazy(__makeSchema_ArticleCreateOrConnectWithoutTagsInput_schema); - - -// File: ArticleTagCreateWithoutArticlesInput.schema.ts -const __makeSchema_ArticleTagCreateWithoutArticlesInput_schema = () => z.object({ - name: z.string() -}).strict(); -export const ArticleTagCreateWithoutArticlesInputObjectSchema: z.ZodType = z.lazy(__makeSchema_ArticleTagCreateWithoutArticlesInput_schema) as unknown as z.ZodType; -export const ArticleTagCreateWithoutArticlesInputObjectZodSchema = z.lazy(__makeSchema_ArticleTagCreateWithoutArticlesInput_schema); - - -// File: ArticleTagUncheckedCreateWithoutArticlesInput.schema.ts -const __makeSchema_ArticleTagUncheckedCreateWithoutArticlesInput_schema = () => z.object({ - name: z.string() -}).strict(); -export const ArticleTagUncheckedCreateWithoutArticlesInputObjectSchema: z.ZodType = z.lazy(__makeSchema_ArticleTagUncheckedCreateWithoutArticlesInput_schema) as unknown as z.ZodType; -export const ArticleTagUncheckedCreateWithoutArticlesInputObjectZodSchema = z.lazy(__makeSchema_ArticleTagUncheckedCreateWithoutArticlesInput_schema); - - -// File: ArticleTagCreateOrConnectWithoutArticlesInput.schema.ts -const __makeSchema_ArticleTagCreateOrConnectWithoutArticlesInput_schema = () => z.object({ - get where(){ return ArticleTagWhereUniqueInputObjectSchema; }, - create: z.union([ArticleTagCreateWithoutArticlesInputObjectSchema, ArticleTagUncheckedCreateWithoutArticlesInputObjectSchema]) -}).strict(); -export const ArticleTagCreateOrConnectWithoutArticlesInputObjectSchema: z.ZodType = z.lazy(__makeSchema_ArticleTagCreateOrConnectWithoutArticlesInput_schema) as unknown as z.ZodType; -export const ArticleTagCreateOrConnectWithoutArticlesInputObjectZodSchema = z.lazy(__makeSchema_ArticleTagCreateOrConnectWithoutArticlesInput_schema); - - -// File: ArticleUpsertWithoutTagsInput.schema.ts -const __makeSchema_ArticleUpsertWithoutTagsInput_schema = () => z.object({ - update: z.union([ArticleUpdateWithoutTagsInputObjectSchema, ArticleUncheckedUpdateWithoutTagsInputObjectSchema]), - create: z.union([ArticleCreateWithoutTagsInputObjectSchema, ArticleUncheckedCreateWithoutTagsInputObjectSchema]), - get where(){ return ArticleWhereInputObjectSchema.optional(); } -}).strict(); -export const ArticleUpsertWithoutTagsInputObjectSchema: z.ZodType = z.lazy(__makeSchema_ArticleUpsertWithoutTagsInput_schema) as unknown as z.ZodType; -export const ArticleUpsertWithoutTagsInputObjectZodSchema = z.lazy(__makeSchema_ArticleUpsertWithoutTagsInput_schema); - - -// File: ArticleUpdateToOneWithWhereWithoutTagsInput.schema.ts -const __makeSchema_ArticleUpdateToOneWithWhereWithoutTagsInput_schema = () => z.object({ - get where(){ return ArticleWhereInputObjectSchema.optional(); }, - data: z.union([ArticleUpdateWithoutTagsInputObjectSchema, ArticleUncheckedUpdateWithoutTagsInputObjectSchema]) -}).strict(); -export const ArticleUpdateToOneWithWhereWithoutTagsInputObjectSchema: z.ZodType = z.lazy(__makeSchema_ArticleUpdateToOneWithWhereWithoutTagsInput_schema) as unknown as z.ZodType; -export const ArticleUpdateToOneWithWhereWithoutTagsInputObjectZodSchema = z.lazy(__makeSchema_ArticleUpdateToOneWithWhereWithoutTagsInput_schema); - - -// File: ArticleUpdateWithoutTagsInput.schema.ts -const __makeSchema_ArticleUpdateWithoutTagsInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - slug: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - title: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - author: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - photographer: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - imageUrl: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - excerpt: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - content: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - isFeatured: z.union([z.boolean(), BoolFieldUpdateOperationsInputObjectSchema]).optional(), - vimeoId: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - createdAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - updatedAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional() -}).strict(); -export const ArticleUpdateWithoutTagsInputObjectSchema: z.ZodType = z.lazy(__makeSchema_ArticleUpdateWithoutTagsInput_schema) as unknown as z.ZodType; -export const ArticleUpdateWithoutTagsInputObjectZodSchema = z.lazy(__makeSchema_ArticleUpdateWithoutTagsInput_schema); - - -// File: ArticleUncheckedUpdateWithoutTagsInput.schema.ts -const __makeSchema_ArticleUncheckedUpdateWithoutTagsInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - slug: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - title: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - author: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - photographer: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - imageUrl: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - excerpt: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - content: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - isFeatured: z.union([z.boolean(), BoolFieldUpdateOperationsInputObjectSchema]).optional(), - vimeoId: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - createdAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - updatedAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional() -}).strict(); -export const ArticleUncheckedUpdateWithoutTagsInputObjectSchema: z.ZodType = z.lazy(__makeSchema_ArticleUncheckedUpdateWithoutTagsInput_schema) as unknown as z.ZodType; -export const ArticleUncheckedUpdateWithoutTagsInputObjectZodSchema = z.lazy(__makeSchema_ArticleUncheckedUpdateWithoutTagsInput_schema); - - -// File: ArticleTagUpsertWithoutArticlesInput.schema.ts -const __makeSchema_ArticleTagUpsertWithoutArticlesInput_schema = () => z.object({ - update: z.union([ArticleTagUpdateWithoutArticlesInputObjectSchema, ArticleTagUncheckedUpdateWithoutArticlesInputObjectSchema]), - create: z.union([ArticleTagCreateWithoutArticlesInputObjectSchema, ArticleTagUncheckedCreateWithoutArticlesInputObjectSchema]), - get where(){ return ArticleTagWhereInputObjectSchema.optional(); } -}).strict(); -export const ArticleTagUpsertWithoutArticlesInputObjectSchema: z.ZodType = z.lazy(__makeSchema_ArticleTagUpsertWithoutArticlesInput_schema) as unknown as z.ZodType; -export const ArticleTagUpsertWithoutArticlesInputObjectZodSchema = z.lazy(__makeSchema_ArticleTagUpsertWithoutArticlesInput_schema); - - -// File: ArticleTagUpdateToOneWithWhereWithoutArticlesInput.schema.ts -const __makeSchema_ArticleTagUpdateToOneWithWhereWithoutArticlesInput_schema = () => z.object({ - get where(){ return ArticleTagWhereInputObjectSchema.optional(); }, - data: z.union([ArticleTagUpdateWithoutArticlesInputObjectSchema, ArticleTagUncheckedUpdateWithoutArticlesInputObjectSchema]) -}).strict(); -export const ArticleTagUpdateToOneWithWhereWithoutArticlesInputObjectSchema: z.ZodType = z.lazy(__makeSchema_ArticleTagUpdateToOneWithWhereWithoutArticlesInput_schema) as unknown as z.ZodType; -export const ArticleTagUpdateToOneWithWhereWithoutArticlesInputObjectZodSchema = z.lazy(__makeSchema_ArticleTagUpdateToOneWithWhereWithoutArticlesInput_schema); - - -// File: ArticleTagUpdateWithoutArticlesInput.schema.ts -const __makeSchema_ArticleTagUpdateWithoutArticlesInput_schema = () => z.object({ - name: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional() -}).strict(); -export const ArticleTagUpdateWithoutArticlesInputObjectSchema: z.ZodType = z.lazy(__makeSchema_ArticleTagUpdateWithoutArticlesInput_schema) as unknown as z.ZodType; -export const ArticleTagUpdateWithoutArticlesInputObjectZodSchema = z.lazy(__makeSchema_ArticleTagUpdateWithoutArticlesInput_schema); - - -// File: ArticleTagUncheckedUpdateWithoutArticlesInput.schema.ts -const __makeSchema_ArticleTagUncheckedUpdateWithoutArticlesInput_schema = () => z.object({ - name: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional() -}).strict(); -export const ArticleTagUncheckedUpdateWithoutArticlesInputObjectSchema: z.ZodType = z.lazy(__makeSchema_ArticleTagUncheckedUpdateWithoutArticlesInput_schema) as unknown as z.ZodType; -export const ArticleTagUncheckedUpdateWithoutArticlesInputObjectZodSchema = z.lazy(__makeSchema_ArticleTagUncheckedUpdateWithoutArticlesInput_schema); - - -// File: RecurringTaskCreateWithoutTasksInput.schema.ts -const __makeSchema_RecurringTaskCreateWithoutTasksInput_schema = () => z.object({ - id: z.string().optional(), - type: TaskTypeSchema, - payload: z.union([JsonNullValueInputSchema, jsonSchema]).optional(), - createdAt: z.coerce.date().optional(), - schedule: z.string(), - lastRunAt: z.coerce.date().optional().nullable(), - nextRunAt: z.coerce.date() -}).strict(); -export const RecurringTaskCreateWithoutTasksInputObjectSchema: z.ZodType = z.lazy(__makeSchema_RecurringTaskCreateWithoutTasksInput_schema) as unknown as z.ZodType; -export const RecurringTaskCreateWithoutTasksInputObjectZodSchema = z.lazy(__makeSchema_RecurringTaskCreateWithoutTasksInput_schema); - - -// File: RecurringTaskUncheckedCreateWithoutTasksInput.schema.ts -const __makeSchema_RecurringTaskUncheckedCreateWithoutTasksInput_schema = () => z.object({ - id: z.string().optional(), - type: TaskTypeSchema, - payload: z.union([JsonNullValueInputSchema, jsonSchema]).optional(), - createdAt: z.coerce.date().optional(), - schedule: z.string(), - lastRunAt: z.coerce.date().optional().nullable(), - nextRunAt: z.coerce.date() -}).strict(); -export const RecurringTaskUncheckedCreateWithoutTasksInputObjectSchema: z.ZodType = z.lazy(__makeSchema_RecurringTaskUncheckedCreateWithoutTasksInput_schema) as unknown as z.ZodType; -export const RecurringTaskUncheckedCreateWithoutTasksInputObjectZodSchema = z.lazy(__makeSchema_RecurringTaskUncheckedCreateWithoutTasksInput_schema); - - -// File: RecurringTaskCreateOrConnectWithoutTasksInput.schema.ts -const __makeSchema_RecurringTaskCreateOrConnectWithoutTasksInput_schema = () => z.object({ - get where(){ return RecurringTaskWhereUniqueInputObjectSchema; }, - create: z.union([RecurringTaskCreateWithoutTasksInputObjectSchema, RecurringTaskUncheckedCreateWithoutTasksInputObjectSchema]) -}).strict(); -export const RecurringTaskCreateOrConnectWithoutTasksInputObjectSchema: z.ZodType = z.lazy(__makeSchema_RecurringTaskCreateOrConnectWithoutTasksInput_schema) as unknown as z.ZodType; -export const RecurringTaskCreateOrConnectWithoutTasksInputObjectZodSchema = z.lazy(__makeSchema_RecurringTaskCreateOrConnectWithoutTasksInput_schema); - - -// File: AttendancePoolCreateWithoutTaskInput.schema.ts -const __makeSchema_AttendancePoolCreateWithoutTaskInput_schema = () => z.object({ - id: z.string().optional(), - title: z.string(), - mergeDelayHours: z.number().int().optional().nullable(), - yearCriteria: z.union([JsonNullValueInputSchema, jsonSchema]), - capacity: z.number().int(), - createdAt: z.coerce.date().optional(), - updatedAt: z.coerce.date().optional(), - get attendance(){ return AttendanceCreateNestedOneWithoutPoolsInputObjectSchema; }, - get attendees(){ return AttendeeCreateNestedManyWithoutAttendancePoolInputObjectSchema.optional(); } -}).strict(); -export const AttendancePoolCreateWithoutTaskInputObjectSchema: z.ZodType = z.lazy(__makeSchema_AttendancePoolCreateWithoutTaskInput_schema) as unknown as z.ZodType; -export const AttendancePoolCreateWithoutTaskInputObjectZodSchema = z.lazy(__makeSchema_AttendancePoolCreateWithoutTaskInput_schema); - - -// File: AttendancePoolUncheckedCreateWithoutTaskInput.schema.ts -const __makeSchema_AttendancePoolUncheckedCreateWithoutTaskInput_schema = () => z.object({ - id: z.string().optional(), - title: z.string(), - mergeDelayHours: z.number().int().optional().nullable(), - yearCriteria: z.union([JsonNullValueInputSchema, jsonSchema]), - capacity: z.number().int(), - createdAt: z.coerce.date().optional(), - updatedAt: z.coerce.date().optional(), - attendanceId: z.string(), - get attendees(){ return AttendeeUncheckedCreateNestedManyWithoutAttendancePoolInputObjectSchema.optional(); } -}).strict(); -export const AttendancePoolUncheckedCreateWithoutTaskInputObjectSchema: z.ZodType = z.lazy(__makeSchema_AttendancePoolUncheckedCreateWithoutTaskInput_schema) as unknown as z.ZodType; -export const AttendancePoolUncheckedCreateWithoutTaskInputObjectZodSchema = z.lazy(__makeSchema_AttendancePoolUncheckedCreateWithoutTaskInput_schema); - - -// File: AttendancePoolCreateOrConnectWithoutTaskInput.schema.ts -const __makeSchema_AttendancePoolCreateOrConnectWithoutTaskInput_schema = () => z.object({ - get where(){ return AttendancePoolWhereUniqueInputObjectSchema; }, - create: z.union([AttendancePoolCreateWithoutTaskInputObjectSchema, AttendancePoolUncheckedCreateWithoutTaskInputObjectSchema]) -}).strict(); -export const AttendancePoolCreateOrConnectWithoutTaskInputObjectSchema: z.ZodType = z.lazy(__makeSchema_AttendancePoolCreateOrConnectWithoutTaskInput_schema) as unknown as z.ZodType; -export const AttendancePoolCreateOrConnectWithoutTaskInputObjectZodSchema = z.lazy(__makeSchema_AttendancePoolCreateOrConnectWithoutTaskInput_schema); - - -// File: AttendancePoolCreateManyTaskInputEnvelope.schema.ts -const __makeSchema_AttendancePoolCreateManyTaskInputEnvelope_schema = () => z.object({ - data: z.union([AttendancePoolCreateManyTaskInputObjectSchema, AttendancePoolCreateManyTaskInputObjectSchema.array()]), - skipDuplicates: z.boolean().optional() -}).strict(); -export const AttendancePoolCreateManyTaskInputEnvelopeObjectSchema: z.ZodType = z.lazy(__makeSchema_AttendancePoolCreateManyTaskInputEnvelope_schema) as unknown as z.ZodType; -export const AttendancePoolCreateManyTaskInputEnvelopeObjectZodSchema = z.lazy(__makeSchema_AttendancePoolCreateManyTaskInputEnvelope_schema); - - -// File: NotificationCreateWithoutTaskInput.schema.ts -const __makeSchema_NotificationCreateWithoutTaskInput_schema = () => z.object({ - id: z.string().optional(), - createdAt: z.coerce.date().optional(), - updatedAt: z.coerce.date().optional(), - title: z.string(), - shortDescription: z.string().optional().nullable(), - content: z.string(), - type: NotificationTypeSchema, - payload: z.string().optional().nullable(), - payloadType: NotificationPayloadTypeSchema, - get actorGroup(){ return GroupCreateNestedOneWithoutNotificationsInputObjectSchema; }, - get createdBy(){ return UserCreateNestedOneWithoutNotificationsCreatedInputObjectSchema.optional(); }, - get lastUpdatedBy(){ return UserCreateNestedOneWithoutNotificationsUpdatedInputObjectSchema.optional(); }, - get recipients(){ return NotificationRecipientCreateNestedManyWithoutNotificationInputObjectSchema.optional(); } -}).strict(); -export const NotificationCreateWithoutTaskInputObjectSchema: z.ZodType = z.lazy(__makeSchema_NotificationCreateWithoutTaskInput_schema) as unknown as z.ZodType; -export const NotificationCreateWithoutTaskInputObjectZodSchema = z.lazy(__makeSchema_NotificationCreateWithoutTaskInput_schema); - - -// File: NotificationUncheckedCreateWithoutTaskInput.schema.ts -const __makeSchema_NotificationUncheckedCreateWithoutTaskInput_schema = () => z.object({ - id: z.string().optional(), - createdAt: z.coerce.date().optional(), - updatedAt: z.coerce.date().optional(), - title: z.string(), - shortDescription: z.string().optional().nullable(), - content: z.string(), - type: NotificationTypeSchema, - payload: z.string().optional().nullable(), - payloadType: NotificationPayloadTypeSchema, - actorGroupId: z.string(), - createdById: z.string().optional().nullable(), - lastUpdatedById: z.string().optional().nullable(), - get recipients(){ return NotificationRecipientUncheckedCreateNestedManyWithoutNotificationInputObjectSchema.optional(); } -}).strict(); -export const NotificationUncheckedCreateWithoutTaskInputObjectSchema: z.ZodType = z.lazy(__makeSchema_NotificationUncheckedCreateWithoutTaskInput_schema) as unknown as z.ZodType; -export const NotificationUncheckedCreateWithoutTaskInputObjectZodSchema = z.lazy(__makeSchema_NotificationUncheckedCreateWithoutTaskInput_schema); - - -// File: NotificationCreateOrConnectWithoutTaskInput.schema.ts -const __makeSchema_NotificationCreateOrConnectWithoutTaskInput_schema = () => z.object({ - get where(){ return NotificationWhereUniqueInputObjectSchema; }, - create: z.union([NotificationCreateWithoutTaskInputObjectSchema, NotificationUncheckedCreateWithoutTaskInputObjectSchema]) -}).strict(); -export const NotificationCreateOrConnectWithoutTaskInputObjectSchema: z.ZodType = z.lazy(__makeSchema_NotificationCreateOrConnectWithoutTaskInput_schema) as unknown as z.ZodType; -export const NotificationCreateOrConnectWithoutTaskInputObjectZodSchema = z.lazy(__makeSchema_NotificationCreateOrConnectWithoutTaskInput_schema); - - -// File: NotificationCreateManyTaskInputEnvelope.schema.ts -const __makeSchema_NotificationCreateManyTaskInputEnvelope_schema = () => z.object({ - data: z.union([NotificationCreateManyTaskInputObjectSchema, NotificationCreateManyTaskInputObjectSchema.array()]), - skipDuplicates: z.boolean().optional() -}).strict(); -export const NotificationCreateManyTaskInputEnvelopeObjectSchema: z.ZodType = z.lazy(__makeSchema_NotificationCreateManyTaskInputEnvelope_schema) as unknown as z.ZodType; -export const NotificationCreateManyTaskInputEnvelopeObjectZodSchema = z.lazy(__makeSchema_NotificationCreateManyTaskInputEnvelope_schema); - - -// File: RecurringTaskUpsertWithoutTasksInput.schema.ts -const __makeSchema_RecurringTaskUpsertWithoutTasksInput_schema = () => z.object({ - update: z.union([RecurringTaskUpdateWithoutTasksInputObjectSchema, RecurringTaskUncheckedUpdateWithoutTasksInputObjectSchema]), - create: z.union([RecurringTaskCreateWithoutTasksInputObjectSchema, RecurringTaskUncheckedCreateWithoutTasksInputObjectSchema]), - get where(){ return RecurringTaskWhereInputObjectSchema.optional(); } -}).strict(); -export const RecurringTaskUpsertWithoutTasksInputObjectSchema: z.ZodType = z.lazy(__makeSchema_RecurringTaskUpsertWithoutTasksInput_schema) as unknown as z.ZodType; -export const RecurringTaskUpsertWithoutTasksInputObjectZodSchema = z.lazy(__makeSchema_RecurringTaskUpsertWithoutTasksInput_schema); - - -// File: RecurringTaskUpdateToOneWithWhereWithoutTasksInput.schema.ts -const __makeSchema_RecurringTaskUpdateToOneWithWhereWithoutTasksInput_schema = () => z.object({ - get where(){ return RecurringTaskWhereInputObjectSchema.optional(); }, - data: z.union([RecurringTaskUpdateWithoutTasksInputObjectSchema, RecurringTaskUncheckedUpdateWithoutTasksInputObjectSchema]) -}).strict(); -export const RecurringTaskUpdateToOneWithWhereWithoutTasksInputObjectSchema: z.ZodType = z.lazy(__makeSchema_RecurringTaskUpdateToOneWithWhereWithoutTasksInput_schema) as unknown as z.ZodType; -export const RecurringTaskUpdateToOneWithWhereWithoutTasksInputObjectZodSchema = z.lazy(__makeSchema_RecurringTaskUpdateToOneWithWhereWithoutTasksInput_schema); - - -// File: RecurringTaskUpdateWithoutTasksInput.schema.ts -const __makeSchema_RecurringTaskUpdateWithoutTasksInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - type: z.union([TaskTypeSchema, EnumTaskTypeFieldUpdateOperationsInputObjectSchema]).optional(), - payload: z.union([JsonNullValueInputSchema, jsonSchema]).optional(), - createdAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - schedule: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - lastRunAt: z.union([z.coerce.date(), NullableDateTimeFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - nextRunAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional() -}).strict(); -export const RecurringTaskUpdateWithoutTasksInputObjectSchema: z.ZodType = z.lazy(__makeSchema_RecurringTaskUpdateWithoutTasksInput_schema) as unknown as z.ZodType; -export const RecurringTaskUpdateWithoutTasksInputObjectZodSchema = z.lazy(__makeSchema_RecurringTaskUpdateWithoutTasksInput_schema); - - -// File: RecurringTaskUncheckedUpdateWithoutTasksInput.schema.ts -const __makeSchema_RecurringTaskUncheckedUpdateWithoutTasksInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - type: z.union([TaskTypeSchema, EnumTaskTypeFieldUpdateOperationsInputObjectSchema]).optional(), - payload: z.union([JsonNullValueInputSchema, jsonSchema]).optional(), - createdAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - schedule: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - lastRunAt: z.union([z.coerce.date(), NullableDateTimeFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - nextRunAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional() -}).strict(); -export const RecurringTaskUncheckedUpdateWithoutTasksInputObjectSchema: z.ZodType = z.lazy(__makeSchema_RecurringTaskUncheckedUpdateWithoutTasksInput_schema) as unknown as z.ZodType; -export const RecurringTaskUncheckedUpdateWithoutTasksInputObjectZodSchema = z.lazy(__makeSchema_RecurringTaskUncheckedUpdateWithoutTasksInput_schema); - - -// File: AttendancePoolUpsertWithWhereUniqueWithoutTaskInput.schema.ts -const __makeSchema_AttendancePoolUpsertWithWhereUniqueWithoutTaskInput_schema = () => z.object({ - get where(){ return AttendancePoolWhereUniqueInputObjectSchema; }, - update: z.union([AttendancePoolUpdateWithoutTaskInputObjectSchema, AttendancePoolUncheckedUpdateWithoutTaskInputObjectSchema]), - create: z.union([AttendancePoolCreateWithoutTaskInputObjectSchema, AttendancePoolUncheckedCreateWithoutTaskInputObjectSchema]) -}).strict(); -export const AttendancePoolUpsertWithWhereUniqueWithoutTaskInputObjectSchema: z.ZodType = z.lazy(__makeSchema_AttendancePoolUpsertWithWhereUniqueWithoutTaskInput_schema) as unknown as z.ZodType; -export const AttendancePoolUpsertWithWhereUniqueWithoutTaskInputObjectZodSchema = z.lazy(__makeSchema_AttendancePoolUpsertWithWhereUniqueWithoutTaskInput_schema); - - -// File: AttendancePoolUpdateWithWhereUniqueWithoutTaskInput.schema.ts -const __makeSchema_AttendancePoolUpdateWithWhereUniqueWithoutTaskInput_schema = () => z.object({ - get where(){ return AttendancePoolWhereUniqueInputObjectSchema; }, - data: z.union([AttendancePoolUpdateWithoutTaskInputObjectSchema, AttendancePoolUncheckedUpdateWithoutTaskInputObjectSchema]) -}).strict(); -export const AttendancePoolUpdateWithWhereUniqueWithoutTaskInputObjectSchema: z.ZodType = z.lazy(__makeSchema_AttendancePoolUpdateWithWhereUniqueWithoutTaskInput_schema) as unknown as z.ZodType; -export const AttendancePoolUpdateWithWhereUniqueWithoutTaskInputObjectZodSchema = z.lazy(__makeSchema_AttendancePoolUpdateWithWhereUniqueWithoutTaskInput_schema); - - -// File: AttendancePoolUpdateManyWithWhereWithoutTaskInput.schema.ts -const __makeSchema_AttendancePoolUpdateManyWithWhereWithoutTaskInput_schema = () => z.object({ - get where(){ return AttendancePoolScalarWhereInputObjectSchema; }, - data: z.union([AttendancePoolUpdateManyMutationInputObjectSchema, AttendancePoolUncheckedUpdateManyWithoutTaskInputObjectSchema]) -}).strict(); -export const AttendancePoolUpdateManyWithWhereWithoutTaskInputObjectSchema: z.ZodType = z.lazy(__makeSchema_AttendancePoolUpdateManyWithWhereWithoutTaskInput_schema) as unknown as z.ZodType; -export const AttendancePoolUpdateManyWithWhereWithoutTaskInputObjectZodSchema = z.lazy(__makeSchema_AttendancePoolUpdateManyWithWhereWithoutTaskInput_schema); - - -// File: NotificationUpsertWithWhereUniqueWithoutTaskInput.schema.ts -const __makeSchema_NotificationUpsertWithWhereUniqueWithoutTaskInput_schema = () => z.object({ - get where(){ return NotificationWhereUniqueInputObjectSchema; }, - update: z.union([NotificationUpdateWithoutTaskInputObjectSchema, NotificationUncheckedUpdateWithoutTaskInputObjectSchema]), - create: z.union([NotificationCreateWithoutTaskInputObjectSchema, NotificationUncheckedCreateWithoutTaskInputObjectSchema]) -}).strict(); -export const NotificationUpsertWithWhereUniqueWithoutTaskInputObjectSchema: z.ZodType = z.lazy(__makeSchema_NotificationUpsertWithWhereUniqueWithoutTaskInput_schema) as unknown as z.ZodType; -export const NotificationUpsertWithWhereUniqueWithoutTaskInputObjectZodSchema = z.lazy(__makeSchema_NotificationUpsertWithWhereUniqueWithoutTaskInput_schema); - - -// File: NotificationUpdateWithWhereUniqueWithoutTaskInput.schema.ts -const __makeSchema_NotificationUpdateWithWhereUniqueWithoutTaskInput_schema = () => z.object({ - get where(){ return NotificationWhereUniqueInputObjectSchema; }, - data: z.union([NotificationUpdateWithoutTaskInputObjectSchema, NotificationUncheckedUpdateWithoutTaskInputObjectSchema]) -}).strict(); -export const NotificationUpdateWithWhereUniqueWithoutTaskInputObjectSchema: z.ZodType = z.lazy(__makeSchema_NotificationUpdateWithWhereUniqueWithoutTaskInput_schema) as unknown as z.ZodType; -export const NotificationUpdateWithWhereUniqueWithoutTaskInputObjectZodSchema = z.lazy(__makeSchema_NotificationUpdateWithWhereUniqueWithoutTaskInput_schema); - - -// File: NotificationUpdateManyWithWhereWithoutTaskInput.schema.ts -const __makeSchema_NotificationUpdateManyWithWhereWithoutTaskInput_schema = () => z.object({ - get where(){ return NotificationScalarWhereInputObjectSchema; }, - data: z.union([NotificationUpdateManyMutationInputObjectSchema, NotificationUncheckedUpdateManyWithoutTaskInputObjectSchema]) -}).strict(); -export const NotificationUpdateManyWithWhereWithoutTaskInputObjectSchema: z.ZodType = z.lazy(__makeSchema_NotificationUpdateManyWithWhereWithoutTaskInput_schema) as unknown as z.ZodType; -export const NotificationUpdateManyWithWhereWithoutTaskInputObjectZodSchema = z.lazy(__makeSchema_NotificationUpdateManyWithWhereWithoutTaskInput_schema); - - -// File: TaskCreateWithoutRecurringTaskInput.schema.ts -const __makeSchema_TaskCreateWithoutRecurringTaskInput_schema = () => z.object({ - id: z.string().optional(), - type: TaskTypeSchema, - status: TaskStatusSchema.optional(), - payload: z.union([JsonNullValueInputSchema, jsonSchema]).optional(), - createdAt: z.coerce.date().optional(), - scheduledAt: z.coerce.date(), - processedAt: z.coerce.date().optional().nullable(), - get attendancePools(){ return AttendancePoolCreateNestedManyWithoutTaskInputObjectSchema.optional(); }, - get notifications(){ return NotificationCreateNestedManyWithoutTaskInputObjectSchema.optional(); } -}).strict(); -export const TaskCreateWithoutRecurringTaskInputObjectSchema: z.ZodType = z.lazy(__makeSchema_TaskCreateWithoutRecurringTaskInput_schema) as unknown as z.ZodType; -export const TaskCreateWithoutRecurringTaskInputObjectZodSchema = z.lazy(__makeSchema_TaskCreateWithoutRecurringTaskInput_schema); - - -// File: TaskUncheckedCreateWithoutRecurringTaskInput.schema.ts -const __makeSchema_TaskUncheckedCreateWithoutRecurringTaskInput_schema = () => z.object({ - id: z.string().optional(), - type: TaskTypeSchema, - status: TaskStatusSchema.optional(), - payload: z.union([JsonNullValueInputSchema, jsonSchema]).optional(), - createdAt: z.coerce.date().optional(), - scheduledAt: z.coerce.date(), - processedAt: z.coerce.date().optional().nullable(), - get attendancePools(){ return AttendancePoolUncheckedCreateNestedManyWithoutTaskInputObjectSchema.optional(); }, - get notifications(){ return NotificationUncheckedCreateNestedManyWithoutTaskInputObjectSchema.optional(); } -}).strict(); -export const TaskUncheckedCreateWithoutRecurringTaskInputObjectSchema: z.ZodType = z.lazy(__makeSchema_TaskUncheckedCreateWithoutRecurringTaskInput_schema) as unknown as z.ZodType; -export const TaskUncheckedCreateWithoutRecurringTaskInputObjectZodSchema = z.lazy(__makeSchema_TaskUncheckedCreateWithoutRecurringTaskInput_schema); - - -// File: TaskCreateOrConnectWithoutRecurringTaskInput.schema.ts -const __makeSchema_TaskCreateOrConnectWithoutRecurringTaskInput_schema = () => z.object({ - get where(){ return TaskWhereUniqueInputObjectSchema; }, - create: z.union([TaskCreateWithoutRecurringTaskInputObjectSchema, TaskUncheckedCreateWithoutRecurringTaskInputObjectSchema]) -}).strict(); -export const TaskCreateOrConnectWithoutRecurringTaskInputObjectSchema: z.ZodType = z.lazy(__makeSchema_TaskCreateOrConnectWithoutRecurringTaskInput_schema) as unknown as z.ZodType; -export const TaskCreateOrConnectWithoutRecurringTaskInputObjectZodSchema = z.lazy(__makeSchema_TaskCreateOrConnectWithoutRecurringTaskInput_schema); - - -// File: TaskCreateManyRecurringTaskInputEnvelope.schema.ts -const __makeSchema_TaskCreateManyRecurringTaskInputEnvelope_schema = () => z.object({ - data: z.union([TaskCreateManyRecurringTaskInputObjectSchema, TaskCreateManyRecurringTaskInputObjectSchema.array()]), - skipDuplicates: z.boolean().optional() -}).strict(); -export const TaskCreateManyRecurringTaskInputEnvelopeObjectSchema: z.ZodType = z.lazy(__makeSchema_TaskCreateManyRecurringTaskInputEnvelope_schema) as unknown as z.ZodType; -export const TaskCreateManyRecurringTaskInputEnvelopeObjectZodSchema = z.lazy(__makeSchema_TaskCreateManyRecurringTaskInputEnvelope_schema); - - -// File: TaskUpsertWithWhereUniqueWithoutRecurringTaskInput.schema.ts -const __makeSchema_TaskUpsertWithWhereUniqueWithoutRecurringTaskInput_schema = () => z.object({ - get where(){ return TaskWhereUniqueInputObjectSchema; }, - update: z.union([TaskUpdateWithoutRecurringTaskInputObjectSchema, TaskUncheckedUpdateWithoutRecurringTaskInputObjectSchema]), - create: z.union([TaskCreateWithoutRecurringTaskInputObjectSchema, TaskUncheckedCreateWithoutRecurringTaskInputObjectSchema]) -}).strict(); -export const TaskUpsertWithWhereUniqueWithoutRecurringTaskInputObjectSchema: z.ZodType = z.lazy(__makeSchema_TaskUpsertWithWhereUniqueWithoutRecurringTaskInput_schema) as unknown as z.ZodType; -export const TaskUpsertWithWhereUniqueWithoutRecurringTaskInputObjectZodSchema = z.lazy(__makeSchema_TaskUpsertWithWhereUniqueWithoutRecurringTaskInput_schema); - - -// File: TaskUpdateWithWhereUniqueWithoutRecurringTaskInput.schema.ts -const __makeSchema_TaskUpdateWithWhereUniqueWithoutRecurringTaskInput_schema = () => z.object({ - get where(){ return TaskWhereUniqueInputObjectSchema; }, - data: z.union([TaskUpdateWithoutRecurringTaskInputObjectSchema, TaskUncheckedUpdateWithoutRecurringTaskInputObjectSchema]) -}).strict(); -export const TaskUpdateWithWhereUniqueWithoutRecurringTaskInputObjectSchema: z.ZodType = z.lazy(__makeSchema_TaskUpdateWithWhereUniqueWithoutRecurringTaskInput_schema) as unknown as z.ZodType; -export const TaskUpdateWithWhereUniqueWithoutRecurringTaskInputObjectZodSchema = z.lazy(__makeSchema_TaskUpdateWithWhereUniqueWithoutRecurringTaskInput_schema); - - -// File: TaskUpdateManyWithWhereWithoutRecurringTaskInput.schema.ts -const __makeSchema_TaskUpdateManyWithWhereWithoutRecurringTaskInput_schema = () => z.object({ - get where(){ return TaskScalarWhereInputObjectSchema; }, - data: z.union([TaskUpdateManyMutationInputObjectSchema, TaskUncheckedUpdateManyWithoutRecurringTaskInputObjectSchema]) -}).strict(); -export const TaskUpdateManyWithWhereWithoutRecurringTaskInputObjectSchema: z.ZodType = z.lazy(__makeSchema_TaskUpdateManyWithWhereWithoutRecurringTaskInput_schema) as unknown as z.ZodType; -export const TaskUpdateManyWithWhereWithoutRecurringTaskInputObjectZodSchema = z.lazy(__makeSchema_TaskUpdateManyWithWhereWithoutRecurringTaskInput_schema); - - -// File: TaskScalarWhereInput.schema.ts -const __makeSchema_TaskScalarWhereInput_schema = () => z.object({ - AND: z.union([TaskScalarWhereInputObjectSchema, TaskScalarWhereInputObjectSchema.array()]).optional(), - get OR(){ return TaskScalarWhereInputObjectSchema.array().optional(); }, - NOT: z.union([TaskScalarWhereInputObjectSchema, TaskScalarWhereInputObjectSchema.array()]).optional(), - id: z.union([StringFilterObjectSchema, z.string()]).optional(), - type: z.union([EnumTaskTypeFilterObjectSchema, TaskTypeSchema]).optional(), - status: z.union([EnumTaskStatusFilterObjectSchema, TaskStatusSchema]).optional(), - get payload(){ return JsonFilterObjectSchema.optional(); }, - createdAt: z.union([DateTimeFilterObjectSchema, z.coerce.date()]).optional(), - scheduledAt: z.union([DateTimeFilterObjectSchema, z.coerce.date()]).optional(), - processedAt: z.union([DateTimeNullableFilterObjectSchema, z.coerce.date()]).optional().nullable(), - recurringTaskId: z.union([StringNullableFilterObjectSchema, z.string()]).optional().nullable() -}).strict(); -export const TaskScalarWhereInputObjectSchema: z.ZodType = z.lazy(__makeSchema_TaskScalarWhereInput_schema) as unknown as z.ZodType; -export const TaskScalarWhereInputObjectZodSchema = z.lazy(__makeSchema_TaskScalarWhereInput_schema); - - -// File: EventCreateWithoutFeedbackFormInput.schema.ts -const __makeSchema_EventCreateWithoutFeedbackFormInput_schema = () => z.object({ - id: z.string().optional(), - title: z.string(), - start: z.coerce.date(), - end: z.coerce.date(), - status: EventStatusSchema, - description: z.string(), - shortDescription: z.string().optional().nullable(), - imageUrl: z.string().optional().nullable(), - locationTitle: z.string().optional().nullable(), - locationAddress: z.string().optional().nullable(), - locationLink: z.string().optional().nullable(), - type: EventTypeSchema, - markForMissedAttendance: z.boolean().optional(), - createdAt: z.coerce.date().optional(), - updatedAt: z.coerce.date().optional(), - metadataImportId: z.number().int().optional().nullable(), - get fadderuke(){ return FadderukeCreateNestedOneWithoutEventInputObjectSchema.optional(); }, - get attendance(){ return AttendanceCreateNestedOneWithoutEventsInputObjectSchema.optional(); }, - get parent(){ return EventCreateNestedOneWithoutChildrenInputObjectSchema.optional(); }, - get children(){ return EventCreateNestedManyWithoutParentInputObjectSchema.optional(); }, - get contest(){ return ContestCreateNestedOneWithoutEventsInputObjectSchema.optional(); }, - get companies(){ return EventCompanyCreateNestedManyWithoutEventInputObjectSchema.optional(); }, - get hostingGroups(){ return EventHostingGroupCreateNestedManyWithoutEventInputObjectSchema.optional(); }, - get deregisterReasons(){ return DeregisterReasonCreateNestedManyWithoutEventInputObjectSchema.optional(); } -}).strict(); -export const EventCreateWithoutFeedbackFormInputObjectSchema: z.ZodType = z.lazy(__makeSchema_EventCreateWithoutFeedbackFormInput_schema) as unknown as z.ZodType; -export const EventCreateWithoutFeedbackFormInputObjectZodSchema = z.lazy(__makeSchema_EventCreateWithoutFeedbackFormInput_schema); - - -// File: EventUncheckedCreateWithoutFeedbackFormInput.schema.ts -const __makeSchema_EventUncheckedCreateWithoutFeedbackFormInput_schema = () => z.object({ - id: z.string().optional(), - title: z.string(), - start: z.coerce.date(), - end: z.coerce.date(), - status: EventStatusSchema, - description: z.string(), - shortDescription: z.string().optional().nullable(), - imageUrl: z.string().optional().nullable(), - locationTitle: z.string().optional().nullable(), - locationAddress: z.string().optional().nullable(), - locationLink: z.string().optional().nullable(), - type: EventTypeSchema, - markForMissedAttendance: z.boolean().optional(), - createdAt: z.coerce.date().optional(), - updatedAt: z.coerce.date().optional(), - attendanceId: z.string().optional().nullable(), - parentId: z.string().optional().nullable(), - contestId: z.string().optional().nullable(), - metadataImportId: z.number().int().optional().nullable(), - get fadderuke(){ return FadderukeUncheckedCreateNestedOneWithoutEventInputObjectSchema.optional(); }, - get children(){ return EventUncheckedCreateNestedManyWithoutParentInputObjectSchema.optional(); }, - get companies(){ return EventCompanyUncheckedCreateNestedManyWithoutEventInputObjectSchema.optional(); }, - get hostingGroups(){ return EventHostingGroupUncheckedCreateNestedManyWithoutEventInputObjectSchema.optional(); }, - get deregisterReasons(){ return DeregisterReasonUncheckedCreateNestedManyWithoutEventInputObjectSchema.optional(); } -}).strict(); -export const EventUncheckedCreateWithoutFeedbackFormInputObjectSchema: z.ZodType = z.lazy(__makeSchema_EventUncheckedCreateWithoutFeedbackFormInput_schema) as unknown as z.ZodType; -export const EventUncheckedCreateWithoutFeedbackFormInputObjectZodSchema = z.lazy(__makeSchema_EventUncheckedCreateWithoutFeedbackFormInput_schema); - - -// File: EventCreateOrConnectWithoutFeedbackFormInput.schema.ts -const __makeSchema_EventCreateOrConnectWithoutFeedbackFormInput_schema = () => z.object({ - get where(){ return EventWhereUniqueInputObjectSchema; }, - create: z.union([EventCreateWithoutFeedbackFormInputObjectSchema, EventUncheckedCreateWithoutFeedbackFormInputObjectSchema]) -}).strict(); -export const EventCreateOrConnectWithoutFeedbackFormInputObjectSchema: z.ZodType = z.lazy(__makeSchema_EventCreateOrConnectWithoutFeedbackFormInput_schema) as unknown as z.ZodType; -export const EventCreateOrConnectWithoutFeedbackFormInputObjectZodSchema = z.lazy(__makeSchema_EventCreateOrConnectWithoutFeedbackFormInput_schema); - - -// File: FeedbackQuestionCreateWithoutFeedbackFormInput.schema.ts -const __makeSchema_FeedbackQuestionCreateWithoutFeedbackFormInput_schema = () => z.object({ - id: z.string().optional(), - label: z.string(), - required: z.boolean().optional(), - showInPublicResults: z.boolean().optional(), - type: FeedbackQuestionTypeSchema, - order: z.number().int(), - createdAt: z.coerce.date().optional(), - updatedAt: z.coerce.date().optional(), - get options(){ return FeedbackQuestionOptionCreateNestedManyWithoutQuestionInputObjectSchema.optional(); }, - get answers(){ return FeedbackQuestionAnswerCreateNestedManyWithoutQuestionInputObjectSchema.optional(); } -}).strict(); -export const FeedbackQuestionCreateWithoutFeedbackFormInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackQuestionCreateWithoutFeedbackFormInput_schema) as unknown as z.ZodType; -export const FeedbackQuestionCreateWithoutFeedbackFormInputObjectZodSchema = z.lazy(__makeSchema_FeedbackQuestionCreateWithoutFeedbackFormInput_schema); - - -// File: FeedbackQuestionUncheckedCreateWithoutFeedbackFormInput.schema.ts -const __makeSchema_FeedbackQuestionUncheckedCreateWithoutFeedbackFormInput_schema = () => z.object({ - id: z.string().optional(), - label: z.string(), - required: z.boolean().optional(), - showInPublicResults: z.boolean().optional(), - type: FeedbackQuestionTypeSchema, - order: z.number().int(), - createdAt: z.coerce.date().optional(), - updatedAt: z.coerce.date().optional(), - get options(){ return FeedbackQuestionOptionUncheckedCreateNestedManyWithoutQuestionInputObjectSchema.optional(); }, - get answers(){ return FeedbackQuestionAnswerUncheckedCreateNestedManyWithoutQuestionInputObjectSchema.optional(); } -}).strict(); -export const FeedbackQuestionUncheckedCreateWithoutFeedbackFormInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackQuestionUncheckedCreateWithoutFeedbackFormInput_schema) as unknown as z.ZodType; -export const FeedbackQuestionUncheckedCreateWithoutFeedbackFormInputObjectZodSchema = z.lazy(__makeSchema_FeedbackQuestionUncheckedCreateWithoutFeedbackFormInput_schema); - - -// File: FeedbackQuestionCreateOrConnectWithoutFeedbackFormInput.schema.ts -const __makeSchema_FeedbackQuestionCreateOrConnectWithoutFeedbackFormInput_schema = () => z.object({ - get where(){ return FeedbackQuestionWhereUniqueInputObjectSchema; }, - create: z.union([FeedbackQuestionCreateWithoutFeedbackFormInputObjectSchema, FeedbackQuestionUncheckedCreateWithoutFeedbackFormInputObjectSchema]) -}).strict(); -export const FeedbackQuestionCreateOrConnectWithoutFeedbackFormInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackQuestionCreateOrConnectWithoutFeedbackFormInput_schema) as unknown as z.ZodType; -export const FeedbackQuestionCreateOrConnectWithoutFeedbackFormInputObjectZodSchema = z.lazy(__makeSchema_FeedbackQuestionCreateOrConnectWithoutFeedbackFormInput_schema); - - -// File: FeedbackQuestionCreateManyFeedbackFormInputEnvelope.schema.ts -const __makeSchema_FeedbackQuestionCreateManyFeedbackFormInputEnvelope_schema = () => z.object({ - data: z.union([FeedbackQuestionCreateManyFeedbackFormInputObjectSchema, FeedbackQuestionCreateManyFeedbackFormInputObjectSchema.array()]), - skipDuplicates: z.boolean().optional() -}).strict(); -export const FeedbackQuestionCreateManyFeedbackFormInputEnvelopeObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackQuestionCreateManyFeedbackFormInputEnvelope_schema) as unknown as z.ZodType; -export const FeedbackQuestionCreateManyFeedbackFormInputEnvelopeObjectZodSchema = z.lazy(__makeSchema_FeedbackQuestionCreateManyFeedbackFormInputEnvelope_schema); - - -// File: FeedbackFormAnswerCreateWithoutFeedbackFormInput.schema.ts -const __makeSchema_FeedbackFormAnswerCreateWithoutFeedbackFormInput_schema = () => z.object({ - id: z.string().optional(), - createdAt: z.coerce.date().optional(), - updatedAt: z.coerce.date().optional(), - get attendee(){ return AttendeeCreateNestedOneWithoutFeedbackFormAnswerInputObjectSchema; }, - get answers(){ return FeedbackQuestionAnswerCreateNestedManyWithoutFormAnswerInputObjectSchema.optional(); } -}).strict(); -export const FeedbackFormAnswerCreateWithoutFeedbackFormInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackFormAnswerCreateWithoutFeedbackFormInput_schema) as unknown as z.ZodType; -export const FeedbackFormAnswerCreateWithoutFeedbackFormInputObjectZodSchema = z.lazy(__makeSchema_FeedbackFormAnswerCreateWithoutFeedbackFormInput_schema); - - -// File: FeedbackFormAnswerUncheckedCreateWithoutFeedbackFormInput.schema.ts -const __makeSchema_FeedbackFormAnswerUncheckedCreateWithoutFeedbackFormInput_schema = () => z.object({ - id: z.string().optional(), - createdAt: z.coerce.date().optional(), - updatedAt: z.coerce.date().optional(), - attendeeId: z.string(), - get answers(){ return FeedbackQuestionAnswerUncheckedCreateNestedManyWithoutFormAnswerInputObjectSchema.optional(); } -}).strict(); -export const FeedbackFormAnswerUncheckedCreateWithoutFeedbackFormInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackFormAnswerUncheckedCreateWithoutFeedbackFormInput_schema) as unknown as z.ZodType; -export const FeedbackFormAnswerUncheckedCreateWithoutFeedbackFormInputObjectZodSchema = z.lazy(__makeSchema_FeedbackFormAnswerUncheckedCreateWithoutFeedbackFormInput_schema); - - -// File: FeedbackFormAnswerCreateOrConnectWithoutFeedbackFormInput.schema.ts -const __makeSchema_FeedbackFormAnswerCreateOrConnectWithoutFeedbackFormInput_schema = () => z.object({ - get where(){ return FeedbackFormAnswerWhereUniqueInputObjectSchema; }, - create: z.union([FeedbackFormAnswerCreateWithoutFeedbackFormInputObjectSchema, FeedbackFormAnswerUncheckedCreateWithoutFeedbackFormInputObjectSchema]) -}).strict(); -export const FeedbackFormAnswerCreateOrConnectWithoutFeedbackFormInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackFormAnswerCreateOrConnectWithoutFeedbackFormInput_schema) as unknown as z.ZodType; -export const FeedbackFormAnswerCreateOrConnectWithoutFeedbackFormInputObjectZodSchema = z.lazy(__makeSchema_FeedbackFormAnswerCreateOrConnectWithoutFeedbackFormInput_schema); - - -// File: FeedbackFormAnswerCreateManyFeedbackFormInputEnvelope.schema.ts -const __makeSchema_FeedbackFormAnswerCreateManyFeedbackFormInputEnvelope_schema = () => z.object({ - data: z.union([FeedbackFormAnswerCreateManyFeedbackFormInputObjectSchema, FeedbackFormAnswerCreateManyFeedbackFormInputObjectSchema.array()]), - skipDuplicates: z.boolean().optional() -}).strict(); -export const FeedbackFormAnswerCreateManyFeedbackFormInputEnvelopeObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackFormAnswerCreateManyFeedbackFormInputEnvelope_schema) as unknown as z.ZodType; -export const FeedbackFormAnswerCreateManyFeedbackFormInputEnvelopeObjectZodSchema = z.lazy(__makeSchema_FeedbackFormAnswerCreateManyFeedbackFormInputEnvelope_schema); - - -// File: EventUpsertWithoutFeedbackFormInput.schema.ts -const __makeSchema_EventUpsertWithoutFeedbackFormInput_schema = () => z.object({ - update: z.union([EventUpdateWithoutFeedbackFormInputObjectSchema, EventUncheckedUpdateWithoutFeedbackFormInputObjectSchema]), - create: z.union([EventCreateWithoutFeedbackFormInputObjectSchema, EventUncheckedCreateWithoutFeedbackFormInputObjectSchema]), - get where(){ return EventWhereInputObjectSchema.optional(); } -}).strict(); -export const EventUpsertWithoutFeedbackFormInputObjectSchema: z.ZodType = z.lazy(__makeSchema_EventUpsertWithoutFeedbackFormInput_schema) as unknown as z.ZodType; -export const EventUpsertWithoutFeedbackFormInputObjectZodSchema = z.lazy(__makeSchema_EventUpsertWithoutFeedbackFormInput_schema); - - -// File: EventUpdateToOneWithWhereWithoutFeedbackFormInput.schema.ts -const __makeSchema_EventUpdateToOneWithWhereWithoutFeedbackFormInput_schema = () => z.object({ - get where(){ return EventWhereInputObjectSchema.optional(); }, - data: z.union([EventUpdateWithoutFeedbackFormInputObjectSchema, EventUncheckedUpdateWithoutFeedbackFormInputObjectSchema]) -}).strict(); -export const EventUpdateToOneWithWhereWithoutFeedbackFormInputObjectSchema: z.ZodType = z.lazy(__makeSchema_EventUpdateToOneWithWhereWithoutFeedbackFormInput_schema) as unknown as z.ZodType; -export const EventUpdateToOneWithWhereWithoutFeedbackFormInputObjectZodSchema = z.lazy(__makeSchema_EventUpdateToOneWithWhereWithoutFeedbackFormInput_schema); - - -// File: EventUpdateWithoutFeedbackFormInput.schema.ts -const __makeSchema_EventUpdateWithoutFeedbackFormInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - title: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - start: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - end: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - status: z.union([EventStatusSchema, EnumEventStatusFieldUpdateOperationsInputObjectSchema]).optional(), - description: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - shortDescription: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - imageUrl: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - locationTitle: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - locationAddress: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - locationLink: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - type: z.union([EventTypeSchema, EnumEventTypeFieldUpdateOperationsInputObjectSchema]).optional(), - markForMissedAttendance: z.union([z.boolean(), BoolFieldUpdateOperationsInputObjectSchema]).optional(), - createdAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - updatedAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - metadataImportId: z.union([z.number().int(), NullableIntFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - get fadderuke(){ return FadderukeUpdateOneWithoutEventNestedInputObjectSchema.optional(); }, - get attendance(){ return AttendanceUpdateOneWithoutEventsNestedInputObjectSchema.optional(); }, - get parent(){ return EventUpdateOneWithoutChildrenNestedInputObjectSchema.optional(); }, - get children(){ return EventUpdateManyWithoutParentNestedInputObjectSchema.optional(); }, - get contest(){ return ContestUpdateOneWithoutEventsNestedInputObjectSchema.optional(); }, - get companies(){ return EventCompanyUpdateManyWithoutEventNestedInputObjectSchema.optional(); }, - get hostingGroups(){ return EventHostingGroupUpdateManyWithoutEventNestedInputObjectSchema.optional(); }, - get deregisterReasons(){ return DeregisterReasonUpdateManyWithoutEventNestedInputObjectSchema.optional(); } -}).strict(); -export const EventUpdateWithoutFeedbackFormInputObjectSchema: z.ZodType = z.lazy(__makeSchema_EventUpdateWithoutFeedbackFormInput_schema) as unknown as z.ZodType; -export const EventUpdateWithoutFeedbackFormInputObjectZodSchema = z.lazy(__makeSchema_EventUpdateWithoutFeedbackFormInput_schema); - - -// File: EventUncheckedUpdateWithoutFeedbackFormInput.schema.ts -const __makeSchema_EventUncheckedUpdateWithoutFeedbackFormInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - title: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - start: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - end: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - status: z.union([EventStatusSchema, EnumEventStatusFieldUpdateOperationsInputObjectSchema]).optional(), - description: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - shortDescription: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - imageUrl: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - locationTitle: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - locationAddress: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - locationLink: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - type: z.union([EventTypeSchema, EnumEventTypeFieldUpdateOperationsInputObjectSchema]).optional(), - markForMissedAttendance: z.union([z.boolean(), BoolFieldUpdateOperationsInputObjectSchema]).optional(), - createdAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - updatedAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - attendanceId: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - parentId: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - contestId: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - metadataImportId: z.union([z.number().int(), NullableIntFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - get fadderuke(){ return FadderukeUncheckedUpdateOneWithoutEventNestedInputObjectSchema.optional(); }, - get children(){ return EventUncheckedUpdateManyWithoutParentNestedInputObjectSchema.optional(); }, - get companies(){ return EventCompanyUncheckedUpdateManyWithoutEventNestedInputObjectSchema.optional(); }, - get hostingGroups(){ return EventHostingGroupUncheckedUpdateManyWithoutEventNestedInputObjectSchema.optional(); }, - get deregisterReasons(){ return DeregisterReasonUncheckedUpdateManyWithoutEventNestedInputObjectSchema.optional(); } -}).strict(); -export const EventUncheckedUpdateWithoutFeedbackFormInputObjectSchema: z.ZodType = z.lazy(__makeSchema_EventUncheckedUpdateWithoutFeedbackFormInput_schema) as unknown as z.ZodType; -export const EventUncheckedUpdateWithoutFeedbackFormInputObjectZodSchema = z.lazy(__makeSchema_EventUncheckedUpdateWithoutFeedbackFormInput_schema); - - -// File: FeedbackQuestionUpsertWithWhereUniqueWithoutFeedbackFormInput.schema.ts -const __makeSchema_FeedbackQuestionUpsertWithWhereUniqueWithoutFeedbackFormInput_schema = () => z.object({ - get where(){ return FeedbackQuestionWhereUniqueInputObjectSchema; }, - update: z.union([FeedbackQuestionUpdateWithoutFeedbackFormInputObjectSchema, FeedbackQuestionUncheckedUpdateWithoutFeedbackFormInputObjectSchema]), - create: z.union([FeedbackQuestionCreateWithoutFeedbackFormInputObjectSchema, FeedbackQuestionUncheckedCreateWithoutFeedbackFormInputObjectSchema]) -}).strict(); -export const FeedbackQuestionUpsertWithWhereUniqueWithoutFeedbackFormInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackQuestionUpsertWithWhereUniqueWithoutFeedbackFormInput_schema) as unknown as z.ZodType; -export const FeedbackQuestionUpsertWithWhereUniqueWithoutFeedbackFormInputObjectZodSchema = z.lazy(__makeSchema_FeedbackQuestionUpsertWithWhereUniqueWithoutFeedbackFormInput_schema); - - -// File: FeedbackQuestionUpdateWithWhereUniqueWithoutFeedbackFormInput.schema.ts -const __makeSchema_FeedbackQuestionUpdateWithWhereUniqueWithoutFeedbackFormInput_schema = () => z.object({ - get where(){ return FeedbackQuestionWhereUniqueInputObjectSchema; }, - data: z.union([FeedbackQuestionUpdateWithoutFeedbackFormInputObjectSchema, FeedbackQuestionUncheckedUpdateWithoutFeedbackFormInputObjectSchema]) -}).strict(); -export const FeedbackQuestionUpdateWithWhereUniqueWithoutFeedbackFormInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackQuestionUpdateWithWhereUniqueWithoutFeedbackFormInput_schema) as unknown as z.ZodType; -export const FeedbackQuestionUpdateWithWhereUniqueWithoutFeedbackFormInputObjectZodSchema = z.lazy(__makeSchema_FeedbackQuestionUpdateWithWhereUniqueWithoutFeedbackFormInput_schema); - - -// File: FeedbackQuestionUpdateManyWithWhereWithoutFeedbackFormInput.schema.ts -const __makeSchema_FeedbackQuestionUpdateManyWithWhereWithoutFeedbackFormInput_schema = () => z.object({ - get where(){ return FeedbackQuestionScalarWhereInputObjectSchema; }, - data: z.union([FeedbackQuestionUpdateManyMutationInputObjectSchema, FeedbackQuestionUncheckedUpdateManyWithoutFeedbackFormInputObjectSchema]) -}).strict(); -export const FeedbackQuestionUpdateManyWithWhereWithoutFeedbackFormInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackQuestionUpdateManyWithWhereWithoutFeedbackFormInput_schema) as unknown as z.ZodType; -export const FeedbackQuestionUpdateManyWithWhereWithoutFeedbackFormInputObjectZodSchema = z.lazy(__makeSchema_FeedbackQuestionUpdateManyWithWhereWithoutFeedbackFormInput_schema); - - -// File: FeedbackQuestionScalarWhereInput.schema.ts -const __makeSchema_FeedbackQuestionScalarWhereInput_schema = () => z.object({ - AND: z.union([FeedbackQuestionScalarWhereInputObjectSchema, FeedbackQuestionScalarWhereInputObjectSchema.array()]).optional(), - get OR(){ return FeedbackQuestionScalarWhereInputObjectSchema.array().optional(); }, - NOT: z.union([FeedbackQuestionScalarWhereInputObjectSchema, FeedbackQuestionScalarWhereInputObjectSchema.array()]).optional(), - id: z.union([StringFilterObjectSchema, z.string()]).optional(), - label: z.union([StringFilterObjectSchema, z.string()]).optional(), - required: z.union([BoolFilterObjectSchema, z.boolean()]).optional(), - showInPublicResults: z.union([BoolFilterObjectSchema, z.boolean()]).optional(), - type: z.union([EnumFeedbackQuestionTypeFilterObjectSchema, FeedbackQuestionTypeSchema]).optional(), - order: z.union([IntFilterObjectSchema, z.number().int()]).optional(), - createdAt: z.union([DateTimeFilterObjectSchema, z.coerce.date()]).optional(), - updatedAt: z.union([DateTimeFilterObjectSchema, z.coerce.date()]).optional(), - feedbackFormId: z.union([StringFilterObjectSchema, z.string()]).optional() -}).strict(); -export const FeedbackQuestionScalarWhereInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackQuestionScalarWhereInput_schema) as unknown as z.ZodType; -export const FeedbackQuestionScalarWhereInputObjectZodSchema = z.lazy(__makeSchema_FeedbackQuestionScalarWhereInput_schema); - - -// File: FeedbackFormAnswerUpsertWithWhereUniqueWithoutFeedbackFormInput.schema.ts -const __makeSchema_FeedbackFormAnswerUpsertWithWhereUniqueWithoutFeedbackFormInput_schema = () => z.object({ - get where(){ return FeedbackFormAnswerWhereUniqueInputObjectSchema; }, - update: z.union([FeedbackFormAnswerUpdateWithoutFeedbackFormInputObjectSchema, FeedbackFormAnswerUncheckedUpdateWithoutFeedbackFormInputObjectSchema]), - create: z.union([FeedbackFormAnswerCreateWithoutFeedbackFormInputObjectSchema, FeedbackFormAnswerUncheckedCreateWithoutFeedbackFormInputObjectSchema]) -}).strict(); -export const FeedbackFormAnswerUpsertWithWhereUniqueWithoutFeedbackFormInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackFormAnswerUpsertWithWhereUniqueWithoutFeedbackFormInput_schema) as unknown as z.ZodType; -export const FeedbackFormAnswerUpsertWithWhereUniqueWithoutFeedbackFormInputObjectZodSchema = z.lazy(__makeSchema_FeedbackFormAnswerUpsertWithWhereUniqueWithoutFeedbackFormInput_schema); - - -// File: FeedbackFormAnswerUpdateWithWhereUniqueWithoutFeedbackFormInput.schema.ts -const __makeSchema_FeedbackFormAnswerUpdateWithWhereUniqueWithoutFeedbackFormInput_schema = () => z.object({ - get where(){ return FeedbackFormAnswerWhereUniqueInputObjectSchema; }, - data: z.union([FeedbackFormAnswerUpdateWithoutFeedbackFormInputObjectSchema, FeedbackFormAnswerUncheckedUpdateWithoutFeedbackFormInputObjectSchema]) -}).strict(); -export const FeedbackFormAnswerUpdateWithWhereUniqueWithoutFeedbackFormInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackFormAnswerUpdateWithWhereUniqueWithoutFeedbackFormInput_schema) as unknown as z.ZodType; -export const FeedbackFormAnswerUpdateWithWhereUniqueWithoutFeedbackFormInputObjectZodSchema = z.lazy(__makeSchema_FeedbackFormAnswerUpdateWithWhereUniqueWithoutFeedbackFormInput_schema); - - -// File: FeedbackFormAnswerUpdateManyWithWhereWithoutFeedbackFormInput.schema.ts -const __makeSchema_FeedbackFormAnswerUpdateManyWithWhereWithoutFeedbackFormInput_schema = () => z.object({ - get where(){ return FeedbackFormAnswerScalarWhereInputObjectSchema; }, - data: z.union([FeedbackFormAnswerUpdateManyMutationInputObjectSchema, FeedbackFormAnswerUncheckedUpdateManyWithoutFeedbackFormInputObjectSchema]) -}).strict(); -export const FeedbackFormAnswerUpdateManyWithWhereWithoutFeedbackFormInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackFormAnswerUpdateManyWithWhereWithoutFeedbackFormInput_schema) as unknown as z.ZodType; -export const FeedbackFormAnswerUpdateManyWithWhereWithoutFeedbackFormInputObjectZodSchema = z.lazy(__makeSchema_FeedbackFormAnswerUpdateManyWithWhereWithoutFeedbackFormInput_schema); - - -// File: FeedbackFormAnswerScalarWhereInput.schema.ts -const __makeSchema_FeedbackFormAnswerScalarWhereInput_schema = () => z.object({ - AND: z.union([FeedbackFormAnswerScalarWhereInputObjectSchema, FeedbackFormAnswerScalarWhereInputObjectSchema.array()]).optional(), - get OR(){ return FeedbackFormAnswerScalarWhereInputObjectSchema.array().optional(); }, - NOT: z.union([FeedbackFormAnswerScalarWhereInputObjectSchema, FeedbackFormAnswerScalarWhereInputObjectSchema.array()]).optional(), - id: z.union([StringFilterObjectSchema, z.string()]).optional(), - createdAt: z.union([DateTimeFilterObjectSchema, z.coerce.date()]).optional(), - updatedAt: z.union([DateTimeFilterObjectSchema, z.coerce.date()]).optional(), - feedbackFormId: z.union([StringFilterObjectSchema, z.string()]).optional(), - attendeeId: z.union([StringFilterObjectSchema, z.string()]).optional() -}).strict(); -export const FeedbackFormAnswerScalarWhereInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackFormAnswerScalarWhereInput_schema) as unknown as z.ZodType; -export const FeedbackFormAnswerScalarWhereInputObjectZodSchema = z.lazy(__makeSchema_FeedbackFormAnswerScalarWhereInput_schema); - - -// File: FeedbackFormCreateWithoutQuestionsInput.schema.ts -const __makeSchema_FeedbackFormCreateWithoutQuestionsInput_schema = () => z.object({ - id: z.string().optional(), - publicResultsToken: z.string().optional(), - createdAt: z.coerce.date().optional(), - updatedAt: z.coerce.date().optional(), - answerDeadline: z.coerce.date(), - get event(){ return EventCreateNestedOneWithoutFeedbackFormInputObjectSchema; }, - get answers(){ return FeedbackFormAnswerCreateNestedManyWithoutFeedbackFormInputObjectSchema.optional(); } -}).strict(); -export const FeedbackFormCreateWithoutQuestionsInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackFormCreateWithoutQuestionsInput_schema) as unknown as z.ZodType; -export const FeedbackFormCreateWithoutQuestionsInputObjectZodSchema = z.lazy(__makeSchema_FeedbackFormCreateWithoutQuestionsInput_schema); - - -// File: FeedbackFormUncheckedCreateWithoutQuestionsInput.schema.ts -const __makeSchema_FeedbackFormUncheckedCreateWithoutQuestionsInput_schema = () => z.object({ - id: z.string().optional(), - publicResultsToken: z.string().optional(), - createdAt: z.coerce.date().optional(), - updatedAt: z.coerce.date().optional(), - answerDeadline: z.coerce.date(), - eventId: z.string(), - get answers(){ return FeedbackFormAnswerUncheckedCreateNestedManyWithoutFeedbackFormInputObjectSchema.optional(); } -}).strict(); -export const FeedbackFormUncheckedCreateWithoutQuestionsInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackFormUncheckedCreateWithoutQuestionsInput_schema) as unknown as z.ZodType; -export const FeedbackFormUncheckedCreateWithoutQuestionsInputObjectZodSchema = z.lazy(__makeSchema_FeedbackFormUncheckedCreateWithoutQuestionsInput_schema); - - -// File: FeedbackFormCreateOrConnectWithoutQuestionsInput.schema.ts -const __makeSchema_FeedbackFormCreateOrConnectWithoutQuestionsInput_schema = () => z.object({ - get where(){ return FeedbackFormWhereUniqueInputObjectSchema; }, - create: z.union([FeedbackFormCreateWithoutQuestionsInputObjectSchema, FeedbackFormUncheckedCreateWithoutQuestionsInputObjectSchema]) -}).strict(); -export const FeedbackFormCreateOrConnectWithoutQuestionsInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackFormCreateOrConnectWithoutQuestionsInput_schema) as unknown as z.ZodType; -export const FeedbackFormCreateOrConnectWithoutQuestionsInputObjectZodSchema = z.lazy(__makeSchema_FeedbackFormCreateOrConnectWithoutQuestionsInput_schema); - - -// File: FeedbackQuestionOptionCreateWithoutQuestionInput.schema.ts -const __makeSchema_FeedbackQuestionOptionCreateWithoutQuestionInput_schema = () => z.object({ - id: z.string().optional(), - name: z.string(), - get selectedInAnswers(){ return FeedbackQuestionAnswerOptionLinkCreateNestedManyWithoutFeedbackQuestionOptionInputObjectSchema.optional(); } -}).strict(); -export const FeedbackQuestionOptionCreateWithoutQuestionInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackQuestionOptionCreateWithoutQuestionInput_schema) as unknown as z.ZodType; -export const FeedbackQuestionOptionCreateWithoutQuestionInputObjectZodSchema = z.lazy(__makeSchema_FeedbackQuestionOptionCreateWithoutQuestionInput_schema); - - -// File: FeedbackQuestionOptionUncheckedCreateWithoutQuestionInput.schema.ts -const __makeSchema_FeedbackQuestionOptionUncheckedCreateWithoutQuestionInput_schema = () => z.object({ - id: z.string().optional(), - name: z.string(), - get selectedInAnswers(){ return FeedbackQuestionAnswerOptionLinkUncheckedCreateNestedManyWithoutFeedbackQuestionOptionInputObjectSchema.optional(); } -}).strict(); -export const FeedbackQuestionOptionUncheckedCreateWithoutQuestionInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackQuestionOptionUncheckedCreateWithoutQuestionInput_schema) as unknown as z.ZodType; -export const FeedbackQuestionOptionUncheckedCreateWithoutQuestionInputObjectZodSchema = z.lazy(__makeSchema_FeedbackQuestionOptionUncheckedCreateWithoutQuestionInput_schema); - - -// File: FeedbackQuestionOptionCreateOrConnectWithoutQuestionInput.schema.ts -const __makeSchema_FeedbackQuestionOptionCreateOrConnectWithoutQuestionInput_schema = () => z.object({ - get where(){ return FeedbackQuestionOptionWhereUniqueInputObjectSchema; }, - create: z.union([FeedbackQuestionOptionCreateWithoutQuestionInputObjectSchema, FeedbackQuestionOptionUncheckedCreateWithoutQuestionInputObjectSchema]) -}).strict(); -export const FeedbackQuestionOptionCreateOrConnectWithoutQuestionInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackQuestionOptionCreateOrConnectWithoutQuestionInput_schema) as unknown as z.ZodType; -export const FeedbackQuestionOptionCreateOrConnectWithoutQuestionInputObjectZodSchema = z.lazy(__makeSchema_FeedbackQuestionOptionCreateOrConnectWithoutQuestionInput_schema); - - -// File: FeedbackQuestionOptionCreateManyQuestionInputEnvelope.schema.ts -const __makeSchema_FeedbackQuestionOptionCreateManyQuestionInputEnvelope_schema = () => z.object({ - data: z.union([FeedbackQuestionOptionCreateManyQuestionInputObjectSchema, FeedbackQuestionOptionCreateManyQuestionInputObjectSchema.array()]), - skipDuplicates: z.boolean().optional() -}).strict(); -export const FeedbackQuestionOptionCreateManyQuestionInputEnvelopeObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackQuestionOptionCreateManyQuestionInputEnvelope_schema) as unknown as z.ZodType; -export const FeedbackQuestionOptionCreateManyQuestionInputEnvelopeObjectZodSchema = z.lazy(__makeSchema_FeedbackQuestionOptionCreateManyQuestionInputEnvelope_schema); - - -// File: FeedbackQuestionAnswerCreateWithoutQuestionInput.schema.ts -const __makeSchema_FeedbackQuestionAnswerCreateWithoutQuestionInput_schema = () => z.object({ - id: z.string().optional(), - value: z.union([NullableJsonNullValueInputSchema, jsonSchema]).optional(), - get formAnswer(){ return FeedbackFormAnswerCreateNestedOneWithoutAnswersInputObjectSchema; }, - get selectedOptions(){ return FeedbackQuestionAnswerOptionLinkCreateNestedManyWithoutFeedbackQuestionAnswerInputObjectSchema.optional(); } -}).strict(); -export const FeedbackQuestionAnswerCreateWithoutQuestionInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackQuestionAnswerCreateWithoutQuestionInput_schema) as unknown as z.ZodType; -export const FeedbackQuestionAnswerCreateWithoutQuestionInputObjectZodSchema = z.lazy(__makeSchema_FeedbackQuestionAnswerCreateWithoutQuestionInput_schema); - - -// File: FeedbackQuestionAnswerUncheckedCreateWithoutQuestionInput.schema.ts -const __makeSchema_FeedbackQuestionAnswerUncheckedCreateWithoutQuestionInput_schema = () => z.object({ - id: z.string().optional(), - value: z.union([NullableJsonNullValueInputSchema, jsonSchema]).optional(), - formAnswerId: z.string(), - get selectedOptions(){ return FeedbackQuestionAnswerOptionLinkUncheckedCreateNestedManyWithoutFeedbackQuestionAnswerInputObjectSchema.optional(); } -}).strict(); -export const FeedbackQuestionAnswerUncheckedCreateWithoutQuestionInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackQuestionAnswerUncheckedCreateWithoutQuestionInput_schema) as unknown as z.ZodType; -export const FeedbackQuestionAnswerUncheckedCreateWithoutQuestionInputObjectZodSchema = z.lazy(__makeSchema_FeedbackQuestionAnswerUncheckedCreateWithoutQuestionInput_schema); - - -// File: FeedbackQuestionAnswerCreateOrConnectWithoutQuestionInput.schema.ts -const __makeSchema_FeedbackQuestionAnswerCreateOrConnectWithoutQuestionInput_schema = () => z.object({ - get where(){ return FeedbackQuestionAnswerWhereUniqueInputObjectSchema; }, - create: z.union([FeedbackQuestionAnswerCreateWithoutQuestionInputObjectSchema, FeedbackQuestionAnswerUncheckedCreateWithoutQuestionInputObjectSchema]) -}).strict(); -export const FeedbackQuestionAnswerCreateOrConnectWithoutQuestionInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackQuestionAnswerCreateOrConnectWithoutQuestionInput_schema) as unknown as z.ZodType; -export const FeedbackQuestionAnswerCreateOrConnectWithoutQuestionInputObjectZodSchema = z.lazy(__makeSchema_FeedbackQuestionAnswerCreateOrConnectWithoutQuestionInput_schema); - - -// File: FeedbackQuestionAnswerCreateManyQuestionInputEnvelope.schema.ts -const __makeSchema_FeedbackQuestionAnswerCreateManyQuestionInputEnvelope_schema = () => z.object({ - data: z.union([FeedbackQuestionAnswerCreateManyQuestionInputObjectSchema, FeedbackQuestionAnswerCreateManyQuestionInputObjectSchema.array()]), - skipDuplicates: z.boolean().optional() -}).strict(); -export const FeedbackQuestionAnswerCreateManyQuestionInputEnvelopeObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackQuestionAnswerCreateManyQuestionInputEnvelope_schema) as unknown as z.ZodType; -export const FeedbackQuestionAnswerCreateManyQuestionInputEnvelopeObjectZodSchema = z.lazy(__makeSchema_FeedbackQuestionAnswerCreateManyQuestionInputEnvelope_schema); - - -// File: FeedbackFormUpsertWithoutQuestionsInput.schema.ts -const __makeSchema_FeedbackFormUpsertWithoutQuestionsInput_schema = () => z.object({ - update: z.union([FeedbackFormUpdateWithoutQuestionsInputObjectSchema, FeedbackFormUncheckedUpdateWithoutQuestionsInputObjectSchema]), - create: z.union([FeedbackFormCreateWithoutQuestionsInputObjectSchema, FeedbackFormUncheckedCreateWithoutQuestionsInputObjectSchema]), - get where(){ return FeedbackFormWhereInputObjectSchema.optional(); } -}).strict(); -export const FeedbackFormUpsertWithoutQuestionsInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackFormUpsertWithoutQuestionsInput_schema) as unknown as z.ZodType; -export const FeedbackFormUpsertWithoutQuestionsInputObjectZodSchema = z.lazy(__makeSchema_FeedbackFormUpsertWithoutQuestionsInput_schema); - - -// File: FeedbackFormUpdateToOneWithWhereWithoutQuestionsInput.schema.ts -const __makeSchema_FeedbackFormUpdateToOneWithWhereWithoutQuestionsInput_schema = () => z.object({ - get where(){ return FeedbackFormWhereInputObjectSchema.optional(); }, - data: z.union([FeedbackFormUpdateWithoutQuestionsInputObjectSchema, FeedbackFormUncheckedUpdateWithoutQuestionsInputObjectSchema]) -}).strict(); -export const FeedbackFormUpdateToOneWithWhereWithoutQuestionsInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackFormUpdateToOneWithWhereWithoutQuestionsInput_schema) as unknown as z.ZodType; -export const FeedbackFormUpdateToOneWithWhereWithoutQuestionsInputObjectZodSchema = z.lazy(__makeSchema_FeedbackFormUpdateToOneWithWhereWithoutQuestionsInput_schema); - - -// File: FeedbackFormUpdateWithoutQuestionsInput.schema.ts -const __makeSchema_FeedbackFormUpdateWithoutQuestionsInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - publicResultsToken: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - createdAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - updatedAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - answerDeadline: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - get event(){ return EventUpdateOneRequiredWithoutFeedbackFormNestedInputObjectSchema.optional(); }, - get answers(){ return FeedbackFormAnswerUpdateManyWithoutFeedbackFormNestedInputObjectSchema.optional(); } -}).strict(); -export const FeedbackFormUpdateWithoutQuestionsInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackFormUpdateWithoutQuestionsInput_schema) as unknown as z.ZodType; -export const FeedbackFormUpdateWithoutQuestionsInputObjectZodSchema = z.lazy(__makeSchema_FeedbackFormUpdateWithoutQuestionsInput_schema); - - -// File: FeedbackFormUncheckedUpdateWithoutQuestionsInput.schema.ts -const __makeSchema_FeedbackFormUncheckedUpdateWithoutQuestionsInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - publicResultsToken: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - createdAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - updatedAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - answerDeadline: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - eventId: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - get answers(){ return FeedbackFormAnswerUncheckedUpdateManyWithoutFeedbackFormNestedInputObjectSchema.optional(); } -}).strict(); -export const FeedbackFormUncheckedUpdateWithoutQuestionsInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackFormUncheckedUpdateWithoutQuestionsInput_schema) as unknown as z.ZodType; -export const FeedbackFormUncheckedUpdateWithoutQuestionsInputObjectZodSchema = z.lazy(__makeSchema_FeedbackFormUncheckedUpdateWithoutQuestionsInput_schema); - - -// File: FeedbackQuestionOptionUpsertWithWhereUniqueWithoutQuestionInput.schema.ts -const __makeSchema_FeedbackQuestionOptionUpsertWithWhereUniqueWithoutQuestionInput_schema = () => z.object({ - get where(){ return FeedbackQuestionOptionWhereUniqueInputObjectSchema; }, - update: z.union([FeedbackQuestionOptionUpdateWithoutQuestionInputObjectSchema, FeedbackQuestionOptionUncheckedUpdateWithoutQuestionInputObjectSchema]), - create: z.union([FeedbackQuestionOptionCreateWithoutQuestionInputObjectSchema, FeedbackQuestionOptionUncheckedCreateWithoutQuestionInputObjectSchema]) -}).strict(); -export const FeedbackQuestionOptionUpsertWithWhereUniqueWithoutQuestionInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackQuestionOptionUpsertWithWhereUniqueWithoutQuestionInput_schema) as unknown as z.ZodType; -export const FeedbackQuestionOptionUpsertWithWhereUniqueWithoutQuestionInputObjectZodSchema = z.lazy(__makeSchema_FeedbackQuestionOptionUpsertWithWhereUniqueWithoutQuestionInput_schema); - - -// File: FeedbackQuestionOptionUpdateWithWhereUniqueWithoutQuestionInput.schema.ts -const __makeSchema_FeedbackQuestionOptionUpdateWithWhereUniqueWithoutQuestionInput_schema = () => z.object({ - get where(){ return FeedbackQuestionOptionWhereUniqueInputObjectSchema; }, - data: z.union([FeedbackQuestionOptionUpdateWithoutQuestionInputObjectSchema, FeedbackQuestionOptionUncheckedUpdateWithoutQuestionInputObjectSchema]) -}).strict(); -export const FeedbackQuestionOptionUpdateWithWhereUniqueWithoutQuestionInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackQuestionOptionUpdateWithWhereUniqueWithoutQuestionInput_schema) as unknown as z.ZodType; -export const FeedbackQuestionOptionUpdateWithWhereUniqueWithoutQuestionInputObjectZodSchema = z.lazy(__makeSchema_FeedbackQuestionOptionUpdateWithWhereUniqueWithoutQuestionInput_schema); - - -// File: FeedbackQuestionOptionUpdateManyWithWhereWithoutQuestionInput.schema.ts -const __makeSchema_FeedbackQuestionOptionUpdateManyWithWhereWithoutQuestionInput_schema = () => z.object({ - get where(){ return FeedbackQuestionOptionScalarWhereInputObjectSchema; }, - data: z.union([FeedbackQuestionOptionUpdateManyMutationInputObjectSchema, FeedbackQuestionOptionUncheckedUpdateManyWithoutQuestionInputObjectSchema]) -}).strict(); -export const FeedbackQuestionOptionUpdateManyWithWhereWithoutQuestionInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackQuestionOptionUpdateManyWithWhereWithoutQuestionInput_schema) as unknown as z.ZodType; -export const FeedbackQuestionOptionUpdateManyWithWhereWithoutQuestionInputObjectZodSchema = z.lazy(__makeSchema_FeedbackQuestionOptionUpdateManyWithWhereWithoutQuestionInput_schema); - - -// File: FeedbackQuestionOptionScalarWhereInput.schema.ts -const __makeSchema_FeedbackQuestionOptionScalarWhereInput_schema = () => z.object({ - AND: z.union([FeedbackQuestionOptionScalarWhereInputObjectSchema, FeedbackQuestionOptionScalarWhereInputObjectSchema.array()]).optional(), - get OR(){ return FeedbackQuestionOptionScalarWhereInputObjectSchema.array().optional(); }, - NOT: z.union([FeedbackQuestionOptionScalarWhereInputObjectSchema, FeedbackQuestionOptionScalarWhereInputObjectSchema.array()]).optional(), - id: z.union([StringFilterObjectSchema, z.string()]).optional(), - name: z.union([StringFilterObjectSchema, z.string()]).optional(), - questionId: z.union([StringFilterObjectSchema, z.string()]).optional() -}).strict(); -export const FeedbackQuestionOptionScalarWhereInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackQuestionOptionScalarWhereInput_schema) as unknown as z.ZodType; -export const FeedbackQuestionOptionScalarWhereInputObjectZodSchema = z.lazy(__makeSchema_FeedbackQuestionOptionScalarWhereInput_schema); - - -// File: FeedbackQuestionAnswerUpsertWithWhereUniqueWithoutQuestionInput.schema.ts -const __makeSchema_FeedbackQuestionAnswerUpsertWithWhereUniqueWithoutQuestionInput_schema = () => z.object({ - get where(){ return FeedbackQuestionAnswerWhereUniqueInputObjectSchema; }, - update: z.union([FeedbackQuestionAnswerUpdateWithoutQuestionInputObjectSchema, FeedbackQuestionAnswerUncheckedUpdateWithoutQuestionInputObjectSchema]), - create: z.union([FeedbackQuestionAnswerCreateWithoutQuestionInputObjectSchema, FeedbackQuestionAnswerUncheckedCreateWithoutQuestionInputObjectSchema]) -}).strict(); -export const FeedbackQuestionAnswerUpsertWithWhereUniqueWithoutQuestionInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackQuestionAnswerUpsertWithWhereUniqueWithoutQuestionInput_schema) as unknown as z.ZodType; -export const FeedbackQuestionAnswerUpsertWithWhereUniqueWithoutQuestionInputObjectZodSchema = z.lazy(__makeSchema_FeedbackQuestionAnswerUpsertWithWhereUniqueWithoutQuestionInput_schema); - - -// File: FeedbackQuestionAnswerUpdateWithWhereUniqueWithoutQuestionInput.schema.ts -const __makeSchema_FeedbackQuestionAnswerUpdateWithWhereUniqueWithoutQuestionInput_schema = () => z.object({ - get where(){ return FeedbackQuestionAnswerWhereUniqueInputObjectSchema; }, - data: z.union([FeedbackQuestionAnswerUpdateWithoutQuestionInputObjectSchema, FeedbackQuestionAnswerUncheckedUpdateWithoutQuestionInputObjectSchema]) -}).strict(); -export const FeedbackQuestionAnswerUpdateWithWhereUniqueWithoutQuestionInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackQuestionAnswerUpdateWithWhereUniqueWithoutQuestionInput_schema) as unknown as z.ZodType; -export const FeedbackQuestionAnswerUpdateWithWhereUniqueWithoutQuestionInputObjectZodSchema = z.lazy(__makeSchema_FeedbackQuestionAnswerUpdateWithWhereUniqueWithoutQuestionInput_schema); - - -// File: FeedbackQuestionAnswerUpdateManyWithWhereWithoutQuestionInput.schema.ts -const __makeSchema_FeedbackQuestionAnswerUpdateManyWithWhereWithoutQuestionInput_schema = () => z.object({ - get where(){ return FeedbackQuestionAnswerScalarWhereInputObjectSchema; }, - data: z.union([FeedbackQuestionAnswerUpdateManyMutationInputObjectSchema, FeedbackQuestionAnswerUncheckedUpdateManyWithoutQuestionInputObjectSchema]) -}).strict(); -export const FeedbackQuestionAnswerUpdateManyWithWhereWithoutQuestionInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackQuestionAnswerUpdateManyWithWhereWithoutQuestionInput_schema) as unknown as z.ZodType; -export const FeedbackQuestionAnswerUpdateManyWithWhereWithoutQuestionInputObjectZodSchema = z.lazy(__makeSchema_FeedbackQuestionAnswerUpdateManyWithWhereWithoutQuestionInput_schema); - - -// File: FeedbackQuestionAnswerScalarWhereInput.schema.ts -const __makeSchema_FeedbackQuestionAnswerScalarWhereInput_schema = () => z.object({ - AND: z.union([FeedbackQuestionAnswerScalarWhereInputObjectSchema, FeedbackQuestionAnswerScalarWhereInputObjectSchema.array()]).optional(), - get OR(){ return FeedbackQuestionAnswerScalarWhereInputObjectSchema.array().optional(); }, - NOT: z.union([FeedbackQuestionAnswerScalarWhereInputObjectSchema, FeedbackQuestionAnswerScalarWhereInputObjectSchema.array()]).optional(), - id: z.union([StringFilterObjectSchema, z.string()]).optional(), - get value(){ return JsonNullableFilterObjectSchema.optional(); }, - questionId: z.union([StringFilterObjectSchema, z.string()]).optional(), - formAnswerId: z.union([StringFilterObjectSchema, z.string()]).optional() -}).strict(); -export const FeedbackQuestionAnswerScalarWhereInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackQuestionAnswerScalarWhereInput_schema) as unknown as z.ZodType; -export const FeedbackQuestionAnswerScalarWhereInputObjectZodSchema = z.lazy(__makeSchema_FeedbackQuestionAnswerScalarWhereInput_schema); - - -// File: FeedbackQuestionCreateWithoutOptionsInput.schema.ts -const __makeSchema_FeedbackQuestionCreateWithoutOptionsInput_schema = () => z.object({ - id: z.string().optional(), - label: z.string(), - required: z.boolean().optional(), - showInPublicResults: z.boolean().optional(), - type: FeedbackQuestionTypeSchema, - order: z.number().int(), - createdAt: z.coerce.date().optional(), - updatedAt: z.coerce.date().optional(), - get feedbackForm(){ return FeedbackFormCreateNestedOneWithoutQuestionsInputObjectSchema; }, - get answers(){ return FeedbackQuestionAnswerCreateNestedManyWithoutQuestionInputObjectSchema.optional(); } -}).strict(); -export const FeedbackQuestionCreateWithoutOptionsInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackQuestionCreateWithoutOptionsInput_schema) as unknown as z.ZodType; -export const FeedbackQuestionCreateWithoutOptionsInputObjectZodSchema = z.lazy(__makeSchema_FeedbackQuestionCreateWithoutOptionsInput_schema); - - -// File: FeedbackQuestionUncheckedCreateWithoutOptionsInput.schema.ts -const __makeSchema_FeedbackQuestionUncheckedCreateWithoutOptionsInput_schema = () => z.object({ - id: z.string().optional(), - label: z.string(), - required: z.boolean().optional(), - showInPublicResults: z.boolean().optional(), - type: FeedbackQuestionTypeSchema, - order: z.number().int(), - createdAt: z.coerce.date().optional(), - updatedAt: z.coerce.date().optional(), - feedbackFormId: z.string(), - get answers(){ return FeedbackQuestionAnswerUncheckedCreateNestedManyWithoutQuestionInputObjectSchema.optional(); } -}).strict(); -export const FeedbackQuestionUncheckedCreateWithoutOptionsInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackQuestionUncheckedCreateWithoutOptionsInput_schema) as unknown as z.ZodType; -export const FeedbackQuestionUncheckedCreateWithoutOptionsInputObjectZodSchema = z.lazy(__makeSchema_FeedbackQuestionUncheckedCreateWithoutOptionsInput_schema); - - -// File: FeedbackQuestionCreateOrConnectWithoutOptionsInput.schema.ts -const __makeSchema_FeedbackQuestionCreateOrConnectWithoutOptionsInput_schema = () => z.object({ - get where(){ return FeedbackQuestionWhereUniqueInputObjectSchema; }, - create: z.union([FeedbackQuestionCreateWithoutOptionsInputObjectSchema, FeedbackQuestionUncheckedCreateWithoutOptionsInputObjectSchema]) -}).strict(); -export const FeedbackQuestionCreateOrConnectWithoutOptionsInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackQuestionCreateOrConnectWithoutOptionsInput_schema) as unknown as z.ZodType; -export const FeedbackQuestionCreateOrConnectWithoutOptionsInputObjectZodSchema = z.lazy(__makeSchema_FeedbackQuestionCreateOrConnectWithoutOptionsInput_schema); - - -// File: FeedbackQuestionAnswerOptionLinkCreateWithoutFeedbackQuestionOptionInput.schema.ts -const __makeSchema_FeedbackQuestionAnswerOptionLinkCreateWithoutFeedbackQuestionOptionInput_schema = () => z.object({ - get feedbackQuestionAnswer(){ return FeedbackQuestionAnswerCreateNestedOneWithoutSelectedOptionsInputObjectSchema; } -}).strict(); -export const FeedbackQuestionAnswerOptionLinkCreateWithoutFeedbackQuestionOptionInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackQuestionAnswerOptionLinkCreateWithoutFeedbackQuestionOptionInput_schema) as unknown as z.ZodType; -export const FeedbackQuestionAnswerOptionLinkCreateWithoutFeedbackQuestionOptionInputObjectZodSchema = z.lazy(__makeSchema_FeedbackQuestionAnswerOptionLinkCreateWithoutFeedbackQuestionOptionInput_schema); - - -// File: FeedbackQuestionAnswerOptionLinkUncheckedCreateWithoutFeedbackQuestionOptionInput.schema.ts -const __makeSchema_FeedbackQuestionAnswerOptionLinkUncheckedCreateWithoutFeedbackQuestionOptionInput_schema = () => z.object({ - feedbackQuestionAnswerId: z.string() -}).strict(); -export const FeedbackQuestionAnswerOptionLinkUncheckedCreateWithoutFeedbackQuestionOptionInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackQuestionAnswerOptionLinkUncheckedCreateWithoutFeedbackQuestionOptionInput_schema) as unknown as z.ZodType; -export const FeedbackQuestionAnswerOptionLinkUncheckedCreateWithoutFeedbackQuestionOptionInputObjectZodSchema = z.lazy(__makeSchema_FeedbackQuestionAnswerOptionLinkUncheckedCreateWithoutFeedbackQuestionOptionInput_schema); - - -// File: FeedbackQuestionAnswerOptionLinkCreateOrConnectWithoutFeedbackQuestionOptionInput.schema.ts -const __makeSchema_FeedbackQuestionAnswerOptionLinkCreateOrConnectWithoutFeedbackQuestionOptionInput_schema = () => z.object({ - get where(){ return FeedbackQuestionAnswerOptionLinkWhereUniqueInputObjectSchema; }, - create: z.union([FeedbackQuestionAnswerOptionLinkCreateWithoutFeedbackQuestionOptionInputObjectSchema, FeedbackQuestionAnswerOptionLinkUncheckedCreateWithoutFeedbackQuestionOptionInputObjectSchema]) -}).strict(); -export const FeedbackQuestionAnswerOptionLinkCreateOrConnectWithoutFeedbackQuestionOptionInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackQuestionAnswerOptionLinkCreateOrConnectWithoutFeedbackQuestionOptionInput_schema) as unknown as z.ZodType; -export const FeedbackQuestionAnswerOptionLinkCreateOrConnectWithoutFeedbackQuestionOptionInputObjectZodSchema = z.lazy(__makeSchema_FeedbackQuestionAnswerOptionLinkCreateOrConnectWithoutFeedbackQuestionOptionInput_schema); - - -// File: FeedbackQuestionAnswerOptionLinkCreateManyFeedbackQuestionOptionInputEnvelope.schema.ts -const __makeSchema_FeedbackQuestionAnswerOptionLinkCreateManyFeedbackQuestionOptionInputEnvelope_schema = () => z.object({ - data: z.union([FeedbackQuestionAnswerOptionLinkCreateManyFeedbackQuestionOptionInputObjectSchema, FeedbackQuestionAnswerOptionLinkCreateManyFeedbackQuestionOptionInputObjectSchema.array()]), - skipDuplicates: z.boolean().optional() -}).strict(); -export const FeedbackQuestionAnswerOptionLinkCreateManyFeedbackQuestionOptionInputEnvelopeObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackQuestionAnswerOptionLinkCreateManyFeedbackQuestionOptionInputEnvelope_schema) as unknown as z.ZodType; -export const FeedbackQuestionAnswerOptionLinkCreateManyFeedbackQuestionOptionInputEnvelopeObjectZodSchema = z.lazy(__makeSchema_FeedbackQuestionAnswerOptionLinkCreateManyFeedbackQuestionOptionInputEnvelope_schema); - - -// File: FeedbackQuestionUpsertWithoutOptionsInput.schema.ts -const __makeSchema_FeedbackQuestionUpsertWithoutOptionsInput_schema = () => z.object({ - update: z.union([FeedbackQuestionUpdateWithoutOptionsInputObjectSchema, FeedbackQuestionUncheckedUpdateWithoutOptionsInputObjectSchema]), - create: z.union([FeedbackQuestionCreateWithoutOptionsInputObjectSchema, FeedbackQuestionUncheckedCreateWithoutOptionsInputObjectSchema]), - get where(){ return FeedbackQuestionWhereInputObjectSchema.optional(); } -}).strict(); -export const FeedbackQuestionUpsertWithoutOptionsInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackQuestionUpsertWithoutOptionsInput_schema) as unknown as z.ZodType; -export const FeedbackQuestionUpsertWithoutOptionsInputObjectZodSchema = z.lazy(__makeSchema_FeedbackQuestionUpsertWithoutOptionsInput_schema); - - -// File: FeedbackQuestionUpdateToOneWithWhereWithoutOptionsInput.schema.ts -const __makeSchema_FeedbackQuestionUpdateToOneWithWhereWithoutOptionsInput_schema = () => z.object({ - get where(){ return FeedbackQuestionWhereInputObjectSchema.optional(); }, - data: z.union([FeedbackQuestionUpdateWithoutOptionsInputObjectSchema, FeedbackQuestionUncheckedUpdateWithoutOptionsInputObjectSchema]) -}).strict(); -export const FeedbackQuestionUpdateToOneWithWhereWithoutOptionsInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackQuestionUpdateToOneWithWhereWithoutOptionsInput_schema) as unknown as z.ZodType; -export const FeedbackQuestionUpdateToOneWithWhereWithoutOptionsInputObjectZodSchema = z.lazy(__makeSchema_FeedbackQuestionUpdateToOneWithWhereWithoutOptionsInput_schema); - - -// File: FeedbackQuestionUpdateWithoutOptionsInput.schema.ts -const __makeSchema_FeedbackQuestionUpdateWithoutOptionsInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - label: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - required: z.union([z.boolean(), BoolFieldUpdateOperationsInputObjectSchema]).optional(), - showInPublicResults: z.union([z.boolean(), BoolFieldUpdateOperationsInputObjectSchema]).optional(), - type: z.union([FeedbackQuestionTypeSchema, EnumFeedbackQuestionTypeFieldUpdateOperationsInputObjectSchema]).optional(), - order: z.union([z.number().int(), IntFieldUpdateOperationsInputObjectSchema]).optional(), - createdAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - updatedAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - get feedbackForm(){ return FeedbackFormUpdateOneRequiredWithoutQuestionsNestedInputObjectSchema.optional(); }, - get answers(){ return FeedbackQuestionAnswerUpdateManyWithoutQuestionNestedInputObjectSchema.optional(); } -}).strict(); -export const FeedbackQuestionUpdateWithoutOptionsInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackQuestionUpdateWithoutOptionsInput_schema) as unknown as z.ZodType; -export const FeedbackQuestionUpdateWithoutOptionsInputObjectZodSchema = z.lazy(__makeSchema_FeedbackQuestionUpdateWithoutOptionsInput_schema); - - -// File: FeedbackQuestionUncheckedUpdateWithoutOptionsInput.schema.ts -const __makeSchema_FeedbackQuestionUncheckedUpdateWithoutOptionsInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - label: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - required: z.union([z.boolean(), BoolFieldUpdateOperationsInputObjectSchema]).optional(), - showInPublicResults: z.union([z.boolean(), BoolFieldUpdateOperationsInputObjectSchema]).optional(), - type: z.union([FeedbackQuestionTypeSchema, EnumFeedbackQuestionTypeFieldUpdateOperationsInputObjectSchema]).optional(), - order: z.union([z.number().int(), IntFieldUpdateOperationsInputObjectSchema]).optional(), - createdAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - updatedAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - feedbackFormId: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - get answers(){ return FeedbackQuestionAnswerUncheckedUpdateManyWithoutQuestionNestedInputObjectSchema.optional(); } -}).strict(); -export const FeedbackQuestionUncheckedUpdateWithoutOptionsInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackQuestionUncheckedUpdateWithoutOptionsInput_schema) as unknown as z.ZodType; -export const FeedbackQuestionUncheckedUpdateWithoutOptionsInputObjectZodSchema = z.lazy(__makeSchema_FeedbackQuestionUncheckedUpdateWithoutOptionsInput_schema); - - -// File: FeedbackQuestionAnswerOptionLinkUpsertWithWhereUniqueWithoutFeedbackQuestionOptionInput.schema.ts -const __makeSchema_FeedbackQuestionAnswerOptionLinkUpsertWithWhereUniqueWithoutFeedbackQuestionOptionInput_schema = () => z.object({ - get where(){ return FeedbackQuestionAnswerOptionLinkWhereUniqueInputObjectSchema; }, - update: z.union([FeedbackQuestionAnswerOptionLinkUpdateWithoutFeedbackQuestionOptionInputObjectSchema, FeedbackQuestionAnswerOptionLinkUncheckedUpdateWithoutFeedbackQuestionOptionInputObjectSchema]), - create: z.union([FeedbackQuestionAnswerOptionLinkCreateWithoutFeedbackQuestionOptionInputObjectSchema, FeedbackQuestionAnswerOptionLinkUncheckedCreateWithoutFeedbackQuestionOptionInputObjectSchema]) -}).strict(); -export const FeedbackQuestionAnswerOptionLinkUpsertWithWhereUniqueWithoutFeedbackQuestionOptionInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackQuestionAnswerOptionLinkUpsertWithWhereUniqueWithoutFeedbackQuestionOptionInput_schema) as unknown as z.ZodType; -export const FeedbackQuestionAnswerOptionLinkUpsertWithWhereUniqueWithoutFeedbackQuestionOptionInputObjectZodSchema = z.lazy(__makeSchema_FeedbackQuestionAnswerOptionLinkUpsertWithWhereUniqueWithoutFeedbackQuestionOptionInput_schema); - - -// File: FeedbackQuestionAnswerOptionLinkUpdateWithWhereUniqueWithoutFeedbackQuestionOptionInput.schema.ts -const __makeSchema_FeedbackQuestionAnswerOptionLinkUpdateWithWhereUniqueWithoutFeedbackQuestionOptionInput_schema = () => z.object({ - get where(){ return FeedbackQuestionAnswerOptionLinkWhereUniqueInputObjectSchema; }, - data: z.union([FeedbackQuestionAnswerOptionLinkUpdateWithoutFeedbackQuestionOptionInputObjectSchema, FeedbackQuestionAnswerOptionLinkUncheckedUpdateWithoutFeedbackQuestionOptionInputObjectSchema]) -}).strict(); -export const FeedbackQuestionAnswerOptionLinkUpdateWithWhereUniqueWithoutFeedbackQuestionOptionInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackQuestionAnswerOptionLinkUpdateWithWhereUniqueWithoutFeedbackQuestionOptionInput_schema) as unknown as z.ZodType; -export const FeedbackQuestionAnswerOptionLinkUpdateWithWhereUniqueWithoutFeedbackQuestionOptionInputObjectZodSchema = z.lazy(__makeSchema_FeedbackQuestionAnswerOptionLinkUpdateWithWhereUniqueWithoutFeedbackQuestionOptionInput_schema); - - -// File: FeedbackQuestionAnswerOptionLinkUpdateManyWithWhereWithoutFeedbackQuestionOptionInput.schema.ts -const __makeSchema_FeedbackQuestionAnswerOptionLinkUpdateManyWithWhereWithoutFeedbackQuestionOptionInput_schema = () => z.object({ - get where(){ return FeedbackQuestionAnswerOptionLinkScalarWhereInputObjectSchema; }, - data: z.union([FeedbackQuestionAnswerOptionLinkUpdateManyMutationInputObjectSchema, FeedbackQuestionAnswerOptionLinkUncheckedUpdateManyWithoutFeedbackQuestionOptionInputObjectSchema]) -}).strict(); -export const FeedbackQuestionAnswerOptionLinkUpdateManyWithWhereWithoutFeedbackQuestionOptionInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackQuestionAnswerOptionLinkUpdateManyWithWhereWithoutFeedbackQuestionOptionInput_schema) as unknown as z.ZodType; -export const FeedbackQuestionAnswerOptionLinkUpdateManyWithWhereWithoutFeedbackQuestionOptionInputObjectZodSchema = z.lazy(__makeSchema_FeedbackQuestionAnswerOptionLinkUpdateManyWithWhereWithoutFeedbackQuestionOptionInput_schema); - - -// File: FeedbackQuestionAnswerOptionLinkScalarWhereInput.schema.ts -const __makeSchema_FeedbackQuestionAnswerOptionLinkScalarWhereInput_schema = () => z.object({ - AND: z.union([FeedbackQuestionAnswerOptionLinkScalarWhereInputObjectSchema, FeedbackQuestionAnswerOptionLinkScalarWhereInputObjectSchema.array()]).optional(), - get OR(){ return FeedbackQuestionAnswerOptionLinkScalarWhereInputObjectSchema.array().optional(); }, - NOT: z.union([FeedbackQuestionAnswerOptionLinkScalarWhereInputObjectSchema, FeedbackQuestionAnswerOptionLinkScalarWhereInputObjectSchema.array()]).optional(), - feedbackQuestionOptionId: z.union([StringFilterObjectSchema, z.string()]).optional(), - feedbackQuestionAnswerId: z.union([StringFilterObjectSchema, z.string()]).optional() -}).strict(); -export const FeedbackQuestionAnswerOptionLinkScalarWhereInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackQuestionAnswerOptionLinkScalarWhereInput_schema) as unknown as z.ZodType; -export const FeedbackQuestionAnswerOptionLinkScalarWhereInputObjectZodSchema = z.lazy(__makeSchema_FeedbackQuestionAnswerOptionLinkScalarWhereInput_schema); - - -// File: FeedbackQuestionCreateWithoutAnswersInput.schema.ts -const __makeSchema_FeedbackQuestionCreateWithoutAnswersInput_schema = () => z.object({ - id: z.string().optional(), - label: z.string(), - required: z.boolean().optional(), - showInPublicResults: z.boolean().optional(), - type: FeedbackQuestionTypeSchema, - order: z.number().int(), - createdAt: z.coerce.date().optional(), - updatedAt: z.coerce.date().optional(), - get feedbackForm(){ return FeedbackFormCreateNestedOneWithoutQuestionsInputObjectSchema; }, - get options(){ return FeedbackQuestionOptionCreateNestedManyWithoutQuestionInputObjectSchema.optional(); } -}).strict(); -export const FeedbackQuestionCreateWithoutAnswersInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackQuestionCreateWithoutAnswersInput_schema) as unknown as z.ZodType; -export const FeedbackQuestionCreateWithoutAnswersInputObjectZodSchema = z.lazy(__makeSchema_FeedbackQuestionCreateWithoutAnswersInput_schema); - - -// File: FeedbackQuestionUncheckedCreateWithoutAnswersInput.schema.ts -const __makeSchema_FeedbackQuestionUncheckedCreateWithoutAnswersInput_schema = () => z.object({ - id: z.string().optional(), - label: z.string(), - required: z.boolean().optional(), - showInPublicResults: z.boolean().optional(), - type: FeedbackQuestionTypeSchema, - order: z.number().int(), - createdAt: z.coerce.date().optional(), - updatedAt: z.coerce.date().optional(), - feedbackFormId: z.string(), - get options(){ return FeedbackQuestionOptionUncheckedCreateNestedManyWithoutQuestionInputObjectSchema.optional(); } -}).strict(); -export const FeedbackQuestionUncheckedCreateWithoutAnswersInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackQuestionUncheckedCreateWithoutAnswersInput_schema) as unknown as z.ZodType; -export const FeedbackQuestionUncheckedCreateWithoutAnswersInputObjectZodSchema = z.lazy(__makeSchema_FeedbackQuestionUncheckedCreateWithoutAnswersInput_schema); - - -// File: FeedbackQuestionCreateOrConnectWithoutAnswersInput.schema.ts -const __makeSchema_FeedbackQuestionCreateOrConnectWithoutAnswersInput_schema = () => z.object({ - get where(){ return FeedbackQuestionWhereUniqueInputObjectSchema; }, - create: z.union([FeedbackQuestionCreateWithoutAnswersInputObjectSchema, FeedbackQuestionUncheckedCreateWithoutAnswersInputObjectSchema]) -}).strict(); -export const FeedbackQuestionCreateOrConnectWithoutAnswersInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackQuestionCreateOrConnectWithoutAnswersInput_schema) as unknown as z.ZodType; -export const FeedbackQuestionCreateOrConnectWithoutAnswersInputObjectZodSchema = z.lazy(__makeSchema_FeedbackQuestionCreateOrConnectWithoutAnswersInput_schema); - - -// File: FeedbackFormAnswerCreateWithoutAnswersInput.schema.ts -const __makeSchema_FeedbackFormAnswerCreateWithoutAnswersInput_schema = () => z.object({ - id: z.string().optional(), - createdAt: z.coerce.date().optional(), - updatedAt: z.coerce.date().optional(), - get feedbackForm(){ return FeedbackFormCreateNestedOneWithoutAnswersInputObjectSchema; }, - get attendee(){ return AttendeeCreateNestedOneWithoutFeedbackFormAnswerInputObjectSchema; } -}).strict(); -export const FeedbackFormAnswerCreateWithoutAnswersInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackFormAnswerCreateWithoutAnswersInput_schema) as unknown as z.ZodType; -export const FeedbackFormAnswerCreateWithoutAnswersInputObjectZodSchema = z.lazy(__makeSchema_FeedbackFormAnswerCreateWithoutAnswersInput_schema); - - -// File: FeedbackFormAnswerUncheckedCreateWithoutAnswersInput.schema.ts -const __makeSchema_FeedbackFormAnswerUncheckedCreateWithoutAnswersInput_schema = () => z.object({ - id: z.string().optional(), - createdAt: z.coerce.date().optional(), - updatedAt: z.coerce.date().optional(), - feedbackFormId: z.string(), - attendeeId: z.string() -}).strict(); -export const FeedbackFormAnswerUncheckedCreateWithoutAnswersInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackFormAnswerUncheckedCreateWithoutAnswersInput_schema) as unknown as z.ZodType; -export const FeedbackFormAnswerUncheckedCreateWithoutAnswersInputObjectZodSchema = z.lazy(__makeSchema_FeedbackFormAnswerUncheckedCreateWithoutAnswersInput_schema); - - -// File: FeedbackFormAnswerCreateOrConnectWithoutAnswersInput.schema.ts -const __makeSchema_FeedbackFormAnswerCreateOrConnectWithoutAnswersInput_schema = () => z.object({ - get where(){ return FeedbackFormAnswerWhereUniqueInputObjectSchema; }, - create: z.union([FeedbackFormAnswerCreateWithoutAnswersInputObjectSchema, FeedbackFormAnswerUncheckedCreateWithoutAnswersInputObjectSchema]) -}).strict(); -export const FeedbackFormAnswerCreateOrConnectWithoutAnswersInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackFormAnswerCreateOrConnectWithoutAnswersInput_schema) as unknown as z.ZodType; -export const FeedbackFormAnswerCreateOrConnectWithoutAnswersInputObjectZodSchema = z.lazy(__makeSchema_FeedbackFormAnswerCreateOrConnectWithoutAnswersInput_schema); - - -// File: FeedbackQuestionAnswerOptionLinkCreateWithoutFeedbackQuestionAnswerInput.schema.ts -const __makeSchema_FeedbackQuestionAnswerOptionLinkCreateWithoutFeedbackQuestionAnswerInput_schema = () => z.object({ - get feedbackQuestionOption(){ return FeedbackQuestionOptionCreateNestedOneWithoutSelectedInAnswersInputObjectSchema; } -}).strict(); -export const FeedbackQuestionAnswerOptionLinkCreateWithoutFeedbackQuestionAnswerInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackQuestionAnswerOptionLinkCreateWithoutFeedbackQuestionAnswerInput_schema) as unknown as z.ZodType; -export const FeedbackQuestionAnswerOptionLinkCreateWithoutFeedbackQuestionAnswerInputObjectZodSchema = z.lazy(__makeSchema_FeedbackQuestionAnswerOptionLinkCreateWithoutFeedbackQuestionAnswerInput_schema); - - -// File: FeedbackQuestionAnswerOptionLinkUncheckedCreateWithoutFeedbackQuestionAnswerInput.schema.ts -const __makeSchema_FeedbackQuestionAnswerOptionLinkUncheckedCreateWithoutFeedbackQuestionAnswerInput_schema = () => z.object({ - feedbackQuestionOptionId: z.string() -}).strict(); -export const FeedbackQuestionAnswerOptionLinkUncheckedCreateWithoutFeedbackQuestionAnswerInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackQuestionAnswerOptionLinkUncheckedCreateWithoutFeedbackQuestionAnswerInput_schema) as unknown as z.ZodType; -export const FeedbackQuestionAnswerOptionLinkUncheckedCreateWithoutFeedbackQuestionAnswerInputObjectZodSchema = z.lazy(__makeSchema_FeedbackQuestionAnswerOptionLinkUncheckedCreateWithoutFeedbackQuestionAnswerInput_schema); - - -// File: FeedbackQuestionAnswerOptionLinkCreateOrConnectWithoutFeedbackQuestionAnswerInput.schema.ts -const __makeSchema_FeedbackQuestionAnswerOptionLinkCreateOrConnectWithoutFeedbackQuestionAnswerInput_schema = () => z.object({ - get where(){ return FeedbackQuestionAnswerOptionLinkWhereUniqueInputObjectSchema; }, - create: z.union([FeedbackQuestionAnswerOptionLinkCreateWithoutFeedbackQuestionAnswerInputObjectSchema, FeedbackQuestionAnswerOptionLinkUncheckedCreateWithoutFeedbackQuestionAnswerInputObjectSchema]) -}).strict(); -export const FeedbackQuestionAnswerOptionLinkCreateOrConnectWithoutFeedbackQuestionAnswerInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackQuestionAnswerOptionLinkCreateOrConnectWithoutFeedbackQuestionAnswerInput_schema) as unknown as z.ZodType; -export const FeedbackQuestionAnswerOptionLinkCreateOrConnectWithoutFeedbackQuestionAnswerInputObjectZodSchema = z.lazy(__makeSchema_FeedbackQuestionAnswerOptionLinkCreateOrConnectWithoutFeedbackQuestionAnswerInput_schema); - - -// File: FeedbackQuestionAnswerOptionLinkCreateManyFeedbackQuestionAnswerInputEnvelope.schema.ts -const __makeSchema_FeedbackQuestionAnswerOptionLinkCreateManyFeedbackQuestionAnswerInputEnvelope_schema = () => z.object({ - data: z.union([FeedbackQuestionAnswerOptionLinkCreateManyFeedbackQuestionAnswerInputObjectSchema, FeedbackQuestionAnswerOptionLinkCreateManyFeedbackQuestionAnswerInputObjectSchema.array()]), - skipDuplicates: z.boolean().optional() -}).strict(); -export const FeedbackQuestionAnswerOptionLinkCreateManyFeedbackQuestionAnswerInputEnvelopeObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackQuestionAnswerOptionLinkCreateManyFeedbackQuestionAnswerInputEnvelope_schema) as unknown as z.ZodType; -export const FeedbackQuestionAnswerOptionLinkCreateManyFeedbackQuestionAnswerInputEnvelopeObjectZodSchema = z.lazy(__makeSchema_FeedbackQuestionAnswerOptionLinkCreateManyFeedbackQuestionAnswerInputEnvelope_schema); - - -// File: FeedbackQuestionUpsertWithoutAnswersInput.schema.ts -const __makeSchema_FeedbackQuestionUpsertWithoutAnswersInput_schema = () => z.object({ - update: z.union([FeedbackQuestionUpdateWithoutAnswersInputObjectSchema, FeedbackQuestionUncheckedUpdateWithoutAnswersInputObjectSchema]), - create: z.union([FeedbackQuestionCreateWithoutAnswersInputObjectSchema, FeedbackQuestionUncheckedCreateWithoutAnswersInputObjectSchema]), - get where(){ return FeedbackQuestionWhereInputObjectSchema.optional(); } -}).strict(); -export const FeedbackQuestionUpsertWithoutAnswersInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackQuestionUpsertWithoutAnswersInput_schema) as unknown as z.ZodType; -export const FeedbackQuestionUpsertWithoutAnswersInputObjectZodSchema = z.lazy(__makeSchema_FeedbackQuestionUpsertWithoutAnswersInput_schema); - - -// File: FeedbackQuestionUpdateToOneWithWhereWithoutAnswersInput.schema.ts -const __makeSchema_FeedbackQuestionUpdateToOneWithWhereWithoutAnswersInput_schema = () => z.object({ - get where(){ return FeedbackQuestionWhereInputObjectSchema.optional(); }, - data: z.union([FeedbackQuestionUpdateWithoutAnswersInputObjectSchema, FeedbackQuestionUncheckedUpdateWithoutAnswersInputObjectSchema]) -}).strict(); -export const FeedbackQuestionUpdateToOneWithWhereWithoutAnswersInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackQuestionUpdateToOneWithWhereWithoutAnswersInput_schema) as unknown as z.ZodType; -export const FeedbackQuestionUpdateToOneWithWhereWithoutAnswersInputObjectZodSchema = z.lazy(__makeSchema_FeedbackQuestionUpdateToOneWithWhereWithoutAnswersInput_schema); - - -// File: FeedbackQuestionUpdateWithoutAnswersInput.schema.ts -const __makeSchema_FeedbackQuestionUpdateWithoutAnswersInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - label: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - required: z.union([z.boolean(), BoolFieldUpdateOperationsInputObjectSchema]).optional(), - showInPublicResults: z.union([z.boolean(), BoolFieldUpdateOperationsInputObjectSchema]).optional(), - type: z.union([FeedbackQuestionTypeSchema, EnumFeedbackQuestionTypeFieldUpdateOperationsInputObjectSchema]).optional(), - order: z.union([z.number().int(), IntFieldUpdateOperationsInputObjectSchema]).optional(), - createdAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - updatedAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - get feedbackForm(){ return FeedbackFormUpdateOneRequiredWithoutQuestionsNestedInputObjectSchema.optional(); }, - get options(){ return FeedbackQuestionOptionUpdateManyWithoutQuestionNestedInputObjectSchema.optional(); } -}).strict(); -export const FeedbackQuestionUpdateWithoutAnswersInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackQuestionUpdateWithoutAnswersInput_schema) as unknown as z.ZodType; -export const FeedbackQuestionUpdateWithoutAnswersInputObjectZodSchema = z.lazy(__makeSchema_FeedbackQuestionUpdateWithoutAnswersInput_schema); - - -// File: FeedbackQuestionUncheckedUpdateWithoutAnswersInput.schema.ts -const __makeSchema_FeedbackQuestionUncheckedUpdateWithoutAnswersInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - label: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - required: z.union([z.boolean(), BoolFieldUpdateOperationsInputObjectSchema]).optional(), - showInPublicResults: z.union([z.boolean(), BoolFieldUpdateOperationsInputObjectSchema]).optional(), - type: z.union([FeedbackQuestionTypeSchema, EnumFeedbackQuestionTypeFieldUpdateOperationsInputObjectSchema]).optional(), - order: z.union([z.number().int(), IntFieldUpdateOperationsInputObjectSchema]).optional(), - createdAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - updatedAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - feedbackFormId: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - get options(){ return FeedbackQuestionOptionUncheckedUpdateManyWithoutQuestionNestedInputObjectSchema.optional(); } -}).strict(); -export const FeedbackQuestionUncheckedUpdateWithoutAnswersInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackQuestionUncheckedUpdateWithoutAnswersInput_schema) as unknown as z.ZodType; -export const FeedbackQuestionUncheckedUpdateWithoutAnswersInputObjectZodSchema = z.lazy(__makeSchema_FeedbackQuestionUncheckedUpdateWithoutAnswersInput_schema); - - -// File: FeedbackFormAnswerUpsertWithoutAnswersInput.schema.ts -const __makeSchema_FeedbackFormAnswerUpsertWithoutAnswersInput_schema = () => z.object({ - update: z.union([FeedbackFormAnswerUpdateWithoutAnswersInputObjectSchema, FeedbackFormAnswerUncheckedUpdateWithoutAnswersInputObjectSchema]), - create: z.union([FeedbackFormAnswerCreateWithoutAnswersInputObjectSchema, FeedbackFormAnswerUncheckedCreateWithoutAnswersInputObjectSchema]), - get where(){ return FeedbackFormAnswerWhereInputObjectSchema.optional(); } -}).strict(); -export const FeedbackFormAnswerUpsertWithoutAnswersInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackFormAnswerUpsertWithoutAnswersInput_schema) as unknown as z.ZodType; -export const FeedbackFormAnswerUpsertWithoutAnswersInputObjectZodSchema = z.lazy(__makeSchema_FeedbackFormAnswerUpsertWithoutAnswersInput_schema); - - -// File: FeedbackFormAnswerUpdateToOneWithWhereWithoutAnswersInput.schema.ts -const __makeSchema_FeedbackFormAnswerUpdateToOneWithWhereWithoutAnswersInput_schema = () => z.object({ - get where(){ return FeedbackFormAnswerWhereInputObjectSchema.optional(); }, - data: z.union([FeedbackFormAnswerUpdateWithoutAnswersInputObjectSchema, FeedbackFormAnswerUncheckedUpdateWithoutAnswersInputObjectSchema]) -}).strict(); -export const FeedbackFormAnswerUpdateToOneWithWhereWithoutAnswersInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackFormAnswerUpdateToOneWithWhereWithoutAnswersInput_schema) as unknown as z.ZodType; -export const FeedbackFormAnswerUpdateToOneWithWhereWithoutAnswersInputObjectZodSchema = z.lazy(__makeSchema_FeedbackFormAnswerUpdateToOneWithWhereWithoutAnswersInput_schema); - - -// File: FeedbackFormAnswerUpdateWithoutAnswersInput.schema.ts -const __makeSchema_FeedbackFormAnswerUpdateWithoutAnswersInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - createdAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - updatedAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - get feedbackForm(){ return FeedbackFormUpdateOneRequiredWithoutAnswersNestedInputObjectSchema.optional(); }, - get attendee(){ return AttendeeUpdateOneRequiredWithoutFeedbackFormAnswerNestedInputObjectSchema.optional(); } -}).strict(); -export const FeedbackFormAnswerUpdateWithoutAnswersInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackFormAnswerUpdateWithoutAnswersInput_schema) as unknown as z.ZodType; -export const FeedbackFormAnswerUpdateWithoutAnswersInputObjectZodSchema = z.lazy(__makeSchema_FeedbackFormAnswerUpdateWithoutAnswersInput_schema); - - -// File: FeedbackFormAnswerUncheckedUpdateWithoutAnswersInput.schema.ts -const __makeSchema_FeedbackFormAnswerUncheckedUpdateWithoutAnswersInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - createdAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - updatedAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - feedbackFormId: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - attendeeId: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional() -}).strict(); -export const FeedbackFormAnswerUncheckedUpdateWithoutAnswersInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackFormAnswerUncheckedUpdateWithoutAnswersInput_schema) as unknown as z.ZodType; -export const FeedbackFormAnswerUncheckedUpdateWithoutAnswersInputObjectZodSchema = z.lazy(__makeSchema_FeedbackFormAnswerUncheckedUpdateWithoutAnswersInput_schema); - - -// File: FeedbackQuestionAnswerOptionLinkUpsertWithWhereUniqueWithoutFeedbackQuestionAnswerInput.schema.ts -const __makeSchema_FeedbackQuestionAnswerOptionLinkUpsertWithWhereUniqueWithoutFeedbackQuestionAnswerInput_schema = () => z.object({ - get where(){ return FeedbackQuestionAnswerOptionLinkWhereUniqueInputObjectSchema; }, - update: z.union([FeedbackQuestionAnswerOptionLinkUpdateWithoutFeedbackQuestionAnswerInputObjectSchema, FeedbackQuestionAnswerOptionLinkUncheckedUpdateWithoutFeedbackQuestionAnswerInputObjectSchema]), - create: z.union([FeedbackQuestionAnswerOptionLinkCreateWithoutFeedbackQuestionAnswerInputObjectSchema, FeedbackQuestionAnswerOptionLinkUncheckedCreateWithoutFeedbackQuestionAnswerInputObjectSchema]) -}).strict(); -export const FeedbackQuestionAnswerOptionLinkUpsertWithWhereUniqueWithoutFeedbackQuestionAnswerInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackQuestionAnswerOptionLinkUpsertWithWhereUniqueWithoutFeedbackQuestionAnswerInput_schema) as unknown as z.ZodType; -export const FeedbackQuestionAnswerOptionLinkUpsertWithWhereUniqueWithoutFeedbackQuestionAnswerInputObjectZodSchema = z.lazy(__makeSchema_FeedbackQuestionAnswerOptionLinkUpsertWithWhereUniqueWithoutFeedbackQuestionAnswerInput_schema); - - -// File: FeedbackQuestionAnswerOptionLinkUpdateWithWhereUniqueWithoutFeedbackQuestionAnswerInput.schema.ts -const __makeSchema_FeedbackQuestionAnswerOptionLinkUpdateWithWhereUniqueWithoutFeedbackQuestionAnswerInput_schema = () => z.object({ - get where(){ return FeedbackQuestionAnswerOptionLinkWhereUniqueInputObjectSchema; }, - data: z.union([FeedbackQuestionAnswerOptionLinkUpdateWithoutFeedbackQuestionAnswerInputObjectSchema, FeedbackQuestionAnswerOptionLinkUncheckedUpdateWithoutFeedbackQuestionAnswerInputObjectSchema]) -}).strict(); -export const FeedbackQuestionAnswerOptionLinkUpdateWithWhereUniqueWithoutFeedbackQuestionAnswerInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackQuestionAnswerOptionLinkUpdateWithWhereUniqueWithoutFeedbackQuestionAnswerInput_schema) as unknown as z.ZodType; -export const FeedbackQuestionAnswerOptionLinkUpdateWithWhereUniqueWithoutFeedbackQuestionAnswerInputObjectZodSchema = z.lazy(__makeSchema_FeedbackQuestionAnswerOptionLinkUpdateWithWhereUniqueWithoutFeedbackQuestionAnswerInput_schema); - - -// File: FeedbackQuestionAnswerOptionLinkUpdateManyWithWhereWithoutFeedbackQuestionAnswerInput.schema.ts -const __makeSchema_FeedbackQuestionAnswerOptionLinkUpdateManyWithWhereWithoutFeedbackQuestionAnswerInput_schema = () => z.object({ - get where(){ return FeedbackQuestionAnswerOptionLinkScalarWhereInputObjectSchema; }, - data: z.union([FeedbackQuestionAnswerOptionLinkUpdateManyMutationInputObjectSchema, FeedbackQuestionAnswerOptionLinkUncheckedUpdateManyWithoutFeedbackQuestionAnswerInputObjectSchema]) -}).strict(); -export const FeedbackQuestionAnswerOptionLinkUpdateManyWithWhereWithoutFeedbackQuestionAnswerInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackQuestionAnswerOptionLinkUpdateManyWithWhereWithoutFeedbackQuestionAnswerInput_schema) as unknown as z.ZodType; -export const FeedbackQuestionAnswerOptionLinkUpdateManyWithWhereWithoutFeedbackQuestionAnswerInputObjectZodSchema = z.lazy(__makeSchema_FeedbackQuestionAnswerOptionLinkUpdateManyWithWhereWithoutFeedbackQuestionAnswerInput_schema); - - -// File: FeedbackQuestionOptionCreateWithoutSelectedInAnswersInput.schema.ts -const __makeSchema_FeedbackQuestionOptionCreateWithoutSelectedInAnswersInput_schema = () => z.object({ - id: z.string().optional(), - name: z.string(), - get question(){ return FeedbackQuestionCreateNestedOneWithoutOptionsInputObjectSchema; } -}).strict(); -export const FeedbackQuestionOptionCreateWithoutSelectedInAnswersInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackQuestionOptionCreateWithoutSelectedInAnswersInput_schema) as unknown as z.ZodType; -export const FeedbackQuestionOptionCreateWithoutSelectedInAnswersInputObjectZodSchema = z.lazy(__makeSchema_FeedbackQuestionOptionCreateWithoutSelectedInAnswersInput_schema); - - -// File: FeedbackQuestionOptionUncheckedCreateWithoutSelectedInAnswersInput.schema.ts -const __makeSchema_FeedbackQuestionOptionUncheckedCreateWithoutSelectedInAnswersInput_schema = () => z.object({ - id: z.string().optional(), - name: z.string(), - questionId: z.string() -}).strict(); -export const FeedbackQuestionOptionUncheckedCreateWithoutSelectedInAnswersInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackQuestionOptionUncheckedCreateWithoutSelectedInAnswersInput_schema) as unknown as z.ZodType; -export const FeedbackQuestionOptionUncheckedCreateWithoutSelectedInAnswersInputObjectZodSchema = z.lazy(__makeSchema_FeedbackQuestionOptionUncheckedCreateWithoutSelectedInAnswersInput_schema); - - -// File: FeedbackQuestionOptionCreateOrConnectWithoutSelectedInAnswersInput.schema.ts -const __makeSchema_FeedbackQuestionOptionCreateOrConnectWithoutSelectedInAnswersInput_schema = () => z.object({ - get where(){ return FeedbackQuestionOptionWhereUniqueInputObjectSchema; }, - create: z.union([FeedbackQuestionOptionCreateWithoutSelectedInAnswersInputObjectSchema, FeedbackQuestionOptionUncheckedCreateWithoutSelectedInAnswersInputObjectSchema]) -}).strict(); -export const FeedbackQuestionOptionCreateOrConnectWithoutSelectedInAnswersInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackQuestionOptionCreateOrConnectWithoutSelectedInAnswersInput_schema) as unknown as z.ZodType; -export const FeedbackQuestionOptionCreateOrConnectWithoutSelectedInAnswersInputObjectZodSchema = z.lazy(__makeSchema_FeedbackQuestionOptionCreateOrConnectWithoutSelectedInAnswersInput_schema); - - -// File: FeedbackQuestionAnswerCreateWithoutSelectedOptionsInput.schema.ts -const __makeSchema_FeedbackQuestionAnswerCreateWithoutSelectedOptionsInput_schema = () => z.object({ - id: z.string().optional(), - value: z.union([NullableJsonNullValueInputSchema, jsonSchema]).optional(), - get question(){ return FeedbackQuestionCreateNestedOneWithoutAnswersInputObjectSchema; }, - get formAnswer(){ return FeedbackFormAnswerCreateNestedOneWithoutAnswersInputObjectSchema; } -}).strict(); -export const FeedbackQuestionAnswerCreateWithoutSelectedOptionsInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackQuestionAnswerCreateWithoutSelectedOptionsInput_schema) as unknown as z.ZodType; -export const FeedbackQuestionAnswerCreateWithoutSelectedOptionsInputObjectZodSchema = z.lazy(__makeSchema_FeedbackQuestionAnswerCreateWithoutSelectedOptionsInput_schema); - - -// File: FeedbackQuestionAnswerUncheckedCreateWithoutSelectedOptionsInput.schema.ts -const __makeSchema_FeedbackQuestionAnswerUncheckedCreateWithoutSelectedOptionsInput_schema = () => z.object({ - id: z.string().optional(), - value: z.union([NullableJsonNullValueInputSchema, jsonSchema]).optional(), - questionId: z.string(), - formAnswerId: z.string() -}).strict(); -export const FeedbackQuestionAnswerUncheckedCreateWithoutSelectedOptionsInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackQuestionAnswerUncheckedCreateWithoutSelectedOptionsInput_schema) as unknown as z.ZodType; -export const FeedbackQuestionAnswerUncheckedCreateWithoutSelectedOptionsInputObjectZodSchema = z.lazy(__makeSchema_FeedbackQuestionAnswerUncheckedCreateWithoutSelectedOptionsInput_schema); - - -// File: FeedbackQuestionAnswerCreateOrConnectWithoutSelectedOptionsInput.schema.ts -const __makeSchema_FeedbackQuestionAnswerCreateOrConnectWithoutSelectedOptionsInput_schema = () => z.object({ - get where(){ return FeedbackQuestionAnswerWhereUniqueInputObjectSchema; }, - create: z.union([FeedbackQuestionAnswerCreateWithoutSelectedOptionsInputObjectSchema, FeedbackQuestionAnswerUncheckedCreateWithoutSelectedOptionsInputObjectSchema]) -}).strict(); -export const FeedbackQuestionAnswerCreateOrConnectWithoutSelectedOptionsInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackQuestionAnswerCreateOrConnectWithoutSelectedOptionsInput_schema) as unknown as z.ZodType; -export const FeedbackQuestionAnswerCreateOrConnectWithoutSelectedOptionsInputObjectZodSchema = z.lazy(__makeSchema_FeedbackQuestionAnswerCreateOrConnectWithoutSelectedOptionsInput_schema); - - -// File: FeedbackQuestionOptionUpsertWithoutSelectedInAnswersInput.schema.ts -const __makeSchema_FeedbackQuestionOptionUpsertWithoutSelectedInAnswersInput_schema = () => z.object({ - update: z.union([FeedbackQuestionOptionUpdateWithoutSelectedInAnswersInputObjectSchema, FeedbackQuestionOptionUncheckedUpdateWithoutSelectedInAnswersInputObjectSchema]), - create: z.union([FeedbackQuestionOptionCreateWithoutSelectedInAnswersInputObjectSchema, FeedbackQuestionOptionUncheckedCreateWithoutSelectedInAnswersInputObjectSchema]), - get where(){ return FeedbackQuestionOptionWhereInputObjectSchema.optional(); } -}).strict(); -export const FeedbackQuestionOptionUpsertWithoutSelectedInAnswersInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackQuestionOptionUpsertWithoutSelectedInAnswersInput_schema) as unknown as z.ZodType; -export const FeedbackQuestionOptionUpsertWithoutSelectedInAnswersInputObjectZodSchema = z.lazy(__makeSchema_FeedbackQuestionOptionUpsertWithoutSelectedInAnswersInput_schema); - - -// File: FeedbackQuestionOptionUpdateToOneWithWhereWithoutSelectedInAnswersInput.schema.ts -const __makeSchema_FeedbackQuestionOptionUpdateToOneWithWhereWithoutSelectedInAnswersInput_schema = () => z.object({ - get where(){ return FeedbackQuestionOptionWhereInputObjectSchema.optional(); }, - data: z.union([FeedbackQuestionOptionUpdateWithoutSelectedInAnswersInputObjectSchema, FeedbackQuestionOptionUncheckedUpdateWithoutSelectedInAnswersInputObjectSchema]) -}).strict(); -export const FeedbackQuestionOptionUpdateToOneWithWhereWithoutSelectedInAnswersInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackQuestionOptionUpdateToOneWithWhereWithoutSelectedInAnswersInput_schema) as unknown as z.ZodType; -export const FeedbackQuestionOptionUpdateToOneWithWhereWithoutSelectedInAnswersInputObjectZodSchema = z.lazy(__makeSchema_FeedbackQuestionOptionUpdateToOneWithWhereWithoutSelectedInAnswersInput_schema); - - -// File: FeedbackQuestionOptionUpdateWithoutSelectedInAnswersInput.schema.ts -const __makeSchema_FeedbackQuestionOptionUpdateWithoutSelectedInAnswersInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - name: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - get question(){ return FeedbackQuestionUpdateOneRequiredWithoutOptionsNestedInputObjectSchema.optional(); } -}).strict(); -export const FeedbackQuestionOptionUpdateWithoutSelectedInAnswersInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackQuestionOptionUpdateWithoutSelectedInAnswersInput_schema) as unknown as z.ZodType; -export const FeedbackQuestionOptionUpdateWithoutSelectedInAnswersInputObjectZodSchema = z.lazy(__makeSchema_FeedbackQuestionOptionUpdateWithoutSelectedInAnswersInput_schema); - - -// File: FeedbackQuestionOptionUncheckedUpdateWithoutSelectedInAnswersInput.schema.ts -const __makeSchema_FeedbackQuestionOptionUncheckedUpdateWithoutSelectedInAnswersInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - name: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - questionId: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional() -}).strict(); -export const FeedbackQuestionOptionUncheckedUpdateWithoutSelectedInAnswersInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackQuestionOptionUncheckedUpdateWithoutSelectedInAnswersInput_schema) as unknown as z.ZodType; -export const FeedbackQuestionOptionUncheckedUpdateWithoutSelectedInAnswersInputObjectZodSchema = z.lazy(__makeSchema_FeedbackQuestionOptionUncheckedUpdateWithoutSelectedInAnswersInput_schema); - - -// File: FeedbackQuestionAnswerUpsertWithoutSelectedOptionsInput.schema.ts -const __makeSchema_FeedbackQuestionAnswerUpsertWithoutSelectedOptionsInput_schema = () => z.object({ - update: z.union([FeedbackQuestionAnswerUpdateWithoutSelectedOptionsInputObjectSchema, FeedbackQuestionAnswerUncheckedUpdateWithoutSelectedOptionsInputObjectSchema]), - create: z.union([FeedbackQuestionAnswerCreateWithoutSelectedOptionsInputObjectSchema, FeedbackQuestionAnswerUncheckedCreateWithoutSelectedOptionsInputObjectSchema]), - get where(){ return FeedbackQuestionAnswerWhereInputObjectSchema.optional(); } -}).strict(); -export const FeedbackQuestionAnswerUpsertWithoutSelectedOptionsInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackQuestionAnswerUpsertWithoutSelectedOptionsInput_schema) as unknown as z.ZodType; -export const FeedbackQuestionAnswerUpsertWithoutSelectedOptionsInputObjectZodSchema = z.lazy(__makeSchema_FeedbackQuestionAnswerUpsertWithoutSelectedOptionsInput_schema); - - -// File: FeedbackQuestionAnswerUpdateToOneWithWhereWithoutSelectedOptionsInput.schema.ts -const __makeSchema_FeedbackQuestionAnswerUpdateToOneWithWhereWithoutSelectedOptionsInput_schema = () => z.object({ - get where(){ return FeedbackQuestionAnswerWhereInputObjectSchema.optional(); }, - data: z.union([FeedbackQuestionAnswerUpdateWithoutSelectedOptionsInputObjectSchema, FeedbackQuestionAnswerUncheckedUpdateWithoutSelectedOptionsInputObjectSchema]) -}).strict(); -export const FeedbackQuestionAnswerUpdateToOneWithWhereWithoutSelectedOptionsInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackQuestionAnswerUpdateToOneWithWhereWithoutSelectedOptionsInput_schema) as unknown as z.ZodType; -export const FeedbackQuestionAnswerUpdateToOneWithWhereWithoutSelectedOptionsInputObjectZodSchema = z.lazy(__makeSchema_FeedbackQuestionAnswerUpdateToOneWithWhereWithoutSelectedOptionsInput_schema); - - -// File: FeedbackQuestionAnswerUpdateWithoutSelectedOptionsInput.schema.ts -const __makeSchema_FeedbackQuestionAnswerUpdateWithoutSelectedOptionsInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - value: z.union([NullableJsonNullValueInputSchema, jsonSchema]).optional(), - get question(){ return FeedbackQuestionUpdateOneRequiredWithoutAnswersNestedInputObjectSchema.optional(); }, - get formAnswer(){ return FeedbackFormAnswerUpdateOneRequiredWithoutAnswersNestedInputObjectSchema.optional(); } -}).strict(); -export const FeedbackQuestionAnswerUpdateWithoutSelectedOptionsInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackQuestionAnswerUpdateWithoutSelectedOptionsInput_schema) as unknown as z.ZodType; -export const FeedbackQuestionAnswerUpdateWithoutSelectedOptionsInputObjectZodSchema = z.lazy(__makeSchema_FeedbackQuestionAnswerUpdateWithoutSelectedOptionsInput_schema); - - -// File: FeedbackQuestionAnswerUncheckedUpdateWithoutSelectedOptionsInput.schema.ts -const __makeSchema_FeedbackQuestionAnswerUncheckedUpdateWithoutSelectedOptionsInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - value: z.union([NullableJsonNullValueInputSchema, jsonSchema]).optional(), - questionId: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - formAnswerId: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional() -}).strict(); -export const FeedbackQuestionAnswerUncheckedUpdateWithoutSelectedOptionsInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackQuestionAnswerUncheckedUpdateWithoutSelectedOptionsInput_schema) as unknown as z.ZodType; -export const FeedbackQuestionAnswerUncheckedUpdateWithoutSelectedOptionsInputObjectZodSchema = z.lazy(__makeSchema_FeedbackQuestionAnswerUncheckedUpdateWithoutSelectedOptionsInput_schema); - - -// File: FeedbackFormCreateWithoutAnswersInput.schema.ts -const __makeSchema_FeedbackFormCreateWithoutAnswersInput_schema = () => z.object({ - id: z.string().optional(), - publicResultsToken: z.string().optional(), - createdAt: z.coerce.date().optional(), - updatedAt: z.coerce.date().optional(), - answerDeadline: z.coerce.date(), - get event(){ return EventCreateNestedOneWithoutFeedbackFormInputObjectSchema; }, - get questions(){ return FeedbackQuestionCreateNestedManyWithoutFeedbackFormInputObjectSchema.optional(); } -}).strict(); -export const FeedbackFormCreateWithoutAnswersInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackFormCreateWithoutAnswersInput_schema) as unknown as z.ZodType; -export const FeedbackFormCreateWithoutAnswersInputObjectZodSchema = z.lazy(__makeSchema_FeedbackFormCreateWithoutAnswersInput_schema); - - -// File: FeedbackFormUncheckedCreateWithoutAnswersInput.schema.ts -const __makeSchema_FeedbackFormUncheckedCreateWithoutAnswersInput_schema = () => z.object({ - id: z.string().optional(), - publicResultsToken: z.string().optional(), - createdAt: z.coerce.date().optional(), - updatedAt: z.coerce.date().optional(), - answerDeadline: z.coerce.date(), - eventId: z.string(), - get questions(){ return FeedbackQuestionUncheckedCreateNestedManyWithoutFeedbackFormInputObjectSchema.optional(); } -}).strict(); -export const FeedbackFormUncheckedCreateWithoutAnswersInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackFormUncheckedCreateWithoutAnswersInput_schema) as unknown as z.ZodType; -export const FeedbackFormUncheckedCreateWithoutAnswersInputObjectZodSchema = z.lazy(__makeSchema_FeedbackFormUncheckedCreateWithoutAnswersInput_schema); - - -// File: FeedbackFormCreateOrConnectWithoutAnswersInput.schema.ts -const __makeSchema_FeedbackFormCreateOrConnectWithoutAnswersInput_schema = () => z.object({ - get where(){ return FeedbackFormWhereUniqueInputObjectSchema; }, - create: z.union([FeedbackFormCreateWithoutAnswersInputObjectSchema, FeedbackFormUncheckedCreateWithoutAnswersInputObjectSchema]) -}).strict(); -export const FeedbackFormCreateOrConnectWithoutAnswersInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackFormCreateOrConnectWithoutAnswersInput_schema) as unknown as z.ZodType; -export const FeedbackFormCreateOrConnectWithoutAnswersInputObjectZodSchema = z.lazy(__makeSchema_FeedbackFormCreateOrConnectWithoutAnswersInput_schema); - - -// File: AttendeeCreateWithoutFeedbackFormAnswerInput.schema.ts -const __makeSchema_AttendeeCreateWithoutFeedbackFormAnswerInput_schema = () => z.object({ - id: z.string().optional(), - userGrade: z.number().int().optional().nullable(), - selections: z.union([JsonNullValueInputSchema, jsonSchema]).optional(), - reserved: z.boolean(), - earliestReservationAt: z.coerce.date(), - attendedAt: z.coerce.date().optional().nullable(), - createdAt: z.coerce.date().optional(), - updatedAt: z.coerce.date().optional(), - paymentDeadline: z.coerce.date().optional().nullable(), - paymentLink: z.string().optional().nullable(), - paymentId: z.string().optional().nullable(), - paymentReservedAt: z.coerce.date().optional().nullable(), - paymentChargeDeadline: z.coerce.date().optional().nullable(), - paymentChargedAt: z.coerce.date().optional().nullable(), - paymentRefundedAt: z.coerce.date().optional().nullable(), - paymentCheckoutUrl: z.string().optional().nullable(), - get attendance(){ return AttendanceCreateNestedOneWithoutAttendeesInputObjectSchema; }, - get user(){ return UserCreateNestedOneWithoutAttendeeInputObjectSchema; }, - get attendancePool(){ return AttendancePoolCreateNestedOneWithoutAttendeesInputObjectSchema; }, - get paymentRefundedBy(){ return UserCreateNestedOneWithoutAttendeesRefundedInputObjectSchema.optional(); } -}).strict(); -export const AttendeeCreateWithoutFeedbackFormAnswerInputObjectSchema: z.ZodType = z.lazy(__makeSchema_AttendeeCreateWithoutFeedbackFormAnswerInput_schema) as unknown as z.ZodType; -export const AttendeeCreateWithoutFeedbackFormAnswerInputObjectZodSchema = z.lazy(__makeSchema_AttendeeCreateWithoutFeedbackFormAnswerInput_schema); - - -// File: AttendeeUncheckedCreateWithoutFeedbackFormAnswerInput.schema.ts -const __makeSchema_AttendeeUncheckedCreateWithoutFeedbackFormAnswerInput_schema = () => z.object({ - id: z.string().optional(), - userGrade: z.number().int().optional().nullable(), - selections: z.union([JsonNullValueInputSchema, jsonSchema]).optional(), - reserved: z.boolean(), - earliestReservationAt: z.coerce.date(), - attendedAt: z.coerce.date().optional().nullable(), - createdAt: z.coerce.date().optional(), - updatedAt: z.coerce.date().optional(), - paymentDeadline: z.coerce.date().optional().nullable(), - paymentLink: z.string().optional().nullable(), - paymentId: z.string().optional().nullable(), - paymentReservedAt: z.coerce.date().optional().nullable(), - paymentChargeDeadline: z.coerce.date().optional().nullable(), - paymentChargedAt: z.coerce.date().optional().nullable(), - paymentRefundedAt: z.coerce.date().optional().nullable(), - paymentCheckoutUrl: z.string().optional().nullable(), - attendanceId: z.string(), - userId: z.string(), - attendancePoolId: z.string(), - paymentRefundedById: z.string().optional().nullable() -}).strict(); -export const AttendeeUncheckedCreateWithoutFeedbackFormAnswerInputObjectSchema: z.ZodType = z.lazy(__makeSchema_AttendeeUncheckedCreateWithoutFeedbackFormAnswerInput_schema) as unknown as z.ZodType; -export const AttendeeUncheckedCreateWithoutFeedbackFormAnswerInputObjectZodSchema = z.lazy(__makeSchema_AttendeeUncheckedCreateWithoutFeedbackFormAnswerInput_schema); - - -// File: AttendeeCreateOrConnectWithoutFeedbackFormAnswerInput.schema.ts -const __makeSchema_AttendeeCreateOrConnectWithoutFeedbackFormAnswerInput_schema = () => z.object({ - get where(){ return AttendeeWhereUniqueInputObjectSchema; }, - create: z.union([AttendeeCreateWithoutFeedbackFormAnswerInputObjectSchema, AttendeeUncheckedCreateWithoutFeedbackFormAnswerInputObjectSchema]) -}).strict(); -export const AttendeeCreateOrConnectWithoutFeedbackFormAnswerInputObjectSchema: z.ZodType = z.lazy(__makeSchema_AttendeeCreateOrConnectWithoutFeedbackFormAnswerInput_schema) as unknown as z.ZodType; -export const AttendeeCreateOrConnectWithoutFeedbackFormAnswerInputObjectZodSchema = z.lazy(__makeSchema_AttendeeCreateOrConnectWithoutFeedbackFormAnswerInput_schema); - - -// File: FeedbackQuestionAnswerCreateWithoutFormAnswerInput.schema.ts -const __makeSchema_FeedbackQuestionAnswerCreateWithoutFormAnswerInput_schema = () => z.object({ - id: z.string().optional(), - value: z.union([NullableJsonNullValueInputSchema, jsonSchema]).optional(), - get question(){ return FeedbackQuestionCreateNestedOneWithoutAnswersInputObjectSchema; }, - get selectedOptions(){ return FeedbackQuestionAnswerOptionLinkCreateNestedManyWithoutFeedbackQuestionAnswerInputObjectSchema.optional(); } -}).strict(); -export const FeedbackQuestionAnswerCreateWithoutFormAnswerInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackQuestionAnswerCreateWithoutFormAnswerInput_schema) as unknown as z.ZodType; -export const FeedbackQuestionAnswerCreateWithoutFormAnswerInputObjectZodSchema = z.lazy(__makeSchema_FeedbackQuestionAnswerCreateWithoutFormAnswerInput_schema); - - -// File: FeedbackQuestionAnswerUncheckedCreateWithoutFormAnswerInput.schema.ts -const __makeSchema_FeedbackQuestionAnswerUncheckedCreateWithoutFormAnswerInput_schema = () => z.object({ - id: z.string().optional(), - value: z.union([NullableJsonNullValueInputSchema, jsonSchema]).optional(), - questionId: z.string(), - get selectedOptions(){ return FeedbackQuestionAnswerOptionLinkUncheckedCreateNestedManyWithoutFeedbackQuestionAnswerInputObjectSchema.optional(); } -}).strict(); -export const FeedbackQuestionAnswerUncheckedCreateWithoutFormAnswerInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackQuestionAnswerUncheckedCreateWithoutFormAnswerInput_schema) as unknown as z.ZodType; -export const FeedbackQuestionAnswerUncheckedCreateWithoutFormAnswerInputObjectZodSchema = z.lazy(__makeSchema_FeedbackQuestionAnswerUncheckedCreateWithoutFormAnswerInput_schema); - - -// File: FeedbackQuestionAnswerCreateOrConnectWithoutFormAnswerInput.schema.ts -const __makeSchema_FeedbackQuestionAnswerCreateOrConnectWithoutFormAnswerInput_schema = () => z.object({ - get where(){ return FeedbackQuestionAnswerWhereUniqueInputObjectSchema; }, - create: z.union([FeedbackQuestionAnswerCreateWithoutFormAnswerInputObjectSchema, FeedbackQuestionAnswerUncheckedCreateWithoutFormAnswerInputObjectSchema]) -}).strict(); -export const FeedbackQuestionAnswerCreateOrConnectWithoutFormAnswerInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackQuestionAnswerCreateOrConnectWithoutFormAnswerInput_schema) as unknown as z.ZodType; -export const FeedbackQuestionAnswerCreateOrConnectWithoutFormAnswerInputObjectZodSchema = z.lazy(__makeSchema_FeedbackQuestionAnswerCreateOrConnectWithoutFormAnswerInput_schema); - - -// File: FeedbackQuestionAnswerCreateManyFormAnswerInputEnvelope.schema.ts -const __makeSchema_FeedbackQuestionAnswerCreateManyFormAnswerInputEnvelope_schema = () => z.object({ - data: z.union([FeedbackQuestionAnswerCreateManyFormAnswerInputObjectSchema, FeedbackQuestionAnswerCreateManyFormAnswerInputObjectSchema.array()]), - skipDuplicates: z.boolean().optional() -}).strict(); -export const FeedbackQuestionAnswerCreateManyFormAnswerInputEnvelopeObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackQuestionAnswerCreateManyFormAnswerInputEnvelope_schema) as unknown as z.ZodType; -export const FeedbackQuestionAnswerCreateManyFormAnswerInputEnvelopeObjectZodSchema = z.lazy(__makeSchema_FeedbackQuestionAnswerCreateManyFormAnswerInputEnvelope_schema); - - -// File: FeedbackFormUpsertWithoutAnswersInput.schema.ts -const __makeSchema_FeedbackFormUpsertWithoutAnswersInput_schema = () => z.object({ - update: z.union([FeedbackFormUpdateWithoutAnswersInputObjectSchema, FeedbackFormUncheckedUpdateWithoutAnswersInputObjectSchema]), - create: z.union([FeedbackFormCreateWithoutAnswersInputObjectSchema, FeedbackFormUncheckedCreateWithoutAnswersInputObjectSchema]), - get where(){ return FeedbackFormWhereInputObjectSchema.optional(); } -}).strict(); -export const FeedbackFormUpsertWithoutAnswersInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackFormUpsertWithoutAnswersInput_schema) as unknown as z.ZodType; -export const FeedbackFormUpsertWithoutAnswersInputObjectZodSchema = z.lazy(__makeSchema_FeedbackFormUpsertWithoutAnswersInput_schema); - - -// File: FeedbackFormUpdateToOneWithWhereWithoutAnswersInput.schema.ts -const __makeSchema_FeedbackFormUpdateToOneWithWhereWithoutAnswersInput_schema = () => z.object({ - get where(){ return FeedbackFormWhereInputObjectSchema.optional(); }, - data: z.union([FeedbackFormUpdateWithoutAnswersInputObjectSchema, FeedbackFormUncheckedUpdateWithoutAnswersInputObjectSchema]) -}).strict(); -export const FeedbackFormUpdateToOneWithWhereWithoutAnswersInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackFormUpdateToOneWithWhereWithoutAnswersInput_schema) as unknown as z.ZodType; -export const FeedbackFormUpdateToOneWithWhereWithoutAnswersInputObjectZodSchema = z.lazy(__makeSchema_FeedbackFormUpdateToOneWithWhereWithoutAnswersInput_schema); - - -// File: FeedbackFormUpdateWithoutAnswersInput.schema.ts -const __makeSchema_FeedbackFormUpdateWithoutAnswersInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - publicResultsToken: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - createdAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - updatedAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - answerDeadline: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - get event(){ return EventUpdateOneRequiredWithoutFeedbackFormNestedInputObjectSchema.optional(); }, - get questions(){ return FeedbackQuestionUpdateManyWithoutFeedbackFormNestedInputObjectSchema.optional(); } -}).strict(); -export const FeedbackFormUpdateWithoutAnswersInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackFormUpdateWithoutAnswersInput_schema) as unknown as z.ZodType; -export const FeedbackFormUpdateWithoutAnswersInputObjectZodSchema = z.lazy(__makeSchema_FeedbackFormUpdateWithoutAnswersInput_schema); - - -// File: FeedbackFormUncheckedUpdateWithoutAnswersInput.schema.ts -const __makeSchema_FeedbackFormUncheckedUpdateWithoutAnswersInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - publicResultsToken: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - createdAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - updatedAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - answerDeadline: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - eventId: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - get questions(){ return FeedbackQuestionUncheckedUpdateManyWithoutFeedbackFormNestedInputObjectSchema.optional(); } -}).strict(); -export const FeedbackFormUncheckedUpdateWithoutAnswersInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackFormUncheckedUpdateWithoutAnswersInput_schema) as unknown as z.ZodType; -export const FeedbackFormUncheckedUpdateWithoutAnswersInputObjectZodSchema = z.lazy(__makeSchema_FeedbackFormUncheckedUpdateWithoutAnswersInput_schema); - - -// File: AttendeeUpsertWithoutFeedbackFormAnswerInput.schema.ts -const __makeSchema_AttendeeUpsertWithoutFeedbackFormAnswerInput_schema = () => z.object({ - update: z.union([AttendeeUpdateWithoutFeedbackFormAnswerInputObjectSchema, AttendeeUncheckedUpdateWithoutFeedbackFormAnswerInputObjectSchema]), - create: z.union([AttendeeCreateWithoutFeedbackFormAnswerInputObjectSchema, AttendeeUncheckedCreateWithoutFeedbackFormAnswerInputObjectSchema]), - get where(){ return AttendeeWhereInputObjectSchema.optional(); } -}).strict(); -export const AttendeeUpsertWithoutFeedbackFormAnswerInputObjectSchema: z.ZodType = z.lazy(__makeSchema_AttendeeUpsertWithoutFeedbackFormAnswerInput_schema) as unknown as z.ZodType; -export const AttendeeUpsertWithoutFeedbackFormAnswerInputObjectZodSchema = z.lazy(__makeSchema_AttendeeUpsertWithoutFeedbackFormAnswerInput_schema); - - -// File: AttendeeUpdateToOneWithWhereWithoutFeedbackFormAnswerInput.schema.ts -const __makeSchema_AttendeeUpdateToOneWithWhereWithoutFeedbackFormAnswerInput_schema = () => z.object({ - get where(){ return AttendeeWhereInputObjectSchema.optional(); }, - data: z.union([AttendeeUpdateWithoutFeedbackFormAnswerInputObjectSchema, AttendeeUncheckedUpdateWithoutFeedbackFormAnswerInputObjectSchema]) -}).strict(); -export const AttendeeUpdateToOneWithWhereWithoutFeedbackFormAnswerInputObjectSchema: z.ZodType = z.lazy(__makeSchema_AttendeeUpdateToOneWithWhereWithoutFeedbackFormAnswerInput_schema) as unknown as z.ZodType; -export const AttendeeUpdateToOneWithWhereWithoutFeedbackFormAnswerInputObjectZodSchema = z.lazy(__makeSchema_AttendeeUpdateToOneWithWhereWithoutFeedbackFormAnswerInput_schema); - - -// File: AttendeeUpdateWithoutFeedbackFormAnswerInput.schema.ts -const __makeSchema_AttendeeUpdateWithoutFeedbackFormAnswerInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - userGrade: z.union([z.number().int(), NullableIntFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - selections: z.union([JsonNullValueInputSchema, jsonSchema]).optional(), - reserved: z.union([z.boolean(), BoolFieldUpdateOperationsInputObjectSchema]).optional(), - earliestReservationAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - attendedAt: z.union([z.coerce.date(), NullableDateTimeFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - createdAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - updatedAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - paymentDeadline: z.union([z.coerce.date(), NullableDateTimeFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - paymentLink: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - paymentId: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - paymentReservedAt: z.union([z.coerce.date(), NullableDateTimeFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - paymentChargeDeadline: z.union([z.coerce.date(), NullableDateTimeFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - paymentChargedAt: z.union([z.coerce.date(), NullableDateTimeFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - paymentRefundedAt: z.union([z.coerce.date(), NullableDateTimeFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - paymentCheckoutUrl: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - get attendance(){ return AttendanceUpdateOneRequiredWithoutAttendeesNestedInputObjectSchema.optional(); }, - get user(){ return UserUpdateOneRequiredWithoutAttendeeNestedInputObjectSchema.optional(); }, - get attendancePool(){ return AttendancePoolUpdateOneRequiredWithoutAttendeesNestedInputObjectSchema.optional(); }, - get paymentRefundedBy(){ return UserUpdateOneWithoutAttendeesRefundedNestedInputObjectSchema.optional(); } -}).strict(); -export const AttendeeUpdateWithoutFeedbackFormAnswerInputObjectSchema: z.ZodType = z.lazy(__makeSchema_AttendeeUpdateWithoutFeedbackFormAnswerInput_schema) as unknown as z.ZodType; -export const AttendeeUpdateWithoutFeedbackFormAnswerInputObjectZodSchema = z.lazy(__makeSchema_AttendeeUpdateWithoutFeedbackFormAnswerInput_schema); - - -// File: AttendeeUncheckedUpdateWithoutFeedbackFormAnswerInput.schema.ts -const __makeSchema_AttendeeUncheckedUpdateWithoutFeedbackFormAnswerInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - userGrade: z.union([z.number().int(), NullableIntFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - selections: z.union([JsonNullValueInputSchema, jsonSchema]).optional(), - reserved: z.union([z.boolean(), BoolFieldUpdateOperationsInputObjectSchema]).optional(), - earliestReservationAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - attendedAt: z.union([z.coerce.date(), NullableDateTimeFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - createdAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - updatedAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - paymentDeadline: z.union([z.coerce.date(), NullableDateTimeFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - paymentLink: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - paymentId: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - paymentReservedAt: z.union([z.coerce.date(), NullableDateTimeFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - paymentChargeDeadline: z.union([z.coerce.date(), NullableDateTimeFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - paymentChargedAt: z.union([z.coerce.date(), NullableDateTimeFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - paymentRefundedAt: z.union([z.coerce.date(), NullableDateTimeFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - paymentCheckoutUrl: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - attendanceId: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - userId: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - attendancePoolId: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - paymentRefundedById: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable() -}).strict(); -export const AttendeeUncheckedUpdateWithoutFeedbackFormAnswerInputObjectSchema: z.ZodType = z.lazy(__makeSchema_AttendeeUncheckedUpdateWithoutFeedbackFormAnswerInput_schema) as unknown as z.ZodType; -export const AttendeeUncheckedUpdateWithoutFeedbackFormAnswerInputObjectZodSchema = z.lazy(__makeSchema_AttendeeUncheckedUpdateWithoutFeedbackFormAnswerInput_schema); - - -// File: FeedbackQuestionAnswerUpsertWithWhereUniqueWithoutFormAnswerInput.schema.ts -const __makeSchema_FeedbackQuestionAnswerUpsertWithWhereUniqueWithoutFormAnswerInput_schema = () => z.object({ - get where(){ return FeedbackQuestionAnswerWhereUniqueInputObjectSchema; }, - update: z.union([FeedbackQuestionAnswerUpdateWithoutFormAnswerInputObjectSchema, FeedbackQuestionAnswerUncheckedUpdateWithoutFormAnswerInputObjectSchema]), - create: z.union([FeedbackQuestionAnswerCreateWithoutFormAnswerInputObjectSchema, FeedbackQuestionAnswerUncheckedCreateWithoutFormAnswerInputObjectSchema]) -}).strict(); -export const FeedbackQuestionAnswerUpsertWithWhereUniqueWithoutFormAnswerInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackQuestionAnswerUpsertWithWhereUniqueWithoutFormAnswerInput_schema) as unknown as z.ZodType; -export const FeedbackQuestionAnswerUpsertWithWhereUniqueWithoutFormAnswerInputObjectZodSchema = z.lazy(__makeSchema_FeedbackQuestionAnswerUpsertWithWhereUniqueWithoutFormAnswerInput_schema); - - -// File: FeedbackQuestionAnswerUpdateWithWhereUniqueWithoutFormAnswerInput.schema.ts -const __makeSchema_FeedbackQuestionAnswerUpdateWithWhereUniqueWithoutFormAnswerInput_schema = () => z.object({ - get where(){ return FeedbackQuestionAnswerWhereUniqueInputObjectSchema; }, - data: z.union([FeedbackQuestionAnswerUpdateWithoutFormAnswerInputObjectSchema, FeedbackQuestionAnswerUncheckedUpdateWithoutFormAnswerInputObjectSchema]) -}).strict(); -export const FeedbackQuestionAnswerUpdateWithWhereUniqueWithoutFormAnswerInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackQuestionAnswerUpdateWithWhereUniqueWithoutFormAnswerInput_schema) as unknown as z.ZodType; -export const FeedbackQuestionAnswerUpdateWithWhereUniqueWithoutFormAnswerInputObjectZodSchema = z.lazy(__makeSchema_FeedbackQuestionAnswerUpdateWithWhereUniqueWithoutFormAnswerInput_schema); - - -// File: FeedbackQuestionAnswerUpdateManyWithWhereWithoutFormAnswerInput.schema.ts -const __makeSchema_FeedbackQuestionAnswerUpdateManyWithWhereWithoutFormAnswerInput_schema = () => z.object({ - get where(){ return FeedbackQuestionAnswerScalarWhereInputObjectSchema; }, - data: z.union([FeedbackQuestionAnswerUpdateManyMutationInputObjectSchema, FeedbackQuestionAnswerUncheckedUpdateManyWithoutFormAnswerInputObjectSchema]) -}).strict(); -export const FeedbackQuestionAnswerUpdateManyWithWhereWithoutFormAnswerInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackQuestionAnswerUpdateManyWithWhereWithoutFormAnswerInput_schema) as unknown as z.ZodType; -export const FeedbackQuestionAnswerUpdateManyWithWhereWithoutFormAnswerInputObjectZodSchema = z.lazy(__makeSchema_FeedbackQuestionAnswerUpdateManyWithWhereWithoutFormAnswerInput_schema); - - -// File: UserCreateWithoutAuditLogsInput.schema.ts -const __makeSchema_UserCreateWithoutAuditLogsInput_schema = () => z.object({ - id: z.string(), - username: z.string(), - name: z.string().optional().nullable(), - email: z.string().optional().nullable(), - imageUrl: z.string().optional().nullable(), - biography: z.string().optional().nullable(), - phone: z.string().optional().nullable(), - gender: GenderSchema.optional(), - dietaryRestrictions: z.string().optional().nullable(), - ntnuUsername: z.string().optional().nullable(), - flags: z.union([UserCreateflagsInputObjectSchema, z.string().array()]).optional(), - workspaceUserId: z.string().optional().nullable(), - createdAt: z.coerce.date().optional(), - updatedAt: z.coerce.date().optional(), - privacyPermissionsId: z.string().optional().nullable(), - notificationPermissionsId: z.string().optional().nullable(), - get privacyPermissions(){ return PrivacyPermissionsCreateNestedOneWithoutUserInputObjectSchema.optional(); }, - get notificationPermissions(){ return NotificationPermissionsCreateNestedOneWithoutUserInputObjectSchema.optional(); }, - get attendee(){ return AttendeeCreateNestedManyWithoutUserInputObjectSchema.optional(); }, - get personalMark(){ return PersonalMarkCreateNestedManyWithoutUserInputObjectSchema.optional(); }, - get groupMemberships(){ return GroupMembershipCreateNestedManyWithoutUserInputObjectSchema.optional(); }, - get memberships(){ return MembershipCreateNestedManyWithoutUserInputObjectSchema.optional(); }, - get givenMarks(){ return PersonalMarkCreateNestedManyWithoutGivenByInputObjectSchema.optional(); }, - get attendeesRefunded(){ return AttendeeCreateNestedManyWithoutPaymentRefundedByInputObjectSchema.optional(); }, - get deregisterReasons(){ return DeregisterReasonCreateNestedManyWithoutUserInputObjectSchema.optional(); }, - get notificationsReceived(){ return NotificationRecipientCreateNestedManyWithoutUserInputObjectSchema.optional(); }, - get notificationsCreated(){ return NotificationCreateNestedManyWithoutCreatedByInputObjectSchema.optional(); }, - get notificationsUpdated(){ return NotificationCreateNestedManyWithoutLastUpdatedByInputObjectSchema.optional(); }, - get contestants(){ return ContestantCreateNestedManyWithoutUserInputObjectSchema.optional(); }, - get contestTeams(){ return ContestTeamCreateNestedManyWithoutMembersInputObjectSchema.optional(); } -}).strict(); -export const UserCreateWithoutAuditLogsInputObjectSchema: z.ZodType = z.lazy(__makeSchema_UserCreateWithoutAuditLogsInput_schema) as unknown as z.ZodType; -export const UserCreateWithoutAuditLogsInputObjectZodSchema = z.lazy(__makeSchema_UserCreateWithoutAuditLogsInput_schema); - - -// File: UserUncheckedCreateWithoutAuditLogsInput.schema.ts -const __makeSchema_UserUncheckedCreateWithoutAuditLogsInput_schema = () => z.object({ - id: z.string(), - username: z.string(), - name: z.string().optional().nullable(), - email: z.string().optional().nullable(), - imageUrl: z.string().optional().nullable(), - biography: z.string().optional().nullable(), - phone: z.string().optional().nullable(), - gender: GenderSchema.optional(), - dietaryRestrictions: z.string().optional().nullable(), - ntnuUsername: z.string().optional().nullable(), - flags: z.union([UserCreateflagsInputObjectSchema, z.string().array()]).optional(), - workspaceUserId: z.string().optional().nullable(), - createdAt: z.coerce.date().optional(), - updatedAt: z.coerce.date().optional(), - privacyPermissionsId: z.string().optional().nullable(), - notificationPermissionsId: z.string().optional().nullable(), - get privacyPermissions(){ return PrivacyPermissionsUncheckedCreateNestedOneWithoutUserInputObjectSchema.optional(); }, - get notificationPermissions(){ return NotificationPermissionsUncheckedCreateNestedOneWithoutUserInputObjectSchema.optional(); }, - get attendee(){ return AttendeeUncheckedCreateNestedManyWithoutUserInputObjectSchema.optional(); }, - get personalMark(){ return PersonalMarkUncheckedCreateNestedManyWithoutUserInputObjectSchema.optional(); }, - get groupMemberships(){ return GroupMembershipUncheckedCreateNestedManyWithoutUserInputObjectSchema.optional(); }, - get memberships(){ return MembershipUncheckedCreateNestedManyWithoutUserInputObjectSchema.optional(); }, - get givenMarks(){ return PersonalMarkUncheckedCreateNestedManyWithoutGivenByInputObjectSchema.optional(); }, - get attendeesRefunded(){ return AttendeeUncheckedCreateNestedManyWithoutPaymentRefundedByInputObjectSchema.optional(); }, - get deregisterReasons(){ return DeregisterReasonUncheckedCreateNestedManyWithoutUserInputObjectSchema.optional(); }, - get notificationsReceived(){ return NotificationRecipientUncheckedCreateNestedManyWithoutUserInputObjectSchema.optional(); }, - get notificationsCreated(){ return NotificationUncheckedCreateNestedManyWithoutCreatedByInputObjectSchema.optional(); }, - get notificationsUpdated(){ return NotificationUncheckedCreateNestedManyWithoutLastUpdatedByInputObjectSchema.optional(); }, - get contestants(){ return ContestantUncheckedCreateNestedManyWithoutUserInputObjectSchema.optional(); }, - get contestTeams(){ return ContestTeamUncheckedCreateNestedManyWithoutMembersInputObjectSchema.optional(); } -}).strict(); -export const UserUncheckedCreateWithoutAuditLogsInputObjectSchema: z.ZodType = z.lazy(__makeSchema_UserUncheckedCreateWithoutAuditLogsInput_schema) as unknown as z.ZodType; -export const UserUncheckedCreateWithoutAuditLogsInputObjectZodSchema = z.lazy(__makeSchema_UserUncheckedCreateWithoutAuditLogsInput_schema); - - -// File: UserCreateOrConnectWithoutAuditLogsInput.schema.ts -const __makeSchema_UserCreateOrConnectWithoutAuditLogsInput_schema = () => z.object({ - get where(){ return UserWhereUniqueInputObjectSchema; }, - create: z.union([UserCreateWithoutAuditLogsInputObjectSchema, UserUncheckedCreateWithoutAuditLogsInputObjectSchema]) -}).strict(); -export const UserCreateOrConnectWithoutAuditLogsInputObjectSchema: z.ZodType = z.lazy(__makeSchema_UserCreateOrConnectWithoutAuditLogsInput_schema) as unknown as z.ZodType; -export const UserCreateOrConnectWithoutAuditLogsInputObjectZodSchema = z.lazy(__makeSchema_UserCreateOrConnectWithoutAuditLogsInput_schema); - - -// File: UserUpsertWithoutAuditLogsInput.schema.ts -const __makeSchema_UserUpsertWithoutAuditLogsInput_schema = () => z.object({ - update: z.union([UserUpdateWithoutAuditLogsInputObjectSchema, UserUncheckedUpdateWithoutAuditLogsInputObjectSchema]), - create: z.union([UserCreateWithoutAuditLogsInputObjectSchema, UserUncheckedCreateWithoutAuditLogsInputObjectSchema]), - get where(){ return UserWhereInputObjectSchema.optional(); } -}).strict(); -export const UserUpsertWithoutAuditLogsInputObjectSchema: z.ZodType = z.lazy(__makeSchema_UserUpsertWithoutAuditLogsInput_schema) as unknown as z.ZodType; -export const UserUpsertWithoutAuditLogsInputObjectZodSchema = z.lazy(__makeSchema_UserUpsertWithoutAuditLogsInput_schema); - - -// File: UserUpdateToOneWithWhereWithoutAuditLogsInput.schema.ts -const __makeSchema_UserUpdateToOneWithWhereWithoutAuditLogsInput_schema = () => z.object({ - get where(){ return UserWhereInputObjectSchema.optional(); }, - data: z.union([UserUpdateWithoutAuditLogsInputObjectSchema, UserUncheckedUpdateWithoutAuditLogsInputObjectSchema]) -}).strict(); -export const UserUpdateToOneWithWhereWithoutAuditLogsInputObjectSchema: z.ZodType = z.lazy(__makeSchema_UserUpdateToOneWithWhereWithoutAuditLogsInput_schema) as unknown as z.ZodType; -export const UserUpdateToOneWithWhereWithoutAuditLogsInputObjectZodSchema = z.lazy(__makeSchema_UserUpdateToOneWithWhereWithoutAuditLogsInput_schema); - - -// File: UserUpdateWithoutAuditLogsInput.schema.ts -const __makeSchema_UserUpdateWithoutAuditLogsInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - username: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - name: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - email: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - imageUrl: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - biography: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - phone: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - gender: z.union([GenderSchema, EnumGenderFieldUpdateOperationsInputObjectSchema]).optional(), - dietaryRestrictions: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - ntnuUsername: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - flags: z.union([UserUpdateflagsInputObjectSchema, z.string().array()]).optional(), - workspaceUserId: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - createdAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - updatedAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - privacyPermissionsId: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - notificationPermissionsId: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - get privacyPermissions(){ return PrivacyPermissionsUpdateOneWithoutUserNestedInputObjectSchema.optional(); }, - get notificationPermissions(){ return NotificationPermissionsUpdateOneWithoutUserNestedInputObjectSchema.optional(); }, - get attendee(){ return AttendeeUpdateManyWithoutUserNestedInputObjectSchema.optional(); }, - get personalMark(){ return PersonalMarkUpdateManyWithoutUserNestedInputObjectSchema.optional(); }, - get groupMemberships(){ return GroupMembershipUpdateManyWithoutUserNestedInputObjectSchema.optional(); }, - get memberships(){ return MembershipUpdateManyWithoutUserNestedInputObjectSchema.optional(); }, - get givenMarks(){ return PersonalMarkUpdateManyWithoutGivenByNestedInputObjectSchema.optional(); }, - get attendeesRefunded(){ return AttendeeUpdateManyWithoutPaymentRefundedByNestedInputObjectSchema.optional(); }, - get deregisterReasons(){ return DeregisterReasonUpdateManyWithoutUserNestedInputObjectSchema.optional(); }, - get notificationsReceived(){ return NotificationRecipientUpdateManyWithoutUserNestedInputObjectSchema.optional(); }, - get notificationsCreated(){ return NotificationUpdateManyWithoutCreatedByNestedInputObjectSchema.optional(); }, - get notificationsUpdated(){ return NotificationUpdateManyWithoutLastUpdatedByNestedInputObjectSchema.optional(); }, - get contestants(){ return ContestantUpdateManyWithoutUserNestedInputObjectSchema.optional(); }, - get contestTeams(){ return ContestTeamUpdateManyWithoutMembersNestedInputObjectSchema.optional(); } -}).strict(); -export const UserUpdateWithoutAuditLogsInputObjectSchema: z.ZodType = z.lazy(__makeSchema_UserUpdateWithoutAuditLogsInput_schema) as unknown as z.ZodType; -export const UserUpdateWithoutAuditLogsInputObjectZodSchema = z.lazy(__makeSchema_UserUpdateWithoutAuditLogsInput_schema); - - -// File: UserUncheckedUpdateWithoutAuditLogsInput.schema.ts -const __makeSchema_UserUncheckedUpdateWithoutAuditLogsInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - username: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - name: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - email: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - imageUrl: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - biography: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - phone: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - gender: z.union([GenderSchema, EnumGenderFieldUpdateOperationsInputObjectSchema]).optional(), - dietaryRestrictions: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - ntnuUsername: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - flags: z.union([UserUpdateflagsInputObjectSchema, z.string().array()]).optional(), - workspaceUserId: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - createdAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - updatedAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - privacyPermissionsId: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - notificationPermissionsId: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - get privacyPermissions(){ return PrivacyPermissionsUncheckedUpdateOneWithoutUserNestedInputObjectSchema.optional(); }, - get notificationPermissions(){ return NotificationPermissionsUncheckedUpdateOneWithoutUserNestedInputObjectSchema.optional(); }, - get attendee(){ return AttendeeUncheckedUpdateManyWithoutUserNestedInputObjectSchema.optional(); }, - get personalMark(){ return PersonalMarkUncheckedUpdateManyWithoutUserNestedInputObjectSchema.optional(); }, - get groupMemberships(){ return GroupMembershipUncheckedUpdateManyWithoutUserNestedInputObjectSchema.optional(); }, - get memberships(){ return MembershipUncheckedUpdateManyWithoutUserNestedInputObjectSchema.optional(); }, - get givenMarks(){ return PersonalMarkUncheckedUpdateManyWithoutGivenByNestedInputObjectSchema.optional(); }, - get attendeesRefunded(){ return AttendeeUncheckedUpdateManyWithoutPaymentRefundedByNestedInputObjectSchema.optional(); }, - get deregisterReasons(){ return DeregisterReasonUncheckedUpdateManyWithoutUserNestedInputObjectSchema.optional(); }, - get notificationsReceived(){ return NotificationRecipientUncheckedUpdateManyWithoutUserNestedInputObjectSchema.optional(); }, - get notificationsCreated(){ return NotificationUncheckedUpdateManyWithoutCreatedByNestedInputObjectSchema.optional(); }, - get notificationsUpdated(){ return NotificationUncheckedUpdateManyWithoutLastUpdatedByNestedInputObjectSchema.optional(); }, - get contestants(){ return ContestantUncheckedUpdateManyWithoutUserNestedInputObjectSchema.optional(); }, - get contestTeams(){ return ContestTeamUncheckedUpdateManyWithoutMembersNestedInputObjectSchema.optional(); } -}).strict(); -export const UserUncheckedUpdateWithoutAuditLogsInputObjectSchema: z.ZodType = z.lazy(__makeSchema_UserUncheckedUpdateWithoutAuditLogsInput_schema) as unknown as z.ZodType; -export const UserUncheckedUpdateWithoutAuditLogsInputObjectZodSchema = z.lazy(__makeSchema_UserUncheckedUpdateWithoutAuditLogsInput_schema); - - -// File: UserCreateWithoutDeregisterReasonsInput.schema.ts -const __makeSchema_UserCreateWithoutDeregisterReasonsInput_schema = () => z.object({ - id: z.string(), - username: z.string(), - name: z.string().optional().nullable(), - email: z.string().optional().nullable(), - imageUrl: z.string().optional().nullable(), - biography: z.string().optional().nullable(), - phone: z.string().optional().nullable(), - gender: GenderSchema.optional(), - dietaryRestrictions: z.string().optional().nullable(), - ntnuUsername: z.string().optional().nullable(), - flags: z.union([UserCreateflagsInputObjectSchema, z.string().array()]).optional(), - workspaceUserId: z.string().optional().nullable(), - createdAt: z.coerce.date().optional(), - updatedAt: z.coerce.date().optional(), - privacyPermissionsId: z.string().optional().nullable(), - notificationPermissionsId: z.string().optional().nullable(), - get privacyPermissions(){ return PrivacyPermissionsCreateNestedOneWithoutUserInputObjectSchema.optional(); }, - get notificationPermissions(){ return NotificationPermissionsCreateNestedOneWithoutUserInputObjectSchema.optional(); }, - get attendee(){ return AttendeeCreateNestedManyWithoutUserInputObjectSchema.optional(); }, - get personalMark(){ return PersonalMarkCreateNestedManyWithoutUserInputObjectSchema.optional(); }, - get groupMemberships(){ return GroupMembershipCreateNestedManyWithoutUserInputObjectSchema.optional(); }, - get memberships(){ return MembershipCreateNestedManyWithoutUserInputObjectSchema.optional(); }, - get givenMarks(){ return PersonalMarkCreateNestedManyWithoutGivenByInputObjectSchema.optional(); }, - get attendeesRefunded(){ return AttendeeCreateNestedManyWithoutPaymentRefundedByInputObjectSchema.optional(); }, - get auditLogs(){ return AuditLogCreateNestedManyWithoutUserInputObjectSchema.optional(); }, - get notificationsReceived(){ return NotificationRecipientCreateNestedManyWithoutUserInputObjectSchema.optional(); }, - get notificationsCreated(){ return NotificationCreateNestedManyWithoutCreatedByInputObjectSchema.optional(); }, - get notificationsUpdated(){ return NotificationCreateNestedManyWithoutLastUpdatedByInputObjectSchema.optional(); }, - get contestants(){ return ContestantCreateNestedManyWithoutUserInputObjectSchema.optional(); }, - get contestTeams(){ return ContestTeamCreateNestedManyWithoutMembersInputObjectSchema.optional(); } -}).strict(); -export const UserCreateWithoutDeregisterReasonsInputObjectSchema: z.ZodType = z.lazy(__makeSchema_UserCreateWithoutDeregisterReasonsInput_schema) as unknown as z.ZodType; -export const UserCreateWithoutDeregisterReasonsInputObjectZodSchema = z.lazy(__makeSchema_UserCreateWithoutDeregisterReasonsInput_schema); - - -// File: UserUncheckedCreateWithoutDeregisterReasonsInput.schema.ts -const __makeSchema_UserUncheckedCreateWithoutDeregisterReasonsInput_schema = () => z.object({ - id: z.string(), - username: z.string(), - name: z.string().optional().nullable(), - email: z.string().optional().nullable(), - imageUrl: z.string().optional().nullable(), - biography: z.string().optional().nullable(), - phone: z.string().optional().nullable(), - gender: GenderSchema.optional(), - dietaryRestrictions: z.string().optional().nullable(), - ntnuUsername: z.string().optional().nullable(), - flags: z.union([UserCreateflagsInputObjectSchema, z.string().array()]).optional(), - workspaceUserId: z.string().optional().nullable(), - createdAt: z.coerce.date().optional(), - updatedAt: z.coerce.date().optional(), - privacyPermissionsId: z.string().optional().nullable(), - notificationPermissionsId: z.string().optional().nullable(), - get privacyPermissions(){ return PrivacyPermissionsUncheckedCreateNestedOneWithoutUserInputObjectSchema.optional(); }, - get notificationPermissions(){ return NotificationPermissionsUncheckedCreateNestedOneWithoutUserInputObjectSchema.optional(); }, - get attendee(){ return AttendeeUncheckedCreateNestedManyWithoutUserInputObjectSchema.optional(); }, - get personalMark(){ return PersonalMarkUncheckedCreateNestedManyWithoutUserInputObjectSchema.optional(); }, - get groupMemberships(){ return GroupMembershipUncheckedCreateNestedManyWithoutUserInputObjectSchema.optional(); }, - get memberships(){ return MembershipUncheckedCreateNestedManyWithoutUserInputObjectSchema.optional(); }, - get givenMarks(){ return PersonalMarkUncheckedCreateNestedManyWithoutGivenByInputObjectSchema.optional(); }, - get attendeesRefunded(){ return AttendeeUncheckedCreateNestedManyWithoutPaymentRefundedByInputObjectSchema.optional(); }, - get auditLogs(){ return AuditLogUncheckedCreateNestedManyWithoutUserInputObjectSchema.optional(); }, - get notificationsReceived(){ return NotificationRecipientUncheckedCreateNestedManyWithoutUserInputObjectSchema.optional(); }, - get notificationsCreated(){ return NotificationUncheckedCreateNestedManyWithoutCreatedByInputObjectSchema.optional(); }, - get notificationsUpdated(){ return NotificationUncheckedCreateNestedManyWithoutLastUpdatedByInputObjectSchema.optional(); }, - get contestants(){ return ContestantUncheckedCreateNestedManyWithoutUserInputObjectSchema.optional(); }, - get contestTeams(){ return ContestTeamUncheckedCreateNestedManyWithoutMembersInputObjectSchema.optional(); } -}).strict(); -export const UserUncheckedCreateWithoutDeregisterReasonsInputObjectSchema: z.ZodType = z.lazy(__makeSchema_UserUncheckedCreateWithoutDeregisterReasonsInput_schema) as unknown as z.ZodType; -export const UserUncheckedCreateWithoutDeregisterReasonsInputObjectZodSchema = z.lazy(__makeSchema_UserUncheckedCreateWithoutDeregisterReasonsInput_schema); - - -// File: UserCreateOrConnectWithoutDeregisterReasonsInput.schema.ts -const __makeSchema_UserCreateOrConnectWithoutDeregisterReasonsInput_schema = () => z.object({ - get where(){ return UserWhereUniqueInputObjectSchema; }, - create: z.union([UserCreateWithoutDeregisterReasonsInputObjectSchema, UserUncheckedCreateWithoutDeregisterReasonsInputObjectSchema]) -}).strict(); -export const UserCreateOrConnectWithoutDeregisterReasonsInputObjectSchema: z.ZodType = z.lazy(__makeSchema_UserCreateOrConnectWithoutDeregisterReasonsInput_schema) as unknown as z.ZodType; -export const UserCreateOrConnectWithoutDeregisterReasonsInputObjectZodSchema = z.lazy(__makeSchema_UserCreateOrConnectWithoutDeregisterReasonsInput_schema); - - -// File: EventCreateWithoutDeregisterReasonsInput.schema.ts -const __makeSchema_EventCreateWithoutDeregisterReasonsInput_schema = () => z.object({ - id: z.string().optional(), - title: z.string(), - start: z.coerce.date(), - end: z.coerce.date(), - status: EventStatusSchema, - description: z.string(), - shortDescription: z.string().optional().nullable(), - imageUrl: z.string().optional().nullable(), - locationTitle: z.string().optional().nullable(), - locationAddress: z.string().optional().nullable(), - locationLink: z.string().optional().nullable(), - type: EventTypeSchema, - markForMissedAttendance: z.boolean().optional(), - createdAt: z.coerce.date().optional(), - updatedAt: z.coerce.date().optional(), - metadataImportId: z.number().int().optional().nullable(), - get feedbackForm(){ return FeedbackFormCreateNestedOneWithoutEventInputObjectSchema.optional(); }, - get fadderuke(){ return FadderukeCreateNestedOneWithoutEventInputObjectSchema.optional(); }, - get attendance(){ return AttendanceCreateNestedOneWithoutEventsInputObjectSchema.optional(); }, - get parent(){ return EventCreateNestedOneWithoutChildrenInputObjectSchema.optional(); }, - get children(){ return EventCreateNestedManyWithoutParentInputObjectSchema.optional(); }, - get contest(){ return ContestCreateNestedOneWithoutEventsInputObjectSchema.optional(); }, - get companies(){ return EventCompanyCreateNestedManyWithoutEventInputObjectSchema.optional(); }, - get hostingGroups(){ return EventHostingGroupCreateNestedManyWithoutEventInputObjectSchema.optional(); } -}).strict(); -export const EventCreateWithoutDeregisterReasonsInputObjectSchema: z.ZodType = z.lazy(__makeSchema_EventCreateWithoutDeregisterReasonsInput_schema) as unknown as z.ZodType; -export const EventCreateWithoutDeregisterReasonsInputObjectZodSchema = z.lazy(__makeSchema_EventCreateWithoutDeregisterReasonsInput_schema); - - -// File: EventUncheckedCreateWithoutDeregisterReasonsInput.schema.ts -const __makeSchema_EventUncheckedCreateWithoutDeregisterReasonsInput_schema = () => z.object({ - id: z.string().optional(), - title: z.string(), - start: z.coerce.date(), - end: z.coerce.date(), - status: EventStatusSchema, - description: z.string(), - shortDescription: z.string().optional().nullable(), - imageUrl: z.string().optional().nullable(), - locationTitle: z.string().optional().nullable(), - locationAddress: z.string().optional().nullable(), - locationLink: z.string().optional().nullable(), - type: EventTypeSchema, - markForMissedAttendance: z.boolean().optional(), - createdAt: z.coerce.date().optional(), - updatedAt: z.coerce.date().optional(), - attendanceId: z.string().optional().nullable(), - parentId: z.string().optional().nullable(), - contestId: z.string().optional().nullable(), - metadataImportId: z.number().int().optional().nullable(), - get feedbackForm(){ return FeedbackFormUncheckedCreateNestedOneWithoutEventInputObjectSchema.optional(); }, - get fadderuke(){ return FadderukeUncheckedCreateNestedOneWithoutEventInputObjectSchema.optional(); }, - get children(){ return EventUncheckedCreateNestedManyWithoutParentInputObjectSchema.optional(); }, - get companies(){ return EventCompanyUncheckedCreateNestedManyWithoutEventInputObjectSchema.optional(); }, - get hostingGroups(){ return EventHostingGroupUncheckedCreateNestedManyWithoutEventInputObjectSchema.optional(); } -}).strict(); -export const EventUncheckedCreateWithoutDeregisterReasonsInputObjectSchema: z.ZodType = z.lazy(__makeSchema_EventUncheckedCreateWithoutDeregisterReasonsInput_schema) as unknown as z.ZodType; -export const EventUncheckedCreateWithoutDeregisterReasonsInputObjectZodSchema = z.lazy(__makeSchema_EventUncheckedCreateWithoutDeregisterReasonsInput_schema); - - -// File: EventCreateOrConnectWithoutDeregisterReasonsInput.schema.ts -const __makeSchema_EventCreateOrConnectWithoutDeregisterReasonsInput_schema = () => z.object({ - get where(){ return EventWhereUniqueInputObjectSchema; }, - create: z.union([EventCreateWithoutDeregisterReasonsInputObjectSchema, EventUncheckedCreateWithoutDeregisterReasonsInputObjectSchema]) -}).strict(); -export const EventCreateOrConnectWithoutDeregisterReasonsInputObjectSchema: z.ZodType = z.lazy(__makeSchema_EventCreateOrConnectWithoutDeregisterReasonsInput_schema) as unknown as z.ZodType; -export const EventCreateOrConnectWithoutDeregisterReasonsInputObjectZodSchema = z.lazy(__makeSchema_EventCreateOrConnectWithoutDeregisterReasonsInput_schema); - - -// File: UserUpsertWithoutDeregisterReasonsInput.schema.ts -const __makeSchema_UserUpsertWithoutDeregisterReasonsInput_schema = () => z.object({ - update: z.union([UserUpdateWithoutDeregisterReasonsInputObjectSchema, UserUncheckedUpdateWithoutDeregisterReasonsInputObjectSchema]), - create: z.union([UserCreateWithoutDeregisterReasonsInputObjectSchema, UserUncheckedCreateWithoutDeregisterReasonsInputObjectSchema]), - get where(){ return UserWhereInputObjectSchema.optional(); } -}).strict(); -export const UserUpsertWithoutDeregisterReasonsInputObjectSchema: z.ZodType = z.lazy(__makeSchema_UserUpsertWithoutDeregisterReasonsInput_schema) as unknown as z.ZodType; -export const UserUpsertWithoutDeregisterReasonsInputObjectZodSchema = z.lazy(__makeSchema_UserUpsertWithoutDeregisterReasonsInput_schema); - - -// File: UserUpdateToOneWithWhereWithoutDeregisterReasonsInput.schema.ts -const __makeSchema_UserUpdateToOneWithWhereWithoutDeregisterReasonsInput_schema = () => z.object({ - get where(){ return UserWhereInputObjectSchema.optional(); }, - data: z.union([UserUpdateWithoutDeregisterReasonsInputObjectSchema, UserUncheckedUpdateWithoutDeregisterReasonsInputObjectSchema]) -}).strict(); -export const UserUpdateToOneWithWhereWithoutDeregisterReasonsInputObjectSchema: z.ZodType = z.lazy(__makeSchema_UserUpdateToOneWithWhereWithoutDeregisterReasonsInput_schema) as unknown as z.ZodType; -export const UserUpdateToOneWithWhereWithoutDeregisterReasonsInputObjectZodSchema = z.lazy(__makeSchema_UserUpdateToOneWithWhereWithoutDeregisterReasonsInput_schema); - - -// File: UserUpdateWithoutDeregisterReasonsInput.schema.ts -const __makeSchema_UserUpdateWithoutDeregisterReasonsInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - username: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - name: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - email: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - imageUrl: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - biography: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - phone: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - gender: z.union([GenderSchema, EnumGenderFieldUpdateOperationsInputObjectSchema]).optional(), - dietaryRestrictions: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - ntnuUsername: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - flags: z.union([UserUpdateflagsInputObjectSchema, z.string().array()]).optional(), - workspaceUserId: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - createdAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - updatedAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - privacyPermissionsId: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - notificationPermissionsId: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - get privacyPermissions(){ return PrivacyPermissionsUpdateOneWithoutUserNestedInputObjectSchema.optional(); }, - get notificationPermissions(){ return NotificationPermissionsUpdateOneWithoutUserNestedInputObjectSchema.optional(); }, - get attendee(){ return AttendeeUpdateManyWithoutUserNestedInputObjectSchema.optional(); }, - get personalMark(){ return PersonalMarkUpdateManyWithoutUserNestedInputObjectSchema.optional(); }, - get groupMemberships(){ return GroupMembershipUpdateManyWithoutUserNestedInputObjectSchema.optional(); }, - get memberships(){ return MembershipUpdateManyWithoutUserNestedInputObjectSchema.optional(); }, - get givenMarks(){ return PersonalMarkUpdateManyWithoutGivenByNestedInputObjectSchema.optional(); }, - get attendeesRefunded(){ return AttendeeUpdateManyWithoutPaymentRefundedByNestedInputObjectSchema.optional(); }, - get auditLogs(){ return AuditLogUpdateManyWithoutUserNestedInputObjectSchema.optional(); }, - get notificationsReceived(){ return NotificationRecipientUpdateManyWithoutUserNestedInputObjectSchema.optional(); }, - get notificationsCreated(){ return NotificationUpdateManyWithoutCreatedByNestedInputObjectSchema.optional(); }, - get notificationsUpdated(){ return NotificationUpdateManyWithoutLastUpdatedByNestedInputObjectSchema.optional(); }, - get contestants(){ return ContestantUpdateManyWithoutUserNestedInputObjectSchema.optional(); }, - get contestTeams(){ return ContestTeamUpdateManyWithoutMembersNestedInputObjectSchema.optional(); } -}).strict(); -export const UserUpdateWithoutDeregisterReasonsInputObjectSchema: z.ZodType = z.lazy(__makeSchema_UserUpdateWithoutDeregisterReasonsInput_schema) as unknown as z.ZodType; -export const UserUpdateWithoutDeregisterReasonsInputObjectZodSchema = z.lazy(__makeSchema_UserUpdateWithoutDeregisterReasonsInput_schema); - - -// File: UserUncheckedUpdateWithoutDeregisterReasonsInput.schema.ts -const __makeSchema_UserUncheckedUpdateWithoutDeregisterReasonsInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - username: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - name: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - email: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - imageUrl: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - biography: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - phone: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - gender: z.union([GenderSchema, EnumGenderFieldUpdateOperationsInputObjectSchema]).optional(), - dietaryRestrictions: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - ntnuUsername: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - flags: z.union([UserUpdateflagsInputObjectSchema, z.string().array()]).optional(), - workspaceUserId: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - createdAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - updatedAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - privacyPermissionsId: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - notificationPermissionsId: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - get privacyPermissions(){ return PrivacyPermissionsUncheckedUpdateOneWithoutUserNestedInputObjectSchema.optional(); }, - get notificationPermissions(){ return NotificationPermissionsUncheckedUpdateOneWithoutUserNestedInputObjectSchema.optional(); }, - get attendee(){ return AttendeeUncheckedUpdateManyWithoutUserNestedInputObjectSchema.optional(); }, - get personalMark(){ return PersonalMarkUncheckedUpdateManyWithoutUserNestedInputObjectSchema.optional(); }, - get groupMemberships(){ return GroupMembershipUncheckedUpdateManyWithoutUserNestedInputObjectSchema.optional(); }, - get memberships(){ return MembershipUncheckedUpdateManyWithoutUserNestedInputObjectSchema.optional(); }, - get givenMarks(){ return PersonalMarkUncheckedUpdateManyWithoutGivenByNestedInputObjectSchema.optional(); }, - get attendeesRefunded(){ return AttendeeUncheckedUpdateManyWithoutPaymentRefundedByNestedInputObjectSchema.optional(); }, - get auditLogs(){ return AuditLogUncheckedUpdateManyWithoutUserNestedInputObjectSchema.optional(); }, - get notificationsReceived(){ return NotificationRecipientUncheckedUpdateManyWithoutUserNestedInputObjectSchema.optional(); }, - get notificationsCreated(){ return NotificationUncheckedUpdateManyWithoutCreatedByNestedInputObjectSchema.optional(); }, - get notificationsUpdated(){ return NotificationUncheckedUpdateManyWithoutLastUpdatedByNestedInputObjectSchema.optional(); }, - get contestants(){ return ContestantUncheckedUpdateManyWithoutUserNestedInputObjectSchema.optional(); }, - get contestTeams(){ return ContestTeamUncheckedUpdateManyWithoutMembersNestedInputObjectSchema.optional(); } -}).strict(); -export const UserUncheckedUpdateWithoutDeregisterReasonsInputObjectSchema: z.ZodType = z.lazy(__makeSchema_UserUncheckedUpdateWithoutDeregisterReasonsInput_schema) as unknown as z.ZodType; -export const UserUncheckedUpdateWithoutDeregisterReasonsInputObjectZodSchema = z.lazy(__makeSchema_UserUncheckedUpdateWithoutDeregisterReasonsInput_schema); - - -// File: EventUpsertWithoutDeregisterReasonsInput.schema.ts -const __makeSchema_EventUpsertWithoutDeregisterReasonsInput_schema = () => z.object({ - update: z.union([EventUpdateWithoutDeregisterReasonsInputObjectSchema, EventUncheckedUpdateWithoutDeregisterReasonsInputObjectSchema]), - create: z.union([EventCreateWithoutDeregisterReasonsInputObjectSchema, EventUncheckedCreateWithoutDeregisterReasonsInputObjectSchema]), - get where(){ return EventWhereInputObjectSchema.optional(); } -}).strict(); -export const EventUpsertWithoutDeregisterReasonsInputObjectSchema: z.ZodType = z.lazy(__makeSchema_EventUpsertWithoutDeregisterReasonsInput_schema) as unknown as z.ZodType; -export const EventUpsertWithoutDeregisterReasonsInputObjectZodSchema = z.lazy(__makeSchema_EventUpsertWithoutDeregisterReasonsInput_schema); - - -// File: EventUpdateToOneWithWhereWithoutDeregisterReasonsInput.schema.ts -const __makeSchema_EventUpdateToOneWithWhereWithoutDeregisterReasonsInput_schema = () => z.object({ - get where(){ return EventWhereInputObjectSchema.optional(); }, - data: z.union([EventUpdateWithoutDeregisterReasonsInputObjectSchema, EventUncheckedUpdateWithoutDeregisterReasonsInputObjectSchema]) -}).strict(); -export const EventUpdateToOneWithWhereWithoutDeregisterReasonsInputObjectSchema: z.ZodType = z.lazy(__makeSchema_EventUpdateToOneWithWhereWithoutDeregisterReasonsInput_schema) as unknown as z.ZodType; -export const EventUpdateToOneWithWhereWithoutDeregisterReasonsInputObjectZodSchema = z.lazy(__makeSchema_EventUpdateToOneWithWhereWithoutDeregisterReasonsInput_schema); - - -// File: EventUpdateWithoutDeregisterReasonsInput.schema.ts -const __makeSchema_EventUpdateWithoutDeregisterReasonsInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - title: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - start: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - end: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - status: z.union([EventStatusSchema, EnumEventStatusFieldUpdateOperationsInputObjectSchema]).optional(), - description: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - shortDescription: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - imageUrl: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - locationTitle: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - locationAddress: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - locationLink: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - type: z.union([EventTypeSchema, EnumEventTypeFieldUpdateOperationsInputObjectSchema]).optional(), - markForMissedAttendance: z.union([z.boolean(), BoolFieldUpdateOperationsInputObjectSchema]).optional(), - createdAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - updatedAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - metadataImportId: z.union([z.number().int(), NullableIntFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - get feedbackForm(){ return FeedbackFormUpdateOneWithoutEventNestedInputObjectSchema.optional(); }, - get fadderuke(){ return FadderukeUpdateOneWithoutEventNestedInputObjectSchema.optional(); }, - get attendance(){ return AttendanceUpdateOneWithoutEventsNestedInputObjectSchema.optional(); }, - get parent(){ return EventUpdateOneWithoutChildrenNestedInputObjectSchema.optional(); }, - get children(){ return EventUpdateManyWithoutParentNestedInputObjectSchema.optional(); }, - get contest(){ return ContestUpdateOneWithoutEventsNestedInputObjectSchema.optional(); }, - get companies(){ return EventCompanyUpdateManyWithoutEventNestedInputObjectSchema.optional(); }, - get hostingGroups(){ return EventHostingGroupUpdateManyWithoutEventNestedInputObjectSchema.optional(); } -}).strict(); -export const EventUpdateWithoutDeregisterReasonsInputObjectSchema: z.ZodType = z.lazy(__makeSchema_EventUpdateWithoutDeregisterReasonsInput_schema) as unknown as z.ZodType; -export const EventUpdateWithoutDeregisterReasonsInputObjectZodSchema = z.lazy(__makeSchema_EventUpdateWithoutDeregisterReasonsInput_schema); - - -// File: EventUncheckedUpdateWithoutDeregisterReasonsInput.schema.ts -const __makeSchema_EventUncheckedUpdateWithoutDeregisterReasonsInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - title: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - start: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - end: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - status: z.union([EventStatusSchema, EnumEventStatusFieldUpdateOperationsInputObjectSchema]).optional(), - description: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - shortDescription: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - imageUrl: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - locationTitle: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - locationAddress: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - locationLink: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - type: z.union([EventTypeSchema, EnumEventTypeFieldUpdateOperationsInputObjectSchema]).optional(), - markForMissedAttendance: z.union([z.boolean(), BoolFieldUpdateOperationsInputObjectSchema]).optional(), - createdAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - updatedAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - attendanceId: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - parentId: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - contestId: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - metadataImportId: z.union([z.number().int(), NullableIntFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - get feedbackForm(){ return FeedbackFormUncheckedUpdateOneWithoutEventNestedInputObjectSchema.optional(); }, - get fadderuke(){ return FadderukeUncheckedUpdateOneWithoutEventNestedInputObjectSchema.optional(); }, - get children(){ return EventUncheckedUpdateManyWithoutParentNestedInputObjectSchema.optional(); }, - get companies(){ return EventCompanyUncheckedUpdateManyWithoutEventNestedInputObjectSchema.optional(); }, - get hostingGroups(){ return EventHostingGroupUncheckedUpdateManyWithoutEventNestedInputObjectSchema.optional(); } -}).strict(); -export const EventUncheckedUpdateWithoutDeregisterReasonsInputObjectSchema: z.ZodType = z.lazy(__makeSchema_EventUncheckedUpdateWithoutDeregisterReasonsInput_schema) as unknown as z.ZodType; -export const EventUncheckedUpdateWithoutDeregisterReasonsInputObjectZodSchema = z.lazy(__makeSchema_EventUncheckedUpdateWithoutDeregisterReasonsInput_schema); - - -// File: NotificationCreateWithoutRecipientsInput.schema.ts -const __makeSchema_NotificationCreateWithoutRecipientsInput_schema = () => z.object({ - id: z.string().optional(), - createdAt: z.coerce.date().optional(), - updatedAt: z.coerce.date().optional(), - title: z.string(), - shortDescription: z.string().optional().nullable(), - content: z.string(), - type: NotificationTypeSchema, - payload: z.string().optional().nullable(), - payloadType: NotificationPayloadTypeSchema, - get actorGroup(){ return GroupCreateNestedOneWithoutNotificationsInputObjectSchema; }, - get createdBy(){ return UserCreateNestedOneWithoutNotificationsCreatedInputObjectSchema.optional(); }, - get lastUpdatedBy(){ return UserCreateNestedOneWithoutNotificationsUpdatedInputObjectSchema.optional(); }, - get task(){ return TaskCreateNestedOneWithoutNotificationsInputObjectSchema.optional(); } -}).strict(); -export const NotificationCreateWithoutRecipientsInputObjectSchema: z.ZodType = z.lazy(__makeSchema_NotificationCreateWithoutRecipientsInput_schema) as unknown as z.ZodType; -export const NotificationCreateWithoutRecipientsInputObjectZodSchema = z.lazy(__makeSchema_NotificationCreateWithoutRecipientsInput_schema); - - -// File: NotificationUncheckedCreateWithoutRecipientsInput.schema.ts -const __makeSchema_NotificationUncheckedCreateWithoutRecipientsInput_schema = () => z.object({ - id: z.string().optional(), - createdAt: z.coerce.date().optional(), - updatedAt: z.coerce.date().optional(), - title: z.string(), - shortDescription: z.string().optional().nullable(), - content: z.string(), - type: NotificationTypeSchema, - payload: z.string().optional().nullable(), - payloadType: NotificationPayloadTypeSchema, - actorGroupId: z.string(), - createdById: z.string().optional().nullable(), - lastUpdatedById: z.string().optional().nullable(), - taskId: z.string().optional().nullable() -}).strict(); -export const NotificationUncheckedCreateWithoutRecipientsInputObjectSchema: z.ZodType = z.lazy(__makeSchema_NotificationUncheckedCreateWithoutRecipientsInput_schema) as unknown as z.ZodType; -export const NotificationUncheckedCreateWithoutRecipientsInputObjectZodSchema = z.lazy(__makeSchema_NotificationUncheckedCreateWithoutRecipientsInput_schema); - - -// File: NotificationCreateOrConnectWithoutRecipientsInput.schema.ts -const __makeSchema_NotificationCreateOrConnectWithoutRecipientsInput_schema = () => z.object({ - get where(){ return NotificationWhereUniqueInputObjectSchema; }, - create: z.union([NotificationCreateWithoutRecipientsInputObjectSchema, NotificationUncheckedCreateWithoutRecipientsInputObjectSchema]) -}).strict(); -export const NotificationCreateOrConnectWithoutRecipientsInputObjectSchema: z.ZodType = z.lazy(__makeSchema_NotificationCreateOrConnectWithoutRecipientsInput_schema) as unknown as z.ZodType; -export const NotificationCreateOrConnectWithoutRecipientsInputObjectZodSchema = z.lazy(__makeSchema_NotificationCreateOrConnectWithoutRecipientsInput_schema); - - -// File: UserCreateWithoutNotificationsReceivedInput.schema.ts -const __makeSchema_UserCreateWithoutNotificationsReceivedInput_schema = () => z.object({ - id: z.string(), - username: z.string(), - name: z.string().optional().nullable(), - email: z.string().optional().nullable(), - imageUrl: z.string().optional().nullable(), - biography: z.string().optional().nullable(), - phone: z.string().optional().nullable(), - gender: GenderSchema.optional(), - dietaryRestrictions: z.string().optional().nullable(), - ntnuUsername: z.string().optional().nullable(), - flags: z.union([UserCreateflagsInputObjectSchema, z.string().array()]).optional(), - workspaceUserId: z.string().optional().nullable(), - createdAt: z.coerce.date().optional(), - updatedAt: z.coerce.date().optional(), - privacyPermissionsId: z.string().optional().nullable(), - notificationPermissionsId: z.string().optional().nullable(), - get privacyPermissions(){ return PrivacyPermissionsCreateNestedOneWithoutUserInputObjectSchema.optional(); }, - get notificationPermissions(){ return NotificationPermissionsCreateNestedOneWithoutUserInputObjectSchema.optional(); }, - get attendee(){ return AttendeeCreateNestedManyWithoutUserInputObjectSchema.optional(); }, - get personalMark(){ return PersonalMarkCreateNestedManyWithoutUserInputObjectSchema.optional(); }, - get groupMemberships(){ return GroupMembershipCreateNestedManyWithoutUserInputObjectSchema.optional(); }, - get memberships(){ return MembershipCreateNestedManyWithoutUserInputObjectSchema.optional(); }, - get givenMarks(){ return PersonalMarkCreateNestedManyWithoutGivenByInputObjectSchema.optional(); }, - get attendeesRefunded(){ return AttendeeCreateNestedManyWithoutPaymentRefundedByInputObjectSchema.optional(); }, - get auditLogs(){ return AuditLogCreateNestedManyWithoutUserInputObjectSchema.optional(); }, - get deregisterReasons(){ return DeregisterReasonCreateNestedManyWithoutUserInputObjectSchema.optional(); }, - get notificationsCreated(){ return NotificationCreateNestedManyWithoutCreatedByInputObjectSchema.optional(); }, - get notificationsUpdated(){ return NotificationCreateNestedManyWithoutLastUpdatedByInputObjectSchema.optional(); }, - get contestants(){ return ContestantCreateNestedManyWithoutUserInputObjectSchema.optional(); }, - get contestTeams(){ return ContestTeamCreateNestedManyWithoutMembersInputObjectSchema.optional(); } -}).strict(); -export const UserCreateWithoutNotificationsReceivedInputObjectSchema: z.ZodType = z.lazy(__makeSchema_UserCreateWithoutNotificationsReceivedInput_schema) as unknown as z.ZodType; -export const UserCreateWithoutNotificationsReceivedInputObjectZodSchema = z.lazy(__makeSchema_UserCreateWithoutNotificationsReceivedInput_schema); - - -// File: UserUncheckedCreateWithoutNotificationsReceivedInput.schema.ts -const __makeSchema_UserUncheckedCreateWithoutNotificationsReceivedInput_schema = () => z.object({ - id: z.string(), - username: z.string(), - name: z.string().optional().nullable(), - email: z.string().optional().nullable(), - imageUrl: z.string().optional().nullable(), - biography: z.string().optional().nullable(), - phone: z.string().optional().nullable(), - gender: GenderSchema.optional(), - dietaryRestrictions: z.string().optional().nullable(), - ntnuUsername: z.string().optional().nullable(), - flags: z.union([UserCreateflagsInputObjectSchema, z.string().array()]).optional(), - workspaceUserId: z.string().optional().nullable(), - createdAt: z.coerce.date().optional(), - updatedAt: z.coerce.date().optional(), - privacyPermissionsId: z.string().optional().nullable(), - notificationPermissionsId: z.string().optional().nullable(), - get privacyPermissions(){ return PrivacyPermissionsUncheckedCreateNestedOneWithoutUserInputObjectSchema.optional(); }, - get notificationPermissions(){ return NotificationPermissionsUncheckedCreateNestedOneWithoutUserInputObjectSchema.optional(); }, - get attendee(){ return AttendeeUncheckedCreateNestedManyWithoutUserInputObjectSchema.optional(); }, - get personalMark(){ return PersonalMarkUncheckedCreateNestedManyWithoutUserInputObjectSchema.optional(); }, - get groupMemberships(){ return GroupMembershipUncheckedCreateNestedManyWithoutUserInputObjectSchema.optional(); }, - get memberships(){ return MembershipUncheckedCreateNestedManyWithoutUserInputObjectSchema.optional(); }, - get givenMarks(){ return PersonalMarkUncheckedCreateNestedManyWithoutGivenByInputObjectSchema.optional(); }, - get attendeesRefunded(){ return AttendeeUncheckedCreateNestedManyWithoutPaymentRefundedByInputObjectSchema.optional(); }, - get auditLogs(){ return AuditLogUncheckedCreateNestedManyWithoutUserInputObjectSchema.optional(); }, - get deregisterReasons(){ return DeregisterReasonUncheckedCreateNestedManyWithoutUserInputObjectSchema.optional(); }, - get notificationsCreated(){ return NotificationUncheckedCreateNestedManyWithoutCreatedByInputObjectSchema.optional(); }, - get notificationsUpdated(){ return NotificationUncheckedCreateNestedManyWithoutLastUpdatedByInputObjectSchema.optional(); }, - get contestants(){ return ContestantUncheckedCreateNestedManyWithoutUserInputObjectSchema.optional(); }, - get contestTeams(){ return ContestTeamUncheckedCreateNestedManyWithoutMembersInputObjectSchema.optional(); } -}).strict(); -export const UserUncheckedCreateWithoutNotificationsReceivedInputObjectSchema: z.ZodType = z.lazy(__makeSchema_UserUncheckedCreateWithoutNotificationsReceivedInput_schema) as unknown as z.ZodType; -export const UserUncheckedCreateWithoutNotificationsReceivedInputObjectZodSchema = z.lazy(__makeSchema_UserUncheckedCreateWithoutNotificationsReceivedInput_schema); - - -// File: UserCreateOrConnectWithoutNotificationsReceivedInput.schema.ts -const __makeSchema_UserCreateOrConnectWithoutNotificationsReceivedInput_schema = () => z.object({ - get where(){ return UserWhereUniqueInputObjectSchema; }, - create: z.union([UserCreateWithoutNotificationsReceivedInputObjectSchema, UserUncheckedCreateWithoutNotificationsReceivedInputObjectSchema]) -}).strict(); -export const UserCreateOrConnectWithoutNotificationsReceivedInputObjectSchema: z.ZodType = z.lazy(__makeSchema_UserCreateOrConnectWithoutNotificationsReceivedInput_schema) as unknown as z.ZodType; -export const UserCreateOrConnectWithoutNotificationsReceivedInputObjectZodSchema = z.lazy(__makeSchema_UserCreateOrConnectWithoutNotificationsReceivedInput_schema); - - -// File: NotificationUpsertWithoutRecipientsInput.schema.ts -const __makeSchema_NotificationUpsertWithoutRecipientsInput_schema = () => z.object({ - update: z.union([NotificationUpdateWithoutRecipientsInputObjectSchema, NotificationUncheckedUpdateWithoutRecipientsInputObjectSchema]), - create: z.union([NotificationCreateWithoutRecipientsInputObjectSchema, NotificationUncheckedCreateWithoutRecipientsInputObjectSchema]), - get where(){ return NotificationWhereInputObjectSchema.optional(); } -}).strict(); -export const NotificationUpsertWithoutRecipientsInputObjectSchema: z.ZodType = z.lazy(__makeSchema_NotificationUpsertWithoutRecipientsInput_schema) as unknown as z.ZodType; -export const NotificationUpsertWithoutRecipientsInputObjectZodSchema = z.lazy(__makeSchema_NotificationUpsertWithoutRecipientsInput_schema); - - -// File: NotificationUpdateToOneWithWhereWithoutRecipientsInput.schema.ts -const __makeSchema_NotificationUpdateToOneWithWhereWithoutRecipientsInput_schema = () => z.object({ - get where(){ return NotificationWhereInputObjectSchema.optional(); }, - data: z.union([NotificationUpdateWithoutRecipientsInputObjectSchema, NotificationUncheckedUpdateWithoutRecipientsInputObjectSchema]) -}).strict(); -export const NotificationUpdateToOneWithWhereWithoutRecipientsInputObjectSchema: z.ZodType = z.lazy(__makeSchema_NotificationUpdateToOneWithWhereWithoutRecipientsInput_schema) as unknown as z.ZodType; -export const NotificationUpdateToOneWithWhereWithoutRecipientsInputObjectZodSchema = z.lazy(__makeSchema_NotificationUpdateToOneWithWhereWithoutRecipientsInput_schema); - - -// File: NotificationUpdateWithoutRecipientsInput.schema.ts -const __makeSchema_NotificationUpdateWithoutRecipientsInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - createdAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - updatedAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - title: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - shortDescription: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - content: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - type: z.union([NotificationTypeSchema, EnumNotificationTypeFieldUpdateOperationsInputObjectSchema]).optional(), - payload: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - payloadType: z.union([NotificationPayloadTypeSchema, EnumNotificationPayloadTypeFieldUpdateOperationsInputObjectSchema]).optional(), - get actorGroup(){ return GroupUpdateOneRequiredWithoutNotificationsNestedInputObjectSchema.optional(); }, - get createdBy(){ return UserUpdateOneWithoutNotificationsCreatedNestedInputObjectSchema.optional(); }, - get lastUpdatedBy(){ return UserUpdateOneWithoutNotificationsUpdatedNestedInputObjectSchema.optional(); }, - get task(){ return TaskUpdateOneWithoutNotificationsNestedInputObjectSchema.optional(); } -}).strict(); -export const NotificationUpdateWithoutRecipientsInputObjectSchema: z.ZodType = z.lazy(__makeSchema_NotificationUpdateWithoutRecipientsInput_schema) as unknown as z.ZodType; -export const NotificationUpdateWithoutRecipientsInputObjectZodSchema = z.lazy(__makeSchema_NotificationUpdateWithoutRecipientsInput_schema); - - -// File: NotificationUncheckedUpdateWithoutRecipientsInput.schema.ts -const __makeSchema_NotificationUncheckedUpdateWithoutRecipientsInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - createdAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - updatedAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - title: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - shortDescription: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - content: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - type: z.union([NotificationTypeSchema, EnumNotificationTypeFieldUpdateOperationsInputObjectSchema]).optional(), - payload: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - payloadType: z.union([NotificationPayloadTypeSchema, EnumNotificationPayloadTypeFieldUpdateOperationsInputObjectSchema]).optional(), - actorGroupId: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - createdById: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - lastUpdatedById: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - taskId: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable() -}).strict(); -export const NotificationUncheckedUpdateWithoutRecipientsInputObjectSchema: z.ZodType = z.lazy(__makeSchema_NotificationUncheckedUpdateWithoutRecipientsInput_schema) as unknown as z.ZodType; -export const NotificationUncheckedUpdateWithoutRecipientsInputObjectZodSchema = z.lazy(__makeSchema_NotificationUncheckedUpdateWithoutRecipientsInput_schema); - - -// File: UserUpsertWithoutNotificationsReceivedInput.schema.ts -const __makeSchema_UserUpsertWithoutNotificationsReceivedInput_schema = () => z.object({ - update: z.union([UserUpdateWithoutNotificationsReceivedInputObjectSchema, UserUncheckedUpdateWithoutNotificationsReceivedInputObjectSchema]), - create: z.union([UserCreateWithoutNotificationsReceivedInputObjectSchema, UserUncheckedCreateWithoutNotificationsReceivedInputObjectSchema]), - get where(){ return UserWhereInputObjectSchema.optional(); } -}).strict(); -export const UserUpsertWithoutNotificationsReceivedInputObjectSchema: z.ZodType = z.lazy(__makeSchema_UserUpsertWithoutNotificationsReceivedInput_schema) as unknown as z.ZodType; -export const UserUpsertWithoutNotificationsReceivedInputObjectZodSchema = z.lazy(__makeSchema_UserUpsertWithoutNotificationsReceivedInput_schema); - - -// File: UserUpdateToOneWithWhereWithoutNotificationsReceivedInput.schema.ts -const __makeSchema_UserUpdateToOneWithWhereWithoutNotificationsReceivedInput_schema = () => z.object({ - get where(){ return UserWhereInputObjectSchema.optional(); }, - data: z.union([UserUpdateWithoutNotificationsReceivedInputObjectSchema, UserUncheckedUpdateWithoutNotificationsReceivedInputObjectSchema]) -}).strict(); -export const UserUpdateToOneWithWhereWithoutNotificationsReceivedInputObjectSchema: z.ZodType = z.lazy(__makeSchema_UserUpdateToOneWithWhereWithoutNotificationsReceivedInput_schema) as unknown as z.ZodType; -export const UserUpdateToOneWithWhereWithoutNotificationsReceivedInputObjectZodSchema = z.lazy(__makeSchema_UserUpdateToOneWithWhereWithoutNotificationsReceivedInput_schema); - - -// File: UserUpdateWithoutNotificationsReceivedInput.schema.ts -const __makeSchema_UserUpdateWithoutNotificationsReceivedInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - username: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - name: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - email: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - imageUrl: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - biography: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - phone: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - gender: z.union([GenderSchema, EnumGenderFieldUpdateOperationsInputObjectSchema]).optional(), - dietaryRestrictions: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - ntnuUsername: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - flags: z.union([UserUpdateflagsInputObjectSchema, z.string().array()]).optional(), - workspaceUserId: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - createdAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - updatedAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - privacyPermissionsId: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - notificationPermissionsId: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - get privacyPermissions(){ return PrivacyPermissionsUpdateOneWithoutUserNestedInputObjectSchema.optional(); }, - get notificationPermissions(){ return NotificationPermissionsUpdateOneWithoutUserNestedInputObjectSchema.optional(); }, - get attendee(){ return AttendeeUpdateManyWithoutUserNestedInputObjectSchema.optional(); }, - get personalMark(){ return PersonalMarkUpdateManyWithoutUserNestedInputObjectSchema.optional(); }, - get groupMemberships(){ return GroupMembershipUpdateManyWithoutUserNestedInputObjectSchema.optional(); }, - get memberships(){ return MembershipUpdateManyWithoutUserNestedInputObjectSchema.optional(); }, - get givenMarks(){ return PersonalMarkUpdateManyWithoutGivenByNestedInputObjectSchema.optional(); }, - get attendeesRefunded(){ return AttendeeUpdateManyWithoutPaymentRefundedByNestedInputObjectSchema.optional(); }, - get auditLogs(){ return AuditLogUpdateManyWithoutUserNestedInputObjectSchema.optional(); }, - get deregisterReasons(){ return DeregisterReasonUpdateManyWithoutUserNestedInputObjectSchema.optional(); }, - get notificationsCreated(){ return NotificationUpdateManyWithoutCreatedByNestedInputObjectSchema.optional(); }, - get notificationsUpdated(){ return NotificationUpdateManyWithoutLastUpdatedByNestedInputObjectSchema.optional(); }, - get contestants(){ return ContestantUpdateManyWithoutUserNestedInputObjectSchema.optional(); }, - get contestTeams(){ return ContestTeamUpdateManyWithoutMembersNestedInputObjectSchema.optional(); } -}).strict(); -export const UserUpdateWithoutNotificationsReceivedInputObjectSchema: z.ZodType = z.lazy(__makeSchema_UserUpdateWithoutNotificationsReceivedInput_schema) as unknown as z.ZodType; -export const UserUpdateWithoutNotificationsReceivedInputObjectZodSchema = z.lazy(__makeSchema_UserUpdateWithoutNotificationsReceivedInput_schema); - - -// File: UserUncheckedUpdateWithoutNotificationsReceivedInput.schema.ts -const __makeSchema_UserUncheckedUpdateWithoutNotificationsReceivedInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - username: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - name: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - email: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - imageUrl: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - biography: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - phone: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - gender: z.union([GenderSchema, EnumGenderFieldUpdateOperationsInputObjectSchema]).optional(), - dietaryRestrictions: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - ntnuUsername: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - flags: z.union([UserUpdateflagsInputObjectSchema, z.string().array()]).optional(), - workspaceUserId: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - createdAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - updatedAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - privacyPermissionsId: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - notificationPermissionsId: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - get privacyPermissions(){ return PrivacyPermissionsUncheckedUpdateOneWithoutUserNestedInputObjectSchema.optional(); }, - get notificationPermissions(){ return NotificationPermissionsUncheckedUpdateOneWithoutUserNestedInputObjectSchema.optional(); }, - get attendee(){ return AttendeeUncheckedUpdateManyWithoutUserNestedInputObjectSchema.optional(); }, - get personalMark(){ return PersonalMarkUncheckedUpdateManyWithoutUserNestedInputObjectSchema.optional(); }, - get groupMemberships(){ return GroupMembershipUncheckedUpdateManyWithoutUserNestedInputObjectSchema.optional(); }, - get memberships(){ return MembershipUncheckedUpdateManyWithoutUserNestedInputObjectSchema.optional(); }, - get givenMarks(){ return PersonalMarkUncheckedUpdateManyWithoutGivenByNestedInputObjectSchema.optional(); }, - get attendeesRefunded(){ return AttendeeUncheckedUpdateManyWithoutPaymentRefundedByNestedInputObjectSchema.optional(); }, - get auditLogs(){ return AuditLogUncheckedUpdateManyWithoutUserNestedInputObjectSchema.optional(); }, - get deregisterReasons(){ return DeregisterReasonUncheckedUpdateManyWithoutUserNestedInputObjectSchema.optional(); }, - get notificationsCreated(){ return NotificationUncheckedUpdateManyWithoutCreatedByNestedInputObjectSchema.optional(); }, - get notificationsUpdated(){ return NotificationUncheckedUpdateManyWithoutLastUpdatedByNestedInputObjectSchema.optional(); }, - get contestants(){ return ContestantUncheckedUpdateManyWithoutUserNestedInputObjectSchema.optional(); }, - get contestTeams(){ return ContestTeamUncheckedUpdateManyWithoutMembersNestedInputObjectSchema.optional(); } -}).strict(); -export const UserUncheckedUpdateWithoutNotificationsReceivedInputObjectSchema: z.ZodType = z.lazy(__makeSchema_UserUncheckedUpdateWithoutNotificationsReceivedInput_schema) as unknown as z.ZodType; -export const UserUncheckedUpdateWithoutNotificationsReceivedInputObjectZodSchema = z.lazy(__makeSchema_UserUncheckedUpdateWithoutNotificationsReceivedInput_schema); - - -// File: GroupCreateWithoutNotificationsInput.schema.ts -const __makeSchema_GroupCreateWithoutNotificationsInput_schema = () => z.object({ - slug: z.string(), - abbreviation: z.string(), - name: z.string().optional().nullable(), - shortDescription: z.string().optional().nullable(), - description: z.string(), - imageUrl: z.string().optional().nullable(), - email: z.string().optional().nullable(), - contactUrl: z.string().optional().nullable(), - slackUrl: z.string().optional().nullable(), - showLeaderAsContact: z.boolean().optional(), - createdAt: z.coerce.date().optional(), - deactivatedAt: z.coerce.date().optional().nullable(), - workspaceGroupId: z.string().optional().nullable(), - memberVisibility: GroupMemberVisibilitySchema.optional(), - recruitmentMethod: GroupRecruitmentMethodSchema.optional(), - type: GroupTypeSchema, - get events(){ return EventHostingGroupCreateNestedManyWithoutGroupInputObjectSchema.optional(); }, - get contests(){ return ContestCreateNestedManyWithoutGroupsInputObjectSchema.optional(); }, - get memberships(){ return GroupMembershipCreateNestedManyWithoutGroupInputObjectSchema.optional(); }, - get marks(){ return MarkGroupCreateNestedManyWithoutGroupInputObjectSchema.optional(); }, - get roles(){ return GroupRoleCreateNestedManyWithoutGroupInputObjectSchema.optional(); } -}).strict(); -export const GroupCreateWithoutNotificationsInputObjectSchema: z.ZodType = z.lazy(__makeSchema_GroupCreateWithoutNotificationsInput_schema) as unknown as z.ZodType; -export const GroupCreateWithoutNotificationsInputObjectZodSchema = z.lazy(__makeSchema_GroupCreateWithoutNotificationsInput_schema); - - -// File: GroupUncheckedCreateWithoutNotificationsInput.schema.ts -const __makeSchema_GroupUncheckedCreateWithoutNotificationsInput_schema = () => z.object({ - slug: z.string(), - abbreviation: z.string(), - name: z.string().optional().nullable(), - shortDescription: z.string().optional().nullable(), - description: z.string(), - imageUrl: z.string().optional().nullable(), - email: z.string().optional().nullable(), - contactUrl: z.string().optional().nullable(), - slackUrl: z.string().optional().nullable(), - showLeaderAsContact: z.boolean().optional(), - createdAt: z.coerce.date().optional(), - deactivatedAt: z.coerce.date().optional().nullable(), - workspaceGroupId: z.string().optional().nullable(), - memberVisibility: GroupMemberVisibilitySchema.optional(), - recruitmentMethod: GroupRecruitmentMethodSchema.optional(), - type: GroupTypeSchema, - get events(){ return EventHostingGroupUncheckedCreateNestedManyWithoutGroupInputObjectSchema.optional(); }, - get contests(){ return ContestUncheckedCreateNestedManyWithoutGroupsInputObjectSchema.optional(); }, - get memberships(){ return GroupMembershipUncheckedCreateNestedManyWithoutGroupInputObjectSchema.optional(); }, - get marks(){ return MarkGroupUncheckedCreateNestedManyWithoutGroupInputObjectSchema.optional(); }, - get roles(){ return GroupRoleUncheckedCreateNestedManyWithoutGroupInputObjectSchema.optional(); } -}).strict(); -export const GroupUncheckedCreateWithoutNotificationsInputObjectSchema: z.ZodType = z.lazy(__makeSchema_GroupUncheckedCreateWithoutNotificationsInput_schema) as unknown as z.ZodType; -export const GroupUncheckedCreateWithoutNotificationsInputObjectZodSchema = z.lazy(__makeSchema_GroupUncheckedCreateWithoutNotificationsInput_schema); - - -// File: GroupCreateOrConnectWithoutNotificationsInput.schema.ts -const __makeSchema_GroupCreateOrConnectWithoutNotificationsInput_schema = () => z.object({ - get where(){ return GroupWhereUniqueInputObjectSchema; }, - create: z.union([GroupCreateWithoutNotificationsInputObjectSchema, GroupUncheckedCreateWithoutNotificationsInputObjectSchema]) -}).strict(); -export const GroupCreateOrConnectWithoutNotificationsInputObjectSchema: z.ZodType = z.lazy(__makeSchema_GroupCreateOrConnectWithoutNotificationsInput_schema) as unknown as z.ZodType; -export const GroupCreateOrConnectWithoutNotificationsInputObjectZodSchema = z.lazy(__makeSchema_GroupCreateOrConnectWithoutNotificationsInput_schema); - - -// File: UserCreateWithoutNotificationsCreatedInput.schema.ts -const __makeSchema_UserCreateWithoutNotificationsCreatedInput_schema = () => z.object({ - id: z.string(), - username: z.string(), - name: z.string().optional().nullable(), - email: z.string().optional().nullable(), - imageUrl: z.string().optional().nullable(), - biography: z.string().optional().nullable(), - phone: z.string().optional().nullable(), - gender: GenderSchema.optional(), - dietaryRestrictions: z.string().optional().nullable(), - ntnuUsername: z.string().optional().nullable(), - flags: z.union([UserCreateflagsInputObjectSchema, z.string().array()]).optional(), - workspaceUserId: z.string().optional().nullable(), - createdAt: z.coerce.date().optional(), - updatedAt: z.coerce.date().optional(), - privacyPermissionsId: z.string().optional().nullable(), - notificationPermissionsId: z.string().optional().nullable(), - get privacyPermissions(){ return PrivacyPermissionsCreateNestedOneWithoutUserInputObjectSchema.optional(); }, - get notificationPermissions(){ return NotificationPermissionsCreateNestedOneWithoutUserInputObjectSchema.optional(); }, - get attendee(){ return AttendeeCreateNestedManyWithoutUserInputObjectSchema.optional(); }, - get personalMark(){ return PersonalMarkCreateNestedManyWithoutUserInputObjectSchema.optional(); }, - get groupMemberships(){ return GroupMembershipCreateNestedManyWithoutUserInputObjectSchema.optional(); }, - get memberships(){ return MembershipCreateNestedManyWithoutUserInputObjectSchema.optional(); }, - get givenMarks(){ return PersonalMarkCreateNestedManyWithoutGivenByInputObjectSchema.optional(); }, - get attendeesRefunded(){ return AttendeeCreateNestedManyWithoutPaymentRefundedByInputObjectSchema.optional(); }, - get auditLogs(){ return AuditLogCreateNestedManyWithoutUserInputObjectSchema.optional(); }, - get deregisterReasons(){ return DeregisterReasonCreateNestedManyWithoutUserInputObjectSchema.optional(); }, - get notificationsReceived(){ return NotificationRecipientCreateNestedManyWithoutUserInputObjectSchema.optional(); }, - get notificationsUpdated(){ return NotificationCreateNestedManyWithoutLastUpdatedByInputObjectSchema.optional(); }, - get contestants(){ return ContestantCreateNestedManyWithoutUserInputObjectSchema.optional(); }, - get contestTeams(){ return ContestTeamCreateNestedManyWithoutMembersInputObjectSchema.optional(); } -}).strict(); -export const UserCreateWithoutNotificationsCreatedInputObjectSchema: z.ZodType = z.lazy(__makeSchema_UserCreateWithoutNotificationsCreatedInput_schema) as unknown as z.ZodType; -export const UserCreateWithoutNotificationsCreatedInputObjectZodSchema = z.lazy(__makeSchema_UserCreateWithoutNotificationsCreatedInput_schema); - - -// File: UserUncheckedCreateWithoutNotificationsCreatedInput.schema.ts -const __makeSchema_UserUncheckedCreateWithoutNotificationsCreatedInput_schema = () => z.object({ - id: z.string(), - username: z.string(), - name: z.string().optional().nullable(), - email: z.string().optional().nullable(), - imageUrl: z.string().optional().nullable(), - biography: z.string().optional().nullable(), - phone: z.string().optional().nullable(), - gender: GenderSchema.optional(), - dietaryRestrictions: z.string().optional().nullable(), - ntnuUsername: z.string().optional().nullable(), - flags: z.union([UserCreateflagsInputObjectSchema, z.string().array()]).optional(), - workspaceUserId: z.string().optional().nullable(), - createdAt: z.coerce.date().optional(), - updatedAt: z.coerce.date().optional(), - privacyPermissionsId: z.string().optional().nullable(), - notificationPermissionsId: z.string().optional().nullable(), - get privacyPermissions(){ return PrivacyPermissionsUncheckedCreateNestedOneWithoutUserInputObjectSchema.optional(); }, - get notificationPermissions(){ return NotificationPermissionsUncheckedCreateNestedOneWithoutUserInputObjectSchema.optional(); }, - get attendee(){ return AttendeeUncheckedCreateNestedManyWithoutUserInputObjectSchema.optional(); }, - get personalMark(){ return PersonalMarkUncheckedCreateNestedManyWithoutUserInputObjectSchema.optional(); }, - get groupMemberships(){ return GroupMembershipUncheckedCreateNestedManyWithoutUserInputObjectSchema.optional(); }, - get memberships(){ return MembershipUncheckedCreateNestedManyWithoutUserInputObjectSchema.optional(); }, - get givenMarks(){ return PersonalMarkUncheckedCreateNestedManyWithoutGivenByInputObjectSchema.optional(); }, - get attendeesRefunded(){ return AttendeeUncheckedCreateNestedManyWithoutPaymentRefundedByInputObjectSchema.optional(); }, - get auditLogs(){ return AuditLogUncheckedCreateNestedManyWithoutUserInputObjectSchema.optional(); }, - get deregisterReasons(){ return DeregisterReasonUncheckedCreateNestedManyWithoutUserInputObjectSchema.optional(); }, - get notificationsReceived(){ return NotificationRecipientUncheckedCreateNestedManyWithoutUserInputObjectSchema.optional(); }, - get notificationsUpdated(){ return NotificationUncheckedCreateNestedManyWithoutLastUpdatedByInputObjectSchema.optional(); }, - get contestants(){ return ContestantUncheckedCreateNestedManyWithoutUserInputObjectSchema.optional(); }, - get contestTeams(){ return ContestTeamUncheckedCreateNestedManyWithoutMembersInputObjectSchema.optional(); } -}).strict(); -export const UserUncheckedCreateWithoutNotificationsCreatedInputObjectSchema: z.ZodType = z.lazy(__makeSchema_UserUncheckedCreateWithoutNotificationsCreatedInput_schema) as unknown as z.ZodType; -export const UserUncheckedCreateWithoutNotificationsCreatedInputObjectZodSchema = z.lazy(__makeSchema_UserUncheckedCreateWithoutNotificationsCreatedInput_schema); - - -// File: UserCreateOrConnectWithoutNotificationsCreatedInput.schema.ts -const __makeSchema_UserCreateOrConnectWithoutNotificationsCreatedInput_schema = () => z.object({ - get where(){ return UserWhereUniqueInputObjectSchema; }, - create: z.union([UserCreateWithoutNotificationsCreatedInputObjectSchema, UserUncheckedCreateWithoutNotificationsCreatedInputObjectSchema]) -}).strict(); -export const UserCreateOrConnectWithoutNotificationsCreatedInputObjectSchema: z.ZodType = z.lazy(__makeSchema_UserCreateOrConnectWithoutNotificationsCreatedInput_schema) as unknown as z.ZodType; -export const UserCreateOrConnectWithoutNotificationsCreatedInputObjectZodSchema = z.lazy(__makeSchema_UserCreateOrConnectWithoutNotificationsCreatedInput_schema); - - -// File: UserCreateWithoutNotificationsUpdatedInput.schema.ts -const __makeSchema_UserCreateWithoutNotificationsUpdatedInput_schema = () => z.object({ - id: z.string(), - username: z.string(), - name: z.string().optional().nullable(), - email: z.string().optional().nullable(), - imageUrl: z.string().optional().nullable(), - biography: z.string().optional().nullable(), - phone: z.string().optional().nullable(), - gender: GenderSchema.optional(), - dietaryRestrictions: z.string().optional().nullable(), - ntnuUsername: z.string().optional().nullable(), - flags: z.union([UserCreateflagsInputObjectSchema, z.string().array()]).optional(), - workspaceUserId: z.string().optional().nullable(), - createdAt: z.coerce.date().optional(), - updatedAt: z.coerce.date().optional(), - privacyPermissionsId: z.string().optional().nullable(), - notificationPermissionsId: z.string().optional().nullable(), - get privacyPermissions(){ return PrivacyPermissionsCreateNestedOneWithoutUserInputObjectSchema.optional(); }, - get notificationPermissions(){ return NotificationPermissionsCreateNestedOneWithoutUserInputObjectSchema.optional(); }, - get attendee(){ return AttendeeCreateNestedManyWithoutUserInputObjectSchema.optional(); }, - get personalMark(){ return PersonalMarkCreateNestedManyWithoutUserInputObjectSchema.optional(); }, - get groupMemberships(){ return GroupMembershipCreateNestedManyWithoutUserInputObjectSchema.optional(); }, - get memberships(){ return MembershipCreateNestedManyWithoutUserInputObjectSchema.optional(); }, - get givenMarks(){ return PersonalMarkCreateNestedManyWithoutGivenByInputObjectSchema.optional(); }, - get attendeesRefunded(){ return AttendeeCreateNestedManyWithoutPaymentRefundedByInputObjectSchema.optional(); }, - get auditLogs(){ return AuditLogCreateNestedManyWithoutUserInputObjectSchema.optional(); }, - get deregisterReasons(){ return DeregisterReasonCreateNestedManyWithoutUserInputObjectSchema.optional(); }, - get notificationsReceived(){ return NotificationRecipientCreateNestedManyWithoutUserInputObjectSchema.optional(); }, - get notificationsCreated(){ return NotificationCreateNestedManyWithoutCreatedByInputObjectSchema.optional(); }, - get contestants(){ return ContestantCreateNestedManyWithoutUserInputObjectSchema.optional(); }, - get contestTeams(){ return ContestTeamCreateNestedManyWithoutMembersInputObjectSchema.optional(); } -}).strict(); -export const UserCreateWithoutNotificationsUpdatedInputObjectSchema: z.ZodType = z.lazy(__makeSchema_UserCreateWithoutNotificationsUpdatedInput_schema) as unknown as z.ZodType; -export const UserCreateWithoutNotificationsUpdatedInputObjectZodSchema = z.lazy(__makeSchema_UserCreateWithoutNotificationsUpdatedInput_schema); - - -// File: UserUncheckedCreateWithoutNotificationsUpdatedInput.schema.ts -const __makeSchema_UserUncheckedCreateWithoutNotificationsUpdatedInput_schema = () => z.object({ - id: z.string(), - username: z.string(), - name: z.string().optional().nullable(), - email: z.string().optional().nullable(), - imageUrl: z.string().optional().nullable(), - biography: z.string().optional().nullable(), - phone: z.string().optional().nullable(), - gender: GenderSchema.optional(), - dietaryRestrictions: z.string().optional().nullable(), - ntnuUsername: z.string().optional().nullable(), - flags: z.union([UserCreateflagsInputObjectSchema, z.string().array()]).optional(), - workspaceUserId: z.string().optional().nullable(), - createdAt: z.coerce.date().optional(), - updatedAt: z.coerce.date().optional(), - privacyPermissionsId: z.string().optional().nullable(), - notificationPermissionsId: z.string().optional().nullable(), - get privacyPermissions(){ return PrivacyPermissionsUncheckedCreateNestedOneWithoutUserInputObjectSchema.optional(); }, - get notificationPermissions(){ return NotificationPermissionsUncheckedCreateNestedOneWithoutUserInputObjectSchema.optional(); }, - get attendee(){ return AttendeeUncheckedCreateNestedManyWithoutUserInputObjectSchema.optional(); }, - get personalMark(){ return PersonalMarkUncheckedCreateNestedManyWithoutUserInputObjectSchema.optional(); }, - get groupMemberships(){ return GroupMembershipUncheckedCreateNestedManyWithoutUserInputObjectSchema.optional(); }, - get memberships(){ return MembershipUncheckedCreateNestedManyWithoutUserInputObjectSchema.optional(); }, - get givenMarks(){ return PersonalMarkUncheckedCreateNestedManyWithoutGivenByInputObjectSchema.optional(); }, - get attendeesRefunded(){ return AttendeeUncheckedCreateNestedManyWithoutPaymentRefundedByInputObjectSchema.optional(); }, - get auditLogs(){ return AuditLogUncheckedCreateNestedManyWithoutUserInputObjectSchema.optional(); }, - get deregisterReasons(){ return DeregisterReasonUncheckedCreateNestedManyWithoutUserInputObjectSchema.optional(); }, - get notificationsReceived(){ return NotificationRecipientUncheckedCreateNestedManyWithoutUserInputObjectSchema.optional(); }, - get notificationsCreated(){ return NotificationUncheckedCreateNestedManyWithoutCreatedByInputObjectSchema.optional(); }, - get contestants(){ return ContestantUncheckedCreateNestedManyWithoutUserInputObjectSchema.optional(); }, - get contestTeams(){ return ContestTeamUncheckedCreateNestedManyWithoutMembersInputObjectSchema.optional(); } -}).strict(); -export const UserUncheckedCreateWithoutNotificationsUpdatedInputObjectSchema: z.ZodType = z.lazy(__makeSchema_UserUncheckedCreateWithoutNotificationsUpdatedInput_schema) as unknown as z.ZodType; -export const UserUncheckedCreateWithoutNotificationsUpdatedInputObjectZodSchema = z.lazy(__makeSchema_UserUncheckedCreateWithoutNotificationsUpdatedInput_schema); - - -// File: UserCreateOrConnectWithoutNotificationsUpdatedInput.schema.ts -const __makeSchema_UserCreateOrConnectWithoutNotificationsUpdatedInput_schema = () => z.object({ - get where(){ return UserWhereUniqueInputObjectSchema; }, - create: z.union([UserCreateWithoutNotificationsUpdatedInputObjectSchema, UserUncheckedCreateWithoutNotificationsUpdatedInputObjectSchema]) -}).strict(); -export const UserCreateOrConnectWithoutNotificationsUpdatedInputObjectSchema: z.ZodType = z.lazy(__makeSchema_UserCreateOrConnectWithoutNotificationsUpdatedInput_schema) as unknown as z.ZodType; -export const UserCreateOrConnectWithoutNotificationsUpdatedInputObjectZodSchema = z.lazy(__makeSchema_UserCreateOrConnectWithoutNotificationsUpdatedInput_schema); - - -// File: TaskCreateWithoutNotificationsInput.schema.ts -const __makeSchema_TaskCreateWithoutNotificationsInput_schema = () => z.object({ - id: z.string().optional(), - type: TaskTypeSchema, - status: TaskStatusSchema.optional(), - payload: z.union([JsonNullValueInputSchema, jsonSchema]).optional(), - createdAt: z.coerce.date().optional(), - scheduledAt: z.coerce.date(), - processedAt: z.coerce.date().optional().nullable(), - get recurringTask(){ return RecurringTaskCreateNestedOneWithoutTasksInputObjectSchema.optional(); }, - get attendancePools(){ return AttendancePoolCreateNestedManyWithoutTaskInputObjectSchema.optional(); } -}).strict(); -export const TaskCreateWithoutNotificationsInputObjectSchema: z.ZodType = z.lazy(__makeSchema_TaskCreateWithoutNotificationsInput_schema) as unknown as z.ZodType; -export const TaskCreateWithoutNotificationsInputObjectZodSchema = z.lazy(__makeSchema_TaskCreateWithoutNotificationsInput_schema); - - -// File: TaskUncheckedCreateWithoutNotificationsInput.schema.ts -const __makeSchema_TaskUncheckedCreateWithoutNotificationsInput_schema = () => z.object({ - id: z.string().optional(), - type: TaskTypeSchema, - status: TaskStatusSchema.optional(), - payload: z.union([JsonNullValueInputSchema, jsonSchema]).optional(), - createdAt: z.coerce.date().optional(), - scheduledAt: z.coerce.date(), - processedAt: z.coerce.date().optional().nullable(), - recurringTaskId: z.string().optional().nullable(), - get attendancePools(){ return AttendancePoolUncheckedCreateNestedManyWithoutTaskInputObjectSchema.optional(); } -}).strict(); -export const TaskUncheckedCreateWithoutNotificationsInputObjectSchema: z.ZodType = z.lazy(__makeSchema_TaskUncheckedCreateWithoutNotificationsInput_schema) as unknown as z.ZodType; -export const TaskUncheckedCreateWithoutNotificationsInputObjectZodSchema = z.lazy(__makeSchema_TaskUncheckedCreateWithoutNotificationsInput_schema); - - -// File: TaskCreateOrConnectWithoutNotificationsInput.schema.ts -const __makeSchema_TaskCreateOrConnectWithoutNotificationsInput_schema = () => z.object({ - get where(){ return TaskWhereUniqueInputObjectSchema; }, - create: z.union([TaskCreateWithoutNotificationsInputObjectSchema, TaskUncheckedCreateWithoutNotificationsInputObjectSchema]) -}).strict(); -export const TaskCreateOrConnectWithoutNotificationsInputObjectSchema: z.ZodType = z.lazy(__makeSchema_TaskCreateOrConnectWithoutNotificationsInput_schema) as unknown as z.ZodType; -export const TaskCreateOrConnectWithoutNotificationsInputObjectZodSchema = z.lazy(__makeSchema_TaskCreateOrConnectWithoutNotificationsInput_schema); - - -// File: NotificationRecipientCreateWithoutNotificationInput.schema.ts -const __makeSchema_NotificationRecipientCreateWithoutNotificationInput_schema = () => z.object({ - id: z.string().optional(), - readAt: z.coerce.date(), - get user(){ return UserCreateNestedOneWithoutNotificationsReceivedInputObjectSchema; } -}).strict(); -export const NotificationRecipientCreateWithoutNotificationInputObjectSchema: z.ZodType = z.lazy(__makeSchema_NotificationRecipientCreateWithoutNotificationInput_schema) as unknown as z.ZodType; -export const NotificationRecipientCreateWithoutNotificationInputObjectZodSchema = z.lazy(__makeSchema_NotificationRecipientCreateWithoutNotificationInput_schema); - - -// File: NotificationRecipientUncheckedCreateWithoutNotificationInput.schema.ts -const __makeSchema_NotificationRecipientUncheckedCreateWithoutNotificationInput_schema = () => z.object({ - id: z.string().optional(), - readAt: z.coerce.date(), - userId: z.string() -}).strict(); -export const NotificationRecipientUncheckedCreateWithoutNotificationInputObjectSchema: z.ZodType = z.lazy(__makeSchema_NotificationRecipientUncheckedCreateWithoutNotificationInput_schema) as unknown as z.ZodType; -export const NotificationRecipientUncheckedCreateWithoutNotificationInputObjectZodSchema = z.lazy(__makeSchema_NotificationRecipientUncheckedCreateWithoutNotificationInput_schema); - - -// File: NotificationRecipientCreateOrConnectWithoutNotificationInput.schema.ts -const __makeSchema_NotificationRecipientCreateOrConnectWithoutNotificationInput_schema = () => z.object({ - get where(){ return NotificationRecipientWhereUniqueInputObjectSchema; }, - create: z.union([NotificationRecipientCreateWithoutNotificationInputObjectSchema, NotificationRecipientUncheckedCreateWithoutNotificationInputObjectSchema]) -}).strict(); -export const NotificationRecipientCreateOrConnectWithoutNotificationInputObjectSchema: z.ZodType = z.lazy(__makeSchema_NotificationRecipientCreateOrConnectWithoutNotificationInput_schema) as unknown as z.ZodType; -export const NotificationRecipientCreateOrConnectWithoutNotificationInputObjectZodSchema = z.lazy(__makeSchema_NotificationRecipientCreateOrConnectWithoutNotificationInput_schema); - - -// File: NotificationRecipientCreateManyNotificationInputEnvelope.schema.ts -const __makeSchema_NotificationRecipientCreateManyNotificationInputEnvelope_schema = () => z.object({ - data: z.union([NotificationRecipientCreateManyNotificationInputObjectSchema, NotificationRecipientCreateManyNotificationInputObjectSchema.array()]), - skipDuplicates: z.boolean().optional() -}).strict(); -export const NotificationRecipientCreateManyNotificationInputEnvelopeObjectSchema: z.ZodType = z.lazy(__makeSchema_NotificationRecipientCreateManyNotificationInputEnvelope_schema) as unknown as z.ZodType; -export const NotificationRecipientCreateManyNotificationInputEnvelopeObjectZodSchema = z.lazy(__makeSchema_NotificationRecipientCreateManyNotificationInputEnvelope_schema); - - -// File: GroupUpsertWithoutNotificationsInput.schema.ts -const __makeSchema_GroupUpsertWithoutNotificationsInput_schema = () => z.object({ - update: z.union([GroupUpdateWithoutNotificationsInputObjectSchema, GroupUncheckedUpdateWithoutNotificationsInputObjectSchema]), - create: z.union([GroupCreateWithoutNotificationsInputObjectSchema, GroupUncheckedCreateWithoutNotificationsInputObjectSchema]), - get where(){ return GroupWhereInputObjectSchema.optional(); } -}).strict(); -export const GroupUpsertWithoutNotificationsInputObjectSchema: z.ZodType = z.lazy(__makeSchema_GroupUpsertWithoutNotificationsInput_schema) as unknown as z.ZodType; -export const GroupUpsertWithoutNotificationsInputObjectZodSchema = z.lazy(__makeSchema_GroupUpsertWithoutNotificationsInput_schema); - - -// File: GroupUpdateToOneWithWhereWithoutNotificationsInput.schema.ts -const __makeSchema_GroupUpdateToOneWithWhereWithoutNotificationsInput_schema = () => z.object({ - get where(){ return GroupWhereInputObjectSchema.optional(); }, - data: z.union([GroupUpdateWithoutNotificationsInputObjectSchema, GroupUncheckedUpdateWithoutNotificationsInputObjectSchema]) -}).strict(); -export const GroupUpdateToOneWithWhereWithoutNotificationsInputObjectSchema: z.ZodType = z.lazy(__makeSchema_GroupUpdateToOneWithWhereWithoutNotificationsInput_schema) as unknown as z.ZodType; -export const GroupUpdateToOneWithWhereWithoutNotificationsInputObjectZodSchema = z.lazy(__makeSchema_GroupUpdateToOneWithWhereWithoutNotificationsInput_schema); - - -// File: GroupUpdateWithoutNotificationsInput.schema.ts -const __makeSchema_GroupUpdateWithoutNotificationsInput_schema = () => z.object({ - slug: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - abbreviation: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - name: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - shortDescription: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - description: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - imageUrl: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - email: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - contactUrl: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - slackUrl: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - showLeaderAsContact: z.union([z.boolean(), BoolFieldUpdateOperationsInputObjectSchema]).optional(), - createdAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - deactivatedAt: z.union([z.coerce.date(), NullableDateTimeFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - workspaceGroupId: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - memberVisibility: z.union([GroupMemberVisibilitySchema, EnumGroupMemberVisibilityFieldUpdateOperationsInputObjectSchema]).optional(), - recruitmentMethod: z.union([GroupRecruitmentMethodSchema, EnumGroupRecruitmentMethodFieldUpdateOperationsInputObjectSchema]).optional(), - type: z.union([GroupTypeSchema, EnumGroupTypeFieldUpdateOperationsInputObjectSchema]).optional(), - get events(){ return EventHostingGroupUpdateManyWithoutGroupNestedInputObjectSchema.optional(); }, - get contests(){ return ContestUpdateManyWithoutGroupsNestedInputObjectSchema.optional(); }, - get memberships(){ return GroupMembershipUpdateManyWithoutGroupNestedInputObjectSchema.optional(); }, - get marks(){ return MarkGroupUpdateManyWithoutGroupNestedInputObjectSchema.optional(); }, - get roles(){ return GroupRoleUpdateManyWithoutGroupNestedInputObjectSchema.optional(); } -}).strict(); -export const GroupUpdateWithoutNotificationsInputObjectSchema: z.ZodType = z.lazy(__makeSchema_GroupUpdateWithoutNotificationsInput_schema) as unknown as z.ZodType; -export const GroupUpdateWithoutNotificationsInputObjectZodSchema = z.lazy(__makeSchema_GroupUpdateWithoutNotificationsInput_schema); - - -// File: GroupUncheckedUpdateWithoutNotificationsInput.schema.ts -const __makeSchema_GroupUncheckedUpdateWithoutNotificationsInput_schema = () => z.object({ - slug: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - abbreviation: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - name: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - shortDescription: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - description: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - imageUrl: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - email: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - contactUrl: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - slackUrl: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - showLeaderAsContact: z.union([z.boolean(), BoolFieldUpdateOperationsInputObjectSchema]).optional(), - createdAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - deactivatedAt: z.union([z.coerce.date(), NullableDateTimeFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - workspaceGroupId: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - memberVisibility: z.union([GroupMemberVisibilitySchema, EnumGroupMemberVisibilityFieldUpdateOperationsInputObjectSchema]).optional(), - recruitmentMethod: z.union([GroupRecruitmentMethodSchema, EnumGroupRecruitmentMethodFieldUpdateOperationsInputObjectSchema]).optional(), - type: z.union([GroupTypeSchema, EnumGroupTypeFieldUpdateOperationsInputObjectSchema]).optional(), - get events(){ return EventHostingGroupUncheckedUpdateManyWithoutGroupNestedInputObjectSchema.optional(); }, - get contests(){ return ContestUncheckedUpdateManyWithoutGroupsNestedInputObjectSchema.optional(); }, - get memberships(){ return GroupMembershipUncheckedUpdateManyWithoutGroupNestedInputObjectSchema.optional(); }, - get marks(){ return MarkGroupUncheckedUpdateManyWithoutGroupNestedInputObjectSchema.optional(); }, - get roles(){ return GroupRoleUncheckedUpdateManyWithoutGroupNestedInputObjectSchema.optional(); } -}).strict(); -export const GroupUncheckedUpdateWithoutNotificationsInputObjectSchema: z.ZodType = z.lazy(__makeSchema_GroupUncheckedUpdateWithoutNotificationsInput_schema) as unknown as z.ZodType; -export const GroupUncheckedUpdateWithoutNotificationsInputObjectZodSchema = z.lazy(__makeSchema_GroupUncheckedUpdateWithoutNotificationsInput_schema); - - -// File: UserUpsertWithoutNotificationsCreatedInput.schema.ts -const __makeSchema_UserUpsertWithoutNotificationsCreatedInput_schema = () => z.object({ - update: z.union([UserUpdateWithoutNotificationsCreatedInputObjectSchema, UserUncheckedUpdateWithoutNotificationsCreatedInputObjectSchema]), - create: z.union([UserCreateWithoutNotificationsCreatedInputObjectSchema, UserUncheckedCreateWithoutNotificationsCreatedInputObjectSchema]), - get where(){ return UserWhereInputObjectSchema.optional(); } -}).strict(); -export const UserUpsertWithoutNotificationsCreatedInputObjectSchema: z.ZodType = z.lazy(__makeSchema_UserUpsertWithoutNotificationsCreatedInput_schema) as unknown as z.ZodType; -export const UserUpsertWithoutNotificationsCreatedInputObjectZodSchema = z.lazy(__makeSchema_UserUpsertWithoutNotificationsCreatedInput_schema); - - -// File: UserUpdateToOneWithWhereWithoutNotificationsCreatedInput.schema.ts -const __makeSchema_UserUpdateToOneWithWhereWithoutNotificationsCreatedInput_schema = () => z.object({ - get where(){ return UserWhereInputObjectSchema.optional(); }, - data: z.union([UserUpdateWithoutNotificationsCreatedInputObjectSchema, UserUncheckedUpdateWithoutNotificationsCreatedInputObjectSchema]) -}).strict(); -export const UserUpdateToOneWithWhereWithoutNotificationsCreatedInputObjectSchema: z.ZodType = z.lazy(__makeSchema_UserUpdateToOneWithWhereWithoutNotificationsCreatedInput_schema) as unknown as z.ZodType; -export const UserUpdateToOneWithWhereWithoutNotificationsCreatedInputObjectZodSchema = z.lazy(__makeSchema_UserUpdateToOneWithWhereWithoutNotificationsCreatedInput_schema); - - -// File: UserUpdateWithoutNotificationsCreatedInput.schema.ts -const __makeSchema_UserUpdateWithoutNotificationsCreatedInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - username: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - name: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - email: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - imageUrl: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - biography: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - phone: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - gender: z.union([GenderSchema, EnumGenderFieldUpdateOperationsInputObjectSchema]).optional(), - dietaryRestrictions: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - ntnuUsername: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - flags: z.union([UserUpdateflagsInputObjectSchema, z.string().array()]).optional(), - workspaceUserId: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - createdAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - updatedAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - privacyPermissionsId: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - notificationPermissionsId: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - get privacyPermissions(){ return PrivacyPermissionsUpdateOneWithoutUserNestedInputObjectSchema.optional(); }, - get notificationPermissions(){ return NotificationPermissionsUpdateOneWithoutUserNestedInputObjectSchema.optional(); }, - get attendee(){ return AttendeeUpdateManyWithoutUserNestedInputObjectSchema.optional(); }, - get personalMark(){ return PersonalMarkUpdateManyWithoutUserNestedInputObjectSchema.optional(); }, - get groupMemberships(){ return GroupMembershipUpdateManyWithoutUserNestedInputObjectSchema.optional(); }, - get memberships(){ return MembershipUpdateManyWithoutUserNestedInputObjectSchema.optional(); }, - get givenMarks(){ return PersonalMarkUpdateManyWithoutGivenByNestedInputObjectSchema.optional(); }, - get attendeesRefunded(){ return AttendeeUpdateManyWithoutPaymentRefundedByNestedInputObjectSchema.optional(); }, - get auditLogs(){ return AuditLogUpdateManyWithoutUserNestedInputObjectSchema.optional(); }, - get deregisterReasons(){ return DeregisterReasonUpdateManyWithoutUserNestedInputObjectSchema.optional(); }, - get notificationsReceived(){ return NotificationRecipientUpdateManyWithoutUserNestedInputObjectSchema.optional(); }, - get notificationsUpdated(){ return NotificationUpdateManyWithoutLastUpdatedByNestedInputObjectSchema.optional(); }, - get contestants(){ return ContestantUpdateManyWithoutUserNestedInputObjectSchema.optional(); }, - get contestTeams(){ return ContestTeamUpdateManyWithoutMembersNestedInputObjectSchema.optional(); } -}).strict(); -export const UserUpdateWithoutNotificationsCreatedInputObjectSchema: z.ZodType = z.lazy(__makeSchema_UserUpdateWithoutNotificationsCreatedInput_schema) as unknown as z.ZodType; -export const UserUpdateWithoutNotificationsCreatedInputObjectZodSchema = z.lazy(__makeSchema_UserUpdateWithoutNotificationsCreatedInput_schema); - - -// File: UserUncheckedUpdateWithoutNotificationsCreatedInput.schema.ts -const __makeSchema_UserUncheckedUpdateWithoutNotificationsCreatedInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - username: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - name: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - email: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - imageUrl: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - biography: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - phone: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - gender: z.union([GenderSchema, EnumGenderFieldUpdateOperationsInputObjectSchema]).optional(), - dietaryRestrictions: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - ntnuUsername: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - flags: z.union([UserUpdateflagsInputObjectSchema, z.string().array()]).optional(), - workspaceUserId: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - createdAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - updatedAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - privacyPermissionsId: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - notificationPermissionsId: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - get privacyPermissions(){ return PrivacyPermissionsUncheckedUpdateOneWithoutUserNestedInputObjectSchema.optional(); }, - get notificationPermissions(){ return NotificationPermissionsUncheckedUpdateOneWithoutUserNestedInputObjectSchema.optional(); }, - get attendee(){ return AttendeeUncheckedUpdateManyWithoutUserNestedInputObjectSchema.optional(); }, - get personalMark(){ return PersonalMarkUncheckedUpdateManyWithoutUserNestedInputObjectSchema.optional(); }, - get groupMemberships(){ return GroupMembershipUncheckedUpdateManyWithoutUserNestedInputObjectSchema.optional(); }, - get memberships(){ return MembershipUncheckedUpdateManyWithoutUserNestedInputObjectSchema.optional(); }, - get givenMarks(){ return PersonalMarkUncheckedUpdateManyWithoutGivenByNestedInputObjectSchema.optional(); }, - get attendeesRefunded(){ return AttendeeUncheckedUpdateManyWithoutPaymentRefundedByNestedInputObjectSchema.optional(); }, - get auditLogs(){ return AuditLogUncheckedUpdateManyWithoutUserNestedInputObjectSchema.optional(); }, - get deregisterReasons(){ return DeregisterReasonUncheckedUpdateManyWithoutUserNestedInputObjectSchema.optional(); }, - get notificationsReceived(){ return NotificationRecipientUncheckedUpdateManyWithoutUserNestedInputObjectSchema.optional(); }, - get notificationsUpdated(){ return NotificationUncheckedUpdateManyWithoutLastUpdatedByNestedInputObjectSchema.optional(); }, - get contestants(){ return ContestantUncheckedUpdateManyWithoutUserNestedInputObjectSchema.optional(); }, - get contestTeams(){ return ContestTeamUncheckedUpdateManyWithoutMembersNestedInputObjectSchema.optional(); } -}).strict(); -export const UserUncheckedUpdateWithoutNotificationsCreatedInputObjectSchema: z.ZodType = z.lazy(__makeSchema_UserUncheckedUpdateWithoutNotificationsCreatedInput_schema) as unknown as z.ZodType; -export const UserUncheckedUpdateWithoutNotificationsCreatedInputObjectZodSchema = z.lazy(__makeSchema_UserUncheckedUpdateWithoutNotificationsCreatedInput_schema); - - -// File: UserUpsertWithoutNotificationsUpdatedInput.schema.ts -const __makeSchema_UserUpsertWithoutNotificationsUpdatedInput_schema = () => z.object({ - update: z.union([UserUpdateWithoutNotificationsUpdatedInputObjectSchema, UserUncheckedUpdateWithoutNotificationsUpdatedInputObjectSchema]), - create: z.union([UserCreateWithoutNotificationsUpdatedInputObjectSchema, UserUncheckedCreateWithoutNotificationsUpdatedInputObjectSchema]), - get where(){ return UserWhereInputObjectSchema.optional(); } -}).strict(); -export const UserUpsertWithoutNotificationsUpdatedInputObjectSchema: z.ZodType = z.lazy(__makeSchema_UserUpsertWithoutNotificationsUpdatedInput_schema) as unknown as z.ZodType; -export const UserUpsertWithoutNotificationsUpdatedInputObjectZodSchema = z.lazy(__makeSchema_UserUpsertWithoutNotificationsUpdatedInput_schema); - - -// File: UserUpdateToOneWithWhereWithoutNotificationsUpdatedInput.schema.ts -const __makeSchema_UserUpdateToOneWithWhereWithoutNotificationsUpdatedInput_schema = () => z.object({ - get where(){ return UserWhereInputObjectSchema.optional(); }, - data: z.union([UserUpdateWithoutNotificationsUpdatedInputObjectSchema, UserUncheckedUpdateWithoutNotificationsUpdatedInputObjectSchema]) -}).strict(); -export const UserUpdateToOneWithWhereWithoutNotificationsUpdatedInputObjectSchema: z.ZodType = z.lazy(__makeSchema_UserUpdateToOneWithWhereWithoutNotificationsUpdatedInput_schema) as unknown as z.ZodType; -export const UserUpdateToOneWithWhereWithoutNotificationsUpdatedInputObjectZodSchema = z.lazy(__makeSchema_UserUpdateToOneWithWhereWithoutNotificationsUpdatedInput_schema); - - -// File: UserUpdateWithoutNotificationsUpdatedInput.schema.ts -const __makeSchema_UserUpdateWithoutNotificationsUpdatedInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - username: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - name: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - email: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - imageUrl: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - biography: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - phone: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - gender: z.union([GenderSchema, EnumGenderFieldUpdateOperationsInputObjectSchema]).optional(), - dietaryRestrictions: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - ntnuUsername: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - flags: z.union([UserUpdateflagsInputObjectSchema, z.string().array()]).optional(), - workspaceUserId: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - createdAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - updatedAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - privacyPermissionsId: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - notificationPermissionsId: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - get privacyPermissions(){ return PrivacyPermissionsUpdateOneWithoutUserNestedInputObjectSchema.optional(); }, - get notificationPermissions(){ return NotificationPermissionsUpdateOneWithoutUserNestedInputObjectSchema.optional(); }, - get attendee(){ return AttendeeUpdateManyWithoutUserNestedInputObjectSchema.optional(); }, - get personalMark(){ return PersonalMarkUpdateManyWithoutUserNestedInputObjectSchema.optional(); }, - get groupMemberships(){ return GroupMembershipUpdateManyWithoutUserNestedInputObjectSchema.optional(); }, - get memberships(){ return MembershipUpdateManyWithoutUserNestedInputObjectSchema.optional(); }, - get givenMarks(){ return PersonalMarkUpdateManyWithoutGivenByNestedInputObjectSchema.optional(); }, - get attendeesRefunded(){ return AttendeeUpdateManyWithoutPaymentRefundedByNestedInputObjectSchema.optional(); }, - get auditLogs(){ return AuditLogUpdateManyWithoutUserNestedInputObjectSchema.optional(); }, - get deregisterReasons(){ return DeregisterReasonUpdateManyWithoutUserNestedInputObjectSchema.optional(); }, - get notificationsReceived(){ return NotificationRecipientUpdateManyWithoutUserNestedInputObjectSchema.optional(); }, - get notificationsCreated(){ return NotificationUpdateManyWithoutCreatedByNestedInputObjectSchema.optional(); }, - get contestants(){ return ContestantUpdateManyWithoutUserNestedInputObjectSchema.optional(); }, - get contestTeams(){ return ContestTeamUpdateManyWithoutMembersNestedInputObjectSchema.optional(); } -}).strict(); -export const UserUpdateWithoutNotificationsUpdatedInputObjectSchema: z.ZodType = z.lazy(__makeSchema_UserUpdateWithoutNotificationsUpdatedInput_schema) as unknown as z.ZodType; -export const UserUpdateWithoutNotificationsUpdatedInputObjectZodSchema = z.lazy(__makeSchema_UserUpdateWithoutNotificationsUpdatedInput_schema); - - -// File: UserUncheckedUpdateWithoutNotificationsUpdatedInput.schema.ts -const __makeSchema_UserUncheckedUpdateWithoutNotificationsUpdatedInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - username: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - name: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - email: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - imageUrl: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - biography: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - phone: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - gender: z.union([GenderSchema, EnumGenderFieldUpdateOperationsInputObjectSchema]).optional(), - dietaryRestrictions: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - ntnuUsername: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - flags: z.union([UserUpdateflagsInputObjectSchema, z.string().array()]).optional(), - workspaceUserId: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - createdAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - updatedAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - privacyPermissionsId: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - notificationPermissionsId: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - get privacyPermissions(){ return PrivacyPermissionsUncheckedUpdateOneWithoutUserNestedInputObjectSchema.optional(); }, - get notificationPermissions(){ return NotificationPermissionsUncheckedUpdateOneWithoutUserNestedInputObjectSchema.optional(); }, - get attendee(){ return AttendeeUncheckedUpdateManyWithoutUserNestedInputObjectSchema.optional(); }, - get personalMark(){ return PersonalMarkUncheckedUpdateManyWithoutUserNestedInputObjectSchema.optional(); }, - get groupMemberships(){ return GroupMembershipUncheckedUpdateManyWithoutUserNestedInputObjectSchema.optional(); }, - get memberships(){ return MembershipUncheckedUpdateManyWithoutUserNestedInputObjectSchema.optional(); }, - get givenMarks(){ return PersonalMarkUncheckedUpdateManyWithoutGivenByNestedInputObjectSchema.optional(); }, - get attendeesRefunded(){ return AttendeeUncheckedUpdateManyWithoutPaymentRefundedByNestedInputObjectSchema.optional(); }, - get auditLogs(){ return AuditLogUncheckedUpdateManyWithoutUserNestedInputObjectSchema.optional(); }, - get deregisterReasons(){ return DeregisterReasonUncheckedUpdateManyWithoutUserNestedInputObjectSchema.optional(); }, - get notificationsReceived(){ return NotificationRecipientUncheckedUpdateManyWithoutUserNestedInputObjectSchema.optional(); }, - get notificationsCreated(){ return NotificationUncheckedUpdateManyWithoutCreatedByNestedInputObjectSchema.optional(); }, - get contestants(){ return ContestantUncheckedUpdateManyWithoutUserNestedInputObjectSchema.optional(); }, - get contestTeams(){ return ContestTeamUncheckedUpdateManyWithoutMembersNestedInputObjectSchema.optional(); } -}).strict(); -export const UserUncheckedUpdateWithoutNotificationsUpdatedInputObjectSchema: z.ZodType = z.lazy(__makeSchema_UserUncheckedUpdateWithoutNotificationsUpdatedInput_schema) as unknown as z.ZodType; -export const UserUncheckedUpdateWithoutNotificationsUpdatedInputObjectZodSchema = z.lazy(__makeSchema_UserUncheckedUpdateWithoutNotificationsUpdatedInput_schema); - - -// File: TaskUpsertWithoutNotificationsInput.schema.ts -const __makeSchema_TaskUpsertWithoutNotificationsInput_schema = () => z.object({ - update: z.union([TaskUpdateWithoutNotificationsInputObjectSchema, TaskUncheckedUpdateWithoutNotificationsInputObjectSchema]), - create: z.union([TaskCreateWithoutNotificationsInputObjectSchema, TaskUncheckedCreateWithoutNotificationsInputObjectSchema]), - get where(){ return TaskWhereInputObjectSchema.optional(); } -}).strict(); -export const TaskUpsertWithoutNotificationsInputObjectSchema: z.ZodType = z.lazy(__makeSchema_TaskUpsertWithoutNotificationsInput_schema) as unknown as z.ZodType; -export const TaskUpsertWithoutNotificationsInputObjectZodSchema = z.lazy(__makeSchema_TaskUpsertWithoutNotificationsInput_schema); - - -// File: TaskUpdateToOneWithWhereWithoutNotificationsInput.schema.ts -const __makeSchema_TaskUpdateToOneWithWhereWithoutNotificationsInput_schema = () => z.object({ - get where(){ return TaskWhereInputObjectSchema.optional(); }, - data: z.union([TaskUpdateWithoutNotificationsInputObjectSchema, TaskUncheckedUpdateWithoutNotificationsInputObjectSchema]) -}).strict(); -export const TaskUpdateToOneWithWhereWithoutNotificationsInputObjectSchema: z.ZodType = z.lazy(__makeSchema_TaskUpdateToOneWithWhereWithoutNotificationsInput_schema) as unknown as z.ZodType; -export const TaskUpdateToOneWithWhereWithoutNotificationsInputObjectZodSchema = z.lazy(__makeSchema_TaskUpdateToOneWithWhereWithoutNotificationsInput_schema); - - -// File: TaskUpdateWithoutNotificationsInput.schema.ts -const __makeSchema_TaskUpdateWithoutNotificationsInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - type: z.union([TaskTypeSchema, EnumTaskTypeFieldUpdateOperationsInputObjectSchema]).optional(), - status: z.union([TaskStatusSchema, EnumTaskStatusFieldUpdateOperationsInputObjectSchema]).optional(), - payload: z.union([JsonNullValueInputSchema, jsonSchema]).optional(), - createdAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - scheduledAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - processedAt: z.union([z.coerce.date(), NullableDateTimeFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - get recurringTask(){ return RecurringTaskUpdateOneWithoutTasksNestedInputObjectSchema.optional(); }, - get attendancePools(){ return AttendancePoolUpdateManyWithoutTaskNestedInputObjectSchema.optional(); } -}).strict(); -export const TaskUpdateWithoutNotificationsInputObjectSchema: z.ZodType = z.lazy(__makeSchema_TaskUpdateWithoutNotificationsInput_schema) as unknown as z.ZodType; -export const TaskUpdateWithoutNotificationsInputObjectZodSchema = z.lazy(__makeSchema_TaskUpdateWithoutNotificationsInput_schema); - - -// File: TaskUncheckedUpdateWithoutNotificationsInput.schema.ts -const __makeSchema_TaskUncheckedUpdateWithoutNotificationsInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - type: z.union([TaskTypeSchema, EnumTaskTypeFieldUpdateOperationsInputObjectSchema]).optional(), - status: z.union([TaskStatusSchema, EnumTaskStatusFieldUpdateOperationsInputObjectSchema]).optional(), - payload: z.union([JsonNullValueInputSchema, jsonSchema]).optional(), - createdAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - scheduledAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - processedAt: z.union([z.coerce.date(), NullableDateTimeFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - recurringTaskId: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - get attendancePools(){ return AttendancePoolUncheckedUpdateManyWithoutTaskNestedInputObjectSchema.optional(); } -}).strict(); -export const TaskUncheckedUpdateWithoutNotificationsInputObjectSchema: z.ZodType = z.lazy(__makeSchema_TaskUncheckedUpdateWithoutNotificationsInput_schema) as unknown as z.ZodType; -export const TaskUncheckedUpdateWithoutNotificationsInputObjectZodSchema = z.lazy(__makeSchema_TaskUncheckedUpdateWithoutNotificationsInput_schema); - - -// File: NotificationRecipientUpsertWithWhereUniqueWithoutNotificationInput.schema.ts -const __makeSchema_NotificationRecipientUpsertWithWhereUniqueWithoutNotificationInput_schema = () => z.object({ - get where(){ return NotificationRecipientWhereUniqueInputObjectSchema; }, - update: z.union([NotificationRecipientUpdateWithoutNotificationInputObjectSchema, NotificationRecipientUncheckedUpdateWithoutNotificationInputObjectSchema]), - create: z.union([NotificationRecipientCreateWithoutNotificationInputObjectSchema, NotificationRecipientUncheckedCreateWithoutNotificationInputObjectSchema]) -}).strict(); -export const NotificationRecipientUpsertWithWhereUniqueWithoutNotificationInputObjectSchema: z.ZodType = z.lazy(__makeSchema_NotificationRecipientUpsertWithWhereUniqueWithoutNotificationInput_schema) as unknown as z.ZodType; -export const NotificationRecipientUpsertWithWhereUniqueWithoutNotificationInputObjectZodSchema = z.lazy(__makeSchema_NotificationRecipientUpsertWithWhereUniqueWithoutNotificationInput_schema); - - -// File: NotificationRecipientUpdateWithWhereUniqueWithoutNotificationInput.schema.ts -const __makeSchema_NotificationRecipientUpdateWithWhereUniqueWithoutNotificationInput_schema = () => z.object({ - get where(){ return NotificationRecipientWhereUniqueInputObjectSchema; }, - data: z.union([NotificationRecipientUpdateWithoutNotificationInputObjectSchema, NotificationRecipientUncheckedUpdateWithoutNotificationInputObjectSchema]) -}).strict(); -export const NotificationRecipientUpdateWithWhereUniqueWithoutNotificationInputObjectSchema: z.ZodType = z.lazy(__makeSchema_NotificationRecipientUpdateWithWhereUniqueWithoutNotificationInput_schema) as unknown as z.ZodType; -export const NotificationRecipientUpdateWithWhereUniqueWithoutNotificationInputObjectZodSchema = z.lazy(__makeSchema_NotificationRecipientUpdateWithWhereUniqueWithoutNotificationInput_schema); - - -// File: NotificationRecipientUpdateManyWithWhereWithoutNotificationInput.schema.ts -const __makeSchema_NotificationRecipientUpdateManyWithWhereWithoutNotificationInput_schema = () => z.object({ - get where(){ return NotificationRecipientScalarWhereInputObjectSchema; }, - data: z.union([NotificationRecipientUpdateManyMutationInputObjectSchema, NotificationRecipientUncheckedUpdateManyWithoutNotificationInputObjectSchema]) -}).strict(); -export const NotificationRecipientUpdateManyWithWhereWithoutNotificationInputObjectSchema: z.ZodType = z.lazy(__makeSchema_NotificationRecipientUpdateManyWithWhereWithoutNotificationInput_schema) as unknown as z.ZodType; -export const NotificationRecipientUpdateManyWithWhereWithoutNotificationInputObjectZodSchema = z.lazy(__makeSchema_NotificationRecipientUpdateManyWithWhereWithoutNotificationInput_schema); - - -// File: ContestantCreateWithoutWonContestInput.schema.ts -const __makeSchema_ContestantCreateWithoutWonContestInput_schema = () => z.object({ - id: z.string().optional(), - resultValue: z.number().int().optional().nullable(), - get contest(){ return ContestCreateNestedOneWithoutContestantsInputObjectSchema; }, - get user(){ return UserCreateNestedOneWithoutContestantsInputObjectSchema.optional(); }, - get team(){ return ContestTeamCreateNestedOneWithoutContestantInputObjectSchema.optional(); } -}).strict(); -export const ContestantCreateWithoutWonContestInputObjectSchema: z.ZodType = z.lazy(__makeSchema_ContestantCreateWithoutWonContestInput_schema) as unknown as z.ZodType; -export const ContestantCreateWithoutWonContestInputObjectZodSchema = z.lazy(__makeSchema_ContestantCreateWithoutWonContestInput_schema); - - -// File: ContestantUncheckedCreateWithoutWonContestInput.schema.ts -const __makeSchema_ContestantUncheckedCreateWithoutWonContestInput_schema = () => z.object({ - id: z.string().optional(), - resultValue: z.number().int().optional().nullable(), - contestId: z.string(), - userId: z.string().optional().nullable(), - get team(){ return ContestTeamUncheckedCreateNestedOneWithoutContestantInputObjectSchema.optional(); } -}).strict(); -export const ContestantUncheckedCreateWithoutWonContestInputObjectSchema: z.ZodType = z.lazy(__makeSchema_ContestantUncheckedCreateWithoutWonContestInput_schema) as unknown as z.ZodType; -export const ContestantUncheckedCreateWithoutWonContestInputObjectZodSchema = z.lazy(__makeSchema_ContestantUncheckedCreateWithoutWonContestInput_schema); - - -// File: ContestantCreateOrConnectWithoutWonContestInput.schema.ts -const __makeSchema_ContestantCreateOrConnectWithoutWonContestInput_schema = () => z.object({ - get where(){ return ContestantWhereUniqueInputObjectSchema; }, - create: z.union([ContestantCreateWithoutWonContestInputObjectSchema, ContestantUncheckedCreateWithoutWonContestInputObjectSchema]) -}).strict(); -export const ContestantCreateOrConnectWithoutWonContestInputObjectSchema: z.ZodType = z.lazy(__makeSchema_ContestantCreateOrConnectWithoutWonContestInput_schema) as unknown as z.ZodType; -export const ContestantCreateOrConnectWithoutWonContestInputObjectZodSchema = z.lazy(__makeSchema_ContestantCreateOrConnectWithoutWonContestInput_schema); - - -// File: ContestantCreateWithoutContestInput.schema.ts -const __makeSchema_ContestantCreateWithoutContestInput_schema = () => z.object({ - id: z.string().optional(), - resultValue: z.number().int().optional().nullable(), - get user(){ return UserCreateNestedOneWithoutContestantsInputObjectSchema.optional(); }, - get team(){ return ContestTeamCreateNestedOneWithoutContestantInputObjectSchema.optional(); }, - get wonContest(){ return ContestCreateNestedOneWithoutWinnerContestantInputObjectSchema.optional(); } -}).strict(); -export const ContestantCreateWithoutContestInputObjectSchema: z.ZodType = z.lazy(__makeSchema_ContestantCreateWithoutContestInput_schema) as unknown as z.ZodType; -export const ContestantCreateWithoutContestInputObjectZodSchema = z.lazy(__makeSchema_ContestantCreateWithoutContestInput_schema); - - -// File: ContestantUncheckedCreateWithoutContestInput.schema.ts -const __makeSchema_ContestantUncheckedCreateWithoutContestInput_schema = () => z.object({ - id: z.string().optional(), - resultValue: z.number().int().optional().nullable(), - userId: z.string().optional().nullable(), - get team(){ return ContestTeamUncheckedCreateNestedOneWithoutContestantInputObjectSchema.optional(); }, - get wonContest(){ return ContestUncheckedCreateNestedOneWithoutWinnerContestantInputObjectSchema.optional(); } -}).strict(); -export const ContestantUncheckedCreateWithoutContestInputObjectSchema: z.ZodType = z.lazy(__makeSchema_ContestantUncheckedCreateWithoutContestInput_schema) as unknown as z.ZodType; -export const ContestantUncheckedCreateWithoutContestInputObjectZodSchema = z.lazy(__makeSchema_ContestantUncheckedCreateWithoutContestInput_schema); - - -// File: ContestantCreateOrConnectWithoutContestInput.schema.ts -const __makeSchema_ContestantCreateOrConnectWithoutContestInput_schema = () => z.object({ - get where(){ return ContestantWhereUniqueInputObjectSchema; }, - create: z.union([ContestantCreateWithoutContestInputObjectSchema, ContestantUncheckedCreateWithoutContestInputObjectSchema]) -}).strict(); -export const ContestantCreateOrConnectWithoutContestInputObjectSchema: z.ZodType = z.lazy(__makeSchema_ContestantCreateOrConnectWithoutContestInput_schema) as unknown as z.ZodType; -export const ContestantCreateOrConnectWithoutContestInputObjectZodSchema = z.lazy(__makeSchema_ContestantCreateOrConnectWithoutContestInput_schema); - - -// File: ContestantCreateManyContestInputEnvelope.schema.ts -const __makeSchema_ContestantCreateManyContestInputEnvelope_schema = () => z.object({ - data: z.union([ContestantCreateManyContestInputObjectSchema, ContestantCreateManyContestInputObjectSchema.array()]), - skipDuplicates: z.boolean().optional() -}).strict(); -export const ContestantCreateManyContestInputEnvelopeObjectSchema: z.ZodType = z.lazy(__makeSchema_ContestantCreateManyContestInputEnvelope_schema) as unknown as z.ZodType; -export const ContestantCreateManyContestInputEnvelopeObjectZodSchema = z.lazy(__makeSchema_ContestantCreateManyContestInputEnvelope_schema); - - -// File: GroupCreateWithoutContestsInput.schema.ts -const __makeSchema_GroupCreateWithoutContestsInput_schema = () => z.object({ - slug: z.string(), - abbreviation: z.string(), - name: z.string().optional().nullable(), - shortDescription: z.string().optional().nullable(), - description: z.string(), - imageUrl: z.string().optional().nullable(), - email: z.string().optional().nullable(), - contactUrl: z.string().optional().nullable(), - slackUrl: z.string().optional().nullable(), - showLeaderAsContact: z.boolean().optional(), - createdAt: z.coerce.date().optional(), - deactivatedAt: z.coerce.date().optional().nullable(), - workspaceGroupId: z.string().optional().nullable(), - memberVisibility: GroupMemberVisibilitySchema.optional(), - recruitmentMethod: GroupRecruitmentMethodSchema.optional(), - type: GroupTypeSchema, - get events(){ return EventHostingGroupCreateNestedManyWithoutGroupInputObjectSchema.optional(); }, - get memberships(){ return GroupMembershipCreateNestedManyWithoutGroupInputObjectSchema.optional(); }, - get marks(){ return MarkGroupCreateNestedManyWithoutGroupInputObjectSchema.optional(); }, - get roles(){ return GroupRoleCreateNestedManyWithoutGroupInputObjectSchema.optional(); }, - get notifications(){ return NotificationCreateNestedManyWithoutActorGroupInputObjectSchema.optional(); } -}).strict(); -export const GroupCreateWithoutContestsInputObjectSchema: z.ZodType = z.lazy(__makeSchema_GroupCreateWithoutContestsInput_schema) as unknown as z.ZodType; -export const GroupCreateWithoutContestsInputObjectZodSchema = z.lazy(__makeSchema_GroupCreateWithoutContestsInput_schema); - - -// File: GroupUncheckedCreateWithoutContestsInput.schema.ts -const __makeSchema_GroupUncheckedCreateWithoutContestsInput_schema = () => z.object({ - slug: z.string(), - abbreviation: z.string(), - name: z.string().optional().nullable(), - shortDescription: z.string().optional().nullable(), - description: z.string(), - imageUrl: z.string().optional().nullable(), - email: z.string().optional().nullable(), - contactUrl: z.string().optional().nullable(), - slackUrl: z.string().optional().nullable(), - showLeaderAsContact: z.boolean().optional(), - createdAt: z.coerce.date().optional(), - deactivatedAt: z.coerce.date().optional().nullable(), - workspaceGroupId: z.string().optional().nullable(), - memberVisibility: GroupMemberVisibilitySchema.optional(), - recruitmentMethod: GroupRecruitmentMethodSchema.optional(), - type: GroupTypeSchema, - get events(){ return EventHostingGroupUncheckedCreateNestedManyWithoutGroupInputObjectSchema.optional(); }, - get memberships(){ return GroupMembershipUncheckedCreateNestedManyWithoutGroupInputObjectSchema.optional(); }, - get marks(){ return MarkGroupUncheckedCreateNestedManyWithoutGroupInputObjectSchema.optional(); }, - get roles(){ return GroupRoleUncheckedCreateNestedManyWithoutGroupInputObjectSchema.optional(); }, - get notifications(){ return NotificationUncheckedCreateNestedManyWithoutActorGroupInputObjectSchema.optional(); } -}).strict(); -export const GroupUncheckedCreateWithoutContestsInputObjectSchema: z.ZodType = z.lazy(__makeSchema_GroupUncheckedCreateWithoutContestsInput_schema) as unknown as z.ZodType; -export const GroupUncheckedCreateWithoutContestsInputObjectZodSchema = z.lazy(__makeSchema_GroupUncheckedCreateWithoutContestsInput_schema); - - -// File: GroupCreateOrConnectWithoutContestsInput.schema.ts -const __makeSchema_GroupCreateOrConnectWithoutContestsInput_schema = () => z.object({ - get where(){ return GroupWhereUniqueInputObjectSchema; }, - create: z.union([GroupCreateWithoutContestsInputObjectSchema, GroupUncheckedCreateWithoutContestsInputObjectSchema]) -}).strict(); -export const GroupCreateOrConnectWithoutContestsInputObjectSchema: z.ZodType = z.lazy(__makeSchema_GroupCreateOrConnectWithoutContestsInput_schema) as unknown as z.ZodType; -export const GroupCreateOrConnectWithoutContestsInputObjectZodSchema = z.lazy(__makeSchema_GroupCreateOrConnectWithoutContestsInput_schema); - - -// File: EventCreateWithoutContestInput.schema.ts -const __makeSchema_EventCreateWithoutContestInput_schema = () => z.object({ - id: z.string().optional(), - title: z.string(), - start: z.coerce.date(), - end: z.coerce.date(), - status: EventStatusSchema, - description: z.string(), - shortDescription: z.string().optional().nullable(), - imageUrl: z.string().optional().nullable(), - locationTitle: z.string().optional().nullable(), - locationAddress: z.string().optional().nullable(), - locationLink: z.string().optional().nullable(), - type: EventTypeSchema, - markForMissedAttendance: z.boolean().optional(), - createdAt: z.coerce.date().optional(), - updatedAt: z.coerce.date().optional(), - metadataImportId: z.number().int().optional().nullable(), - get feedbackForm(){ return FeedbackFormCreateNestedOneWithoutEventInputObjectSchema.optional(); }, - get fadderuke(){ return FadderukeCreateNestedOneWithoutEventInputObjectSchema.optional(); }, - get attendance(){ return AttendanceCreateNestedOneWithoutEventsInputObjectSchema.optional(); }, - get parent(){ return EventCreateNestedOneWithoutChildrenInputObjectSchema.optional(); }, - get children(){ return EventCreateNestedManyWithoutParentInputObjectSchema.optional(); }, - get companies(){ return EventCompanyCreateNestedManyWithoutEventInputObjectSchema.optional(); }, - get hostingGroups(){ return EventHostingGroupCreateNestedManyWithoutEventInputObjectSchema.optional(); }, - get deregisterReasons(){ return DeregisterReasonCreateNestedManyWithoutEventInputObjectSchema.optional(); } -}).strict(); -export const EventCreateWithoutContestInputObjectSchema: z.ZodType = z.lazy(__makeSchema_EventCreateWithoutContestInput_schema) as unknown as z.ZodType; -export const EventCreateWithoutContestInputObjectZodSchema = z.lazy(__makeSchema_EventCreateWithoutContestInput_schema); - - -// File: EventUncheckedCreateWithoutContestInput.schema.ts -const __makeSchema_EventUncheckedCreateWithoutContestInput_schema = () => z.object({ - id: z.string().optional(), - title: z.string(), - start: z.coerce.date(), - end: z.coerce.date(), - status: EventStatusSchema, - description: z.string(), - shortDescription: z.string().optional().nullable(), - imageUrl: z.string().optional().nullable(), - locationTitle: z.string().optional().nullable(), - locationAddress: z.string().optional().nullable(), - locationLink: z.string().optional().nullable(), - type: EventTypeSchema, - markForMissedAttendance: z.boolean().optional(), - createdAt: z.coerce.date().optional(), - updatedAt: z.coerce.date().optional(), - attendanceId: z.string().optional().nullable(), - parentId: z.string().optional().nullable(), - metadataImportId: z.number().int().optional().nullable(), - get feedbackForm(){ return FeedbackFormUncheckedCreateNestedOneWithoutEventInputObjectSchema.optional(); }, - get fadderuke(){ return FadderukeUncheckedCreateNestedOneWithoutEventInputObjectSchema.optional(); }, - get children(){ return EventUncheckedCreateNestedManyWithoutParentInputObjectSchema.optional(); }, - get companies(){ return EventCompanyUncheckedCreateNestedManyWithoutEventInputObjectSchema.optional(); }, - get hostingGroups(){ return EventHostingGroupUncheckedCreateNestedManyWithoutEventInputObjectSchema.optional(); }, - get deregisterReasons(){ return DeregisterReasonUncheckedCreateNestedManyWithoutEventInputObjectSchema.optional(); } -}).strict(); -export const EventUncheckedCreateWithoutContestInputObjectSchema: z.ZodType = z.lazy(__makeSchema_EventUncheckedCreateWithoutContestInput_schema) as unknown as z.ZodType; -export const EventUncheckedCreateWithoutContestInputObjectZodSchema = z.lazy(__makeSchema_EventUncheckedCreateWithoutContestInput_schema); - - -// File: EventCreateOrConnectWithoutContestInput.schema.ts -const __makeSchema_EventCreateOrConnectWithoutContestInput_schema = () => z.object({ - get where(){ return EventWhereUniqueInputObjectSchema; }, - create: z.union([EventCreateWithoutContestInputObjectSchema, EventUncheckedCreateWithoutContestInputObjectSchema]) -}).strict(); -export const EventCreateOrConnectWithoutContestInputObjectSchema: z.ZodType = z.lazy(__makeSchema_EventCreateOrConnectWithoutContestInput_schema) as unknown as z.ZodType; -export const EventCreateOrConnectWithoutContestInputObjectZodSchema = z.lazy(__makeSchema_EventCreateOrConnectWithoutContestInput_schema); - - -// File: EventCreateManyContestInputEnvelope.schema.ts -const __makeSchema_EventCreateManyContestInputEnvelope_schema = () => z.object({ - data: z.union([EventCreateManyContestInputObjectSchema, EventCreateManyContestInputObjectSchema.array()]), - skipDuplicates: z.boolean().optional() -}).strict(); -export const EventCreateManyContestInputEnvelopeObjectSchema: z.ZodType = z.lazy(__makeSchema_EventCreateManyContestInputEnvelope_schema) as unknown as z.ZodType; -export const EventCreateManyContestInputEnvelopeObjectZodSchema = z.lazy(__makeSchema_EventCreateManyContestInputEnvelope_schema); - - -// File: ContestantUpsertWithoutWonContestInput.schema.ts -const __makeSchema_ContestantUpsertWithoutWonContestInput_schema = () => z.object({ - update: z.union([ContestantUpdateWithoutWonContestInputObjectSchema, ContestantUncheckedUpdateWithoutWonContestInputObjectSchema]), - create: z.union([ContestantCreateWithoutWonContestInputObjectSchema, ContestantUncheckedCreateWithoutWonContestInputObjectSchema]), - get where(){ return ContestantWhereInputObjectSchema.optional(); } -}).strict(); -export const ContestantUpsertWithoutWonContestInputObjectSchema: z.ZodType = z.lazy(__makeSchema_ContestantUpsertWithoutWonContestInput_schema) as unknown as z.ZodType; -export const ContestantUpsertWithoutWonContestInputObjectZodSchema = z.lazy(__makeSchema_ContestantUpsertWithoutWonContestInput_schema); - - -// File: ContestantUpdateToOneWithWhereWithoutWonContestInput.schema.ts -const __makeSchema_ContestantUpdateToOneWithWhereWithoutWonContestInput_schema = () => z.object({ - get where(){ return ContestantWhereInputObjectSchema.optional(); }, - data: z.union([ContestantUpdateWithoutWonContestInputObjectSchema, ContestantUncheckedUpdateWithoutWonContestInputObjectSchema]) -}).strict(); -export const ContestantUpdateToOneWithWhereWithoutWonContestInputObjectSchema: z.ZodType = z.lazy(__makeSchema_ContestantUpdateToOneWithWhereWithoutWonContestInput_schema) as unknown as z.ZodType; -export const ContestantUpdateToOneWithWhereWithoutWonContestInputObjectZodSchema = z.lazy(__makeSchema_ContestantUpdateToOneWithWhereWithoutWonContestInput_schema); - - -// File: ContestantUpdateWithoutWonContestInput.schema.ts -const __makeSchema_ContestantUpdateWithoutWonContestInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - resultValue: z.union([z.number().int(), NullableIntFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - get contest(){ return ContestUpdateOneRequiredWithoutContestantsNestedInputObjectSchema.optional(); }, - get user(){ return UserUpdateOneWithoutContestantsNestedInputObjectSchema.optional(); }, - get team(){ return ContestTeamUpdateOneWithoutContestantNestedInputObjectSchema.optional(); } -}).strict(); -export const ContestantUpdateWithoutWonContestInputObjectSchema: z.ZodType = z.lazy(__makeSchema_ContestantUpdateWithoutWonContestInput_schema) as unknown as z.ZodType; -export const ContestantUpdateWithoutWonContestInputObjectZodSchema = z.lazy(__makeSchema_ContestantUpdateWithoutWonContestInput_schema); - - -// File: ContestantUncheckedUpdateWithoutWonContestInput.schema.ts -const __makeSchema_ContestantUncheckedUpdateWithoutWonContestInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - resultValue: z.union([z.number().int(), NullableIntFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - contestId: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - userId: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - get team(){ return ContestTeamUncheckedUpdateOneWithoutContestantNestedInputObjectSchema.optional(); } -}).strict(); -export const ContestantUncheckedUpdateWithoutWonContestInputObjectSchema: z.ZodType = z.lazy(__makeSchema_ContestantUncheckedUpdateWithoutWonContestInput_schema) as unknown as z.ZodType; -export const ContestantUncheckedUpdateWithoutWonContestInputObjectZodSchema = z.lazy(__makeSchema_ContestantUncheckedUpdateWithoutWonContestInput_schema); - - -// File: ContestantUpsertWithWhereUniqueWithoutContestInput.schema.ts -const __makeSchema_ContestantUpsertWithWhereUniqueWithoutContestInput_schema = () => z.object({ - get where(){ return ContestantWhereUniqueInputObjectSchema; }, - update: z.union([ContestantUpdateWithoutContestInputObjectSchema, ContestantUncheckedUpdateWithoutContestInputObjectSchema]), - create: z.union([ContestantCreateWithoutContestInputObjectSchema, ContestantUncheckedCreateWithoutContestInputObjectSchema]) -}).strict(); -export const ContestantUpsertWithWhereUniqueWithoutContestInputObjectSchema: z.ZodType = z.lazy(__makeSchema_ContestantUpsertWithWhereUniqueWithoutContestInput_schema) as unknown as z.ZodType; -export const ContestantUpsertWithWhereUniqueWithoutContestInputObjectZodSchema = z.lazy(__makeSchema_ContestantUpsertWithWhereUniqueWithoutContestInput_schema); - - -// File: ContestantUpdateWithWhereUniqueWithoutContestInput.schema.ts -const __makeSchema_ContestantUpdateWithWhereUniqueWithoutContestInput_schema = () => z.object({ - get where(){ return ContestantWhereUniqueInputObjectSchema; }, - data: z.union([ContestantUpdateWithoutContestInputObjectSchema, ContestantUncheckedUpdateWithoutContestInputObjectSchema]) -}).strict(); -export const ContestantUpdateWithWhereUniqueWithoutContestInputObjectSchema: z.ZodType = z.lazy(__makeSchema_ContestantUpdateWithWhereUniqueWithoutContestInput_schema) as unknown as z.ZodType; -export const ContestantUpdateWithWhereUniqueWithoutContestInputObjectZodSchema = z.lazy(__makeSchema_ContestantUpdateWithWhereUniqueWithoutContestInput_schema); - - -// File: ContestantUpdateManyWithWhereWithoutContestInput.schema.ts -const __makeSchema_ContestantUpdateManyWithWhereWithoutContestInput_schema = () => z.object({ - get where(){ return ContestantScalarWhereInputObjectSchema; }, - data: z.union([ContestantUpdateManyMutationInputObjectSchema, ContestantUncheckedUpdateManyWithoutContestInputObjectSchema]) -}).strict(); -export const ContestantUpdateManyWithWhereWithoutContestInputObjectSchema: z.ZodType = z.lazy(__makeSchema_ContestantUpdateManyWithWhereWithoutContestInput_schema) as unknown as z.ZodType; -export const ContestantUpdateManyWithWhereWithoutContestInputObjectZodSchema = z.lazy(__makeSchema_ContestantUpdateManyWithWhereWithoutContestInput_schema); - - -// File: GroupUpsertWithWhereUniqueWithoutContestsInput.schema.ts -const __makeSchema_GroupUpsertWithWhereUniqueWithoutContestsInput_schema = () => z.object({ - get where(){ return GroupWhereUniqueInputObjectSchema; }, - update: z.union([GroupUpdateWithoutContestsInputObjectSchema, GroupUncheckedUpdateWithoutContestsInputObjectSchema]), - create: z.union([GroupCreateWithoutContestsInputObjectSchema, GroupUncheckedCreateWithoutContestsInputObjectSchema]) -}).strict(); -export const GroupUpsertWithWhereUniqueWithoutContestsInputObjectSchema: z.ZodType = z.lazy(__makeSchema_GroupUpsertWithWhereUniqueWithoutContestsInput_schema) as unknown as z.ZodType; -export const GroupUpsertWithWhereUniqueWithoutContestsInputObjectZodSchema = z.lazy(__makeSchema_GroupUpsertWithWhereUniqueWithoutContestsInput_schema); - - -// File: GroupUpdateWithWhereUniqueWithoutContestsInput.schema.ts -const __makeSchema_GroupUpdateWithWhereUniqueWithoutContestsInput_schema = () => z.object({ - get where(){ return GroupWhereUniqueInputObjectSchema; }, - data: z.union([GroupUpdateWithoutContestsInputObjectSchema, GroupUncheckedUpdateWithoutContestsInputObjectSchema]) -}).strict(); -export const GroupUpdateWithWhereUniqueWithoutContestsInputObjectSchema: z.ZodType = z.lazy(__makeSchema_GroupUpdateWithWhereUniqueWithoutContestsInput_schema) as unknown as z.ZodType; -export const GroupUpdateWithWhereUniqueWithoutContestsInputObjectZodSchema = z.lazy(__makeSchema_GroupUpdateWithWhereUniqueWithoutContestsInput_schema); - - -// File: GroupUpdateManyWithWhereWithoutContestsInput.schema.ts -const __makeSchema_GroupUpdateManyWithWhereWithoutContestsInput_schema = () => z.object({ - get where(){ return GroupScalarWhereInputObjectSchema; }, - data: z.union([GroupUpdateManyMutationInputObjectSchema, GroupUncheckedUpdateManyWithoutContestsInputObjectSchema]) -}).strict(); -export const GroupUpdateManyWithWhereWithoutContestsInputObjectSchema: z.ZodType = z.lazy(__makeSchema_GroupUpdateManyWithWhereWithoutContestsInput_schema) as unknown as z.ZodType; -export const GroupUpdateManyWithWhereWithoutContestsInputObjectZodSchema = z.lazy(__makeSchema_GroupUpdateManyWithWhereWithoutContestsInput_schema); - - -// File: GroupScalarWhereInput.schema.ts -const __makeSchema_GroupScalarWhereInput_schema = () => z.object({ - AND: z.union([GroupScalarWhereInputObjectSchema, GroupScalarWhereInputObjectSchema.array()]).optional(), - get OR(){ return GroupScalarWhereInputObjectSchema.array().optional(); }, - NOT: z.union([GroupScalarWhereInputObjectSchema, GroupScalarWhereInputObjectSchema.array()]).optional(), - slug: z.union([StringFilterObjectSchema, z.string()]).optional(), - abbreviation: z.union([StringFilterObjectSchema, z.string()]).optional(), - name: z.union([StringNullableFilterObjectSchema, z.string()]).optional().nullable(), - shortDescription: z.union([StringNullableFilterObjectSchema, z.string()]).optional().nullable(), - description: z.union([StringFilterObjectSchema, z.string()]).optional(), - imageUrl: z.union([StringNullableFilterObjectSchema, z.string()]).optional().nullable(), - email: z.union([StringNullableFilterObjectSchema, z.string()]).optional().nullable(), - contactUrl: z.union([StringNullableFilterObjectSchema, z.string()]).optional().nullable(), - slackUrl: z.union([StringNullableFilterObjectSchema, z.string()]).optional().nullable(), - showLeaderAsContact: z.union([BoolFilterObjectSchema, z.boolean()]).optional(), - createdAt: z.union([DateTimeFilterObjectSchema, z.coerce.date()]).optional(), - deactivatedAt: z.union([DateTimeNullableFilterObjectSchema, z.coerce.date()]).optional().nullable(), - workspaceGroupId: z.union([StringNullableFilterObjectSchema, z.string()]).optional().nullable(), - memberVisibility: z.union([EnumGroupMemberVisibilityFilterObjectSchema, GroupMemberVisibilitySchema]).optional(), - recruitmentMethod: z.union([EnumGroupRecruitmentMethodFilterObjectSchema, GroupRecruitmentMethodSchema]).optional(), - type: z.union([EnumGroupTypeFilterObjectSchema, GroupTypeSchema]).optional() -}).strict(); -export const GroupScalarWhereInputObjectSchema: z.ZodType = z.lazy(__makeSchema_GroupScalarWhereInput_schema) as unknown as z.ZodType; -export const GroupScalarWhereInputObjectZodSchema = z.lazy(__makeSchema_GroupScalarWhereInput_schema); - - -// File: EventUpsertWithWhereUniqueWithoutContestInput.schema.ts -const __makeSchema_EventUpsertWithWhereUniqueWithoutContestInput_schema = () => z.object({ - get where(){ return EventWhereUniqueInputObjectSchema; }, - update: z.union([EventUpdateWithoutContestInputObjectSchema, EventUncheckedUpdateWithoutContestInputObjectSchema]), - create: z.union([EventCreateWithoutContestInputObjectSchema, EventUncheckedCreateWithoutContestInputObjectSchema]) -}).strict(); -export const EventUpsertWithWhereUniqueWithoutContestInputObjectSchema: z.ZodType = z.lazy(__makeSchema_EventUpsertWithWhereUniqueWithoutContestInput_schema) as unknown as z.ZodType; -export const EventUpsertWithWhereUniqueWithoutContestInputObjectZodSchema = z.lazy(__makeSchema_EventUpsertWithWhereUniqueWithoutContestInput_schema); - - -// File: EventUpdateWithWhereUniqueWithoutContestInput.schema.ts -const __makeSchema_EventUpdateWithWhereUniqueWithoutContestInput_schema = () => z.object({ - get where(){ return EventWhereUniqueInputObjectSchema; }, - data: z.union([EventUpdateWithoutContestInputObjectSchema, EventUncheckedUpdateWithoutContestInputObjectSchema]) -}).strict(); -export const EventUpdateWithWhereUniqueWithoutContestInputObjectSchema: z.ZodType = z.lazy(__makeSchema_EventUpdateWithWhereUniqueWithoutContestInput_schema) as unknown as z.ZodType; -export const EventUpdateWithWhereUniqueWithoutContestInputObjectZodSchema = z.lazy(__makeSchema_EventUpdateWithWhereUniqueWithoutContestInput_schema); - - -// File: EventUpdateManyWithWhereWithoutContestInput.schema.ts -const __makeSchema_EventUpdateManyWithWhereWithoutContestInput_schema = () => z.object({ - get where(){ return EventScalarWhereInputObjectSchema; }, - data: z.union([EventUpdateManyMutationInputObjectSchema, EventUncheckedUpdateManyWithoutContestInputObjectSchema]) -}).strict(); -export const EventUpdateManyWithWhereWithoutContestInputObjectSchema: z.ZodType = z.lazy(__makeSchema_EventUpdateManyWithWhereWithoutContestInput_schema) as unknown as z.ZodType; -export const EventUpdateManyWithWhereWithoutContestInputObjectZodSchema = z.lazy(__makeSchema_EventUpdateManyWithWhereWithoutContestInput_schema); - - -// File: EventCreateWithoutFadderukeInput.schema.ts -const __makeSchema_EventCreateWithoutFadderukeInput_schema = () => z.object({ - id: z.string().optional(), - title: z.string(), - start: z.coerce.date(), - end: z.coerce.date(), - status: EventStatusSchema, - description: z.string(), - shortDescription: z.string().optional().nullable(), - imageUrl: z.string().optional().nullable(), - locationTitle: z.string().optional().nullable(), - locationAddress: z.string().optional().nullable(), - locationLink: z.string().optional().nullable(), - type: EventTypeSchema, - markForMissedAttendance: z.boolean().optional(), - createdAt: z.coerce.date().optional(), - updatedAt: z.coerce.date().optional(), - metadataImportId: z.number().int().optional().nullable(), - get feedbackForm(){ return FeedbackFormCreateNestedOneWithoutEventInputObjectSchema.optional(); }, - get attendance(){ return AttendanceCreateNestedOneWithoutEventsInputObjectSchema.optional(); }, - get parent(){ return EventCreateNestedOneWithoutChildrenInputObjectSchema.optional(); }, - get children(){ return EventCreateNestedManyWithoutParentInputObjectSchema.optional(); }, - get contest(){ return ContestCreateNestedOneWithoutEventsInputObjectSchema.optional(); }, - get companies(){ return EventCompanyCreateNestedManyWithoutEventInputObjectSchema.optional(); }, - get hostingGroups(){ return EventHostingGroupCreateNestedManyWithoutEventInputObjectSchema.optional(); }, - get deregisterReasons(){ return DeregisterReasonCreateNestedManyWithoutEventInputObjectSchema.optional(); } -}).strict(); -export const EventCreateWithoutFadderukeInputObjectSchema: z.ZodType = z.lazy(__makeSchema_EventCreateWithoutFadderukeInput_schema) as unknown as z.ZodType; -export const EventCreateWithoutFadderukeInputObjectZodSchema = z.lazy(__makeSchema_EventCreateWithoutFadderukeInput_schema); - - -// File: EventUncheckedCreateWithoutFadderukeInput.schema.ts -const __makeSchema_EventUncheckedCreateWithoutFadderukeInput_schema = () => z.object({ - id: z.string().optional(), - title: z.string(), - start: z.coerce.date(), - end: z.coerce.date(), - status: EventStatusSchema, - description: z.string(), - shortDescription: z.string().optional().nullable(), - imageUrl: z.string().optional().nullable(), - locationTitle: z.string().optional().nullable(), - locationAddress: z.string().optional().nullable(), - locationLink: z.string().optional().nullable(), - type: EventTypeSchema, - markForMissedAttendance: z.boolean().optional(), - createdAt: z.coerce.date().optional(), - updatedAt: z.coerce.date().optional(), - attendanceId: z.string().optional().nullable(), - parentId: z.string().optional().nullable(), - contestId: z.string().optional().nullable(), - metadataImportId: z.number().int().optional().nullable(), - get feedbackForm(){ return FeedbackFormUncheckedCreateNestedOneWithoutEventInputObjectSchema.optional(); }, - get children(){ return EventUncheckedCreateNestedManyWithoutParentInputObjectSchema.optional(); }, - get companies(){ return EventCompanyUncheckedCreateNestedManyWithoutEventInputObjectSchema.optional(); }, - get hostingGroups(){ return EventHostingGroupUncheckedCreateNestedManyWithoutEventInputObjectSchema.optional(); }, - get deregisterReasons(){ return DeregisterReasonUncheckedCreateNestedManyWithoutEventInputObjectSchema.optional(); } -}).strict(); -export const EventUncheckedCreateWithoutFadderukeInputObjectSchema: z.ZodType = z.lazy(__makeSchema_EventUncheckedCreateWithoutFadderukeInput_schema) as unknown as z.ZodType; -export const EventUncheckedCreateWithoutFadderukeInputObjectZodSchema = z.lazy(__makeSchema_EventUncheckedCreateWithoutFadderukeInput_schema); - - -// File: EventCreateOrConnectWithoutFadderukeInput.schema.ts -const __makeSchema_EventCreateOrConnectWithoutFadderukeInput_schema = () => z.object({ - get where(){ return EventWhereUniqueInputObjectSchema; }, - create: z.union([EventCreateWithoutFadderukeInputObjectSchema, EventUncheckedCreateWithoutFadderukeInputObjectSchema]) -}).strict(); -export const EventCreateOrConnectWithoutFadderukeInputObjectSchema: z.ZodType = z.lazy(__makeSchema_EventCreateOrConnectWithoutFadderukeInput_schema) as unknown as z.ZodType; -export const EventCreateOrConnectWithoutFadderukeInputObjectZodSchema = z.lazy(__makeSchema_EventCreateOrConnectWithoutFadderukeInput_schema); - - -// File: EventUpsertWithoutFadderukeInput.schema.ts -const __makeSchema_EventUpsertWithoutFadderukeInput_schema = () => z.object({ - update: z.union([EventUpdateWithoutFadderukeInputObjectSchema, EventUncheckedUpdateWithoutFadderukeInputObjectSchema]), - create: z.union([EventCreateWithoutFadderukeInputObjectSchema, EventUncheckedCreateWithoutFadderukeInputObjectSchema]), - get where(){ return EventWhereInputObjectSchema.optional(); } -}).strict(); -export const EventUpsertWithoutFadderukeInputObjectSchema: z.ZodType = z.lazy(__makeSchema_EventUpsertWithoutFadderukeInput_schema) as unknown as z.ZodType; -export const EventUpsertWithoutFadderukeInputObjectZodSchema = z.lazy(__makeSchema_EventUpsertWithoutFadderukeInput_schema); - - -// File: EventUpdateToOneWithWhereWithoutFadderukeInput.schema.ts -const __makeSchema_EventUpdateToOneWithWhereWithoutFadderukeInput_schema = () => z.object({ - get where(){ return EventWhereInputObjectSchema.optional(); }, - data: z.union([EventUpdateWithoutFadderukeInputObjectSchema, EventUncheckedUpdateWithoutFadderukeInputObjectSchema]) -}).strict(); -export const EventUpdateToOneWithWhereWithoutFadderukeInputObjectSchema: z.ZodType = z.lazy(__makeSchema_EventUpdateToOneWithWhereWithoutFadderukeInput_schema) as unknown as z.ZodType; -export const EventUpdateToOneWithWhereWithoutFadderukeInputObjectZodSchema = z.lazy(__makeSchema_EventUpdateToOneWithWhereWithoutFadderukeInput_schema); - - -// File: EventUpdateWithoutFadderukeInput.schema.ts -const __makeSchema_EventUpdateWithoutFadderukeInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - title: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - start: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - end: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - status: z.union([EventStatusSchema, EnumEventStatusFieldUpdateOperationsInputObjectSchema]).optional(), - description: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - shortDescription: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - imageUrl: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - locationTitle: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - locationAddress: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - locationLink: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - type: z.union([EventTypeSchema, EnumEventTypeFieldUpdateOperationsInputObjectSchema]).optional(), - markForMissedAttendance: z.union([z.boolean(), BoolFieldUpdateOperationsInputObjectSchema]).optional(), - createdAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - updatedAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - metadataImportId: z.union([z.number().int(), NullableIntFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - get feedbackForm(){ return FeedbackFormUpdateOneWithoutEventNestedInputObjectSchema.optional(); }, - get attendance(){ return AttendanceUpdateOneWithoutEventsNestedInputObjectSchema.optional(); }, - get parent(){ return EventUpdateOneWithoutChildrenNestedInputObjectSchema.optional(); }, - get children(){ return EventUpdateManyWithoutParentNestedInputObjectSchema.optional(); }, - get contest(){ return ContestUpdateOneWithoutEventsNestedInputObjectSchema.optional(); }, - get companies(){ return EventCompanyUpdateManyWithoutEventNestedInputObjectSchema.optional(); }, - get hostingGroups(){ return EventHostingGroupUpdateManyWithoutEventNestedInputObjectSchema.optional(); }, - get deregisterReasons(){ return DeregisterReasonUpdateManyWithoutEventNestedInputObjectSchema.optional(); } -}).strict(); -export const EventUpdateWithoutFadderukeInputObjectSchema: z.ZodType = z.lazy(__makeSchema_EventUpdateWithoutFadderukeInput_schema) as unknown as z.ZodType; -export const EventUpdateWithoutFadderukeInputObjectZodSchema = z.lazy(__makeSchema_EventUpdateWithoutFadderukeInput_schema); - - -// File: EventUncheckedUpdateWithoutFadderukeInput.schema.ts -const __makeSchema_EventUncheckedUpdateWithoutFadderukeInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - title: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - start: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - end: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - status: z.union([EventStatusSchema, EnumEventStatusFieldUpdateOperationsInputObjectSchema]).optional(), - description: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - shortDescription: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - imageUrl: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - locationTitle: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - locationAddress: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - locationLink: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - type: z.union([EventTypeSchema, EnumEventTypeFieldUpdateOperationsInputObjectSchema]).optional(), - markForMissedAttendance: z.union([z.boolean(), BoolFieldUpdateOperationsInputObjectSchema]).optional(), - createdAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - updatedAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - attendanceId: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - parentId: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - contestId: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - metadataImportId: z.union([z.number().int(), NullableIntFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - get feedbackForm(){ return FeedbackFormUncheckedUpdateOneWithoutEventNestedInputObjectSchema.optional(); }, - get children(){ return EventUncheckedUpdateManyWithoutParentNestedInputObjectSchema.optional(); }, - get companies(){ return EventCompanyUncheckedUpdateManyWithoutEventNestedInputObjectSchema.optional(); }, - get hostingGroups(){ return EventHostingGroupUncheckedUpdateManyWithoutEventNestedInputObjectSchema.optional(); }, - get deregisterReasons(){ return DeregisterReasonUncheckedUpdateManyWithoutEventNestedInputObjectSchema.optional(); } -}).strict(); -export const EventUncheckedUpdateWithoutFadderukeInputObjectSchema: z.ZodType = z.lazy(__makeSchema_EventUncheckedUpdateWithoutFadderukeInput_schema) as unknown as z.ZodType; -export const EventUncheckedUpdateWithoutFadderukeInputObjectZodSchema = z.lazy(__makeSchema_EventUncheckedUpdateWithoutFadderukeInput_schema); - - -// File: ContestCreateWithoutContestantsInput.schema.ts -const __makeSchema_ContestCreateWithoutContestantsInput_schema = () => z.object({ - id: z.string().optional(), - name: z.string(), - description: z.string().optional().nullable(), - startDate: z.coerce.date().optional().nullable(), - resultType: ContestResultTypeSchema, - resultOrder: ContestResultOrderSchema, - get winnerContestant(){ return ContestantCreateNestedOneWithoutWonContestInputObjectSchema.optional(); }, - get groups(){ return GroupCreateNestedManyWithoutContestsInputObjectSchema.optional(); }, - get events(){ return EventCreateNestedManyWithoutContestInputObjectSchema.optional(); } -}).strict(); -export const ContestCreateWithoutContestantsInputObjectSchema: z.ZodType = z.lazy(__makeSchema_ContestCreateWithoutContestantsInput_schema) as unknown as z.ZodType; -export const ContestCreateWithoutContestantsInputObjectZodSchema = z.lazy(__makeSchema_ContestCreateWithoutContestantsInput_schema); - - -// File: ContestUncheckedCreateWithoutContestantsInput.schema.ts -const __makeSchema_ContestUncheckedCreateWithoutContestantsInput_schema = () => z.object({ - id: z.string().optional(), - name: z.string(), - description: z.string().optional().nullable(), - startDate: z.coerce.date().optional().nullable(), - resultType: ContestResultTypeSchema, - resultOrder: ContestResultOrderSchema, - winnerContestantId: z.string().optional().nullable(), - get groups(){ return GroupUncheckedCreateNestedManyWithoutContestsInputObjectSchema.optional(); }, - get events(){ return EventUncheckedCreateNestedManyWithoutContestInputObjectSchema.optional(); } -}).strict(); -export const ContestUncheckedCreateWithoutContestantsInputObjectSchema: z.ZodType = z.lazy(__makeSchema_ContestUncheckedCreateWithoutContestantsInput_schema) as unknown as z.ZodType; -export const ContestUncheckedCreateWithoutContestantsInputObjectZodSchema = z.lazy(__makeSchema_ContestUncheckedCreateWithoutContestantsInput_schema); - - -// File: ContestCreateOrConnectWithoutContestantsInput.schema.ts -const __makeSchema_ContestCreateOrConnectWithoutContestantsInput_schema = () => z.object({ - get where(){ return ContestWhereUniqueInputObjectSchema; }, - create: z.union([ContestCreateWithoutContestantsInputObjectSchema, ContestUncheckedCreateWithoutContestantsInputObjectSchema]) -}).strict(); -export const ContestCreateOrConnectWithoutContestantsInputObjectSchema: z.ZodType = z.lazy(__makeSchema_ContestCreateOrConnectWithoutContestantsInput_schema) as unknown as z.ZodType; -export const ContestCreateOrConnectWithoutContestantsInputObjectZodSchema = z.lazy(__makeSchema_ContestCreateOrConnectWithoutContestantsInput_schema); - - -// File: UserCreateWithoutContestantsInput.schema.ts -const __makeSchema_UserCreateWithoutContestantsInput_schema = () => z.object({ - id: z.string(), - username: z.string(), - name: z.string().optional().nullable(), - email: z.string().optional().nullable(), - imageUrl: z.string().optional().nullable(), - biography: z.string().optional().nullable(), - phone: z.string().optional().nullable(), - gender: GenderSchema.optional(), - dietaryRestrictions: z.string().optional().nullable(), - ntnuUsername: z.string().optional().nullable(), - flags: z.union([UserCreateflagsInputObjectSchema, z.string().array()]).optional(), - workspaceUserId: z.string().optional().nullable(), - createdAt: z.coerce.date().optional(), - updatedAt: z.coerce.date().optional(), - privacyPermissionsId: z.string().optional().nullable(), - notificationPermissionsId: z.string().optional().nullable(), - get privacyPermissions(){ return PrivacyPermissionsCreateNestedOneWithoutUserInputObjectSchema.optional(); }, - get notificationPermissions(){ return NotificationPermissionsCreateNestedOneWithoutUserInputObjectSchema.optional(); }, - get attendee(){ return AttendeeCreateNestedManyWithoutUserInputObjectSchema.optional(); }, - get personalMark(){ return PersonalMarkCreateNestedManyWithoutUserInputObjectSchema.optional(); }, - get groupMemberships(){ return GroupMembershipCreateNestedManyWithoutUserInputObjectSchema.optional(); }, - get memberships(){ return MembershipCreateNestedManyWithoutUserInputObjectSchema.optional(); }, - get givenMarks(){ return PersonalMarkCreateNestedManyWithoutGivenByInputObjectSchema.optional(); }, - get attendeesRefunded(){ return AttendeeCreateNestedManyWithoutPaymentRefundedByInputObjectSchema.optional(); }, - get auditLogs(){ return AuditLogCreateNestedManyWithoutUserInputObjectSchema.optional(); }, - get deregisterReasons(){ return DeregisterReasonCreateNestedManyWithoutUserInputObjectSchema.optional(); }, - get notificationsReceived(){ return NotificationRecipientCreateNestedManyWithoutUserInputObjectSchema.optional(); }, - get notificationsCreated(){ return NotificationCreateNestedManyWithoutCreatedByInputObjectSchema.optional(); }, - get notificationsUpdated(){ return NotificationCreateNestedManyWithoutLastUpdatedByInputObjectSchema.optional(); }, - get contestTeams(){ return ContestTeamCreateNestedManyWithoutMembersInputObjectSchema.optional(); } -}).strict(); -export const UserCreateWithoutContestantsInputObjectSchema: z.ZodType = z.lazy(__makeSchema_UserCreateWithoutContestantsInput_schema) as unknown as z.ZodType; -export const UserCreateWithoutContestantsInputObjectZodSchema = z.lazy(__makeSchema_UserCreateWithoutContestantsInput_schema); - - -// File: UserUncheckedCreateWithoutContestantsInput.schema.ts -const __makeSchema_UserUncheckedCreateWithoutContestantsInput_schema = () => z.object({ - id: z.string(), - username: z.string(), - name: z.string().optional().nullable(), - email: z.string().optional().nullable(), - imageUrl: z.string().optional().nullable(), - biography: z.string().optional().nullable(), - phone: z.string().optional().nullable(), - gender: GenderSchema.optional(), - dietaryRestrictions: z.string().optional().nullable(), - ntnuUsername: z.string().optional().nullable(), - flags: z.union([UserCreateflagsInputObjectSchema, z.string().array()]).optional(), - workspaceUserId: z.string().optional().nullable(), - createdAt: z.coerce.date().optional(), - updatedAt: z.coerce.date().optional(), - privacyPermissionsId: z.string().optional().nullable(), - notificationPermissionsId: z.string().optional().nullable(), - get privacyPermissions(){ return PrivacyPermissionsUncheckedCreateNestedOneWithoutUserInputObjectSchema.optional(); }, - get notificationPermissions(){ return NotificationPermissionsUncheckedCreateNestedOneWithoutUserInputObjectSchema.optional(); }, - get attendee(){ return AttendeeUncheckedCreateNestedManyWithoutUserInputObjectSchema.optional(); }, - get personalMark(){ return PersonalMarkUncheckedCreateNestedManyWithoutUserInputObjectSchema.optional(); }, - get groupMemberships(){ return GroupMembershipUncheckedCreateNestedManyWithoutUserInputObjectSchema.optional(); }, - get memberships(){ return MembershipUncheckedCreateNestedManyWithoutUserInputObjectSchema.optional(); }, - get givenMarks(){ return PersonalMarkUncheckedCreateNestedManyWithoutGivenByInputObjectSchema.optional(); }, - get attendeesRefunded(){ return AttendeeUncheckedCreateNestedManyWithoutPaymentRefundedByInputObjectSchema.optional(); }, - get auditLogs(){ return AuditLogUncheckedCreateNestedManyWithoutUserInputObjectSchema.optional(); }, - get deregisterReasons(){ return DeregisterReasonUncheckedCreateNestedManyWithoutUserInputObjectSchema.optional(); }, - get notificationsReceived(){ return NotificationRecipientUncheckedCreateNestedManyWithoutUserInputObjectSchema.optional(); }, - get notificationsCreated(){ return NotificationUncheckedCreateNestedManyWithoutCreatedByInputObjectSchema.optional(); }, - get notificationsUpdated(){ return NotificationUncheckedCreateNestedManyWithoutLastUpdatedByInputObjectSchema.optional(); }, - get contestTeams(){ return ContestTeamUncheckedCreateNestedManyWithoutMembersInputObjectSchema.optional(); } -}).strict(); -export const UserUncheckedCreateWithoutContestantsInputObjectSchema: z.ZodType = z.lazy(__makeSchema_UserUncheckedCreateWithoutContestantsInput_schema) as unknown as z.ZodType; -export const UserUncheckedCreateWithoutContestantsInputObjectZodSchema = z.lazy(__makeSchema_UserUncheckedCreateWithoutContestantsInput_schema); - - -// File: UserCreateOrConnectWithoutContestantsInput.schema.ts -const __makeSchema_UserCreateOrConnectWithoutContestantsInput_schema = () => z.object({ - get where(){ return UserWhereUniqueInputObjectSchema; }, - create: z.union([UserCreateWithoutContestantsInputObjectSchema, UserUncheckedCreateWithoutContestantsInputObjectSchema]) -}).strict(); -export const UserCreateOrConnectWithoutContestantsInputObjectSchema: z.ZodType = z.lazy(__makeSchema_UserCreateOrConnectWithoutContestantsInput_schema) as unknown as z.ZodType; -export const UserCreateOrConnectWithoutContestantsInputObjectZodSchema = z.lazy(__makeSchema_UserCreateOrConnectWithoutContestantsInput_schema); - - -// File: ContestTeamCreateWithoutContestantInput.schema.ts -const __makeSchema_ContestTeamCreateWithoutContestantInput_schema = () => z.object({ - id: z.string().optional(), - name: z.string(), - get members(){ return UserCreateNestedManyWithoutContestTeamsInputObjectSchema.optional(); } -}).strict(); -export const ContestTeamCreateWithoutContestantInputObjectSchema: z.ZodType = z.lazy(__makeSchema_ContestTeamCreateWithoutContestantInput_schema) as unknown as z.ZodType; -export const ContestTeamCreateWithoutContestantInputObjectZodSchema = z.lazy(__makeSchema_ContestTeamCreateWithoutContestantInput_schema); - - -// File: ContestTeamUncheckedCreateWithoutContestantInput.schema.ts -const __makeSchema_ContestTeamUncheckedCreateWithoutContestantInput_schema = () => z.object({ - id: z.string().optional(), - name: z.string(), - get members(){ return UserUncheckedCreateNestedManyWithoutContestTeamsInputObjectSchema.optional(); } -}).strict(); -export const ContestTeamUncheckedCreateWithoutContestantInputObjectSchema: z.ZodType = z.lazy(__makeSchema_ContestTeamUncheckedCreateWithoutContestantInput_schema) as unknown as z.ZodType; -export const ContestTeamUncheckedCreateWithoutContestantInputObjectZodSchema = z.lazy(__makeSchema_ContestTeamUncheckedCreateWithoutContestantInput_schema); - - -// File: ContestTeamCreateOrConnectWithoutContestantInput.schema.ts -const __makeSchema_ContestTeamCreateOrConnectWithoutContestantInput_schema = () => z.object({ - get where(){ return ContestTeamWhereUniqueInputObjectSchema; }, - create: z.union([ContestTeamCreateWithoutContestantInputObjectSchema, ContestTeamUncheckedCreateWithoutContestantInputObjectSchema]) -}).strict(); -export const ContestTeamCreateOrConnectWithoutContestantInputObjectSchema: z.ZodType = z.lazy(__makeSchema_ContestTeamCreateOrConnectWithoutContestantInput_schema) as unknown as z.ZodType; -export const ContestTeamCreateOrConnectWithoutContestantInputObjectZodSchema = z.lazy(__makeSchema_ContestTeamCreateOrConnectWithoutContestantInput_schema); - - -// File: ContestCreateWithoutWinnerContestantInput.schema.ts -const __makeSchema_ContestCreateWithoutWinnerContestantInput_schema = () => z.object({ - id: z.string().optional(), - name: z.string(), - description: z.string().optional().nullable(), - startDate: z.coerce.date().optional().nullable(), - resultType: ContestResultTypeSchema, - resultOrder: ContestResultOrderSchema, - get contestants(){ return ContestantCreateNestedManyWithoutContestInputObjectSchema.optional(); }, - get groups(){ return GroupCreateNestedManyWithoutContestsInputObjectSchema.optional(); }, - get events(){ return EventCreateNestedManyWithoutContestInputObjectSchema.optional(); } -}).strict(); -export const ContestCreateWithoutWinnerContestantInputObjectSchema: z.ZodType = z.lazy(__makeSchema_ContestCreateWithoutWinnerContestantInput_schema) as unknown as z.ZodType; -export const ContestCreateWithoutWinnerContestantInputObjectZodSchema = z.lazy(__makeSchema_ContestCreateWithoutWinnerContestantInput_schema); - - -// File: ContestUncheckedCreateWithoutWinnerContestantInput.schema.ts -const __makeSchema_ContestUncheckedCreateWithoutWinnerContestantInput_schema = () => z.object({ - id: z.string().optional(), - name: z.string(), - description: z.string().optional().nullable(), - startDate: z.coerce.date().optional().nullable(), - resultType: ContestResultTypeSchema, - resultOrder: ContestResultOrderSchema, - get contestants(){ return ContestantUncheckedCreateNestedManyWithoutContestInputObjectSchema.optional(); }, - get groups(){ return GroupUncheckedCreateNestedManyWithoutContestsInputObjectSchema.optional(); }, - get events(){ return EventUncheckedCreateNestedManyWithoutContestInputObjectSchema.optional(); } -}).strict(); -export const ContestUncheckedCreateWithoutWinnerContestantInputObjectSchema: z.ZodType = z.lazy(__makeSchema_ContestUncheckedCreateWithoutWinnerContestantInput_schema) as unknown as z.ZodType; -export const ContestUncheckedCreateWithoutWinnerContestantInputObjectZodSchema = z.lazy(__makeSchema_ContestUncheckedCreateWithoutWinnerContestantInput_schema); - - -// File: ContestCreateOrConnectWithoutWinnerContestantInput.schema.ts -const __makeSchema_ContestCreateOrConnectWithoutWinnerContestantInput_schema = () => z.object({ - get where(){ return ContestWhereUniqueInputObjectSchema; }, - create: z.union([ContestCreateWithoutWinnerContestantInputObjectSchema, ContestUncheckedCreateWithoutWinnerContestantInputObjectSchema]) -}).strict(); -export const ContestCreateOrConnectWithoutWinnerContestantInputObjectSchema: z.ZodType = z.lazy(__makeSchema_ContestCreateOrConnectWithoutWinnerContestantInput_schema) as unknown as z.ZodType; -export const ContestCreateOrConnectWithoutWinnerContestantInputObjectZodSchema = z.lazy(__makeSchema_ContestCreateOrConnectWithoutWinnerContestantInput_schema); - - -// File: ContestUpsertWithoutContestantsInput.schema.ts -const __makeSchema_ContestUpsertWithoutContestantsInput_schema = () => z.object({ - update: z.union([ContestUpdateWithoutContestantsInputObjectSchema, ContestUncheckedUpdateWithoutContestantsInputObjectSchema]), - create: z.union([ContestCreateWithoutContestantsInputObjectSchema, ContestUncheckedCreateWithoutContestantsInputObjectSchema]), - get where(){ return ContestWhereInputObjectSchema.optional(); } -}).strict(); -export const ContestUpsertWithoutContestantsInputObjectSchema: z.ZodType = z.lazy(__makeSchema_ContestUpsertWithoutContestantsInput_schema) as unknown as z.ZodType; -export const ContestUpsertWithoutContestantsInputObjectZodSchema = z.lazy(__makeSchema_ContestUpsertWithoutContestantsInput_schema); - - -// File: ContestUpdateToOneWithWhereWithoutContestantsInput.schema.ts -const __makeSchema_ContestUpdateToOneWithWhereWithoutContestantsInput_schema = () => z.object({ - get where(){ return ContestWhereInputObjectSchema.optional(); }, - data: z.union([ContestUpdateWithoutContestantsInputObjectSchema, ContestUncheckedUpdateWithoutContestantsInputObjectSchema]) -}).strict(); -export const ContestUpdateToOneWithWhereWithoutContestantsInputObjectSchema: z.ZodType = z.lazy(__makeSchema_ContestUpdateToOneWithWhereWithoutContestantsInput_schema) as unknown as z.ZodType; -export const ContestUpdateToOneWithWhereWithoutContestantsInputObjectZodSchema = z.lazy(__makeSchema_ContestUpdateToOneWithWhereWithoutContestantsInput_schema); - - -// File: ContestUpdateWithoutContestantsInput.schema.ts -const __makeSchema_ContestUpdateWithoutContestantsInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - name: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - description: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - startDate: z.union([z.coerce.date(), NullableDateTimeFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - resultType: z.union([ContestResultTypeSchema, EnumContestResultTypeFieldUpdateOperationsInputObjectSchema]).optional(), - resultOrder: z.union([ContestResultOrderSchema, EnumContestResultOrderFieldUpdateOperationsInputObjectSchema]).optional(), - get winnerContestant(){ return ContestantUpdateOneWithoutWonContestNestedInputObjectSchema.optional(); }, - get groups(){ return GroupUpdateManyWithoutContestsNestedInputObjectSchema.optional(); }, - get events(){ return EventUpdateManyWithoutContestNestedInputObjectSchema.optional(); } -}).strict(); -export const ContestUpdateWithoutContestantsInputObjectSchema: z.ZodType = z.lazy(__makeSchema_ContestUpdateWithoutContestantsInput_schema) as unknown as z.ZodType; -export const ContestUpdateWithoutContestantsInputObjectZodSchema = z.lazy(__makeSchema_ContestUpdateWithoutContestantsInput_schema); - - -// File: ContestUncheckedUpdateWithoutContestantsInput.schema.ts -const __makeSchema_ContestUncheckedUpdateWithoutContestantsInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - name: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - description: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - startDate: z.union([z.coerce.date(), NullableDateTimeFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - resultType: z.union([ContestResultTypeSchema, EnumContestResultTypeFieldUpdateOperationsInputObjectSchema]).optional(), - resultOrder: z.union([ContestResultOrderSchema, EnumContestResultOrderFieldUpdateOperationsInputObjectSchema]).optional(), - winnerContestantId: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - get groups(){ return GroupUncheckedUpdateManyWithoutContestsNestedInputObjectSchema.optional(); }, - get events(){ return EventUncheckedUpdateManyWithoutContestNestedInputObjectSchema.optional(); } -}).strict(); -export const ContestUncheckedUpdateWithoutContestantsInputObjectSchema: z.ZodType = z.lazy(__makeSchema_ContestUncheckedUpdateWithoutContestantsInput_schema) as unknown as z.ZodType; -export const ContestUncheckedUpdateWithoutContestantsInputObjectZodSchema = z.lazy(__makeSchema_ContestUncheckedUpdateWithoutContestantsInput_schema); - - -// File: UserUpsertWithoutContestantsInput.schema.ts -const __makeSchema_UserUpsertWithoutContestantsInput_schema = () => z.object({ - update: z.union([UserUpdateWithoutContestantsInputObjectSchema, UserUncheckedUpdateWithoutContestantsInputObjectSchema]), - create: z.union([UserCreateWithoutContestantsInputObjectSchema, UserUncheckedCreateWithoutContestantsInputObjectSchema]), - get where(){ return UserWhereInputObjectSchema.optional(); } -}).strict(); -export const UserUpsertWithoutContestantsInputObjectSchema: z.ZodType = z.lazy(__makeSchema_UserUpsertWithoutContestantsInput_schema) as unknown as z.ZodType; -export const UserUpsertWithoutContestantsInputObjectZodSchema = z.lazy(__makeSchema_UserUpsertWithoutContestantsInput_schema); - - -// File: UserUpdateToOneWithWhereWithoutContestantsInput.schema.ts -const __makeSchema_UserUpdateToOneWithWhereWithoutContestantsInput_schema = () => z.object({ - get where(){ return UserWhereInputObjectSchema.optional(); }, - data: z.union([UserUpdateWithoutContestantsInputObjectSchema, UserUncheckedUpdateWithoutContestantsInputObjectSchema]) -}).strict(); -export const UserUpdateToOneWithWhereWithoutContestantsInputObjectSchema: z.ZodType = z.lazy(__makeSchema_UserUpdateToOneWithWhereWithoutContestantsInput_schema) as unknown as z.ZodType; -export const UserUpdateToOneWithWhereWithoutContestantsInputObjectZodSchema = z.lazy(__makeSchema_UserUpdateToOneWithWhereWithoutContestantsInput_schema); - - -// File: UserUpdateWithoutContestantsInput.schema.ts -const __makeSchema_UserUpdateWithoutContestantsInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - username: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - name: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - email: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - imageUrl: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - biography: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - phone: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - gender: z.union([GenderSchema, EnumGenderFieldUpdateOperationsInputObjectSchema]).optional(), - dietaryRestrictions: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - ntnuUsername: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - flags: z.union([UserUpdateflagsInputObjectSchema, z.string().array()]).optional(), - workspaceUserId: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - createdAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - updatedAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - privacyPermissionsId: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - notificationPermissionsId: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - get privacyPermissions(){ return PrivacyPermissionsUpdateOneWithoutUserNestedInputObjectSchema.optional(); }, - get notificationPermissions(){ return NotificationPermissionsUpdateOneWithoutUserNestedInputObjectSchema.optional(); }, - get attendee(){ return AttendeeUpdateManyWithoutUserNestedInputObjectSchema.optional(); }, - get personalMark(){ return PersonalMarkUpdateManyWithoutUserNestedInputObjectSchema.optional(); }, - get groupMemberships(){ return GroupMembershipUpdateManyWithoutUserNestedInputObjectSchema.optional(); }, - get memberships(){ return MembershipUpdateManyWithoutUserNestedInputObjectSchema.optional(); }, - get givenMarks(){ return PersonalMarkUpdateManyWithoutGivenByNestedInputObjectSchema.optional(); }, - get attendeesRefunded(){ return AttendeeUpdateManyWithoutPaymentRefundedByNestedInputObjectSchema.optional(); }, - get auditLogs(){ return AuditLogUpdateManyWithoutUserNestedInputObjectSchema.optional(); }, - get deregisterReasons(){ return DeregisterReasonUpdateManyWithoutUserNestedInputObjectSchema.optional(); }, - get notificationsReceived(){ return NotificationRecipientUpdateManyWithoutUserNestedInputObjectSchema.optional(); }, - get notificationsCreated(){ return NotificationUpdateManyWithoutCreatedByNestedInputObjectSchema.optional(); }, - get notificationsUpdated(){ return NotificationUpdateManyWithoutLastUpdatedByNestedInputObjectSchema.optional(); }, - get contestTeams(){ return ContestTeamUpdateManyWithoutMembersNestedInputObjectSchema.optional(); } -}).strict(); -export const UserUpdateWithoutContestantsInputObjectSchema: z.ZodType = z.lazy(__makeSchema_UserUpdateWithoutContestantsInput_schema) as unknown as z.ZodType; -export const UserUpdateWithoutContestantsInputObjectZodSchema = z.lazy(__makeSchema_UserUpdateWithoutContestantsInput_schema); - - -// File: UserUncheckedUpdateWithoutContestantsInput.schema.ts -const __makeSchema_UserUncheckedUpdateWithoutContestantsInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - username: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - name: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - email: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - imageUrl: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - biography: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - phone: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - gender: z.union([GenderSchema, EnumGenderFieldUpdateOperationsInputObjectSchema]).optional(), - dietaryRestrictions: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - ntnuUsername: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - flags: z.union([UserUpdateflagsInputObjectSchema, z.string().array()]).optional(), - workspaceUserId: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - createdAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - updatedAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - privacyPermissionsId: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - notificationPermissionsId: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - get privacyPermissions(){ return PrivacyPermissionsUncheckedUpdateOneWithoutUserNestedInputObjectSchema.optional(); }, - get notificationPermissions(){ return NotificationPermissionsUncheckedUpdateOneWithoutUserNestedInputObjectSchema.optional(); }, - get attendee(){ return AttendeeUncheckedUpdateManyWithoutUserNestedInputObjectSchema.optional(); }, - get personalMark(){ return PersonalMarkUncheckedUpdateManyWithoutUserNestedInputObjectSchema.optional(); }, - get groupMemberships(){ return GroupMembershipUncheckedUpdateManyWithoutUserNestedInputObjectSchema.optional(); }, - get memberships(){ return MembershipUncheckedUpdateManyWithoutUserNestedInputObjectSchema.optional(); }, - get givenMarks(){ return PersonalMarkUncheckedUpdateManyWithoutGivenByNestedInputObjectSchema.optional(); }, - get attendeesRefunded(){ return AttendeeUncheckedUpdateManyWithoutPaymentRefundedByNestedInputObjectSchema.optional(); }, - get auditLogs(){ return AuditLogUncheckedUpdateManyWithoutUserNestedInputObjectSchema.optional(); }, - get deregisterReasons(){ return DeregisterReasonUncheckedUpdateManyWithoutUserNestedInputObjectSchema.optional(); }, - get notificationsReceived(){ return NotificationRecipientUncheckedUpdateManyWithoutUserNestedInputObjectSchema.optional(); }, - get notificationsCreated(){ return NotificationUncheckedUpdateManyWithoutCreatedByNestedInputObjectSchema.optional(); }, - get notificationsUpdated(){ return NotificationUncheckedUpdateManyWithoutLastUpdatedByNestedInputObjectSchema.optional(); }, - get contestTeams(){ return ContestTeamUncheckedUpdateManyWithoutMembersNestedInputObjectSchema.optional(); } -}).strict(); -export const UserUncheckedUpdateWithoutContestantsInputObjectSchema: z.ZodType = z.lazy(__makeSchema_UserUncheckedUpdateWithoutContestantsInput_schema) as unknown as z.ZodType; -export const UserUncheckedUpdateWithoutContestantsInputObjectZodSchema = z.lazy(__makeSchema_UserUncheckedUpdateWithoutContestantsInput_schema); - - -// File: ContestTeamUpsertWithoutContestantInput.schema.ts -const __makeSchema_ContestTeamUpsertWithoutContestantInput_schema = () => z.object({ - update: z.union([ContestTeamUpdateWithoutContestantInputObjectSchema, ContestTeamUncheckedUpdateWithoutContestantInputObjectSchema]), - create: z.union([ContestTeamCreateWithoutContestantInputObjectSchema, ContestTeamUncheckedCreateWithoutContestantInputObjectSchema]), - get where(){ return ContestTeamWhereInputObjectSchema.optional(); } -}).strict(); -export const ContestTeamUpsertWithoutContestantInputObjectSchema: z.ZodType = z.lazy(__makeSchema_ContestTeamUpsertWithoutContestantInput_schema) as unknown as z.ZodType; -export const ContestTeamUpsertWithoutContestantInputObjectZodSchema = z.lazy(__makeSchema_ContestTeamUpsertWithoutContestantInput_schema); - - -// File: ContestTeamUpdateToOneWithWhereWithoutContestantInput.schema.ts -const __makeSchema_ContestTeamUpdateToOneWithWhereWithoutContestantInput_schema = () => z.object({ - get where(){ return ContestTeamWhereInputObjectSchema.optional(); }, - data: z.union([ContestTeamUpdateWithoutContestantInputObjectSchema, ContestTeamUncheckedUpdateWithoutContestantInputObjectSchema]) -}).strict(); -export const ContestTeamUpdateToOneWithWhereWithoutContestantInputObjectSchema: z.ZodType = z.lazy(__makeSchema_ContestTeamUpdateToOneWithWhereWithoutContestantInput_schema) as unknown as z.ZodType; -export const ContestTeamUpdateToOneWithWhereWithoutContestantInputObjectZodSchema = z.lazy(__makeSchema_ContestTeamUpdateToOneWithWhereWithoutContestantInput_schema); - - -// File: ContestTeamUpdateWithoutContestantInput.schema.ts -const __makeSchema_ContestTeamUpdateWithoutContestantInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - name: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - get members(){ return UserUpdateManyWithoutContestTeamsNestedInputObjectSchema.optional(); } -}).strict(); -export const ContestTeamUpdateWithoutContestantInputObjectSchema: z.ZodType = z.lazy(__makeSchema_ContestTeamUpdateWithoutContestantInput_schema) as unknown as z.ZodType; -export const ContestTeamUpdateWithoutContestantInputObjectZodSchema = z.lazy(__makeSchema_ContestTeamUpdateWithoutContestantInput_schema); - - -// File: ContestTeamUncheckedUpdateWithoutContestantInput.schema.ts -const __makeSchema_ContestTeamUncheckedUpdateWithoutContestantInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - name: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - get members(){ return UserUncheckedUpdateManyWithoutContestTeamsNestedInputObjectSchema.optional(); } -}).strict(); -export const ContestTeamUncheckedUpdateWithoutContestantInputObjectSchema: z.ZodType = z.lazy(__makeSchema_ContestTeamUncheckedUpdateWithoutContestantInput_schema) as unknown as z.ZodType; -export const ContestTeamUncheckedUpdateWithoutContestantInputObjectZodSchema = z.lazy(__makeSchema_ContestTeamUncheckedUpdateWithoutContestantInput_schema); - - -// File: ContestUpsertWithoutWinnerContestantInput.schema.ts -const __makeSchema_ContestUpsertWithoutWinnerContestantInput_schema = () => z.object({ - update: z.union([ContestUpdateWithoutWinnerContestantInputObjectSchema, ContestUncheckedUpdateWithoutWinnerContestantInputObjectSchema]), - create: z.union([ContestCreateWithoutWinnerContestantInputObjectSchema, ContestUncheckedCreateWithoutWinnerContestantInputObjectSchema]), - get where(){ return ContestWhereInputObjectSchema.optional(); } -}).strict(); -export const ContestUpsertWithoutWinnerContestantInputObjectSchema: z.ZodType = z.lazy(__makeSchema_ContestUpsertWithoutWinnerContestantInput_schema) as unknown as z.ZodType; -export const ContestUpsertWithoutWinnerContestantInputObjectZodSchema = z.lazy(__makeSchema_ContestUpsertWithoutWinnerContestantInput_schema); - - -// File: ContestUpdateToOneWithWhereWithoutWinnerContestantInput.schema.ts -const __makeSchema_ContestUpdateToOneWithWhereWithoutWinnerContestantInput_schema = () => z.object({ - get where(){ return ContestWhereInputObjectSchema.optional(); }, - data: z.union([ContestUpdateWithoutWinnerContestantInputObjectSchema, ContestUncheckedUpdateWithoutWinnerContestantInputObjectSchema]) -}).strict(); -export const ContestUpdateToOneWithWhereWithoutWinnerContestantInputObjectSchema: z.ZodType = z.lazy(__makeSchema_ContestUpdateToOneWithWhereWithoutWinnerContestantInput_schema) as unknown as z.ZodType; -export const ContestUpdateToOneWithWhereWithoutWinnerContestantInputObjectZodSchema = z.lazy(__makeSchema_ContestUpdateToOneWithWhereWithoutWinnerContestantInput_schema); - - -// File: ContestUpdateWithoutWinnerContestantInput.schema.ts -const __makeSchema_ContestUpdateWithoutWinnerContestantInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - name: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - description: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - startDate: z.union([z.coerce.date(), NullableDateTimeFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - resultType: z.union([ContestResultTypeSchema, EnumContestResultTypeFieldUpdateOperationsInputObjectSchema]).optional(), - resultOrder: z.union([ContestResultOrderSchema, EnumContestResultOrderFieldUpdateOperationsInputObjectSchema]).optional(), - get contestants(){ return ContestantUpdateManyWithoutContestNestedInputObjectSchema.optional(); }, - get groups(){ return GroupUpdateManyWithoutContestsNestedInputObjectSchema.optional(); }, - get events(){ return EventUpdateManyWithoutContestNestedInputObjectSchema.optional(); } -}).strict(); -export const ContestUpdateWithoutWinnerContestantInputObjectSchema: z.ZodType = z.lazy(__makeSchema_ContestUpdateWithoutWinnerContestantInput_schema) as unknown as z.ZodType; -export const ContestUpdateWithoutWinnerContestantInputObjectZodSchema = z.lazy(__makeSchema_ContestUpdateWithoutWinnerContestantInput_schema); - - -// File: ContestUncheckedUpdateWithoutWinnerContestantInput.schema.ts -const __makeSchema_ContestUncheckedUpdateWithoutWinnerContestantInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - name: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - description: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - startDate: z.union([z.coerce.date(), NullableDateTimeFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - resultType: z.union([ContestResultTypeSchema, EnumContestResultTypeFieldUpdateOperationsInputObjectSchema]).optional(), - resultOrder: z.union([ContestResultOrderSchema, EnumContestResultOrderFieldUpdateOperationsInputObjectSchema]).optional(), - get contestants(){ return ContestantUncheckedUpdateManyWithoutContestNestedInputObjectSchema.optional(); }, - get groups(){ return GroupUncheckedUpdateManyWithoutContestsNestedInputObjectSchema.optional(); }, - get events(){ return EventUncheckedUpdateManyWithoutContestNestedInputObjectSchema.optional(); } -}).strict(); -export const ContestUncheckedUpdateWithoutWinnerContestantInputObjectSchema: z.ZodType = z.lazy(__makeSchema_ContestUncheckedUpdateWithoutWinnerContestantInput_schema) as unknown as z.ZodType; -export const ContestUncheckedUpdateWithoutWinnerContestantInputObjectZodSchema = z.lazy(__makeSchema_ContestUncheckedUpdateWithoutWinnerContestantInput_schema); - - -// File: ContestantCreateWithoutTeamInput.schema.ts -const __makeSchema_ContestantCreateWithoutTeamInput_schema = () => z.object({ - id: z.string().optional(), - resultValue: z.number().int().optional().nullable(), - get contest(){ return ContestCreateNestedOneWithoutContestantsInputObjectSchema; }, - get user(){ return UserCreateNestedOneWithoutContestantsInputObjectSchema.optional(); }, - get wonContest(){ return ContestCreateNestedOneWithoutWinnerContestantInputObjectSchema.optional(); } -}).strict(); -export const ContestantCreateWithoutTeamInputObjectSchema: z.ZodType = z.lazy(__makeSchema_ContestantCreateWithoutTeamInput_schema) as unknown as z.ZodType; -export const ContestantCreateWithoutTeamInputObjectZodSchema = z.lazy(__makeSchema_ContestantCreateWithoutTeamInput_schema); - - -// File: ContestantUncheckedCreateWithoutTeamInput.schema.ts -const __makeSchema_ContestantUncheckedCreateWithoutTeamInput_schema = () => z.object({ - id: z.string().optional(), - resultValue: z.number().int().optional().nullable(), - contestId: z.string(), - userId: z.string().optional().nullable(), - get wonContest(){ return ContestUncheckedCreateNestedOneWithoutWinnerContestantInputObjectSchema.optional(); } -}).strict(); -export const ContestantUncheckedCreateWithoutTeamInputObjectSchema: z.ZodType = z.lazy(__makeSchema_ContestantUncheckedCreateWithoutTeamInput_schema) as unknown as z.ZodType; -export const ContestantUncheckedCreateWithoutTeamInputObjectZodSchema = z.lazy(__makeSchema_ContestantUncheckedCreateWithoutTeamInput_schema); - - -// File: ContestantCreateOrConnectWithoutTeamInput.schema.ts -const __makeSchema_ContestantCreateOrConnectWithoutTeamInput_schema = () => z.object({ - get where(){ return ContestantWhereUniqueInputObjectSchema; }, - create: z.union([ContestantCreateWithoutTeamInputObjectSchema, ContestantUncheckedCreateWithoutTeamInputObjectSchema]) -}).strict(); -export const ContestantCreateOrConnectWithoutTeamInputObjectSchema: z.ZodType = z.lazy(__makeSchema_ContestantCreateOrConnectWithoutTeamInput_schema) as unknown as z.ZodType; -export const ContestantCreateOrConnectWithoutTeamInputObjectZodSchema = z.lazy(__makeSchema_ContestantCreateOrConnectWithoutTeamInput_schema); - - -// File: UserCreateWithoutContestTeamsInput.schema.ts -const __makeSchema_UserCreateWithoutContestTeamsInput_schema = () => z.object({ - id: z.string(), - username: z.string(), - name: z.string().optional().nullable(), - email: z.string().optional().nullable(), - imageUrl: z.string().optional().nullable(), - biography: z.string().optional().nullable(), - phone: z.string().optional().nullable(), - gender: GenderSchema.optional(), - dietaryRestrictions: z.string().optional().nullable(), - ntnuUsername: z.string().optional().nullable(), - flags: z.union([UserCreateflagsInputObjectSchema, z.string().array()]).optional(), - workspaceUserId: z.string().optional().nullable(), - createdAt: z.coerce.date().optional(), - updatedAt: z.coerce.date().optional(), - privacyPermissionsId: z.string().optional().nullable(), - notificationPermissionsId: z.string().optional().nullable(), - get privacyPermissions(){ return PrivacyPermissionsCreateNestedOneWithoutUserInputObjectSchema.optional(); }, - get notificationPermissions(){ return NotificationPermissionsCreateNestedOneWithoutUserInputObjectSchema.optional(); }, - get attendee(){ return AttendeeCreateNestedManyWithoutUserInputObjectSchema.optional(); }, - get personalMark(){ return PersonalMarkCreateNestedManyWithoutUserInputObjectSchema.optional(); }, - get groupMemberships(){ return GroupMembershipCreateNestedManyWithoutUserInputObjectSchema.optional(); }, - get memberships(){ return MembershipCreateNestedManyWithoutUserInputObjectSchema.optional(); }, - get givenMarks(){ return PersonalMarkCreateNestedManyWithoutGivenByInputObjectSchema.optional(); }, - get attendeesRefunded(){ return AttendeeCreateNestedManyWithoutPaymentRefundedByInputObjectSchema.optional(); }, - get auditLogs(){ return AuditLogCreateNestedManyWithoutUserInputObjectSchema.optional(); }, - get deregisterReasons(){ return DeregisterReasonCreateNestedManyWithoutUserInputObjectSchema.optional(); }, - get notificationsReceived(){ return NotificationRecipientCreateNestedManyWithoutUserInputObjectSchema.optional(); }, - get notificationsCreated(){ return NotificationCreateNestedManyWithoutCreatedByInputObjectSchema.optional(); }, - get notificationsUpdated(){ return NotificationCreateNestedManyWithoutLastUpdatedByInputObjectSchema.optional(); }, - get contestants(){ return ContestantCreateNestedManyWithoutUserInputObjectSchema.optional(); } -}).strict(); -export const UserCreateWithoutContestTeamsInputObjectSchema: z.ZodType = z.lazy(__makeSchema_UserCreateWithoutContestTeamsInput_schema) as unknown as z.ZodType; -export const UserCreateWithoutContestTeamsInputObjectZodSchema = z.lazy(__makeSchema_UserCreateWithoutContestTeamsInput_schema); - - -// File: UserUncheckedCreateWithoutContestTeamsInput.schema.ts -const __makeSchema_UserUncheckedCreateWithoutContestTeamsInput_schema = () => z.object({ - id: z.string(), - username: z.string(), - name: z.string().optional().nullable(), - email: z.string().optional().nullable(), - imageUrl: z.string().optional().nullable(), - biography: z.string().optional().nullable(), - phone: z.string().optional().nullable(), - gender: GenderSchema.optional(), - dietaryRestrictions: z.string().optional().nullable(), - ntnuUsername: z.string().optional().nullable(), - flags: z.union([UserCreateflagsInputObjectSchema, z.string().array()]).optional(), - workspaceUserId: z.string().optional().nullable(), - createdAt: z.coerce.date().optional(), - updatedAt: z.coerce.date().optional(), - privacyPermissionsId: z.string().optional().nullable(), - notificationPermissionsId: z.string().optional().nullable(), - get privacyPermissions(){ return PrivacyPermissionsUncheckedCreateNestedOneWithoutUserInputObjectSchema.optional(); }, - get notificationPermissions(){ return NotificationPermissionsUncheckedCreateNestedOneWithoutUserInputObjectSchema.optional(); }, - get attendee(){ return AttendeeUncheckedCreateNestedManyWithoutUserInputObjectSchema.optional(); }, - get personalMark(){ return PersonalMarkUncheckedCreateNestedManyWithoutUserInputObjectSchema.optional(); }, - get groupMemberships(){ return GroupMembershipUncheckedCreateNestedManyWithoutUserInputObjectSchema.optional(); }, - get memberships(){ return MembershipUncheckedCreateNestedManyWithoutUserInputObjectSchema.optional(); }, - get givenMarks(){ return PersonalMarkUncheckedCreateNestedManyWithoutGivenByInputObjectSchema.optional(); }, - get attendeesRefunded(){ return AttendeeUncheckedCreateNestedManyWithoutPaymentRefundedByInputObjectSchema.optional(); }, - get auditLogs(){ return AuditLogUncheckedCreateNestedManyWithoutUserInputObjectSchema.optional(); }, - get deregisterReasons(){ return DeregisterReasonUncheckedCreateNestedManyWithoutUserInputObjectSchema.optional(); }, - get notificationsReceived(){ return NotificationRecipientUncheckedCreateNestedManyWithoutUserInputObjectSchema.optional(); }, - get notificationsCreated(){ return NotificationUncheckedCreateNestedManyWithoutCreatedByInputObjectSchema.optional(); }, - get notificationsUpdated(){ return NotificationUncheckedCreateNestedManyWithoutLastUpdatedByInputObjectSchema.optional(); }, - get contestants(){ return ContestantUncheckedCreateNestedManyWithoutUserInputObjectSchema.optional(); } -}).strict(); -export const UserUncheckedCreateWithoutContestTeamsInputObjectSchema: z.ZodType = z.lazy(__makeSchema_UserUncheckedCreateWithoutContestTeamsInput_schema) as unknown as z.ZodType; -export const UserUncheckedCreateWithoutContestTeamsInputObjectZodSchema = z.lazy(__makeSchema_UserUncheckedCreateWithoutContestTeamsInput_schema); - - -// File: UserCreateOrConnectWithoutContestTeamsInput.schema.ts -const __makeSchema_UserCreateOrConnectWithoutContestTeamsInput_schema = () => z.object({ - get where(){ return UserWhereUniqueInputObjectSchema; }, - create: z.union([UserCreateWithoutContestTeamsInputObjectSchema, UserUncheckedCreateWithoutContestTeamsInputObjectSchema]) -}).strict(); -export const UserCreateOrConnectWithoutContestTeamsInputObjectSchema: z.ZodType = z.lazy(__makeSchema_UserCreateOrConnectWithoutContestTeamsInput_schema) as unknown as z.ZodType; -export const UserCreateOrConnectWithoutContestTeamsInputObjectZodSchema = z.lazy(__makeSchema_UserCreateOrConnectWithoutContestTeamsInput_schema); - - -// File: ContestantUpsertWithoutTeamInput.schema.ts -const __makeSchema_ContestantUpsertWithoutTeamInput_schema = () => z.object({ - update: z.union([ContestantUpdateWithoutTeamInputObjectSchema, ContestantUncheckedUpdateWithoutTeamInputObjectSchema]), - create: z.union([ContestantCreateWithoutTeamInputObjectSchema, ContestantUncheckedCreateWithoutTeamInputObjectSchema]), - get where(){ return ContestantWhereInputObjectSchema.optional(); } -}).strict(); -export const ContestantUpsertWithoutTeamInputObjectSchema: z.ZodType = z.lazy(__makeSchema_ContestantUpsertWithoutTeamInput_schema) as unknown as z.ZodType; -export const ContestantUpsertWithoutTeamInputObjectZodSchema = z.lazy(__makeSchema_ContestantUpsertWithoutTeamInput_schema); - - -// File: ContestantUpdateToOneWithWhereWithoutTeamInput.schema.ts -const __makeSchema_ContestantUpdateToOneWithWhereWithoutTeamInput_schema = () => z.object({ - get where(){ return ContestantWhereInputObjectSchema.optional(); }, - data: z.union([ContestantUpdateWithoutTeamInputObjectSchema, ContestantUncheckedUpdateWithoutTeamInputObjectSchema]) -}).strict(); -export const ContestantUpdateToOneWithWhereWithoutTeamInputObjectSchema: z.ZodType = z.lazy(__makeSchema_ContestantUpdateToOneWithWhereWithoutTeamInput_schema) as unknown as z.ZodType; -export const ContestantUpdateToOneWithWhereWithoutTeamInputObjectZodSchema = z.lazy(__makeSchema_ContestantUpdateToOneWithWhereWithoutTeamInput_schema); - - -// File: ContestantUpdateWithoutTeamInput.schema.ts -const __makeSchema_ContestantUpdateWithoutTeamInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - resultValue: z.union([z.number().int(), NullableIntFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - get contest(){ return ContestUpdateOneRequiredWithoutContestantsNestedInputObjectSchema.optional(); }, - get user(){ return UserUpdateOneWithoutContestantsNestedInputObjectSchema.optional(); }, - get wonContest(){ return ContestUpdateOneWithoutWinnerContestantNestedInputObjectSchema.optional(); } -}).strict(); -export const ContestantUpdateWithoutTeamInputObjectSchema: z.ZodType = z.lazy(__makeSchema_ContestantUpdateWithoutTeamInput_schema) as unknown as z.ZodType; -export const ContestantUpdateWithoutTeamInputObjectZodSchema = z.lazy(__makeSchema_ContestantUpdateWithoutTeamInput_schema); - - -// File: ContestantUncheckedUpdateWithoutTeamInput.schema.ts -const __makeSchema_ContestantUncheckedUpdateWithoutTeamInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - resultValue: z.union([z.number().int(), NullableIntFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - contestId: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - userId: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - get wonContest(){ return ContestUncheckedUpdateOneWithoutWinnerContestantNestedInputObjectSchema.optional(); } -}).strict(); -export const ContestantUncheckedUpdateWithoutTeamInputObjectSchema: z.ZodType = z.lazy(__makeSchema_ContestantUncheckedUpdateWithoutTeamInput_schema) as unknown as z.ZodType; -export const ContestantUncheckedUpdateWithoutTeamInputObjectZodSchema = z.lazy(__makeSchema_ContestantUncheckedUpdateWithoutTeamInput_schema); - - -// File: UserUpsertWithWhereUniqueWithoutContestTeamsInput.schema.ts -const __makeSchema_UserUpsertWithWhereUniqueWithoutContestTeamsInput_schema = () => z.object({ - get where(){ return UserWhereUniqueInputObjectSchema; }, - update: z.union([UserUpdateWithoutContestTeamsInputObjectSchema, UserUncheckedUpdateWithoutContestTeamsInputObjectSchema]), - create: z.union([UserCreateWithoutContestTeamsInputObjectSchema, UserUncheckedCreateWithoutContestTeamsInputObjectSchema]) -}).strict(); -export const UserUpsertWithWhereUniqueWithoutContestTeamsInputObjectSchema: z.ZodType = z.lazy(__makeSchema_UserUpsertWithWhereUniqueWithoutContestTeamsInput_schema) as unknown as z.ZodType; -export const UserUpsertWithWhereUniqueWithoutContestTeamsInputObjectZodSchema = z.lazy(__makeSchema_UserUpsertWithWhereUniqueWithoutContestTeamsInput_schema); - - -// File: UserUpdateWithWhereUniqueWithoutContestTeamsInput.schema.ts -const __makeSchema_UserUpdateWithWhereUniqueWithoutContestTeamsInput_schema = () => z.object({ - get where(){ return UserWhereUniqueInputObjectSchema; }, - data: z.union([UserUpdateWithoutContestTeamsInputObjectSchema, UserUncheckedUpdateWithoutContestTeamsInputObjectSchema]) -}).strict(); -export const UserUpdateWithWhereUniqueWithoutContestTeamsInputObjectSchema: z.ZodType = z.lazy(__makeSchema_UserUpdateWithWhereUniqueWithoutContestTeamsInput_schema) as unknown as z.ZodType; -export const UserUpdateWithWhereUniqueWithoutContestTeamsInputObjectZodSchema = z.lazy(__makeSchema_UserUpdateWithWhereUniqueWithoutContestTeamsInput_schema); - - -// File: UserUpdateManyWithWhereWithoutContestTeamsInput.schema.ts -const __makeSchema_UserUpdateManyWithWhereWithoutContestTeamsInput_schema = () => z.object({ - get where(){ return UserScalarWhereInputObjectSchema; }, - data: z.union([UserUpdateManyMutationInputObjectSchema, UserUncheckedUpdateManyWithoutContestTeamsInputObjectSchema]) -}).strict(); -export const UserUpdateManyWithWhereWithoutContestTeamsInputObjectSchema: z.ZodType = z.lazy(__makeSchema_UserUpdateManyWithWhereWithoutContestTeamsInput_schema) as unknown as z.ZodType; -export const UserUpdateManyWithWhereWithoutContestTeamsInputObjectZodSchema = z.lazy(__makeSchema_UserUpdateManyWithWhereWithoutContestTeamsInput_schema); - - -// File: UserScalarWhereInput.schema.ts -const __makeSchema_UserScalarWhereInput_schema = () => z.object({ - AND: z.union([UserScalarWhereInputObjectSchema, UserScalarWhereInputObjectSchema.array()]).optional(), - get OR(){ return UserScalarWhereInputObjectSchema.array().optional(); }, - NOT: z.union([UserScalarWhereInputObjectSchema, UserScalarWhereInputObjectSchema.array()]).optional(), - id: z.union([StringFilterObjectSchema, z.string()]).optional(), - username: z.union([StringFilterObjectSchema, z.string()]).optional(), - name: z.union([StringNullableFilterObjectSchema, z.string()]).optional().nullable(), - email: z.union([StringNullableFilterObjectSchema, z.string()]).optional().nullable(), - imageUrl: z.union([StringNullableFilterObjectSchema, z.string()]).optional().nullable(), - biography: z.union([StringNullableFilterObjectSchema, z.string()]).optional().nullable(), - phone: z.union([StringNullableFilterObjectSchema, z.string()]).optional().nullable(), - gender: z.union([EnumGenderFilterObjectSchema, GenderSchema]).optional(), - dietaryRestrictions: z.union([StringNullableFilterObjectSchema, z.string()]).optional().nullable(), - ntnuUsername: z.union([StringNullableFilterObjectSchema, z.string()]).optional().nullable(), - get flags(){ return StringNullableListFilterObjectSchema.optional(); }, - workspaceUserId: z.union([StringNullableFilterObjectSchema, z.string()]).optional().nullable(), - createdAt: z.union([DateTimeFilterObjectSchema, z.coerce.date()]).optional(), - updatedAt: z.union([DateTimeFilterObjectSchema, z.coerce.date()]).optional(), - privacyPermissionsId: z.union([StringNullableFilterObjectSchema, z.string()]).optional().nullable(), - notificationPermissionsId: z.union([StringNullableFilterObjectSchema, z.string()]).optional().nullable() -}).strict(); -export const UserScalarWhereInputObjectSchema: z.ZodType = z.lazy(__makeSchema_UserScalarWhereInput_schema) as unknown as z.ZodType; -export const UserScalarWhereInputObjectZodSchema = z.lazy(__makeSchema_UserScalarWhereInput_schema); - - -// File: AttendeeCreateManyUserInput.schema.ts -const __makeSchema_AttendeeCreateManyUserInput_schema = () => z.object({ - id: z.string().optional(), - userGrade: z.number().int().optional().nullable(), - selections: z.union([JsonNullValueInputSchema, jsonSchema]).optional(), - reserved: z.boolean(), - earliestReservationAt: z.coerce.date(), - attendedAt: z.coerce.date().optional().nullable(), - createdAt: z.coerce.date().optional(), - updatedAt: z.coerce.date().optional(), - paymentDeadline: z.coerce.date().optional().nullable(), - paymentLink: z.string().optional().nullable(), - paymentId: z.string().optional().nullable(), - paymentReservedAt: z.coerce.date().optional().nullable(), - paymentChargeDeadline: z.coerce.date().optional().nullable(), - paymentChargedAt: z.coerce.date().optional().nullable(), - paymentRefundedAt: z.coerce.date().optional().nullable(), - paymentCheckoutUrl: z.string().optional().nullable(), - attendanceId: z.string(), - attendancePoolId: z.string(), - paymentRefundedById: z.string().optional().nullable() -}).strict(); -export const AttendeeCreateManyUserInputObjectSchema: z.ZodType = z.lazy(__makeSchema_AttendeeCreateManyUserInput_schema) as unknown as z.ZodType; -export const AttendeeCreateManyUserInputObjectZodSchema = z.lazy(__makeSchema_AttendeeCreateManyUserInput_schema); - - -// File: PersonalMarkCreateManyUserInput.schema.ts -const __makeSchema_PersonalMarkCreateManyUserInput_schema = () => z.object({ - createdAt: z.coerce.date().optional(), - markId: z.string(), - givenById: z.string().optional().nullable() -}).strict(); -export const PersonalMarkCreateManyUserInputObjectSchema: z.ZodType = z.lazy(__makeSchema_PersonalMarkCreateManyUserInput_schema) as unknown as z.ZodType; -export const PersonalMarkCreateManyUserInputObjectZodSchema = z.lazy(__makeSchema_PersonalMarkCreateManyUserInput_schema); - - -// File: GroupMembershipCreateManyUserInput.schema.ts -const __makeSchema_GroupMembershipCreateManyUserInput_schema = () => z.object({ - id: z.string().optional(), - start: z.coerce.date(), - end: z.coerce.date().optional().nullable(), - createdAt: z.coerce.date().optional(), - updatedAt: z.coerce.date().optional(), - groupId: z.string() -}).strict(); -export const GroupMembershipCreateManyUserInputObjectSchema: z.ZodType = z.lazy(__makeSchema_GroupMembershipCreateManyUserInput_schema) as unknown as z.ZodType; -export const GroupMembershipCreateManyUserInputObjectZodSchema = z.lazy(__makeSchema_GroupMembershipCreateManyUserInput_schema); - - -// File: MembershipCreateManyUserInput.schema.ts -const __makeSchema_MembershipCreateManyUserInput_schema = () => z.object({ - id: z.string().optional(), - type: MembershipTypeSchema, - specialization: MembershipSpecializationSchema.optional().nullable(), - start: z.coerce.date(), - end: z.coerce.date().optional().nullable(), - semester: z.number().int().optional().nullable() -}).strict(); -export const MembershipCreateManyUserInputObjectSchema: z.ZodType = z.lazy(__makeSchema_MembershipCreateManyUserInput_schema) as unknown as z.ZodType; -export const MembershipCreateManyUserInputObjectZodSchema = z.lazy(__makeSchema_MembershipCreateManyUserInput_schema); - - -// File: PersonalMarkCreateManyGivenByInput.schema.ts -const __makeSchema_PersonalMarkCreateManyGivenByInput_schema = () => z.object({ - createdAt: z.coerce.date().optional(), - markId: z.string(), - userId: z.string() -}).strict(); -export const PersonalMarkCreateManyGivenByInputObjectSchema: z.ZodType = z.lazy(__makeSchema_PersonalMarkCreateManyGivenByInput_schema) as unknown as z.ZodType; -export const PersonalMarkCreateManyGivenByInputObjectZodSchema = z.lazy(__makeSchema_PersonalMarkCreateManyGivenByInput_schema); - - -// File: AttendeeCreateManyPaymentRefundedByInput.schema.ts -const __makeSchema_AttendeeCreateManyPaymentRefundedByInput_schema = () => z.object({ - id: z.string().optional(), - userGrade: z.number().int().optional().nullable(), - selections: z.union([JsonNullValueInputSchema, jsonSchema]).optional(), - reserved: z.boolean(), - earliestReservationAt: z.coerce.date(), - attendedAt: z.coerce.date().optional().nullable(), - createdAt: z.coerce.date().optional(), - updatedAt: z.coerce.date().optional(), - paymentDeadline: z.coerce.date().optional().nullable(), - paymentLink: z.string().optional().nullable(), - paymentId: z.string().optional().nullable(), - paymentReservedAt: z.coerce.date().optional().nullable(), - paymentChargeDeadline: z.coerce.date().optional().nullable(), - paymentChargedAt: z.coerce.date().optional().nullable(), - paymentRefundedAt: z.coerce.date().optional().nullable(), - paymentCheckoutUrl: z.string().optional().nullable(), - attendanceId: z.string(), - userId: z.string(), - attendancePoolId: z.string() -}).strict(); -export const AttendeeCreateManyPaymentRefundedByInputObjectSchema: z.ZodType = z.lazy(__makeSchema_AttendeeCreateManyPaymentRefundedByInput_schema) as unknown as z.ZodType; -export const AttendeeCreateManyPaymentRefundedByInputObjectZodSchema = z.lazy(__makeSchema_AttendeeCreateManyPaymentRefundedByInput_schema); - - -// File: AuditLogCreateManyUserInput.schema.ts -const __makeSchema_AuditLogCreateManyUserInput_schema = () => z.object({ - id: z.string().optional(), - tableName: z.string(), - rowId: z.string().optional().nullable(), - createdAt: z.coerce.date().optional(), - operation: z.string(), - rowData: z.union([JsonNullValueInputSchema, jsonSchema]), - transactionId: z.bigint() -}).strict(); -export const AuditLogCreateManyUserInputObjectSchema: z.ZodType = z.lazy(__makeSchema_AuditLogCreateManyUserInput_schema) as unknown as z.ZodType; -export const AuditLogCreateManyUserInputObjectZodSchema = z.lazy(__makeSchema_AuditLogCreateManyUserInput_schema); - - -// File: DeregisterReasonCreateManyUserInput.schema.ts -const __makeSchema_DeregisterReasonCreateManyUserInput_schema = () => z.object({ - id: z.string().optional(), - createdAt: z.coerce.date().optional(), - registeredAt: z.coerce.date(), - type: DeregisterReasonTypeSchema, - details: z.string().optional().nullable(), - userGrade: z.number().int().optional().nullable(), - eventId: z.string() -}).strict(); -export const DeregisterReasonCreateManyUserInputObjectSchema: z.ZodType = z.lazy(__makeSchema_DeregisterReasonCreateManyUserInput_schema) as unknown as z.ZodType; -export const DeregisterReasonCreateManyUserInputObjectZodSchema = z.lazy(__makeSchema_DeregisterReasonCreateManyUserInput_schema); - - -// File: NotificationRecipientCreateManyUserInput.schema.ts -const __makeSchema_NotificationRecipientCreateManyUserInput_schema = () => z.object({ - id: z.string().optional(), - readAt: z.coerce.date(), - notificationId: z.string() -}).strict(); -export const NotificationRecipientCreateManyUserInputObjectSchema: z.ZodType = z.lazy(__makeSchema_NotificationRecipientCreateManyUserInput_schema) as unknown as z.ZodType; -export const NotificationRecipientCreateManyUserInputObjectZodSchema = z.lazy(__makeSchema_NotificationRecipientCreateManyUserInput_schema); - - -// File: NotificationCreateManyCreatedByInput.schema.ts -const __makeSchema_NotificationCreateManyCreatedByInput_schema = () => z.object({ - id: z.string().optional(), - createdAt: z.coerce.date().optional(), - updatedAt: z.coerce.date().optional(), - title: z.string(), - shortDescription: z.string().optional().nullable(), - content: z.string(), - type: NotificationTypeSchema, - payload: z.string().optional().nullable(), - payloadType: NotificationPayloadTypeSchema, - actorGroupId: z.string(), - lastUpdatedById: z.string().optional().nullable(), - taskId: z.string().optional().nullable() -}).strict(); -export const NotificationCreateManyCreatedByInputObjectSchema: z.ZodType = z.lazy(__makeSchema_NotificationCreateManyCreatedByInput_schema) as unknown as z.ZodType; -export const NotificationCreateManyCreatedByInputObjectZodSchema = z.lazy(__makeSchema_NotificationCreateManyCreatedByInput_schema); - - -// File: NotificationCreateManyLastUpdatedByInput.schema.ts -const __makeSchema_NotificationCreateManyLastUpdatedByInput_schema = () => z.object({ - id: z.string().optional(), - createdAt: z.coerce.date().optional(), - updatedAt: z.coerce.date().optional(), - title: z.string(), - shortDescription: z.string().optional().nullable(), - content: z.string(), - type: NotificationTypeSchema, - payload: z.string().optional().nullable(), - payloadType: NotificationPayloadTypeSchema, - actorGroupId: z.string(), - createdById: z.string().optional().nullable(), - taskId: z.string().optional().nullable() -}).strict(); -export const NotificationCreateManyLastUpdatedByInputObjectSchema: z.ZodType = z.lazy(__makeSchema_NotificationCreateManyLastUpdatedByInput_schema) as unknown as z.ZodType; -export const NotificationCreateManyLastUpdatedByInputObjectZodSchema = z.lazy(__makeSchema_NotificationCreateManyLastUpdatedByInput_schema); - - -// File: ContestantCreateManyUserInput.schema.ts -const __makeSchema_ContestantCreateManyUserInput_schema = () => z.object({ - id: z.string().optional(), - resultValue: z.number().int().optional().nullable(), - contestId: z.string() -}).strict(); -export const ContestantCreateManyUserInputObjectSchema: z.ZodType = z.lazy(__makeSchema_ContestantCreateManyUserInput_schema) as unknown as z.ZodType; -export const ContestantCreateManyUserInputObjectZodSchema = z.lazy(__makeSchema_ContestantCreateManyUserInput_schema); - - -// File: AttendeeUpdateWithoutUserInput.schema.ts -const __makeSchema_AttendeeUpdateWithoutUserInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - userGrade: z.union([z.number().int(), NullableIntFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - selections: z.union([JsonNullValueInputSchema, jsonSchema]).optional(), - reserved: z.union([z.boolean(), BoolFieldUpdateOperationsInputObjectSchema]).optional(), - earliestReservationAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - attendedAt: z.union([z.coerce.date(), NullableDateTimeFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - createdAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - updatedAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - paymentDeadline: z.union([z.coerce.date(), NullableDateTimeFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - paymentLink: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - paymentId: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - paymentReservedAt: z.union([z.coerce.date(), NullableDateTimeFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - paymentChargeDeadline: z.union([z.coerce.date(), NullableDateTimeFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - paymentChargedAt: z.union([z.coerce.date(), NullableDateTimeFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - paymentRefundedAt: z.union([z.coerce.date(), NullableDateTimeFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - paymentCheckoutUrl: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - get feedbackFormAnswer(){ return FeedbackFormAnswerUpdateOneWithoutAttendeeNestedInputObjectSchema.optional(); }, - get attendance(){ return AttendanceUpdateOneRequiredWithoutAttendeesNestedInputObjectSchema.optional(); }, - get attendancePool(){ return AttendancePoolUpdateOneRequiredWithoutAttendeesNestedInputObjectSchema.optional(); }, - get paymentRefundedBy(){ return UserUpdateOneWithoutAttendeesRefundedNestedInputObjectSchema.optional(); } -}).strict(); -export const AttendeeUpdateWithoutUserInputObjectSchema: z.ZodType = z.lazy(__makeSchema_AttendeeUpdateWithoutUserInput_schema) as unknown as z.ZodType; -export const AttendeeUpdateWithoutUserInputObjectZodSchema = z.lazy(__makeSchema_AttendeeUpdateWithoutUserInput_schema); - - -// File: AttendeeUncheckedUpdateWithoutUserInput.schema.ts -const __makeSchema_AttendeeUncheckedUpdateWithoutUserInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - userGrade: z.union([z.number().int(), NullableIntFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - selections: z.union([JsonNullValueInputSchema, jsonSchema]).optional(), - reserved: z.union([z.boolean(), BoolFieldUpdateOperationsInputObjectSchema]).optional(), - earliestReservationAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - attendedAt: z.union([z.coerce.date(), NullableDateTimeFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - createdAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - updatedAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - paymentDeadline: z.union([z.coerce.date(), NullableDateTimeFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - paymentLink: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - paymentId: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - paymentReservedAt: z.union([z.coerce.date(), NullableDateTimeFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - paymentChargeDeadline: z.union([z.coerce.date(), NullableDateTimeFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - paymentChargedAt: z.union([z.coerce.date(), NullableDateTimeFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - paymentRefundedAt: z.union([z.coerce.date(), NullableDateTimeFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - paymentCheckoutUrl: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - attendanceId: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - attendancePoolId: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - paymentRefundedById: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - get feedbackFormAnswer(){ return FeedbackFormAnswerUncheckedUpdateOneWithoutAttendeeNestedInputObjectSchema.optional(); } -}).strict(); -export const AttendeeUncheckedUpdateWithoutUserInputObjectSchema: z.ZodType = z.lazy(__makeSchema_AttendeeUncheckedUpdateWithoutUserInput_schema) as unknown as z.ZodType; -export const AttendeeUncheckedUpdateWithoutUserInputObjectZodSchema = z.lazy(__makeSchema_AttendeeUncheckedUpdateWithoutUserInput_schema); - - -// File: AttendeeUncheckedUpdateManyWithoutUserInput.schema.ts -const __makeSchema_AttendeeUncheckedUpdateManyWithoutUserInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - userGrade: z.union([z.number().int(), NullableIntFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - selections: z.union([JsonNullValueInputSchema, jsonSchema]).optional(), - reserved: z.union([z.boolean(), BoolFieldUpdateOperationsInputObjectSchema]).optional(), - earliestReservationAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - attendedAt: z.union([z.coerce.date(), NullableDateTimeFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - createdAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - updatedAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - paymentDeadline: z.union([z.coerce.date(), NullableDateTimeFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - paymentLink: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - paymentId: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - paymentReservedAt: z.union([z.coerce.date(), NullableDateTimeFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - paymentChargeDeadline: z.union([z.coerce.date(), NullableDateTimeFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - paymentChargedAt: z.union([z.coerce.date(), NullableDateTimeFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - paymentRefundedAt: z.union([z.coerce.date(), NullableDateTimeFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - paymentCheckoutUrl: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - attendanceId: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - attendancePoolId: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - paymentRefundedById: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable() -}).strict(); -export const AttendeeUncheckedUpdateManyWithoutUserInputObjectSchema: z.ZodType = z.lazy(__makeSchema_AttendeeUncheckedUpdateManyWithoutUserInput_schema) as unknown as z.ZodType; -export const AttendeeUncheckedUpdateManyWithoutUserInputObjectZodSchema = z.lazy(__makeSchema_AttendeeUncheckedUpdateManyWithoutUserInput_schema); - - -// File: PersonalMarkUpdateWithoutUserInput.schema.ts -const __makeSchema_PersonalMarkUpdateWithoutUserInput_schema = () => z.object({ - createdAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - get mark(){ return MarkUpdateOneRequiredWithoutUsersNestedInputObjectSchema.optional(); }, - get givenBy(){ return UserUpdateOneWithoutGivenMarksNestedInputObjectSchema.optional(); } -}).strict(); -export const PersonalMarkUpdateWithoutUserInputObjectSchema: z.ZodType = z.lazy(__makeSchema_PersonalMarkUpdateWithoutUserInput_schema) as unknown as z.ZodType; -export const PersonalMarkUpdateWithoutUserInputObjectZodSchema = z.lazy(__makeSchema_PersonalMarkUpdateWithoutUserInput_schema); - - -// File: PersonalMarkUncheckedUpdateWithoutUserInput.schema.ts -const __makeSchema_PersonalMarkUncheckedUpdateWithoutUserInput_schema = () => z.object({ - createdAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - markId: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - givenById: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable() -}).strict(); -export const PersonalMarkUncheckedUpdateWithoutUserInputObjectSchema: z.ZodType = z.lazy(__makeSchema_PersonalMarkUncheckedUpdateWithoutUserInput_schema) as unknown as z.ZodType; -export const PersonalMarkUncheckedUpdateWithoutUserInputObjectZodSchema = z.lazy(__makeSchema_PersonalMarkUncheckedUpdateWithoutUserInput_schema); - - -// File: PersonalMarkUncheckedUpdateManyWithoutUserInput.schema.ts -const __makeSchema_PersonalMarkUncheckedUpdateManyWithoutUserInput_schema = () => z.object({ - createdAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - markId: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - givenById: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable() -}).strict(); -export const PersonalMarkUncheckedUpdateManyWithoutUserInputObjectSchema: z.ZodType = z.lazy(__makeSchema_PersonalMarkUncheckedUpdateManyWithoutUserInput_schema) as unknown as z.ZodType; -export const PersonalMarkUncheckedUpdateManyWithoutUserInputObjectZodSchema = z.lazy(__makeSchema_PersonalMarkUncheckedUpdateManyWithoutUserInput_schema); - - -// File: GroupMembershipUpdateWithoutUserInput.schema.ts -const __makeSchema_GroupMembershipUpdateWithoutUserInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - start: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - end: z.union([z.coerce.date(), NullableDateTimeFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - createdAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - updatedAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - get group(){ return GroupUpdateOneRequiredWithoutMembershipsNestedInputObjectSchema.optional(); }, - get roles(){ return GroupMembershipRoleUpdateManyWithoutMembershipNestedInputObjectSchema.optional(); } -}).strict(); -export const GroupMembershipUpdateWithoutUserInputObjectSchema: z.ZodType = z.lazy(__makeSchema_GroupMembershipUpdateWithoutUserInput_schema) as unknown as z.ZodType; -export const GroupMembershipUpdateWithoutUserInputObjectZodSchema = z.lazy(__makeSchema_GroupMembershipUpdateWithoutUserInput_schema); - - -// File: GroupMembershipUncheckedUpdateWithoutUserInput.schema.ts -const __makeSchema_GroupMembershipUncheckedUpdateWithoutUserInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - start: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - end: z.union([z.coerce.date(), NullableDateTimeFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - createdAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - updatedAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - groupId: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - get roles(){ return GroupMembershipRoleUncheckedUpdateManyWithoutMembershipNestedInputObjectSchema.optional(); } -}).strict(); -export const GroupMembershipUncheckedUpdateWithoutUserInputObjectSchema: z.ZodType = z.lazy(__makeSchema_GroupMembershipUncheckedUpdateWithoutUserInput_schema) as unknown as z.ZodType; -export const GroupMembershipUncheckedUpdateWithoutUserInputObjectZodSchema = z.lazy(__makeSchema_GroupMembershipUncheckedUpdateWithoutUserInput_schema); - - -// File: GroupMembershipUncheckedUpdateManyWithoutUserInput.schema.ts -const __makeSchema_GroupMembershipUncheckedUpdateManyWithoutUserInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - start: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - end: z.union([z.coerce.date(), NullableDateTimeFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - createdAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - updatedAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - groupId: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional() -}).strict(); -export const GroupMembershipUncheckedUpdateManyWithoutUserInputObjectSchema: z.ZodType = z.lazy(__makeSchema_GroupMembershipUncheckedUpdateManyWithoutUserInput_schema) as unknown as z.ZodType; -export const GroupMembershipUncheckedUpdateManyWithoutUserInputObjectZodSchema = z.lazy(__makeSchema_GroupMembershipUncheckedUpdateManyWithoutUserInput_schema); - - -// File: MembershipUpdateWithoutUserInput.schema.ts -const __makeSchema_MembershipUpdateWithoutUserInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - type: z.union([MembershipTypeSchema, EnumMembershipTypeFieldUpdateOperationsInputObjectSchema]).optional(), - specialization: z.union([MembershipSpecializationSchema, NullableEnumMembershipSpecializationFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - start: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - end: z.union([z.coerce.date(), NullableDateTimeFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - semester: z.union([z.number().int(), NullableIntFieldUpdateOperationsInputObjectSchema]).optional().nullable() -}).strict(); -export const MembershipUpdateWithoutUserInputObjectSchema: z.ZodType = z.lazy(__makeSchema_MembershipUpdateWithoutUserInput_schema) as unknown as z.ZodType; -export const MembershipUpdateWithoutUserInputObjectZodSchema = z.lazy(__makeSchema_MembershipUpdateWithoutUserInput_schema); - - -// File: MembershipUncheckedUpdateWithoutUserInput.schema.ts -const __makeSchema_MembershipUncheckedUpdateWithoutUserInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - type: z.union([MembershipTypeSchema, EnumMembershipTypeFieldUpdateOperationsInputObjectSchema]).optional(), - specialization: z.union([MembershipSpecializationSchema, NullableEnumMembershipSpecializationFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - start: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - end: z.union([z.coerce.date(), NullableDateTimeFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - semester: z.union([z.number().int(), NullableIntFieldUpdateOperationsInputObjectSchema]).optional().nullable() -}).strict(); -export const MembershipUncheckedUpdateWithoutUserInputObjectSchema: z.ZodType = z.lazy(__makeSchema_MembershipUncheckedUpdateWithoutUserInput_schema) as unknown as z.ZodType; -export const MembershipUncheckedUpdateWithoutUserInputObjectZodSchema = z.lazy(__makeSchema_MembershipUncheckedUpdateWithoutUserInput_schema); - - -// File: MembershipUncheckedUpdateManyWithoutUserInput.schema.ts -const __makeSchema_MembershipUncheckedUpdateManyWithoutUserInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - type: z.union([MembershipTypeSchema, EnumMembershipTypeFieldUpdateOperationsInputObjectSchema]).optional(), - specialization: z.union([MembershipSpecializationSchema, NullableEnumMembershipSpecializationFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - start: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - end: z.union([z.coerce.date(), NullableDateTimeFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - semester: z.union([z.number().int(), NullableIntFieldUpdateOperationsInputObjectSchema]).optional().nullable() -}).strict(); -export const MembershipUncheckedUpdateManyWithoutUserInputObjectSchema: z.ZodType = z.lazy(__makeSchema_MembershipUncheckedUpdateManyWithoutUserInput_schema) as unknown as z.ZodType; -export const MembershipUncheckedUpdateManyWithoutUserInputObjectZodSchema = z.lazy(__makeSchema_MembershipUncheckedUpdateManyWithoutUserInput_schema); - - -// File: PersonalMarkUpdateWithoutGivenByInput.schema.ts -const __makeSchema_PersonalMarkUpdateWithoutGivenByInput_schema = () => z.object({ - createdAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - get mark(){ return MarkUpdateOneRequiredWithoutUsersNestedInputObjectSchema.optional(); }, - get user(){ return UserUpdateOneRequiredWithoutPersonalMarkNestedInputObjectSchema.optional(); } -}).strict(); -export const PersonalMarkUpdateWithoutGivenByInputObjectSchema: z.ZodType = z.lazy(__makeSchema_PersonalMarkUpdateWithoutGivenByInput_schema) as unknown as z.ZodType; -export const PersonalMarkUpdateWithoutGivenByInputObjectZodSchema = z.lazy(__makeSchema_PersonalMarkUpdateWithoutGivenByInput_schema); - - -// File: PersonalMarkUncheckedUpdateWithoutGivenByInput.schema.ts -const __makeSchema_PersonalMarkUncheckedUpdateWithoutGivenByInput_schema = () => z.object({ - createdAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - markId: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - userId: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional() -}).strict(); -export const PersonalMarkUncheckedUpdateWithoutGivenByInputObjectSchema: z.ZodType = z.lazy(__makeSchema_PersonalMarkUncheckedUpdateWithoutGivenByInput_schema) as unknown as z.ZodType; -export const PersonalMarkUncheckedUpdateWithoutGivenByInputObjectZodSchema = z.lazy(__makeSchema_PersonalMarkUncheckedUpdateWithoutGivenByInput_schema); - - -// File: PersonalMarkUncheckedUpdateManyWithoutGivenByInput.schema.ts -const __makeSchema_PersonalMarkUncheckedUpdateManyWithoutGivenByInput_schema = () => z.object({ - createdAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - markId: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - userId: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional() -}).strict(); -export const PersonalMarkUncheckedUpdateManyWithoutGivenByInputObjectSchema: z.ZodType = z.lazy(__makeSchema_PersonalMarkUncheckedUpdateManyWithoutGivenByInput_schema) as unknown as z.ZodType; -export const PersonalMarkUncheckedUpdateManyWithoutGivenByInputObjectZodSchema = z.lazy(__makeSchema_PersonalMarkUncheckedUpdateManyWithoutGivenByInput_schema); - - -// File: AttendeeUpdateWithoutPaymentRefundedByInput.schema.ts -const __makeSchema_AttendeeUpdateWithoutPaymentRefundedByInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - userGrade: z.union([z.number().int(), NullableIntFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - selections: z.union([JsonNullValueInputSchema, jsonSchema]).optional(), - reserved: z.union([z.boolean(), BoolFieldUpdateOperationsInputObjectSchema]).optional(), - earliestReservationAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - attendedAt: z.union([z.coerce.date(), NullableDateTimeFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - createdAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - updatedAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - paymentDeadline: z.union([z.coerce.date(), NullableDateTimeFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - paymentLink: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - paymentId: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - paymentReservedAt: z.union([z.coerce.date(), NullableDateTimeFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - paymentChargeDeadline: z.union([z.coerce.date(), NullableDateTimeFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - paymentChargedAt: z.union([z.coerce.date(), NullableDateTimeFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - paymentRefundedAt: z.union([z.coerce.date(), NullableDateTimeFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - paymentCheckoutUrl: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - get feedbackFormAnswer(){ return FeedbackFormAnswerUpdateOneWithoutAttendeeNestedInputObjectSchema.optional(); }, - get attendance(){ return AttendanceUpdateOneRequiredWithoutAttendeesNestedInputObjectSchema.optional(); }, - get user(){ return UserUpdateOneRequiredWithoutAttendeeNestedInputObjectSchema.optional(); }, - get attendancePool(){ return AttendancePoolUpdateOneRequiredWithoutAttendeesNestedInputObjectSchema.optional(); } -}).strict(); -export const AttendeeUpdateWithoutPaymentRefundedByInputObjectSchema: z.ZodType = z.lazy(__makeSchema_AttendeeUpdateWithoutPaymentRefundedByInput_schema) as unknown as z.ZodType; -export const AttendeeUpdateWithoutPaymentRefundedByInputObjectZodSchema = z.lazy(__makeSchema_AttendeeUpdateWithoutPaymentRefundedByInput_schema); - - -// File: AttendeeUncheckedUpdateWithoutPaymentRefundedByInput.schema.ts -const __makeSchema_AttendeeUncheckedUpdateWithoutPaymentRefundedByInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - userGrade: z.union([z.number().int(), NullableIntFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - selections: z.union([JsonNullValueInputSchema, jsonSchema]).optional(), - reserved: z.union([z.boolean(), BoolFieldUpdateOperationsInputObjectSchema]).optional(), - earliestReservationAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - attendedAt: z.union([z.coerce.date(), NullableDateTimeFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - createdAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - updatedAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - paymentDeadline: z.union([z.coerce.date(), NullableDateTimeFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - paymentLink: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - paymentId: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - paymentReservedAt: z.union([z.coerce.date(), NullableDateTimeFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - paymentChargeDeadline: z.union([z.coerce.date(), NullableDateTimeFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - paymentChargedAt: z.union([z.coerce.date(), NullableDateTimeFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - paymentRefundedAt: z.union([z.coerce.date(), NullableDateTimeFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - paymentCheckoutUrl: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - attendanceId: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - userId: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - attendancePoolId: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - get feedbackFormAnswer(){ return FeedbackFormAnswerUncheckedUpdateOneWithoutAttendeeNestedInputObjectSchema.optional(); } -}).strict(); -export const AttendeeUncheckedUpdateWithoutPaymentRefundedByInputObjectSchema: z.ZodType = z.lazy(__makeSchema_AttendeeUncheckedUpdateWithoutPaymentRefundedByInput_schema) as unknown as z.ZodType; -export const AttendeeUncheckedUpdateWithoutPaymentRefundedByInputObjectZodSchema = z.lazy(__makeSchema_AttendeeUncheckedUpdateWithoutPaymentRefundedByInput_schema); - - -// File: AttendeeUncheckedUpdateManyWithoutPaymentRefundedByInput.schema.ts -const __makeSchema_AttendeeUncheckedUpdateManyWithoutPaymentRefundedByInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - userGrade: z.union([z.number().int(), NullableIntFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - selections: z.union([JsonNullValueInputSchema, jsonSchema]).optional(), - reserved: z.union([z.boolean(), BoolFieldUpdateOperationsInputObjectSchema]).optional(), - earliestReservationAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - attendedAt: z.union([z.coerce.date(), NullableDateTimeFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - createdAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - updatedAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - paymentDeadline: z.union([z.coerce.date(), NullableDateTimeFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - paymentLink: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - paymentId: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - paymentReservedAt: z.union([z.coerce.date(), NullableDateTimeFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - paymentChargeDeadline: z.union([z.coerce.date(), NullableDateTimeFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - paymentChargedAt: z.union([z.coerce.date(), NullableDateTimeFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - paymentRefundedAt: z.union([z.coerce.date(), NullableDateTimeFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - paymentCheckoutUrl: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - attendanceId: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - userId: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - attendancePoolId: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional() -}).strict(); -export const AttendeeUncheckedUpdateManyWithoutPaymentRefundedByInputObjectSchema: z.ZodType = z.lazy(__makeSchema_AttendeeUncheckedUpdateManyWithoutPaymentRefundedByInput_schema) as unknown as z.ZodType; -export const AttendeeUncheckedUpdateManyWithoutPaymentRefundedByInputObjectZodSchema = z.lazy(__makeSchema_AttendeeUncheckedUpdateManyWithoutPaymentRefundedByInput_schema); - - -// File: AuditLogUpdateWithoutUserInput.schema.ts -const __makeSchema_AuditLogUpdateWithoutUserInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - tableName: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - rowId: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - createdAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - operation: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - rowData: z.union([JsonNullValueInputSchema, jsonSchema]).optional(), - transactionId: z.union([z.bigint(), BigIntFieldUpdateOperationsInputObjectSchema]).optional() -}).strict(); -export const AuditLogUpdateWithoutUserInputObjectSchema: z.ZodType = z.lazy(__makeSchema_AuditLogUpdateWithoutUserInput_schema) as unknown as z.ZodType; -export const AuditLogUpdateWithoutUserInputObjectZodSchema = z.lazy(__makeSchema_AuditLogUpdateWithoutUserInput_schema); - - -// File: AuditLogUncheckedUpdateWithoutUserInput.schema.ts -const __makeSchema_AuditLogUncheckedUpdateWithoutUserInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - tableName: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - rowId: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - createdAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - operation: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - rowData: z.union([JsonNullValueInputSchema, jsonSchema]).optional(), - transactionId: z.union([z.bigint(), BigIntFieldUpdateOperationsInputObjectSchema]).optional() -}).strict(); -export const AuditLogUncheckedUpdateWithoutUserInputObjectSchema: z.ZodType = z.lazy(__makeSchema_AuditLogUncheckedUpdateWithoutUserInput_schema) as unknown as z.ZodType; -export const AuditLogUncheckedUpdateWithoutUserInputObjectZodSchema = z.lazy(__makeSchema_AuditLogUncheckedUpdateWithoutUserInput_schema); - - -// File: AuditLogUncheckedUpdateManyWithoutUserInput.schema.ts -const __makeSchema_AuditLogUncheckedUpdateManyWithoutUserInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - tableName: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - rowId: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - createdAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - operation: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - rowData: z.union([JsonNullValueInputSchema, jsonSchema]).optional(), - transactionId: z.union([z.bigint(), BigIntFieldUpdateOperationsInputObjectSchema]).optional() -}).strict(); -export const AuditLogUncheckedUpdateManyWithoutUserInputObjectSchema: z.ZodType = z.lazy(__makeSchema_AuditLogUncheckedUpdateManyWithoutUserInput_schema) as unknown as z.ZodType; -export const AuditLogUncheckedUpdateManyWithoutUserInputObjectZodSchema = z.lazy(__makeSchema_AuditLogUncheckedUpdateManyWithoutUserInput_schema); - - -// File: DeregisterReasonUpdateWithoutUserInput.schema.ts -const __makeSchema_DeregisterReasonUpdateWithoutUserInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - createdAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - registeredAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - type: z.union([DeregisterReasonTypeSchema, EnumDeregisterReasonTypeFieldUpdateOperationsInputObjectSchema]).optional(), - details: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - userGrade: z.union([z.number().int(), NullableIntFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - get event(){ return EventUpdateOneRequiredWithoutDeregisterReasonsNestedInputObjectSchema.optional(); } -}).strict(); -export const DeregisterReasonUpdateWithoutUserInputObjectSchema: z.ZodType = z.lazy(__makeSchema_DeregisterReasonUpdateWithoutUserInput_schema) as unknown as z.ZodType; -export const DeregisterReasonUpdateWithoutUserInputObjectZodSchema = z.lazy(__makeSchema_DeregisterReasonUpdateWithoutUserInput_schema); - - -// File: DeregisterReasonUncheckedUpdateWithoutUserInput.schema.ts -const __makeSchema_DeregisterReasonUncheckedUpdateWithoutUserInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - createdAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - registeredAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - type: z.union([DeregisterReasonTypeSchema, EnumDeregisterReasonTypeFieldUpdateOperationsInputObjectSchema]).optional(), - details: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - userGrade: z.union([z.number().int(), NullableIntFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - eventId: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional() -}).strict(); -export const DeregisterReasonUncheckedUpdateWithoutUserInputObjectSchema: z.ZodType = z.lazy(__makeSchema_DeregisterReasonUncheckedUpdateWithoutUserInput_schema) as unknown as z.ZodType; -export const DeregisterReasonUncheckedUpdateWithoutUserInputObjectZodSchema = z.lazy(__makeSchema_DeregisterReasonUncheckedUpdateWithoutUserInput_schema); - - -// File: DeregisterReasonUncheckedUpdateManyWithoutUserInput.schema.ts -const __makeSchema_DeregisterReasonUncheckedUpdateManyWithoutUserInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - createdAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - registeredAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - type: z.union([DeregisterReasonTypeSchema, EnumDeregisterReasonTypeFieldUpdateOperationsInputObjectSchema]).optional(), - details: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - userGrade: z.union([z.number().int(), NullableIntFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - eventId: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional() -}).strict(); -export const DeregisterReasonUncheckedUpdateManyWithoutUserInputObjectSchema: z.ZodType = z.lazy(__makeSchema_DeregisterReasonUncheckedUpdateManyWithoutUserInput_schema) as unknown as z.ZodType; -export const DeregisterReasonUncheckedUpdateManyWithoutUserInputObjectZodSchema = z.lazy(__makeSchema_DeregisterReasonUncheckedUpdateManyWithoutUserInput_schema); - - -// File: NotificationRecipientUpdateWithoutUserInput.schema.ts -const __makeSchema_NotificationRecipientUpdateWithoutUserInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - readAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - get notification(){ return NotificationUpdateOneRequiredWithoutRecipientsNestedInputObjectSchema.optional(); } -}).strict(); -export const NotificationRecipientUpdateWithoutUserInputObjectSchema: z.ZodType = z.lazy(__makeSchema_NotificationRecipientUpdateWithoutUserInput_schema) as unknown as z.ZodType; -export const NotificationRecipientUpdateWithoutUserInputObjectZodSchema = z.lazy(__makeSchema_NotificationRecipientUpdateWithoutUserInput_schema); - - -// File: NotificationRecipientUncheckedUpdateWithoutUserInput.schema.ts -const __makeSchema_NotificationRecipientUncheckedUpdateWithoutUserInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - readAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - notificationId: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional() -}).strict(); -export const NotificationRecipientUncheckedUpdateWithoutUserInputObjectSchema: z.ZodType = z.lazy(__makeSchema_NotificationRecipientUncheckedUpdateWithoutUserInput_schema) as unknown as z.ZodType; -export const NotificationRecipientUncheckedUpdateWithoutUserInputObjectZodSchema = z.lazy(__makeSchema_NotificationRecipientUncheckedUpdateWithoutUserInput_schema); - - -// File: NotificationRecipientUncheckedUpdateManyWithoutUserInput.schema.ts -const __makeSchema_NotificationRecipientUncheckedUpdateManyWithoutUserInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - readAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - notificationId: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional() -}).strict(); -export const NotificationRecipientUncheckedUpdateManyWithoutUserInputObjectSchema: z.ZodType = z.lazy(__makeSchema_NotificationRecipientUncheckedUpdateManyWithoutUserInput_schema) as unknown as z.ZodType; -export const NotificationRecipientUncheckedUpdateManyWithoutUserInputObjectZodSchema = z.lazy(__makeSchema_NotificationRecipientUncheckedUpdateManyWithoutUserInput_schema); - - -// File: NotificationUpdateWithoutCreatedByInput.schema.ts -const __makeSchema_NotificationUpdateWithoutCreatedByInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - createdAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - updatedAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - title: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - shortDescription: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - content: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - type: z.union([NotificationTypeSchema, EnumNotificationTypeFieldUpdateOperationsInputObjectSchema]).optional(), - payload: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - payloadType: z.union([NotificationPayloadTypeSchema, EnumNotificationPayloadTypeFieldUpdateOperationsInputObjectSchema]).optional(), - get actorGroup(){ return GroupUpdateOneRequiredWithoutNotificationsNestedInputObjectSchema.optional(); }, - get lastUpdatedBy(){ return UserUpdateOneWithoutNotificationsUpdatedNestedInputObjectSchema.optional(); }, - get task(){ return TaskUpdateOneWithoutNotificationsNestedInputObjectSchema.optional(); }, - get recipients(){ return NotificationRecipientUpdateManyWithoutNotificationNestedInputObjectSchema.optional(); } -}).strict(); -export const NotificationUpdateWithoutCreatedByInputObjectSchema: z.ZodType = z.lazy(__makeSchema_NotificationUpdateWithoutCreatedByInput_schema) as unknown as z.ZodType; -export const NotificationUpdateWithoutCreatedByInputObjectZodSchema = z.lazy(__makeSchema_NotificationUpdateWithoutCreatedByInput_schema); - - -// File: NotificationUncheckedUpdateWithoutCreatedByInput.schema.ts -const __makeSchema_NotificationUncheckedUpdateWithoutCreatedByInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - createdAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - updatedAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - title: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - shortDescription: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - content: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - type: z.union([NotificationTypeSchema, EnumNotificationTypeFieldUpdateOperationsInputObjectSchema]).optional(), - payload: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - payloadType: z.union([NotificationPayloadTypeSchema, EnumNotificationPayloadTypeFieldUpdateOperationsInputObjectSchema]).optional(), - actorGroupId: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - lastUpdatedById: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - taskId: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - get recipients(){ return NotificationRecipientUncheckedUpdateManyWithoutNotificationNestedInputObjectSchema.optional(); } -}).strict(); -export const NotificationUncheckedUpdateWithoutCreatedByInputObjectSchema: z.ZodType = z.lazy(__makeSchema_NotificationUncheckedUpdateWithoutCreatedByInput_schema) as unknown as z.ZodType; -export const NotificationUncheckedUpdateWithoutCreatedByInputObjectZodSchema = z.lazy(__makeSchema_NotificationUncheckedUpdateWithoutCreatedByInput_schema); - - -// File: NotificationUncheckedUpdateManyWithoutCreatedByInput.schema.ts -const __makeSchema_NotificationUncheckedUpdateManyWithoutCreatedByInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - createdAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - updatedAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - title: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - shortDescription: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - content: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - type: z.union([NotificationTypeSchema, EnumNotificationTypeFieldUpdateOperationsInputObjectSchema]).optional(), - payload: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - payloadType: z.union([NotificationPayloadTypeSchema, EnumNotificationPayloadTypeFieldUpdateOperationsInputObjectSchema]).optional(), - actorGroupId: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - lastUpdatedById: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - taskId: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable() -}).strict(); -export const NotificationUncheckedUpdateManyWithoutCreatedByInputObjectSchema: z.ZodType = z.lazy(__makeSchema_NotificationUncheckedUpdateManyWithoutCreatedByInput_schema) as unknown as z.ZodType; -export const NotificationUncheckedUpdateManyWithoutCreatedByInputObjectZodSchema = z.lazy(__makeSchema_NotificationUncheckedUpdateManyWithoutCreatedByInput_schema); - - -// File: NotificationUpdateWithoutLastUpdatedByInput.schema.ts -const __makeSchema_NotificationUpdateWithoutLastUpdatedByInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - createdAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - updatedAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - title: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - shortDescription: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - content: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - type: z.union([NotificationTypeSchema, EnumNotificationTypeFieldUpdateOperationsInputObjectSchema]).optional(), - payload: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - payloadType: z.union([NotificationPayloadTypeSchema, EnumNotificationPayloadTypeFieldUpdateOperationsInputObjectSchema]).optional(), - get actorGroup(){ return GroupUpdateOneRequiredWithoutNotificationsNestedInputObjectSchema.optional(); }, - get createdBy(){ return UserUpdateOneWithoutNotificationsCreatedNestedInputObjectSchema.optional(); }, - get task(){ return TaskUpdateOneWithoutNotificationsNestedInputObjectSchema.optional(); }, - get recipients(){ return NotificationRecipientUpdateManyWithoutNotificationNestedInputObjectSchema.optional(); } -}).strict(); -export const NotificationUpdateWithoutLastUpdatedByInputObjectSchema: z.ZodType = z.lazy(__makeSchema_NotificationUpdateWithoutLastUpdatedByInput_schema) as unknown as z.ZodType; -export const NotificationUpdateWithoutLastUpdatedByInputObjectZodSchema = z.lazy(__makeSchema_NotificationUpdateWithoutLastUpdatedByInput_schema); - - -// File: NotificationUncheckedUpdateWithoutLastUpdatedByInput.schema.ts -const __makeSchema_NotificationUncheckedUpdateWithoutLastUpdatedByInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - createdAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - updatedAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - title: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - shortDescription: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - content: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - type: z.union([NotificationTypeSchema, EnumNotificationTypeFieldUpdateOperationsInputObjectSchema]).optional(), - payload: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - payloadType: z.union([NotificationPayloadTypeSchema, EnumNotificationPayloadTypeFieldUpdateOperationsInputObjectSchema]).optional(), - actorGroupId: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - createdById: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - taskId: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - get recipients(){ return NotificationRecipientUncheckedUpdateManyWithoutNotificationNestedInputObjectSchema.optional(); } -}).strict(); -export const NotificationUncheckedUpdateWithoutLastUpdatedByInputObjectSchema: z.ZodType = z.lazy(__makeSchema_NotificationUncheckedUpdateWithoutLastUpdatedByInput_schema) as unknown as z.ZodType; -export const NotificationUncheckedUpdateWithoutLastUpdatedByInputObjectZodSchema = z.lazy(__makeSchema_NotificationUncheckedUpdateWithoutLastUpdatedByInput_schema); - - -// File: NotificationUncheckedUpdateManyWithoutLastUpdatedByInput.schema.ts -const __makeSchema_NotificationUncheckedUpdateManyWithoutLastUpdatedByInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - createdAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - updatedAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - title: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - shortDescription: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - content: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - type: z.union([NotificationTypeSchema, EnumNotificationTypeFieldUpdateOperationsInputObjectSchema]).optional(), - payload: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - payloadType: z.union([NotificationPayloadTypeSchema, EnumNotificationPayloadTypeFieldUpdateOperationsInputObjectSchema]).optional(), - actorGroupId: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - createdById: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - taskId: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable() -}).strict(); -export const NotificationUncheckedUpdateManyWithoutLastUpdatedByInputObjectSchema: z.ZodType = z.lazy(__makeSchema_NotificationUncheckedUpdateManyWithoutLastUpdatedByInput_schema) as unknown as z.ZodType; -export const NotificationUncheckedUpdateManyWithoutLastUpdatedByInputObjectZodSchema = z.lazy(__makeSchema_NotificationUncheckedUpdateManyWithoutLastUpdatedByInput_schema); - - -// File: ContestantUpdateWithoutUserInput.schema.ts -const __makeSchema_ContestantUpdateWithoutUserInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - resultValue: z.union([z.number().int(), NullableIntFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - get contest(){ return ContestUpdateOneRequiredWithoutContestantsNestedInputObjectSchema.optional(); }, - get team(){ return ContestTeamUpdateOneWithoutContestantNestedInputObjectSchema.optional(); }, - get wonContest(){ return ContestUpdateOneWithoutWinnerContestantNestedInputObjectSchema.optional(); } -}).strict(); -export const ContestantUpdateWithoutUserInputObjectSchema: z.ZodType = z.lazy(__makeSchema_ContestantUpdateWithoutUserInput_schema) as unknown as z.ZodType; -export const ContestantUpdateWithoutUserInputObjectZodSchema = z.lazy(__makeSchema_ContestantUpdateWithoutUserInput_schema); - - -// File: ContestantUncheckedUpdateWithoutUserInput.schema.ts -const __makeSchema_ContestantUncheckedUpdateWithoutUserInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - resultValue: z.union([z.number().int(), NullableIntFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - contestId: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - get team(){ return ContestTeamUncheckedUpdateOneWithoutContestantNestedInputObjectSchema.optional(); }, - get wonContest(){ return ContestUncheckedUpdateOneWithoutWinnerContestantNestedInputObjectSchema.optional(); } -}).strict(); -export const ContestantUncheckedUpdateWithoutUserInputObjectSchema: z.ZodType = z.lazy(__makeSchema_ContestantUncheckedUpdateWithoutUserInput_schema) as unknown as z.ZodType; -export const ContestantUncheckedUpdateWithoutUserInputObjectZodSchema = z.lazy(__makeSchema_ContestantUncheckedUpdateWithoutUserInput_schema); - - -// File: ContestantUncheckedUpdateManyWithoutUserInput.schema.ts -const __makeSchema_ContestantUncheckedUpdateManyWithoutUserInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - resultValue: z.union([z.number().int(), NullableIntFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - contestId: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional() -}).strict(); -export const ContestantUncheckedUpdateManyWithoutUserInputObjectSchema: z.ZodType = z.lazy(__makeSchema_ContestantUncheckedUpdateManyWithoutUserInput_schema) as unknown as z.ZodType; -export const ContestantUncheckedUpdateManyWithoutUserInputObjectZodSchema = z.lazy(__makeSchema_ContestantUncheckedUpdateManyWithoutUserInput_schema); - - -// File: ContestTeamUpdateWithoutMembersInput.schema.ts -const __makeSchema_ContestTeamUpdateWithoutMembersInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - name: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - get contestant(){ return ContestantUpdateOneRequiredWithoutTeamNestedInputObjectSchema.optional(); } -}).strict(); -export const ContestTeamUpdateWithoutMembersInputObjectSchema: z.ZodType = z.lazy(__makeSchema_ContestTeamUpdateWithoutMembersInput_schema) as unknown as z.ZodType; -export const ContestTeamUpdateWithoutMembersInputObjectZodSchema = z.lazy(__makeSchema_ContestTeamUpdateWithoutMembersInput_schema); - - -// File: ContestTeamUncheckedUpdateWithoutMembersInput.schema.ts -const __makeSchema_ContestTeamUncheckedUpdateWithoutMembersInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - name: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - contestantId: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional() -}).strict(); -export const ContestTeamUncheckedUpdateWithoutMembersInputObjectSchema: z.ZodType = z.lazy(__makeSchema_ContestTeamUncheckedUpdateWithoutMembersInput_schema) as unknown as z.ZodType; -export const ContestTeamUncheckedUpdateWithoutMembersInputObjectZodSchema = z.lazy(__makeSchema_ContestTeamUncheckedUpdateWithoutMembersInput_schema); - - -// File: ContestTeamUncheckedUpdateManyWithoutMembersInput.schema.ts -const __makeSchema_ContestTeamUncheckedUpdateManyWithoutMembersInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - name: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - contestantId: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional() -}).strict(); -export const ContestTeamUncheckedUpdateManyWithoutMembersInputObjectSchema: z.ZodType = z.lazy(__makeSchema_ContestTeamUncheckedUpdateManyWithoutMembersInput_schema) as unknown as z.ZodType; -export const ContestTeamUncheckedUpdateManyWithoutMembersInputObjectZodSchema = z.lazy(__makeSchema_ContestTeamUncheckedUpdateManyWithoutMembersInput_schema); - - -// File: EventCompanyCreateManyCompanyInput.schema.ts -const __makeSchema_EventCompanyCreateManyCompanyInput_schema = () => z.object({ - eventId: z.string() -}).strict(); -export const EventCompanyCreateManyCompanyInputObjectSchema: z.ZodType = z.lazy(__makeSchema_EventCompanyCreateManyCompanyInput_schema) as unknown as z.ZodType; -export const EventCompanyCreateManyCompanyInputObjectZodSchema = z.lazy(__makeSchema_EventCompanyCreateManyCompanyInput_schema); - - -// File: JobListingCreateManyCompanyInput.schema.ts -const __makeSchema_JobListingCreateManyCompanyInput_schema = () => z.object({ - id: z.string().optional(), - title: z.string(), - description: z.string(), - shortDescription: z.string().optional().nullable(), - start: z.coerce.date(), - end: z.coerce.date(), - featured: z.boolean(), - hidden: z.boolean(), - deadline: z.coerce.date().optional().nullable(), - employment: EmploymentTypeSchema, - applicationLink: z.string().optional().nullable(), - applicationEmail: z.string().optional().nullable(), - rollingAdmission: z.boolean(), - createdAt: z.coerce.date().optional(), - updatedAt: z.coerce.date().optional() -}).strict(); -export const JobListingCreateManyCompanyInputObjectSchema: z.ZodType = z.lazy(__makeSchema_JobListingCreateManyCompanyInput_schema) as unknown as z.ZodType; -export const JobListingCreateManyCompanyInputObjectZodSchema = z.lazy(__makeSchema_JobListingCreateManyCompanyInput_schema); - - -// File: EventCompanyUpdateWithoutCompanyInput.schema.ts -const __makeSchema_EventCompanyUpdateWithoutCompanyInput_schema = () => z.object({ - get event(){ return EventUpdateOneRequiredWithoutCompaniesNestedInputObjectSchema.optional(); } -}).strict(); -export const EventCompanyUpdateWithoutCompanyInputObjectSchema: z.ZodType = z.lazy(__makeSchema_EventCompanyUpdateWithoutCompanyInput_schema) as unknown as z.ZodType; -export const EventCompanyUpdateWithoutCompanyInputObjectZodSchema = z.lazy(__makeSchema_EventCompanyUpdateWithoutCompanyInput_schema); - - -// File: EventCompanyUncheckedUpdateWithoutCompanyInput.schema.ts -const __makeSchema_EventCompanyUncheckedUpdateWithoutCompanyInput_schema = () => z.object({ - eventId: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional() -}).strict(); -export const EventCompanyUncheckedUpdateWithoutCompanyInputObjectSchema: z.ZodType = z.lazy(__makeSchema_EventCompanyUncheckedUpdateWithoutCompanyInput_schema) as unknown as z.ZodType; -export const EventCompanyUncheckedUpdateWithoutCompanyInputObjectZodSchema = z.lazy(__makeSchema_EventCompanyUncheckedUpdateWithoutCompanyInput_schema); - - -// File: EventCompanyUncheckedUpdateManyWithoutCompanyInput.schema.ts -const __makeSchema_EventCompanyUncheckedUpdateManyWithoutCompanyInput_schema = () => z.object({ - eventId: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional() -}).strict(); -export const EventCompanyUncheckedUpdateManyWithoutCompanyInputObjectSchema: z.ZodType = z.lazy(__makeSchema_EventCompanyUncheckedUpdateManyWithoutCompanyInput_schema) as unknown as z.ZodType; -export const EventCompanyUncheckedUpdateManyWithoutCompanyInputObjectZodSchema = z.lazy(__makeSchema_EventCompanyUncheckedUpdateManyWithoutCompanyInput_schema); - - -// File: JobListingUpdateWithoutCompanyInput.schema.ts -const __makeSchema_JobListingUpdateWithoutCompanyInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - title: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - description: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - shortDescription: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - start: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - end: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - featured: z.union([z.boolean(), BoolFieldUpdateOperationsInputObjectSchema]).optional(), - hidden: z.union([z.boolean(), BoolFieldUpdateOperationsInputObjectSchema]).optional(), - deadline: z.union([z.coerce.date(), NullableDateTimeFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - employment: z.union([EmploymentTypeSchema, EnumEmploymentTypeFieldUpdateOperationsInputObjectSchema]).optional(), - applicationLink: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - applicationEmail: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - rollingAdmission: z.union([z.boolean(), BoolFieldUpdateOperationsInputObjectSchema]).optional(), - createdAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - updatedAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - get locations(){ return JobListingLocationUpdateManyWithoutJobListingNestedInputObjectSchema.optional(); } -}).strict(); -export const JobListingUpdateWithoutCompanyInputObjectSchema: z.ZodType = z.lazy(__makeSchema_JobListingUpdateWithoutCompanyInput_schema) as unknown as z.ZodType; -export const JobListingUpdateWithoutCompanyInputObjectZodSchema = z.lazy(__makeSchema_JobListingUpdateWithoutCompanyInput_schema); - - -// File: JobListingUncheckedUpdateWithoutCompanyInput.schema.ts -const __makeSchema_JobListingUncheckedUpdateWithoutCompanyInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - title: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - description: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - shortDescription: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - start: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - end: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - featured: z.union([z.boolean(), BoolFieldUpdateOperationsInputObjectSchema]).optional(), - hidden: z.union([z.boolean(), BoolFieldUpdateOperationsInputObjectSchema]).optional(), - deadline: z.union([z.coerce.date(), NullableDateTimeFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - employment: z.union([EmploymentTypeSchema, EnumEmploymentTypeFieldUpdateOperationsInputObjectSchema]).optional(), - applicationLink: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - applicationEmail: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - rollingAdmission: z.union([z.boolean(), BoolFieldUpdateOperationsInputObjectSchema]).optional(), - createdAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - updatedAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - get locations(){ return JobListingLocationUncheckedUpdateManyWithoutJobListingNestedInputObjectSchema.optional(); } -}).strict(); -export const JobListingUncheckedUpdateWithoutCompanyInputObjectSchema: z.ZodType = z.lazy(__makeSchema_JobListingUncheckedUpdateWithoutCompanyInput_schema) as unknown as z.ZodType; -export const JobListingUncheckedUpdateWithoutCompanyInputObjectZodSchema = z.lazy(__makeSchema_JobListingUncheckedUpdateWithoutCompanyInput_schema); - - -// File: JobListingUncheckedUpdateManyWithoutCompanyInput.schema.ts -const __makeSchema_JobListingUncheckedUpdateManyWithoutCompanyInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - title: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - description: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - shortDescription: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - start: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - end: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - featured: z.union([z.boolean(), BoolFieldUpdateOperationsInputObjectSchema]).optional(), - hidden: z.union([z.boolean(), BoolFieldUpdateOperationsInputObjectSchema]).optional(), - deadline: z.union([z.coerce.date(), NullableDateTimeFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - employment: z.union([EmploymentTypeSchema, EnumEmploymentTypeFieldUpdateOperationsInputObjectSchema]).optional(), - applicationLink: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - applicationEmail: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - rollingAdmission: z.union([z.boolean(), BoolFieldUpdateOperationsInputObjectSchema]).optional(), - createdAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - updatedAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional() -}).strict(); -export const JobListingUncheckedUpdateManyWithoutCompanyInputObjectSchema: z.ZodType = z.lazy(__makeSchema_JobListingUncheckedUpdateManyWithoutCompanyInput_schema) as unknown as z.ZodType; -export const JobListingUncheckedUpdateManyWithoutCompanyInputObjectZodSchema = z.lazy(__makeSchema_JobListingUncheckedUpdateManyWithoutCompanyInput_schema); - - -// File: EventHostingGroupCreateManyGroupInput.schema.ts -const __makeSchema_EventHostingGroupCreateManyGroupInput_schema = () => z.object({ - eventId: z.string() -}).strict(); -export const EventHostingGroupCreateManyGroupInputObjectSchema: z.ZodType = z.lazy(__makeSchema_EventHostingGroupCreateManyGroupInput_schema) as unknown as z.ZodType; -export const EventHostingGroupCreateManyGroupInputObjectZodSchema = z.lazy(__makeSchema_EventHostingGroupCreateManyGroupInput_schema); - - -// File: GroupMembershipCreateManyGroupInput.schema.ts -const __makeSchema_GroupMembershipCreateManyGroupInput_schema = () => z.object({ - id: z.string().optional(), - start: z.coerce.date(), - end: z.coerce.date().optional().nullable(), - createdAt: z.coerce.date().optional(), - updatedAt: z.coerce.date().optional(), - userId: z.string() -}).strict(); -export const GroupMembershipCreateManyGroupInputObjectSchema: z.ZodType = z.lazy(__makeSchema_GroupMembershipCreateManyGroupInput_schema) as unknown as z.ZodType; -export const GroupMembershipCreateManyGroupInputObjectZodSchema = z.lazy(__makeSchema_GroupMembershipCreateManyGroupInput_schema); - - -// File: MarkGroupCreateManyGroupInput.schema.ts -const __makeSchema_MarkGroupCreateManyGroupInput_schema = () => z.object({ - markId: z.string() -}).strict(); -export const MarkGroupCreateManyGroupInputObjectSchema: z.ZodType = z.lazy(__makeSchema_MarkGroupCreateManyGroupInput_schema) as unknown as z.ZodType; -export const MarkGroupCreateManyGroupInputObjectZodSchema = z.lazy(__makeSchema_MarkGroupCreateManyGroupInput_schema); - - -// File: GroupRoleCreateManyGroupInput.schema.ts -const __makeSchema_GroupRoleCreateManyGroupInput_schema = () => z.object({ - id: z.string().optional(), - name: z.string(), - type: GroupRoleTypeSchema.optional() -}).strict(); -export const GroupRoleCreateManyGroupInputObjectSchema: z.ZodType = z.lazy(__makeSchema_GroupRoleCreateManyGroupInput_schema) as unknown as z.ZodType; -export const GroupRoleCreateManyGroupInputObjectZodSchema = z.lazy(__makeSchema_GroupRoleCreateManyGroupInput_schema); - - -// File: NotificationCreateManyActorGroupInput.schema.ts -const __makeSchema_NotificationCreateManyActorGroupInput_schema = () => z.object({ - id: z.string().optional(), - createdAt: z.coerce.date().optional(), - updatedAt: z.coerce.date().optional(), - title: z.string(), - shortDescription: z.string().optional().nullable(), - content: z.string(), - type: NotificationTypeSchema, - payload: z.string().optional().nullable(), - payloadType: NotificationPayloadTypeSchema, - createdById: z.string().optional().nullable(), - lastUpdatedById: z.string().optional().nullable(), - taskId: z.string().optional().nullable() -}).strict(); -export const NotificationCreateManyActorGroupInputObjectSchema: z.ZodType = z.lazy(__makeSchema_NotificationCreateManyActorGroupInput_schema) as unknown as z.ZodType; -export const NotificationCreateManyActorGroupInputObjectZodSchema = z.lazy(__makeSchema_NotificationCreateManyActorGroupInput_schema); - - -// File: EventHostingGroupUpdateWithoutGroupInput.schema.ts -const __makeSchema_EventHostingGroupUpdateWithoutGroupInput_schema = () => z.object({ - get event(){ return EventUpdateOneRequiredWithoutHostingGroupsNestedInputObjectSchema.optional(); } -}).strict(); -export const EventHostingGroupUpdateWithoutGroupInputObjectSchema: z.ZodType = z.lazy(__makeSchema_EventHostingGroupUpdateWithoutGroupInput_schema) as unknown as z.ZodType; -export const EventHostingGroupUpdateWithoutGroupInputObjectZodSchema = z.lazy(__makeSchema_EventHostingGroupUpdateWithoutGroupInput_schema); - - -// File: EventHostingGroupUncheckedUpdateWithoutGroupInput.schema.ts -const __makeSchema_EventHostingGroupUncheckedUpdateWithoutGroupInput_schema = () => z.object({ - eventId: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional() -}).strict(); -export const EventHostingGroupUncheckedUpdateWithoutGroupInputObjectSchema: z.ZodType = z.lazy(__makeSchema_EventHostingGroupUncheckedUpdateWithoutGroupInput_schema) as unknown as z.ZodType; -export const EventHostingGroupUncheckedUpdateWithoutGroupInputObjectZodSchema = z.lazy(__makeSchema_EventHostingGroupUncheckedUpdateWithoutGroupInput_schema); - - -// File: EventHostingGroupUncheckedUpdateManyWithoutGroupInput.schema.ts -const __makeSchema_EventHostingGroupUncheckedUpdateManyWithoutGroupInput_schema = () => z.object({ - eventId: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional() -}).strict(); -export const EventHostingGroupUncheckedUpdateManyWithoutGroupInputObjectSchema: z.ZodType = z.lazy(__makeSchema_EventHostingGroupUncheckedUpdateManyWithoutGroupInput_schema) as unknown as z.ZodType; -export const EventHostingGroupUncheckedUpdateManyWithoutGroupInputObjectZodSchema = z.lazy(__makeSchema_EventHostingGroupUncheckedUpdateManyWithoutGroupInput_schema); - - -// File: ContestUpdateWithoutGroupsInput.schema.ts -const __makeSchema_ContestUpdateWithoutGroupsInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - name: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - description: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - startDate: z.union([z.coerce.date(), NullableDateTimeFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - resultType: z.union([ContestResultTypeSchema, EnumContestResultTypeFieldUpdateOperationsInputObjectSchema]).optional(), - resultOrder: z.union([ContestResultOrderSchema, EnumContestResultOrderFieldUpdateOperationsInputObjectSchema]).optional(), - get winnerContestant(){ return ContestantUpdateOneWithoutWonContestNestedInputObjectSchema.optional(); }, - get contestants(){ return ContestantUpdateManyWithoutContestNestedInputObjectSchema.optional(); }, - get events(){ return EventUpdateManyWithoutContestNestedInputObjectSchema.optional(); } -}).strict(); -export const ContestUpdateWithoutGroupsInputObjectSchema: z.ZodType = z.lazy(__makeSchema_ContestUpdateWithoutGroupsInput_schema) as unknown as z.ZodType; -export const ContestUpdateWithoutGroupsInputObjectZodSchema = z.lazy(__makeSchema_ContestUpdateWithoutGroupsInput_schema); - - -// File: ContestUncheckedUpdateWithoutGroupsInput.schema.ts -const __makeSchema_ContestUncheckedUpdateWithoutGroupsInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - name: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - description: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - startDate: z.union([z.coerce.date(), NullableDateTimeFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - resultType: z.union([ContestResultTypeSchema, EnumContestResultTypeFieldUpdateOperationsInputObjectSchema]).optional(), - resultOrder: z.union([ContestResultOrderSchema, EnumContestResultOrderFieldUpdateOperationsInputObjectSchema]).optional(), - winnerContestantId: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - get contestants(){ return ContestantUncheckedUpdateManyWithoutContestNestedInputObjectSchema.optional(); }, - get events(){ return EventUncheckedUpdateManyWithoutContestNestedInputObjectSchema.optional(); } -}).strict(); -export const ContestUncheckedUpdateWithoutGroupsInputObjectSchema: z.ZodType = z.lazy(__makeSchema_ContestUncheckedUpdateWithoutGroupsInput_schema) as unknown as z.ZodType; -export const ContestUncheckedUpdateWithoutGroupsInputObjectZodSchema = z.lazy(__makeSchema_ContestUncheckedUpdateWithoutGroupsInput_schema); - - -// File: ContestUncheckedUpdateManyWithoutGroupsInput.schema.ts -const __makeSchema_ContestUncheckedUpdateManyWithoutGroupsInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - name: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - description: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - startDate: z.union([z.coerce.date(), NullableDateTimeFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - resultType: z.union([ContestResultTypeSchema, EnumContestResultTypeFieldUpdateOperationsInputObjectSchema]).optional(), - resultOrder: z.union([ContestResultOrderSchema, EnumContestResultOrderFieldUpdateOperationsInputObjectSchema]).optional(), - winnerContestantId: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable() -}).strict(); -export const ContestUncheckedUpdateManyWithoutGroupsInputObjectSchema: z.ZodType = z.lazy(__makeSchema_ContestUncheckedUpdateManyWithoutGroupsInput_schema) as unknown as z.ZodType; -export const ContestUncheckedUpdateManyWithoutGroupsInputObjectZodSchema = z.lazy(__makeSchema_ContestUncheckedUpdateManyWithoutGroupsInput_schema); - - -// File: GroupMembershipUpdateWithoutGroupInput.schema.ts -const __makeSchema_GroupMembershipUpdateWithoutGroupInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - start: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - end: z.union([z.coerce.date(), NullableDateTimeFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - createdAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - updatedAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - get user(){ return UserUpdateOneRequiredWithoutGroupMembershipsNestedInputObjectSchema.optional(); }, - get roles(){ return GroupMembershipRoleUpdateManyWithoutMembershipNestedInputObjectSchema.optional(); } -}).strict(); -export const GroupMembershipUpdateWithoutGroupInputObjectSchema: z.ZodType = z.lazy(__makeSchema_GroupMembershipUpdateWithoutGroupInput_schema) as unknown as z.ZodType; -export const GroupMembershipUpdateWithoutGroupInputObjectZodSchema = z.lazy(__makeSchema_GroupMembershipUpdateWithoutGroupInput_schema); - - -// File: GroupMembershipUncheckedUpdateWithoutGroupInput.schema.ts -const __makeSchema_GroupMembershipUncheckedUpdateWithoutGroupInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - start: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - end: z.union([z.coerce.date(), NullableDateTimeFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - createdAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - updatedAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - userId: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - get roles(){ return GroupMembershipRoleUncheckedUpdateManyWithoutMembershipNestedInputObjectSchema.optional(); } -}).strict(); -export const GroupMembershipUncheckedUpdateWithoutGroupInputObjectSchema: z.ZodType = z.lazy(__makeSchema_GroupMembershipUncheckedUpdateWithoutGroupInput_schema) as unknown as z.ZodType; -export const GroupMembershipUncheckedUpdateWithoutGroupInputObjectZodSchema = z.lazy(__makeSchema_GroupMembershipUncheckedUpdateWithoutGroupInput_schema); - - -// File: GroupMembershipUncheckedUpdateManyWithoutGroupInput.schema.ts -const __makeSchema_GroupMembershipUncheckedUpdateManyWithoutGroupInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - start: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - end: z.union([z.coerce.date(), NullableDateTimeFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - createdAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - updatedAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - userId: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional() -}).strict(); -export const GroupMembershipUncheckedUpdateManyWithoutGroupInputObjectSchema: z.ZodType = z.lazy(__makeSchema_GroupMembershipUncheckedUpdateManyWithoutGroupInput_schema) as unknown as z.ZodType; -export const GroupMembershipUncheckedUpdateManyWithoutGroupInputObjectZodSchema = z.lazy(__makeSchema_GroupMembershipUncheckedUpdateManyWithoutGroupInput_schema); - - -// File: MarkGroupUpdateWithoutGroupInput.schema.ts -const __makeSchema_MarkGroupUpdateWithoutGroupInput_schema = () => z.object({ - get mark(){ return MarkUpdateOneRequiredWithoutGroupsNestedInputObjectSchema.optional(); } -}).strict(); -export const MarkGroupUpdateWithoutGroupInputObjectSchema: z.ZodType = z.lazy(__makeSchema_MarkGroupUpdateWithoutGroupInput_schema) as unknown as z.ZodType; -export const MarkGroupUpdateWithoutGroupInputObjectZodSchema = z.lazy(__makeSchema_MarkGroupUpdateWithoutGroupInput_schema); - - -// File: MarkGroupUncheckedUpdateWithoutGroupInput.schema.ts -const __makeSchema_MarkGroupUncheckedUpdateWithoutGroupInput_schema = () => z.object({ - markId: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional() -}).strict(); -export const MarkGroupUncheckedUpdateWithoutGroupInputObjectSchema: z.ZodType = z.lazy(__makeSchema_MarkGroupUncheckedUpdateWithoutGroupInput_schema) as unknown as z.ZodType; -export const MarkGroupUncheckedUpdateWithoutGroupInputObjectZodSchema = z.lazy(__makeSchema_MarkGroupUncheckedUpdateWithoutGroupInput_schema); - - -// File: MarkGroupUncheckedUpdateManyWithoutGroupInput.schema.ts -const __makeSchema_MarkGroupUncheckedUpdateManyWithoutGroupInput_schema = () => z.object({ - markId: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional() -}).strict(); -export const MarkGroupUncheckedUpdateManyWithoutGroupInputObjectSchema: z.ZodType = z.lazy(__makeSchema_MarkGroupUncheckedUpdateManyWithoutGroupInput_schema) as unknown as z.ZodType; -export const MarkGroupUncheckedUpdateManyWithoutGroupInputObjectZodSchema = z.lazy(__makeSchema_MarkGroupUncheckedUpdateManyWithoutGroupInput_schema); - - -// File: GroupRoleUpdateWithoutGroupInput.schema.ts -const __makeSchema_GroupRoleUpdateWithoutGroupInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - name: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - type: z.union([GroupRoleTypeSchema, EnumGroupRoleTypeFieldUpdateOperationsInputObjectSchema]).optional(), - get groupMembershipRoles(){ return GroupMembershipRoleUpdateManyWithoutRoleNestedInputObjectSchema.optional(); } -}).strict(); -export const GroupRoleUpdateWithoutGroupInputObjectSchema: z.ZodType = z.lazy(__makeSchema_GroupRoleUpdateWithoutGroupInput_schema) as unknown as z.ZodType; -export const GroupRoleUpdateWithoutGroupInputObjectZodSchema = z.lazy(__makeSchema_GroupRoleUpdateWithoutGroupInput_schema); - - -// File: GroupRoleUncheckedUpdateWithoutGroupInput.schema.ts -const __makeSchema_GroupRoleUncheckedUpdateWithoutGroupInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - name: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - type: z.union([GroupRoleTypeSchema, EnumGroupRoleTypeFieldUpdateOperationsInputObjectSchema]).optional(), - get groupMembershipRoles(){ return GroupMembershipRoleUncheckedUpdateManyWithoutRoleNestedInputObjectSchema.optional(); } -}).strict(); -export const GroupRoleUncheckedUpdateWithoutGroupInputObjectSchema: z.ZodType = z.lazy(__makeSchema_GroupRoleUncheckedUpdateWithoutGroupInput_schema) as unknown as z.ZodType; -export const GroupRoleUncheckedUpdateWithoutGroupInputObjectZodSchema = z.lazy(__makeSchema_GroupRoleUncheckedUpdateWithoutGroupInput_schema); - - -// File: GroupRoleUncheckedUpdateManyWithoutGroupInput.schema.ts -const __makeSchema_GroupRoleUncheckedUpdateManyWithoutGroupInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - name: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - type: z.union([GroupRoleTypeSchema, EnumGroupRoleTypeFieldUpdateOperationsInputObjectSchema]).optional() -}).strict(); -export const GroupRoleUncheckedUpdateManyWithoutGroupInputObjectSchema: z.ZodType = z.lazy(__makeSchema_GroupRoleUncheckedUpdateManyWithoutGroupInput_schema) as unknown as z.ZodType; -export const GroupRoleUncheckedUpdateManyWithoutGroupInputObjectZodSchema = z.lazy(__makeSchema_GroupRoleUncheckedUpdateManyWithoutGroupInput_schema); - - -// File: NotificationUpdateWithoutActorGroupInput.schema.ts -const __makeSchema_NotificationUpdateWithoutActorGroupInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - createdAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - updatedAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - title: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - shortDescription: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - content: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - type: z.union([NotificationTypeSchema, EnumNotificationTypeFieldUpdateOperationsInputObjectSchema]).optional(), - payload: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - payloadType: z.union([NotificationPayloadTypeSchema, EnumNotificationPayloadTypeFieldUpdateOperationsInputObjectSchema]).optional(), - get createdBy(){ return UserUpdateOneWithoutNotificationsCreatedNestedInputObjectSchema.optional(); }, - get lastUpdatedBy(){ return UserUpdateOneWithoutNotificationsUpdatedNestedInputObjectSchema.optional(); }, - get task(){ return TaskUpdateOneWithoutNotificationsNestedInputObjectSchema.optional(); }, - get recipients(){ return NotificationRecipientUpdateManyWithoutNotificationNestedInputObjectSchema.optional(); } -}).strict(); -export const NotificationUpdateWithoutActorGroupInputObjectSchema: z.ZodType = z.lazy(__makeSchema_NotificationUpdateWithoutActorGroupInput_schema) as unknown as z.ZodType; -export const NotificationUpdateWithoutActorGroupInputObjectZodSchema = z.lazy(__makeSchema_NotificationUpdateWithoutActorGroupInput_schema); - - -// File: NotificationUncheckedUpdateWithoutActorGroupInput.schema.ts -const __makeSchema_NotificationUncheckedUpdateWithoutActorGroupInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - createdAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - updatedAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - title: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - shortDescription: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - content: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - type: z.union([NotificationTypeSchema, EnumNotificationTypeFieldUpdateOperationsInputObjectSchema]).optional(), - payload: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - payloadType: z.union([NotificationPayloadTypeSchema, EnumNotificationPayloadTypeFieldUpdateOperationsInputObjectSchema]).optional(), - createdById: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - lastUpdatedById: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - taskId: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - get recipients(){ return NotificationRecipientUncheckedUpdateManyWithoutNotificationNestedInputObjectSchema.optional(); } -}).strict(); -export const NotificationUncheckedUpdateWithoutActorGroupInputObjectSchema: z.ZodType = z.lazy(__makeSchema_NotificationUncheckedUpdateWithoutActorGroupInput_schema) as unknown as z.ZodType; -export const NotificationUncheckedUpdateWithoutActorGroupInputObjectZodSchema = z.lazy(__makeSchema_NotificationUncheckedUpdateWithoutActorGroupInput_schema); - - -// File: NotificationUncheckedUpdateManyWithoutActorGroupInput.schema.ts -const __makeSchema_NotificationUncheckedUpdateManyWithoutActorGroupInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - createdAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - updatedAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - title: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - shortDescription: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - content: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - type: z.union([NotificationTypeSchema, EnumNotificationTypeFieldUpdateOperationsInputObjectSchema]).optional(), - payload: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - payloadType: z.union([NotificationPayloadTypeSchema, EnumNotificationPayloadTypeFieldUpdateOperationsInputObjectSchema]).optional(), - createdById: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - lastUpdatedById: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - taskId: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable() -}).strict(); -export const NotificationUncheckedUpdateManyWithoutActorGroupInputObjectSchema: z.ZodType = z.lazy(__makeSchema_NotificationUncheckedUpdateManyWithoutActorGroupInput_schema) as unknown as z.ZodType; -export const NotificationUncheckedUpdateManyWithoutActorGroupInputObjectZodSchema = z.lazy(__makeSchema_NotificationUncheckedUpdateManyWithoutActorGroupInput_schema); - - -// File: GroupMembershipRoleCreateManyMembershipInput.schema.ts -const __makeSchema_GroupMembershipRoleCreateManyMembershipInput_schema = () => z.object({ - roleId: z.string() -}).strict(); -export const GroupMembershipRoleCreateManyMembershipInputObjectSchema: z.ZodType = z.lazy(__makeSchema_GroupMembershipRoleCreateManyMembershipInput_schema) as unknown as z.ZodType; -export const GroupMembershipRoleCreateManyMembershipInputObjectZodSchema = z.lazy(__makeSchema_GroupMembershipRoleCreateManyMembershipInput_schema); - - -// File: GroupMembershipRoleUpdateWithoutMembershipInput.schema.ts -const __makeSchema_GroupMembershipRoleUpdateWithoutMembershipInput_schema = () => z.object({ - get role(){ return GroupRoleUpdateOneRequiredWithoutGroupMembershipRolesNestedInputObjectSchema.optional(); } -}).strict(); -export const GroupMembershipRoleUpdateWithoutMembershipInputObjectSchema: z.ZodType = z.lazy(__makeSchema_GroupMembershipRoleUpdateWithoutMembershipInput_schema) as unknown as z.ZodType; -export const GroupMembershipRoleUpdateWithoutMembershipInputObjectZodSchema = z.lazy(__makeSchema_GroupMembershipRoleUpdateWithoutMembershipInput_schema); - - -// File: GroupMembershipRoleUncheckedUpdateWithoutMembershipInput.schema.ts -const __makeSchema_GroupMembershipRoleUncheckedUpdateWithoutMembershipInput_schema = () => z.object({ - roleId: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional() -}).strict(); -export const GroupMembershipRoleUncheckedUpdateWithoutMembershipInputObjectSchema: z.ZodType = z.lazy(__makeSchema_GroupMembershipRoleUncheckedUpdateWithoutMembershipInput_schema) as unknown as z.ZodType; -export const GroupMembershipRoleUncheckedUpdateWithoutMembershipInputObjectZodSchema = z.lazy(__makeSchema_GroupMembershipRoleUncheckedUpdateWithoutMembershipInput_schema); - - -// File: GroupMembershipRoleUncheckedUpdateManyWithoutMembershipInput.schema.ts -const __makeSchema_GroupMembershipRoleUncheckedUpdateManyWithoutMembershipInput_schema = () => z.object({ - roleId: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional() -}).strict(); -export const GroupMembershipRoleUncheckedUpdateManyWithoutMembershipInputObjectSchema: z.ZodType = z.lazy(__makeSchema_GroupMembershipRoleUncheckedUpdateManyWithoutMembershipInput_schema) as unknown as z.ZodType; -export const GroupMembershipRoleUncheckedUpdateManyWithoutMembershipInputObjectZodSchema = z.lazy(__makeSchema_GroupMembershipRoleUncheckedUpdateManyWithoutMembershipInput_schema); - - -// File: GroupMembershipRoleCreateManyRoleInput.schema.ts -const __makeSchema_GroupMembershipRoleCreateManyRoleInput_schema = () => z.object({ - membershipId: z.string() -}).strict(); -export const GroupMembershipRoleCreateManyRoleInputObjectSchema: z.ZodType = z.lazy(__makeSchema_GroupMembershipRoleCreateManyRoleInput_schema) as unknown as z.ZodType; -export const GroupMembershipRoleCreateManyRoleInputObjectZodSchema = z.lazy(__makeSchema_GroupMembershipRoleCreateManyRoleInput_schema); - - -// File: GroupMembershipRoleUpdateWithoutRoleInput.schema.ts -const __makeSchema_GroupMembershipRoleUpdateWithoutRoleInput_schema = () => z.object({ - get membership(){ return GroupMembershipUpdateOneRequiredWithoutRolesNestedInputObjectSchema.optional(); } -}).strict(); -export const GroupMembershipRoleUpdateWithoutRoleInputObjectSchema: z.ZodType = z.lazy(__makeSchema_GroupMembershipRoleUpdateWithoutRoleInput_schema) as unknown as z.ZodType; -export const GroupMembershipRoleUpdateWithoutRoleInputObjectZodSchema = z.lazy(__makeSchema_GroupMembershipRoleUpdateWithoutRoleInput_schema); - - -// File: GroupMembershipRoleUncheckedUpdateWithoutRoleInput.schema.ts -const __makeSchema_GroupMembershipRoleUncheckedUpdateWithoutRoleInput_schema = () => z.object({ - membershipId: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional() -}).strict(); -export const GroupMembershipRoleUncheckedUpdateWithoutRoleInputObjectSchema: z.ZodType = z.lazy(__makeSchema_GroupMembershipRoleUncheckedUpdateWithoutRoleInput_schema) as unknown as z.ZodType; -export const GroupMembershipRoleUncheckedUpdateWithoutRoleInputObjectZodSchema = z.lazy(__makeSchema_GroupMembershipRoleUncheckedUpdateWithoutRoleInput_schema); - - -// File: GroupMembershipRoleUncheckedUpdateManyWithoutRoleInput.schema.ts -const __makeSchema_GroupMembershipRoleUncheckedUpdateManyWithoutRoleInput_schema = () => z.object({ - membershipId: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional() -}).strict(); -export const GroupMembershipRoleUncheckedUpdateManyWithoutRoleInputObjectSchema: z.ZodType = z.lazy(__makeSchema_GroupMembershipRoleUncheckedUpdateManyWithoutRoleInput_schema) as unknown as z.ZodType; -export const GroupMembershipRoleUncheckedUpdateManyWithoutRoleInputObjectZodSchema = z.lazy(__makeSchema_GroupMembershipRoleUncheckedUpdateManyWithoutRoleInput_schema); - - -// File: AttendancePoolCreateManyAttendanceInput.schema.ts -const __makeSchema_AttendancePoolCreateManyAttendanceInput_schema = () => z.object({ - id: z.string().optional(), - title: z.string(), - mergeDelayHours: z.number().int().optional().nullable(), - yearCriteria: z.union([JsonNullValueInputSchema, jsonSchema]), - capacity: z.number().int(), - createdAt: z.coerce.date().optional(), - updatedAt: z.coerce.date().optional(), - taskId: z.string().optional().nullable() -}).strict(); -export const AttendancePoolCreateManyAttendanceInputObjectSchema: z.ZodType = z.lazy(__makeSchema_AttendancePoolCreateManyAttendanceInput_schema) as unknown as z.ZodType; -export const AttendancePoolCreateManyAttendanceInputObjectZodSchema = z.lazy(__makeSchema_AttendancePoolCreateManyAttendanceInput_schema); - - -// File: AttendeeCreateManyAttendanceInput.schema.ts -const __makeSchema_AttendeeCreateManyAttendanceInput_schema = () => z.object({ - id: z.string().optional(), - userGrade: z.number().int().optional().nullable(), - selections: z.union([JsonNullValueInputSchema, jsonSchema]).optional(), - reserved: z.boolean(), - earliestReservationAt: z.coerce.date(), - attendedAt: z.coerce.date().optional().nullable(), - createdAt: z.coerce.date().optional(), - updatedAt: z.coerce.date().optional(), - paymentDeadline: z.coerce.date().optional().nullable(), - paymentLink: z.string().optional().nullable(), - paymentId: z.string().optional().nullable(), - paymentReservedAt: z.coerce.date().optional().nullable(), - paymentChargeDeadline: z.coerce.date().optional().nullable(), - paymentChargedAt: z.coerce.date().optional().nullable(), - paymentRefundedAt: z.coerce.date().optional().nullable(), - paymentCheckoutUrl: z.string().optional().nullable(), - userId: z.string(), - attendancePoolId: z.string(), - paymentRefundedById: z.string().optional().nullable() -}).strict(); -export const AttendeeCreateManyAttendanceInputObjectSchema: z.ZodType = z.lazy(__makeSchema_AttendeeCreateManyAttendanceInput_schema) as unknown as z.ZodType; -export const AttendeeCreateManyAttendanceInputObjectZodSchema = z.lazy(__makeSchema_AttendeeCreateManyAttendanceInput_schema); - - -// File: EventCreateManyAttendanceInput.schema.ts -const __makeSchema_EventCreateManyAttendanceInput_schema = () => z.object({ - id: z.string().optional(), - title: z.string(), - start: z.coerce.date(), - end: z.coerce.date(), - status: EventStatusSchema, - description: z.string(), - shortDescription: z.string().optional().nullable(), - imageUrl: z.string().optional().nullable(), - locationTitle: z.string().optional().nullable(), - locationAddress: z.string().optional().nullable(), - locationLink: z.string().optional().nullable(), - type: EventTypeSchema, - markForMissedAttendance: z.boolean().optional(), - createdAt: z.coerce.date().optional(), - updatedAt: z.coerce.date().optional(), - parentId: z.string().optional().nullable(), - contestId: z.string().optional().nullable(), - metadataImportId: z.number().int().optional().nullable() -}).strict(); -export const EventCreateManyAttendanceInputObjectSchema: z.ZodType = z.lazy(__makeSchema_EventCreateManyAttendanceInput_schema) as unknown as z.ZodType; -export const EventCreateManyAttendanceInputObjectZodSchema = z.lazy(__makeSchema_EventCreateManyAttendanceInput_schema); - - -// File: AttendancePoolUpdateWithoutAttendanceInput.schema.ts -const __makeSchema_AttendancePoolUpdateWithoutAttendanceInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - title: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - mergeDelayHours: z.union([z.number().int(), NullableIntFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - yearCriteria: z.union([JsonNullValueInputSchema, jsonSchema]).optional(), - capacity: z.union([z.number().int(), IntFieldUpdateOperationsInputObjectSchema]).optional(), - createdAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - updatedAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - get task(){ return TaskUpdateOneWithoutAttendancePoolsNestedInputObjectSchema.optional(); }, - get attendees(){ return AttendeeUpdateManyWithoutAttendancePoolNestedInputObjectSchema.optional(); } -}).strict(); -export const AttendancePoolUpdateWithoutAttendanceInputObjectSchema: z.ZodType = z.lazy(__makeSchema_AttendancePoolUpdateWithoutAttendanceInput_schema) as unknown as z.ZodType; -export const AttendancePoolUpdateWithoutAttendanceInputObjectZodSchema = z.lazy(__makeSchema_AttendancePoolUpdateWithoutAttendanceInput_schema); - - -// File: AttendancePoolUncheckedUpdateWithoutAttendanceInput.schema.ts -const __makeSchema_AttendancePoolUncheckedUpdateWithoutAttendanceInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - title: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - mergeDelayHours: z.union([z.number().int(), NullableIntFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - yearCriteria: z.union([JsonNullValueInputSchema, jsonSchema]).optional(), - capacity: z.union([z.number().int(), IntFieldUpdateOperationsInputObjectSchema]).optional(), - createdAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - updatedAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - taskId: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - get attendees(){ return AttendeeUncheckedUpdateManyWithoutAttendancePoolNestedInputObjectSchema.optional(); } -}).strict(); -export const AttendancePoolUncheckedUpdateWithoutAttendanceInputObjectSchema: z.ZodType = z.lazy(__makeSchema_AttendancePoolUncheckedUpdateWithoutAttendanceInput_schema) as unknown as z.ZodType; -export const AttendancePoolUncheckedUpdateWithoutAttendanceInputObjectZodSchema = z.lazy(__makeSchema_AttendancePoolUncheckedUpdateWithoutAttendanceInput_schema); - - -// File: AttendancePoolUncheckedUpdateManyWithoutAttendanceInput.schema.ts -const __makeSchema_AttendancePoolUncheckedUpdateManyWithoutAttendanceInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - title: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - mergeDelayHours: z.union([z.number().int(), NullableIntFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - yearCriteria: z.union([JsonNullValueInputSchema, jsonSchema]).optional(), - capacity: z.union([z.number().int(), IntFieldUpdateOperationsInputObjectSchema]).optional(), - createdAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - updatedAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - taskId: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable() -}).strict(); -export const AttendancePoolUncheckedUpdateManyWithoutAttendanceInputObjectSchema: z.ZodType = z.lazy(__makeSchema_AttendancePoolUncheckedUpdateManyWithoutAttendanceInput_schema) as unknown as z.ZodType; -export const AttendancePoolUncheckedUpdateManyWithoutAttendanceInputObjectZodSchema = z.lazy(__makeSchema_AttendancePoolUncheckedUpdateManyWithoutAttendanceInput_schema); - - -// File: AttendeeUpdateWithoutAttendanceInput.schema.ts -const __makeSchema_AttendeeUpdateWithoutAttendanceInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - userGrade: z.union([z.number().int(), NullableIntFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - selections: z.union([JsonNullValueInputSchema, jsonSchema]).optional(), - reserved: z.union([z.boolean(), BoolFieldUpdateOperationsInputObjectSchema]).optional(), - earliestReservationAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - attendedAt: z.union([z.coerce.date(), NullableDateTimeFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - createdAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - updatedAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - paymentDeadline: z.union([z.coerce.date(), NullableDateTimeFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - paymentLink: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - paymentId: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - paymentReservedAt: z.union([z.coerce.date(), NullableDateTimeFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - paymentChargeDeadline: z.union([z.coerce.date(), NullableDateTimeFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - paymentChargedAt: z.union([z.coerce.date(), NullableDateTimeFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - paymentRefundedAt: z.union([z.coerce.date(), NullableDateTimeFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - paymentCheckoutUrl: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - get feedbackFormAnswer(){ return FeedbackFormAnswerUpdateOneWithoutAttendeeNestedInputObjectSchema.optional(); }, - get user(){ return UserUpdateOneRequiredWithoutAttendeeNestedInputObjectSchema.optional(); }, - get attendancePool(){ return AttendancePoolUpdateOneRequiredWithoutAttendeesNestedInputObjectSchema.optional(); }, - get paymentRefundedBy(){ return UserUpdateOneWithoutAttendeesRefundedNestedInputObjectSchema.optional(); } -}).strict(); -export const AttendeeUpdateWithoutAttendanceInputObjectSchema: z.ZodType = z.lazy(__makeSchema_AttendeeUpdateWithoutAttendanceInput_schema) as unknown as z.ZodType; -export const AttendeeUpdateWithoutAttendanceInputObjectZodSchema = z.lazy(__makeSchema_AttendeeUpdateWithoutAttendanceInput_schema); - - -// File: AttendeeUncheckedUpdateWithoutAttendanceInput.schema.ts -const __makeSchema_AttendeeUncheckedUpdateWithoutAttendanceInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - userGrade: z.union([z.number().int(), NullableIntFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - selections: z.union([JsonNullValueInputSchema, jsonSchema]).optional(), - reserved: z.union([z.boolean(), BoolFieldUpdateOperationsInputObjectSchema]).optional(), - earliestReservationAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - attendedAt: z.union([z.coerce.date(), NullableDateTimeFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - createdAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - updatedAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - paymentDeadline: z.union([z.coerce.date(), NullableDateTimeFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - paymentLink: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - paymentId: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - paymentReservedAt: z.union([z.coerce.date(), NullableDateTimeFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - paymentChargeDeadline: z.union([z.coerce.date(), NullableDateTimeFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - paymentChargedAt: z.union([z.coerce.date(), NullableDateTimeFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - paymentRefundedAt: z.union([z.coerce.date(), NullableDateTimeFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - paymentCheckoutUrl: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - userId: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - attendancePoolId: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - paymentRefundedById: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - get feedbackFormAnswer(){ return FeedbackFormAnswerUncheckedUpdateOneWithoutAttendeeNestedInputObjectSchema.optional(); } -}).strict(); -export const AttendeeUncheckedUpdateWithoutAttendanceInputObjectSchema: z.ZodType = z.lazy(__makeSchema_AttendeeUncheckedUpdateWithoutAttendanceInput_schema) as unknown as z.ZodType; -export const AttendeeUncheckedUpdateWithoutAttendanceInputObjectZodSchema = z.lazy(__makeSchema_AttendeeUncheckedUpdateWithoutAttendanceInput_schema); - - -// File: AttendeeUncheckedUpdateManyWithoutAttendanceInput.schema.ts -const __makeSchema_AttendeeUncheckedUpdateManyWithoutAttendanceInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - userGrade: z.union([z.number().int(), NullableIntFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - selections: z.union([JsonNullValueInputSchema, jsonSchema]).optional(), - reserved: z.union([z.boolean(), BoolFieldUpdateOperationsInputObjectSchema]).optional(), - earliestReservationAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - attendedAt: z.union([z.coerce.date(), NullableDateTimeFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - createdAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - updatedAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - paymentDeadline: z.union([z.coerce.date(), NullableDateTimeFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - paymentLink: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - paymentId: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - paymentReservedAt: z.union([z.coerce.date(), NullableDateTimeFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - paymentChargeDeadline: z.union([z.coerce.date(), NullableDateTimeFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - paymentChargedAt: z.union([z.coerce.date(), NullableDateTimeFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - paymentRefundedAt: z.union([z.coerce.date(), NullableDateTimeFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - paymentCheckoutUrl: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - userId: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - attendancePoolId: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - paymentRefundedById: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable() -}).strict(); -export const AttendeeUncheckedUpdateManyWithoutAttendanceInputObjectSchema: z.ZodType = z.lazy(__makeSchema_AttendeeUncheckedUpdateManyWithoutAttendanceInput_schema) as unknown as z.ZodType; -export const AttendeeUncheckedUpdateManyWithoutAttendanceInputObjectZodSchema = z.lazy(__makeSchema_AttendeeUncheckedUpdateManyWithoutAttendanceInput_schema); - - -// File: EventUpdateWithoutAttendanceInput.schema.ts -const __makeSchema_EventUpdateWithoutAttendanceInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - title: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - start: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - end: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - status: z.union([EventStatusSchema, EnumEventStatusFieldUpdateOperationsInputObjectSchema]).optional(), - description: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - shortDescription: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - imageUrl: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - locationTitle: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - locationAddress: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - locationLink: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - type: z.union([EventTypeSchema, EnumEventTypeFieldUpdateOperationsInputObjectSchema]).optional(), - markForMissedAttendance: z.union([z.boolean(), BoolFieldUpdateOperationsInputObjectSchema]).optional(), - createdAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - updatedAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - metadataImportId: z.union([z.number().int(), NullableIntFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - get feedbackForm(){ return FeedbackFormUpdateOneWithoutEventNestedInputObjectSchema.optional(); }, - get fadderuke(){ return FadderukeUpdateOneWithoutEventNestedInputObjectSchema.optional(); }, - get parent(){ return EventUpdateOneWithoutChildrenNestedInputObjectSchema.optional(); }, - get children(){ return EventUpdateManyWithoutParentNestedInputObjectSchema.optional(); }, - get contest(){ return ContestUpdateOneWithoutEventsNestedInputObjectSchema.optional(); }, - get companies(){ return EventCompanyUpdateManyWithoutEventNestedInputObjectSchema.optional(); }, - get hostingGroups(){ return EventHostingGroupUpdateManyWithoutEventNestedInputObjectSchema.optional(); }, - get deregisterReasons(){ return DeregisterReasonUpdateManyWithoutEventNestedInputObjectSchema.optional(); } -}).strict(); -export const EventUpdateWithoutAttendanceInputObjectSchema: z.ZodType = z.lazy(__makeSchema_EventUpdateWithoutAttendanceInput_schema) as unknown as z.ZodType; -export const EventUpdateWithoutAttendanceInputObjectZodSchema = z.lazy(__makeSchema_EventUpdateWithoutAttendanceInput_schema); - - -// File: EventUncheckedUpdateWithoutAttendanceInput.schema.ts -const __makeSchema_EventUncheckedUpdateWithoutAttendanceInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - title: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - start: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - end: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - status: z.union([EventStatusSchema, EnumEventStatusFieldUpdateOperationsInputObjectSchema]).optional(), - description: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - shortDescription: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - imageUrl: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - locationTitle: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - locationAddress: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - locationLink: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - type: z.union([EventTypeSchema, EnumEventTypeFieldUpdateOperationsInputObjectSchema]).optional(), - markForMissedAttendance: z.union([z.boolean(), BoolFieldUpdateOperationsInputObjectSchema]).optional(), - createdAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - updatedAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - parentId: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - contestId: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - metadataImportId: z.union([z.number().int(), NullableIntFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - get feedbackForm(){ return FeedbackFormUncheckedUpdateOneWithoutEventNestedInputObjectSchema.optional(); }, - get fadderuke(){ return FadderukeUncheckedUpdateOneWithoutEventNestedInputObjectSchema.optional(); }, - get children(){ return EventUncheckedUpdateManyWithoutParentNestedInputObjectSchema.optional(); }, - get companies(){ return EventCompanyUncheckedUpdateManyWithoutEventNestedInputObjectSchema.optional(); }, - get hostingGroups(){ return EventHostingGroupUncheckedUpdateManyWithoutEventNestedInputObjectSchema.optional(); }, - get deregisterReasons(){ return DeregisterReasonUncheckedUpdateManyWithoutEventNestedInputObjectSchema.optional(); } -}).strict(); -export const EventUncheckedUpdateWithoutAttendanceInputObjectSchema: z.ZodType = z.lazy(__makeSchema_EventUncheckedUpdateWithoutAttendanceInput_schema) as unknown as z.ZodType; -export const EventUncheckedUpdateWithoutAttendanceInputObjectZodSchema = z.lazy(__makeSchema_EventUncheckedUpdateWithoutAttendanceInput_schema); - - -// File: EventUncheckedUpdateManyWithoutAttendanceInput.schema.ts -const __makeSchema_EventUncheckedUpdateManyWithoutAttendanceInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - title: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - start: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - end: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - status: z.union([EventStatusSchema, EnumEventStatusFieldUpdateOperationsInputObjectSchema]).optional(), - description: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - shortDescription: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - imageUrl: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - locationTitle: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - locationAddress: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - locationLink: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - type: z.union([EventTypeSchema, EnumEventTypeFieldUpdateOperationsInputObjectSchema]).optional(), - markForMissedAttendance: z.union([z.boolean(), BoolFieldUpdateOperationsInputObjectSchema]).optional(), - createdAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - updatedAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - parentId: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - contestId: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - metadataImportId: z.union([z.number().int(), NullableIntFieldUpdateOperationsInputObjectSchema]).optional().nullable() -}).strict(); -export const EventUncheckedUpdateManyWithoutAttendanceInputObjectSchema: z.ZodType = z.lazy(__makeSchema_EventUncheckedUpdateManyWithoutAttendanceInput_schema) as unknown as z.ZodType; -export const EventUncheckedUpdateManyWithoutAttendanceInputObjectZodSchema = z.lazy(__makeSchema_EventUncheckedUpdateManyWithoutAttendanceInput_schema); - - -// File: AttendeeCreateManyAttendancePoolInput.schema.ts -const __makeSchema_AttendeeCreateManyAttendancePoolInput_schema = () => z.object({ - id: z.string().optional(), - userGrade: z.number().int().optional().nullable(), - selections: z.union([JsonNullValueInputSchema, jsonSchema]).optional(), - reserved: z.boolean(), - earliestReservationAt: z.coerce.date(), - attendedAt: z.coerce.date().optional().nullable(), - createdAt: z.coerce.date().optional(), - updatedAt: z.coerce.date().optional(), - paymentDeadline: z.coerce.date().optional().nullable(), - paymentLink: z.string().optional().nullable(), - paymentId: z.string().optional().nullable(), - paymentReservedAt: z.coerce.date().optional().nullable(), - paymentChargeDeadline: z.coerce.date().optional().nullable(), - paymentChargedAt: z.coerce.date().optional().nullable(), - paymentRefundedAt: z.coerce.date().optional().nullable(), - paymentCheckoutUrl: z.string().optional().nullable(), - attendanceId: z.string(), - userId: z.string(), - paymentRefundedById: z.string().optional().nullable() -}).strict(); -export const AttendeeCreateManyAttendancePoolInputObjectSchema: z.ZodType = z.lazy(__makeSchema_AttendeeCreateManyAttendancePoolInput_schema) as unknown as z.ZodType; -export const AttendeeCreateManyAttendancePoolInputObjectZodSchema = z.lazy(__makeSchema_AttendeeCreateManyAttendancePoolInput_schema); - - -// File: AttendeeUpdateWithoutAttendancePoolInput.schema.ts -const __makeSchema_AttendeeUpdateWithoutAttendancePoolInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - userGrade: z.union([z.number().int(), NullableIntFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - selections: z.union([JsonNullValueInputSchema, jsonSchema]).optional(), - reserved: z.union([z.boolean(), BoolFieldUpdateOperationsInputObjectSchema]).optional(), - earliestReservationAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - attendedAt: z.union([z.coerce.date(), NullableDateTimeFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - createdAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - updatedAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - paymentDeadline: z.union([z.coerce.date(), NullableDateTimeFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - paymentLink: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - paymentId: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - paymentReservedAt: z.union([z.coerce.date(), NullableDateTimeFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - paymentChargeDeadline: z.union([z.coerce.date(), NullableDateTimeFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - paymentChargedAt: z.union([z.coerce.date(), NullableDateTimeFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - paymentRefundedAt: z.union([z.coerce.date(), NullableDateTimeFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - paymentCheckoutUrl: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - get feedbackFormAnswer(){ return FeedbackFormAnswerUpdateOneWithoutAttendeeNestedInputObjectSchema.optional(); }, - get attendance(){ return AttendanceUpdateOneRequiredWithoutAttendeesNestedInputObjectSchema.optional(); }, - get user(){ return UserUpdateOneRequiredWithoutAttendeeNestedInputObjectSchema.optional(); }, - get paymentRefundedBy(){ return UserUpdateOneWithoutAttendeesRefundedNestedInputObjectSchema.optional(); } -}).strict(); -export const AttendeeUpdateWithoutAttendancePoolInputObjectSchema: z.ZodType = z.lazy(__makeSchema_AttendeeUpdateWithoutAttendancePoolInput_schema) as unknown as z.ZodType; -export const AttendeeUpdateWithoutAttendancePoolInputObjectZodSchema = z.lazy(__makeSchema_AttendeeUpdateWithoutAttendancePoolInput_schema); - - -// File: AttendeeUncheckedUpdateWithoutAttendancePoolInput.schema.ts -const __makeSchema_AttendeeUncheckedUpdateWithoutAttendancePoolInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - userGrade: z.union([z.number().int(), NullableIntFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - selections: z.union([JsonNullValueInputSchema, jsonSchema]).optional(), - reserved: z.union([z.boolean(), BoolFieldUpdateOperationsInputObjectSchema]).optional(), - earliestReservationAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - attendedAt: z.union([z.coerce.date(), NullableDateTimeFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - createdAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - updatedAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - paymentDeadline: z.union([z.coerce.date(), NullableDateTimeFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - paymentLink: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - paymentId: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - paymentReservedAt: z.union([z.coerce.date(), NullableDateTimeFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - paymentChargeDeadline: z.union([z.coerce.date(), NullableDateTimeFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - paymentChargedAt: z.union([z.coerce.date(), NullableDateTimeFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - paymentRefundedAt: z.union([z.coerce.date(), NullableDateTimeFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - paymentCheckoutUrl: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - attendanceId: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - userId: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - paymentRefundedById: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - get feedbackFormAnswer(){ return FeedbackFormAnswerUncheckedUpdateOneWithoutAttendeeNestedInputObjectSchema.optional(); } -}).strict(); -export const AttendeeUncheckedUpdateWithoutAttendancePoolInputObjectSchema: z.ZodType = z.lazy(__makeSchema_AttendeeUncheckedUpdateWithoutAttendancePoolInput_schema) as unknown as z.ZodType; -export const AttendeeUncheckedUpdateWithoutAttendancePoolInputObjectZodSchema = z.lazy(__makeSchema_AttendeeUncheckedUpdateWithoutAttendancePoolInput_schema); - - -// File: AttendeeUncheckedUpdateManyWithoutAttendancePoolInput.schema.ts -const __makeSchema_AttendeeUncheckedUpdateManyWithoutAttendancePoolInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - userGrade: z.union([z.number().int(), NullableIntFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - selections: z.union([JsonNullValueInputSchema, jsonSchema]).optional(), - reserved: z.union([z.boolean(), BoolFieldUpdateOperationsInputObjectSchema]).optional(), - earliestReservationAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - attendedAt: z.union([z.coerce.date(), NullableDateTimeFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - createdAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - updatedAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - paymentDeadline: z.union([z.coerce.date(), NullableDateTimeFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - paymentLink: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - paymentId: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - paymentReservedAt: z.union([z.coerce.date(), NullableDateTimeFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - paymentChargeDeadline: z.union([z.coerce.date(), NullableDateTimeFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - paymentChargedAt: z.union([z.coerce.date(), NullableDateTimeFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - paymentRefundedAt: z.union([z.coerce.date(), NullableDateTimeFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - paymentCheckoutUrl: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - attendanceId: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - userId: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - paymentRefundedById: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable() -}).strict(); -export const AttendeeUncheckedUpdateManyWithoutAttendancePoolInputObjectSchema: z.ZodType = z.lazy(__makeSchema_AttendeeUncheckedUpdateManyWithoutAttendancePoolInput_schema) as unknown as z.ZodType; -export const AttendeeUncheckedUpdateManyWithoutAttendancePoolInputObjectZodSchema = z.lazy(__makeSchema_AttendeeUncheckedUpdateManyWithoutAttendancePoolInput_schema); - - -// File: EventCreateManyParentInput.schema.ts -const __makeSchema_EventCreateManyParentInput_schema = () => z.object({ - id: z.string().optional(), - title: z.string(), - start: z.coerce.date(), - end: z.coerce.date(), - status: EventStatusSchema, - description: z.string(), - shortDescription: z.string().optional().nullable(), - imageUrl: z.string().optional().nullable(), - locationTitle: z.string().optional().nullable(), - locationAddress: z.string().optional().nullable(), - locationLink: z.string().optional().nullable(), - type: EventTypeSchema, - markForMissedAttendance: z.boolean().optional(), - createdAt: z.coerce.date().optional(), - updatedAt: z.coerce.date().optional(), - attendanceId: z.string().optional().nullable(), - contestId: z.string().optional().nullable(), - metadataImportId: z.number().int().optional().nullable() -}).strict(); -export const EventCreateManyParentInputObjectSchema: z.ZodType = z.lazy(__makeSchema_EventCreateManyParentInput_schema) as unknown as z.ZodType; -export const EventCreateManyParentInputObjectZodSchema = z.lazy(__makeSchema_EventCreateManyParentInput_schema); - - -// File: EventCompanyCreateManyEventInput.schema.ts -const __makeSchema_EventCompanyCreateManyEventInput_schema = () => z.object({ - companyId: z.string() -}).strict(); -export const EventCompanyCreateManyEventInputObjectSchema: z.ZodType = z.lazy(__makeSchema_EventCompanyCreateManyEventInput_schema) as unknown as z.ZodType; -export const EventCompanyCreateManyEventInputObjectZodSchema = z.lazy(__makeSchema_EventCompanyCreateManyEventInput_schema); - - -// File: EventHostingGroupCreateManyEventInput.schema.ts -const __makeSchema_EventHostingGroupCreateManyEventInput_schema = () => z.object({ - groupId: z.string() -}).strict(); -export const EventHostingGroupCreateManyEventInputObjectSchema: z.ZodType = z.lazy(__makeSchema_EventHostingGroupCreateManyEventInput_schema) as unknown as z.ZodType; -export const EventHostingGroupCreateManyEventInputObjectZodSchema = z.lazy(__makeSchema_EventHostingGroupCreateManyEventInput_schema); - - -// File: DeregisterReasonCreateManyEventInput.schema.ts -const __makeSchema_DeregisterReasonCreateManyEventInput_schema = () => z.object({ - id: z.string().optional(), - createdAt: z.coerce.date().optional(), - registeredAt: z.coerce.date(), - type: DeregisterReasonTypeSchema, - details: z.string().optional().nullable(), - userGrade: z.number().int().optional().nullable(), - userId: z.string() -}).strict(); -export const DeregisterReasonCreateManyEventInputObjectSchema: z.ZodType = z.lazy(__makeSchema_DeregisterReasonCreateManyEventInput_schema) as unknown as z.ZodType; -export const DeregisterReasonCreateManyEventInputObjectZodSchema = z.lazy(__makeSchema_DeregisterReasonCreateManyEventInput_schema); - - -// File: EventUpdateWithoutParentInput.schema.ts -const __makeSchema_EventUpdateWithoutParentInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - title: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - start: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - end: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - status: z.union([EventStatusSchema, EnumEventStatusFieldUpdateOperationsInputObjectSchema]).optional(), - description: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - shortDescription: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - imageUrl: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - locationTitle: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - locationAddress: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - locationLink: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - type: z.union([EventTypeSchema, EnumEventTypeFieldUpdateOperationsInputObjectSchema]).optional(), - markForMissedAttendance: z.union([z.boolean(), BoolFieldUpdateOperationsInputObjectSchema]).optional(), - createdAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - updatedAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - metadataImportId: z.union([z.number().int(), NullableIntFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - get feedbackForm(){ return FeedbackFormUpdateOneWithoutEventNestedInputObjectSchema.optional(); }, - get fadderuke(){ return FadderukeUpdateOneWithoutEventNestedInputObjectSchema.optional(); }, - get attendance(){ return AttendanceUpdateOneWithoutEventsNestedInputObjectSchema.optional(); }, - get children(){ return EventUpdateManyWithoutParentNestedInputObjectSchema.optional(); }, - get contest(){ return ContestUpdateOneWithoutEventsNestedInputObjectSchema.optional(); }, - get companies(){ return EventCompanyUpdateManyWithoutEventNestedInputObjectSchema.optional(); }, - get hostingGroups(){ return EventHostingGroupUpdateManyWithoutEventNestedInputObjectSchema.optional(); }, - get deregisterReasons(){ return DeregisterReasonUpdateManyWithoutEventNestedInputObjectSchema.optional(); } -}).strict(); -export const EventUpdateWithoutParentInputObjectSchema: z.ZodType = z.lazy(__makeSchema_EventUpdateWithoutParentInput_schema) as unknown as z.ZodType; -export const EventUpdateWithoutParentInputObjectZodSchema = z.lazy(__makeSchema_EventUpdateWithoutParentInput_schema); - - -// File: EventUncheckedUpdateWithoutParentInput.schema.ts -const __makeSchema_EventUncheckedUpdateWithoutParentInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - title: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - start: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - end: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - status: z.union([EventStatusSchema, EnumEventStatusFieldUpdateOperationsInputObjectSchema]).optional(), - description: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - shortDescription: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - imageUrl: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - locationTitle: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - locationAddress: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - locationLink: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - type: z.union([EventTypeSchema, EnumEventTypeFieldUpdateOperationsInputObjectSchema]).optional(), - markForMissedAttendance: z.union([z.boolean(), BoolFieldUpdateOperationsInputObjectSchema]).optional(), - createdAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - updatedAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - attendanceId: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - contestId: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - metadataImportId: z.union([z.number().int(), NullableIntFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - get feedbackForm(){ return FeedbackFormUncheckedUpdateOneWithoutEventNestedInputObjectSchema.optional(); }, - get fadderuke(){ return FadderukeUncheckedUpdateOneWithoutEventNestedInputObjectSchema.optional(); }, - get children(){ return EventUncheckedUpdateManyWithoutParentNestedInputObjectSchema.optional(); }, - get companies(){ return EventCompanyUncheckedUpdateManyWithoutEventNestedInputObjectSchema.optional(); }, - get hostingGroups(){ return EventHostingGroupUncheckedUpdateManyWithoutEventNestedInputObjectSchema.optional(); }, - get deregisterReasons(){ return DeregisterReasonUncheckedUpdateManyWithoutEventNestedInputObjectSchema.optional(); } -}).strict(); -export const EventUncheckedUpdateWithoutParentInputObjectSchema: z.ZodType = z.lazy(__makeSchema_EventUncheckedUpdateWithoutParentInput_schema) as unknown as z.ZodType; -export const EventUncheckedUpdateWithoutParentInputObjectZodSchema = z.lazy(__makeSchema_EventUncheckedUpdateWithoutParentInput_schema); - - -// File: EventUncheckedUpdateManyWithoutParentInput.schema.ts -const __makeSchema_EventUncheckedUpdateManyWithoutParentInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - title: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - start: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - end: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - status: z.union([EventStatusSchema, EnumEventStatusFieldUpdateOperationsInputObjectSchema]).optional(), - description: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - shortDescription: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - imageUrl: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - locationTitle: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - locationAddress: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - locationLink: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - type: z.union([EventTypeSchema, EnumEventTypeFieldUpdateOperationsInputObjectSchema]).optional(), - markForMissedAttendance: z.union([z.boolean(), BoolFieldUpdateOperationsInputObjectSchema]).optional(), - createdAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - updatedAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - attendanceId: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - contestId: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - metadataImportId: z.union([z.number().int(), NullableIntFieldUpdateOperationsInputObjectSchema]).optional().nullable() -}).strict(); -export const EventUncheckedUpdateManyWithoutParentInputObjectSchema: z.ZodType = z.lazy(__makeSchema_EventUncheckedUpdateManyWithoutParentInput_schema) as unknown as z.ZodType; -export const EventUncheckedUpdateManyWithoutParentInputObjectZodSchema = z.lazy(__makeSchema_EventUncheckedUpdateManyWithoutParentInput_schema); - - -// File: EventCompanyUpdateWithoutEventInput.schema.ts -const __makeSchema_EventCompanyUpdateWithoutEventInput_schema = () => z.object({ - get company(){ return CompanyUpdateOneRequiredWithoutEventsNestedInputObjectSchema.optional(); } -}).strict(); -export const EventCompanyUpdateWithoutEventInputObjectSchema: z.ZodType = z.lazy(__makeSchema_EventCompanyUpdateWithoutEventInput_schema) as unknown as z.ZodType; -export const EventCompanyUpdateWithoutEventInputObjectZodSchema = z.lazy(__makeSchema_EventCompanyUpdateWithoutEventInput_schema); - - -// File: EventCompanyUncheckedUpdateWithoutEventInput.schema.ts -const __makeSchema_EventCompanyUncheckedUpdateWithoutEventInput_schema = () => z.object({ - companyId: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional() -}).strict(); -export const EventCompanyUncheckedUpdateWithoutEventInputObjectSchema: z.ZodType = z.lazy(__makeSchema_EventCompanyUncheckedUpdateWithoutEventInput_schema) as unknown as z.ZodType; -export const EventCompanyUncheckedUpdateWithoutEventInputObjectZodSchema = z.lazy(__makeSchema_EventCompanyUncheckedUpdateWithoutEventInput_schema); - - -// File: EventCompanyUncheckedUpdateManyWithoutEventInput.schema.ts -const __makeSchema_EventCompanyUncheckedUpdateManyWithoutEventInput_schema = () => z.object({ - companyId: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional() -}).strict(); -export const EventCompanyUncheckedUpdateManyWithoutEventInputObjectSchema: z.ZodType = z.lazy(__makeSchema_EventCompanyUncheckedUpdateManyWithoutEventInput_schema) as unknown as z.ZodType; -export const EventCompanyUncheckedUpdateManyWithoutEventInputObjectZodSchema = z.lazy(__makeSchema_EventCompanyUncheckedUpdateManyWithoutEventInput_schema); - - -// File: EventHostingGroupUpdateWithoutEventInput.schema.ts -const __makeSchema_EventHostingGroupUpdateWithoutEventInput_schema = () => z.object({ - get group(){ return GroupUpdateOneRequiredWithoutEventsNestedInputObjectSchema.optional(); } -}).strict(); -export const EventHostingGroupUpdateWithoutEventInputObjectSchema: z.ZodType = z.lazy(__makeSchema_EventHostingGroupUpdateWithoutEventInput_schema) as unknown as z.ZodType; -export const EventHostingGroupUpdateWithoutEventInputObjectZodSchema = z.lazy(__makeSchema_EventHostingGroupUpdateWithoutEventInput_schema); - - -// File: EventHostingGroupUncheckedUpdateWithoutEventInput.schema.ts -const __makeSchema_EventHostingGroupUncheckedUpdateWithoutEventInput_schema = () => z.object({ - groupId: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional() -}).strict(); -export const EventHostingGroupUncheckedUpdateWithoutEventInputObjectSchema: z.ZodType = z.lazy(__makeSchema_EventHostingGroupUncheckedUpdateWithoutEventInput_schema) as unknown as z.ZodType; -export const EventHostingGroupUncheckedUpdateWithoutEventInputObjectZodSchema = z.lazy(__makeSchema_EventHostingGroupUncheckedUpdateWithoutEventInput_schema); - - -// File: EventHostingGroupUncheckedUpdateManyWithoutEventInput.schema.ts -const __makeSchema_EventHostingGroupUncheckedUpdateManyWithoutEventInput_schema = () => z.object({ - groupId: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional() -}).strict(); -export const EventHostingGroupUncheckedUpdateManyWithoutEventInputObjectSchema: z.ZodType = z.lazy(__makeSchema_EventHostingGroupUncheckedUpdateManyWithoutEventInput_schema) as unknown as z.ZodType; -export const EventHostingGroupUncheckedUpdateManyWithoutEventInputObjectZodSchema = z.lazy(__makeSchema_EventHostingGroupUncheckedUpdateManyWithoutEventInput_schema); - - -// File: DeregisterReasonUpdateWithoutEventInput.schema.ts -const __makeSchema_DeregisterReasonUpdateWithoutEventInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - createdAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - registeredAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - type: z.union([DeregisterReasonTypeSchema, EnumDeregisterReasonTypeFieldUpdateOperationsInputObjectSchema]).optional(), - details: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - userGrade: z.union([z.number().int(), NullableIntFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - get user(){ return UserUpdateOneRequiredWithoutDeregisterReasonsNestedInputObjectSchema.optional(); } -}).strict(); -export const DeregisterReasonUpdateWithoutEventInputObjectSchema: z.ZodType = z.lazy(__makeSchema_DeregisterReasonUpdateWithoutEventInput_schema) as unknown as z.ZodType; -export const DeregisterReasonUpdateWithoutEventInputObjectZodSchema = z.lazy(__makeSchema_DeregisterReasonUpdateWithoutEventInput_schema); - - -// File: DeregisterReasonUncheckedUpdateWithoutEventInput.schema.ts -const __makeSchema_DeregisterReasonUncheckedUpdateWithoutEventInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - createdAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - registeredAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - type: z.union([DeregisterReasonTypeSchema, EnumDeregisterReasonTypeFieldUpdateOperationsInputObjectSchema]).optional(), - details: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - userGrade: z.union([z.number().int(), NullableIntFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - userId: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional() -}).strict(); -export const DeregisterReasonUncheckedUpdateWithoutEventInputObjectSchema: z.ZodType = z.lazy(__makeSchema_DeregisterReasonUncheckedUpdateWithoutEventInput_schema) as unknown as z.ZodType; -export const DeregisterReasonUncheckedUpdateWithoutEventInputObjectZodSchema = z.lazy(__makeSchema_DeregisterReasonUncheckedUpdateWithoutEventInput_schema); - - -// File: DeregisterReasonUncheckedUpdateManyWithoutEventInput.schema.ts -const __makeSchema_DeregisterReasonUncheckedUpdateManyWithoutEventInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - createdAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - registeredAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - type: z.union([DeregisterReasonTypeSchema, EnumDeregisterReasonTypeFieldUpdateOperationsInputObjectSchema]).optional(), - details: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - userGrade: z.union([z.number().int(), NullableIntFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - userId: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional() -}).strict(); -export const DeregisterReasonUncheckedUpdateManyWithoutEventInputObjectSchema: z.ZodType = z.lazy(__makeSchema_DeregisterReasonUncheckedUpdateManyWithoutEventInput_schema) as unknown as z.ZodType; -export const DeregisterReasonUncheckedUpdateManyWithoutEventInputObjectZodSchema = z.lazy(__makeSchema_DeregisterReasonUncheckedUpdateManyWithoutEventInput_schema); - - -// File: PersonalMarkCreateManyMarkInput.schema.ts -const __makeSchema_PersonalMarkCreateManyMarkInput_schema = () => z.object({ - createdAt: z.coerce.date().optional(), - userId: z.string(), - givenById: z.string().optional().nullable() -}).strict(); -export const PersonalMarkCreateManyMarkInputObjectSchema: z.ZodType = z.lazy(__makeSchema_PersonalMarkCreateManyMarkInput_schema) as unknown as z.ZodType; -export const PersonalMarkCreateManyMarkInputObjectZodSchema = z.lazy(__makeSchema_PersonalMarkCreateManyMarkInput_schema); - - -// File: MarkGroupCreateManyMarkInput.schema.ts -const __makeSchema_MarkGroupCreateManyMarkInput_schema = () => z.object({ - groupId: z.string() -}).strict(); -export const MarkGroupCreateManyMarkInputObjectSchema: z.ZodType = z.lazy(__makeSchema_MarkGroupCreateManyMarkInput_schema) as unknown as z.ZodType; -export const MarkGroupCreateManyMarkInputObjectZodSchema = z.lazy(__makeSchema_MarkGroupCreateManyMarkInput_schema); - - -// File: PersonalMarkUpdateWithoutMarkInput.schema.ts -const __makeSchema_PersonalMarkUpdateWithoutMarkInput_schema = () => z.object({ - createdAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - get user(){ return UserUpdateOneRequiredWithoutPersonalMarkNestedInputObjectSchema.optional(); }, - get givenBy(){ return UserUpdateOneWithoutGivenMarksNestedInputObjectSchema.optional(); } -}).strict(); -export const PersonalMarkUpdateWithoutMarkInputObjectSchema: z.ZodType = z.lazy(__makeSchema_PersonalMarkUpdateWithoutMarkInput_schema) as unknown as z.ZodType; -export const PersonalMarkUpdateWithoutMarkInputObjectZodSchema = z.lazy(__makeSchema_PersonalMarkUpdateWithoutMarkInput_schema); - - -// File: PersonalMarkUncheckedUpdateWithoutMarkInput.schema.ts -const __makeSchema_PersonalMarkUncheckedUpdateWithoutMarkInput_schema = () => z.object({ - createdAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - userId: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - givenById: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable() -}).strict(); -export const PersonalMarkUncheckedUpdateWithoutMarkInputObjectSchema: z.ZodType = z.lazy(__makeSchema_PersonalMarkUncheckedUpdateWithoutMarkInput_schema) as unknown as z.ZodType; -export const PersonalMarkUncheckedUpdateWithoutMarkInputObjectZodSchema = z.lazy(__makeSchema_PersonalMarkUncheckedUpdateWithoutMarkInput_schema); - - -// File: PersonalMarkUncheckedUpdateManyWithoutMarkInput.schema.ts -const __makeSchema_PersonalMarkUncheckedUpdateManyWithoutMarkInput_schema = () => z.object({ - createdAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - userId: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - givenById: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable() -}).strict(); -export const PersonalMarkUncheckedUpdateManyWithoutMarkInputObjectSchema: z.ZodType = z.lazy(__makeSchema_PersonalMarkUncheckedUpdateManyWithoutMarkInput_schema) as unknown as z.ZodType; -export const PersonalMarkUncheckedUpdateManyWithoutMarkInputObjectZodSchema = z.lazy(__makeSchema_PersonalMarkUncheckedUpdateManyWithoutMarkInput_schema); - - -// File: MarkGroupUpdateWithoutMarkInput.schema.ts -const __makeSchema_MarkGroupUpdateWithoutMarkInput_schema = () => z.object({ - get group(){ return GroupUpdateOneRequiredWithoutMarksNestedInputObjectSchema.optional(); } -}).strict(); -export const MarkGroupUpdateWithoutMarkInputObjectSchema: z.ZodType = z.lazy(__makeSchema_MarkGroupUpdateWithoutMarkInput_schema) as unknown as z.ZodType; -export const MarkGroupUpdateWithoutMarkInputObjectZodSchema = z.lazy(__makeSchema_MarkGroupUpdateWithoutMarkInput_schema); - - -// File: MarkGroupUncheckedUpdateWithoutMarkInput.schema.ts -const __makeSchema_MarkGroupUncheckedUpdateWithoutMarkInput_schema = () => z.object({ - groupId: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional() -}).strict(); -export const MarkGroupUncheckedUpdateWithoutMarkInputObjectSchema: z.ZodType = z.lazy(__makeSchema_MarkGroupUncheckedUpdateWithoutMarkInput_schema) as unknown as z.ZodType; -export const MarkGroupUncheckedUpdateWithoutMarkInputObjectZodSchema = z.lazy(__makeSchema_MarkGroupUncheckedUpdateWithoutMarkInput_schema); - - -// File: MarkGroupUncheckedUpdateManyWithoutMarkInput.schema.ts -const __makeSchema_MarkGroupUncheckedUpdateManyWithoutMarkInput_schema = () => z.object({ - groupId: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional() -}).strict(); -export const MarkGroupUncheckedUpdateManyWithoutMarkInputObjectSchema: z.ZodType = z.lazy(__makeSchema_MarkGroupUncheckedUpdateManyWithoutMarkInput_schema) as unknown as z.ZodType; -export const MarkGroupUncheckedUpdateManyWithoutMarkInputObjectZodSchema = z.lazy(__makeSchema_MarkGroupUncheckedUpdateManyWithoutMarkInput_schema); - - -// File: JobListingLocationCreateManyJobListingInput.schema.ts -const __makeSchema_JobListingLocationCreateManyJobListingInput_schema = () => z.object({ - name: z.string(), - createdAt: z.coerce.date().optional() -}).strict(); -export const JobListingLocationCreateManyJobListingInputObjectSchema: z.ZodType = z.lazy(__makeSchema_JobListingLocationCreateManyJobListingInput_schema) as unknown as z.ZodType; -export const JobListingLocationCreateManyJobListingInputObjectZodSchema = z.lazy(__makeSchema_JobListingLocationCreateManyJobListingInput_schema); - - -// File: JobListingLocationUpdateWithoutJobListingInput.schema.ts -const __makeSchema_JobListingLocationUpdateWithoutJobListingInput_schema = () => z.object({ - name: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - createdAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional() -}).strict(); -export const JobListingLocationUpdateWithoutJobListingInputObjectSchema: z.ZodType = z.lazy(__makeSchema_JobListingLocationUpdateWithoutJobListingInput_schema) as unknown as z.ZodType; -export const JobListingLocationUpdateWithoutJobListingInputObjectZodSchema = z.lazy(__makeSchema_JobListingLocationUpdateWithoutJobListingInput_schema); - - -// File: JobListingLocationUncheckedUpdateWithoutJobListingInput.schema.ts -const __makeSchema_JobListingLocationUncheckedUpdateWithoutJobListingInput_schema = () => z.object({ - name: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - createdAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional() -}).strict(); -export const JobListingLocationUncheckedUpdateWithoutJobListingInputObjectSchema: z.ZodType = z.lazy(__makeSchema_JobListingLocationUncheckedUpdateWithoutJobListingInput_schema) as unknown as z.ZodType; -export const JobListingLocationUncheckedUpdateWithoutJobListingInputObjectZodSchema = z.lazy(__makeSchema_JobListingLocationUncheckedUpdateWithoutJobListingInput_schema); - - -// File: JobListingLocationUncheckedUpdateManyWithoutJobListingInput.schema.ts -const __makeSchema_JobListingLocationUncheckedUpdateManyWithoutJobListingInput_schema = () => z.object({ - name: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - createdAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional() -}).strict(); -export const JobListingLocationUncheckedUpdateManyWithoutJobListingInputObjectSchema: z.ZodType = z.lazy(__makeSchema_JobListingLocationUncheckedUpdateManyWithoutJobListingInput_schema) as unknown as z.ZodType; -export const JobListingLocationUncheckedUpdateManyWithoutJobListingInputObjectZodSchema = z.lazy(__makeSchema_JobListingLocationUncheckedUpdateManyWithoutJobListingInput_schema); - - -// File: ArticleTagLinkCreateManyArticleInput.schema.ts -const __makeSchema_ArticleTagLinkCreateManyArticleInput_schema = () => z.object({ - tagName: z.string() -}).strict(); -export const ArticleTagLinkCreateManyArticleInputObjectSchema: z.ZodType = z.lazy(__makeSchema_ArticleTagLinkCreateManyArticleInput_schema) as unknown as z.ZodType; -export const ArticleTagLinkCreateManyArticleInputObjectZodSchema = z.lazy(__makeSchema_ArticleTagLinkCreateManyArticleInput_schema); - - -// File: ArticleTagLinkUpdateWithoutArticleInput.schema.ts -const __makeSchema_ArticleTagLinkUpdateWithoutArticleInput_schema = () => z.object({ - get tag(){ return ArticleTagUpdateOneRequiredWithoutArticlesNestedInputObjectSchema.optional(); } -}).strict(); -export const ArticleTagLinkUpdateWithoutArticleInputObjectSchema: z.ZodType = z.lazy(__makeSchema_ArticleTagLinkUpdateWithoutArticleInput_schema) as unknown as z.ZodType; -export const ArticleTagLinkUpdateWithoutArticleInputObjectZodSchema = z.lazy(__makeSchema_ArticleTagLinkUpdateWithoutArticleInput_schema); - - -// File: ArticleTagLinkUncheckedUpdateWithoutArticleInput.schema.ts -const __makeSchema_ArticleTagLinkUncheckedUpdateWithoutArticleInput_schema = () => z.object({ - tagName: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional() -}).strict(); -export const ArticleTagLinkUncheckedUpdateWithoutArticleInputObjectSchema: z.ZodType = z.lazy(__makeSchema_ArticleTagLinkUncheckedUpdateWithoutArticleInput_schema) as unknown as z.ZodType; -export const ArticleTagLinkUncheckedUpdateWithoutArticleInputObjectZodSchema = z.lazy(__makeSchema_ArticleTagLinkUncheckedUpdateWithoutArticleInput_schema); - - -// File: ArticleTagLinkUncheckedUpdateManyWithoutArticleInput.schema.ts -const __makeSchema_ArticleTagLinkUncheckedUpdateManyWithoutArticleInput_schema = () => z.object({ - tagName: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional() -}).strict(); -export const ArticleTagLinkUncheckedUpdateManyWithoutArticleInputObjectSchema: z.ZodType = z.lazy(__makeSchema_ArticleTagLinkUncheckedUpdateManyWithoutArticleInput_schema) as unknown as z.ZodType; -export const ArticleTagLinkUncheckedUpdateManyWithoutArticleInputObjectZodSchema = z.lazy(__makeSchema_ArticleTagLinkUncheckedUpdateManyWithoutArticleInput_schema); - - -// File: ArticleTagLinkCreateManyTagInput.schema.ts -const __makeSchema_ArticleTagLinkCreateManyTagInput_schema = () => z.object({ - articleId: z.string() -}).strict(); -export const ArticleTagLinkCreateManyTagInputObjectSchema: z.ZodType = z.lazy(__makeSchema_ArticleTagLinkCreateManyTagInput_schema) as unknown as z.ZodType; -export const ArticleTagLinkCreateManyTagInputObjectZodSchema = z.lazy(__makeSchema_ArticleTagLinkCreateManyTagInput_schema); - - -// File: ArticleTagLinkUpdateWithoutTagInput.schema.ts -const __makeSchema_ArticleTagLinkUpdateWithoutTagInput_schema = () => z.object({ - get article(){ return ArticleUpdateOneRequiredWithoutTagsNestedInputObjectSchema.optional(); } -}).strict(); -export const ArticleTagLinkUpdateWithoutTagInputObjectSchema: z.ZodType = z.lazy(__makeSchema_ArticleTagLinkUpdateWithoutTagInput_schema) as unknown as z.ZodType; -export const ArticleTagLinkUpdateWithoutTagInputObjectZodSchema = z.lazy(__makeSchema_ArticleTagLinkUpdateWithoutTagInput_schema); - - -// File: ArticleTagLinkUncheckedUpdateWithoutTagInput.schema.ts -const __makeSchema_ArticleTagLinkUncheckedUpdateWithoutTagInput_schema = () => z.object({ - articleId: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional() -}).strict(); -export const ArticleTagLinkUncheckedUpdateWithoutTagInputObjectSchema: z.ZodType = z.lazy(__makeSchema_ArticleTagLinkUncheckedUpdateWithoutTagInput_schema) as unknown as z.ZodType; -export const ArticleTagLinkUncheckedUpdateWithoutTagInputObjectZodSchema = z.lazy(__makeSchema_ArticleTagLinkUncheckedUpdateWithoutTagInput_schema); - - -// File: ArticleTagLinkUncheckedUpdateManyWithoutTagInput.schema.ts -const __makeSchema_ArticleTagLinkUncheckedUpdateManyWithoutTagInput_schema = () => z.object({ - articleId: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional() -}).strict(); -export const ArticleTagLinkUncheckedUpdateManyWithoutTagInputObjectSchema: z.ZodType = z.lazy(__makeSchema_ArticleTagLinkUncheckedUpdateManyWithoutTagInput_schema) as unknown as z.ZodType; -export const ArticleTagLinkUncheckedUpdateManyWithoutTagInputObjectZodSchema = z.lazy(__makeSchema_ArticleTagLinkUncheckedUpdateManyWithoutTagInput_schema); - - -// File: AttendancePoolCreateManyTaskInput.schema.ts -const __makeSchema_AttendancePoolCreateManyTaskInput_schema = () => z.object({ - id: z.string().optional(), - title: z.string(), - mergeDelayHours: z.number().int().optional().nullable(), - yearCriteria: z.union([JsonNullValueInputSchema, jsonSchema]), - capacity: z.number().int(), - createdAt: z.coerce.date().optional(), - updatedAt: z.coerce.date().optional(), - attendanceId: z.string() -}).strict(); -export const AttendancePoolCreateManyTaskInputObjectSchema: z.ZodType = z.lazy(__makeSchema_AttendancePoolCreateManyTaskInput_schema) as unknown as z.ZodType; -export const AttendancePoolCreateManyTaskInputObjectZodSchema = z.lazy(__makeSchema_AttendancePoolCreateManyTaskInput_schema); - - -// File: NotificationCreateManyTaskInput.schema.ts -const __makeSchema_NotificationCreateManyTaskInput_schema = () => z.object({ - id: z.string().optional(), - createdAt: z.coerce.date().optional(), - updatedAt: z.coerce.date().optional(), - title: z.string(), - shortDescription: z.string().optional().nullable(), - content: z.string(), - type: NotificationTypeSchema, - payload: z.string().optional().nullable(), - payloadType: NotificationPayloadTypeSchema, - actorGroupId: z.string(), - createdById: z.string().optional().nullable(), - lastUpdatedById: z.string().optional().nullable() -}).strict(); -export const NotificationCreateManyTaskInputObjectSchema: z.ZodType = z.lazy(__makeSchema_NotificationCreateManyTaskInput_schema) as unknown as z.ZodType; -export const NotificationCreateManyTaskInputObjectZodSchema = z.lazy(__makeSchema_NotificationCreateManyTaskInput_schema); - - -// File: AttendancePoolUpdateWithoutTaskInput.schema.ts -const __makeSchema_AttendancePoolUpdateWithoutTaskInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - title: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - mergeDelayHours: z.union([z.number().int(), NullableIntFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - yearCriteria: z.union([JsonNullValueInputSchema, jsonSchema]).optional(), - capacity: z.union([z.number().int(), IntFieldUpdateOperationsInputObjectSchema]).optional(), - createdAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - updatedAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - get attendance(){ return AttendanceUpdateOneRequiredWithoutPoolsNestedInputObjectSchema.optional(); }, - get attendees(){ return AttendeeUpdateManyWithoutAttendancePoolNestedInputObjectSchema.optional(); } -}).strict(); -export const AttendancePoolUpdateWithoutTaskInputObjectSchema: z.ZodType = z.lazy(__makeSchema_AttendancePoolUpdateWithoutTaskInput_schema) as unknown as z.ZodType; -export const AttendancePoolUpdateWithoutTaskInputObjectZodSchema = z.lazy(__makeSchema_AttendancePoolUpdateWithoutTaskInput_schema); - - -// File: AttendancePoolUncheckedUpdateWithoutTaskInput.schema.ts -const __makeSchema_AttendancePoolUncheckedUpdateWithoutTaskInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - title: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - mergeDelayHours: z.union([z.number().int(), NullableIntFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - yearCriteria: z.union([JsonNullValueInputSchema, jsonSchema]).optional(), - capacity: z.union([z.number().int(), IntFieldUpdateOperationsInputObjectSchema]).optional(), - createdAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - updatedAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - attendanceId: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - get attendees(){ return AttendeeUncheckedUpdateManyWithoutAttendancePoolNestedInputObjectSchema.optional(); } -}).strict(); -export const AttendancePoolUncheckedUpdateWithoutTaskInputObjectSchema: z.ZodType = z.lazy(__makeSchema_AttendancePoolUncheckedUpdateWithoutTaskInput_schema) as unknown as z.ZodType; -export const AttendancePoolUncheckedUpdateWithoutTaskInputObjectZodSchema = z.lazy(__makeSchema_AttendancePoolUncheckedUpdateWithoutTaskInput_schema); - - -// File: AttendancePoolUncheckedUpdateManyWithoutTaskInput.schema.ts -const __makeSchema_AttendancePoolUncheckedUpdateManyWithoutTaskInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - title: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - mergeDelayHours: z.union([z.number().int(), NullableIntFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - yearCriteria: z.union([JsonNullValueInputSchema, jsonSchema]).optional(), - capacity: z.union([z.number().int(), IntFieldUpdateOperationsInputObjectSchema]).optional(), - createdAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - updatedAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - attendanceId: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional() -}).strict(); -export const AttendancePoolUncheckedUpdateManyWithoutTaskInputObjectSchema: z.ZodType = z.lazy(__makeSchema_AttendancePoolUncheckedUpdateManyWithoutTaskInput_schema) as unknown as z.ZodType; -export const AttendancePoolUncheckedUpdateManyWithoutTaskInputObjectZodSchema = z.lazy(__makeSchema_AttendancePoolUncheckedUpdateManyWithoutTaskInput_schema); - - -// File: NotificationUpdateWithoutTaskInput.schema.ts -const __makeSchema_NotificationUpdateWithoutTaskInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - createdAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - updatedAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - title: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - shortDescription: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - content: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - type: z.union([NotificationTypeSchema, EnumNotificationTypeFieldUpdateOperationsInputObjectSchema]).optional(), - payload: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - payloadType: z.union([NotificationPayloadTypeSchema, EnumNotificationPayloadTypeFieldUpdateOperationsInputObjectSchema]).optional(), - get actorGroup(){ return GroupUpdateOneRequiredWithoutNotificationsNestedInputObjectSchema.optional(); }, - get createdBy(){ return UserUpdateOneWithoutNotificationsCreatedNestedInputObjectSchema.optional(); }, - get lastUpdatedBy(){ return UserUpdateOneWithoutNotificationsUpdatedNestedInputObjectSchema.optional(); }, - get recipients(){ return NotificationRecipientUpdateManyWithoutNotificationNestedInputObjectSchema.optional(); } -}).strict(); -export const NotificationUpdateWithoutTaskInputObjectSchema: z.ZodType = z.lazy(__makeSchema_NotificationUpdateWithoutTaskInput_schema) as unknown as z.ZodType; -export const NotificationUpdateWithoutTaskInputObjectZodSchema = z.lazy(__makeSchema_NotificationUpdateWithoutTaskInput_schema); - - -// File: NotificationUncheckedUpdateWithoutTaskInput.schema.ts -const __makeSchema_NotificationUncheckedUpdateWithoutTaskInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - createdAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - updatedAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - title: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - shortDescription: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - content: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - type: z.union([NotificationTypeSchema, EnumNotificationTypeFieldUpdateOperationsInputObjectSchema]).optional(), - payload: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - payloadType: z.union([NotificationPayloadTypeSchema, EnumNotificationPayloadTypeFieldUpdateOperationsInputObjectSchema]).optional(), - actorGroupId: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - createdById: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - lastUpdatedById: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - get recipients(){ return NotificationRecipientUncheckedUpdateManyWithoutNotificationNestedInputObjectSchema.optional(); } -}).strict(); -export const NotificationUncheckedUpdateWithoutTaskInputObjectSchema: z.ZodType = z.lazy(__makeSchema_NotificationUncheckedUpdateWithoutTaskInput_schema) as unknown as z.ZodType; -export const NotificationUncheckedUpdateWithoutTaskInputObjectZodSchema = z.lazy(__makeSchema_NotificationUncheckedUpdateWithoutTaskInput_schema); - - -// File: NotificationUncheckedUpdateManyWithoutTaskInput.schema.ts -const __makeSchema_NotificationUncheckedUpdateManyWithoutTaskInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - createdAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - updatedAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - title: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - shortDescription: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - content: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - type: z.union([NotificationTypeSchema, EnumNotificationTypeFieldUpdateOperationsInputObjectSchema]).optional(), - payload: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - payloadType: z.union([NotificationPayloadTypeSchema, EnumNotificationPayloadTypeFieldUpdateOperationsInputObjectSchema]).optional(), - actorGroupId: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - createdById: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - lastUpdatedById: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable() -}).strict(); -export const NotificationUncheckedUpdateManyWithoutTaskInputObjectSchema: z.ZodType = z.lazy(__makeSchema_NotificationUncheckedUpdateManyWithoutTaskInput_schema) as unknown as z.ZodType; -export const NotificationUncheckedUpdateManyWithoutTaskInputObjectZodSchema = z.lazy(__makeSchema_NotificationUncheckedUpdateManyWithoutTaskInput_schema); - - -// File: TaskCreateManyRecurringTaskInput.schema.ts -const __makeSchema_TaskCreateManyRecurringTaskInput_schema = () => z.object({ - id: z.string().optional(), - type: TaskTypeSchema, - status: TaskStatusSchema.optional(), - payload: z.union([JsonNullValueInputSchema, jsonSchema]).optional(), - createdAt: z.coerce.date().optional(), - scheduledAt: z.coerce.date(), - processedAt: z.coerce.date().optional().nullable() -}).strict(); -export const TaskCreateManyRecurringTaskInputObjectSchema: z.ZodType = z.lazy(__makeSchema_TaskCreateManyRecurringTaskInput_schema) as unknown as z.ZodType; -export const TaskCreateManyRecurringTaskInputObjectZodSchema = z.lazy(__makeSchema_TaskCreateManyRecurringTaskInput_schema); - - -// File: TaskUpdateWithoutRecurringTaskInput.schema.ts -const __makeSchema_TaskUpdateWithoutRecurringTaskInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - type: z.union([TaskTypeSchema, EnumTaskTypeFieldUpdateOperationsInputObjectSchema]).optional(), - status: z.union([TaskStatusSchema, EnumTaskStatusFieldUpdateOperationsInputObjectSchema]).optional(), - payload: z.union([JsonNullValueInputSchema, jsonSchema]).optional(), - createdAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - scheduledAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - processedAt: z.union([z.coerce.date(), NullableDateTimeFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - get attendancePools(){ return AttendancePoolUpdateManyWithoutTaskNestedInputObjectSchema.optional(); }, - get notifications(){ return NotificationUpdateManyWithoutTaskNestedInputObjectSchema.optional(); } -}).strict(); -export const TaskUpdateWithoutRecurringTaskInputObjectSchema: z.ZodType = z.lazy(__makeSchema_TaskUpdateWithoutRecurringTaskInput_schema) as unknown as z.ZodType; -export const TaskUpdateWithoutRecurringTaskInputObjectZodSchema = z.lazy(__makeSchema_TaskUpdateWithoutRecurringTaskInput_schema); - - -// File: TaskUncheckedUpdateWithoutRecurringTaskInput.schema.ts -const __makeSchema_TaskUncheckedUpdateWithoutRecurringTaskInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - type: z.union([TaskTypeSchema, EnumTaskTypeFieldUpdateOperationsInputObjectSchema]).optional(), - status: z.union([TaskStatusSchema, EnumTaskStatusFieldUpdateOperationsInputObjectSchema]).optional(), - payload: z.union([JsonNullValueInputSchema, jsonSchema]).optional(), - createdAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - scheduledAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - processedAt: z.union([z.coerce.date(), NullableDateTimeFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - get attendancePools(){ return AttendancePoolUncheckedUpdateManyWithoutTaskNestedInputObjectSchema.optional(); }, - get notifications(){ return NotificationUncheckedUpdateManyWithoutTaskNestedInputObjectSchema.optional(); } -}).strict(); -export const TaskUncheckedUpdateWithoutRecurringTaskInputObjectSchema: z.ZodType = z.lazy(__makeSchema_TaskUncheckedUpdateWithoutRecurringTaskInput_schema) as unknown as z.ZodType; -export const TaskUncheckedUpdateWithoutRecurringTaskInputObjectZodSchema = z.lazy(__makeSchema_TaskUncheckedUpdateWithoutRecurringTaskInput_schema); - - -// File: TaskUncheckedUpdateManyWithoutRecurringTaskInput.schema.ts -const __makeSchema_TaskUncheckedUpdateManyWithoutRecurringTaskInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - type: z.union([TaskTypeSchema, EnumTaskTypeFieldUpdateOperationsInputObjectSchema]).optional(), - status: z.union([TaskStatusSchema, EnumTaskStatusFieldUpdateOperationsInputObjectSchema]).optional(), - payload: z.union([JsonNullValueInputSchema, jsonSchema]).optional(), - createdAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - scheduledAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - processedAt: z.union([z.coerce.date(), NullableDateTimeFieldUpdateOperationsInputObjectSchema]).optional().nullable() -}).strict(); -export const TaskUncheckedUpdateManyWithoutRecurringTaskInputObjectSchema: z.ZodType = z.lazy(__makeSchema_TaskUncheckedUpdateManyWithoutRecurringTaskInput_schema) as unknown as z.ZodType; -export const TaskUncheckedUpdateManyWithoutRecurringTaskInputObjectZodSchema = z.lazy(__makeSchema_TaskUncheckedUpdateManyWithoutRecurringTaskInput_schema); - - -// File: FeedbackQuestionCreateManyFeedbackFormInput.schema.ts -const __makeSchema_FeedbackQuestionCreateManyFeedbackFormInput_schema = () => z.object({ - id: z.string().optional(), - label: z.string(), - required: z.boolean().optional(), - showInPublicResults: z.boolean().optional(), - type: FeedbackQuestionTypeSchema, - order: z.number().int(), - createdAt: z.coerce.date().optional(), - updatedAt: z.coerce.date().optional() -}).strict(); -export const FeedbackQuestionCreateManyFeedbackFormInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackQuestionCreateManyFeedbackFormInput_schema) as unknown as z.ZodType; -export const FeedbackQuestionCreateManyFeedbackFormInputObjectZodSchema = z.lazy(__makeSchema_FeedbackQuestionCreateManyFeedbackFormInput_schema); - - -// File: FeedbackFormAnswerCreateManyFeedbackFormInput.schema.ts -const __makeSchema_FeedbackFormAnswerCreateManyFeedbackFormInput_schema = () => z.object({ - id: z.string().optional(), - createdAt: z.coerce.date().optional(), - updatedAt: z.coerce.date().optional(), - attendeeId: z.string() -}).strict(); -export const FeedbackFormAnswerCreateManyFeedbackFormInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackFormAnswerCreateManyFeedbackFormInput_schema) as unknown as z.ZodType; -export const FeedbackFormAnswerCreateManyFeedbackFormInputObjectZodSchema = z.lazy(__makeSchema_FeedbackFormAnswerCreateManyFeedbackFormInput_schema); - - -// File: FeedbackQuestionUpdateWithoutFeedbackFormInput.schema.ts -const __makeSchema_FeedbackQuestionUpdateWithoutFeedbackFormInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - label: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - required: z.union([z.boolean(), BoolFieldUpdateOperationsInputObjectSchema]).optional(), - showInPublicResults: z.union([z.boolean(), BoolFieldUpdateOperationsInputObjectSchema]).optional(), - type: z.union([FeedbackQuestionTypeSchema, EnumFeedbackQuestionTypeFieldUpdateOperationsInputObjectSchema]).optional(), - order: z.union([z.number().int(), IntFieldUpdateOperationsInputObjectSchema]).optional(), - createdAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - updatedAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - get options(){ return FeedbackQuestionOptionUpdateManyWithoutQuestionNestedInputObjectSchema.optional(); }, - get answers(){ return FeedbackQuestionAnswerUpdateManyWithoutQuestionNestedInputObjectSchema.optional(); } -}).strict(); -export const FeedbackQuestionUpdateWithoutFeedbackFormInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackQuestionUpdateWithoutFeedbackFormInput_schema) as unknown as z.ZodType; -export const FeedbackQuestionUpdateWithoutFeedbackFormInputObjectZodSchema = z.lazy(__makeSchema_FeedbackQuestionUpdateWithoutFeedbackFormInput_schema); - - -// File: FeedbackQuestionUncheckedUpdateWithoutFeedbackFormInput.schema.ts -const __makeSchema_FeedbackQuestionUncheckedUpdateWithoutFeedbackFormInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - label: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - required: z.union([z.boolean(), BoolFieldUpdateOperationsInputObjectSchema]).optional(), - showInPublicResults: z.union([z.boolean(), BoolFieldUpdateOperationsInputObjectSchema]).optional(), - type: z.union([FeedbackQuestionTypeSchema, EnumFeedbackQuestionTypeFieldUpdateOperationsInputObjectSchema]).optional(), - order: z.union([z.number().int(), IntFieldUpdateOperationsInputObjectSchema]).optional(), - createdAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - updatedAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - get options(){ return FeedbackQuestionOptionUncheckedUpdateManyWithoutQuestionNestedInputObjectSchema.optional(); }, - get answers(){ return FeedbackQuestionAnswerUncheckedUpdateManyWithoutQuestionNestedInputObjectSchema.optional(); } -}).strict(); -export const FeedbackQuestionUncheckedUpdateWithoutFeedbackFormInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackQuestionUncheckedUpdateWithoutFeedbackFormInput_schema) as unknown as z.ZodType; -export const FeedbackQuestionUncheckedUpdateWithoutFeedbackFormInputObjectZodSchema = z.lazy(__makeSchema_FeedbackQuestionUncheckedUpdateWithoutFeedbackFormInput_schema); - - -// File: FeedbackQuestionUncheckedUpdateManyWithoutFeedbackFormInput.schema.ts -const __makeSchema_FeedbackQuestionUncheckedUpdateManyWithoutFeedbackFormInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - label: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - required: z.union([z.boolean(), BoolFieldUpdateOperationsInputObjectSchema]).optional(), - showInPublicResults: z.union([z.boolean(), BoolFieldUpdateOperationsInputObjectSchema]).optional(), - type: z.union([FeedbackQuestionTypeSchema, EnumFeedbackQuestionTypeFieldUpdateOperationsInputObjectSchema]).optional(), - order: z.union([z.number().int(), IntFieldUpdateOperationsInputObjectSchema]).optional(), - createdAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - updatedAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional() -}).strict(); -export const FeedbackQuestionUncheckedUpdateManyWithoutFeedbackFormInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackQuestionUncheckedUpdateManyWithoutFeedbackFormInput_schema) as unknown as z.ZodType; -export const FeedbackQuestionUncheckedUpdateManyWithoutFeedbackFormInputObjectZodSchema = z.lazy(__makeSchema_FeedbackQuestionUncheckedUpdateManyWithoutFeedbackFormInput_schema); - - -// File: FeedbackFormAnswerUpdateWithoutFeedbackFormInput.schema.ts -const __makeSchema_FeedbackFormAnswerUpdateWithoutFeedbackFormInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - createdAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - updatedAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - get attendee(){ return AttendeeUpdateOneRequiredWithoutFeedbackFormAnswerNestedInputObjectSchema.optional(); }, - get answers(){ return FeedbackQuestionAnswerUpdateManyWithoutFormAnswerNestedInputObjectSchema.optional(); } -}).strict(); -export const FeedbackFormAnswerUpdateWithoutFeedbackFormInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackFormAnswerUpdateWithoutFeedbackFormInput_schema) as unknown as z.ZodType; -export const FeedbackFormAnswerUpdateWithoutFeedbackFormInputObjectZodSchema = z.lazy(__makeSchema_FeedbackFormAnswerUpdateWithoutFeedbackFormInput_schema); - - -// File: FeedbackFormAnswerUncheckedUpdateWithoutFeedbackFormInput.schema.ts -const __makeSchema_FeedbackFormAnswerUncheckedUpdateWithoutFeedbackFormInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - createdAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - updatedAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - attendeeId: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - get answers(){ return FeedbackQuestionAnswerUncheckedUpdateManyWithoutFormAnswerNestedInputObjectSchema.optional(); } -}).strict(); -export const FeedbackFormAnswerUncheckedUpdateWithoutFeedbackFormInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackFormAnswerUncheckedUpdateWithoutFeedbackFormInput_schema) as unknown as z.ZodType; -export const FeedbackFormAnswerUncheckedUpdateWithoutFeedbackFormInputObjectZodSchema = z.lazy(__makeSchema_FeedbackFormAnswerUncheckedUpdateWithoutFeedbackFormInput_schema); - - -// File: FeedbackFormAnswerUncheckedUpdateManyWithoutFeedbackFormInput.schema.ts -const __makeSchema_FeedbackFormAnswerUncheckedUpdateManyWithoutFeedbackFormInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - createdAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - updatedAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - attendeeId: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional() -}).strict(); -export const FeedbackFormAnswerUncheckedUpdateManyWithoutFeedbackFormInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackFormAnswerUncheckedUpdateManyWithoutFeedbackFormInput_schema) as unknown as z.ZodType; -export const FeedbackFormAnswerUncheckedUpdateManyWithoutFeedbackFormInputObjectZodSchema = z.lazy(__makeSchema_FeedbackFormAnswerUncheckedUpdateManyWithoutFeedbackFormInput_schema); - - -// File: FeedbackQuestionOptionCreateManyQuestionInput.schema.ts -const __makeSchema_FeedbackQuestionOptionCreateManyQuestionInput_schema = () => z.object({ - id: z.string().optional(), - name: z.string() -}).strict(); -export const FeedbackQuestionOptionCreateManyQuestionInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackQuestionOptionCreateManyQuestionInput_schema) as unknown as z.ZodType; -export const FeedbackQuestionOptionCreateManyQuestionInputObjectZodSchema = z.lazy(__makeSchema_FeedbackQuestionOptionCreateManyQuestionInput_schema); - - -// File: FeedbackQuestionAnswerCreateManyQuestionInput.schema.ts -const __makeSchema_FeedbackQuestionAnswerCreateManyQuestionInput_schema = () => z.object({ - id: z.string().optional(), - value: z.union([NullableJsonNullValueInputSchema, jsonSchema]).optional(), - formAnswerId: z.string() -}).strict(); -export const FeedbackQuestionAnswerCreateManyQuestionInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackQuestionAnswerCreateManyQuestionInput_schema) as unknown as z.ZodType; -export const FeedbackQuestionAnswerCreateManyQuestionInputObjectZodSchema = z.lazy(__makeSchema_FeedbackQuestionAnswerCreateManyQuestionInput_schema); - - -// File: FeedbackQuestionOptionUpdateWithoutQuestionInput.schema.ts -const __makeSchema_FeedbackQuestionOptionUpdateWithoutQuestionInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - name: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - get selectedInAnswers(){ return FeedbackQuestionAnswerOptionLinkUpdateManyWithoutFeedbackQuestionOptionNestedInputObjectSchema.optional(); } -}).strict(); -export const FeedbackQuestionOptionUpdateWithoutQuestionInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackQuestionOptionUpdateWithoutQuestionInput_schema) as unknown as z.ZodType; -export const FeedbackQuestionOptionUpdateWithoutQuestionInputObjectZodSchema = z.lazy(__makeSchema_FeedbackQuestionOptionUpdateWithoutQuestionInput_schema); - - -// File: FeedbackQuestionOptionUncheckedUpdateWithoutQuestionInput.schema.ts -const __makeSchema_FeedbackQuestionOptionUncheckedUpdateWithoutQuestionInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - name: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - get selectedInAnswers(){ return FeedbackQuestionAnswerOptionLinkUncheckedUpdateManyWithoutFeedbackQuestionOptionNestedInputObjectSchema.optional(); } -}).strict(); -export const FeedbackQuestionOptionUncheckedUpdateWithoutQuestionInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackQuestionOptionUncheckedUpdateWithoutQuestionInput_schema) as unknown as z.ZodType; -export const FeedbackQuestionOptionUncheckedUpdateWithoutQuestionInputObjectZodSchema = z.lazy(__makeSchema_FeedbackQuestionOptionUncheckedUpdateWithoutQuestionInput_schema); - - -// File: FeedbackQuestionOptionUncheckedUpdateManyWithoutQuestionInput.schema.ts -const __makeSchema_FeedbackQuestionOptionUncheckedUpdateManyWithoutQuestionInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - name: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional() -}).strict(); -export const FeedbackQuestionOptionUncheckedUpdateManyWithoutQuestionInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackQuestionOptionUncheckedUpdateManyWithoutQuestionInput_schema) as unknown as z.ZodType; -export const FeedbackQuestionOptionUncheckedUpdateManyWithoutQuestionInputObjectZodSchema = z.lazy(__makeSchema_FeedbackQuestionOptionUncheckedUpdateManyWithoutQuestionInput_schema); - - -// File: FeedbackQuestionAnswerUpdateWithoutQuestionInput.schema.ts -const __makeSchema_FeedbackQuestionAnswerUpdateWithoutQuestionInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - value: z.union([NullableJsonNullValueInputSchema, jsonSchema]).optional(), - get formAnswer(){ return FeedbackFormAnswerUpdateOneRequiredWithoutAnswersNestedInputObjectSchema.optional(); }, - get selectedOptions(){ return FeedbackQuestionAnswerOptionLinkUpdateManyWithoutFeedbackQuestionAnswerNestedInputObjectSchema.optional(); } -}).strict(); -export const FeedbackQuestionAnswerUpdateWithoutQuestionInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackQuestionAnswerUpdateWithoutQuestionInput_schema) as unknown as z.ZodType; -export const FeedbackQuestionAnswerUpdateWithoutQuestionInputObjectZodSchema = z.lazy(__makeSchema_FeedbackQuestionAnswerUpdateWithoutQuestionInput_schema); - - -// File: FeedbackQuestionAnswerUncheckedUpdateWithoutQuestionInput.schema.ts -const __makeSchema_FeedbackQuestionAnswerUncheckedUpdateWithoutQuestionInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - value: z.union([NullableJsonNullValueInputSchema, jsonSchema]).optional(), - formAnswerId: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - get selectedOptions(){ return FeedbackQuestionAnswerOptionLinkUncheckedUpdateManyWithoutFeedbackQuestionAnswerNestedInputObjectSchema.optional(); } -}).strict(); -export const FeedbackQuestionAnswerUncheckedUpdateWithoutQuestionInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackQuestionAnswerUncheckedUpdateWithoutQuestionInput_schema) as unknown as z.ZodType; -export const FeedbackQuestionAnswerUncheckedUpdateWithoutQuestionInputObjectZodSchema = z.lazy(__makeSchema_FeedbackQuestionAnswerUncheckedUpdateWithoutQuestionInput_schema); - - -// File: FeedbackQuestionAnswerUncheckedUpdateManyWithoutQuestionInput.schema.ts -const __makeSchema_FeedbackQuestionAnswerUncheckedUpdateManyWithoutQuestionInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - value: z.union([NullableJsonNullValueInputSchema, jsonSchema]).optional(), - formAnswerId: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional() -}).strict(); -export const FeedbackQuestionAnswerUncheckedUpdateManyWithoutQuestionInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackQuestionAnswerUncheckedUpdateManyWithoutQuestionInput_schema) as unknown as z.ZodType; -export const FeedbackQuestionAnswerUncheckedUpdateManyWithoutQuestionInputObjectZodSchema = z.lazy(__makeSchema_FeedbackQuestionAnswerUncheckedUpdateManyWithoutQuestionInput_schema); - - -// File: FeedbackQuestionAnswerOptionLinkCreateManyFeedbackQuestionOptionInput.schema.ts -const __makeSchema_FeedbackQuestionAnswerOptionLinkCreateManyFeedbackQuestionOptionInput_schema = () => z.object({ - feedbackQuestionAnswerId: z.string() -}).strict(); -export const FeedbackQuestionAnswerOptionLinkCreateManyFeedbackQuestionOptionInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackQuestionAnswerOptionLinkCreateManyFeedbackQuestionOptionInput_schema) as unknown as z.ZodType; -export const FeedbackQuestionAnswerOptionLinkCreateManyFeedbackQuestionOptionInputObjectZodSchema = z.lazy(__makeSchema_FeedbackQuestionAnswerOptionLinkCreateManyFeedbackQuestionOptionInput_schema); - - -// File: FeedbackQuestionAnswerOptionLinkUpdateWithoutFeedbackQuestionOptionInput.schema.ts -const __makeSchema_FeedbackQuestionAnswerOptionLinkUpdateWithoutFeedbackQuestionOptionInput_schema = () => z.object({ - get feedbackQuestionAnswer(){ return FeedbackQuestionAnswerUpdateOneRequiredWithoutSelectedOptionsNestedInputObjectSchema.optional(); } -}).strict(); -export const FeedbackQuestionAnswerOptionLinkUpdateWithoutFeedbackQuestionOptionInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackQuestionAnswerOptionLinkUpdateWithoutFeedbackQuestionOptionInput_schema) as unknown as z.ZodType; -export const FeedbackQuestionAnswerOptionLinkUpdateWithoutFeedbackQuestionOptionInputObjectZodSchema = z.lazy(__makeSchema_FeedbackQuestionAnswerOptionLinkUpdateWithoutFeedbackQuestionOptionInput_schema); - - -// File: FeedbackQuestionAnswerOptionLinkUncheckedUpdateWithoutFeedbackQuestionOptionInput.schema.ts -const __makeSchema_FeedbackQuestionAnswerOptionLinkUncheckedUpdateWithoutFeedbackQuestionOptionInput_schema = () => z.object({ - feedbackQuestionAnswerId: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional() -}).strict(); -export const FeedbackQuestionAnswerOptionLinkUncheckedUpdateWithoutFeedbackQuestionOptionInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackQuestionAnswerOptionLinkUncheckedUpdateWithoutFeedbackQuestionOptionInput_schema) as unknown as z.ZodType; -export const FeedbackQuestionAnswerOptionLinkUncheckedUpdateWithoutFeedbackQuestionOptionInputObjectZodSchema = z.lazy(__makeSchema_FeedbackQuestionAnswerOptionLinkUncheckedUpdateWithoutFeedbackQuestionOptionInput_schema); - - -// File: FeedbackQuestionAnswerOptionLinkUncheckedUpdateManyWithoutFeedbackQuestionOptionInput.schema.ts -const __makeSchema_FeedbackQuestionAnswerOptionLinkUncheckedUpdateManyWithoutFeedbackQuestionOptionInput_schema = () => z.object({ - feedbackQuestionAnswerId: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional() -}).strict(); -export const FeedbackQuestionAnswerOptionLinkUncheckedUpdateManyWithoutFeedbackQuestionOptionInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackQuestionAnswerOptionLinkUncheckedUpdateManyWithoutFeedbackQuestionOptionInput_schema) as unknown as z.ZodType; -export const FeedbackQuestionAnswerOptionLinkUncheckedUpdateManyWithoutFeedbackQuestionOptionInputObjectZodSchema = z.lazy(__makeSchema_FeedbackQuestionAnswerOptionLinkUncheckedUpdateManyWithoutFeedbackQuestionOptionInput_schema); - - -// File: FeedbackQuestionAnswerOptionLinkCreateManyFeedbackQuestionAnswerInput.schema.ts -const __makeSchema_FeedbackQuestionAnswerOptionLinkCreateManyFeedbackQuestionAnswerInput_schema = () => z.object({ - feedbackQuestionOptionId: z.string() -}).strict(); -export const FeedbackQuestionAnswerOptionLinkCreateManyFeedbackQuestionAnswerInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackQuestionAnswerOptionLinkCreateManyFeedbackQuestionAnswerInput_schema) as unknown as z.ZodType; -export const FeedbackQuestionAnswerOptionLinkCreateManyFeedbackQuestionAnswerInputObjectZodSchema = z.lazy(__makeSchema_FeedbackQuestionAnswerOptionLinkCreateManyFeedbackQuestionAnswerInput_schema); - - -// File: FeedbackQuestionAnswerOptionLinkUpdateWithoutFeedbackQuestionAnswerInput.schema.ts -const __makeSchema_FeedbackQuestionAnswerOptionLinkUpdateWithoutFeedbackQuestionAnswerInput_schema = () => z.object({ - get feedbackQuestionOption(){ return FeedbackQuestionOptionUpdateOneRequiredWithoutSelectedInAnswersNestedInputObjectSchema.optional(); } -}).strict(); -export const FeedbackQuestionAnswerOptionLinkUpdateWithoutFeedbackQuestionAnswerInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackQuestionAnswerOptionLinkUpdateWithoutFeedbackQuestionAnswerInput_schema) as unknown as z.ZodType; -export const FeedbackQuestionAnswerOptionLinkUpdateWithoutFeedbackQuestionAnswerInputObjectZodSchema = z.lazy(__makeSchema_FeedbackQuestionAnswerOptionLinkUpdateWithoutFeedbackQuestionAnswerInput_schema); - - -// File: FeedbackQuestionAnswerOptionLinkUncheckedUpdateWithoutFeedbackQuestionAnswerInput.schema.ts -const __makeSchema_FeedbackQuestionAnswerOptionLinkUncheckedUpdateWithoutFeedbackQuestionAnswerInput_schema = () => z.object({ - feedbackQuestionOptionId: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional() -}).strict(); -export const FeedbackQuestionAnswerOptionLinkUncheckedUpdateWithoutFeedbackQuestionAnswerInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackQuestionAnswerOptionLinkUncheckedUpdateWithoutFeedbackQuestionAnswerInput_schema) as unknown as z.ZodType; -export const FeedbackQuestionAnswerOptionLinkUncheckedUpdateWithoutFeedbackQuestionAnswerInputObjectZodSchema = z.lazy(__makeSchema_FeedbackQuestionAnswerOptionLinkUncheckedUpdateWithoutFeedbackQuestionAnswerInput_schema); - - -// File: FeedbackQuestionAnswerOptionLinkUncheckedUpdateManyWithoutFeedbackQuestionAnswerInput.schema.ts -const __makeSchema_FeedbackQuestionAnswerOptionLinkUncheckedUpdateManyWithoutFeedbackQuestionAnswerInput_schema = () => z.object({ - feedbackQuestionOptionId: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional() -}).strict(); -export const FeedbackQuestionAnswerOptionLinkUncheckedUpdateManyWithoutFeedbackQuestionAnswerInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackQuestionAnswerOptionLinkUncheckedUpdateManyWithoutFeedbackQuestionAnswerInput_schema) as unknown as z.ZodType; -export const FeedbackQuestionAnswerOptionLinkUncheckedUpdateManyWithoutFeedbackQuestionAnswerInputObjectZodSchema = z.lazy(__makeSchema_FeedbackQuestionAnswerOptionLinkUncheckedUpdateManyWithoutFeedbackQuestionAnswerInput_schema); - - -// File: FeedbackQuestionAnswerCreateManyFormAnswerInput.schema.ts -const __makeSchema_FeedbackQuestionAnswerCreateManyFormAnswerInput_schema = () => z.object({ - id: z.string().optional(), - value: z.union([NullableJsonNullValueInputSchema, jsonSchema]).optional(), - questionId: z.string() -}).strict(); -export const FeedbackQuestionAnswerCreateManyFormAnswerInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackQuestionAnswerCreateManyFormAnswerInput_schema) as unknown as z.ZodType; -export const FeedbackQuestionAnswerCreateManyFormAnswerInputObjectZodSchema = z.lazy(__makeSchema_FeedbackQuestionAnswerCreateManyFormAnswerInput_schema); - - -// File: FeedbackQuestionAnswerUpdateWithoutFormAnswerInput.schema.ts -const __makeSchema_FeedbackQuestionAnswerUpdateWithoutFormAnswerInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - value: z.union([NullableJsonNullValueInputSchema, jsonSchema]).optional(), - get question(){ return FeedbackQuestionUpdateOneRequiredWithoutAnswersNestedInputObjectSchema.optional(); }, - get selectedOptions(){ return FeedbackQuestionAnswerOptionLinkUpdateManyWithoutFeedbackQuestionAnswerNestedInputObjectSchema.optional(); } -}).strict(); -export const FeedbackQuestionAnswerUpdateWithoutFormAnswerInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackQuestionAnswerUpdateWithoutFormAnswerInput_schema) as unknown as z.ZodType; -export const FeedbackQuestionAnswerUpdateWithoutFormAnswerInputObjectZodSchema = z.lazy(__makeSchema_FeedbackQuestionAnswerUpdateWithoutFormAnswerInput_schema); - - -// File: FeedbackQuestionAnswerUncheckedUpdateWithoutFormAnswerInput.schema.ts -const __makeSchema_FeedbackQuestionAnswerUncheckedUpdateWithoutFormAnswerInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - value: z.union([NullableJsonNullValueInputSchema, jsonSchema]).optional(), - questionId: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - get selectedOptions(){ return FeedbackQuestionAnswerOptionLinkUncheckedUpdateManyWithoutFeedbackQuestionAnswerNestedInputObjectSchema.optional(); } -}).strict(); -export const FeedbackQuestionAnswerUncheckedUpdateWithoutFormAnswerInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackQuestionAnswerUncheckedUpdateWithoutFormAnswerInput_schema) as unknown as z.ZodType; -export const FeedbackQuestionAnswerUncheckedUpdateWithoutFormAnswerInputObjectZodSchema = z.lazy(__makeSchema_FeedbackQuestionAnswerUncheckedUpdateWithoutFormAnswerInput_schema); - - -// File: FeedbackQuestionAnswerUncheckedUpdateManyWithoutFormAnswerInput.schema.ts -const __makeSchema_FeedbackQuestionAnswerUncheckedUpdateManyWithoutFormAnswerInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - value: z.union([NullableJsonNullValueInputSchema, jsonSchema]).optional(), - questionId: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional() -}).strict(); -export const FeedbackQuestionAnswerUncheckedUpdateManyWithoutFormAnswerInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackQuestionAnswerUncheckedUpdateManyWithoutFormAnswerInput_schema) as unknown as z.ZodType; -export const FeedbackQuestionAnswerUncheckedUpdateManyWithoutFormAnswerInputObjectZodSchema = z.lazy(__makeSchema_FeedbackQuestionAnswerUncheckedUpdateManyWithoutFormAnswerInput_schema); - - -// File: NotificationRecipientCreateManyNotificationInput.schema.ts -const __makeSchema_NotificationRecipientCreateManyNotificationInput_schema = () => z.object({ - id: z.string().optional(), - readAt: z.coerce.date(), - userId: z.string() -}).strict(); -export const NotificationRecipientCreateManyNotificationInputObjectSchema: z.ZodType = z.lazy(__makeSchema_NotificationRecipientCreateManyNotificationInput_schema) as unknown as z.ZodType; -export const NotificationRecipientCreateManyNotificationInputObjectZodSchema = z.lazy(__makeSchema_NotificationRecipientCreateManyNotificationInput_schema); - - -// File: NotificationRecipientUpdateWithoutNotificationInput.schema.ts -const __makeSchema_NotificationRecipientUpdateWithoutNotificationInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - readAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - get user(){ return UserUpdateOneRequiredWithoutNotificationsReceivedNestedInputObjectSchema.optional(); } -}).strict(); -export const NotificationRecipientUpdateWithoutNotificationInputObjectSchema: z.ZodType = z.lazy(__makeSchema_NotificationRecipientUpdateWithoutNotificationInput_schema) as unknown as z.ZodType; -export const NotificationRecipientUpdateWithoutNotificationInputObjectZodSchema = z.lazy(__makeSchema_NotificationRecipientUpdateWithoutNotificationInput_schema); - - -// File: NotificationRecipientUncheckedUpdateWithoutNotificationInput.schema.ts -const __makeSchema_NotificationRecipientUncheckedUpdateWithoutNotificationInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - readAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - userId: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional() -}).strict(); -export const NotificationRecipientUncheckedUpdateWithoutNotificationInputObjectSchema: z.ZodType = z.lazy(__makeSchema_NotificationRecipientUncheckedUpdateWithoutNotificationInput_schema) as unknown as z.ZodType; -export const NotificationRecipientUncheckedUpdateWithoutNotificationInputObjectZodSchema = z.lazy(__makeSchema_NotificationRecipientUncheckedUpdateWithoutNotificationInput_schema); - - -// File: NotificationRecipientUncheckedUpdateManyWithoutNotificationInput.schema.ts -const __makeSchema_NotificationRecipientUncheckedUpdateManyWithoutNotificationInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - readAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - userId: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional() -}).strict(); -export const NotificationRecipientUncheckedUpdateManyWithoutNotificationInputObjectSchema: z.ZodType = z.lazy(__makeSchema_NotificationRecipientUncheckedUpdateManyWithoutNotificationInput_schema) as unknown as z.ZodType; -export const NotificationRecipientUncheckedUpdateManyWithoutNotificationInputObjectZodSchema = z.lazy(__makeSchema_NotificationRecipientUncheckedUpdateManyWithoutNotificationInput_schema); - - -// File: ContestantCreateManyContestInput.schema.ts -const __makeSchema_ContestantCreateManyContestInput_schema = () => z.object({ - id: z.string().optional(), - resultValue: z.number().int().optional().nullable(), - userId: z.string().optional().nullable() -}).strict(); -export const ContestantCreateManyContestInputObjectSchema: z.ZodType = z.lazy(__makeSchema_ContestantCreateManyContestInput_schema) as unknown as z.ZodType; -export const ContestantCreateManyContestInputObjectZodSchema = z.lazy(__makeSchema_ContestantCreateManyContestInput_schema); - - -// File: EventCreateManyContestInput.schema.ts -const __makeSchema_EventCreateManyContestInput_schema = () => z.object({ - id: z.string().optional(), - title: z.string(), - start: z.coerce.date(), - end: z.coerce.date(), - status: EventStatusSchema, - description: z.string(), - shortDescription: z.string().optional().nullable(), - imageUrl: z.string().optional().nullable(), - locationTitle: z.string().optional().nullable(), - locationAddress: z.string().optional().nullable(), - locationLink: z.string().optional().nullable(), - type: EventTypeSchema, - markForMissedAttendance: z.boolean().optional(), - createdAt: z.coerce.date().optional(), - updatedAt: z.coerce.date().optional(), - attendanceId: z.string().optional().nullable(), - parentId: z.string().optional().nullable(), - metadataImportId: z.number().int().optional().nullable() -}).strict(); -export const EventCreateManyContestInputObjectSchema: z.ZodType = z.lazy(__makeSchema_EventCreateManyContestInput_schema) as unknown as z.ZodType; -export const EventCreateManyContestInputObjectZodSchema = z.lazy(__makeSchema_EventCreateManyContestInput_schema); - - -// File: ContestantUpdateWithoutContestInput.schema.ts -const __makeSchema_ContestantUpdateWithoutContestInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - resultValue: z.union([z.number().int(), NullableIntFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - get user(){ return UserUpdateOneWithoutContestantsNestedInputObjectSchema.optional(); }, - get team(){ return ContestTeamUpdateOneWithoutContestantNestedInputObjectSchema.optional(); }, - get wonContest(){ return ContestUpdateOneWithoutWinnerContestantNestedInputObjectSchema.optional(); } -}).strict(); -export const ContestantUpdateWithoutContestInputObjectSchema: z.ZodType = z.lazy(__makeSchema_ContestantUpdateWithoutContestInput_schema) as unknown as z.ZodType; -export const ContestantUpdateWithoutContestInputObjectZodSchema = z.lazy(__makeSchema_ContestantUpdateWithoutContestInput_schema); - - -// File: ContestantUncheckedUpdateWithoutContestInput.schema.ts -const __makeSchema_ContestantUncheckedUpdateWithoutContestInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - resultValue: z.union([z.number().int(), NullableIntFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - userId: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - get team(){ return ContestTeamUncheckedUpdateOneWithoutContestantNestedInputObjectSchema.optional(); }, - get wonContest(){ return ContestUncheckedUpdateOneWithoutWinnerContestantNestedInputObjectSchema.optional(); } -}).strict(); -export const ContestantUncheckedUpdateWithoutContestInputObjectSchema: z.ZodType = z.lazy(__makeSchema_ContestantUncheckedUpdateWithoutContestInput_schema) as unknown as z.ZodType; -export const ContestantUncheckedUpdateWithoutContestInputObjectZodSchema = z.lazy(__makeSchema_ContestantUncheckedUpdateWithoutContestInput_schema); - - -// File: ContestantUncheckedUpdateManyWithoutContestInput.schema.ts -const __makeSchema_ContestantUncheckedUpdateManyWithoutContestInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - resultValue: z.union([z.number().int(), NullableIntFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - userId: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable() -}).strict(); -export const ContestantUncheckedUpdateManyWithoutContestInputObjectSchema: z.ZodType = z.lazy(__makeSchema_ContestantUncheckedUpdateManyWithoutContestInput_schema) as unknown as z.ZodType; -export const ContestantUncheckedUpdateManyWithoutContestInputObjectZodSchema = z.lazy(__makeSchema_ContestantUncheckedUpdateManyWithoutContestInput_schema); - - -// File: GroupUpdateWithoutContestsInput.schema.ts -const __makeSchema_GroupUpdateWithoutContestsInput_schema = () => z.object({ - slug: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - abbreviation: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - name: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - shortDescription: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - description: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - imageUrl: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - email: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - contactUrl: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - slackUrl: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - showLeaderAsContact: z.union([z.boolean(), BoolFieldUpdateOperationsInputObjectSchema]).optional(), - createdAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - deactivatedAt: z.union([z.coerce.date(), NullableDateTimeFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - workspaceGroupId: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - memberVisibility: z.union([GroupMemberVisibilitySchema, EnumGroupMemberVisibilityFieldUpdateOperationsInputObjectSchema]).optional(), - recruitmentMethod: z.union([GroupRecruitmentMethodSchema, EnumGroupRecruitmentMethodFieldUpdateOperationsInputObjectSchema]).optional(), - type: z.union([GroupTypeSchema, EnumGroupTypeFieldUpdateOperationsInputObjectSchema]).optional(), - get events(){ return EventHostingGroupUpdateManyWithoutGroupNestedInputObjectSchema.optional(); }, - get memberships(){ return GroupMembershipUpdateManyWithoutGroupNestedInputObjectSchema.optional(); }, - get marks(){ return MarkGroupUpdateManyWithoutGroupNestedInputObjectSchema.optional(); }, - get roles(){ return GroupRoleUpdateManyWithoutGroupNestedInputObjectSchema.optional(); }, - get notifications(){ return NotificationUpdateManyWithoutActorGroupNestedInputObjectSchema.optional(); } -}).strict(); -export const GroupUpdateWithoutContestsInputObjectSchema: z.ZodType = z.lazy(__makeSchema_GroupUpdateWithoutContestsInput_schema) as unknown as z.ZodType; -export const GroupUpdateWithoutContestsInputObjectZodSchema = z.lazy(__makeSchema_GroupUpdateWithoutContestsInput_schema); - - -// File: GroupUncheckedUpdateWithoutContestsInput.schema.ts -const __makeSchema_GroupUncheckedUpdateWithoutContestsInput_schema = () => z.object({ - slug: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - abbreviation: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - name: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - shortDescription: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - description: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - imageUrl: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - email: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - contactUrl: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - slackUrl: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - showLeaderAsContact: z.union([z.boolean(), BoolFieldUpdateOperationsInputObjectSchema]).optional(), - createdAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - deactivatedAt: z.union([z.coerce.date(), NullableDateTimeFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - workspaceGroupId: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - memberVisibility: z.union([GroupMemberVisibilitySchema, EnumGroupMemberVisibilityFieldUpdateOperationsInputObjectSchema]).optional(), - recruitmentMethod: z.union([GroupRecruitmentMethodSchema, EnumGroupRecruitmentMethodFieldUpdateOperationsInputObjectSchema]).optional(), - type: z.union([GroupTypeSchema, EnumGroupTypeFieldUpdateOperationsInputObjectSchema]).optional(), - get events(){ return EventHostingGroupUncheckedUpdateManyWithoutGroupNestedInputObjectSchema.optional(); }, - get memberships(){ return GroupMembershipUncheckedUpdateManyWithoutGroupNestedInputObjectSchema.optional(); }, - get marks(){ return MarkGroupUncheckedUpdateManyWithoutGroupNestedInputObjectSchema.optional(); }, - get roles(){ return GroupRoleUncheckedUpdateManyWithoutGroupNestedInputObjectSchema.optional(); }, - get notifications(){ return NotificationUncheckedUpdateManyWithoutActorGroupNestedInputObjectSchema.optional(); } -}).strict(); -export const GroupUncheckedUpdateWithoutContestsInputObjectSchema: z.ZodType = z.lazy(__makeSchema_GroupUncheckedUpdateWithoutContestsInput_schema) as unknown as z.ZodType; -export const GroupUncheckedUpdateWithoutContestsInputObjectZodSchema = z.lazy(__makeSchema_GroupUncheckedUpdateWithoutContestsInput_schema); - - -// File: GroupUncheckedUpdateManyWithoutContestsInput.schema.ts -const __makeSchema_GroupUncheckedUpdateManyWithoutContestsInput_schema = () => z.object({ - slug: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - abbreviation: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - name: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - shortDescription: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - description: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - imageUrl: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - email: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - contactUrl: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - slackUrl: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - showLeaderAsContact: z.union([z.boolean(), BoolFieldUpdateOperationsInputObjectSchema]).optional(), - createdAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - deactivatedAt: z.union([z.coerce.date(), NullableDateTimeFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - workspaceGroupId: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - memberVisibility: z.union([GroupMemberVisibilitySchema, EnumGroupMemberVisibilityFieldUpdateOperationsInputObjectSchema]).optional(), - recruitmentMethod: z.union([GroupRecruitmentMethodSchema, EnumGroupRecruitmentMethodFieldUpdateOperationsInputObjectSchema]).optional(), - type: z.union([GroupTypeSchema, EnumGroupTypeFieldUpdateOperationsInputObjectSchema]).optional() -}).strict(); -export const GroupUncheckedUpdateManyWithoutContestsInputObjectSchema: z.ZodType = z.lazy(__makeSchema_GroupUncheckedUpdateManyWithoutContestsInput_schema) as unknown as z.ZodType; -export const GroupUncheckedUpdateManyWithoutContestsInputObjectZodSchema = z.lazy(__makeSchema_GroupUncheckedUpdateManyWithoutContestsInput_schema); - - -// File: EventUpdateWithoutContestInput.schema.ts -const __makeSchema_EventUpdateWithoutContestInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - title: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - start: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - end: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - status: z.union([EventStatusSchema, EnumEventStatusFieldUpdateOperationsInputObjectSchema]).optional(), - description: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - shortDescription: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - imageUrl: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - locationTitle: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - locationAddress: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - locationLink: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - type: z.union([EventTypeSchema, EnumEventTypeFieldUpdateOperationsInputObjectSchema]).optional(), - markForMissedAttendance: z.union([z.boolean(), BoolFieldUpdateOperationsInputObjectSchema]).optional(), - createdAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - updatedAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - metadataImportId: z.union([z.number().int(), NullableIntFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - get feedbackForm(){ return FeedbackFormUpdateOneWithoutEventNestedInputObjectSchema.optional(); }, - get fadderuke(){ return FadderukeUpdateOneWithoutEventNestedInputObjectSchema.optional(); }, - get attendance(){ return AttendanceUpdateOneWithoutEventsNestedInputObjectSchema.optional(); }, - get parent(){ return EventUpdateOneWithoutChildrenNestedInputObjectSchema.optional(); }, - get children(){ return EventUpdateManyWithoutParentNestedInputObjectSchema.optional(); }, - get companies(){ return EventCompanyUpdateManyWithoutEventNestedInputObjectSchema.optional(); }, - get hostingGroups(){ return EventHostingGroupUpdateManyWithoutEventNestedInputObjectSchema.optional(); }, - get deregisterReasons(){ return DeregisterReasonUpdateManyWithoutEventNestedInputObjectSchema.optional(); } -}).strict(); -export const EventUpdateWithoutContestInputObjectSchema: z.ZodType = z.lazy(__makeSchema_EventUpdateWithoutContestInput_schema) as unknown as z.ZodType; -export const EventUpdateWithoutContestInputObjectZodSchema = z.lazy(__makeSchema_EventUpdateWithoutContestInput_schema); - - -// File: EventUncheckedUpdateWithoutContestInput.schema.ts -const __makeSchema_EventUncheckedUpdateWithoutContestInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - title: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - start: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - end: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - status: z.union([EventStatusSchema, EnumEventStatusFieldUpdateOperationsInputObjectSchema]).optional(), - description: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - shortDescription: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - imageUrl: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - locationTitle: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - locationAddress: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - locationLink: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - type: z.union([EventTypeSchema, EnumEventTypeFieldUpdateOperationsInputObjectSchema]).optional(), - markForMissedAttendance: z.union([z.boolean(), BoolFieldUpdateOperationsInputObjectSchema]).optional(), - createdAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - updatedAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - attendanceId: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - parentId: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - metadataImportId: z.union([z.number().int(), NullableIntFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - get feedbackForm(){ return FeedbackFormUncheckedUpdateOneWithoutEventNestedInputObjectSchema.optional(); }, - get fadderuke(){ return FadderukeUncheckedUpdateOneWithoutEventNestedInputObjectSchema.optional(); }, - get children(){ return EventUncheckedUpdateManyWithoutParentNestedInputObjectSchema.optional(); }, - get companies(){ return EventCompanyUncheckedUpdateManyWithoutEventNestedInputObjectSchema.optional(); }, - get hostingGroups(){ return EventHostingGroupUncheckedUpdateManyWithoutEventNestedInputObjectSchema.optional(); }, - get deregisterReasons(){ return DeregisterReasonUncheckedUpdateManyWithoutEventNestedInputObjectSchema.optional(); } -}).strict(); -export const EventUncheckedUpdateWithoutContestInputObjectSchema: z.ZodType = z.lazy(__makeSchema_EventUncheckedUpdateWithoutContestInput_schema) as unknown as z.ZodType; -export const EventUncheckedUpdateWithoutContestInputObjectZodSchema = z.lazy(__makeSchema_EventUncheckedUpdateWithoutContestInput_schema); - - -// File: EventUncheckedUpdateManyWithoutContestInput.schema.ts -const __makeSchema_EventUncheckedUpdateManyWithoutContestInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - title: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - start: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - end: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - status: z.union([EventStatusSchema, EnumEventStatusFieldUpdateOperationsInputObjectSchema]).optional(), - description: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - shortDescription: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - imageUrl: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - locationTitle: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - locationAddress: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - locationLink: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - type: z.union([EventTypeSchema, EnumEventTypeFieldUpdateOperationsInputObjectSchema]).optional(), - markForMissedAttendance: z.union([z.boolean(), BoolFieldUpdateOperationsInputObjectSchema]).optional(), - createdAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - updatedAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - attendanceId: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - parentId: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - metadataImportId: z.union([z.number().int(), NullableIntFieldUpdateOperationsInputObjectSchema]).optional().nullable() -}).strict(); -export const EventUncheckedUpdateManyWithoutContestInputObjectSchema: z.ZodType = z.lazy(__makeSchema_EventUncheckedUpdateManyWithoutContestInput_schema) as unknown as z.ZodType; -export const EventUncheckedUpdateManyWithoutContestInputObjectZodSchema = z.lazy(__makeSchema_EventUncheckedUpdateManyWithoutContestInput_schema); - - -// File: UserUpdateWithoutContestTeamsInput.schema.ts -const __makeSchema_UserUpdateWithoutContestTeamsInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - username: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - name: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - email: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - imageUrl: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - biography: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - phone: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - gender: z.union([GenderSchema, EnumGenderFieldUpdateOperationsInputObjectSchema]).optional(), - dietaryRestrictions: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - ntnuUsername: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - flags: z.union([UserUpdateflagsInputObjectSchema, z.string().array()]).optional(), - workspaceUserId: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - createdAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - updatedAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - privacyPermissionsId: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - notificationPermissionsId: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - get privacyPermissions(){ return PrivacyPermissionsUpdateOneWithoutUserNestedInputObjectSchema.optional(); }, - get notificationPermissions(){ return NotificationPermissionsUpdateOneWithoutUserNestedInputObjectSchema.optional(); }, - get attendee(){ return AttendeeUpdateManyWithoutUserNestedInputObjectSchema.optional(); }, - get personalMark(){ return PersonalMarkUpdateManyWithoutUserNestedInputObjectSchema.optional(); }, - get groupMemberships(){ return GroupMembershipUpdateManyWithoutUserNestedInputObjectSchema.optional(); }, - get memberships(){ return MembershipUpdateManyWithoutUserNestedInputObjectSchema.optional(); }, - get givenMarks(){ return PersonalMarkUpdateManyWithoutGivenByNestedInputObjectSchema.optional(); }, - get attendeesRefunded(){ return AttendeeUpdateManyWithoutPaymentRefundedByNestedInputObjectSchema.optional(); }, - get auditLogs(){ return AuditLogUpdateManyWithoutUserNestedInputObjectSchema.optional(); }, - get deregisterReasons(){ return DeregisterReasonUpdateManyWithoutUserNestedInputObjectSchema.optional(); }, - get notificationsReceived(){ return NotificationRecipientUpdateManyWithoutUserNestedInputObjectSchema.optional(); }, - get notificationsCreated(){ return NotificationUpdateManyWithoutCreatedByNestedInputObjectSchema.optional(); }, - get notificationsUpdated(){ return NotificationUpdateManyWithoutLastUpdatedByNestedInputObjectSchema.optional(); }, - get contestants(){ return ContestantUpdateManyWithoutUserNestedInputObjectSchema.optional(); } -}).strict(); -export const UserUpdateWithoutContestTeamsInputObjectSchema: z.ZodType = z.lazy(__makeSchema_UserUpdateWithoutContestTeamsInput_schema) as unknown as z.ZodType; -export const UserUpdateWithoutContestTeamsInputObjectZodSchema = z.lazy(__makeSchema_UserUpdateWithoutContestTeamsInput_schema); - - -// File: UserUncheckedUpdateWithoutContestTeamsInput.schema.ts -const __makeSchema_UserUncheckedUpdateWithoutContestTeamsInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - username: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - name: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - email: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - imageUrl: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - biography: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - phone: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - gender: z.union([GenderSchema, EnumGenderFieldUpdateOperationsInputObjectSchema]).optional(), - dietaryRestrictions: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - ntnuUsername: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - flags: z.union([UserUpdateflagsInputObjectSchema, z.string().array()]).optional(), - workspaceUserId: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - createdAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - updatedAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - privacyPermissionsId: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - notificationPermissionsId: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - get privacyPermissions(){ return PrivacyPermissionsUncheckedUpdateOneWithoutUserNestedInputObjectSchema.optional(); }, - get notificationPermissions(){ return NotificationPermissionsUncheckedUpdateOneWithoutUserNestedInputObjectSchema.optional(); }, - get attendee(){ return AttendeeUncheckedUpdateManyWithoutUserNestedInputObjectSchema.optional(); }, - get personalMark(){ return PersonalMarkUncheckedUpdateManyWithoutUserNestedInputObjectSchema.optional(); }, - get groupMemberships(){ return GroupMembershipUncheckedUpdateManyWithoutUserNestedInputObjectSchema.optional(); }, - get memberships(){ return MembershipUncheckedUpdateManyWithoutUserNestedInputObjectSchema.optional(); }, - get givenMarks(){ return PersonalMarkUncheckedUpdateManyWithoutGivenByNestedInputObjectSchema.optional(); }, - get attendeesRefunded(){ return AttendeeUncheckedUpdateManyWithoutPaymentRefundedByNestedInputObjectSchema.optional(); }, - get auditLogs(){ return AuditLogUncheckedUpdateManyWithoutUserNestedInputObjectSchema.optional(); }, - get deregisterReasons(){ return DeregisterReasonUncheckedUpdateManyWithoutUserNestedInputObjectSchema.optional(); }, - get notificationsReceived(){ return NotificationRecipientUncheckedUpdateManyWithoutUserNestedInputObjectSchema.optional(); }, - get notificationsCreated(){ return NotificationUncheckedUpdateManyWithoutCreatedByNestedInputObjectSchema.optional(); }, - get notificationsUpdated(){ return NotificationUncheckedUpdateManyWithoutLastUpdatedByNestedInputObjectSchema.optional(); }, - get contestants(){ return ContestantUncheckedUpdateManyWithoutUserNestedInputObjectSchema.optional(); } -}).strict(); -export const UserUncheckedUpdateWithoutContestTeamsInputObjectSchema: z.ZodType = z.lazy(__makeSchema_UserUncheckedUpdateWithoutContestTeamsInput_schema) as unknown as z.ZodType; -export const UserUncheckedUpdateWithoutContestTeamsInputObjectZodSchema = z.lazy(__makeSchema_UserUncheckedUpdateWithoutContestTeamsInput_schema); - - -// File: UserUncheckedUpdateManyWithoutContestTeamsInput.schema.ts -const __makeSchema_UserUncheckedUpdateManyWithoutContestTeamsInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - username: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - name: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - email: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - imageUrl: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - biography: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - phone: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - gender: z.union([GenderSchema, EnumGenderFieldUpdateOperationsInputObjectSchema]).optional(), - dietaryRestrictions: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - ntnuUsername: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - flags: z.union([UserUpdateflagsInputObjectSchema, z.string().array()]).optional(), - workspaceUserId: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - createdAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - updatedAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - privacyPermissionsId: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - notificationPermissionsId: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable() -}).strict(); -export const UserUncheckedUpdateManyWithoutContestTeamsInputObjectSchema: z.ZodType = z.lazy(__makeSchema_UserUncheckedUpdateManyWithoutContestTeamsInput_schema) as unknown as z.ZodType; -export const UserUncheckedUpdateManyWithoutContestTeamsInputObjectZodSchema = z.lazy(__makeSchema_UserUncheckedUpdateManyWithoutContestTeamsInput_schema); - - -// File: MembershipCountAggregateInput.schema.ts -const __makeSchema_MembershipCountAggregateInput_schema = () => z.object({ - id: z.literal(true).optional(), - type: z.literal(true).optional(), - specialization: z.literal(true).optional(), - start: z.literal(true).optional(), - end: z.literal(true).optional(), - semester: z.literal(true).optional(), - userId: z.literal(true).optional(), - _all: z.literal(true).optional() -}).strict(); -export const MembershipCountAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_MembershipCountAggregateInput_schema) as unknown as z.ZodType; -export const MembershipCountAggregateInputObjectZodSchema = z.lazy(__makeSchema_MembershipCountAggregateInput_schema); - - -// File: MembershipAvgAggregateInput.schema.ts -const __makeSchema_MembershipAvgAggregateInput_schema = () => z.object({ - semester: z.literal(true).optional() -}).strict(); -export const MembershipAvgAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_MembershipAvgAggregateInput_schema) as unknown as z.ZodType; -export const MembershipAvgAggregateInputObjectZodSchema = z.lazy(__makeSchema_MembershipAvgAggregateInput_schema); - - -// File: MembershipSumAggregateInput.schema.ts -const __makeSchema_MembershipSumAggregateInput_schema = () => z.object({ - semester: z.literal(true).optional() -}).strict(); -export const MembershipSumAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_MembershipSumAggregateInput_schema) as unknown as z.ZodType; -export const MembershipSumAggregateInputObjectZodSchema = z.lazy(__makeSchema_MembershipSumAggregateInput_schema); - - -// File: MembershipMinAggregateInput.schema.ts -const __makeSchema_MembershipMinAggregateInput_schema = () => z.object({ - id: z.literal(true).optional(), - type: z.literal(true).optional(), - specialization: z.literal(true).optional(), - start: z.literal(true).optional(), - end: z.literal(true).optional(), - semester: z.literal(true).optional(), - userId: z.literal(true).optional() -}).strict(); -export const MembershipMinAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_MembershipMinAggregateInput_schema) as unknown as z.ZodType; -export const MembershipMinAggregateInputObjectZodSchema = z.lazy(__makeSchema_MembershipMinAggregateInput_schema); - - -// File: MembershipMaxAggregateInput.schema.ts -const __makeSchema_MembershipMaxAggregateInput_schema = () => z.object({ - id: z.literal(true).optional(), - type: z.literal(true).optional(), - specialization: z.literal(true).optional(), - start: z.literal(true).optional(), - end: z.literal(true).optional(), - semester: z.literal(true).optional(), - userId: z.literal(true).optional() -}).strict(); -export const MembershipMaxAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_MembershipMaxAggregateInput_schema) as unknown as z.ZodType; -export const MembershipMaxAggregateInputObjectZodSchema = z.lazy(__makeSchema_MembershipMaxAggregateInput_schema); - - -// File: UserCountAggregateInput.schema.ts -const __makeSchema_UserCountAggregateInput_schema = () => z.object({ - id: z.literal(true).optional(), - username: z.literal(true).optional(), - name: z.literal(true).optional(), - email: z.literal(true).optional(), - imageUrl: z.literal(true).optional(), - biography: z.literal(true).optional(), - phone: z.literal(true).optional(), - gender: z.literal(true).optional(), - dietaryRestrictions: z.literal(true).optional(), - ntnuUsername: z.literal(true).optional(), - flags: z.literal(true).optional(), - workspaceUserId: z.literal(true).optional(), - createdAt: z.literal(true).optional(), - updatedAt: z.literal(true).optional(), - privacyPermissionsId: z.literal(true).optional(), - notificationPermissionsId: z.literal(true).optional(), - _all: z.literal(true).optional() -}).strict(); -export const UserCountAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_UserCountAggregateInput_schema) as unknown as z.ZodType; -export const UserCountAggregateInputObjectZodSchema = z.lazy(__makeSchema_UserCountAggregateInput_schema); - - -// File: UserMinAggregateInput.schema.ts -const __makeSchema_UserMinAggregateInput_schema = () => z.object({ - id: z.literal(true).optional(), - username: z.literal(true).optional(), - name: z.literal(true).optional(), - email: z.literal(true).optional(), - imageUrl: z.literal(true).optional(), - biography: z.literal(true).optional(), - phone: z.literal(true).optional(), - gender: z.literal(true).optional(), - dietaryRestrictions: z.literal(true).optional(), - ntnuUsername: z.literal(true).optional(), - workspaceUserId: z.literal(true).optional(), - createdAt: z.literal(true).optional(), - updatedAt: z.literal(true).optional(), - privacyPermissionsId: z.literal(true).optional(), - notificationPermissionsId: z.literal(true).optional() -}).strict(); -export const UserMinAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_UserMinAggregateInput_schema) as unknown as z.ZodType; -export const UserMinAggregateInputObjectZodSchema = z.lazy(__makeSchema_UserMinAggregateInput_schema); - - -// File: UserMaxAggregateInput.schema.ts -const __makeSchema_UserMaxAggregateInput_schema = () => z.object({ - id: z.literal(true).optional(), - username: z.literal(true).optional(), - name: z.literal(true).optional(), - email: z.literal(true).optional(), - imageUrl: z.literal(true).optional(), - biography: z.literal(true).optional(), - phone: z.literal(true).optional(), - gender: z.literal(true).optional(), - dietaryRestrictions: z.literal(true).optional(), - ntnuUsername: z.literal(true).optional(), - workspaceUserId: z.literal(true).optional(), - createdAt: z.literal(true).optional(), - updatedAt: z.literal(true).optional(), - privacyPermissionsId: z.literal(true).optional(), - notificationPermissionsId: z.literal(true).optional() -}).strict(); -export const UserMaxAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_UserMaxAggregateInput_schema) as unknown as z.ZodType; -export const UserMaxAggregateInputObjectZodSchema = z.lazy(__makeSchema_UserMaxAggregateInput_schema); - - -// File: CompanyCountAggregateInput.schema.ts -const __makeSchema_CompanyCountAggregateInput_schema = () => z.object({ - id: z.literal(true).optional(), - name: z.literal(true).optional(), - slug: z.literal(true).optional(), - description: z.literal(true).optional(), - phone: z.literal(true).optional(), - email: z.literal(true).optional(), - website: z.literal(true).optional(), - location: z.literal(true).optional(), - imageUrl: z.literal(true).optional(), - createdAt: z.literal(true).optional(), - updatedAt: z.literal(true).optional(), - _all: z.literal(true).optional() -}).strict(); -export const CompanyCountAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_CompanyCountAggregateInput_schema) as unknown as z.ZodType; -export const CompanyCountAggregateInputObjectZodSchema = z.lazy(__makeSchema_CompanyCountAggregateInput_schema); - - -// File: CompanyMinAggregateInput.schema.ts -const __makeSchema_CompanyMinAggregateInput_schema = () => z.object({ - id: z.literal(true).optional(), - name: z.literal(true).optional(), - slug: z.literal(true).optional(), - description: z.literal(true).optional(), - phone: z.literal(true).optional(), - email: z.literal(true).optional(), - website: z.literal(true).optional(), - location: z.literal(true).optional(), - imageUrl: z.literal(true).optional(), - createdAt: z.literal(true).optional(), - updatedAt: z.literal(true).optional() -}).strict(); -export const CompanyMinAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_CompanyMinAggregateInput_schema) as unknown as z.ZodType; -export const CompanyMinAggregateInputObjectZodSchema = z.lazy(__makeSchema_CompanyMinAggregateInput_schema); - - -// File: CompanyMaxAggregateInput.schema.ts -const __makeSchema_CompanyMaxAggregateInput_schema = () => z.object({ - id: z.literal(true).optional(), - name: z.literal(true).optional(), - slug: z.literal(true).optional(), - description: z.literal(true).optional(), - phone: z.literal(true).optional(), - email: z.literal(true).optional(), - website: z.literal(true).optional(), - location: z.literal(true).optional(), - imageUrl: z.literal(true).optional(), - createdAt: z.literal(true).optional(), - updatedAt: z.literal(true).optional() -}).strict(); -export const CompanyMaxAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_CompanyMaxAggregateInput_schema) as unknown as z.ZodType; -export const CompanyMaxAggregateInputObjectZodSchema = z.lazy(__makeSchema_CompanyMaxAggregateInput_schema); - - -// File: GroupCountAggregateInput.schema.ts -const __makeSchema_GroupCountAggregateInput_schema = () => z.object({ - slug: z.literal(true).optional(), - abbreviation: z.literal(true).optional(), - name: z.literal(true).optional(), - shortDescription: z.literal(true).optional(), - description: z.literal(true).optional(), - imageUrl: z.literal(true).optional(), - email: z.literal(true).optional(), - contactUrl: z.literal(true).optional(), - slackUrl: z.literal(true).optional(), - showLeaderAsContact: z.literal(true).optional(), - createdAt: z.literal(true).optional(), - deactivatedAt: z.literal(true).optional(), - workspaceGroupId: z.literal(true).optional(), - memberVisibility: z.literal(true).optional(), - recruitmentMethod: z.literal(true).optional(), - type: z.literal(true).optional(), - _all: z.literal(true).optional() -}).strict(); -export const GroupCountAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_GroupCountAggregateInput_schema) as unknown as z.ZodType; -export const GroupCountAggregateInputObjectZodSchema = z.lazy(__makeSchema_GroupCountAggregateInput_schema); - - -// File: GroupMinAggregateInput.schema.ts -const __makeSchema_GroupMinAggregateInput_schema = () => z.object({ - slug: z.literal(true).optional(), - abbreviation: z.literal(true).optional(), - name: z.literal(true).optional(), - shortDescription: z.literal(true).optional(), - description: z.literal(true).optional(), - imageUrl: z.literal(true).optional(), - email: z.literal(true).optional(), - contactUrl: z.literal(true).optional(), - slackUrl: z.literal(true).optional(), - showLeaderAsContact: z.literal(true).optional(), - createdAt: z.literal(true).optional(), - deactivatedAt: z.literal(true).optional(), - workspaceGroupId: z.literal(true).optional(), - memberVisibility: z.literal(true).optional(), - recruitmentMethod: z.literal(true).optional(), - type: z.literal(true).optional() -}).strict(); -export const GroupMinAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_GroupMinAggregateInput_schema) as unknown as z.ZodType; -export const GroupMinAggregateInputObjectZodSchema = z.lazy(__makeSchema_GroupMinAggregateInput_schema); - - -// File: GroupMaxAggregateInput.schema.ts -const __makeSchema_GroupMaxAggregateInput_schema = () => z.object({ - slug: z.literal(true).optional(), - abbreviation: z.literal(true).optional(), - name: z.literal(true).optional(), - shortDescription: z.literal(true).optional(), - description: z.literal(true).optional(), - imageUrl: z.literal(true).optional(), - email: z.literal(true).optional(), - contactUrl: z.literal(true).optional(), - slackUrl: z.literal(true).optional(), - showLeaderAsContact: z.literal(true).optional(), - createdAt: z.literal(true).optional(), - deactivatedAt: z.literal(true).optional(), - workspaceGroupId: z.literal(true).optional(), - memberVisibility: z.literal(true).optional(), - recruitmentMethod: z.literal(true).optional(), - type: z.literal(true).optional() -}).strict(); -export const GroupMaxAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_GroupMaxAggregateInput_schema) as unknown as z.ZodType; -export const GroupMaxAggregateInputObjectZodSchema = z.lazy(__makeSchema_GroupMaxAggregateInput_schema); - - -// File: GroupMembershipCountAggregateInput.schema.ts -const __makeSchema_GroupMembershipCountAggregateInput_schema = () => z.object({ - id: z.literal(true).optional(), - start: z.literal(true).optional(), - end: z.literal(true).optional(), - createdAt: z.literal(true).optional(), - updatedAt: z.literal(true).optional(), - groupId: z.literal(true).optional(), - userId: z.literal(true).optional(), - _all: z.literal(true).optional() -}).strict(); -export const GroupMembershipCountAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_GroupMembershipCountAggregateInput_schema) as unknown as z.ZodType; -export const GroupMembershipCountAggregateInputObjectZodSchema = z.lazy(__makeSchema_GroupMembershipCountAggregateInput_schema); - - -// File: GroupMembershipMinAggregateInput.schema.ts -const __makeSchema_GroupMembershipMinAggregateInput_schema = () => z.object({ - id: z.literal(true).optional(), - start: z.literal(true).optional(), - end: z.literal(true).optional(), - createdAt: z.literal(true).optional(), - updatedAt: z.literal(true).optional(), - groupId: z.literal(true).optional(), - userId: z.literal(true).optional() -}).strict(); -export const GroupMembershipMinAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_GroupMembershipMinAggregateInput_schema) as unknown as z.ZodType; -export const GroupMembershipMinAggregateInputObjectZodSchema = z.lazy(__makeSchema_GroupMembershipMinAggregateInput_schema); - - -// File: GroupMembershipMaxAggregateInput.schema.ts -const __makeSchema_GroupMembershipMaxAggregateInput_schema = () => z.object({ - id: z.literal(true).optional(), - start: z.literal(true).optional(), - end: z.literal(true).optional(), - createdAt: z.literal(true).optional(), - updatedAt: z.literal(true).optional(), - groupId: z.literal(true).optional(), - userId: z.literal(true).optional() -}).strict(); -export const GroupMembershipMaxAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_GroupMembershipMaxAggregateInput_schema) as unknown as z.ZodType; -export const GroupMembershipMaxAggregateInputObjectZodSchema = z.lazy(__makeSchema_GroupMembershipMaxAggregateInput_schema); - - -// File: GroupMembershipRoleCountAggregateInput.schema.ts -const __makeSchema_GroupMembershipRoleCountAggregateInput_schema = () => z.object({ - membershipId: z.literal(true).optional(), - roleId: z.literal(true).optional(), - _all: z.literal(true).optional() -}).strict(); -export const GroupMembershipRoleCountAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_GroupMembershipRoleCountAggregateInput_schema) as unknown as z.ZodType; -export const GroupMembershipRoleCountAggregateInputObjectZodSchema = z.lazy(__makeSchema_GroupMembershipRoleCountAggregateInput_schema); - - -// File: GroupMembershipRoleMinAggregateInput.schema.ts -const __makeSchema_GroupMembershipRoleMinAggregateInput_schema = () => z.object({ - membershipId: z.literal(true).optional(), - roleId: z.literal(true).optional() -}).strict(); -export const GroupMembershipRoleMinAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_GroupMembershipRoleMinAggregateInput_schema) as unknown as z.ZodType; -export const GroupMembershipRoleMinAggregateInputObjectZodSchema = z.lazy(__makeSchema_GroupMembershipRoleMinAggregateInput_schema); - - -// File: GroupMembershipRoleMaxAggregateInput.schema.ts -const __makeSchema_GroupMembershipRoleMaxAggregateInput_schema = () => z.object({ - membershipId: z.literal(true).optional(), - roleId: z.literal(true).optional() -}).strict(); -export const GroupMembershipRoleMaxAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_GroupMembershipRoleMaxAggregateInput_schema) as unknown as z.ZodType; -export const GroupMembershipRoleMaxAggregateInputObjectZodSchema = z.lazy(__makeSchema_GroupMembershipRoleMaxAggregateInput_schema); - - -// File: GroupRoleCountAggregateInput.schema.ts -const __makeSchema_GroupRoleCountAggregateInput_schema = () => z.object({ - id: z.literal(true).optional(), - name: z.literal(true).optional(), - type: z.literal(true).optional(), - groupId: z.literal(true).optional(), - _all: z.literal(true).optional() -}).strict(); -export const GroupRoleCountAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_GroupRoleCountAggregateInput_schema) as unknown as z.ZodType; -export const GroupRoleCountAggregateInputObjectZodSchema = z.lazy(__makeSchema_GroupRoleCountAggregateInput_schema); - - -// File: GroupRoleMinAggregateInput.schema.ts -const __makeSchema_GroupRoleMinAggregateInput_schema = () => z.object({ - id: z.literal(true).optional(), - name: z.literal(true).optional(), - type: z.literal(true).optional(), - groupId: z.literal(true).optional() -}).strict(); -export const GroupRoleMinAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_GroupRoleMinAggregateInput_schema) as unknown as z.ZodType; -export const GroupRoleMinAggregateInputObjectZodSchema = z.lazy(__makeSchema_GroupRoleMinAggregateInput_schema); - - -// File: GroupRoleMaxAggregateInput.schema.ts -const __makeSchema_GroupRoleMaxAggregateInput_schema = () => z.object({ - id: z.literal(true).optional(), - name: z.literal(true).optional(), - type: z.literal(true).optional(), - groupId: z.literal(true).optional() -}).strict(); -export const GroupRoleMaxAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_GroupRoleMaxAggregateInput_schema) as unknown as z.ZodType; -export const GroupRoleMaxAggregateInputObjectZodSchema = z.lazy(__makeSchema_GroupRoleMaxAggregateInput_schema); - - -// File: AttendanceCountAggregateInput.schema.ts -const __makeSchema_AttendanceCountAggregateInput_schema = () => z.object({ - id: z.literal(true).optional(), - registerStart: z.literal(true).optional(), - registerEnd: z.literal(true).optional(), - deregisterDeadline: z.literal(true).optional(), - selections: z.literal(true).optional(), - createdAt: z.literal(true).optional(), - updatedAt: z.literal(true).optional(), - attendancePrice: z.literal(true).optional(), - _all: z.literal(true).optional() -}).strict(); -export const AttendanceCountAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_AttendanceCountAggregateInput_schema) as unknown as z.ZodType; -export const AttendanceCountAggregateInputObjectZodSchema = z.lazy(__makeSchema_AttendanceCountAggregateInput_schema); - - -// File: AttendanceAvgAggregateInput.schema.ts -const __makeSchema_AttendanceAvgAggregateInput_schema = () => z.object({ - attendancePrice: z.literal(true).optional() -}).strict(); -export const AttendanceAvgAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_AttendanceAvgAggregateInput_schema) as unknown as z.ZodType; -export const AttendanceAvgAggregateInputObjectZodSchema = z.lazy(__makeSchema_AttendanceAvgAggregateInput_schema); - - -// File: AttendanceSumAggregateInput.schema.ts -const __makeSchema_AttendanceSumAggregateInput_schema = () => z.object({ - attendancePrice: z.literal(true).optional() -}).strict(); -export const AttendanceSumAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_AttendanceSumAggregateInput_schema) as unknown as z.ZodType; -export const AttendanceSumAggregateInputObjectZodSchema = z.lazy(__makeSchema_AttendanceSumAggregateInput_schema); - - -// File: AttendanceMinAggregateInput.schema.ts -const __makeSchema_AttendanceMinAggregateInput_schema = () => z.object({ - id: z.literal(true).optional(), - registerStart: z.literal(true).optional(), - registerEnd: z.literal(true).optional(), - deregisterDeadline: z.literal(true).optional(), - createdAt: z.literal(true).optional(), - updatedAt: z.literal(true).optional(), - attendancePrice: z.literal(true).optional() -}).strict(); -export const AttendanceMinAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_AttendanceMinAggregateInput_schema) as unknown as z.ZodType; -export const AttendanceMinAggregateInputObjectZodSchema = z.lazy(__makeSchema_AttendanceMinAggregateInput_schema); - - -// File: AttendanceMaxAggregateInput.schema.ts -const __makeSchema_AttendanceMaxAggregateInput_schema = () => z.object({ - id: z.literal(true).optional(), - registerStart: z.literal(true).optional(), - registerEnd: z.literal(true).optional(), - deregisterDeadline: z.literal(true).optional(), - createdAt: z.literal(true).optional(), - updatedAt: z.literal(true).optional(), - attendancePrice: z.literal(true).optional() -}).strict(); -export const AttendanceMaxAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_AttendanceMaxAggregateInput_schema) as unknown as z.ZodType; -export const AttendanceMaxAggregateInputObjectZodSchema = z.lazy(__makeSchema_AttendanceMaxAggregateInput_schema); - - -// File: AttendancePoolCountAggregateInput.schema.ts -const __makeSchema_AttendancePoolCountAggregateInput_schema = () => z.object({ - id: z.literal(true).optional(), - title: z.literal(true).optional(), - mergeDelayHours: z.literal(true).optional(), - yearCriteria: z.literal(true).optional(), - capacity: z.literal(true).optional(), - createdAt: z.literal(true).optional(), - updatedAt: z.literal(true).optional(), - attendanceId: z.literal(true).optional(), - taskId: z.literal(true).optional(), - _all: z.literal(true).optional() -}).strict(); -export const AttendancePoolCountAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_AttendancePoolCountAggregateInput_schema) as unknown as z.ZodType; -export const AttendancePoolCountAggregateInputObjectZodSchema = z.lazy(__makeSchema_AttendancePoolCountAggregateInput_schema); - - -// File: AttendancePoolAvgAggregateInput.schema.ts -const __makeSchema_AttendancePoolAvgAggregateInput_schema = () => z.object({ - mergeDelayHours: z.literal(true).optional(), - capacity: z.literal(true).optional() -}).strict(); -export const AttendancePoolAvgAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_AttendancePoolAvgAggregateInput_schema) as unknown as z.ZodType; -export const AttendancePoolAvgAggregateInputObjectZodSchema = z.lazy(__makeSchema_AttendancePoolAvgAggregateInput_schema); - - -// File: AttendancePoolSumAggregateInput.schema.ts -const __makeSchema_AttendancePoolSumAggregateInput_schema = () => z.object({ - mergeDelayHours: z.literal(true).optional(), - capacity: z.literal(true).optional() -}).strict(); -export const AttendancePoolSumAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_AttendancePoolSumAggregateInput_schema) as unknown as z.ZodType; -export const AttendancePoolSumAggregateInputObjectZodSchema = z.lazy(__makeSchema_AttendancePoolSumAggregateInput_schema); - - -// File: AttendancePoolMinAggregateInput.schema.ts -const __makeSchema_AttendancePoolMinAggregateInput_schema = () => z.object({ - id: z.literal(true).optional(), - title: z.literal(true).optional(), - mergeDelayHours: z.literal(true).optional(), - capacity: z.literal(true).optional(), - createdAt: z.literal(true).optional(), - updatedAt: z.literal(true).optional(), - attendanceId: z.literal(true).optional(), - taskId: z.literal(true).optional() -}).strict(); -export const AttendancePoolMinAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_AttendancePoolMinAggregateInput_schema) as unknown as z.ZodType; -export const AttendancePoolMinAggregateInputObjectZodSchema = z.lazy(__makeSchema_AttendancePoolMinAggregateInput_schema); - - -// File: AttendancePoolMaxAggregateInput.schema.ts -const __makeSchema_AttendancePoolMaxAggregateInput_schema = () => z.object({ - id: z.literal(true).optional(), - title: z.literal(true).optional(), - mergeDelayHours: z.literal(true).optional(), - capacity: z.literal(true).optional(), - createdAt: z.literal(true).optional(), - updatedAt: z.literal(true).optional(), - attendanceId: z.literal(true).optional(), - taskId: z.literal(true).optional() -}).strict(); -export const AttendancePoolMaxAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_AttendancePoolMaxAggregateInput_schema) as unknown as z.ZodType; -export const AttendancePoolMaxAggregateInputObjectZodSchema = z.lazy(__makeSchema_AttendancePoolMaxAggregateInput_schema); - - -// File: AttendeeCountAggregateInput.schema.ts -const __makeSchema_AttendeeCountAggregateInput_schema = () => z.object({ - id: z.literal(true).optional(), - userGrade: z.literal(true).optional(), - selections: z.literal(true).optional(), - reserved: z.literal(true).optional(), - earliestReservationAt: z.literal(true).optional(), - attendedAt: z.literal(true).optional(), - createdAt: z.literal(true).optional(), - updatedAt: z.literal(true).optional(), - paymentDeadline: z.literal(true).optional(), - paymentLink: z.literal(true).optional(), - paymentId: z.literal(true).optional(), - paymentReservedAt: z.literal(true).optional(), - paymentChargeDeadline: z.literal(true).optional(), - paymentChargedAt: z.literal(true).optional(), - paymentRefundedAt: z.literal(true).optional(), - paymentCheckoutUrl: z.literal(true).optional(), - attendanceId: z.literal(true).optional(), - userId: z.literal(true).optional(), - attendancePoolId: z.literal(true).optional(), - paymentRefundedById: z.literal(true).optional(), - _all: z.literal(true).optional() -}).strict(); -export const AttendeeCountAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_AttendeeCountAggregateInput_schema) as unknown as z.ZodType; -export const AttendeeCountAggregateInputObjectZodSchema = z.lazy(__makeSchema_AttendeeCountAggregateInput_schema); - - -// File: AttendeeAvgAggregateInput.schema.ts -const __makeSchema_AttendeeAvgAggregateInput_schema = () => z.object({ - userGrade: z.literal(true).optional() -}).strict(); -export const AttendeeAvgAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_AttendeeAvgAggregateInput_schema) as unknown as z.ZodType; -export const AttendeeAvgAggregateInputObjectZodSchema = z.lazy(__makeSchema_AttendeeAvgAggregateInput_schema); - - -// File: AttendeeSumAggregateInput.schema.ts -const __makeSchema_AttendeeSumAggregateInput_schema = () => z.object({ - userGrade: z.literal(true).optional() -}).strict(); -export const AttendeeSumAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_AttendeeSumAggregateInput_schema) as unknown as z.ZodType; -export const AttendeeSumAggregateInputObjectZodSchema = z.lazy(__makeSchema_AttendeeSumAggregateInput_schema); - - -// File: AttendeeMinAggregateInput.schema.ts -const __makeSchema_AttendeeMinAggregateInput_schema = () => z.object({ - id: z.literal(true).optional(), - userGrade: z.literal(true).optional(), - reserved: z.literal(true).optional(), - earliestReservationAt: z.literal(true).optional(), - attendedAt: z.literal(true).optional(), - createdAt: z.literal(true).optional(), - updatedAt: z.literal(true).optional(), - paymentDeadline: z.literal(true).optional(), - paymentLink: z.literal(true).optional(), - paymentId: z.literal(true).optional(), - paymentReservedAt: z.literal(true).optional(), - paymentChargeDeadline: z.literal(true).optional(), - paymentChargedAt: z.literal(true).optional(), - paymentRefundedAt: z.literal(true).optional(), - paymentCheckoutUrl: z.literal(true).optional(), - attendanceId: z.literal(true).optional(), - userId: z.literal(true).optional(), - attendancePoolId: z.literal(true).optional(), - paymentRefundedById: z.literal(true).optional() -}).strict(); -export const AttendeeMinAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_AttendeeMinAggregateInput_schema) as unknown as z.ZodType; -export const AttendeeMinAggregateInputObjectZodSchema = z.lazy(__makeSchema_AttendeeMinAggregateInput_schema); - - -// File: AttendeeMaxAggregateInput.schema.ts -const __makeSchema_AttendeeMaxAggregateInput_schema = () => z.object({ - id: z.literal(true).optional(), - userGrade: z.literal(true).optional(), - reserved: z.literal(true).optional(), - earliestReservationAt: z.literal(true).optional(), - attendedAt: z.literal(true).optional(), - createdAt: z.literal(true).optional(), - updatedAt: z.literal(true).optional(), - paymentDeadline: z.literal(true).optional(), - paymentLink: z.literal(true).optional(), - paymentId: z.literal(true).optional(), - paymentReservedAt: z.literal(true).optional(), - paymentChargeDeadline: z.literal(true).optional(), - paymentChargedAt: z.literal(true).optional(), - paymentRefundedAt: z.literal(true).optional(), - paymentCheckoutUrl: z.literal(true).optional(), - attendanceId: z.literal(true).optional(), - userId: z.literal(true).optional(), - attendancePoolId: z.literal(true).optional(), - paymentRefundedById: z.literal(true).optional() -}).strict(); -export const AttendeeMaxAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_AttendeeMaxAggregateInput_schema) as unknown as z.ZodType; -export const AttendeeMaxAggregateInputObjectZodSchema = z.lazy(__makeSchema_AttendeeMaxAggregateInput_schema); - - -// File: EventCountAggregateInput.schema.ts -const __makeSchema_EventCountAggregateInput_schema = () => z.object({ - id: z.literal(true).optional(), - title: z.literal(true).optional(), - start: z.literal(true).optional(), - end: z.literal(true).optional(), - status: z.literal(true).optional(), - description: z.literal(true).optional(), - shortDescription: z.literal(true).optional(), - imageUrl: z.literal(true).optional(), - locationTitle: z.literal(true).optional(), - locationAddress: z.literal(true).optional(), - locationLink: z.literal(true).optional(), - type: z.literal(true).optional(), - markForMissedAttendance: z.literal(true).optional(), - createdAt: z.literal(true).optional(), - updatedAt: z.literal(true).optional(), - attendanceId: z.literal(true).optional(), - parentId: z.literal(true).optional(), - contestId: z.literal(true).optional(), - metadataImportId: z.literal(true).optional(), - _all: z.literal(true).optional() -}).strict(); -export const EventCountAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_EventCountAggregateInput_schema) as unknown as z.ZodType; -export const EventCountAggregateInputObjectZodSchema = z.lazy(__makeSchema_EventCountAggregateInput_schema); - - -// File: EventAvgAggregateInput.schema.ts -const __makeSchema_EventAvgAggregateInput_schema = () => z.object({ - metadataImportId: z.literal(true).optional() -}).strict(); -export const EventAvgAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_EventAvgAggregateInput_schema) as unknown as z.ZodType; -export const EventAvgAggregateInputObjectZodSchema = z.lazy(__makeSchema_EventAvgAggregateInput_schema); - - -// File: EventSumAggregateInput.schema.ts -const __makeSchema_EventSumAggregateInput_schema = () => z.object({ - metadataImportId: z.literal(true).optional() -}).strict(); -export const EventSumAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_EventSumAggregateInput_schema) as unknown as z.ZodType; -export const EventSumAggregateInputObjectZodSchema = z.lazy(__makeSchema_EventSumAggregateInput_schema); - - -// File: EventMinAggregateInput.schema.ts -const __makeSchema_EventMinAggregateInput_schema = () => z.object({ - id: z.literal(true).optional(), - title: z.literal(true).optional(), - start: z.literal(true).optional(), - end: z.literal(true).optional(), - status: z.literal(true).optional(), - description: z.literal(true).optional(), - shortDescription: z.literal(true).optional(), - imageUrl: z.literal(true).optional(), - locationTitle: z.literal(true).optional(), - locationAddress: z.literal(true).optional(), - locationLink: z.literal(true).optional(), - type: z.literal(true).optional(), - markForMissedAttendance: z.literal(true).optional(), - createdAt: z.literal(true).optional(), - updatedAt: z.literal(true).optional(), - attendanceId: z.literal(true).optional(), - parentId: z.literal(true).optional(), - contestId: z.literal(true).optional(), - metadataImportId: z.literal(true).optional() -}).strict(); -export const EventMinAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_EventMinAggregateInput_schema) as unknown as z.ZodType; -export const EventMinAggregateInputObjectZodSchema = z.lazy(__makeSchema_EventMinAggregateInput_schema); - - -// File: EventMaxAggregateInput.schema.ts -const __makeSchema_EventMaxAggregateInput_schema = () => z.object({ - id: z.literal(true).optional(), - title: z.literal(true).optional(), - start: z.literal(true).optional(), - end: z.literal(true).optional(), - status: z.literal(true).optional(), - description: z.literal(true).optional(), - shortDescription: z.literal(true).optional(), - imageUrl: z.literal(true).optional(), - locationTitle: z.literal(true).optional(), - locationAddress: z.literal(true).optional(), - locationLink: z.literal(true).optional(), - type: z.literal(true).optional(), - markForMissedAttendance: z.literal(true).optional(), - createdAt: z.literal(true).optional(), - updatedAt: z.literal(true).optional(), - attendanceId: z.literal(true).optional(), - parentId: z.literal(true).optional(), - contestId: z.literal(true).optional(), - metadataImportId: z.literal(true).optional() -}).strict(); -export const EventMaxAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_EventMaxAggregateInput_schema) as unknown as z.ZodType; -export const EventMaxAggregateInputObjectZodSchema = z.lazy(__makeSchema_EventMaxAggregateInput_schema); - - -// File: EventCompanyCountAggregateInput.schema.ts -const __makeSchema_EventCompanyCountAggregateInput_schema = () => z.object({ - eventId: z.literal(true).optional(), - companyId: z.literal(true).optional(), - _all: z.literal(true).optional() -}).strict(); -export const EventCompanyCountAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_EventCompanyCountAggregateInput_schema) as unknown as z.ZodType; -export const EventCompanyCountAggregateInputObjectZodSchema = z.lazy(__makeSchema_EventCompanyCountAggregateInput_schema); - - -// File: EventCompanyMinAggregateInput.schema.ts -const __makeSchema_EventCompanyMinAggregateInput_schema = () => z.object({ - eventId: z.literal(true).optional(), - companyId: z.literal(true).optional() -}).strict(); -export const EventCompanyMinAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_EventCompanyMinAggregateInput_schema) as unknown as z.ZodType; -export const EventCompanyMinAggregateInputObjectZodSchema = z.lazy(__makeSchema_EventCompanyMinAggregateInput_schema); - - -// File: EventCompanyMaxAggregateInput.schema.ts -const __makeSchema_EventCompanyMaxAggregateInput_schema = () => z.object({ - eventId: z.literal(true).optional(), - companyId: z.literal(true).optional() -}).strict(); -export const EventCompanyMaxAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_EventCompanyMaxAggregateInput_schema) as unknown as z.ZodType; -export const EventCompanyMaxAggregateInputObjectZodSchema = z.lazy(__makeSchema_EventCompanyMaxAggregateInput_schema); - - -// File: MarkCountAggregateInput.schema.ts -const __makeSchema_MarkCountAggregateInput_schema = () => z.object({ - id: z.literal(true).optional(), - title: z.literal(true).optional(), - details: z.literal(true).optional(), - duration: z.literal(true).optional(), - weight: z.literal(true).optional(), - type: z.literal(true).optional(), - createdAt: z.literal(true).optional(), - updatedAt: z.literal(true).optional(), - _all: z.literal(true).optional() -}).strict(); -export const MarkCountAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_MarkCountAggregateInput_schema) as unknown as z.ZodType; -export const MarkCountAggregateInputObjectZodSchema = z.lazy(__makeSchema_MarkCountAggregateInput_schema); - - -// File: MarkAvgAggregateInput.schema.ts -const __makeSchema_MarkAvgAggregateInput_schema = () => z.object({ - duration: z.literal(true).optional(), - weight: z.literal(true).optional() -}).strict(); -export const MarkAvgAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_MarkAvgAggregateInput_schema) as unknown as z.ZodType; -export const MarkAvgAggregateInputObjectZodSchema = z.lazy(__makeSchema_MarkAvgAggregateInput_schema); - - -// File: MarkSumAggregateInput.schema.ts -const __makeSchema_MarkSumAggregateInput_schema = () => z.object({ - duration: z.literal(true).optional(), - weight: z.literal(true).optional() -}).strict(); -export const MarkSumAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_MarkSumAggregateInput_schema) as unknown as z.ZodType; -export const MarkSumAggregateInputObjectZodSchema = z.lazy(__makeSchema_MarkSumAggregateInput_schema); - - -// File: MarkMinAggregateInput.schema.ts -const __makeSchema_MarkMinAggregateInput_schema = () => z.object({ - id: z.literal(true).optional(), - title: z.literal(true).optional(), - details: z.literal(true).optional(), - duration: z.literal(true).optional(), - weight: z.literal(true).optional(), - type: z.literal(true).optional(), - createdAt: z.literal(true).optional(), - updatedAt: z.literal(true).optional() -}).strict(); -export const MarkMinAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_MarkMinAggregateInput_schema) as unknown as z.ZodType; -export const MarkMinAggregateInputObjectZodSchema = z.lazy(__makeSchema_MarkMinAggregateInput_schema); - - -// File: MarkMaxAggregateInput.schema.ts -const __makeSchema_MarkMaxAggregateInput_schema = () => z.object({ - id: z.literal(true).optional(), - title: z.literal(true).optional(), - details: z.literal(true).optional(), - duration: z.literal(true).optional(), - weight: z.literal(true).optional(), - type: z.literal(true).optional(), - createdAt: z.literal(true).optional(), - updatedAt: z.literal(true).optional() -}).strict(); -export const MarkMaxAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_MarkMaxAggregateInput_schema) as unknown as z.ZodType; -export const MarkMaxAggregateInputObjectZodSchema = z.lazy(__makeSchema_MarkMaxAggregateInput_schema); - - -// File: MarkGroupCountAggregateInput.schema.ts -const __makeSchema_MarkGroupCountAggregateInput_schema = () => z.object({ - markId: z.literal(true).optional(), - groupId: z.literal(true).optional(), - _all: z.literal(true).optional() -}).strict(); -export const MarkGroupCountAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_MarkGroupCountAggregateInput_schema) as unknown as z.ZodType; -export const MarkGroupCountAggregateInputObjectZodSchema = z.lazy(__makeSchema_MarkGroupCountAggregateInput_schema); - - -// File: MarkGroupMinAggregateInput.schema.ts -const __makeSchema_MarkGroupMinAggregateInput_schema = () => z.object({ - markId: z.literal(true).optional(), - groupId: z.literal(true).optional() -}).strict(); -export const MarkGroupMinAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_MarkGroupMinAggregateInput_schema) as unknown as z.ZodType; -export const MarkGroupMinAggregateInputObjectZodSchema = z.lazy(__makeSchema_MarkGroupMinAggregateInput_schema); - - -// File: MarkGroupMaxAggregateInput.schema.ts -const __makeSchema_MarkGroupMaxAggregateInput_schema = () => z.object({ - markId: z.literal(true).optional(), - groupId: z.literal(true).optional() -}).strict(); -export const MarkGroupMaxAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_MarkGroupMaxAggregateInput_schema) as unknown as z.ZodType; -export const MarkGroupMaxAggregateInputObjectZodSchema = z.lazy(__makeSchema_MarkGroupMaxAggregateInput_schema); - - -// File: PersonalMarkCountAggregateInput.schema.ts -const __makeSchema_PersonalMarkCountAggregateInput_schema = () => z.object({ - createdAt: z.literal(true).optional(), - markId: z.literal(true).optional(), - userId: z.literal(true).optional(), - givenById: z.literal(true).optional(), - _all: z.literal(true).optional() -}).strict(); -export const PersonalMarkCountAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_PersonalMarkCountAggregateInput_schema) as unknown as z.ZodType; -export const PersonalMarkCountAggregateInputObjectZodSchema = z.lazy(__makeSchema_PersonalMarkCountAggregateInput_schema); - - -// File: PersonalMarkMinAggregateInput.schema.ts -const __makeSchema_PersonalMarkMinAggregateInput_schema = () => z.object({ - createdAt: z.literal(true).optional(), - markId: z.literal(true).optional(), - userId: z.literal(true).optional(), - givenById: z.literal(true).optional() -}).strict(); -export const PersonalMarkMinAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_PersonalMarkMinAggregateInput_schema) as unknown as z.ZodType; -export const PersonalMarkMinAggregateInputObjectZodSchema = z.lazy(__makeSchema_PersonalMarkMinAggregateInput_schema); - - -// File: PersonalMarkMaxAggregateInput.schema.ts -const __makeSchema_PersonalMarkMaxAggregateInput_schema = () => z.object({ - createdAt: z.literal(true).optional(), - markId: z.literal(true).optional(), - userId: z.literal(true).optional(), - givenById: z.literal(true).optional() -}).strict(); -export const PersonalMarkMaxAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_PersonalMarkMaxAggregateInput_schema) as unknown as z.ZodType; -export const PersonalMarkMaxAggregateInputObjectZodSchema = z.lazy(__makeSchema_PersonalMarkMaxAggregateInput_schema); - - -// File: PrivacyPermissionsCountAggregateInput.schema.ts -const __makeSchema_PrivacyPermissionsCountAggregateInput_schema = () => z.object({ - id: z.literal(true).optional(), - userId: z.literal(true).optional(), - profileVisible: z.literal(true).optional(), - usernameVisible: z.literal(true).optional(), - emailVisible: z.literal(true).optional(), - phoneVisible: z.literal(true).optional(), - addressVisible: z.literal(true).optional(), - attendanceVisible: z.literal(true).optional(), - createdAt: z.literal(true).optional(), - updatedAt: z.literal(true).optional(), - _all: z.literal(true).optional() -}).strict(); -export const PrivacyPermissionsCountAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_PrivacyPermissionsCountAggregateInput_schema) as unknown as z.ZodType; -export const PrivacyPermissionsCountAggregateInputObjectZodSchema = z.lazy(__makeSchema_PrivacyPermissionsCountAggregateInput_schema); - - -// File: PrivacyPermissionsMinAggregateInput.schema.ts -const __makeSchema_PrivacyPermissionsMinAggregateInput_schema = () => z.object({ - id: z.literal(true).optional(), - userId: z.literal(true).optional(), - profileVisible: z.literal(true).optional(), - usernameVisible: z.literal(true).optional(), - emailVisible: z.literal(true).optional(), - phoneVisible: z.literal(true).optional(), - addressVisible: z.literal(true).optional(), - attendanceVisible: z.literal(true).optional(), - createdAt: z.literal(true).optional(), - updatedAt: z.literal(true).optional() -}).strict(); -export const PrivacyPermissionsMinAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_PrivacyPermissionsMinAggregateInput_schema) as unknown as z.ZodType; -export const PrivacyPermissionsMinAggregateInputObjectZodSchema = z.lazy(__makeSchema_PrivacyPermissionsMinAggregateInput_schema); - - -// File: PrivacyPermissionsMaxAggregateInput.schema.ts -const __makeSchema_PrivacyPermissionsMaxAggregateInput_schema = () => z.object({ - id: z.literal(true).optional(), - userId: z.literal(true).optional(), - profileVisible: z.literal(true).optional(), - usernameVisible: z.literal(true).optional(), - emailVisible: z.literal(true).optional(), - phoneVisible: z.literal(true).optional(), - addressVisible: z.literal(true).optional(), - attendanceVisible: z.literal(true).optional(), - createdAt: z.literal(true).optional(), - updatedAt: z.literal(true).optional() -}).strict(); -export const PrivacyPermissionsMaxAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_PrivacyPermissionsMaxAggregateInput_schema) as unknown as z.ZodType; -export const PrivacyPermissionsMaxAggregateInputObjectZodSchema = z.lazy(__makeSchema_PrivacyPermissionsMaxAggregateInput_schema); - - -// File: NotificationPermissionsCountAggregateInput.schema.ts -const __makeSchema_NotificationPermissionsCountAggregateInput_schema = () => z.object({ - id: z.literal(true).optional(), - userId: z.literal(true).optional(), - applications: z.literal(true).optional(), - newArticles: z.literal(true).optional(), - standardNotifications: z.literal(true).optional(), - groupMessages: z.literal(true).optional(), - markRulesUpdates: z.literal(true).optional(), - receipts: z.literal(true).optional(), - registrationByAdministrator: z.literal(true).optional(), - registrationStart: z.literal(true).optional(), - createdAt: z.literal(true).optional(), - updatedAt: z.literal(true).optional(), - _all: z.literal(true).optional() -}).strict(); -export const NotificationPermissionsCountAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_NotificationPermissionsCountAggregateInput_schema) as unknown as z.ZodType; -export const NotificationPermissionsCountAggregateInputObjectZodSchema = z.lazy(__makeSchema_NotificationPermissionsCountAggregateInput_schema); - - -// File: NotificationPermissionsMinAggregateInput.schema.ts -const __makeSchema_NotificationPermissionsMinAggregateInput_schema = () => z.object({ - id: z.literal(true).optional(), - userId: z.literal(true).optional(), - applications: z.literal(true).optional(), - newArticles: z.literal(true).optional(), - standardNotifications: z.literal(true).optional(), - groupMessages: z.literal(true).optional(), - markRulesUpdates: z.literal(true).optional(), - receipts: z.literal(true).optional(), - registrationByAdministrator: z.literal(true).optional(), - registrationStart: z.literal(true).optional(), - createdAt: z.literal(true).optional(), - updatedAt: z.literal(true).optional() -}).strict(); -export const NotificationPermissionsMinAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_NotificationPermissionsMinAggregateInput_schema) as unknown as z.ZodType; -export const NotificationPermissionsMinAggregateInputObjectZodSchema = z.lazy(__makeSchema_NotificationPermissionsMinAggregateInput_schema); - - -// File: NotificationPermissionsMaxAggregateInput.schema.ts -const __makeSchema_NotificationPermissionsMaxAggregateInput_schema = () => z.object({ - id: z.literal(true).optional(), - userId: z.literal(true).optional(), - applications: z.literal(true).optional(), - newArticles: z.literal(true).optional(), - standardNotifications: z.literal(true).optional(), - groupMessages: z.literal(true).optional(), - markRulesUpdates: z.literal(true).optional(), - receipts: z.literal(true).optional(), - registrationByAdministrator: z.literal(true).optional(), - registrationStart: z.literal(true).optional(), - createdAt: z.literal(true).optional(), - updatedAt: z.literal(true).optional() -}).strict(); -export const NotificationPermissionsMaxAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_NotificationPermissionsMaxAggregateInput_schema) as unknown as z.ZodType; -export const NotificationPermissionsMaxAggregateInputObjectZodSchema = z.lazy(__makeSchema_NotificationPermissionsMaxAggregateInput_schema); - - -// File: EventHostingGroupCountAggregateInput.schema.ts -const __makeSchema_EventHostingGroupCountAggregateInput_schema = () => z.object({ - groupId: z.literal(true).optional(), - eventId: z.literal(true).optional(), - _all: z.literal(true).optional() -}).strict(); -export const EventHostingGroupCountAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_EventHostingGroupCountAggregateInput_schema) as unknown as z.ZodType; -export const EventHostingGroupCountAggregateInputObjectZodSchema = z.lazy(__makeSchema_EventHostingGroupCountAggregateInput_schema); - - -// File: EventHostingGroupMinAggregateInput.schema.ts -const __makeSchema_EventHostingGroupMinAggregateInput_schema = () => z.object({ - groupId: z.literal(true).optional(), - eventId: z.literal(true).optional() -}).strict(); -export const EventHostingGroupMinAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_EventHostingGroupMinAggregateInput_schema) as unknown as z.ZodType; -export const EventHostingGroupMinAggregateInputObjectZodSchema = z.lazy(__makeSchema_EventHostingGroupMinAggregateInput_schema); - - -// File: EventHostingGroupMaxAggregateInput.schema.ts -const __makeSchema_EventHostingGroupMaxAggregateInput_schema = () => z.object({ - groupId: z.literal(true).optional(), - eventId: z.literal(true).optional() -}).strict(); -export const EventHostingGroupMaxAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_EventHostingGroupMaxAggregateInput_schema) as unknown as z.ZodType; -export const EventHostingGroupMaxAggregateInputObjectZodSchema = z.lazy(__makeSchema_EventHostingGroupMaxAggregateInput_schema); - - -// File: JobListingCountAggregateInput.schema.ts -const __makeSchema_JobListingCountAggregateInput_schema = () => z.object({ - id: z.literal(true).optional(), - title: z.literal(true).optional(), - description: z.literal(true).optional(), - shortDescription: z.literal(true).optional(), - start: z.literal(true).optional(), - end: z.literal(true).optional(), - featured: z.literal(true).optional(), - hidden: z.literal(true).optional(), - deadline: z.literal(true).optional(), - employment: z.literal(true).optional(), - applicationLink: z.literal(true).optional(), - applicationEmail: z.literal(true).optional(), - rollingAdmission: z.literal(true).optional(), - createdAt: z.literal(true).optional(), - updatedAt: z.literal(true).optional(), - companyId: z.literal(true).optional(), - _all: z.literal(true).optional() -}).strict(); -export const JobListingCountAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_JobListingCountAggregateInput_schema) as unknown as z.ZodType; -export const JobListingCountAggregateInputObjectZodSchema = z.lazy(__makeSchema_JobListingCountAggregateInput_schema); - - -// File: JobListingMinAggregateInput.schema.ts -const __makeSchema_JobListingMinAggregateInput_schema = () => z.object({ - id: z.literal(true).optional(), - title: z.literal(true).optional(), - description: z.literal(true).optional(), - shortDescription: z.literal(true).optional(), - start: z.literal(true).optional(), - end: z.literal(true).optional(), - featured: z.literal(true).optional(), - hidden: z.literal(true).optional(), - deadline: z.literal(true).optional(), - employment: z.literal(true).optional(), - applicationLink: z.literal(true).optional(), - applicationEmail: z.literal(true).optional(), - rollingAdmission: z.literal(true).optional(), - createdAt: z.literal(true).optional(), - updatedAt: z.literal(true).optional(), - companyId: z.literal(true).optional() -}).strict(); -export const JobListingMinAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_JobListingMinAggregateInput_schema) as unknown as z.ZodType; -export const JobListingMinAggregateInputObjectZodSchema = z.lazy(__makeSchema_JobListingMinAggregateInput_schema); - - -// File: JobListingMaxAggregateInput.schema.ts -const __makeSchema_JobListingMaxAggregateInput_schema = () => z.object({ - id: z.literal(true).optional(), - title: z.literal(true).optional(), - description: z.literal(true).optional(), - shortDescription: z.literal(true).optional(), - start: z.literal(true).optional(), - end: z.literal(true).optional(), - featured: z.literal(true).optional(), - hidden: z.literal(true).optional(), - deadline: z.literal(true).optional(), - employment: z.literal(true).optional(), - applicationLink: z.literal(true).optional(), - applicationEmail: z.literal(true).optional(), - rollingAdmission: z.literal(true).optional(), - createdAt: z.literal(true).optional(), - updatedAt: z.literal(true).optional(), - companyId: z.literal(true).optional() -}).strict(); -export const JobListingMaxAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_JobListingMaxAggregateInput_schema) as unknown as z.ZodType; -export const JobListingMaxAggregateInputObjectZodSchema = z.lazy(__makeSchema_JobListingMaxAggregateInput_schema); - - -// File: JobListingLocationCountAggregateInput.schema.ts -const __makeSchema_JobListingLocationCountAggregateInput_schema = () => z.object({ - name: z.literal(true).optional(), - createdAt: z.literal(true).optional(), - jobListingId: z.literal(true).optional(), - _all: z.literal(true).optional() -}).strict(); -export const JobListingLocationCountAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_JobListingLocationCountAggregateInput_schema) as unknown as z.ZodType; -export const JobListingLocationCountAggregateInputObjectZodSchema = z.lazy(__makeSchema_JobListingLocationCountAggregateInput_schema); - - -// File: JobListingLocationMinAggregateInput.schema.ts -const __makeSchema_JobListingLocationMinAggregateInput_schema = () => z.object({ - name: z.literal(true).optional(), - createdAt: z.literal(true).optional(), - jobListingId: z.literal(true).optional() -}).strict(); -export const JobListingLocationMinAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_JobListingLocationMinAggregateInput_schema) as unknown as z.ZodType; -export const JobListingLocationMinAggregateInputObjectZodSchema = z.lazy(__makeSchema_JobListingLocationMinAggregateInput_schema); - - -// File: JobListingLocationMaxAggregateInput.schema.ts -const __makeSchema_JobListingLocationMaxAggregateInput_schema = () => z.object({ - name: z.literal(true).optional(), - createdAt: z.literal(true).optional(), - jobListingId: z.literal(true).optional() -}).strict(); -export const JobListingLocationMaxAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_JobListingLocationMaxAggregateInput_schema) as unknown as z.ZodType; -export const JobListingLocationMaxAggregateInputObjectZodSchema = z.lazy(__makeSchema_JobListingLocationMaxAggregateInput_schema); - - -// File: OfflineCountAggregateInput.schema.ts -const __makeSchema_OfflineCountAggregateInput_schema = () => z.object({ - id: z.literal(true).optional(), - title: z.literal(true).optional(), - fileUrl: z.literal(true).optional(), - imageUrl: z.literal(true).optional(), - publishedAt: z.literal(true).optional(), - createdAt: z.literal(true).optional(), - updatedAt: z.literal(true).optional(), - _all: z.literal(true).optional() -}).strict(); -export const OfflineCountAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_OfflineCountAggregateInput_schema) as unknown as z.ZodType; -export const OfflineCountAggregateInputObjectZodSchema = z.lazy(__makeSchema_OfflineCountAggregateInput_schema); - - -// File: OfflineMinAggregateInput.schema.ts -const __makeSchema_OfflineMinAggregateInput_schema = () => z.object({ - id: z.literal(true).optional(), - title: z.literal(true).optional(), - fileUrl: z.literal(true).optional(), - imageUrl: z.literal(true).optional(), - publishedAt: z.literal(true).optional(), - createdAt: z.literal(true).optional(), - updatedAt: z.literal(true).optional() -}).strict(); -export const OfflineMinAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_OfflineMinAggregateInput_schema) as unknown as z.ZodType; -export const OfflineMinAggregateInputObjectZodSchema = z.lazy(__makeSchema_OfflineMinAggregateInput_schema); - - -// File: OfflineMaxAggregateInput.schema.ts -const __makeSchema_OfflineMaxAggregateInput_schema = () => z.object({ - id: z.literal(true).optional(), - title: z.literal(true).optional(), - fileUrl: z.literal(true).optional(), - imageUrl: z.literal(true).optional(), - publishedAt: z.literal(true).optional(), - createdAt: z.literal(true).optional(), - updatedAt: z.literal(true).optional() -}).strict(); -export const OfflineMaxAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_OfflineMaxAggregateInput_schema) as unknown as z.ZodType; -export const OfflineMaxAggregateInputObjectZodSchema = z.lazy(__makeSchema_OfflineMaxAggregateInput_schema); - - -// File: ArticleCountAggregateInput.schema.ts -const __makeSchema_ArticleCountAggregateInput_schema = () => z.object({ - id: z.literal(true).optional(), - slug: z.literal(true).optional(), - title: z.literal(true).optional(), - author: z.literal(true).optional(), - photographer: z.literal(true).optional(), - imageUrl: z.literal(true).optional(), - excerpt: z.literal(true).optional(), - content: z.literal(true).optional(), - isFeatured: z.literal(true).optional(), - vimeoId: z.literal(true).optional(), - createdAt: z.literal(true).optional(), - updatedAt: z.literal(true).optional(), - _all: z.literal(true).optional() -}).strict(); -export const ArticleCountAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_ArticleCountAggregateInput_schema) as unknown as z.ZodType; -export const ArticleCountAggregateInputObjectZodSchema = z.lazy(__makeSchema_ArticleCountAggregateInput_schema); - - -// File: ArticleMinAggregateInput.schema.ts -const __makeSchema_ArticleMinAggregateInput_schema = () => z.object({ - id: z.literal(true).optional(), - slug: z.literal(true).optional(), - title: z.literal(true).optional(), - author: z.literal(true).optional(), - photographer: z.literal(true).optional(), - imageUrl: z.literal(true).optional(), - excerpt: z.literal(true).optional(), - content: z.literal(true).optional(), - isFeatured: z.literal(true).optional(), - vimeoId: z.literal(true).optional(), - createdAt: z.literal(true).optional(), - updatedAt: z.literal(true).optional() -}).strict(); -export const ArticleMinAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_ArticleMinAggregateInput_schema) as unknown as z.ZodType; -export const ArticleMinAggregateInputObjectZodSchema = z.lazy(__makeSchema_ArticleMinAggregateInput_schema); - - -// File: ArticleMaxAggregateInput.schema.ts -const __makeSchema_ArticleMaxAggregateInput_schema = () => z.object({ - id: z.literal(true).optional(), - slug: z.literal(true).optional(), - title: z.literal(true).optional(), - author: z.literal(true).optional(), - photographer: z.literal(true).optional(), - imageUrl: z.literal(true).optional(), - excerpt: z.literal(true).optional(), - content: z.literal(true).optional(), - isFeatured: z.literal(true).optional(), - vimeoId: z.literal(true).optional(), - createdAt: z.literal(true).optional(), - updatedAt: z.literal(true).optional() -}).strict(); -export const ArticleMaxAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_ArticleMaxAggregateInput_schema) as unknown as z.ZodType; -export const ArticleMaxAggregateInputObjectZodSchema = z.lazy(__makeSchema_ArticleMaxAggregateInput_schema); - - -// File: ArticleTagCountAggregateInput.schema.ts -const __makeSchema_ArticleTagCountAggregateInput_schema = () => z.object({ - name: z.literal(true).optional(), - _all: z.literal(true).optional() -}).strict(); -export const ArticleTagCountAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_ArticleTagCountAggregateInput_schema) as unknown as z.ZodType; -export const ArticleTagCountAggregateInputObjectZodSchema = z.lazy(__makeSchema_ArticleTagCountAggregateInput_schema); - - -// File: ArticleTagMinAggregateInput.schema.ts -const __makeSchema_ArticleTagMinAggregateInput_schema = () => z.object({ - name: z.literal(true).optional() -}).strict(); -export const ArticleTagMinAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_ArticleTagMinAggregateInput_schema) as unknown as z.ZodType; -export const ArticleTagMinAggregateInputObjectZodSchema = z.lazy(__makeSchema_ArticleTagMinAggregateInput_schema); - - -// File: ArticleTagMaxAggregateInput.schema.ts -const __makeSchema_ArticleTagMaxAggregateInput_schema = () => z.object({ - name: z.literal(true).optional() -}).strict(); -export const ArticleTagMaxAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_ArticleTagMaxAggregateInput_schema) as unknown as z.ZodType; -export const ArticleTagMaxAggregateInputObjectZodSchema = z.lazy(__makeSchema_ArticleTagMaxAggregateInput_schema); - - -// File: ArticleTagLinkCountAggregateInput.schema.ts -const __makeSchema_ArticleTagLinkCountAggregateInput_schema = () => z.object({ - articleId: z.literal(true).optional(), - tagName: z.literal(true).optional(), - _all: z.literal(true).optional() -}).strict(); -export const ArticleTagLinkCountAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_ArticleTagLinkCountAggregateInput_schema) as unknown as z.ZodType; -export const ArticleTagLinkCountAggregateInputObjectZodSchema = z.lazy(__makeSchema_ArticleTagLinkCountAggregateInput_schema); - - -// File: ArticleTagLinkMinAggregateInput.schema.ts -const __makeSchema_ArticleTagLinkMinAggregateInput_schema = () => z.object({ - articleId: z.literal(true).optional(), - tagName: z.literal(true).optional() -}).strict(); -export const ArticleTagLinkMinAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_ArticleTagLinkMinAggregateInput_schema) as unknown as z.ZodType; -export const ArticleTagLinkMinAggregateInputObjectZodSchema = z.lazy(__makeSchema_ArticleTagLinkMinAggregateInput_schema); - - -// File: ArticleTagLinkMaxAggregateInput.schema.ts -const __makeSchema_ArticleTagLinkMaxAggregateInput_schema = () => z.object({ - articleId: z.literal(true).optional(), - tagName: z.literal(true).optional() -}).strict(); -export const ArticleTagLinkMaxAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_ArticleTagLinkMaxAggregateInput_schema) as unknown as z.ZodType; -export const ArticleTagLinkMaxAggregateInputObjectZodSchema = z.lazy(__makeSchema_ArticleTagLinkMaxAggregateInput_schema); - - -// File: TaskCountAggregateInput.schema.ts -const __makeSchema_TaskCountAggregateInput_schema = () => z.object({ - id: z.literal(true).optional(), - type: z.literal(true).optional(), - status: z.literal(true).optional(), - payload: z.literal(true).optional(), - createdAt: z.literal(true).optional(), - scheduledAt: z.literal(true).optional(), - processedAt: z.literal(true).optional(), - recurringTaskId: z.literal(true).optional(), - _all: z.literal(true).optional() -}).strict(); -export const TaskCountAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_TaskCountAggregateInput_schema) as unknown as z.ZodType; -export const TaskCountAggregateInputObjectZodSchema = z.lazy(__makeSchema_TaskCountAggregateInput_schema); - - -// File: TaskMinAggregateInput.schema.ts -const __makeSchema_TaskMinAggregateInput_schema = () => z.object({ - id: z.literal(true).optional(), - type: z.literal(true).optional(), - status: z.literal(true).optional(), - createdAt: z.literal(true).optional(), - scheduledAt: z.literal(true).optional(), - processedAt: z.literal(true).optional(), - recurringTaskId: z.literal(true).optional() -}).strict(); -export const TaskMinAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_TaskMinAggregateInput_schema) as unknown as z.ZodType; -export const TaskMinAggregateInputObjectZodSchema = z.lazy(__makeSchema_TaskMinAggregateInput_schema); - - -// File: TaskMaxAggregateInput.schema.ts -const __makeSchema_TaskMaxAggregateInput_schema = () => z.object({ - id: z.literal(true).optional(), - type: z.literal(true).optional(), - status: z.literal(true).optional(), - createdAt: z.literal(true).optional(), - scheduledAt: z.literal(true).optional(), - processedAt: z.literal(true).optional(), - recurringTaskId: z.literal(true).optional() -}).strict(); -export const TaskMaxAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_TaskMaxAggregateInput_schema) as unknown as z.ZodType; -export const TaskMaxAggregateInputObjectZodSchema = z.lazy(__makeSchema_TaskMaxAggregateInput_schema); - - -// File: RecurringTaskCountAggregateInput.schema.ts -const __makeSchema_RecurringTaskCountAggregateInput_schema = () => z.object({ - id: z.literal(true).optional(), - type: z.literal(true).optional(), - payload: z.literal(true).optional(), - createdAt: z.literal(true).optional(), - schedule: z.literal(true).optional(), - lastRunAt: z.literal(true).optional(), - nextRunAt: z.literal(true).optional(), - _all: z.literal(true).optional() -}).strict(); -export const RecurringTaskCountAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_RecurringTaskCountAggregateInput_schema) as unknown as z.ZodType; -export const RecurringTaskCountAggregateInputObjectZodSchema = z.lazy(__makeSchema_RecurringTaskCountAggregateInput_schema); - - -// File: RecurringTaskMinAggregateInput.schema.ts -const __makeSchema_RecurringTaskMinAggregateInput_schema = () => z.object({ - id: z.literal(true).optional(), - type: z.literal(true).optional(), - createdAt: z.literal(true).optional(), - schedule: z.literal(true).optional(), - lastRunAt: z.literal(true).optional(), - nextRunAt: z.literal(true).optional() -}).strict(); -export const RecurringTaskMinAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_RecurringTaskMinAggregateInput_schema) as unknown as z.ZodType; -export const RecurringTaskMinAggregateInputObjectZodSchema = z.lazy(__makeSchema_RecurringTaskMinAggregateInput_schema); - - -// File: RecurringTaskMaxAggregateInput.schema.ts -const __makeSchema_RecurringTaskMaxAggregateInput_schema = () => z.object({ - id: z.literal(true).optional(), - type: z.literal(true).optional(), - createdAt: z.literal(true).optional(), - schedule: z.literal(true).optional(), - lastRunAt: z.literal(true).optional(), - nextRunAt: z.literal(true).optional() -}).strict(); -export const RecurringTaskMaxAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_RecurringTaskMaxAggregateInput_schema) as unknown as z.ZodType; -export const RecurringTaskMaxAggregateInputObjectZodSchema = z.lazy(__makeSchema_RecurringTaskMaxAggregateInput_schema); - - -// File: FeedbackFormCountAggregateInput.schema.ts -const __makeSchema_FeedbackFormCountAggregateInput_schema = () => z.object({ - id: z.literal(true).optional(), - publicResultsToken: z.literal(true).optional(), - createdAt: z.literal(true).optional(), - updatedAt: z.literal(true).optional(), - answerDeadline: z.literal(true).optional(), - eventId: z.literal(true).optional(), - _all: z.literal(true).optional() -}).strict(); -export const FeedbackFormCountAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackFormCountAggregateInput_schema) as unknown as z.ZodType; -export const FeedbackFormCountAggregateInputObjectZodSchema = z.lazy(__makeSchema_FeedbackFormCountAggregateInput_schema); - - -// File: FeedbackFormMinAggregateInput.schema.ts -const __makeSchema_FeedbackFormMinAggregateInput_schema = () => z.object({ - id: z.literal(true).optional(), - publicResultsToken: z.literal(true).optional(), - createdAt: z.literal(true).optional(), - updatedAt: z.literal(true).optional(), - answerDeadline: z.literal(true).optional(), - eventId: z.literal(true).optional() -}).strict(); -export const FeedbackFormMinAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackFormMinAggregateInput_schema) as unknown as z.ZodType; -export const FeedbackFormMinAggregateInputObjectZodSchema = z.lazy(__makeSchema_FeedbackFormMinAggregateInput_schema); - - -// File: FeedbackFormMaxAggregateInput.schema.ts -const __makeSchema_FeedbackFormMaxAggregateInput_schema = () => z.object({ - id: z.literal(true).optional(), - publicResultsToken: z.literal(true).optional(), - createdAt: z.literal(true).optional(), - updatedAt: z.literal(true).optional(), - answerDeadline: z.literal(true).optional(), - eventId: z.literal(true).optional() -}).strict(); -export const FeedbackFormMaxAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackFormMaxAggregateInput_schema) as unknown as z.ZodType; -export const FeedbackFormMaxAggregateInputObjectZodSchema = z.lazy(__makeSchema_FeedbackFormMaxAggregateInput_schema); - - -// File: FeedbackQuestionCountAggregateInput.schema.ts -const __makeSchema_FeedbackQuestionCountAggregateInput_schema = () => z.object({ - id: z.literal(true).optional(), - label: z.literal(true).optional(), - required: z.literal(true).optional(), - showInPublicResults: z.literal(true).optional(), - type: z.literal(true).optional(), - order: z.literal(true).optional(), - createdAt: z.literal(true).optional(), - updatedAt: z.literal(true).optional(), - feedbackFormId: z.literal(true).optional(), - _all: z.literal(true).optional() -}).strict(); -export const FeedbackQuestionCountAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackQuestionCountAggregateInput_schema) as unknown as z.ZodType; -export const FeedbackQuestionCountAggregateInputObjectZodSchema = z.lazy(__makeSchema_FeedbackQuestionCountAggregateInput_schema); - - -// File: FeedbackQuestionAvgAggregateInput.schema.ts -const __makeSchema_FeedbackQuestionAvgAggregateInput_schema = () => z.object({ - order: z.literal(true).optional() -}).strict(); -export const FeedbackQuestionAvgAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackQuestionAvgAggregateInput_schema) as unknown as z.ZodType; -export const FeedbackQuestionAvgAggregateInputObjectZodSchema = z.lazy(__makeSchema_FeedbackQuestionAvgAggregateInput_schema); - - -// File: FeedbackQuestionSumAggregateInput.schema.ts -const __makeSchema_FeedbackQuestionSumAggregateInput_schema = () => z.object({ - order: z.literal(true).optional() -}).strict(); -export const FeedbackQuestionSumAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackQuestionSumAggregateInput_schema) as unknown as z.ZodType; -export const FeedbackQuestionSumAggregateInputObjectZodSchema = z.lazy(__makeSchema_FeedbackQuestionSumAggregateInput_schema); - - -// File: FeedbackQuestionMinAggregateInput.schema.ts -const __makeSchema_FeedbackQuestionMinAggregateInput_schema = () => z.object({ - id: z.literal(true).optional(), - label: z.literal(true).optional(), - required: z.literal(true).optional(), - showInPublicResults: z.literal(true).optional(), - type: z.literal(true).optional(), - order: z.literal(true).optional(), - createdAt: z.literal(true).optional(), - updatedAt: z.literal(true).optional(), - feedbackFormId: z.literal(true).optional() -}).strict(); -export const FeedbackQuestionMinAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackQuestionMinAggregateInput_schema) as unknown as z.ZodType; -export const FeedbackQuestionMinAggregateInputObjectZodSchema = z.lazy(__makeSchema_FeedbackQuestionMinAggregateInput_schema); - - -// File: FeedbackQuestionMaxAggregateInput.schema.ts -const __makeSchema_FeedbackQuestionMaxAggregateInput_schema = () => z.object({ - id: z.literal(true).optional(), - label: z.literal(true).optional(), - required: z.literal(true).optional(), - showInPublicResults: z.literal(true).optional(), - type: z.literal(true).optional(), - order: z.literal(true).optional(), - createdAt: z.literal(true).optional(), - updatedAt: z.literal(true).optional(), - feedbackFormId: z.literal(true).optional() -}).strict(); -export const FeedbackQuestionMaxAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackQuestionMaxAggregateInput_schema) as unknown as z.ZodType; -export const FeedbackQuestionMaxAggregateInputObjectZodSchema = z.lazy(__makeSchema_FeedbackQuestionMaxAggregateInput_schema); - - -// File: FeedbackQuestionOptionCountAggregateInput.schema.ts -const __makeSchema_FeedbackQuestionOptionCountAggregateInput_schema = () => z.object({ - id: z.literal(true).optional(), - name: z.literal(true).optional(), - questionId: z.literal(true).optional(), - _all: z.literal(true).optional() -}).strict(); -export const FeedbackQuestionOptionCountAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackQuestionOptionCountAggregateInput_schema) as unknown as z.ZodType; -export const FeedbackQuestionOptionCountAggregateInputObjectZodSchema = z.lazy(__makeSchema_FeedbackQuestionOptionCountAggregateInput_schema); - - -// File: FeedbackQuestionOptionMinAggregateInput.schema.ts -const __makeSchema_FeedbackQuestionOptionMinAggregateInput_schema = () => z.object({ - id: z.literal(true).optional(), - name: z.literal(true).optional(), - questionId: z.literal(true).optional() -}).strict(); -export const FeedbackQuestionOptionMinAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackQuestionOptionMinAggregateInput_schema) as unknown as z.ZodType; -export const FeedbackQuestionOptionMinAggregateInputObjectZodSchema = z.lazy(__makeSchema_FeedbackQuestionOptionMinAggregateInput_schema); - - -// File: FeedbackQuestionOptionMaxAggregateInput.schema.ts -const __makeSchema_FeedbackQuestionOptionMaxAggregateInput_schema = () => z.object({ - id: z.literal(true).optional(), - name: z.literal(true).optional(), - questionId: z.literal(true).optional() -}).strict(); -export const FeedbackQuestionOptionMaxAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackQuestionOptionMaxAggregateInput_schema) as unknown as z.ZodType; -export const FeedbackQuestionOptionMaxAggregateInputObjectZodSchema = z.lazy(__makeSchema_FeedbackQuestionOptionMaxAggregateInput_schema); - - -// File: FeedbackQuestionAnswerCountAggregateInput.schema.ts -const __makeSchema_FeedbackQuestionAnswerCountAggregateInput_schema = () => z.object({ - id: z.literal(true).optional(), - value: z.literal(true).optional(), - questionId: z.literal(true).optional(), - formAnswerId: z.literal(true).optional(), - _all: z.literal(true).optional() -}).strict(); -export const FeedbackQuestionAnswerCountAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackQuestionAnswerCountAggregateInput_schema) as unknown as z.ZodType; -export const FeedbackQuestionAnswerCountAggregateInputObjectZodSchema = z.lazy(__makeSchema_FeedbackQuestionAnswerCountAggregateInput_schema); - - -// File: FeedbackQuestionAnswerMinAggregateInput.schema.ts -const __makeSchema_FeedbackQuestionAnswerMinAggregateInput_schema = () => z.object({ - id: z.literal(true).optional(), - questionId: z.literal(true).optional(), - formAnswerId: z.literal(true).optional() -}).strict(); -export const FeedbackQuestionAnswerMinAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackQuestionAnswerMinAggregateInput_schema) as unknown as z.ZodType; -export const FeedbackQuestionAnswerMinAggregateInputObjectZodSchema = z.lazy(__makeSchema_FeedbackQuestionAnswerMinAggregateInput_schema); - - -// File: FeedbackQuestionAnswerMaxAggregateInput.schema.ts -const __makeSchema_FeedbackQuestionAnswerMaxAggregateInput_schema = () => z.object({ - id: z.literal(true).optional(), - questionId: z.literal(true).optional(), - formAnswerId: z.literal(true).optional() -}).strict(); -export const FeedbackQuestionAnswerMaxAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackQuestionAnswerMaxAggregateInput_schema) as unknown as z.ZodType; -export const FeedbackQuestionAnswerMaxAggregateInputObjectZodSchema = z.lazy(__makeSchema_FeedbackQuestionAnswerMaxAggregateInput_schema); - - -// File: FeedbackQuestionAnswerOptionLinkCountAggregateInput.schema.ts -const __makeSchema_FeedbackQuestionAnswerOptionLinkCountAggregateInput_schema = () => z.object({ - feedbackQuestionOptionId: z.literal(true).optional(), - feedbackQuestionAnswerId: z.literal(true).optional(), - _all: z.literal(true).optional() -}).strict(); -export const FeedbackQuestionAnswerOptionLinkCountAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackQuestionAnswerOptionLinkCountAggregateInput_schema) as unknown as z.ZodType; -export const FeedbackQuestionAnswerOptionLinkCountAggregateInputObjectZodSchema = z.lazy(__makeSchema_FeedbackQuestionAnswerOptionLinkCountAggregateInput_schema); - - -// File: FeedbackQuestionAnswerOptionLinkMinAggregateInput.schema.ts -const __makeSchema_FeedbackQuestionAnswerOptionLinkMinAggregateInput_schema = () => z.object({ - feedbackQuestionOptionId: z.literal(true).optional(), - feedbackQuestionAnswerId: z.literal(true).optional() -}).strict(); -export const FeedbackQuestionAnswerOptionLinkMinAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackQuestionAnswerOptionLinkMinAggregateInput_schema) as unknown as z.ZodType; -export const FeedbackQuestionAnswerOptionLinkMinAggregateInputObjectZodSchema = z.lazy(__makeSchema_FeedbackQuestionAnswerOptionLinkMinAggregateInput_schema); - - -// File: FeedbackQuestionAnswerOptionLinkMaxAggregateInput.schema.ts -const __makeSchema_FeedbackQuestionAnswerOptionLinkMaxAggregateInput_schema = () => z.object({ - feedbackQuestionOptionId: z.literal(true).optional(), - feedbackQuestionAnswerId: z.literal(true).optional() -}).strict(); -export const FeedbackQuestionAnswerOptionLinkMaxAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackQuestionAnswerOptionLinkMaxAggregateInput_schema) as unknown as z.ZodType; -export const FeedbackQuestionAnswerOptionLinkMaxAggregateInputObjectZodSchema = z.lazy(__makeSchema_FeedbackQuestionAnswerOptionLinkMaxAggregateInput_schema); - - -// File: FeedbackFormAnswerCountAggregateInput.schema.ts -const __makeSchema_FeedbackFormAnswerCountAggregateInput_schema = () => z.object({ - id: z.literal(true).optional(), - createdAt: z.literal(true).optional(), - updatedAt: z.literal(true).optional(), - feedbackFormId: z.literal(true).optional(), - attendeeId: z.literal(true).optional(), - _all: z.literal(true).optional() -}).strict(); -export const FeedbackFormAnswerCountAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackFormAnswerCountAggregateInput_schema) as unknown as z.ZodType; -export const FeedbackFormAnswerCountAggregateInputObjectZodSchema = z.lazy(__makeSchema_FeedbackFormAnswerCountAggregateInput_schema); - - -// File: FeedbackFormAnswerMinAggregateInput.schema.ts -const __makeSchema_FeedbackFormAnswerMinAggregateInput_schema = () => z.object({ - id: z.literal(true).optional(), - createdAt: z.literal(true).optional(), - updatedAt: z.literal(true).optional(), - feedbackFormId: z.literal(true).optional(), - attendeeId: z.literal(true).optional() -}).strict(); -export const FeedbackFormAnswerMinAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackFormAnswerMinAggregateInput_schema) as unknown as z.ZodType; -export const FeedbackFormAnswerMinAggregateInputObjectZodSchema = z.lazy(__makeSchema_FeedbackFormAnswerMinAggregateInput_schema); - - -// File: FeedbackFormAnswerMaxAggregateInput.schema.ts -const __makeSchema_FeedbackFormAnswerMaxAggregateInput_schema = () => z.object({ - id: z.literal(true).optional(), - createdAt: z.literal(true).optional(), - updatedAt: z.literal(true).optional(), - feedbackFormId: z.literal(true).optional(), - attendeeId: z.literal(true).optional() -}).strict(); -export const FeedbackFormAnswerMaxAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackFormAnswerMaxAggregateInput_schema) as unknown as z.ZodType; -export const FeedbackFormAnswerMaxAggregateInputObjectZodSchema = z.lazy(__makeSchema_FeedbackFormAnswerMaxAggregateInput_schema); - - -// File: AuditLogCountAggregateInput.schema.ts -const __makeSchema_AuditLogCountAggregateInput_schema = () => z.object({ - id: z.literal(true).optional(), - tableName: z.literal(true).optional(), - rowId: z.literal(true).optional(), - createdAt: z.literal(true).optional(), - operation: z.literal(true).optional(), - rowData: z.literal(true).optional(), - transactionId: z.literal(true).optional(), - userId: z.literal(true).optional(), - _all: z.literal(true).optional() -}).strict(); -export const AuditLogCountAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_AuditLogCountAggregateInput_schema) as unknown as z.ZodType; -export const AuditLogCountAggregateInputObjectZodSchema = z.lazy(__makeSchema_AuditLogCountAggregateInput_schema); - - -// File: AuditLogAvgAggregateInput.schema.ts -const __makeSchema_AuditLogAvgAggregateInput_schema = () => z.object({ - transactionId: z.literal(true).optional() -}).strict(); -export const AuditLogAvgAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_AuditLogAvgAggregateInput_schema) as unknown as z.ZodType; -export const AuditLogAvgAggregateInputObjectZodSchema = z.lazy(__makeSchema_AuditLogAvgAggregateInput_schema); - - -// File: AuditLogSumAggregateInput.schema.ts -const __makeSchema_AuditLogSumAggregateInput_schema = () => z.object({ - transactionId: z.literal(true).optional() -}).strict(); -export const AuditLogSumAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_AuditLogSumAggregateInput_schema) as unknown as z.ZodType; -export const AuditLogSumAggregateInputObjectZodSchema = z.lazy(__makeSchema_AuditLogSumAggregateInput_schema); - - -// File: AuditLogMinAggregateInput.schema.ts -const __makeSchema_AuditLogMinAggregateInput_schema = () => z.object({ - id: z.literal(true).optional(), - tableName: z.literal(true).optional(), - rowId: z.literal(true).optional(), - createdAt: z.literal(true).optional(), - operation: z.literal(true).optional(), - transactionId: z.literal(true).optional(), - userId: z.literal(true).optional() -}).strict(); -export const AuditLogMinAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_AuditLogMinAggregateInput_schema) as unknown as z.ZodType; -export const AuditLogMinAggregateInputObjectZodSchema = z.lazy(__makeSchema_AuditLogMinAggregateInput_schema); - - -// File: AuditLogMaxAggregateInput.schema.ts -const __makeSchema_AuditLogMaxAggregateInput_schema = () => z.object({ - id: z.literal(true).optional(), - tableName: z.literal(true).optional(), - rowId: z.literal(true).optional(), - createdAt: z.literal(true).optional(), - operation: z.literal(true).optional(), - transactionId: z.literal(true).optional(), - userId: z.literal(true).optional() -}).strict(); -export const AuditLogMaxAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_AuditLogMaxAggregateInput_schema) as unknown as z.ZodType; -export const AuditLogMaxAggregateInputObjectZodSchema = z.lazy(__makeSchema_AuditLogMaxAggregateInput_schema); - - -// File: DeregisterReasonCountAggregateInput.schema.ts -const __makeSchema_DeregisterReasonCountAggregateInput_schema = () => z.object({ - id: z.literal(true).optional(), - createdAt: z.literal(true).optional(), - registeredAt: z.literal(true).optional(), - type: z.literal(true).optional(), - details: z.literal(true).optional(), - userGrade: z.literal(true).optional(), - userId: z.literal(true).optional(), - eventId: z.literal(true).optional(), - _all: z.literal(true).optional() -}).strict(); -export const DeregisterReasonCountAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_DeregisterReasonCountAggregateInput_schema) as unknown as z.ZodType; -export const DeregisterReasonCountAggregateInputObjectZodSchema = z.lazy(__makeSchema_DeregisterReasonCountAggregateInput_schema); - - -// File: DeregisterReasonAvgAggregateInput.schema.ts -const __makeSchema_DeregisterReasonAvgAggregateInput_schema = () => z.object({ - userGrade: z.literal(true).optional() -}).strict(); -export const DeregisterReasonAvgAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_DeregisterReasonAvgAggregateInput_schema) as unknown as z.ZodType; -export const DeregisterReasonAvgAggregateInputObjectZodSchema = z.lazy(__makeSchema_DeregisterReasonAvgAggregateInput_schema); - - -// File: DeregisterReasonSumAggregateInput.schema.ts -const __makeSchema_DeregisterReasonSumAggregateInput_schema = () => z.object({ - userGrade: z.literal(true).optional() -}).strict(); -export const DeregisterReasonSumAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_DeregisterReasonSumAggregateInput_schema) as unknown as z.ZodType; -export const DeregisterReasonSumAggregateInputObjectZodSchema = z.lazy(__makeSchema_DeregisterReasonSumAggregateInput_schema); - - -// File: DeregisterReasonMinAggregateInput.schema.ts -const __makeSchema_DeregisterReasonMinAggregateInput_schema = () => z.object({ - id: z.literal(true).optional(), - createdAt: z.literal(true).optional(), - registeredAt: z.literal(true).optional(), - type: z.literal(true).optional(), - details: z.literal(true).optional(), - userGrade: z.literal(true).optional(), - userId: z.literal(true).optional(), - eventId: z.literal(true).optional() -}).strict(); -export const DeregisterReasonMinAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_DeregisterReasonMinAggregateInput_schema) as unknown as z.ZodType; -export const DeregisterReasonMinAggregateInputObjectZodSchema = z.lazy(__makeSchema_DeregisterReasonMinAggregateInput_schema); - - -// File: DeregisterReasonMaxAggregateInput.schema.ts -const __makeSchema_DeregisterReasonMaxAggregateInput_schema = () => z.object({ - id: z.literal(true).optional(), - createdAt: z.literal(true).optional(), - registeredAt: z.literal(true).optional(), - type: z.literal(true).optional(), - details: z.literal(true).optional(), - userGrade: z.literal(true).optional(), - userId: z.literal(true).optional(), - eventId: z.literal(true).optional() -}).strict(); -export const DeregisterReasonMaxAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_DeregisterReasonMaxAggregateInput_schema) as unknown as z.ZodType; -export const DeregisterReasonMaxAggregateInputObjectZodSchema = z.lazy(__makeSchema_DeregisterReasonMaxAggregateInput_schema); - - -// File: NotificationRecipientCountAggregateInput.schema.ts -const __makeSchema_NotificationRecipientCountAggregateInput_schema = () => z.object({ - id: z.literal(true).optional(), - readAt: z.literal(true).optional(), - notificationId: z.literal(true).optional(), - userId: z.literal(true).optional(), - _all: z.literal(true).optional() -}).strict(); -export const NotificationRecipientCountAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_NotificationRecipientCountAggregateInput_schema) as unknown as z.ZodType; -export const NotificationRecipientCountAggregateInputObjectZodSchema = z.lazy(__makeSchema_NotificationRecipientCountAggregateInput_schema); - - -// File: NotificationRecipientMinAggregateInput.schema.ts -const __makeSchema_NotificationRecipientMinAggregateInput_schema = () => z.object({ - id: z.literal(true).optional(), - readAt: z.literal(true).optional(), - notificationId: z.literal(true).optional(), - userId: z.literal(true).optional() -}).strict(); -export const NotificationRecipientMinAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_NotificationRecipientMinAggregateInput_schema) as unknown as z.ZodType; -export const NotificationRecipientMinAggregateInputObjectZodSchema = z.lazy(__makeSchema_NotificationRecipientMinAggregateInput_schema); - - -// File: NotificationRecipientMaxAggregateInput.schema.ts -const __makeSchema_NotificationRecipientMaxAggregateInput_schema = () => z.object({ - id: z.literal(true).optional(), - readAt: z.literal(true).optional(), - notificationId: z.literal(true).optional(), - userId: z.literal(true).optional() -}).strict(); -export const NotificationRecipientMaxAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_NotificationRecipientMaxAggregateInput_schema) as unknown as z.ZodType; -export const NotificationRecipientMaxAggregateInputObjectZodSchema = z.lazy(__makeSchema_NotificationRecipientMaxAggregateInput_schema); - - -// File: NotificationCountAggregateInput.schema.ts -const __makeSchema_NotificationCountAggregateInput_schema = () => z.object({ - id: z.literal(true).optional(), - createdAt: z.literal(true).optional(), - updatedAt: z.literal(true).optional(), - title: z.literal(true).optional(), - shortDescription: z.literal(true).optional(), - content: z.literal(true).optional(), - type: z.literal(true).optional(), - payload: z.literal(true).optional(), - payloadType: z.literal(true).optional(), - actorGroupId: z.literal(true).optional(), - createdById: z.literal(true).optional(), - lastUpdatedById: z.literal(true).optional(), - taskId: z.literal(true).optional(), - _all: z.literal(true).optional() -}).strict(); -export const NotificationCountAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_NotificationCountAggregateInput_schema) as unknown as z.ZodType; -export const NotificationCountAggregateInputObjectZodSchema = z.lazy(__makeSchema_NotificationCountAggregateInput_schema); - - -// File: NotificationMinAggregateInput.schema.ts -const __makeSchema_NotificationMinAggregateInput_schema = () => z.object({ - id: z.literal(true).optional(), - createdAt: z.literal(true).optional(), - updatedAt: z.literal(true).optional(), - title: z.literal(true).optional(), - shortDescription: z.literal(true).optional(), - content: z.literal(true).optional(), - type: z.literal(true).optional(), - payload: z.literal(true).optional(), - payloadType: z.literal(true).optional(), - actorGroupId: z.literal(true).optional(), - createdById: z.literal(true).optional(), - lastUpdatedById: z.literal(true).optional(), - taskId: z.literal(true).optional() -}).strict(); -export const NotificationMinAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_NotificationMinAggregateInput_schema) as unknown as z.ZodType; -export const NotificationMinAggregateInputObjectZodSchema = z.lazy(__makeSchema_NotificationMinAggregateInput_schema); - - -// File: NotificationMaxAggregateInput.schema.ts -const __makeSchema_NotificationMaxAggregateInput_schema = () => z.object({ - id: z.literal(true).optional(), - createdAt: z.literal(true).optional(), - updatedAt: z.literal(true).optional(), - title: z.literal(true).optional(), - shortDescription: z.literal(true).optional(), - content: z.literal(true).optional(), - type: z.literal(true).optional(), - payload: z.literal(true).optional(), - payloadType: z.literal(true).optional(), - actorGroupId: z.literal(true).optional(), - createdById: z.literal(true).optional(), - lastUpdatedById: z.literal(true).optional(), - taskId: z.literal(true).optional() -}).strict(); -export const NotificationMaxAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_NotificationMaxAggregateInput_schema) as unknown as z.ZodType; -export const NotificationMaxAggregateInputObjectZodSchema = z.lazy(__makeSchema_NotificationMaxAggregateInput_schema); - - -// File: ContestCountAggregateInput.schema.ts -const __makeSchema_ContestCountAggregateInput_schema = () => z.object({ - id: z.literal(true).optional(), - name: z.literal(true).optional(), - description: z.literal(true).optional(), - startDate: z.literal(true).optional(), - resultType: z.literal(true).optional(), - resultOrder: z.literal(true).optional(), - winnerContestantId: z.literal(true).optional(), - _all: z.literal(true).optional() -}).strict(); -export const ContestCountAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_ContestCountAggregateInput_schema) as unknown as z.ZodType; -export const ContestCountAggregateInputObjectZodSchema = z.lazy(__makeSchema_ContestCountAggregateInput_schema); - - -// File: ContestMinAggregateInput.schema.ts -const __makeSchema_ContestMinAggregateInput_schema = () => z.object({ - id: z.literal(true).optional(), - name: z.literal(true).optional(), - description: z.literal(true).optional(), - startDate: z.literal(true).optional(), - resultType: z.literal(true).optional(), - resultOrder: z.literal(true).optional(), - winnerContestantId: z.literal(true).optional() -}).strict(); -export const ContestMinAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_ContestMinAggregateInput_schema) as unknown as z.ZodType; -export const ContestMinAggregateInputObjectZodSchema = z.lazy(__makeSchema_ContestMinAggregateInput_schema); - - -// File: ContestMaxAggregateInput.schema.ts -const __makeSchema_ContestMaxAggregateInput_schema = () => z.object({ - id: z.literal(true).optional(), - name: z.literal(true).optional(), - description: z.literal(true).optional(), - startDate: z.literal(true).optional(), - resultType: z.literal(true).optional(), - resultOrder: z.literal(true).optional(), - winnerContestantId: z.literal(true).optional() -}).strict(); -export const ContestMaxAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_ContestMaxAggregateInput_schema) as unknown as z.ZodType; -export const ContestMaxAggregateInputObjectZodSchema = z.lazy(__makeSchema_ContestMaxAggregateInput_schema); - - -// File: FadderukeCountAggregateInput.schema.ts -const __makeSchema_FadderukeCountAggregateInput_schema = () => z.object({ - id: z.literal(true).optional(), - year: z.literal(true).optional(), - eventId: z.literal(true).optional(), - createdAt: z.literal(true).optional(), - updatedAt: z.literal(true).optional(), - _all: z.literal(true).optional() -}).strict(); -export const FadderukeCountAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FadderukeCountAggregateInput_schema) as unknown as z.ZodType; -export const FadderukeCountAggregateInputObjectZodSchema = z.lazy(__makeSchema_FadderukeCountAggregateInput_schema); - - -// File: FadderukeAvgAggregateInput.schema.ts -const __makeSchema_FadderukeAvgAggregateInput_schema = () => z.object({ - year: z.literal(true).optional() -}).strict(); -export const FadderukeAvgAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FadderukeAvgAggregateInput_schema) as unknown as z.ZodType; -export const FadderukeAvgAggregateInputObjectZodSchema = z.lazy(__makeSchema_FadderukeAvgAggregateInput_schema); - - -// File: FadderukeSumAggregateInput.schema.ts -const __makeSchema_FadderukeSumAggregateInput_schema = () => z.object({ - year: z.literal(true).optional() -}).strict(); -export const FadderukeSumAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FadderukeSumAggregateInput_schema) as unknown as z.ZodType; -export const FadderukeSumAggregateInputObjectZodSchema = z.lazy(__makeSchema_FadderukeSumAggregateInput_schema); - - -// File: FadderukeMinAggregateInput.schema.ts -const __makeSchema_FadderukeMinAggregateInput_schema = () => z.object({ - id: z.literal(true).optional(), - year: z.literal(true).optional(), - eventId: z.literal(true).optional(), - createdAt: z.literal(true).optional(), - updatedAt: z.literal(true).optional() -}).strict(); -export const FadderukeMinAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FadderukeMinAggregateInput_schema) as unknown as z.ZodType; -export const FadderukeMinAggregateInputObjectZodSchema = z.lazy(__makeSchema_FadderukeMinAggregateInput_schema); - - -// File: FadderukeMaxAggregateInput.schema.ts -const __makeSchema_FadderukeMaxAggregateInput_schema = () => z.object({ - id: z.literal(true).optional(), - year: z.literal(true).optional(), - eventId: z.literal(true).optional(), - createdAt: z.literal(true).optional(), - updatedAt: z.literal(true).optional() -}).strict(); -export const FadderukeMaxAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FadderukeMaxAggregateInput_schema) as unknown as z.ZodType; -export const FadderukeMaxAggregateInputObjectZodSchema = z.lazy(__makeSchema_FadderukeMaxAggregateInput_schema); - - -// File: ContestantCountAggregateInput.schema.ts -const __makeSchema_ContestantCountAggregateInput_schema = () => z.object({ - id: z.literal(true).optional(), - resultValue: z.literal(true).optional(), - contestId: z.literal(true).optional(), - userId: z.literal(true).optional(), - _all: z.literal(true).optional() -}).strict(); -export const ContestantCountAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_ContestantCountAggregateInput_schema) as unknown as z.ZodType; -export const ContestantCountAggregateInputObjectZodSchema = z.lazy(__makeSchema_ContestantCountAggregateInput_schema); - - -// File: ContestantAvgAggregateInput.schema.ts -const __makeSchema_ContestantAvgAggregateInput_schema = () => z.object({ - resultValue: z.literal(true).optional() -}).strict(); -export const ContestantAvgAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_ContestantAvgAggregateInput_schema) as unknown as z.ZodType; -export const ContestantAvgAggregateInputObjectZodSchema = z.lazy(__makeSchema_ContestantAvgAggregateInput_schema); - - -// File: ContestantSumAggregateInput.schema.ts -const __makeSchema_ContestantSumAggregateInput_schema = () => z.object({ - resultValue: z.literal(true).optional() -}).strict(); -export const ContestantSumAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_ContestantSumAggregateInput_schema) as unknown as z.ZodType; -export const ContestantSumAggregateInputObjectZodSchema = z.lazy(__makeSchema_ContestantSumAggregateInput_schema); - - -// File: ContestantMinAggregateInput.schema.ts -const __makeSchema_ContestantMinAggregateInput_schema = () => z.object({ - id: z.literal(true).optional(), - resultValue: z.literal(true).optional(), - contestId: z.literal(true).optional(), - userId: z.literal(true).optional() -}).strict(); -export const ContestantMinAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_ContestantMinAggregateInput_schema) as unknown as z.ZodType; -export const ContestantMinAggregateInputObjectZodSchema = z.lazy(__makeSchema_ContestantMinAggregateInput_schema); - - -// File: ContestantMaxAggregateInput.schema.ts -const __makeSchema_ContestantMaxAggregateInput_schema = () => z.object({ - id: z.literal(true).optional(), - resultValue: z.literal(true).optional(), - contestId: z.literal(true).optional(), - userId: z.literal(true).optional() -}).strict(); -export const ContestantMaxAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_ContestantMaxAggregateInput_schema) as unknown as z.ZodType; -export const ContestantMaxAggregateInputObjectZodSchema = z.lazy(__makeSchema_ContestantMaxAggregateInput_schema); - - -// File: ContestTeamCountAggregateInput.schema.ts -const __makeSchema_ContestTeamCountAggregateInput_schema = () => z.object({ - id: z.literal(true).optional(), - name: z.literal(true).optional(), - contestantId: z.literal(true).optional(), - _all: z.literal(true).optional() -}).strict(); -export const ContestTeamCountAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_ContestTeamCountAggregateInput_schema) as unknown as z.ZodType; -export const ContestTeamCountAggregateInputObjectZodSchema = z.lazy(__makeSchema_ContestTeamCountAggregateInput_schema); - - -// File: ContestTeamMinAggregateInput.schema.ts -const __makeSchema_ContestTeamMinAggregateInput_schema = () => z.object({ - id: z.literal(true).optional(), - name: z.literal(true).optional(), - contestantId: z.literal(true).optional() -}).strict(); -export const ContestTeamMinAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_ContestTeamMinAggregateInput_schema) as unknown as z.ZodType; -export const ContestTeamMinAggregateInputObjectZodSchema = z.lazy(__makeSchema_ContestTeamMinAggregateInput_schema); - - -// File: ContestTeamMaxAggregateInput.schema.ts -const __makeSchema_ContestTeamMaxAggregateInput_schema = () => z.object({ - id: z.literal(true).optional(), - name: z.literal(true).optional(), - contestantId: z.literal(true).optional() -}).strict(); -export const ContestTeamMaxAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_ContestTeamMaxAggregateInput_schema) as unknown as z.ZodType; -export const ContestTeamMaxAggregateInputObjectZodSchema = z.lazy(__makeSchema_ContestTeamMaxAggregateInput_schema); - - -// File: UserCountOutputTypeSelect.schema.ts -const __makeSchema_UserCountOutputTypeSelect_schema = () => z.object({ - attendee: z.union([z.boolean(), UserCountOutputTypeCountAttendeeArgsObjectSchema]).optional(), - personalMark: z.union([z.boolean(), UserCountOutputTypeCountPersonalMarkArgsObjectSchema]).optional(), - groupMemberships: z.union([z.boolean(), UserCountOutputTypeCountGroupMembershipsArgsObjectSchema]).optional(), - memberships: z.union([z.boolean(), UserCountOutputTypeCountMembershipsArgsObjectSchema]).optional(), - givenMarks: z.union([z.boolean(), UserCountOutputTypeCountGivenMarksArgsObjectSchema]).optional(), - attendeesRefunded: z.union([z.boolean(), UserCountOutputTypeCountAttendeesRefundedArgsObjectSchema]).optional(), - auditLogs: z.union([z.boolean(), UserCountOutputTypeCountAuditLogsArgsObjectSchema]).optional(), - deregisterReasons: z.union([z.boolean(), UserCountOutputTypeCountDeregisterReasonsArgsObjectSchema]).optional(), - notificationsReceived: z.union([z.boolean(), UserCountOutputTypeCountNotificationsReceivedArgsObjectSchema]).optional(), - notificationsCreated: z.union([z.boolean(), UserCountOutputTypeCountNotificationsCreatedArgsObjectSchema]).optional(), - notificationsUpdated: z.union([z.boolean(), UserCountOutputTypeCountNotificationsUpdatedArgsObjectSchema]).optional(), - contestants: z.union([z.boolean(), UserCountOutputTypeCountContestantsArgsObjectSchema]).optional(), - contestTeams: z.union([z.boolean(), UserCountOutputTypeCountContestTeamsArgsObjectSchema]).optional() -}).strict(); -export const UserCountOutputTypeSelectObjectSchema: z.ZodType = z.lazy(__makeSchema_UserCountOutputTypeSelect_schema) as unknown as z.ZodType; -export const UserCountOutputTypeSelectObjectZodSchema = z.lazy(__makeSchema_UserCountOutputTypeSelect_schema); - - -// File: CompanyCountOutputTypeSelect.schema.ts -const __makeSchema_CompanyCountOutputTypeSelect_schema = () => z.object({ - events: z.union([z.boolean(), CompanyCountOutputTypeCountEventsArgsObjectSchema]).optional(), - JobListing: z.union([z.boolean(), CompanyCountOutputTypeCountJobListingArgsObjectSchema]).optional() -}).strict(); -export const CompanyCountOutputTypeSelectObjectSchema: z.ZodType = z.lazy(__makeSchema_CompanyCountOutputTypeSelect_schema) as unknown as z.ZodType; -export const CompanyCountOutputTypeSelectObjectZodSchema = z.lazy(__makeSchema_CompanyCountOutputTypeSelect_schema); - - -// File: GroupCountOutputTypeSelect.schema.ts -const __makeSchema_GroupCountOutputTypeSelect_schema = () => z.object({ - events: z.union([z.boolean(), GroupCountOutputTypeCountEventsArgsObjectSchema]).optional(), - contests: z.union([z.boolean(), GroupCountOutputTypeCountContestsArgsObjectSchema]).optional(), - memberships: z.union([z.boolean(), GroupCountOutputTypeCountMembershipsArgsObjectSchema]).optional(), - marks: z.union([z.boolean(), GroupCountOutputTypeCountMarksArgsObjectSchema]).optional(), - roles: z.union([z.boolean(), GroupCountOutputTypeCountRolesArgsObjectSchema]).optional(), - notifications: z.union([z.boolean(), GroupCountOutputTypeCountNotificationsArgsObjectSchema]).optional() -}).strict(); -export const GroupCountOutputTypeSelectObjectSchema: z.ZodType = z.lazy(__makeSchema_GroupCountOutputTypeSelect_schema) as unknown as z.ZodType; -export const GroupCountOutputTypeSelectObjectZodSchema = z.lazy(__makeSchema_GroupCountOutputTypeSelect_schema); - - -// File: GroupMembershipCountOutputTypeSelect.schema.ts -const __makeSchema_GroupMembershipCountOutputTypeSelect_schema = () => z.object({ - roles: z.union([z.boolean(), GroupMembershipCountOutputTypeCountRolesArgsObjectSchema]).optional() -}).strict(); -export const GroupMembershipCountOutputTypeSelectObjectSchema: z.ZodType = z.lazy(__makeSchema_GroupMembershipCountOutputTypeSelect_schema) as unknown as z.ZodType; -export const GroupMembershipCountOutputTypeSelectObjectZodSchema = z.lazy(__makeSchema_GroupMembershipCountOutputTypeSelect_schema); - - -// File: GroupRoleCountOutputTypeSelect.schema.ts -const __makeSchema_GroupRoleCountOutputTypeSelect_schema = () => z.object({ - groupMembershipRoles: z.union([z.boolean(), GroupRoleCountOutputTypeCountGroupMembershipRolesArgsObjectSchema]).optional() -}).strict(); -export const GroupRoleCountOutputTypeSelectObjectSchema: z.ZodType = z.lazy(__makeSchema_GroupRoleCountOutputTypeSelect_schema) as unknown as z.ZodType; -export const GroupRoleCountOutputTypeSelectObjectZodSchema = z.lazy(__makeSchema_GroupRoleCountOutputTypeSelect_schema); - - -// File: AttendanceCountOutputTypeSelect.schema.ts -const __makeSchema_AttendanceCountOutputTypeSelect_schema = () => z.object({ - pools: z.union([z.boolean(), AttendanceCountOutputTypeCountPoolsArgsObjectSchema]).optional(), - attendees: z.union([z.boolean(), AttendanceCountOutputTypeCountAttendeesArgsObjectSchema]).optional(), - events: z.union([z.boolean(), AttendanceCountOutputTypeCountEventsArgsObjectSchema]).optional() -}).strict(); -export const AttendanceCountOutputTypeSelectObjectSchema: z.ZodType = z.lazy(__makeSchema_AttendanceCountOutputTypeSelect_schema) as unknown as z.ZodType; -export const AttendanceCountOutputTypeSelectObjectZodSchema = z.lazy(__makeSchema_AttendanceCountOutputTypeSelect_schema); - - -// File: AttendancePoolCountOutputTypeSelect.schema.ts -const __makeSchema_AttendancePoolCountOutputTypeSelect_schema = () => z.object({ - attendees: z.union([z.boolean(), AttendancePoolCountOutputTypeCountAttendeesArgsObjectSchema]).optional() -}).strict(); -export const AttendancePoolCountOutputTypeSelectObjectSchema: z.ZodType = z.lazy(__makeSchema_AttendancePoolCountOutputTypeSelect_schema) as unknown as z.ZodType; -export const AttendancePoolCountOutputTypeSelectObjectZodSchema = z.lazy(__makeSchema_AttendancePoolCountOutputTypeSelect_schema); - - -// File: EventCountOutputTypeSelect.schema.ts -const __makeSchema_EventCountOutputTypeSelect_schema = () => z.object({ - children: z.union([z.boolean(), EventCountOutputTypeCountChildrenArgsObjectSchema]).optional(), - companies: z.union([z.boolean(), EventCountOutputTypeCountCompaniesArgsObjectSchema]).optional(), - hostingGroups: z.union([z.boolean(), EventCountOutputTypeCountHostingGroupsArgsObjectSchema]).optional(), - deregisterReasons: z.union([z.boolean(), EventCountOutputTypeCountDeregisterReasonsArgsObjectSchema]).optional() -}).strict(); -export const EventCountOutputTypeSelectObjectSchema: z.ZodType = z.lazy(__makeSchema_EventCountOutputTypeSelect_schema) as unknown as z.ZodType; -export const EventCountOutputTypeSelectObjectZodSchema = z.lazy(__makeSchema_EventCountOutputTypeSelect_schema); - - -// File: MarkCountOutputTypeSelect.schema.ts -const __makeSchema_MarkCountOutputTypeSelect_schema = () => z.object({ - users: z.union([z.boolean(), MarkCountOutputTypeCountUsersArgsObjectSchema]).optional(), - groups: z.union([z.boolean(), MarkCountOutputTypeCountGroupsArgsObjectSchema]).optional() -}).strict(); -export const MarkCountOutputTypeSelectObjectSchema: z.ZodType = z.lazy(__makeSchema_MarkCountOutputTypeSelect_schema) as unknown as z.ZodType; -export const MarkCountOutputTypeSelectObjectZodSchema = z.lazy(__makeSchema_MarkCountOutputTypeSelect_schema); - - -// File: JobListingCountOutputTypeSelect.schema.ts -const __makeSchema_JobListingCountOutputTypeSelect_schema = () => z.object({ - locations: z.union([z.boolean(), JobListingCountOutputTypeCountLocationsArgsObjectSchema]).optional() -}).strict(); -export const JobListingCountOutputTypeSelectObjectSchema: z.ZodType = z.lazy(__makeSchema_JobListingCountOutputTypeSelect_schema) as unknown as z.ZodType; -export const JobListingCountOutputTypeSelectObjectZodSchema = z.lazy(__makeSchema_JobListingCountOutputTypeSelect_schema); - - -// File: ArticleCountOutputTypeSelect.schema.ts -const __makeSchema_ArticleCountOutputTypeSelect_schema = () => z.object({ - tags: z.union([z.boolean(), ArticleCountOutputTypeCountTagsArgsObjectSchema]).optional() -}).strict(); -export const ArticleCountOutputTypeSelectObjectSchema: z.ZodType = z.lazy(__makeSchema_ArticleCountOutputTypeSelect_schema) as unknown as z.ZodType; -export const ArticleCountOutputTypeSelectObjectZodSchema = z.lazy(__makeSchema_ArticleCountOutputTypeSelect_schema); - - -// File: ArticleTagCountOutputTypeSelect.schema.ts -const __makeSchema_ArticleTagCountOutputTypeSelect_schema = () => z.object({ - articles: z.union([z.boolean(), ArticleTagCountOutputTypeCountArticlesArgsObjectSchema]).optional() -}).strict(); -export const ArticleTagCountOutputTypeSelectObjectSchema: z.ZodType = z.lazy(__makeSchema_ArticleTagCountOutputTypeSelect_schema) as unknown as z.ZodType; -export const ArticleTagCountOutputTypeSelectObjectZodSchema = z.lazy(__makeSchema_ArticleTagCountOutputTypeSelect_schema); - - -// File: TaskCountOutputTypeSelect.schema.ts -const __makeSchema_TaskCountOutputTypeSelect_schema = () => z.object({ - attendancePools: z.union([z.boolean(), TaskCountOutputTypeCountAttendancePoolsArgsObjectSchema]).optional(), - notifications: z.union([z.boolean(), TaskCountOutputTypeCountNotificationsArgsObjectSchema]).optional() -}).strict(); -export const TaskCountOutputTypeSelectObjectSchema: z.ZodType = z.lazy(__makeSchema_TaskCountOutputTypeSelect_schema) as unknown as z.ZodType; -export const TaskCountOutputTypeSelectObjectZodSchema = z.lazy(__makeSchema_TaskCountOutputTypeSelect_schema); - - -// File: RecurringTaskCountOutputTypeSelect.schema.ts -const __makeSchema_RecurringTaskCountOutputTypeSelect_schema = () => z.object({ - tasks: z.union([z.boolean(), RecurringTaskCountOutputTypeCountTasksArgsObjectSchema]).optional() -}).strict(); -export const RecurringTaskCountOutputTypeSelectObjectSchema: z.ZodType = z.lazy(__makeSchema_RecurringTaskCountOutputTypeSelect_schema) as unknown as z.ZodType; -export const RecurringTaskCountOutputTypeSelectObjectZodSchema = z.lazy(__makeSchema_RecurringTaskCountOutputTypeSelect_schema); - - -// File: FeedbackFormCountOutputTypeSelect.schema.ts -const __makeSchema_FeedbackFormCountOutputTypeSelect_schema = () => z.object({ - questions: z.union([z.boolean(), FeedbackFormCountOutputTypeCountQuestionsArgsObjectSchema]).optional(), - answers: z.union([z.boolean(), FeedbackFormCountOutputTypeCountAnswersArgsObjectSchema]).optional() -}).strict(); -export const FeedbackFormCountOutputTypeSelectObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackFormCountOutputTypeSelect_schema) as unknown as z.ZodType; -export const FeedbackFormCountOutputTypeSelectObjectZodSchema = z.lazy(__makeSchema_FeedbackFormCountOutputTypeSelect_schema); - - -// File: FeedbackQuestionCountOutputTypeSelect.schema.ts -const __makeSchema_FeedbackQuestionCountOutputTypeSelect_schema = () => z.object({ - options: z.union([z.boolean(), FeedbackQuestionCountOutputTypeCountOptionsArgsObjectSchema]).optional(), - answers: z.union([z.boolean(), FeedbackQuestionCountOutputTypeCountAnswersArgsObjectSchema]).optional() -}).strict(); -export const FeedbackQuestionCountOutputTypeSelectObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackQuestionCountOutputTypeSelect_schema) as unknown as z.ZodType; -export const FeedbackQuestionCountOutputTypeSelectObjectZodSchema = z.lazy(__makeSchema_FeedbackQuestionCountOutputTypeSelect_schema); - - -// File: FeedbackQuestionOptionCountOutputTypeSelect.schema.ts -const __makeSchema_FeedbackQuestionOptionCountOutputTypeSelect_schema = () => z.object({ - selectedInAnswers: z.union([z.boolean(), FeedbackQuestionOptionCountOutputTypeCountSelectedInAnswersArgsObjectSchema]).optional() -}).strict(); -export const FeedbackQuestionOptionCountOutputTypeSelectObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackQuestionOptionCountOutputTypeSelect_schema) as unknown as z.ZodType; -export const FeedbackQuestionOptionCountOutputTypeSelectObjectZodSchema = z.lazy(__makeSchema_FeedbackQuestionOptionCountOutputTypeSelect_schema); - - -// File: FeedbackQuestionAnswerCountOutputTypeSelect.schema.ts -const __makeSchema_FeedbackQuestionAnswerCountOutputTypeSelect_schema = () => z.object({ - selectedOptions: z.union([z.boolean(), FeedbackQuestionAnswerCountOutputTypeCountSelectedOptionsArgsObjectSchema]).optional() -}).strict(); -export const FeedbackQuestionAnswerCountOutputTypeSelectObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackQuestionAnswerCountOutputTypeSelect_schema) as unknown as z.ZodType; -export const FeedbackQuestionAnswerCountOutputTypeSelectObjectZodSchema = z.lazy(__makeSchema_FeedbackQuestionAnswerCountOutputTypeSelect_schema); - - -// File: FeedbackFormAnswerCountOutputTypeSelect.schema.ts -const __makeSchema_FeedbackFormAnswerCountOutputTypeSelect_schema = () => z.object({ - answers: z.union([z.boolean(), FeedbackFormAnswerCountOutputTypeCountAnswersArgsObjectSchema]).optional() -}).strict(); -export const FeedbackFormAnswerCountOutputTypeSelectObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackFormAnswerCountOutputTypeSelect_schema) as unknown as z.ZodType; -export const FeedbackFormAnswerCountOutputTypeSelectObjectZodSchema = z.lazy(__makeSchema_FeedbackFormAnswerCountOutputTypeSelect_schema); - - -// File: NotificationCountOutputTypeSelect.schema.ts -const __makeSchema_NotificationCountOutputTypeSelect_schema = () => z.object({ - recipients: z.union([z.boolean(), NotificationCountOutputTypeCountRecipientsArgsObjectSchema]).optional() -}).strict(); -export const NotificationCountOutputTypeSelectObjectSchema: z.ZodType = z.lazy(__makeSchema_NotificationCountOutputTypeSelect_schema) as unknown as z.ZodType; -export const NotificationCountOutputTypeSelectObjectZodSchema = z.lazy(__makeSchema_NotificationCountOutputTypeSelect_schema); - - -// File: ContestCountOutputTypeSelect.schema.ts -const __makeSchema_ContestCountOutputTypeSelect_schema = () => z.object({ - contestants: z.union([z.boolean(), ContestCountOutputTypeCountContestantsArgsObjectSchema]).optional(), - groups: z.union([z.boolean(), ContestCountOutputTypeCountGroupsArgsObjectSchema]).optional(), - events: z.union([z.boolean(), ContestCountOutputTypeCountEventsArgsObjectSchema]).optional() -}).strict(); -export const ContestCountOutputTypeSelectObjectSchema: z.ZodType = z.lazy(__makeSchema_ContestCountOutputTypeSelect_schema) as unknown as z.ZodType; -export const ContestCountOutputTypeSelectObjectZodSchema = z.lazy(__makeSchema_ContestCountOutputTypeSelect_schema); - - -// File: ContestTeamCountOutputTypeSelect.schema.ts -const __makeSchema_ContestTeamCountOutputTypeSelect_schema = () => z.object({ - members: z.union([z.boolean(), ContestTeamCountOutputTypeCountMembersArgsObjectSchema]).optional() -}).strict(); -export const ContestTeamCountOutputTypeSelectObjectSchema: z.ZodType = z.lazy(__makeSchema_ContestTeamCountOutputTypeSelect_schema) as unknown as z.ZodType; -export const ContestTeamCountOutputTypeSelectObjectZodSchema = z.lazy(__makeSchema_ContestTeamCountOutputTypeSelect_schema); - - -// File: UserCountOutputTypeArgs.schema.ts -const __makeSchema_UserCountOutputTypeArgs_schema = () => z.object({ - get select(){ return UserCountOutputTypeSelectObjectSchema.optional(); } -}).strict(); -export const UserCountOutputTypeArgsObjectSchema = z.lazy(__makeSchema_UserCountOutputTypeArgs_schema); -export const UserCountOutputTypeArgsObjectZodSchema = z.lazy(__makeSchema_UserCountOutputTypeArgs_schema); - - -// File: UserCountOutputTypeCountAttendeeArgs.schema.ts -const __makeSchema_UserCountOutputTypeCountAttendeeArgs_schema = () => z.object({ - get where(){ return AttendeeWhereInputObjectSchema.optional(); } -}).strict(); -export const UserCountOutputTypeCountAttendeeArgsObjectSchema = z.lazy(__makeSchema_UserCountOutputTypeCountAttendeeArgs_schema); -export const UserCountOutputTypeCountAttendeeArgsObjectZodSchema = z.lazy(__makeSchema_UserCountOutputTypeCountAttendeeArgs_schema); - - -// File: UserCountOutputTypeCountPersonalMarkArgs.schema.ts -const __makeSchema_UserCountOutputTypeCountPersonalMarkArgs_schema = () => z.object({ - get where(){ return PersonalMarkWhereInputObjectSchema.optional(); } -}).strict(); -export const UserCountOutputTypeCountPersonalMarkArgsObjectSchema = z.lazy(__makeSchema_UserCountOutputTypeCountPersonalMarkArgs_schema); -export const UserCountOutputTypeCountPersonalMarkArgsObjectZodSchema = z.lazy(__makeSchema_UserCountOutputTypeCountPersonalMarkArgs_schema); - - -// File: UserCountOutputTypeCountGroupMembershipsArgs.schema.ts -const __makeSchema_UserCountOutputTypeCountGroupMembershipsArgs_schema = () => z.object({ - get where(){ return GroupMembershipWhereInputObjectSchema.optional(); } -}).strict(); -export const UserCountOutputTypeCountGroupMembershipsArgsObjectSchema = z.lazy(__makeSchema_UserCountOutputTypeCountGroupMembershipsArgs_schema); -export const UserCountOutputTypeCountGroupMembershipsArgsObjectZodSchema = z.lazy(__makeSchema_UserCountOutputTypeCountGroupMembershipsArgs_schema); - - -// File: UserCountOutputTypeCountMembershipsArgs.schema.ts -const __makeSchema_UserCountOutputTypeCountMembershipsArgs_schema = () => z.object({ - get where(){ return MembershipWhereInputObjectSchema.optional(); } -}).strict(); -export const UserCountOutputTypeCountMembershipsArgsObjectSchema = z.lazy(__makeSchema_UserCountOutputTypeCountMembershipsArgs_schema); -export const UserCountOutputTypeCountMembershipsArgsObjectZodSchema = z.lazy(__makeSchema_UserCountOutputTypeCountMembershipsArgs_schema); - - -// File: UserCountOutputTypeCountGivenMarksArgs.schema.ts -const __makeSchema_UserCountOutputTypeCountGivenMarksArgs_schema = () => z.object({ - get where(){ return PersonalMarkWhereInputObjectSchema.optional(); } -}).strict(); -export const UserCountOutputTypeCountGivenMarksArgsObjectSchema = z.lazy(__makeSchema_UserCountOutputTypeCountGivenMarksArgs_schema); -export const UserCountOutputTypeCountGivenMarksArgsObjectZodSchema = z.lazy(__makeSchema_UserCountOutputTypeCountGivenMarksArgs_schema); - - -// File: UserCountOutputTypeCountAttendeesRefundedArgs.schema.ts -const __makeSchema_UserCountOutputTypeCountAttendeesRefundedArgs_schema = () => z.object({ - get where(){ return AttendeeWhereInputObjectSchema.optional(); } -}).strict(); -export const UserCountOutputTypeCountAttendeesRefundedArgsObjectSchema = z.lazy(__makeSchema_UserCountOutputTypeCountAttendeesRefundedArgs_schema); -export const UserCountOutputTypeCountAttendeesRefundedArgsObjectZodSchema = z.lazy(__makeSchema_UserCountOutputTypeCountAttendeesRefundedArgs_schema); - - -// File: UserCountOutputTypeCountAuditLogsArgs.schema.ts -const __makeSchema_UserCountOutputTypeCountAuditLogsArgs_schema = () => z.object({ - get where(){ return AuditLogWhereInputObjectSchema.optional(); } -}).strict(); -export const UserCountOutputTypeCountAuditLogsArgsObjectSchema = z.lazy(__makeSchema_UserCountOutputTypeCountAuditLogsArgs_schema); -export const UserCountOutputTypeCountAuditLogsArgsObjectZodSchema = z.lazy(__makeSchema_UserCountOutputTypeCountAuditLogsArgs_schema); - - -// File: UserCountOutputTypeCountDeregisterReasonsArgs.schema.ts -const __makeSchema_UserCountOutputTypeCountDeregisterReasonsArgs_schema = () => z.object({ - get where(){ return DeregisterReasonWhereInputObjectSchema.optional(); } -}).strict(); -export const UserCountOutputTypeCountDeregisterReasonsArgsObjectSchema = z.lazy(__makeSchema_UserCountOutputTypeCountDeregisterReasonsArgs_schema); -export const UserCountOutputTypeCountDeregisterReasonsArgsObjectZodSchema = z.lazy(__makeSchema_UserCountOutputTypeCountDeregisterReasonsArgs_schema); - - -// File: UserCountOutputTypeCountNotificationsReceivedArgs.schema.ts -const __makeSchema_UserCountOutputTypeCountNotificationsReceivedArgs_schema = () => z.object({ - get where(){ return NotificationRecipientWhereInputObjectSchema.optional(); } -}).strict(); -export const UserCountOutputTypeCountNotificationsReceivedArgsObjectSchema = z.lazy(__makeSchema_UserCountOutputTypeCountNotificationsReceivedArgs_schema); -export const UserCountOutputTypeCountNotificationsReceivedArgsObjectZodSchema = z.lazy(__makeSchema_UserCountOutputTypeCountNotificationsReceivedArgs_schema); - - -// File: UserCountOutputTypeCountNotificationsCreatedArgs.schema.ts -const __makeSchema_UserCountOutputTypeCountNotificationsCreatedArgs_schema = () => z.object({ - get where(){ return NotificationWhereInputObjectSchema.optional(); } -}).strict(); -export const UserCountOutputTypeCountNotificationsCreatedArgsObjectSchema = z.lazy(__makeSchema_UserCountOutputTypeCountNotificationsCreatedArgs_schema); -export const UserCountOutputTypeCountNotificationsCreatedArgsObjectZodSchema = z.lazy(__makeSchema_UserCountOutputTypeCountNotificationsCreatedArgs_schema); - - -// File: UserCountOutputTypeCountNotificationsUpdatedArgs.schema.ts -const __makeSchema_UserCountOutputTypeCountNotificationsUpdatedArgs_schema = () => z.object({ - get where(){ return NotificationWhereInputObjectSchema.optional(); } -}).strict(); -export const UserCountOutputTypeCountNotificationsUpdatedArgsObjectSchema = z.lazy(__makeSchema_UserCountOutputTypeCountNotificationsUpdatedArgs_schema); -export const UserCountOutputTypeCountNotificationsUpdatedArgsObjectZodSchema = z.lazy(__makeSchema_UserCountOutputTypeCountNotificationsUpdatedArgs_schema); - - -// File: UserCountOutputTypeCountContestantsArgs.schema.ts -const __makeSchema_UserCountOutputTypeCountContestantsArgs_schema = () => z.object({ - get where(){ return ContestantWhereInputObjectSchema.optional(); } -}).strict(); -export const UserCountOutputTypeCountContestantsArgsObjectSchema = z.lazy(__makeSchema_UserCountOutputTypeCountContestantsArgs_schema); -export const UserCountOutputTypeCountContestantsArgsObjectZodSchema = z.lazy(__makeSchema_UserCountOutputTypeCountContestantsArgs_schema); - - -// File: UserCountOutputTypeCountContestTeamsArgs.schema.ts -const __makeSchema_UserCountOutputTypeCountContestTeamsArgs_schema = () => z.object({ - get where(){ return ContestTeamWhereInputObjectSchema.optional(); } -}).strict(); -export const UserCountOutputTypeCountContestTeamsArgsObjectSchema = z.lazy(__makeSchema_UserCountOutputTypeCountContestTeamsArgs_schema); -export const UserCountOutputTypeCountContestTeamsArgsObjectZodSchema = z.lazy(__makeSchema_UserCountOutputTypeCountContestTeamsArgs_schema); - - -// File: CompanyCountOutputTypeArgs.schema.ts -const __makeSchema_CompanyCountOutputTypeArgs_schema = () => z.object({ - get select(){ return CompanyCountOutputTypeSelectObjectSchema.optional(); } -}).strict(); -export const CompanyCountOutputTypeArgsObjectSchema = z.lazy(__makeSchema_CompanyCountOutputTypeArgs_schema); -export const CompanyCountOutputTypeArgsObjectZodSchema = z.lazy(__makeSchema_CompanyCountOutputTypeArgs_schema); - - -// File: CompanyCountOutputTypeCountEventsArgs.schema.ts -const __makeSchema_CompanyCountOutputTypeCountEventsArgs_schema = () => z.object({ - get where(){ return EventCompanyWhereInputObjectSchema.optional(); } -}).strict(); -export const CompanyCountOutputTypeCountEventsArgsObjectSchema = z.lazy(__makeSchema_CompanyCountOutputTypeCountEventsArgs_schema); -export const CompanyCountOutputTypeCountEventsArgsObjectZodSchema = z.lazy(__makeSchema_CompanyCountOutputTypeCountEventsArgs_schema); - - -// File: CompanyCountOutputTypeCountJobListingArgs.schema.ts -const __makeSchema_CompanyCountOutputTypeCountJobListingArgs_schema = () => z.object({ - get where(){ return JobListingWhereInputObjectSchema.optional(); } -}).strict(); -export const CompanyCountOutputTypeCountJobListingArgsObjectSchema = z.lazy(__makeSchema_CompanyCountOutputTypeCountJobListingArgs_schema); -export const CompanyCountOutputTypeCountJobListingArgsObjectZodSchema = z.lazy(__makeSchema_CompanyCountOutputTypeCountJobListingArgs_schema); - - -// File: GroupCountOutputTypeArgs.schema.ts -const __makeSchema_GroupCountOutputTypeArgs_schema = () => z.object({ - get select(){ return GroupCountOutputTypeSelectObjectSchema.optional(); } -}).strict(); -export const GroupCountOutputTypeArgsObjectSchema = z.lazy(__makeSchema_GroupCountOutputTypeArgs_schema); -export const GroupCountOutputTypeArgsObjectZodSchema = z.lazy(__makeSchema_GroupCountOutputTypeArgs_schema); - - -// File: GroupCountOutputTypeCountEventsArgs.schema.ts -const __makeSchema_GroupCountOutputTypeCountEventsArgs_schema = () => z.object({ - get where(){ return EventHostingGroupWhereInputObjectSchema.optional(); } -}).strict(); -export const GroupCountOutputTypeCountEventsArgsObjectSchema = z.lazy(__makeSchema_GroupCountOutputTypeCountEventsArgs_schema); -export const GroupCountOutputTypeCountEventsArgsObjectZodSchema = z.lazy(__makeSchema_GroupCountOutputTypeCountEventsArgs_schema); - - -// File: GroupCountOutputTypeCountContestsArgs.schema.ts -const __makeSchema_GroupCountOutputTypeCountContestsArgs_schema = () => z.object({ - get where(){ return ContestWhereInputObjectSchema.optional(); } -}).strict(); -export const GroupCountOutputTypeCountContestsArgsObjectSchema = z.lazy(__makeSchema_GroupCountOutputTypeCountContestsArgs_schema); -export const GroupCountOutputTypeCountContestsArgsObjectZodSchema = z.lazy(__makeSchema_GroupCountOutputTypeCountContestsArgs_schema); - - -// File: GroupCountOutputTypeCountMembershipsArgs.schema.ts -const __makeSchema_GroupCountOutputTypeCountMembershipsArgs_schema = () => z.object({ - get where(){ return GroupMembershipWhereInputObjectSchema.optional(); } -}).strict(); -export const GroupCountOutputTypeCountMembershipsArgsObjectSchema = z.lazy(__makeSchema_GroupCountOutputTypeCountMembershipsArgs_schema); -export const GroupCountOutputTypeCountMembershipsArgsObjectZodSchema = z.lazy(__makeSchema_GroupCountOutputTypeCountMembershipsArgs_schema); - - -// File: GroupCountOutputTypeCountMarksArgs.schema.ts -const __makeSchema_GroupCountOutputTypeCountMarksArgs_schema = () => z.object({ - get where(){ return MarkGroupWhereInputObjectSchema.optional(); } -}).strict(); -export const GroupCountOutputTypeCountMarksArgsObjectSchema = z.lazy(__makeSchema_GroupCountOutputTypeCountMarksArgs_schema); -export const GroupCountOutputTypeCountMarksArgsObjectZodSchema = z.lazy(__makeSchema_GroupCountOutputTypeCountMarksArgs_schema); - - -// File: GroupCountOutputTypeCountRolesArgs.schema.ts -const __makeSchema_GroupCountOutputTypeCountRolesArgs_schema = () => z.object({ - get where(){ return GroupRoleWhereInputObjectSchema.optional(); } -}).strict(); -export const GroupCountOutputTypeCountRolesArgsObjectSchema = z.lazy(__makeSchema_GroupCountOutputTypeCountRolesArgs_schema); -export const GroupCountOutputTypeCountRolesArgsObjectZodSchema = z.lazy(__makeSchema_GroupCountOutputTypeCountRolesArgs_schema); - - -// File: GroupCountOutputTypeCountNotificationsArgs.schema.ts -const __makeSchema_GroupCountOutputTypeCountNotificationsArgs_schema = () => z.object({ - get where(){ return NotificationWhereInputObjectSchema.optional(); } -}).strict(); -export const GroupCountOutputTypeCountNotificationsArgsObjectSchema = z.lazy(__makeSchema_GroupCountOutputTypeCountNotificationsArgs_schema); -export const GroupCountOutputTypeCountNotificationsArgsObjectZodSchema = z.lazy(__makeSchema_GroupCountOutputTypeCountNotificationsArgs_schema); - - -// File: GroupMembershipCountOutputTypeArgs.schema.ts -const __makeSchema_GroupMembershipCountOutputTypeArgs_schema = () => z.object({ - get select(){ return GroupMembershipCountOutputTypeSelectObjectSchema.optional(); } -}).strict(); -export const GroupMembershipCountOutputTypeArgsObjectSchema = z.lazy(__makeSchema_GroupMembershipCountOutputTypeArgs_schema); -export const GroupMembershipCountOutputTypeArgsObjectZodSchema = z.lazy(__makeSchema_GroupMembershipCountOutputTypeArgs_schema); - - -// File: GroupMembershipCountOutputTypeCountRolesArgs.schema.ts -const __makeSchema_GroupMembershipCountOutputTypeCountRolesArgs_schema = () => z.object({ - get where(){ return GroupMembershipRoleWhereInputObjectSchema.optional(); } -}).strict(); -export const GroupMembershipCountOutputTypeCountRolesArgsObjectSchema = z.lazy(__makeSchema_GroupMembershipCountOutputTypeCountRolesArgs_schema); -export const GroupMembershipCountOutputTypeCountRolesArgsObjectZodSchema = z.lazy(__makeSchema_GroupMembershipCountOutputTypeCountRolesArgs_schema); - - -// File: GroupRoleCountOutputTypeArgs.schema.ts -const __makeSchema_GroupRoleCountOutputTypeArgs_schema = () => z.object({ - get select(){ return GroupRoleCountOutputTypeSelectObjectSchema.optional(); } -}).strict(); -export const GroupRoleCountOutputTypeArgsObjectSchema = z.lazy(__makeSchema_GroupRoleCountOutputTypeArgs_schema); -export const GroupRoleCountOutputTypeArgsObjectZodSchema = z.lazy(__makeSchema_GroupRoleCountOutputTypeArgs_schema); - - -// File: GroupRoleCountOutputTypeCountGroupMembershipRolesArgs.schema.ts -const __makeSchema_GroupRoleCountOutputTypeCountGroupMembershipRolesArgs_schema = () => z.object({ - get where(){ return GroupMembershipRoleWhereInputObjectSchema.optional(); } -}).strict(); -export const GroupRoleCountOutputTypeCountGroupMembershipRolesArgsObjectSchema = z.lazy(__makeSchema_GroupRoleCountOutputTypeCountGroupMembershipRolesArgs_schema); -export const GroupRoleCountOutputTypeCountGroupMembershipRolesArgsObjectZodSchema = z.lazy(__makeSchema_GroupRoleCountOutputTypeCountGroupMembershipRolesArgs_schema); - - -// File: AttendanceCountOutputTypeArgs.schema.ts -const __makeSchema_AttendanceCountOutputTypeArgs_schema = () => z.object({ - get select(){ return AttendanceCountOutputTypeSelectObjectSchema.optional(); } -}).strict(); -export const AttendanceCountOutputTypeArgsObjectSchema = z.lazy(__makeSchema_AttendanceCountOutputTypeArgs_schema); -export const AttendanceCountOutputTypeArgsObjectZodSchema = z.lazy(__makeSchema_AttendanceCountOutputTypeArgs_schema); - - -// File: AttendanceCountOutputTypeCountPoolsArgs.schema.ts -const __makeSchema_AttendanceCountOutputTypeCountPoolsArgs_schema = () => z.object({ - get where(){ return AttendancePoolWhereInputObjectSchema.optional(); } -}).strict(); -export const AttendanceCountOutputTypeCountPoolsArgsObjectSchema = z.lazy(__makeSchema_AttendanceCountOutputTypeCountPoolsArgs_schema); -export const AttendanceCountOutputTypeCountPoolsArgsObjectZodSchema = z.lazy(__makeSchema_AttendanceCountOutputTypeCountPoolsArgs_schema); - - -// File: AttendanceCountOutputTypeCountAttendeesArgs.schema.ts -const __makeSchema_AttendanceCountOutputTypeCountAttendeesArgs_schema = () => z.object({ - get where(){ return AttendeeWhereInputObjectSchema.optional(); } -}).strict(); -export const AttendanceCountOutputTypeCountAttendeesArgsObjectSchema = z.lazy(__makeSchema_AttendanceCountOutputTypeCountAttendeesArgs_schema); -export const AttendanceCountOutputTypeCountAttendeesArgsObjectZodSchema = z.lazy(__makeSchema_AttendanceCountOutputTypeCountAttendeesArgs_schema); - - -// File: AttendanceCountOutputTypeCountEventsArgs.schema.ts -const __makeSchema_AttendanceCountOutputTypeCountEventsArgs_schema = () => z.object({ - get where(){ return EventWhereInputObjectSchema.optional(); } -}).strict(); -export const AttendanceCountOutputTypeCountEventsArgsObjectSchema = z.lazy(__makeSchema_AttendanceCountOutputTypeCountEventsArgs_schema); -export const AttendanceCountOutputTypeCountEventsArgsObjectZodSchema = z.lazy(__makeSchema_AttendanceCountOutputTypeCountEventsArgs_schema); - - -// File: AttendancePoolCountOutputTypeArgs.schema.ts -const __makeSchema_AttendancePoolCountOutputTypeArgs_schema = () => z.object({ - get select(){ return AttendancePoolCountOutputTypeSelectObjectSchema.optional(); } -}).strict(); -export const AttendancePoolCountOutputTypeArgsObjectSchema = z.lazy(__makeSchema_AttendancePoolCountOutputTypeArgs_schema); -export const AttendancePoolCountOutputTypeArgsObjectZodSchema = z.lazy(__makeSchema_AttendancePoolCountOutputTypeArgs_schema); - - -// File: AttendancePoolCountOutputTypeCountAttendeesArgs.schema.ts -const __makeSchema_AttendancePoolCountOutputTypeCountAttendeesArgs_schema = () => z.object({ - get where(){ return AttendeeWhereInputObjectSchema.optional(); } -}).strict(); -export const AttendancePoolCountOutputTypeCountAttendeesArgsObjectSchema = z.lazy(__makeSchema_AttendancePoolCountOutputTypeCountAttendeesArgs_schema); -export const AttendancePoolCountOutputTypeCountAttendeesArgsObjectZodSchema = z.lazy(__makeSchema_AttendancePoolCountOutputTypeCountAttendeesArgs_schema); - - -// File: EventCountOutputTypeArgs.schema.ts -const __makeSchema_EventCountOutputTypeArgs_schema = () => z.object({ - get select(){ return EventCountOutputTypeSelectObjectSchema.optional(); } -}).strict(); -export const EventCountOutputTypeArgsObjectSchema = z.lazy(__makeSchema_EventCountOutputTypeArgs_schema); -export const EventCountOutputTypeArgsObjectZodSchema = z.lazy(__makeSchema_EventCountOutputTypeArgs_schema); - - -// File: EventCountOutputTypeCountChildrenArgs.schema.ts -const __makeSchema_EventCountOutputTypeCountChildrenArgs_schema = () => z.object({ - get where(){ return EventWhereInputObjectSchema.optional(); } -}).strict(); -export const EventCountOutputTypeCountChildrenArgsObjectSchema = z.lazy(__makeSchema_EventCountOutputTypeCountChildrenArgs_schema); -export const EventCountOutputTypeCountChildrenArgsObjectZodSchema = z.lazy(__makeSchema_EventCountOutputTypeCountChildrenArgs_schema); - - -// File: EventCountOutputTypeCountCompaniesArgs.schema.ts -const __makeSchema_EventCountOutputTypeCountCompaniesArgs_schema = () => z.object({ - get where(){ return EventCompanyWhereInputObjectSchema.optional(); } -}).strict(); -export const EventCountOutputTypeCountCompaniesArgsObjectSchema = z.lazy(__makeSchema_EventCountOutputTypeCountCompaniesArgs_schema); -export const EventCountOutputTypeCountCompaniesArgsObjectZodSchema = z.lazy(__makeSchema_EventCountOutputTypeCountCompaniesArgs_schema); - - -// File: EventCountOutputTypeCountHostingGroupsArgs.schema.ts -const __makeSchema_EventCountOutputTypeCountHostingGroupsArgs_schema = () => z.object({ - get where(){ return EventHostingGroupWhereInputObjectSchema.optional(); } -}).strict(); -export const EventCountOutputTypeCountHostingGroupsArgsObjectSchema = z.lazy(__makeSchema_EventCountOutputTypeCountHostingGroupsArgs_schema); -export const EventCountOutputTypeCountHostingGroupsArgsObjectZodSchema = z.lazy(__makeSchema_EventCountOutputTypeCountHostingGroupsArgs_schema); - - -// File: EventCountOutputTypeCountDeregisterReasonsArgs.schema.ts -const __makeSchema_EventCountOutputTypeCountDeregisterReasonsArgs_schema = () => z.object({ - get where(){ return DeregisterReasonWhereInputObjectSchema.optional(); } -}).strict(); -export const EventCountOutputTypeCountDeregisterReasonsArgsObjectSchema = z.lazy(__makeSchema_EventCountOutputTypeCountDeregisterReasonsArgs_schema); -export const EventCountOutputTypeCountDeregisterReasonsArgsObjectZodSchema = z.lazy(__makeSchema_EventCountOutputTypeCountDeregisterReasonsArgs_schema); - - -// File: MarkCountOutputTypeArgs.schema.ts -const __makeSchema_MarkCountOutputTypeArgs_schema = () => z.object({ - get select(){ return MarkCountOutputTypeSelectObjectSchema.optional(); } -}).strict(); -export const MarkCountOutputTypeArgsObjectSchema = z.lazy(__makeSchema_MarkCountOutputTypeArgs_schema); -export const MarkCountOutputTypeArgsObjectZodSchema = z.lazy(__makeSchema_MarkCountOutputTypeArgs_schema); - - -// File: MarkCountOutputTypeCountUsersArgs.schema.ts -const __makeSchema_MarkCountOutputTypeCountUsersArgs_schema = () => z.object({ - get where(){ return PersonalMarkWhereInputObjectSchema.optional(); } -}).strict(); -export const MarkCountOutputTypeCountUsersArgsObjectSchema = z.lazy(__makeSchema_MarkCountOutputTypeCountUsersArgs_schema); -export const MarkCountOutputTypeCountUsersArgsObjectZodSchema = z.lazy(__makeSchema_MarkCountOutputTypeCountUsersArgs_schema); - - -// File: MarkCountOutputTypeCountGroupsArgs.schema.ts -const __makeSchema_MarkCountOutputTypeCountGroupsArgs_schema = () => z.object({ - get where(){ return MarkGroupWhereInputObjectSchema.optional(); } -}).strict(); -export const MarkCountOutputTypeCountGroupsArgsObjectSchema = z.lazy(__makeSchema_MarkCountOutputTypeCountGroupsArgs_schema); -export const MarkCountOutputTypeCountGroupsArgsObjectZodSchema = z.lazy(__makeSchema_MarkCountOutputTypeCountGroupsArgs_schema); - - -// File: JobListingCountOutputTypeArgs.schema.ts -const __makeSchema_JobListingCountOutputTypeArgs_schema = () => z.object({ - get select(){ return JobListingCountOutputTypeSelectObjectSchema.optional(); } -}).strict(); -export const JobListingCountOutputTypeArgsObjectSchema = z.lazy(__makeSchema_JobListingCountOutputTypeArgs_schema); -export const JobListingCountOutputTypeArgsObjectZodSchema = z.lazy(__makeSchema_JobListingCountOutputTypeArgs_schema); - - -// File: JobListingCountOutputTypeCountLocationsArgs.schema.ts -const __makeSchema_JobListingCountOutputTypeCountLocationsArgs_schema = () => z.object({ - get where(){ return JobListingLocationWhereInputObjectSchema.optional(); } -}).strict(); -export const JobListingCountOutputTypeCountLocationsArgsObjectSchema = z.lazy(__makeSchema_JobListingCountOutputTypeCountLocationsArgs_schema); -export const JobListingCountOutputTypeCountLocationsArgsObjectZodSchema = z.lazy(__makeSchema_JobListingCountOutputTypeCountLocationsArgs_schema); - - -// File: ArticleCountOutputTypeArgs.schema.ts -const __makeSchema_ArticleCountOutputTypeArgs_schema = () => z.object({ - get select(){ return ArticleCountOutputTypeSelectObjectSchema.optional(); } -}).strict(); -export const ArticleCountOutputTypeArgsObjectSchema = z.lazy(__makeSchema_ArticleCountOutputTypeArgs_schema); -export const ArticleCountOutputTypeArgsObjectZodSchema = z.lazy(__makeSchema_ArticleCountOutputTypeArgs_schema); - - -// File: ArticleCountOutputTypeCountTagsArgs.schema.ts -const __makeSchema_ArticleCountOutputTypeCountTagsArgs_schema = () => z.object({ - get where(){ return ArticleTagLinkWhereInputObjectSchema.optional(); } -}).strict(); -export const ArticleCountOutputTypeCountTagsArgsObjectSchema = z.lazy(__makeSchema_ArticleCountOutputTypeCountTagsArgs_schema); -export const ArticleCountOutputTypeCountTagsArgsObjectZodSchema = z.lazy(__makeSchema_ArticleCountOutputTypeCountTagsArgs_schema); - - -// File: ArticleTagCountOutputTypeArgs.schema.ts -const __makeSchema_ArticleTagCountOutputTypeArgs_schema = () => z.object({ - get select(){ return ArticleTagCountOutputTypeSelectObjectSchema.optional(); } -}).strict(); -export const ArticleTagCountOutputTypeArgsObjectSchema = z.lazy(__makeSchema_ArticleTagCountOutputTypeArgs_schema); -export const ArticleTagCountOutputTypeArgsObjectZodSchema = z.lazy(__makeSchema_ArticleTagCountOutputTypeArgs_schema); - - -// File: ArticleTagCountOutputTypeCountArticlesArgs.schema.ts -const __makeSchema_ArticleTagCountOutputTypeCountArticlesArgs_schema = () => z.object({ - get where(){ return ArticleTagLinkWhereInputObjectSchema.optional(); } -}).strict(); -export const ArticleTagCountOutputTypeCountArticlesArgsObjectSchema = z.lazy(__makeSchema_ArticleTagCountOutputTypeCountArticlesArgs_schema); -export const ArticleTagCountOutputTypeCountArticlesArgsObjectZodSchema = z.lazy(__makeSchema_ArticleTagCountOutputTypeCountArticlesArgs_schema); - - -// File: TaskCountOutputTypeArgs.schema.ts -const __makeSchema_TaskCountOutputTypeArgs_schema = () => z.object({ - get select(){ return TaskCountOutputTypeSelectObjectSchema.optional(); } -}).strict(); -export const TaskCountOutputTypeArgsObjectSchema = z.lazy(__makeSchema_TaskCountOutputTypeArgs_schema); -export const TaskCountOutputTypeArgsObjectZodSchema = z.lazy(__makeSchema_TaskCountOutputTypeArgs_schema); - - -// File: TaskCountOutputTypeCountAttendancePoolsArgs.schema.ts -const __makeSchema_TaskCountOutputTypeCountAttendancePoolsArgs_schema = () => z.object({ - get where(){ return AttendancePoolWhereInputObjectSchema.optional(); } -}).strict(); -export const TaskCountOutputTypeCountAttendancePoolsArgsObjectSchema = z.lazy(__makeSchema_TaskCountOutputTypeCountAttendancePoolsArgs_schema); -export const TaskCountOutputTypeCountAttendancePoolsArgsObjectZodSchema = z.lazy(__makeSchema_TaskCountOutputTypeCountAttendancePoolsArgs_schema); - - -// File: TaskCountOutputTypeCountNotificationsArgs.schema.ts -const __makeSchema_TaskCountOutputTypeCountNotificationsArgs_schema = () => z.object({ - get where(){ return NotificationWhereInputObjectSchema.optional(); } -}).strict(); -export const TaskCountOutputTypeCountNotificationsArgsObjectSchema = z.lazy(__makeSchema_TaskCountOutputTypeCountNotificationsArgs_schema); -export const TaskCountOutputTypeCountNotificationsArgsObjectZodSchema = z.lazy(__makeSchema_TaskCountOutputTypeCountNotificationsArgs_schema); - - -// File: RecurringTaskCountOutputTypeArgs.schema.ts -const __makeSchema_RecurringTaskCountOutputTypeArgs_schema = () => z.object({ - get select(){ return RecurringTaskCountOutputTypeSelectObjectSchema.optional(); } -}).strict(); -export const RecurringTaskCountOutputTypeArgsObjectSchema = z.lazy(__makeSchema_RecurringTaskCountOutputTypeArgs_schema); -export const RecurringTaskCountOutputTypeArgsObjectZodSchema = z.lazy(__makeSchema_RecurringTaskCountOutputTypeArgs_schema); - - -// File: RecurringTaskCountOutputTypeCountTasksArgs.schema.ts -const __makeSchema_RecurringTaskCountOutputTypeCountTasksArgs_schema = () => z.object({ - get where(){ return TaskWhereInputObjectSchema.optional(); } -}).strict(); -export const RecurringTaskCountOutputTypeCountTasksArgsObjectSchema = z.lazy(__makeSchema_RecurringTaskCountOutputTypeCountTasksArgs_schema); -export const RecurringTaskCountOutputTypeCountTasksArgsObjectZodSchema = z.lazy(__makeSchema_RecurringTaskCountOutputTypeCountTasksArgs_schema); - - -// File: FeedbackFormCountOutputTypeArgs.schema.ts -const __makeSchema_FeedbackFormCountOutputTypeArgs_schema = () => z.object({ - get select(){ return FeedbackFormCountOutputTypeSelectObjectSchema.optional(); } -}).strict(); -export const FeedbackFormCountOutputTypeArgsObjectSchema = z.lazy(__makeSchema_FeedbackFormCountOutputTypeArgs_schema); -export const FeedbackFormCountOutputTypeArgsObjectZodSchema = z.lazy(__makeSchema_FeedbackFormCountOutputTypeArgs_schema); - - -// File: FeedbackFormCountOutputTypeCountQuestionsArgs.schema.ts -const __makeSchema_FeedbackFormCountOutputTypeCountQuestionsArgs_schema = () => z.object({ - get where(){ return FeedbackQuestionWhereInputObjectSchema.optional(); } -}).strict(); -export const FeedbackFormCountOutputTypeCountQuestionsArgsObjectSchema = z.lazy(__makeSchema_FeedbackFormCountOutputTypeCountQuestionsArgs_schema); -export const FeedbackFormCountOutputTypeCountQuestionsArgsObjectZodSchema = z.lazy(__makeSchema_FeedbackFormCountOutputTypeCountQuestionsArgs_schema); - - -// File: FeedbackFormCountOutputTypeCountAnswersArgs.schema.ts -const __makeSchema_FeedbackFormCountOutputTypeCountAnswersArgs_schema = () => z.object({ - get where(){ return FeedbackFormAnswerWhereInputObjectSchema.optional(); } -}).strict(); -export const FeedbackFormCountOutputTypeCountAnswersArgsObjectSchema = z.lazy(__makeSchema_FeedbackFormCountOutputTypeCountAnswersArgs_schema); -export const FeedbackFormCountOutputTypeCountAnswersArgsObjectZodSchema = z.lazy(__makeSchema_FeedbackFormCountOutputTypeCountAnswersArgs_schema); - - -// File: FeedbackQuestionCountOutputTypeArgs.schema.ts -const __makeSchema_FeedbackQuestionCountOutputTypeArgs_schema = () => z.object({ - get select(){ return FeedbackQuestionCountOutputTypeSelectObjectSchema.optional(); } -}).strict(); -export const FeedbackQuestionCountOutputTypeArgsObjectSchema = z.lazy(__makeSchema_FeedbackQuestionCountOutputTypeArgs_schema); -export const FeedbackQuestionCountOutputTypeArgsObjectZodSchema = z.lazy(__makeSchema_FeedbackQuestionCountOutputTypeArgs_schema); - - -// File: FeedbackQuestionCountOutputTypeCountOptionsArgs.schema.ts -const __makeSchema_FeedbackQuestionCountOutputTypeCountOptionsArgs_schema = () => z.object({ - get where(){ return FeedbackQuestionOptionWhereInputObjectSchema.optional(); } -}).strict(); -export const FeedbackQuestionCountOutputTypeCountOptionsArgsObjectSchema = z.lazy(__makeSchema_FeedbackQuestionCountOutputTypeCountOptionsArgs_schema); -export const FeedbackQuestionCountOutputTypeCountOptionsArgsObjectZodSchema = z.lazy(__makeSchema_FeedbackQuestionCountOutputTypeCountOptionsArgs_schema); - - -// File: FeedbackQuestionCountOutputTypeCountAnswersArgs.schema.ts -const __makeSchema_FeedbackQuestionCountOutputTypeCountAnswersArgs_schema = () => z.object({ - get where(){ return FeedbackQuestionAnswerWhereInputObjectSchema.optional(); } -}).strict(); -export const FeedbackQuestionCountOutputTypeCountAnswersArgsObjectSchema = z.lazy(__makeSchema_FeedbackQuestionCountOutputTypeCountAnswersArgs_schema); -export const FeedbackQuestionCountOutputTypeCountAnswersArgsObjectZodSchema = z.lazy(__makeSchema_FeedbackQuestionCountOutputTypeCountAnswersArgs_schema); - - -// File: FeedbackQuestionOptionCountOutputTypeArgs.schema.ts -const __makeSchema_FeedbackQuestionOptionCountOutputTypeArgs_schema = () => z.object({ - get select(){ return FeedbackQuestionOptionCountOutputTypeSelectObjectSchema.optional(); } -}).strict(); -export const FeedbackQuestionOptionCountOutputTypeArgsObjectSchema = z.lazy(__makeSchema_FeedbackQuestionOptionCountOutputTypeArgs_schema); -export const FeedbackQuestionOptionCountOutputTypeArgsObjectZodSchema = z.lazy(__makeSchema_FeedbackQuestionOptionCountOutputTypeArgs_schema); - - -// File: FeedbackQuestionOptionCountOutputTypeCountSelectedInAnswersArgs.schema.ts -const __makeSchema_FeedbackQuestionOptionCountOutputTypeCountSelectedInAnswersArgs_schema = () => z.object({ - get where(){ return FeedbackQuestionAnswerOptionLinkWhereInputObjectSchema.optional(); } -}).strict(); -export const FeedbackQuestionOptionCountOutputTypeCountSelectedInAnswersArgsObjectSchema = z.lazy(__makeSchema_FeedbackQuestionOptionCountOutputTypeCountSelectedInAnswersArgs_schema); -export const FeedbackQuestionOptionCountOutputTypeCountSelectedInAnswersArgsObjectZodSchema = z.lazy(__makeSchema_FeedbackQuestionOptionCountOutputTypeCountSelectedInAnswersArgs_schema); - - -// File: FeedbackQuestionAnswerCountOutputTypeArgs.schema.ts -const __makeSchema_FeedbackQuestionAnswerCountOutputTypeArgs_schema = () => z.object({ - get select(){ return FeedbackQuestionAnswerCountOutputTypeSelectObjectSchema.optional(); } -}).strict(); -export const FeedbackQuestionAnswerCountOutputTypeArgsObjectSchema = z.lazy(__makeSchema_FeedbackQuestionAnswerCountOutputTypeArgs_schema); -export const FeedbackQuestionAnswerCountOutputTypeArgsObjectZodSchema = z.lazy(__makeSchema_FeedbackQuestionAnswerCountOutputTypeArgs_schema); - - -// File: FeedbackQuestionAnswerCountOutputTypeCountSelectedOptionsArgs.schema.ts -const __makeSchema_FeedbackQuestionAnswerCountOutputTypeCountSelectedOptionsArgs_schema = () => z.object({ - get where(){ return FeedbackQuestionAnswerOptionLinkWhereInputObjectSchema.optional(); } -}).strict(); -export const FeedbackQuestionAnswerCountOutputTypeCountSelectedOptionsArgsObjectSchema = z.lazy(__makeSchema_FeedbackQuestionAnswerCountOutputTypeCountSelectedOptionsArgs_schema); -export const FeedbackQuestionAnswerCountOutputTypeCountSelectedOptionsArgsObjectZodSchema = z.lazy(__makeSchema_FeedbackQuestionAnswerCountOutputTypeCountSelectedOptionsArgs_schema); - - -// File: FeedbackFormAnswerCountOutputTypeArgs.schema.ts -const __makeSchema_FeedbackFormAnswerCountOutputTypeArgs_schema = () => z.object({ - get select(){ return FeedbackFormAnswerCountOutputTypeSelectObjectSchema.optional(); } -}).strict(); -export const FeedbackFormAnswerCountOutputTypeArgsObjectSchema = z.lazy(__makeSchema_FeedbackFormAnswerCountOutputTypeArgs_schema); -export const FeedbackFormAnswerCountOutputTypeArgsObjectZodSchema = z.lazy(__makeSchema_FeedbackFormAnswerCountOutputTypeArgs_schema); - - -// File: FeedbackFormAnswerCountOutputTypeCountAnswersArgs.schema.ts -const __makeSchema_FeedbackFormAnswerCountOutputTypeCountAnswersArgs_schema = () => z.object({ - get where(){ return FeedbackQuestionAnswerWhereInputObjectSchema.optional(); } -}).strict(); -export const FeedbackFormAnswerCountOutputTypeCountAnswersArgsObjectSchema = z.lazy(__makeSchema_FeedbackFormAnswerCountOutputTypeCountAnswersArgs_schema); -export const FeedbackFormAnswerCountOutputTypeCountAnswersArgsObjectZodSchema = z.lazy(__makeSchema_FeedbackFormAnswerCountOutputTypeCountAnswersArgs_schema); - - -// File: NotificationCountOutputTypeArgs.schema.ts -const __makeSchema_NotificationCountOutputTypeArgs_schema = () => z.object({ - get select(){ return NotificationCountOutputTypeSelectObjectSchema.optional(); } -}).strict(); -export const NotificationCountOutputTypeArgsObjectSchema = z.lazy(__makeSchema_NotificationCountOutputTypeArgs_schema); -export const NotificationCountOutputTypeArgsObjectZodSchema = z.lazy(__makeSchema_NotificationCountOutputTypeArgs_schema); - - -// File: NotificationCountOutputTypeCountRecipientsArgs.schema.ts -const __makeSchema_NotificationCountOutputTypeCountRecipientsArgs_schema = () => z.object({ - get where(){ return NotificationRecipientWhereInputObjectSchema.optional(); } -}).strict(); -export const NotificationCountOutputTypeCountRecipientsArgsObjectSchema = z.lazy(__makeSchema_NotificationCountOutputTypeCountRecipientsArgs_schema); -export const NotificationCountOutputTypeCountRecipientsArgsObjectZodSchema = z.lazy(__makeSchema_NotificationCountOutputTypeCountRecipientsArgs_schema); - - -// File: ContestCountOutputTypeArgs.schema.ts -const __makeSchema_ContestCountOutputTypeArgs_schema = () => z.object({ - get select(){ return ContestCountOutputTypeSelectObjectSchema.optional(); } -}).strict(); -export const ContestCountOutputTypeArgsObjectSchema = z.lazy(__makeSchema_ContestCountOutputTypeArgs_schema); -export const ContestCountOutputTypeArgsObjectZodSchema = z.lazy(__makeSchema_ContestCountOutputTypeArgs_schema); - - -// File: ContestCountOutputTypeCountContestantsArgs.schema.ts -const __makeSchema_ContestCountOutputTypeCountContestantsArgs_schema = () => z.object({ - get where(){ return ContestantWhereInputObjectSchema.optional(); } -}).strict(); -export const ContestCountOutputTypeCountContestantsArgsObjectSchema = z.lazy(__makeSchema_ContestCountOutputTypeCountContestantsArgs_schema); -export const ContestCountOutputTypeCountContestantsArgsObjectZodSchema = z.lazy(__makeSchema_ContestCountOutputTypeCountContestantsArgs_schema); - - -// File: ContestCountOutputTypeCountGroupsArgs.schema.ts -const __makeSchema_ContestCountOutputTypeCountGroupsArgs_schema = () => z.object({ - get where(){ return GroupWhereInputObjectSchema.optional(); } -}).strict(); -export const ContestCountOutputTypeCountGroupsArgsObjectSchema = z.lazy(__makeSchema_ContestCountOutputTypeCountGroupsArgs_schema); -export const ContestCountOutputTypeCountGroupsArgsObjectZodSchema = z.lazy(__makeSchema_ContestCountOutputTypeCountGroupsArgs_schema); - - -// File: ContestCountOutputTypeCountEventsArgs.schema.ts -const __makeSchema_ContestCountOutputTypeCountEventsArgs_schema = () => z.object({ - get where(){ return EventWhereInputObjectSchema.optional(); } -}).strict(); -export const ContestCountOutputTypeCountEventsArgsObjectSchema = z.lazy(__makeSchema_ContestCountOutputTypeCountEventsArgs_schema); -export const ContestCountOutputTypeCountEventsArgsObjectZodSchema = z.lazy(__makeSchema_ContestCountOutputTypeCountEventsArgs_schema); - - -// File: ContestTeamCountOutputTypeArgs.schema.ts -const __makeSchema_ContestTeamCountOutputTypeArgs_schema = () => z.object({ - get select(){ return ContestTeamCountOutputTypeSelectObjectSchema.optional(); } -}).strict(); -export const ContestTeamCountOutputTypeArgsObjectSchema = z.lazy(__makeSchema_ContestTeamCountOutputTypeArgs_schema); -export const ContestTeamCountOutputTypeArgsObjectZodSchema = z.lazy(__makeSchema_ContestTeamCountOutputTypeArgs_schema); - - -// File: ContestTeamCountOutputTypeCountMembersArgs.schema.ts -const __makeSchema_ContestTeamCountOutputTypeCountMembersArgs_schema = () => z.object({ - get where(){ return UserWhereInputObjectSchema.optional(); } -}).strict(); -export const ContestTeamCountOutputTypeCountMembersArgsObjectSchema = z.lazy(__makeSchema_ContestTeamCountOutputTypeCountMembersArgs_schema); -export const ContestTeamCountOutputTypeCountMembersArgsObjectZodSchema = z.lazy(__makeSchema_ContestTeamCountOutputTypeCountMembersArgs_schema); - - -// File: MembershipSelect.schema.ts -const __makeSchema_MembershipSelect_schema = () => z.object({ - id: z.boolean().optional(), - type: z.boolean().optional(), - specialization: z.boolean().optional(), - start: z.boolean().optional(), - end: z.boolean().optional(), - semester: z.boolean().optional(), - userId: z.boolean().optional(), - user: z.union([z.boolean(), UserArgsObjectSchema]).optional() -}).strict(); -export const MembershipSelectObjectSchema: z.ZodType = z.lazy(__makeSchema_MembershipSelect_schema) as unknown as z.ZodType; -export const MembershipSelectObjectZodSchema = z.lazy(__makeSchema_MembershipSelect_schema); - - -// File: UserSelect.schema.ts -const __makeSchema_UserSelect_schema = () => z.object({ - id: z.boolean().optional(), - username: z.boolean().optional(), - name: z.boolean().optional(), - email: z.boolean().optional(), - imageUrl: z.boolean().optional(), - biography: z.boolean().optional(), - phone: z.boolean().optional(), - gender: z.boolean().optional(), - dietaryRestrictions: z.boolean().optional(), - ntnuUsername: z.boolean().optional(), - flags: z.boolean().optional(), - workspaceUserId: z.boolean().optional(), - createdAt: z.boolean().optional(), - updatedAt: z.boolean().optional(), - privacyPermissionsId: z.boolean().optional(), - privacyPermissions: z.union([z.boolean(), PrivacyPermissionsArgsObjectSchema]).optional(), - notificationPermissionsId: z.boolean().optional(), - notificationPermissions: z.union([z.boolean(), NotificationPermissionsArgsObjectSchema]).optional(), - attendee: z.union([z.boolean(), AttendeeFindManySchema]).optional(), - personalMark: z.union([z.boolean(), PersonalMarkFindManySchema]).optional(), - groupMemberships: z.union([z.boolean(), GroupMembershipFindManySchema]).optional(), - memberships: z.union([z.boolean(), MembershipFindManySchema]).optional(), - givenMarks: z.union([z.boolean(), PersonalMarkFindManySchema]).optional(), - attendeesRefunded: z.union([z.boolean(), AttendeeFindManySchema]).optional(), - auditLogs: z.union([z.boolean(), AuditLogFindManySchema]).optional(), - deregisterReasons: z.union([z.boolean(), DeregisterReasonFindManySchema]).optional(), - notificationsReceived: z.union([z.boolean(), NotificationRecipientFindManySchema]).optional(), - notificationsCreated: z.union([z.boolean(), NotificationFindManySchema]).optional(), - notificationsUpdated: z.union([z.boolean(), NotificationFindManySchema]).optional(), - contestants: z.union([z.boolean(), ContestantFindManySchema]).optional(), - contestTeams: z.union([z.boolean(), ContestTeamFindManySchema]).optional(), - _count: z.union([z.boolean(), UserCountOutputTypeArgsObjectSchema]).optional() -}).strict(); -export const UserSelectObjectSchema: z.ZodType = z.lazy(__makeSchema_UserSelect_schema) as unknown as z.ZodType; -export const UserSelectObjectZodSchema = z.lazy(__makeSchema_UserSelect_schema); - - -// File: CompanySelect.schema.ts -const __makeSchema_CompanySelect_schema = () => z.object({ - id: z.boolean().optional(), - name: z.boolean().optional(), - slug: z.boolean().optional(), - description: z.boolean().optional(), - phone: z.boolean().optional(), - email: z.boolean().optional(), - website: z.boolean().optional(), - location: z.boolean().optional(), - imageUrl: z.boolean().optional(), - createdAt: z.boolean().optional(), - updatedAt: z.boolean().optional(), - events: z.union([z.boolean(), EventCompanyFindManySchema]).optional(), - JobListing: z.union([z.boolean(), JobListingFindManySchema]).optional(), - _count: z.union([z.boolean(), CompanyCountOutputTypeArgsObjectSchema]).optional() -}).strict(); -export const CompanySelectObjectSchema: z.ZodType = z.lazy(__makeSchema_CompanySelect_schema) as unknown as z.ZodType; -export const CompanySelectObjectZodSchema = z.lazy(__makeSchema_CompanySelect_schema); - - -// File: GroupSelect.schema.ts -const __makeSchema_GroupSelect_schema = () => z.object({ - slug: z.boolean().optional(), - abbreviation: z.boolean().optional(), - name: z.boolean().optional(), - shortDescription: z.boolean().optional(), - description: z.boolean().optional(), - imageUrl: z.boolean().optional(), - email: z.boolean().optional(), - contactUrl: z.boolean().optional(), - slackUrl: z.boolean().optional(), - showLeaderAsContact: z.boolean().optional(), - createdAt: z.boolean().optional(), - deactivatedAt: z.boolean().optional(), - workspaceGroupId: z.boolean().optional(), - memberVisibility: z.boolean().optional(), - recruitmentMethod: z.boolean().optional(), - type: z.boolean().optional(), - events: z.union([z.boolean(), EventHostingGroupFindManySchema]).optional(), - contests: z.union([z.boolean(), ContestFindManySchema]).optional(), - memberships: z.union([z.boolean(), GroupMembershipFindManySchema]).optional(), - marks: z.union([z.boolean(), MarkGroupFindManySchema]).optional(), - roles: z.union([z.boolean(), GroupRoleFindManySchema]).optional(), - notifications: z.union([z.boolean(), NotificationFindManySchema]).optional(), - _count: z.union([z.boolean(), GroupCountOutputTypeArgsObjectSchema]).optional() -}).strict(); -export const GroupSelectObjectSchema: z.ZodType = z.lazy(__makeSchema_GroupSelect_schema) as unknown as z.ZodType; -export const GroupSelectObjectZodSchema = z.lazy(__makeSchema_GroupSelect_schema); - - -// File: GroupMembershipSelect.schema.ts -const __makeSchema_GroupMembershipSelect_schema = () => z.object({ - id: z.boolean().optional(), - start: z.boolean().optional(), - end: z.boolean().optional(), - createdAt: z.boolean().optional(), - updatedAt: z.boolean().optional(), - groupId: z.boolean().optional(), - userId: z.boolean().optional(), - group: z.union([z.boolean(), GroupArgsObjectSchema]).optional(), - user: z.union([z.boolean(), UserArgsObjectSchema]).optional(), - roles: z.union([z.boolean(), GroupMembershipRoleFindManySchema]).optional(), - _count: z.union([z.boolean(), GroupMembershipCountOutputTypeArgsObjectSchema]).optional() -}).strict(); -export const GroupMembershipSelectObjectSchema: z.ZodType = z.lazy(__makeSchema_GroupMembershipSelect_schema) as unknown as z.ZodType; -export const GroupMembershipSelectObjectZodSchema = z.lazy(__makeSchema_GroupMembershipSelect_schema); - - -// File: GroupMembershipRoleSelect.schema.ts -const __makeSchema_GroupMembershipRoleSelect_schema = () => z.object({ - membershipId: z.boolean().optional(), - roleId: z.boolean().optional(), - membership: z.union([z.boolean(), GroupMembershipArgsObjectSchema]).optional(), - role: z.union([z.boolean(), GroupRoleArgsObjectSchema]).optional() -}).strict(); -export const GroupMembershipRoleSelectObjectSchema: z.ZodType = z.lazy(__makeSchema_GroupMembershipRoleSelect_schema) as unknown as z.ZodType; -export const GroupMembershipRoleSelectObjectZodSchema = z.lazy(__makeSchema_GroupMembershipRoleSelect_schema); - - -// File: GroupRoleSelect.schema.ts -const __makeSchema_GroupRoleSelect_schema = () => z.object({ - id: z.boolean().optional(), - name: z.boolean().optional(), - type: z.boolean().optional(), - groupId: z.boolean().optional(), - group: z.union([z.boolean(), GroupArgsObjectSchema]).optional(), - groupMembershipRoles: z.union([z.boolean(), GroupMembershipRoleFindManySchema]).optional(), - _count: z.union([z.boolean(), GroupRoleCountOutputTypeArgsObjectSchema]).optional() -}).strict(); -export const GroupRoleSelectObjectSchema: z.ZodType = z.lazy(__makeSchema_GroupRoleSelect_schema) as unknown as z.ZodType; -export const GroupRoleSelectObjectZodSchema = z.lazy(__makeSchema_GroupRoleSelect_schema); - - -// File: AttendanceSelect.schema.ts -const __makeSchema_AttendanceSelect_schema = () => z.object({ - id: z.boolean().optional(), - registerStart: z.boolean().optional(), - registerEnd: z.boolean().optional(), - deregisterDeadline: z.boolean().optional(), - selections: z.boolean().optional(), - createdAt: z.boolean().optional(), - updatedAt: z.boolean().optional(), - attendancePrice: z.boolean().optional(), - pools: z.union([z.boolean(), AttendancePoolFindManySchema]).optional(), - attendees: z.union([z.boolean(), AttendeeFindManySchema]).optional(), - events: z.union([z.boolean(), EventFindManySchema]).optional(), - _count: z.union([z.boolean(), AttendanceCountOutputTypeArgsObjectSchema]).optional() -}).strict(); -export const AttendanceSelectObjectSchema: z.ZodType = z.lazy(__makeSchema_AttendanceSelect_schema) as unknown as z.ZodType; -export const AttendanceSelectObjectZodSchema = z.lazy(__makeSchema_AttendanceSelect_schema); - - -// File: AttendancePoolSelect.schema.ts -const __makeSchema_AttendancePoolSelect_schema = () => z.object({ - id: z.boolean().optional(), - title: z.boolean().optional(), - mergeDelayHours: z.boolean().optional(), - yearCriteria: z.boolean().optional(), - capacity: z.boolean().optional(), - createdAt: z.boolean().optional(), - updatedAt: z.boolean().optional(), - attendanceId: z.boolean().optional(), - taskId: z.boolean().optional(), - attendance: z.union([z.boolean(), AttendanceArgsObjectSchema]).optional(), - task: z.union([z.boolean(), TaskArgsObjectSchema]).optional(), - attendees: z.union([z.boolean(), AttendeeFindManySchema]).optional(), - _count: z.union([z.boolean(), AttendancePoolCountOutputTypeArgsObjectSchema]).optional() -}).strict(); -export const AttendancePoolSelectObjectSchema: z.ZodType = z.lazy(__makeSchema_AttendancePoolSelect_schema) as unknown as z.ZodType; -export const AttendancePoolSelectObjectZodSchema = z.lazy(__makeSchema_AttendancePoolSelect_schema); - - -// File: AttendeeSelect.schema.ts -const __makeSchema_AttendeeSelect_schema = () => z.object({ - id: z.boolean().optional(), - userGrade: z.boolean().optional(), - feedbackFormAnswer: z.union([z.boolean(), FeedbackFormAnswerArgsObjectSchema]).optional(), - selections: z.boolean().optional(), - reserved: z.boolean().optional(), - earliestReservationAt: z.boolean().optional(), - attendedAt: z.boolean().optional(), - createdAt: z.boolean().optional(), - updatedAt: z.boolean().optional(), - paymentDeadline: z.boolean().optional(), - paymentLink: z.boolean().optional(), - paymentId: z.boolean().optional(), - paymentReservedAt: z.boolean().optional(), - paymentChargeDeadline: z.boolean().optional(), - paymentChargedAt: z.boolean().optional(), - paymentRefundedAt: z.boolean().optional(), - paymentCheckoutUrl: z.boolean().optional(), - attendanceId: z.boolean().optional(), - userId: z.boolean().optional(), - attendancePoolId: z.boolean().optional(), - paymentRefundedById: z.boolean().optional(), - attendance: z.union([z.boolean(), AttendanceArgsObjectSchema]).optional(), - user: z.union([z.boolean(), UserArgsObjectSchema]).optional(), - attendancePool: z.union([z.boolean(), AttendancePoolArgsObjectSchema]).optional(), - paymentRefundedBy: z.union([z.boolean(), UserArgsObjectSchema]).optional() -}).strict(); -export const AttendeeSelectObjectSchema: z.ZodType = z.lazy(__makeSchema_AttendeeSelect_schema) as unknown as z.ZodType; -export const AttendeeSelectObjectZodSchema = z.lazy(__makeSchema_AttendeeSelect_schema); - - -// File: EventSelect.schema.ts -const __makeSchema_EventSelect_schema = () => z.object({ - id: z.boolean().optional(), - title: z.boolean().optional(), - start: z.boolean().optional(), - end: z.boolean().optional(), - status: z.boolean().optional(), - description: z.boolean().optional(), - shortDescription: z.boolean().optional(), - imageUrl: z.boolean().optional(), - locationTitle: z.boolean().optional(), - locationAddress: z.boolean().optional(), - locationLink: z.boolean().optional(), - type: z.boolean().optional(), - feedbackForm: z.union([z.boolean(), FeedbackFormArgsObjectSchema]).optional(), - markForMissedAttendance: z.boolean().optional(), - fadderuke: z.union([z.boolean(), FadderukeArgsObjectSchema]).optional(), - createdAt: z.boolean().optional(), - updatedAt: z.boolean().optional(), - attendanceId: z.boolean().optional(), - parentId: z.boolean().optional(), - contestId: z.boolean().optional(), - attendance: z.union([z.boolean(), AttendanceArgsObjectSchema]).optional(), - parent: z.union([z.boolean(), EventArgsObjectSchema]).optional(), - children: z.union([z.boolean(), EventFindManySchema]).optional(), - contest: z.union([z.boolean(), ContestArgsObjectSchema]).optional(), - companies: z.union([z.boolean(), EventCompanyFindManySchema]).optional(), - hostingGroups: z.union([z.boolean(), EventHostingGroupFindManySchema]).optional(), - deregisterReasons: z.union([z.boolean(), DeregisterReasonFindManySchema]).optional(), - metadataImportId: z.boolean().optional(), - _count: z.union([z.boolean(), EventCountOutputTypeArgsObjectSchema]).optional() -}).strict(); -export const EventSelectObjectSchema: z.ZodType = z.lazy(__makeSchema_EventSelect_schema) as unknown as z.ZodType; -export const EventSelectObjectZodSchema = z.lazy(__makeSchema_EventSelect_schema); - - -// File: EventCompanySelect.schema.ts -const __makeSchema_EventCompanySelect_schema = () => z.object({ - eventId: z.boolean().optional(), - companyId: z.boolean().optional(), - event: z.union([z.boolean(), EventArgsObjectSchema]).optional(), - company: z.union([z.boolean(), CompanyArgsObjectSchema]).optional() -}).strict(); -export const EventCompanySelectObjectSchema: z.ZodType = z.lazy(__makeSchema_EventCompanySelect_schema) as unknown as z.ZodType; -export const EventCompanySelectObjectZodSchema = z.lazy(__makeSchema_EventCompanySelect_schema); - - -// File: MarkSelect.schema.ts -const __makeSchema_MarkSelect_schema = () => z.object({ - id: z.boolean().optional(), - title: z.boolean().optional(), - details: z.boolean().optional(), - duration: z.boolean().optional(), - weight: z.boolean().optional(), - type: z.boolean().optional(), - createdAt: z.boolean().optional(), - updatedAt: z.boolean().optional(), - users: z.union([z.boolean(), PersonalMarkFindManySchema]).optional(), - groups: z.union([z.boolean(), MarkGroupFindManySchema]).optional(), - _count: z.union([z.boolean(), MarkCountOutputTypeArgsObjectSchema]).optional() -}).strict(); -export const MarkSelectObjectSchema: z.ZodType = z.lazy(__makeSchema_MarkSelect_schema) as unknown as z.ZodType; -export const MarkSelectObjectZodSchema = z.lazy(__makeSchema_MarkSelect_schema); - - -// File: MarkGroupSelect.schema.ts -const __makeSchema_MarkGroupSelect_schema = () => z.object({ - markId: z.boolean().optional(), - groupId: z.boolean().optional(), - mark: z.union([z.boolean(), MarkArgsObjectSchema]).optional(), - group: z.union([z.boolean(), GroupArgsObjectSchema]).optional() -}).strict(); -export const MarkGroupSelectObjectSchema: z.ZodType = z.lazy(__makeSchema_MarkGroupSelect_schema) as unknown as z.ZodType; -export const MarkGroupSelectObjectZodSchema = z.lazy(__makeSchema_MarkGroupSelect_schema); - - -// File: PersonalMarkSelect.schema.ts -const __makeSchema_PersonalMarkSelect_schema = () => z.object({ - createdAt: z.boolean().optional(), - markId: z.boolean().optional(), - userId: z.boolean().optional(), - givenById: z.boolean().optional(), - mark: z.union([z.boolean(), MarkArgsObjectSchema]).optional(), - user: z.union([z.boolean(), UserArgsObjectSchema]).optional(), - givenBy: z.union([z.boolean(), UserArgsObjectSchema]).optional() -}).strict(); -export const PersonalMarkSelectObjectSchema: z.ZodType = z.lazy(__makeSchema_PersonalMarkSelect_schema) as unknown as z.ZodType; -export const PersonalMarkSelectObjectZodSchema = z.lazy(__makeSchema_PersonalMarkSelect_schema); - - -// File: PrivacyPermissionsSelect.schema.ts -const __makeSchema_PrivacyPermissionsSelect_schema = () => z.object({ - id: z.boolean().optional(), - user: z.union([z.boolean(), UserArgsObjectSchema]).optional(), - userId: z.boolean().optional(), - profileVisible: z.boolean().optional(), - usernameVisible: z.boolean().optional(), - emailVisible: z.boolean().optional(), - phoneVisible: z.boolean().optional(), - addressVisible: z.boolean().optional(), - attendanceVisible: z.boolean().optional(), - createdAt: z.boolean().optional(), - updatedAt: z.boolean().optional() -}).strict(); -export const PrivacyPermissionsSelectObjectSchema: z.ZodType = z.lazy(__makeSchema_PrivacyPermissionsSelect_schema) as unknown as z.ZodType; -export const PrivacyPermissionsSelectObjectZodSchema = z.lazy(__makeSchema_PrivacyPermissionsSelect_schema); - - -// File: NotificationPermissionsSelect.schema.ts -const __makeSchema_NotificationPermissionsSelect_schema = () => z.object({ - id: z.boolean().optional(), - user: z.union([z.boolean(), UserArgsObjectSchema]).optional(), - userId: z.boolean().optional(), - applications: z.boolean().optional(), - newArticles: z.boolean().optional(), - standardNotifications: z.boolean().optional(), - groupMessages: z.boolean().optional(), - markRulesUpdates: z.boolean().optional(), - receipts: z.boolean().optional(), - registrationByAdministrator: z.boolean().optional(), - registrationStart: z.boolean().optional(), - createdAt: z.boolean().optional(), - updatedAt: z.boolean().optional() -}).strict(); -export const NotificationPermissionsSelectObjectSchema: z.ZodType = z.lazy(__makeSchema_NotificationPermissionsSelect_schema) as unknown as z.ZodType; -export const NotificationPermissionsSelectObjectZodSchema = z.lazy(__makeSchema_NotificationPermissionsSelect_schema); - - -// File: EventHostingGroupSelect.schema.ts -const __makeSchema_EventHostingGroupSelect_schema = () => z.object({ - groupId: z.boolean().optional(), - eventId: z.boolean().optional(), - group: z.union([z.boolean(), GroupArgsObjectSchema]).optional(), - event: z.union([z.boolean(), EventArgsObjectSchema]).optional() -}).strict(); -export const EventHostingGroupSelectObjectSchema: z.ZodType = z.lazy(__makeSchema_EventHostingGroupSelect_schema) as unknown as z.ZodType; -export const EventHostingGroupSelectObjectZodSchema = z.lazy(__makeSchema_EventHostingGroupSelect_schema); - - -// File: JobListingSelect.schema.ts -const __makeSchema_JobListingSelect_schema = () => z.object({ - id: z.boolean().optional(), - title: z.boolean().optional(), - description: z.boolean().optional(), - shortDescription: z.boolean().optional(), - start: z.boolean().optional(), - end: z.boolean().optional(), - featured: z.boolean().optional(), - hidden: z.boolean().optional(), - deadline: z.boolean().optional(), - employment: z.boolean().optional(), - applicationLink: z.boolean().optional(), - applicationEmail: z.boolean().optional(), - rollingAdmission: z.boolean().optional(), - createdAt: z.boolean().optional(), - updatedAt: z.boolean().optional(), - companyId: z.boolean().optional(), - company: z.union([z.boolean(), CompanyArgsObjectSchema]).optional(), - locations: z.union([z.boolean(), JobListingLocationFindManySchema]).optional(), - _count: z.union([z.boolean(), JobListingCountOutputTypeArgsObjectSchema]).optional() -}).strict(); -export const JobListingSelectObjectSchema: z.ZodType = z.lazy(__makeSchema_JobListingSelect_schema) as unknown as z.ZodType; -export const JobListingSelectObjectZodSchema = z.lazy(__makeSchema_JobListingSelect_schema); - - -// File: JobListingLocationSelect.schema.ts -const __makeSchema_JobListingLocationSelect_schema = () => z.object({ - name: z.boolean().optional(), - createdAt: z.boolean().optional(), - jobListingId: z.boolean().optional(), - jobListing: z.union([z.boolean(), JobListingArgsObjectSchema]).optional() -}).strict(); -export const JobListingLocationSelectObjectSchema: z.ZodType = z.lazy(__makeSchema_JobListingLocationSelect_schema) as unknown as z.ZodType; -export const JobListingLocationSelectObjectZodSchema = z.lazy(__makeSchema_JobListingLocationSelect_schema); - - -// File: OfflineSelect.schema.ts -const __makeSchema_OfflineSelect_schema = () => z.object({ - id: z.boolean().optional(), - title: z.boolean().optional(), - fileUrl: z.boolean().optional(), - imageUrl: z.boolean().optional(), - publishedAt: z.boolean().optional(), - createdAt: z.boolean().optional(), - updatedAt: z.boolean().optional() -}).strict(); -export const OfflineSelectObjectSchema: z.ZodType = z.lazy(__makeSchema_OfflineSelect_schema) as unknown as z.ZodType; -export const OfflineSelectObjectZodSchema = z.lazy(__makeSchema_OfflineSelect_schema); - - -// File: ArticleSelect.schema.ts -const __makeSchema_ArticleSelect_schema = () => z.object({ - id: z.boolean().optional(), - slug: z.boolean().optional(), - title: z.boolean().optional(), - author: z.boolean().optional(), - photographer: z.boolean().optional(), - imageUrl: z.boolean().optional(), - excerpt: z.boolean().optional(), - content: z.boolean().optional(), - isFeatured: z.boolean().optional(), - vimeoId: z.boolean().optional(), - createdAt: z.boolean().optional(), - updatedAt: z.boolean().optional(), - tags: z.union([z.boolean(), ArticleTagLinkFindManySchema]).optional(), - _count: z.union([z.boolean(), ArticleCountOutputTypeArgsObjectSchema]).optional() -}).strict(); -export const ArticleSelectObjectSchema: z.ZodType = z.lazy(__makeSchema_ArticleSelect_schema) as unknown as z.ZodType; -export const ArticleSelectObjectZodSchema = z.lazy(__makeSchema_ArticleSelect_schema); - - -// File: ArticleTagSelect.schema.ts -const __makeSchema_ArticleTagSelect_schema = () => z.object({ - name: z.boolean().optional(), - articles: z.union([z.boolean(), ArticleTagLinkFindManySchema]).optional(), - _count: z.union([z.boolean(), ArticleTagCountOutputTypeArgsObjectSchema]).optional() -}).strict(); -export const ArticleTagSelectObjectSchema: z.ZodType = z.lazy(__makeSchema_ArticleTagSelect_schema) as unknown as z.ZodType; -export const ArticleTagSelectObjectZodSchema = z.lazy(__makeSchema_ArticleTagSelect_schema); - - -// File: ArticleTagLinkSelect.schema.ts -const __makeSchema_ArticleTagLinkSelect_schema = () => z.object({ - articleId: z.boolean().optional(), - tagName: z.boolean().optional(), - article: z.union([z.boolean(), ArticleArgsObjectSchema]).optional(), - tag: z.union([z.boolean(), ArticleTagArgsObjectSchema]).optional() -}).strict(); -export const ArticleTagLinkSelectObjectSchema: z.ZodType = z.lazy(__makeSchema_ArticleTagLinkSelect_schema) as unknown as z.ZodType; -export const ArticleTagLinkSelectObjectZodSchema = z.lazy(__makeSchema_ArticleTagLinkSelect_schema); - - -// File: TaskSelect.schema.ts -const __makeSchema_TaskSelect_schema = () => z.object({ - id: z.boolean().optional(), - type: z.boolean().optional(), - status: z.boolean().optional(), - payload: z.boolean().optional(), - createdAt: z.boolean().optional(), - scheduledAt: z.boolean().optional(), - processedAt: z.boolean().optional(), - recurringTaskId: z.boolean().optional(), - recurringTask: z.union([z.boolean(), RecurringTaskArgsObjectSchema]).optional(), - attendancePools: z.union([z.boolean(), AttendancePoolFindManySchema]).optional(), - notifications: z.union([z.boolean(), NotificationFindManySchema]).optional(), - _count: z.union([z.boolean(), TaskCountOutputTypeArgsObjectSchema]).optional() -}).strict(); -export const TaskSelectObjectSchema: z.ZodType = z.lazy(__makeSchema_TaskSelect_schema) as unknown as z.ZodType; -export const TaskSelectObjectZodSchema = z.lazy(__makeSchema_TaskSelect_schema); - - -// File: RecurringTaskSelect.schema.ts -const __makeSchema_RecurringTaskSelect_schema = () => z.object({ - id: z.boolean().optional(), - type: z.boolean().optional(), - payload: z.boolean().optional(), - createdAt: z.boolean().optional(), - schedule: z.boolean().optional(), - lastRunAt: z.boolean().optional(), - nextRunAt: z.boolean().optional(), - tasks: z.union([z.boolean(), TaskFindManySchema]).optional(), - _count: z.union([z.boolean(), RecurringTaskCountOutputTypeArgsObjectSchema]).optional() -}).strict(); -export const RecurringTaskSelectObjectSchema: z.ZodType = z.lazy(__makeSchema_RecurringTaskSelect_schema) as unknown as z.ZodType; -export const RecurringTaskSelectObjectZodSchema = z.lazy(__makeSchema_RecurringTaskSelect_schema); - - -// File: FeedbackFormSelect.schema.ts -const __makeSchema_FeedbackFormSelect_schema = () => z.object({ - id: z.boolean().optional(), - publicResultsToken: z.boolean().optional(), - createdAt: z.boolean().optional(), - updatedAt: z.boolean().optional(), - answerDeadline: z.boolean().optional(), - eventId: z.boolean().optional(), - event: z.union([z.boolean(), EventArgsObjectSchema]).optional(), - questions: z.union([z.boolean(), FeedbackQuestionFindManySchema]).optional(), - answers: z.union([z.boolean(), FeedbackFormAnswerFindManySchema]).optional(), - _count: z.union([z.boolean(), FeedbackFormCountOutputTypeArgsObjectSchema]).optional() -}).strict(); -export const FeedbackFormSelectObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackFormSelect_schema) as unknown as z.ZodType; -export const FeedbackFormSelectObjectZodSchema = z.lazy(__makeSchema_FeedbackFormSelect_schema); - - -// File: FeedbackQuestionSelect.schema.ts -const __makeSchema_FeedbackQuestionSelect_schema = () => z.object({ - id: z.boolean().optional(), - label: z.boolean().optional(), - required: z.boolean().optional(), - showInPublicResults: z.boolean().optional(), - type: z.boolean().optional(), - order: z.boolean().optional(), - createdAt: z.boolean().optional(), - updatedAt: z.boolean().optional(), - feedbackFormId: z.boolean().optional(), - feedbackForm: z.union([z.boolean(), FeedbackFormArgsObjectSchema]).optional(), - options: z.union([z.boolean(), FeedbackQuestionOptionFindManySchema]).optional(), - answers: z.union([z.boolean(), FeedbackQuestionAnswerFindManySchema]).optional(), - _count: z.union([z.boolean(), FeedbackQuestionCountOutputTypeArgsObjectSchema]).optional() -}).strict(); -export const FeedbackQuestionSelectObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackQuestionSelect_schema) as unknown as z.ZodType; -export const FeedbackQuestionSelectObjectZodSchema = z.lazy(__makeSchema_FeedbackQuestionSelect_schema); - - -// File: FeedbackQuestionOptionSelect.schema.ts -const __makeSchema_FeedbackQuestionOptionSelect_schema = () => z.object({ - id: z.boolean().optional(), - name: z.boolean().optional(), - questionId: z.boolean().optional(), - question: z.union([z.boolean(), FeedbackQuestionArgsObjectSchema]).optional(), - selectedInAnswers: z.union([z.boolean(), FeedbackQuestionAnswerOptionLinkFindManySchema]).optional(), - _count: z.union([z.boolean(), FeedbackQuestionOptionCountOutputTypeArgsObjectSchema]).optional() -}).strict(); -export const FeedbackQuestionOptionSelectObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackQuestionOptionSelect_schema) as unknown as z.ZodType; -export const FeedbackQuestionOptionSelectObjectZodSchema = z.lazy(__makeSchema_FeedbackQuestionOptionSelect_schema); - - -// File: FeedbackQuestionAnswerSelect.schema.ts -const __makeSchema_FeedbackQuestionAnswerSelect_schema = () => z.object({ - id: z.boolean().optional(), - value: z.boolean().optional(), - questionId: z.boolean().optional(), - formAnswerId: z.boolean().optional(), - question: z.union([z.boolean(), FeedbackQuestionArgsObjectSchema]).optional(), - formAnswer: z.union([z.boolean(), FeedbackFormAnswerArgsObjectSchema]).optional(), - selectedOptions: z.union([z.boolean(), FeedbackQuestionAnswerOptionLinkFindManySchema]).optional(), - _count: z.union([z.boolean(), FeedbackQuestionAnswerCountOutputTypeArgsObjectSchema]).optional() -}).strict(); -export const FeedbackQuestionAnswerSelectObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackQuestionAnswerSelect_schema) as unknown as z.ZodType; -export const FeedbackQuestionAnswerSelectObjectZodSchema = z.lazy(__makeSchema_FeedbackQuestionAnswerSelect_schema); - - -// File: FeedbackQuestionAnswerOptionLinkSelect.schema.ts -const __makeSchema_FeedbackQuestionAnswerOptionLinkSelect_schema = () => z.object({ - feedbackQuestionOptionId: z.boolean().optional(), - feedbackQuestionAnswerId: z.boolean().optional(), - feedbackQuestionOption: z.union([z.boolean(), FeedbackQuestionOptionArgsObjectSchema]).optional(), - feedbackQuestionAnswer: z.union([z.boolean(), FeedbackQuestionAnswerArgsObjectSchema]).optional() -}).strict(); -export const FeedbackQuestionAnswerOptionLinkSelectObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackQuestionAnswerOptionLinkSelect_schema) as unknown as z.ZodType; -export const FeedbackQuestionAnswerOptionLinkSelectObjectZodSchema = z.lazy(__makeSchema_FeedbackQuestionAnswerOptionLinkSelect_schema); - - -// File: FeedbackFormAnswerSelect.schema.ts -const __makeSchema_FeedbackFormAnswerSelect_schema = () => z.object({ - id: z.boolean().optional(), - createdAt: z.boolean().optional(), - updatedAt: z.boolean().optional(), - feedbackFormId: z.boolean().optional(), - attendeeId: z.boolean().optional(), - feedbackForm: z.union([z.boolean(), FeedbackFormArgsObjectSchema]).optional(), - attendee: z.union([z.boolean(), AttendeeArgsObjectSchema]).optional(), - answers: z.union([z.boolean(), FeedbackQuestionAnswerFindManySchema]).optional(), - _count: z.union([z.boolean(), FeedbackFormAnswerCountOutputTypeArgsObjectSchema]).optional() -}).strict(); -export const FeedbackFormAnswerSelectObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackFormAnswerSelect_schema) as unknown as z.ZodType; -export const FeedbackFormAnswerSelectObjectZodSchema = z.lazy(__makeSchema_FeedbackFormAnswerSelect_schema); - - -// File: AuditLogSelect.schema.ts -const __makeSchema_AuditLogSelect_schema = () => z.object({ - id: z.boolean().optional(), - tableName: z.boolean().optional(), - rowId: z.boolean().optional(), - createdAt: z.boolean().optional(), - operation: z.boolean().optional(), - rowData: z.boolean().optional(), - transactionId: z.boolean().optional(), - user: z.union([z.boolean(), UserArgsObjectSchema]).optional(), - userId: z.boolean().optional() -}).strict(); -export const AuditLogSelectObjectSchema: z.ZodType = z.lazy(__makeSchema_AuditLogSelect_schema) as unknown as z.ZodType; -export const AuditLogSelectObjectZodSchema = z.lazy(__makeSchema_AuditLogSelect_schema); - - -// File: DeregisterReasonSelect.schema.ts -const __makeSchema_DeregisterReasonSelect_schema = () => z.object({ - id: z.boolean().optional(), - createdAt: z.boolean().optional(), - registeredAt: z.boolean().optional(), - type: z.boolean().optional(), - details: z.boolean().optional(), - userGrade: z.boolean().optional(), - userId: z.boolean().optional(), - eventId: z.boolean().optional(), - user: z.union([z.boolean(), UserArgsObjectSchema]).optional(), - event: z.union([z.boolean(), EventArgsObjectSchema]).optional() -}).strict(); -export const DeregisterReasonSelectObjectSchema: z.ZodType = z.lazy(__makeSchema_DeregisterReasonSelect_schema) as unknown as z.ZodType; -export const DeregisterReasonSelectObjectZodSchema = z.lazy(__makeSchema_DeregisterReasonSelect_schema); - - -// File: NotificationRecipientSelect.schema.ts -const __makeSchema_NotificationRecipientSelect_schema = () => z.object({ - id: z.boolean().optional(), - readAt: z.boolean().optional(), - notificationId: z.boolean().optional(), - notification: z.union([z.boolean(), NotificationArgsObjectSchema]).optional(), - userId: z.boolean().optional(), - user: z.union([z.boolean(), UserArgsObjectSchema]).optional() -}).strict(); -export const NotificationRecipientSelectObjectSchema: z.ZodType = z.lazy(__makeSchema_NotificationRecipientSelect_schema) as unknown as z.ZodType; -export const NotificationRecipientSelectObjectZodSchema = z.lazy(__makeSchema_NotificationRecipientSelect_schema); - - -// File: NotificationSelect.schema.ts -const __makeSchema_NotificationSelect_schema = () => z.object({ - id: z.boolean().optional(), - createdAt: z.boolean().optional(), - updatedAt: z.boolean().optional(), - title: z.boolean().optional(), - shortDescription: z.boolean().optional(), - content: z.boolean().optional(), - type: z.boolean().optional(), - payload: z.boolean().optional(), - payloadType: z.boolean().optional(), - actorGroupId: z.boolean().optional(), - actorGroup: z.union([z.boolean(), GroupArgsObjectSchema]).optional(), - createdById: z.boolean().optional(), - createdBy: z.union([z.boolean(), UserArgsObjectSchema]).optional(), - lastUpdatedById: z.boolean().optional(), - lastUpdatedBy: z.union([z.boolean(), UserArgsObjectSchema]).optional(), - taskId: z.boolean().optional(), - task: z.union([z.boolean(), TaskArgsObjectSchema]).optional(), - recipients: z.union([z.boolean(), NotificationRecipientFindManySchema]).optional(), - _count: z.union([z.boolean(), NotificationCountOutputTypeArgsObjectSchema]).optional() -}).strict(); -export const NotificationSelectObjectSchema: z.ZodType = z.lazy(__makeSchema_NotificationSelect_schema) as unknown as z.ZodType; -export const NotificationSelectObjectZodSchema = z.lazy(__makeSchema_NotificationSelect_schema); - - -// File: ContestSelect.schema.ts -const __makeSchema_ContestSelect_schema = () => z.object({ - id: z.boolean().optional(), - name: z.boolean().optional(), - description: z.boolean().optional(), - startDate: z.boolean().optional(), - resultType: z.boolean().optional(), - resultOrder: z.boolean().optional(), - winnerContestantId: z.boolean().optional(), - winnerContestant: z.union([z.boolean(), ContestantArgsObjectSchema]).optional(), - contestants: z.union([z.boolean(), ContestantFindManySchema]).optional(), - groups: z.union([z.boolean(), GroupFindManySchema]).optional(), - events: z.union([z.boolean(), EventFindManySchema]).optional(), - _count: z.union([z.boolean(), ContestCountOutputTypeArgsObjectSchema]).optional() -}).strict(); -export const ContestSelectObjectSchema: z.ZodType = z.lazy(__makeSchema_ContestSelect_schema) as unknown as z.ZodType; -export const ContestSelectObjectZodSchema = z.lazy(__makeSchema_ContestSelect_schema); - - -// File: FadderukeSelect.schema.ts -const __makeSchema_FadderukeSelect_schema = () => z.object({ - id: z.boolean().optional(), - year: z.boolean().optional(), - eventId: z.boolean().optional(), - event: z.union([z.boolean(), EventArgsObjectSchema]).optional(), - createdAt: z.boolean().optional(), - updatedAt: z.boolean().optional() -}).strict(); -export const FadderukeSelectObjectSchema: z.ZodType = z.lazy(__makeSchema_FadderukeSelect_schema) as unknown as z.ZodType; -export const FadderukeSelectObjectZodSchema = z.lazy(__makeSchema_FadderukeSelect_schema); - - -// File: ContestantSelect.schema.ts -const __makeSchema_ContestantSelect_schema = () => z.object({ - id: z.boolean().optional(), - resultValue: z.boolean().optional(), - contestId: z.boolean().optional(), - userId: z.boolean().optional(), - contest: z.union([z.boolean(), ContestArgsObjectSchema]).optional(), - user: z.union([z.boolean(), UserArgsObjectSchema]).optional(), - team: z.union([z.boolean(), ContestTeamArgsObjectSchema]).optional(), - wonContest: z.union([z.boolean(), ContestArgsObjectSchema]).optional() -}).strict(); -export const ContestantSelectObjectSchema: z.ZodType = z.lazy(__makeSchema_ContestantSelect_schema) as unknown as z.ZodType; -export const ContestantSelectObjectZodSchema = z.lazy(__makeSchema_ContestantSelect_schema); - - -// File: ContestTeamSelect.schema.ts -const __makeSchema_ContestTeamSelect_schema = () => z.object({ - id: z.boolean().optional(), - name: z.boolean().optional(), - contestantId: z.boolean().optional(), - contestant: z.union([z.boolean(), ContestantArgsObjectSchema]).optional(), - members: z.union([z.boolean(), UserFindManySchema]).optional(), - _count: z.union([z.boolean(), ContestTeamCountOutputTypeArgsObjectSchema]).optional() -}).strict(); -export const ContestTeamSelectObjectSchema: z.ZodType = z.lazy(__makeSchema_ContestTeamSelect_schema) as unknown as z.ZodType; -export const ContestTeamSelectObjectZodSchema = z.lazy(__makeSchema_ContestTeamSelect_schema); - - -// File: MembershipArgs.schema.ts -const __makeSchema_MembershipArgs_schema = () => z.object({ - get select(){ return MembershipSelectObjectSchema.optional(); }, - get include(){ return MembershipIncludeObjectSchema.optional(); } -}).strict(); -export const MembershipArgsObjectSchema = z.lazy(__makeSchema_MembershipArgs_schema); -export const MembershipArgsObjectZodSchema = z.lazy(__makeSchema_MembershipArgs_schema); - - -// File: UserArgs.schema.ts -const __makeSchema_UserArgs_schema = () => z.object({ - get select(){ return UserSelectObjectSchema.optional(); }, - get include(){ return UserIncludeObjectSchema.optional(); } -}).strict(); -export const UserArgsObjectSchema = z.lazy(__makeSchema_UserArgs_schema); -export const UserArgsObjectZodSchema = z.lazy(__makeSchema_UserArgs_schema); - - -// File: CompanyArgs.schema.ts -const __makeSchema_CompanyArgs_schema = () => z.object({ - get select(){ return CompanySelectObjectSchema.optional(); }, - get include(){ return CompanyIncludeObjectSchema.optional(); } -}).strict(); -export const CompanyArgsObjectSchema = z.lazy(__makeSchema_CompanyArgs_schema); -export const CompanyArgsObjectZodSchema = z.lazy(__makeSchema_CompanyArgs_schema); - - -// File: GroupArgs.schema.ts -const __makeSchema_GroupArgs_schema = () => z.object({ - get select(){ return GroupSelectObjectSchema.optional(); }, - get include(){ return GroupIncludeObjectSchema.optional(); } -}).strict(); -export const GroupArgsObjectSchema = z.lazy(__makeSchema_GroupArgs_schema); -export const GroupArgsObjectZodSchema = z.lazy(__makeSchema_GroupArgs_schema); - - -// File: GroupMembershipArgs.schema.ts -const __makeSchema_GroupMembershipArgs_schema = () => z.object({ - get select(){ return GroupMembershipSelectObjectSchema.optional(); }, - get include(){ return GroupMembershipIncludeObjectSchema.optional(); } -}).strict(); -export const GroupMembershipArgsObjectSchema = z.lazy(__makeSchema_GroupMembershipArgs_schema); -export const GroupMembershipArgsObjectZodSchema = z.lazy(__makeSchema_GroupMembershipArgs_schema); - - -// File: GroupMembershipRoleArgs.schema.ts -const __makeSchema_GroupMembershipRoleArgs_schema = () => z.object({ - get select(){ return GroupMembershipRoleSelectObjectSchema.optional(); }, - get include(){ return GroupMembershipRoleIncludeObjectSchema.optional(); } -}).strict(); -export const GroupMembershipRoleArgsObjectSchema = z.lazy(__makeSchema_GroupMembershipRoleArgs_schema); -export const GroupMembershipRoleArgsObjectZodSchema = z.lazy(__makeSchema_GroupMembershipRoleArgs_schema); - - -// File: GroupRoleArgs.schema.ts -const __makeSchema_GroupRoleArgs_schema = () => z.object({ - get select(){ return GroupRoleSelectObjectSchema.optional(); }, - get include(){ return GroupRoleIncludeObjectSchema.optional(); } -}).strict(); -export const GroupRoleArgsObjectSchema = z.lazy(__makeSchema_GroupRoleArgs_schema); -export const GroupRoleArgsObjectZodSchema = z.lazy(__makeSchema_GroupRoleArgs_schema); - - -// File: AttendanceArgs.schema.ts -const __makeSchema_AttendanceArgs_schema = () => z.object({ - get select(){ return AttendanceSelectObjectSchema.optional(); }, - get include(){ return AttendanceIncludeObjectSchema.optional(); } -}).strict(); -export const AttendanceArgsObjectSchema = z.lazy(__makeSchema_AttendanceArgs_schema); -export const AttendanceArgsObjectZodSchema = z.lazy(__makeSchema_AttendanceArgs_schema); - - -// File: AttendancePoolArgs.schema.ts -const __makeSchema_AttendancePoolArgs_schema = () => z.object({ - get select(){ return AttendancePoolSelectObjectSchema.optional(); }, - get include(){ return AttendancePoolIncludeObjectSchema.optional(); } -}).strict(); -export const AttendancePoolArgsObjectSchema = z.lazy(__makeSchema_AttendancePoolArgs_schema); -export const AttendancePoolArgsObjectZodSchema = z.lazy(__makeSchema_AttendancePoolArgs_schema); - - -// File: AttendeeArgs.schema.ts -const __makeSchema_AttendeeArgs_schema = () => z.object({ - get select(){ return AttendeeSelectObjectSchema.optional(); }, - get include(){ return AttendeeIncludeObjectSchema.optional(); } -}).strict(); -export const AttendeeArgsObjectSchema = z.lazy(__makeSchema_AttendeeArgs_schema); -export const AttendeeArgsObjectZodSchema = z.lazy(__makeSchema_AttendeeArgs_schema); - - -// File: EventArgs.schema.ts -const __makeSchema_EventArgs_schema = () => z.object({ - get select(){ return EventSelectObjectSchema.optional(); }, - get include(){ return EventIncludeObjectSchema.optional(); } -}).strict(); -export const EventArgsObjectSchema = z.lazy(__makeSchema_EventArgs_schema); -export const EventArgsObjectZodSchema = z.lazy(__makeSchema_EventArgs_schema); - - -// File: EventCompanyArgs.schema.ts -const __makeSchema_EventCompanyArgs_schema = () => z.object({ - get select(){ return EventCompanySelectObjectSchema.optional(); }, - get include(){ return EventCompanyIncludeObjectSchema.optional(); } -}).strict(); -export const EventCompanyArgsObjectSchema = z.lazy(__makeSchema_EventCompanyArgs_schema); -export const EventCompanyArgsObjectZodSchema = z.lazy(__makeSchema_EventCompanyArgs_schema); - - -// File: MarkArgs.schema.ts -const __makeSchema_MarkArgs_schema = () => z.object({ - get select(){ return MarkSelectObjectSchema.optional(); }, - get include(){ return MarkIncludeObjectSchema.optional(); } -}).strict(); -export const MarkArgsObjectSchema = z.lazy(__makeSchema_MarkArgs_schema); -export const MarkArgsObjectZodSchema = z.lazy(__makeSchema_MarkArgs_schema); - - -// File: MarkGroupArgs.schema.ts -const __makeSchema_MarkGroupArgs_schema = () => z.object({ - get select(){ return MarkGroupSelectObjectSchema.optional(); }, - get include(){ return MarkGroupIncludeObjectSchema.optional(); } -}).strict(); -export const MarkGroupArgsObjectSchema = z.lazy(__makeSchema_MarkGroupArgs_schema); -export const MarkGroupArgsObjectZodSchema = z.lazy(__makeSchema_MarkGroupArgs_schema); - - -// File: PersonalMarkArgs.schema.ts -const __makeSchema_PersonalMarkArgs_schema = () => z.object({ - get select(){ return PersonalMarkSelectObjectSchema.optional(); }, - get include(){ return PersonalMarkIncludeObjectSchema.optional(); } -}).strict(); -export const PersonalMarkArgsObjectSchema = z.lazy(__makeSchema_PersonalMarkArgs_schema); -export const PersonalMarkArgsObjectZodSchema = z.lazy(__makeSchema_PersonalMarkArgs_schema); - - -// File: PrivacyPermissionsArgs.schema.ts -const __makeSchema_PrivacyPermissionsArgs_schema = () => z.object({ - get select(){ return PrivacyPermissionsSelectObjectSchema.optional(); }, - get include(){ return PrivacyPermissionsIncludeObjectSchema.optional(); } -}).strict(); -export const PrivacyPermissionsArgsObjectSchema = z.lazy(__makeSchema_PrivacyPermissionsArgs_schema); -export const PrivacyPermissionsArgsObjectZodSchema = z.lazy(__makeSchema_PrivacyPermissionsArgs_schema); - - -// File: NotificationPermissionsArgs.schema.ts -const __makeSchema_NotificationPermissionsArgs_schema = () => z.object({ - get select(){ return NotificationPermissionsSelectObjectSchema.optional(); }, - get include(){ return NotificationPermissionsIncludeObjectSchema.optional(); } -}).strict(); -export const NotificationPermissionsArgsObjectSchema = z.lazy(__makeSchema_NotificationPermissionsArgs_schema); -export const NotificationPermissionsArgsObjectZodSchema = z.lazy(__makeSchema_NotificationPermissionsArgs_schema); - - -// File: EventHostingGroupArgs.schema.ts -const __makeSchema_EventHostingGroupArgs_schema = () => z.object({ - get select(){ return EventHostingGroupSelectObjectSchema.optional(); }, - get include(){ return EventHostingGroupIncludeObjectSchema.optional(); } -}).strict(); -export const EventHostingGroupArgsObjectSchema = z.lazy(__makeSchema_EventHostingGroupArgs_schema); -export const EventHostingGroupArgsObjectZodSchema = z.lazy(__makeSchema_EventHostingGroupArgs_schema); - - -// File: JobListingArgs.schema.ts -const __makeSchema_JobListingArgs_schema = () => z.object({ - get select(){ return JobListingSelectObjectSchema.optional(); }, - get include(){ return JobListingIncludeObjectSchema.optional(); } -}).strict(); -export const JobListingArgsObjectSchema = z.lazy(__makeSchema_JobListingArgs_schema); -export const JobListingArgsObjectZodSchema = z.lazy(__makeSchema_JobListingArgs_schema); - - -// File: JobListingLocationArgs.schema.ts -const __makeSchema_JobListingLocationArgs_schema = () => z.object({ - get select(){ return JobListingLocationSelectObjectSchema.optional(); }, - get include(){ return JobListingLocationIncludeObjectSchema.optional(); } -}).strict(); -export const JobListingLocationArgsObjectSchema = z.lazy(__makeSchema_JobListingLocationArgs_schema); -export const JobListingLocationArgsObjectZodSchema = z.lazy(__makeSchema_JobListingLocationArgs_schema); - - -// File: OfflineArgs.schema.ts -const __makeSchema_OfflineArgs_schema = () => z.object({ - get select(){ return OfflineSelectObjectSchema.optional(); } -}).strict(); -export const OfflineArgsObjectSchema = z.lazy(__makeSchema_OfflineArgs_schema); -export const OfflineArgsObjectZodSchema = z.lazy(__makeSchema_OfflineArgs_schema); - - -// File: ArticleArgs.schema.ts -const __makeSchema_ArticleArgs_schema = () => z.object({ - get select(){ return ArticleSelectObjectSchema.optional(); }, - get include(){ return ArticleIncludeObjectSchema.optional(); } -}).strict(); -export const ArticleArgsObjectSchema = z.lazy(__makeSchema_ArticleArgs_schema); -export const ArticleArgsObjectZodSchema = z.lazy(__makeSchema_ArticleArgs_schema); - - -// File: ArticleTagArgs.schema.ts -const __makeSchema_ArticleTagArgs_schema = () => z.object({ - get select(){ return ArticleTagSelectObjectSchema.optional(); }, - get include(){ return ArticleTagIncludeObjectSchema.optional(); } -}).strict(); -export const ArticleTagArgsObjectSchema = z.lazy(__makeSchema_ArticleTagArgs_schema); -export const ArticleTagArgsObjectZodSchema = z.lazy(__makeSchema_ArticleTagArgs_schema); - - -// File: ArticleTagLinkArgs.schema.ts -const __makeSchema_ArticleTagLinkArgs_schema = () => z.object({ - get select(){ return ArticleTagLinkSelectObjectSchema.optional(); }, - get include(){ return ArticleTagLinkIncludeObjectSchema.optional(); } -}).strict(); -export const ArticleTagLinkArgsObjectSchema = z.lazy(__makeSchema_ArticleTagLinkArgs_schema); -export const ArticleTagLinkArgsObjectZodSchema = z.lazy(__makeSchema_ArticleTagLinkArgs_schema); - - -// File: TaskArgs.schema.ts -const __makeSchema_TaskArgs_schema = () => z.object({ - get select(){ return TaskSelectObjectSchema.optional(); }, - get include(){ return TaskIncludeObjectSchema.optional(); } -}).strict(); -export const TaskArgsObjectSchema = z.lazy(__makeSchema_TaskArgs_schema); -export const TaskArgsObjectZodSchema = z.lazy(__makeSchema_TaskArgs_schema); - - -// File: RecurringTaskArgs.schema.ts -const __makeSchema_RecurringTaskArgs_schema = () => z.object({ - get select(){ return RecurringTaskSelectObjectSchema.optional(); }, - get include(){ return RecurringTaskIncludeObjectSchema.optional(); } -}).strict(); -export const RecurringTaskArgsObjectSchema = z.lazy(__makeSchema_RecurringTaskArgs_schema); -export const RecurringTaskArgsObjectZodSchema = z.lazy(__makeSchema_RecurringTaskArgs_schema); - - -// File: FeedbackFormArgs.schema.ts -const __makeSchema_FeedbackFormArgs_schema = () => z.object({ - get select(){ return FeedbackFormSelectObjectSchema.optional(); }, - get include(){ return FeedbackFormIncludeObjectSchema.optional(); } -}).strict(); -export const FeedbackFormArgsObjectSchema = z.lazy(__makeSchema_FeedbackFormArgs_schema); -export const FeedbackFormArgsObjectZodSchema = z.lazy(__makeSchema_FeedbackFormArgs_schema); - - -// File: FeedbackQuestionArgs.schema.ts -const __makeSchema_FeedbackQuestionArgs_schema = () => z.object({ - get select(){ return FeedbackQuestionSelectObjectSchema.optional(); }, - get include(){ return FeedbackQuestionIncludeObjectSchema.optional(); } -}).strict(); -export const FeedbackQuestionArgsObjectSchema = z.lazy(__makeSchema_FeedbackQuestionArgs_schema); -export const FeedbackQuestionArgsObjectZodSchema = z.lazy(__makeSchema_FeedbackQuestionArgs_schema); - - -// File: FeedbackQuestionOptionArgs.schema.ts -const __makeSchema_FeedbackQuestionOptionArgs_schema = () => z.object({ - get select(){ return FeedbackQuestionOptionSelectObjectSchema.optional(); }, - get include(){ return FeedbackQuestionOptionIncludeObjectSchema.optional(); } -}).strict(); -export const FeedbackQuestionOptionArgsObjectSchema = z.lazy(__makeSchema_FeedbackQuestionOptionArgs_schema); -export const FeedbackQuestionOptionArgsObjectZodSchema = z.lazy(__makeSchema_FeedbackQuestionOptionArgs_schema); - - -// File: FeedbackQuestionAnswerArgs.schema.ts -const __makeSchema_FeedbackQuestionAnswerArgs_schema = () => z.object({ - get select(){ return FeedbackQuestionAnswerSelectObjectSchema.optional(); }, - get include(){ return FeedbackQuestionAnswerIncludeObjectSchema.optional(); } -}).strict(); -export const FeedbackQuestionAnswerArgsObjectSchema = z.lazy(__makeSchema_FeedbackQuestionAnswerArgs_schema); -export const FeedbackQuestionAnswerArgsObjectZodSchema = z.lazy(__makeSchema_FeedbackQuestionAnswerArgs_schema); - - -// File: FeedbackQuestionAnswerOptionLinkArgs.schema.ts -const __makeSchema_FeedbackQuestionAnswerOptionLinkArgs_schema = () => z.object({ - get select(){ return FeedbackQuestionAnswerOptionLinkSelectObjectSchema.optional(); }, - get include(){ return FeedbackQuestionAnswerOptionLinkIncludeObjectSchema.optional(); } -}).strict(); -export const FeedbackQuestionAnswerOptionLinkArgsObjectSchema = z.lazy(__makeSchema_FeedbackQuestionAnswerOptionLinkArgs_schema); -export const FeedbackQuestionAnswerOptionLinkArgsObjectZodSchema = z.lazy(__makeSchema_FeedbackQuestionAnswerOptionLinkArgs_schema); - - -// File: FeedbackFormAnswerArgs.schema.ts -const __makeSchema_FeedbackFormAnswerArgs_schema = () => z.object({ - get select(){ return FeedbackFormAnswerSelectObjectSchema.optional(); }, - get include(){ return FeedbackFormAnswerIncludeObjectSchema.optional(); } -}).strict(); -export const FeedbackFormAnswerArgsObjectSchema = z.lazy(__makeSchema_FeedbackFormAnswerArgs_schema); -export const FeedbackFormAnswerArgsObjectZodSchema = z.lazy(__makeSchema_FeedbackFormAnswerArgs_schema); - - -// File: AuditLogArgs.schema.ts -const __makeSchema_AuditLogArgs_schema = () => z.object({ - get select(){ return AuditLogSelectObjectSchema.optional(); }, - get include(){ return AuditLogIncludeObjectSchema.optional(); } -}).strict(); -export const AuditLogArgsObjectSchema = z.lazy(__makeSchema_AuditLogArgs_schema); -export const AuditLogArgsObjectZodSchema = z.lazy(__makeSchema_AuditLogArgs_schema); - - -// File: DeregisterReasonArgs.schema.ts -const __makeSchema_DeregisterReasonArgs_schema = () => z.object({ - get select(){ return DeregisterReasonSelectObjectSchema.optional(); }, - get include(){ return DeregisterReasonIncludeObjectSchema.optional(); } -}).strict(); -export const DeregisterReasonArgsObjectSchema = z.lazy(__makeSchema_DeregisterReasonArgs_schema); -export const DeregisterReasonArgsObjectZodSchema = z.lazy(__makeSchema_DeregisterReasonArgs_schema); - - -// File: NotificationRecipientArgs.schema.ts -const __makeSchema_NotificationRecipientArgs_schema = () => z.object({ - get select(){ return NotificationRecipientSelectObjectSchema.optional(); }, - get include(){ return NotificationRecipientIncludeObjectSchema.optional(); } -}).strict(); -export const NotificationRecipientArgsObjectSchema = z.lazy(__makeSchema_NotificationRecipientArgs_schema); -export const NotificationRecipientArgsObjectZodSchema = z.lazy(__makeSchema_NotificationRecipientArgs_schema); - - -// File: NotificationArgs.schema.ts -const __makeSchema_NotificationArgs_schema = () => z.object({ - get select(){ return NotificationSelectObjectSchema.optional(); }, - get include(){ return NotificationIncludeObjectSchema.optional(); } -}).strict(); -export const NotificationArgsObjectSchema = z.lazy(__makeSchema_NotificationArgs_schema); -export const NotificationArgsObjectZodSchema = z.lazy(__makeSchema_NotificationArgs_schema); - - -// File: ContestArgs.schema.ts -const __makeSchema_ContestArgs_schema = () => z.object({ - get select(){ return ContestSelectObjectSchema.optional(); }, - get include(){ return ContestIncludeObjectSchema.optional(); } -}).strict(); -export const ContestArgsObjectSchema = z.lazy(__makeSchema_ContestArgs_schema); -export const ContestArgsObjectZodSchema = z.lazy(__makeSchema_ContestArgs_schema); - - -// File: FadderukeArgs.schema.ts -const __makeSchema_FadderukeArgs_schema = () => z.object({ - get select(){ return FadderukeSelectObjectSchema.optional(); }, - get include(){ return FadderukeIncludeObjectSchema.optional(); } -}).strict(); -export const FadderukeArgsObjectSchema = z.lazy(__makeSchema_FadderukeArgs_schema); -export const FadderukeArgsObjectZodSchema = z.lazy(__makeSchema_FadderukeArgs_schema); - - -// File: ContestantArgs.schema.ts -const __makeSchema_ContestantArgs_schema = () => z.object({ - get select(){ return ContestantSelectObjectSchema.optional(); }, - get include(){ return ContestantIncludeObjectSchema.optional(); } -}).strict(); -export const ContestantArgsObjectSchema = z.lazy(__makeSchema_ContestantArgs_schema); -export const ContestantArgsObjectZodSchema = z.lazy(__makeSchema_ContestantArgs_schema); - - -// File: ContestTeamArgs.schema.ts -const __makeSchema_ContestTeamArgs_schema = () => z.object({ - get select(){ return ContestTeamSelectObjectSchema.optional(); }, - get include(){ return ContestTeamIncludeObjectSchema.optional(); } -}).strict(); -export const ContestTeamArgsObjectSchema = z.lazy(__makeSchema_ContestTeamArgs_schema); -export const ContestTeamArgsObjectZodSchema = z.lazy(__makeSchema_ContestTeamArgs_schema); - - -// File: MembershipInclude.schema.ts -const __makeSchema_MembershipInclude_schema = () => z.object({ - user: z.union([z.boolean(), UserArgsObjectSchema]).optional() -}).strict(); -export const MembershipIncludeObjectSchema: z.ZodType = z.lazy(__makeSchema_MembershipInclude_schema) as unknown as z.ZodType; -export const MembershipIncludeObjectZodSchema = z.lazy(__makeSchema_MembershipInclude_schema); - - -// File: UserInclude.schema.ts -const __makeSchema_UserInclude_schema = () => z.object({ - privacyPermissions: z.union([z.boolean(), PrivacyPermissionsArgsObjectSchema]).optional(), - notificationPermissions: z.union([z.boolean(), NotificationPermissionsArgsObjectSchema]).optional(), - attendee: z.union([z.boolean(), AttendeeFindManySchema]).optional(), - personalMark: z.union([z.boolean(), PersonalMarkFindManySchema]).optional(), - groupMemberships: z.union([z.boolean(), GroupMembershipFindManySchema]).optional(), - memberships: z.union([z.boolean(), MembershipFindManySchema]).optional(), - givenMarks: z.union([z.boolean(), PersonalMarkFindManySchema]).optional(), - attendeesRefunded: z.union([z.boolean(), AttendeeFindManySchema]).optional(), - auditLogs: z.union([z.boolean(), AuditLogFindManySchema]).optional(), - deregisterReasons: z.union([z.boolean(), DeregisterReasonFindManySchema]).optional(), - notificationsReceived: z.union([z.boolean(), NotificationRecipientFindManySchema]).optional(), - notificationsCreated: z.union([z.boolean(), NotificationFindManySchema]).optional(), - notificationsUpdated: z.union([z.boolean(), NotificationFindManySchema]).optional(), - contestants: z.union([z.boolean(), ContestantFindManySchema]).optional(), - contestTeams: z.union([z.boolean(), ContestTeamFindManySchema]).optional(), - _count: z.union([z.boolean(), UserCountOutputTypeArgsObjectSchema]).optional() -}).strict(); -export const UserIncludeObjectSchema: z.ZodType = z.lazy(__makeSchema_UserInclude_schema) as unknown as z.ZodType; -export const UserIncludeObjectZodSchema = z.lazy(__makeSchema_UserInclude_schema); - - -// File: CompanyInclude.schema.ts -const __makeSchema_CompanyInclude_schema = () => z.object({ - events: z.union([z.boolean(), EventCompanyFindManySchema]).optional(), - JobListing: z.union([z.boolean(), JobListingFindManySchema]).optional(), - _count: z.union([z.boolean(), CompanyCountOutputTypeArgsObjectSchema]).optional() -}).strict(); -export const CompanyIncludeObjectSchema: z.ZodType = z.lazy(__makeSchema_CompanyInclude_schema) as unknown as z.ZodType; -export const CompanyIncludeObjectZodSchema = z.lazy(__makeSchema_CompanyInclude_schema); - - -// File: GroupInclude.schema.ts -const __makeSchema_GroupInclude_schema = () => z.object({ - events: z.union([z.boolean(), EventHostingGroupFindManySchema]).optional(), - contests: z.union([z.boolean(), ContestFindManySchema]).optional(), - memberships: z.union([z.boolean(), GroupMembershipFindManySchema]).optional(), - marks: z.union([z.boolean(), MarkGroupFindManySchema]).optional(), - roles: z.union([z.boolean(), GroupRoleFindManySchema]).optional(), - notifications: z.union([z.boolean(), NotificationFindManySchema]).optional(), - _count: z.union([z.boolean(), GroupCountOutputTypeArgsObjectSchema]).optional() -}).strict(); -export const GroupIncludeObjectSchema: z.ZodType = z.lazy(__makeSchema_GroupInclude_schema) as unknown as z.ZodType; -export const GroupIncludeObjectZodSchema = z.lazy(__makeSchema_GroupInclude_schema); - - -// File: GroupMembershipInclude.schema.ts -const __makeSchema_GroupMembershipInclude_schema = () => z.object({ - group: z.union([z.boolean(), GroupArgsObjectSchema]).optional(), - user: z.union([z.boolean(), UserArgsObjectSchema]).optional(), - roles: z.union([z.boolean(), GroupMembershipRoleFindManySchema]).optional(), - _count: z.union([z.boolean(), GroupMembershipCountOutputTypeArgsObjectSchema]).optional() -}).strict(); -export const GroupMembershipIncludeObjectSchema: z.ZodType = z.lazy(__makeSchema_GroupMembershipInclude_schema) as unknown as z.ZodType; -export const GroupMembershipIncludeObjectZodSchema = z.lazy(__makeSchema_GroupMembershipInclude_schema); - - -// File: GroupMembershipRoleInclude.schema.ts -const __makeSchema_GroupMembershipRoleInclude_schema = () => z.object({ - membership: z.union([z.boolean(), GroupMembershipArgsObjectSchema]).optional(), - role: z.union([z.boolean(), GroupRoleArgsObjectSchema]).optional() -}).strict(); -export const GroupMembershipRoleIncludeObjectSchema: z.ZodType = z.lazy(__makeSchema_GroupMembershipRoleInclude_schema) as unknown as z.ZodType; -export const GroupMembershipRoleIncludeObjectZodSchema = z.lazy(__makeSchema_GroupMembershipRoleInclude_schema); - - -// File: GroupRoleInclude.schema.ts -const __makeSchema_GroupRoleInclude_schema = () => z.object({ - group: z.union([z.boolean(), GroupArgsObjectSchema]).optional(), - groupMembershipRoles: z.union([z.boolean(), GroupMembershipRoleFindManySchema]).optional(), - _count: z.union([z.boolean(), GroupRoleCountOutputTypeArgsObjectSchema]).optional() -}).strict(); -export const GroupRoleIncludeObjectSchema: z.ZodType = z.lazy(__makeSchema_GroupRoleInclude_schema) as unknown as z.ZodType; -export const GroupRoleIncludeObjectZodSchema = z.lazy(__makeSchema_GroupRoleInclude_schema); - - -// File: AttendanceInclude.schema.ts -const __makeSchema_AttendanceInclude_schema = () => z.object({ - pools: z.union([z.boolean(), AttendancePoolFindManySchema]).optional(), - attendees: z.union([z.boolean(), AttendeeFindManySchema]).optional(), - events: z.union([z.boolean(), EventFindManySchema]).optional(), - _count: z.union([z.boolean(), AttendanceCountOutputTypeArgsObjectSchema]).optional() -}).strict(); -export const AttendanceIncludeObjectSchema: z.ZodType = z.lazy(__makeSchema_AttendanceInclude_schema) as unknown as z.ZodType; -export const AttendanceIncludeObjectZodSchema = z.lazy(__makeSchema_AttendanceInclude_schema); - - -// File: AttendancePoolInclude.schema.ts -const __makeSchema_AttendancePoolInclude_schema = () => z.object({ - attendance: z.union([z.boolean(), AttendanceArgsObjectSchema]).optional(), - task: z.union([z.boolean(), TaskArgsObjectSchema]).optional(), - attendees: z.union([z.boolean(), AttendeeFindManySchema]).optional(), - _count: z.union([z.boolean(), AttendancePoolCountOutputTypeArgsObjectSchema]).optional() -}).strict(); -export const AttendancePoolIncludeObjectSchema: z.ZodType = z.lazy(__makeSchema_AttendancePoolInclude_schema) as unknown as z.ZodType; -export const AttendancePoolIncludeObjectZodSchema = z.lazy(__makeSchema_AttendancePoolInclude_schema); - - -// File: AttendeeInclude.schema.ts -const __makeSchema_AttendeeInclude_schema = () => z.object({ - feedbackFormAnswer: z.union([z.boolean(), FeedbackFormAnswerArgsObjectSchema]).optional(), - attendance: z.union([z.boolean(), AttendanceArgsObjectSchema]).optional(), - user: z.union([z.boolean(), UserArgsObjectSchema]).optional(), - attendancePool: z.union([z.boolean(), AttendancePoolArgsObjectSchema]).optional(), - paymentRefundedBy: z.union([z.boolean(), UserArgsObjectSchema]).optional() -}).strict(); -export const AttendeeIncludeObjectSchema: z.ZodType = z.lazy(__makeSchema_AttendeeInclude_schema) as unknown as z.ZodType; -export const AttendeeIncludeObjectZodSchema = z.lazy(__makeSchema_AttendeeInclude_schema); - - -// File: EventInclude.schema.ts -const __makeSchema_EventInclude_schema = () => z.object({ - feedbackForm: z.union([z.boolean(), FeedbackFormArgsObjectSchema]).optional(), - fadderuke: z.union([z.boolean(), FadderukeArgsObjectSchema]).optional(), - attendance: z.union([z.boolean(), AttendanceArgsObjectSchema]).optional(), - parent: z.union([z.boolean(), EventArgsObjectSchema]).optional(), - children: z.union([z.boolean(), EventFindManySchema]).optional(), - contest: z.union([z.boolean(), ContestArgsObjectSchema]).optional(), - companies: z.union([z.boolean(), EventCompanyFindManySchema]).optional(), - hostingGroups: z.union([z.boolean(), EventHostingGroupFindManySchema]).optional(), - deregisterReasons: z.union([z.boolean(), DeregisterReasonFindManySchema]).optional(), - _count: z.union([z.boolean(), EventCountOutputTypeArgsObjectSchema]).optional() -}).strict(); -export const EventIncludeObjectSchema: z.ZodType = z.lazy(__makeSchema_EventInclude_schema) as unknown as z.ZodType; -export const EventIncludeObjectZodSchema = z.lazy(__makeSchema_EventInclude_schema); - - -// File: EventCompanyInclude.schema.ts -const __makeSchema_EventCompanyInclude_schema = () => z.object({ - event: z.union([z.boolean(), EventArgsObjectSchema]).optional(), - company: z.union([z.boolean(), CompanyArgsObjectSchema]).optional() -}).strict(); -export const EventCompanyIncludeObjectSchema: z.ZodType = z.lazy(__makeSchema_EventCompanyInclude_schema) as unknown as z.ZodType; -export const EventCompanyIncludeObjectZodSchema = z.lazy(__makeSchema_EventCompanyInclude_schema); - - -// File: MarkInclude.schema.ts -const __makeSchema_MarkInclude_schema = () => z.object({ - users: z.union([z.boolean(), PersonalMarkFindManySchema]).optional(), - groups: z.union([z.boolean(), MarkGroupFindManySchema]).optional(), - _count: z.union([z.boolean(), MarkCountOutputTypeArgsObjectSchema]).optional() -}).strict(); -export const MarkIncludeObjectSchema: z.ZodType = z.lazy(__makeSchema_MarkInclude_schema) as unknown as z.ZodType; -export const MarkIncludeObjectZodSchema = z.lazy(__makeSchema_MarkInclude_schema); - - -// File: MarkGroupInclude.schema.ts -const __makeSchema_MarkGroupInclude_schema = () => z.object({ - mark: z.union([z.boolean(), MarkArgsObjectSchema]).optional(), - group: z.union([z.boolean(), GroupArgsObjectSchema]).optional() -}).strict(); -export const MarkGroupIncludeObjectSchema: z.ZodType = z.lazy(__makeSchema_MarkGroupInclude_schema) as unknown as z.ZodType; -export const MarkGroupIncludeObjectZodSchema = z.lazy(__makeSchema_MarkGroupInclude_schema); - - -// File: PersonalMarkInclude.schema.ts -const __makeSchema_PersonalMarkInclude_schema = () => z.object({ - mark: z.union([z.boolean(), MarkArgsObjectSchema]).optional(), - user: z.union([z.boolean(), UserArgsObjectSchema]).optional(), - givenBy: z.union([z.boolean(), UserArgsObjectSchema]).optional() -}).strict(); -export const PersonalMarkIncludeObjectSchema: z.ZodType = z.lazy(__makeSchema_PersonalMarkInclude_schema) as unknown as z.ZodType; -export const PersonalMarkIncludeObjectZodSchema = z.lazy(__makeSchema_PersonalMarkInclude_schema); - - -// File: PrivacyPermissionsInclude.schema.ts -const __makeSchema_PrivacyPermissionsInclude_schema = () => z.object({ - user: z.union([z.boolean(), UserArgsObjectSchema]).optional() -}).strict(); -export const PrivacyPermissionsIncludeObjectSchema: z.ZodType = z.lazy(__makeSchema_PrivacyPermissionsInclude_schema) as unknown as z.ZodType; -export const PrivacyPermissionsIncludeObjectZodSchema = z.lazy(__makeSchema_PrivacyPermissionsInclude_schema); - - -// File: NotificationPermissionsInclude.schema.ts -const __makeSchema_NotificationPermissionsInclude_schema = () => z.object({ - user: z.union([z.boolean(), UserArgsObjectSchema]).optional() -}).strict(); -export const NotificationPermissionsIncludeObjectSchema: z.ZodType = z.lazy(__makeSchema_NotificationPermissionsInclude_schema) as unknown as z.ZodType; -export const NotificationPermissionsIncludeObjectZodSchema = z.lazy(__makeSchema_NotificationPermissionsInclude_schema); - - -// File: EventHostingGroupInclude.schema.ts -const __makeSchema_EventHostingGroupInclude_schema = () => z.object({ - group: z.union([z.boolean(), GroupArgsObjectSchema]).optional(), - event: z.union([z.boolean(), EventArgsObjectSchema]).optional() -}).strict(); -export const EventHostingGroupIncludeObjectSchema: z.ZodType = z.lazy(__makeSchema_EventHostingGroupInclude_schema) as unknown as z.ZodType; -export const EventHostingGroupIncludeObjectZodSchema = z.lazy(__makeSchema_EventHostingGroupInclude_schema); - - -// File: JobListingInclude.schema.ts -const __makeSchema_JobListingInclude_schema = () => z.object({ - company: z.union([z.boolean(), CompanyArgsObjectSchema]).optional(), - locations: z.union([z.boolean(), JobListingLocationFindManySchema]).optional(), - _count: z.union([z.boolean(), JobListingCountOutputTypeArgsObjectSchema]).optional() -}).strict(); -export const JobListingIncludeObjectSchema: z.ZodType = z.lazy(__makeSchema_JobListingInclude_schema) as unknown as z.ZodType; -export const JobListingIncludeObjectZodSchema = z.lazy(__makeSchema_JobListingInclude_schema); - - -// File: JobListingLocationInclude.schema.ts -const __makeSchema_JobListingLocationInclude_schema = () => z.object({ - jobListing: z.union([z.boolean(), JobListingArgsObjectSchema]).optional() -}).strict(); -export const JobListingLocationIncludeObjectSchema: z.ZodType = z.lazy(__makeSchema_JobListingLocationInclude_schema) as unknown as z.ZodType; -export const JobListingLocationIncludeObjectZodSchema = z.lazy(__makeSchema_JobListingLocationInclude_schema); - - -// File: ArticleInclude.schema.ts -const __makeSchema_ArticleInclude_schema = () => z.object({ - tags: z.union([z.boolean(), ArticleTagLinkFindManySchema]).optional(), - _count: z.union([z.boolean(), ArticleCountOutputTypeArgsObjectSchema]).optional() -}).strict(); -export const ArticleIncludeObjectSchema: z.ZodType = z.lazy(__makeSchema_ArticleInclude_schema) as unknown as z.ZodType; -export const ArticleIncludeObjectZodSchema = z.lazy(__makeSchema_ArticleInclude_schema); - - -// File: ArticleTagInclude.schema.ts -const __makeSchema_ArticleTagInclude_schema = () => z.object({ - articles: z.union([z.boolean(), ArticleTagLinkFindManySchema]).optional(), - _count: z.union([z.boolean(), ArticleTagCountOutputTypeArgsObjectSchema]).optional() -}).strict(); -export const ArticleTagIncludeObjectSchema: z.ZodType = z.lazy(__makeSchema_ArticleTagInclude_schema) as unknown as z.ZodType; -export const ArticleTagIncludeObjectZodSchema = z.lazy(__makeSchema_ArticleTagInclude_schema); - - -// File: ArticleTagLinkInclude.schema.ts -const __makeSchema_ArticleTagLinkInclude_schema = () => z.object({ - article: z.union([z.boolean(), ArticleArgsObjectSchema]).optional(), - tag: z.union([z.boolean(), ArticleTagArgsObjectSchema]).optional() -}).strict(); -export const ArticleTagLinkIncludeObjectSchema: z.ZodType = z.lazy(__makeSchema_ArticleTagLinkInclude_schema) as unknown as z.ZodType; -export const ArticleTagLinkIncludeObjectZodSchema = z.lazy(__makeSchema_ArticleTagLinkInclude_schema); - - -// File: TaskInclude.schema.ts -const __makeSchema_TaskInclude_schema = () => z.object({ - recurringTask: z.union([z.boolean(), RecurringTaskArgsObjectSchema]).optional(), - attendancePools: z.union([z.boolean(), AttendancePoolFindManySchema]).optional(), - notifications: z.union([z.boolean(), NotificationFindManySchema]).optional(), - _count: z.union([z.boolean(), TaskCountOutputTypeArgsObjectSchema]).optional() -}).strict(); -export const TaskIncludeObjectSchema: z.ZodType = z.lazy(__makeSchema_TaskInclude_schema) as unknown as z.ZodType; -export const TaskIncludeObjectZodSchema = z.lazy(__makeSchema_TaskInclude_schema); - - -// File: RecurringTaskInclude.schema.ts -const __makeSchema_RecurringTaskInclude_schema = () => z.object({ - tasks: z.union([z.boolean(), TaskFindManySchema]).optional(), - _count: z.union([z.boolean(), RecurringTaskCountOutputTypeArgsObjectSchema]).optional() -}).strict(); -export const RecurringTaskIncludeObjectSchema: z.ZodType = z.lazy(__makeSchema_RecurringTaskInclude_schema) as unknown as z.ZodType; -export const RecurringTaskIncludeObjectZodSchema = z.lazy(__makeSchema_RecurringTaskInclude_schema); - - -// File: FeedbackFormInclude.schema.ts -const __makeSchema_FeedbackFormInclude_schema = () => z.object({ - event: z.union([z.boolean(), EventArgsObjectSchema]).optional(), - questions: z.union([z.boolean(), FeedbackQuestionFindManySchema]).optional(), - answers: z.union([z.boolean(), FeedbackFormAnswerFindManySchema]).optional(), - _count: z.union([z.boolean(), FeedbackFormCountOutputTypeArgsObjectSchema]).optional() -}).strict(); -export const FeedbackFormIncludeObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackFormInclude_schema) as unknown as z.ZodType; -export const FeedbackFormIncludeObjectZodSchema = z.lazy(__makeSchema_FeedbackFormInclude_schema); - - -// File: FeedbackQuestionInclude.schema.ts -const __makeSchema_FeedbackQuestionInclude_schema = () => z.object({ - feedbackForm: z.union([z.boolean(), FeedbackFormArgsObjectSchema]).optional(), - options: z.union([z.boolean(), FeedbackQuestionOptionFindManySchema]).optional(), - answers: z.union([z.boolean(), FeedbackQuestionAnswerFindManySchema]).optional(), - _count: z.union([z.boolean(), FeedbackQuestionCountOutputTypeArgsObjectSchema]).optional() -}).strict(); -export const FeedbackQuestionIncludeObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackQuestionInclude_schema) as unknown as z.ZodType; -export const FeedbackQuestionIncludeObjectZodSchema = z.lazy(__makeSchema_FeedbackQuestionInclude_schema); - - -// File: FeedbackQuestionOptionInclude.schema.ts -const __makeSchema_FeedbackQuestionOptionInclude_schema = () => z.object({ - question: z.union([z.boolean(), FeedbackQuestionArgsObjectSchema]).optional(), - selectedInAnswers: z.union([z.boolean(), FeedbackQuestionAnswerOptionLinkFindManySchema]).optional(), - _count: z.union([z.boolean(), FeedbackQuestionOptionCountOutputTypeArgsObjectSchema]).optional() -}).strict(); -export const FeedbackQuestionOptionIncludeObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackQuestionOptionInclude_schema) as unknown as z.ZodType; -export const FeedbackQuestionOptionIncludeObjectZodSchema = z.lazy(__makeSchema_FeedbackQuestionOptionInclude_schema); - - -// File: FeedbackQuestionAnswerInclude.schema.ts -const __makeSchema_FeedbackQuestionAnswerInclude_schema = () => z.object({ - question: z.union([z.boolean(), FeedbackQuestionArgsObjectSchema]).optional(), - formAnswer: z.union([z.boolean(), FeedbackFormAnswerArgsObjectSchema]).optional(), - selectedOptions: z.union([z.boolean(), FeedbackQuestionAnswerOptionLinkFindManySchema]).optional(), - _count: z.union([z.boolean(), FeedbackQuestionAnswerCountOutputTypeArgsObjectSchema]).optional() -}).strict(); -export const FeedbackQuestionAnswerIncludeObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackQuestionAnswerInclude_schema) as unknown as z.ZodType; -export const FeedbackQuestionAnswerIncludeObjectZodSchema = z.lazy(__makeSchema_FeedbackQuestionAnswerInclude_schema); - - -// File: FeedbackQuestionAnswerOptionLinkInclude.schema.ts -const __makeSchema_FeedbackQuestionAnswerOptionLinkInclude_schema = () => z.object({ - feedbackQuestionOption: z.union([z.boolean(), FeedbackQuestionOptionArgsObjectSchema]).optional(), - feedbackQuestionAnswer: z.union([z.boolean(), FeedbackQuestionAnswerArgsObjectSchema]).optional() -}).strict(); -export const FeedbackQuestionAnswerOptionLinkIncludeObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackQuestionAnswerOptionLinkInclude_schema) as unknown as z.ZodType; -export const FeedbackQuestionAnswerOptionLinkIncludeObjectZodSchema = z.lazy(__makeSchema_FeedbackQuestionAnswerOptionLinkInclude_schema); - - -// File: FeedbackFormAnswerInclude.schema.ts -const __makeSchema_FeedbackFormAnswerInclude_schema = () => z.object({ - feedbackForm: z.union([z.boolean(), FeedbackFormArgsObjectSchema]).optional(), - attendee: z.union([z.boolean(), AttendeeArgsObjectSchema]).optional(), - answers: z.union([z.boolean(), FeedbackQuestionAnswerFindManySchema]).optional(), - _count: z.union([z.boolean(), FeedbackFormAnswerCountOutputTypeArgsObjectSchema]).optional() -}).strict(); -export const FeedbackFormAnswerIncludeObjectSchema: z.ZodType = z.lazy(__makeSchema_FeedbackFormAnswerInclude_schema) as unknown as z.ZodType; -export const FeedbackFormAnswerIncludeObjectZodSchema = z.lazy(__makeSchema_FeedbackFormAnswerInclude_schema); - - -// File: AuditLogInclude.schema.ts -const __makeSchema_AuditLogInclude_schema = () => z.object({ - user: z.union([z.boolean(), UserArgsObjectSchema]).optional() -}).strict(); -export const AuditLogIncludeObjectSchema: z.ZodType = z.lazy(__makeSchema_AuditLogInclude_schema) as unknown as z.ZodType; -export const AuditLogIncludeObjectZodSchema = z.lazy(__makeSchema_AuditLogInclude_schema); - - -// File: DeregisterReasonInclude.schema.ts -const __makeSchema_DeregisterReasonInclude_schema = () => z.object({ - user: z.union([z.boolean(), UserArgsObjectSchema]).optional(), - event: z.union([z.boolean(), EventArgsObjectSchema]).optional() -}).strict(); -export const DeregisterReasonIncludeObjectSchema: z.ZodType = z.lazy(__makeSchema_DeregisterReasonInclude_schema) as unknown as z.ZodType; -export const DeregisterReasonIncludeObjectZodSchema = z.lazy(__makeSchema_DeregisterReasonInclude_schema); - - -// File: NotificationRecipientInclude.schema.ts -const __makeSchema_NotificationRecipientInclude_schema = () => z.object({ - notification: z.union([z.boolean(), NotificationArgsObjectSchema]).optional(), - user: z.union([z.boolean(), UserArgsObjectSchema]).optional() -}).strict(); -export const NotificationRecipientIncludeObjectSchema: z.ZodType = z.lazy(__makeSchema_NotificationRecipientInclude_schema) as unknown as z.ZodType; -export const NotificationRecipientIncludeObjectZodSchema = z.lazy(__makeSchema_NotificationRecipientInclude_schema); - - -// File: NotificationInclude.schema.ts -const __makeSchema_NotificationInclude_schema = () => z.object({ - actorGroup: z.union([z.boolean(), GroupArgsObjectSchema]).optional(), - createdBy: z.union([z.boolean(), UserArgsObjectSchema]).optional(), - lastUpdatedBy: z.union([z.boolean(), UserArgsObjectSchema]).optional(), - task: z.union([z.boolean(), TaskArgsObjectSchema]).optional(), - recipients: z.union([z.boolean(), NotificationRecipientFindManySchema]).optional(), - _count: z.union([z.boolean(), NotificationCountOutputTypeArgsObjectSchema]).optional() -}).strict(); -export const NotificationIncludeObjectSchema: z.ZodType = z.lazy(__makeSchema_NotificationInclude_schema) as unknown as z.ZodType; -export const NotificationIncludeObjectZodSchema = z.lazy(__makeSchema_NotificationInclude_schema); - - -// File: ContestInclude.schema.ts -const __makeSchema_ContestInclude_schema = () => z.object({ - winnerContestant: z.union([z.boolean(), ContestantArgsObjectSchema]).optional(), - contestants: z.union([z.boolean(), ContestantFindManySchema]).optional(), - groups: z.union([z.boolean(), GroupFindManySchema]).optional(), - events: z.union([z.boolean(), EventFindManySchema]).optional(), - _count: z.union([z.boolean(), ContestCountOutputTypeArgsObjectSchema]).optional() -}).strict(); -export const ContestIncludeObjectSchema: z.ZodType = z.lazy(__makeSchema_ContestInclude_schema) as unknown as z.ZodType; -export const ContestIncludeObjectZodSchema = z.lazy(__makeSchema_ContestInclude_schema); - - -// File: FadderukeInclude.schema.ts -const __makeSchema_FadderukeInclude_schema = () => z.object({ - event: z.union([z.boolean(), EventArgsObjectSchema]).optional() -}).strict(); -export const FadderukeIncludeObjectSchema: z.ZodType = z.lazy(__makeSchema_FadderukeInclude_schema) as unknown as z.ZodType; -export const FadderukeIncludeObjectZodSchema = z.lazy(__makeSchema_FadderukeInclude_schema); - - -// File: ContestantInclude.schema.ts -const __makeSchema_ContestantInclude_schema = () => z.object({ - contest: z.union([z.boolean(), ContestArgsObjectSchema]).optional(), - user: z.union([z.boolean(), UserArgsObjectSchema]).optional(), - team: z.union([z.boolean(), ContestTeamArgsObjectSchema]).optional(), - wonContest: z.union([z.boolean(), ContestArgsObjectSchema]).optional() -}).strict(); -export const ContestantIncludeObjectSchema: z.ZodType = z.lazy(__makeSchema_ContestantInclude_schema) as unknown as z.ZodType; -export const ContestantIncludeObjectZodSchema = z.lazy(__makeSchema_ContestantInclude_schema); - - -// File: ContestTeamInclude.schema.ts -const __makeSchema_ContestTeamInclude_schema = () => z.object({ - contestant: z.union([z.boolean(), ContestantArgsObjectSchema]).optional(), - members: z.union([z.boolean(), UserFindManySchema]).optional(), - _count: z.union([z.boolean(), ContestTeamCountOutputTypeArgsObjectSchema]).optional() -}).strict(); -export const ContestTeamIncludeObjectSchema: z.ZodType = z.lazy(__makeSchema_ContestTeamInclude_schema) as unknown as z.ZodType; -export const ContestTeamIncludeObjectZodSchema = z.lazy(__makeSchema_ContestTeamInclude_schema); - - -// File: findUniqueMembership.schema.ts - -export const MembershipFindUniqueSchema: z.ZodType = z.object({ get select(){ return MembershipSelectObjectSchema.optional(); }, get include(){ return MembershipIncludeObjectSchema.optional(); }, where: MembershipWhereUniqueInputObjectSchema }).strict() as unknown as z.ZodType; - -export const MembershipFindUniqueZodSchema = z.object({ get select(){ return MembershipSelectObjectSchema.optional(); }, get include(){ return MembershipIncludeObjectSchema.optional(); }, where: MembershipWhereUniqueInputObjectSchema }).strict(); - -// File: findUniqueOrThrowMembership.schema.ts - -export const MembershipFindUniqueOrThrowSchema: z.ZodType = z.object({ get select(){ return MembershipSelectObjectSchema.optional(); }, get include(){ return MembershipIncludeObjectSchema.optional(); }, where: MembershipWhereUniqueInputObjectSchema }).strict() as unknown as z.ZodType; - -export const MembershipFindUniqueOrThrowZodSchema = z.object({ get select(){ return MembershipSelectObjectSchema.optional(); }, get include(){ return MembershipIncludeObjectSchema.optional(); }, where: MembershipWhereUniqueInputObjectSchema }).strict(); - -// File: findFirstMembership.schema.ts - -// Select schema needs to be in file to prevent circular imports -//------------------------------------------------------ - -export const MembershipFindFirstSelectSchema__findFirstMembership_schema: z.ZodType = z.object({ - id: z.boolean().optional(), - type: z.boolean().optional(), - specialization: z.boolean().optional(), - start: z.boolean().optional(), - end: z.boolean().optional(), - semester: z.boolean().optional(), - userId: z.boolean().optional(), - user: z.boolean().optional() - }).strict() as unknown as z.ZodType; - -export const MembershipFindFirstSelectZodSchema__findFirstMembership_schema = z.object({ - id: z.boolean().optional(), - type: z.boolean().optional(), - specialization: z.boolean().optional(), - start: z.boolean().optional(), - end: z.boolean().optional(), - semester: z.boolean().optional(), - userId: z.boolean().optional(), - user: z.boolean().optional() - }).strict(); - -export const MembershipFindFirstSchema: z.ZodType = z.object({ get select(){ return MembershipFindFirstSelectSchema__findFirstMembership_schema.optional(); }, get include(){ return MembershipIncludeObjectSchema.optional(); }, orderBy: z.union([MembershipOrderByWithRelationInputObjectSchema, MembershipOrderByWithRelationInputObjectSchema.array()]).optional(), where: MembershipWhereInputObjectSchema.optional(), cursor: MembershipWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), distinct: z.union([MembershipScalarFieldEnumSchema, MembershipScalarFieldEnumSchema.array()]).optional() }).strict() as unknown as z.ZodType; - -export const MembershipFindFirstZodSchema = z.object({ get select(){ return MembershipFindFirstSelectSchema__findFirstMembership_schema.optional(); }, get include(){ return MembershipIncludeObjectSchema.optional(); }, orderBy: z.union([MembershipOrderByWithRelationInputObjectSchema, MembershipOrderByWithRelationInputObjectSchema.array()]).optional(), where: MembershipWhereInputObjectSchema.optional(), cursor: MembershipWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), distinct: z.union([MembershipScalarFieldEnumSchema, MembershipScalarFieldEnumSchema.array()]).optional() }).strict(); - -// File: findFirstOrThrowMembership.schema.ts - -// Select schema needs to be in file to prevent circular imports -//------------------------------------------------------ - -export const MembershipFindFirstOrThrowSelectSchema__findFirstOrThrowMembership_schema: z.ZodType = z.object({ - id: z.boolean().optional(), - type: z.boolean().optional(), - specialization: z.boolean().optional(), - start: z.boolean().optional(), - end: z.boolean().optional(), - semester: z.boolean().optional(), - userId: z.boolean().optional(), - user: z.boolean().optional() - }).strict() as unknown as z.ZodType; - -export const MembershipFindFirstOrThrowSelectZodSchema__findFirstOrThrowMembership_schema = z.object({ - id: z.boolean().optional(), - type: z.boolean().optional(), - specialization: z.boolean().optional(), - start: z.boolean().optional(), - end: z.boolean().optional(), - semester: z.boolean().optional(), - userId: z.boolean().optional(), - user: z.boolean().optional() - }).strict(); - -export const MembershipFindFirstOrThrowSchema: z.ZodType = z.object({ get select(){ return MembershipFindFirstOrThrowSelectSchema__findFirstOrThrowMembership_schema.optional(); }, get include(){ return MembershipIncludeObjectSchema.optional(); }, orderBy: z.union([MembershipOrderByWithRelationInputObjectSchema, MembershipOrderByWithRelationInputObjectSchema.array()]).optional(), where: MembershipWhereInputObjectSchema.optional(), cursor: MembershipWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), distinct: z.union([MembershipScalarFieldEnumSchema, MembershipScalarFieldEnumSchema.array()]).optional() }).strict() as unknown as z.ZodType; - -export const MembershipFindFirstOrThrowZodSchema = z.object({ get select(){ return MembershipFindFirstOrThrowSelectSchema__findFirstOrThrowMembership_schema.optional(); }, get include(){ return MembershipIncludeObjectSchema.optional(); }, orderBy: z.union([MembershipOrderByWithRelationInputObjectSchema, MembershipOrderByWithRelationInputObjectSchema.array()]).optional(), where: MembershipWhereInputObjectSchema.optional(), cursor: MembershipWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), distinct: z.union([MembershipScalarFieldEnumSchema, MembershipScalarFieldEnumSchema.array()]).optional() }).strict(); - -// File: findManyMembership.schema.ts - -// Select schema needs to be in file to prevent circular imports -//------------------------------------------------------ - -export const MembershipFindManySelectSchema__findManyMembership_schema: z.ZodType = z.object({ - id: z.boolean().optional(), - type: z.boolean().optional(), - specialization: z.boolean().optional(), - start: z.boolean().optional(), - end: z.boolean().optional(), - semester: z.boolean().optional(), - userId: z.boolean().optional(), - user: z.boolean().optional() - }).strict() as unknown as z.ZodType; - -export const MembershipFindManySelectZodSchema__findManyMembership_schema = z.object({ - id: z.boolean().optional(), - type: z.boolean().optional(), - specialization: z.boolean().optional(), - start: z.boolean().optional(), - end: z.boolean().optional(), - semester: z.boolean().optional(), - userId: z.boolean().optional(), - user: z.boolean().optional() - }).strict(); - -export const MembershipFindManySchema: z.ZodType = z.object({ get select(){ return MembershipFindManySelectSchema__findManyMembership_schema.optional(); }, get include(){ return MembershipIncludeObjectSchema.optional(); }, orderBy: z.union([MembershipOrderByWithRelationInputObjectSchema, MembershipOrderByWithRelationInputObjectSchema.array()]).optional(), where: MembershipWhereInputObjectSchema.optional(), cursor: MembershipWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), distinct: z.union([MembershipScalarFieldEnumSchema, MembershipScalarFieldEnumSchema.array()]).optional() }).strict() as unknown as z.ZodType; - -export const MembershipFindManyZodSchema = z.object({ get select(){ return MembershipFindManySelectSchema__findManyMembership_schema.optional(); }, get include(){ return MembershipIncludeObjectSchema.optional(); }, orderBy: z.union([MembershipOrderByWithRelationInputObjectSchema, MembershipOrderByWithRelationInputObjectSchema.array()]).optional(), where: MembershipWhereInputObjectSchema.optional(), cursor: MembershipWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), distinct: z.union([MembershipScalarFieldEnumSchema, MembershipScalarFieldEnumSchema.array()]).optional() }).strict(); - -// File: countMembership.schema.ts - -export const MembershipCountSchema: z.ZodType = z.object({ orderBy: z.union([MembershipOrderByWithRelationInputObjectSchema, MembershipOrderByWithRelationInputObjectSchema.array()]).optional(), where: MembershipWhereInputObjectSchema.optional(), cursor: MembershipWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), select: z.union([ z.literal(true), MembershipCountAggregateInputObjectSchema ]).optional() }).strict() as unknown as z.ZodType; - -export const MembershipCountZodSchema = z.object({ orderBy: z.union([MembershipOrderByWithRelationInputObjectSchema, MembershipOrderByWithRelationInputObjectSchema.array()]).optional(), where: MembershipWhereInputObjectSchema.optional(), cursor: MembershipWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), select: z.union([ z.literal(true), MembershipCountAggregateInputObjectSchema ]).optional() }).strict(); - -// File: createOneMembership.schema.ts - -export const MembershipCreateOneSchema: z.ZodType = z.object({ get select(){ return MembershipSelectObjectSchema.optional(); }, get include(){ return MembershipIncludeObjectSchema.optional(); }, data: z.union([MembershipCreateInputObjectSchema, MembershipUncheckedCreateInputObjectSchema]) }).strict() as unknown as z.ZodType; - -export const MembershipCreateOneZodSchema = z.object({ get select(){ return MembershipSelectObjectSchema.optional(); }, get include(){ return MembershipIncludeObjectSchema.optional(); }, data: z.union([MembershipCreateInputObjectSchema, MembershipUncheckedCreateInputObjectSchema]) }).strict(); - -// File: createManyMembership.schema.ts - -export const MembershipCreateManySchema: z.ZodType = z.object({ data: z.union([ MembershipCreateManyInputObjectSchema, z.array(MembershipCreateManyInputObjectSchema) ]), skipDuplicates: z.boolean().optional() }).strict() as unknown as z.ZodType; - -export const MembershipCreateManyZodSchema = z.object({ data: z.union([ MembershipCreateManyInputObjectSchema, z.array(MembershipCreateManyInputObjectSchema) ]), skipDuplicates: z.boolean().optional() }).strict(); - -// File: createManyAndReturnMembership.schema.ts - -export const MembershipCreateManyAndReturnSchema: z.ZodType = z.object({ get select(){ return MembershipSelectObjectSchema.optional(); }, data: z.union([ MembershipCreateManyInputObjectSchema, z.array(MembershipCreateManyInputObjectSchema) ]), skipDuplicates: z.boolean().optional() }).strict() as unknown as z.ZodType; - -export const MembershipCreateManyAndReturnZodSchema = z.object({ get select(){ return MembershipSelectObjectSchema.optional(); }, data: z.union([ MembershipCreateManyInputObjectSchema, z.array(MembershipCreateManyInputObjectSchema) ]), skipDuplicates: z.boolean().optional() }).strict(); - -// File: deleteOneMembership.schema.ts - -export const MembershipDeleteOneSchema: z.ZodType = z.object({ get select(){ return MembershipSelectObjectSchema.optional(); }, get include(){ return MembershipIncludeObjectSchema.optional(); }, where: MembershipWhereUniqueInputObjectSchema }).strict() as unknown as z.ZodType; - -export const MembershipDeleteOneZodSchema = z.object({ get select(){ return MembershipSelectObjectSchema.optional(); }, get include(){ return MembershipIncludeObjectSchema.optional(); }, where: MembershipWhereUniqueInputObjectSchema }).strict(); - -// File: deleteManyMembership.schema.ts - -export const MembershipDeleteManySchema: z.ZodType = z.object({ where: MembershipWhereInputObjectSchema.optional() }).strict() as unknown as z.ZodType; - -export const MembershipDeleteManyZodSchema = z.object({ where: MembershipWhereInputObjectSchema.optional() }).strict(); - -// File: updateOneMembership.schema.ts - -export const MembershipUpdateOneSchema: z.ZodType = z.object({ get select(){ return MembershipSelectObjectSchema.optional(); }, get include(){ return MembershipIncludeObjectSchema.optional(); }, data: z.union([MembershipUpdateInputObjectSchema, MembershipUncheckedUpdateInputObjectSchema]), where: MembershipWhereUniqueInputObjectSchema }).strict() as unknown as z.ZodType; - -export const MembershipUpdateOneZodSchema = z.object({ get select(){ return MembershipSelectObjectSchema.optional(); }, get include(){ return MembershipIncludeObjectSchema.optional(); }, data: z.union([MembershipUpdateInputObjectSchema, MembershipUncheckedUpdateInputObjectSchema]), where: MembershipWhereUniqueInputObjectSchema }).strict(); - -// File: updateManyMembership.schema.ts - -export const MembershipUpdateManySchema: z.ZodType = z.object({ data: MembershipUpdateManyMutationInputObjectSchema, where: MembershipWhereInputObjectSchema.optional() }).strict() as unknown as z.ZodType; - -export const MembershipUpdateManyZodSchema = z.object({ data: MembershipUpdateManyMutationInputObjectSchema, where: MembershipWhereInputObjectSchema.optional() }).strict(); - -// File: updateManyAndReturnMembership.schema.ts - -export const MembershipUpdateManyAndReturnSchema: z.ZodType = z.object({ get select(){ return MembershipSelectObjectSchema.optional(); }, data: MembershipUpdateManyMutationInputObjectSchema, where: MembershipWhereInputObjectSchema.optional() }).strict() as unknown as z.ZodType; - -export const MembershipUpdateManyAndReturnZodSchema = z.object({ get select(){ return MembershipSelectObjectSchema.optional(); }, data: MembershipUpdateManyMutationInputObjectSchema, where: MembershipWhereInputObjectSchema.optional() }).strict(); - -// File: upsertOneMembership.schema.ts - -export const MembershipUpsertOneSchema: z.ZodType = z.object({ get select(){ return MembershipSelectObjectSchema.optional(); }, get include(){ return MembershipIncludeObjectSchema.optional(); }, where: MembershipWhereUniqueInputObjectSchema, create: z.union([ MembershipCreateInputObjectSchema, MembershipUncheckedCreateInputObjectSchema ]), update: z.union([ MembershipUpdateInputObjectSchema, MembershipUncheckedUpdateInputObjectSchema ]) }).strict() as unknown as z.ZodType; - -export const MembershipUpsertOneZodSchema = z.object({ get select(){ return MembershipSelectObjectSchema.optional(); }, get include(){ return MembershipIncludeObjectSchema.optional(); }, where: MembershipWhereUniqueInputObjectSchema, create: z.union([ MembershipCreateInputObjectSchema, MembershipUncheckedCreateInputObjectSchema ]), update: z.union([ MembershipUpdateInputObjectSchema, MembershipUncheckedUpdateInputObjectSchema ]) }).strict(); - -// File: aggregateMembership.schema.ts - -export const MembershipAggregateSchema: z.ZodType = z.object({ orderBy: z.union([MembershipOrderByWithRelationInputObjectSchema, MembershipOrderByWithRelationInputObjectSchema.array()]).optional(), where: MembershipWhereInputObjectSchema.optional(), cursor: MembershipWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), _count: z.union([ z.literal(true), MembershipCountAggregateInputObjectSchema ]).optional(), _min: MembershipMinAggregateInputObjectSchema.optional(), _max: MembershipMaxAggregateInputObjectSchema.optional(), _avg: MembershipAvgAggregateInputObjectSchema.optional(), _sum: MembershipSumAggregateInputObjectSchema.optional() }).strict() as unknown as z.ZodType; - -export const MembershipAggregateZodSchema = z.object({ orderBy: z.union([MembershipOrderByWithRelationInputObjectSchema, MembershipOrderByWithRelationInputObjectSchema.array()]).optional(), where: MembershipWhereInputObjectSchema.optional(), cursor: MembershipWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), _count: z.union([ z.literal(true), MembershipCountAggregateInputObjectSchema ]).optional(), _min: MembershipMinAggregateInputObjectSchema.optional(), _max: MembershipMaxAggregateInputObjectSchema.optional(), _avg: MembershipAvgAggregateInputObjectSchema.optional(), _sum: MembershipSumAggregateInputObjectSchema.optional() }).strict(); - -// File: groupByMembership.schema.ts - -export const MembershipGroupBySchema: z.ZodType = z.object({ where: MembershipWhereInputObjectSchema.optional(), orderBy: z.union([MembershipOrderByWithAggregationInputObjectSchema, MembershipOrderByWithAggregationInputObjectSchema.array()]).optional(), having: MembershipScalarWhereWithAggregatesInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), by: z.array(MembershipScalarFieldEnumSchema), _count: z.union([ z.literal(true), MembershipCountAggregateInputObjectSchema ]).optional(), _min: MembershipMinAggregateInputObjectSchema.optional(), _max: MembershipMaxAggregateInputObjectSchema.optional(), _avg: MembershipAvgAggregateInputObjectSchema.optional(), _sum: MembershipSumAggregateInputObjectSchema.optional() }).strict() as unknown as z.ZodType; - -export const MembershipGroupByZodSchema = z.object({ where: MembershipWhereInputObjectSchema.optional(), orderBy: z.union([MembershipOrderByWithAggregationInputObjectSchema, MembershipOrderByWithAggregationInputObjectSchema.array()]).optional(), having: MembershipScalarWhereWithAggregatesInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), by: z.array(MembershipScalarFieldEnumSchema), _count: z.union([ z.literal(true), MembershipCountAggregateInputObjectSchema ]).optional(), _min: MembershipMinAggregateInputObjectSchema.optional(), _max: MembershipMaxAggregateInputObjectSchema.optional(), _avg: MembershipAvgAggregateInputObjectSchema.optional(), _sum: MembershipSumAggregateInputObjectSchema.optional() }).strict(); - -// File: findUniqueUser.schema.ts - -export const UserFindUniqueSchema: z.ZodType = z.object({ get select(){ return UserSelectObjectSchema.optional(); }, get include(){ return UserIncludeObjectSchema.optional(); }, where: UserWhereUniqueInputObjectSchema }).strict() as unknown as z.ZodType; - -export const UserFindUniqueZodSchema = z.object({ get select(){ return UserSelectObjectSchema.optional(); }, get include(){ return UserIncludeObjectSchema.optional(); }, where: UserWhereUniqueInputObjectSchema }).strict(); - -// File: findUniqueOrThrowUser.schema.ts - -export const UserFindUniqueOrThrowSchema: z.ZodType = z.object({ get select(){ return UserSelectObjectSchema.optional(); }, get include(){ return UserIncludeObjectSchema.optional(); }, where: UserWhereUniqueInputObjectSchema }).strict() as unknown as z.ZodType; - -export const UserFindUniqueOrThrowZodSchema = z.object({ get select(){ return UserSelectObjectSchema.optional(); }, get include(){ return UserIncludeObjectSchema.optional(); }, where: UserWhereUniqueInputObjectSchema }).strict(); - -// File: findFirstUser.schema.ts - -// Select schema needs to be in file to prevent circular imports -//------------------------------------------------------ - -export const UserFindFirstSelectSchema__findFirstUser_schema: z.ZodType = z.object({ - id: z.boolean().optional(), - username: z.boolean().optional(), - name: z.boolean().optional(), - email: z.boolean().optional(), - imageUrl: z.boolean().optional(), - biography: z.boolean().optional(), - phone: z.boolean().optional(), - gender: z.boolean().optional(), - dietaryRestrictions: z.boolean().optional(), - ntnuUsername: z.boolean().optional(), - flags: z.boolean().optional(), - workspaceUserId: z.boolean().optional(), - createdAt: z.boolean().optional(), - updatedAt: z.boolean().optional(), - privacyPermissionsId: z.boolean().optional(), - privacyPermissions: z.boolean().optional(), - notificationPermissionsId: z.boolean().optional(), - notificationPermissions: z.boolean().optional(), - attendee: z.boolean().optional(), - personalMark: z.boolean().optional(), - groupMemberships: z.boolean().optional(), - memberships: z.boolean().optional(), - givenMarks: z.boolean().optional(), - attendeesRefunded: z.boolean().optional(), - auditLogs: z.boolean().optional(), - deregisterReasons: z.boolean().optional(), - notificationsReceived: z.boolean().optional(), - notificationsCreated: z.boolean().optional(), - notificationsUpdated: z.boolean().optional(), - contestants: z.boolean().optional(), - contestTeams: z.boolean().optional(), - _count: z.boolean().optional() - }).strict() as unknown as z.ZodType; - -export const UserFindFirstSelectZodSchema__findFirstUser_schema = z.object({ - id: z.boolean().optional(), - username: z.boolean().optional(), - name: z.boolean().optional(), - email: z.boolean().optional(), - imageUrl: z.boolean().optional(), - biography: z.boolean().optional(), - phone: z.boolean().optional(), - gender: z.boolean().optional(), - dietaryRestrictions: z.boolean().optional(), - ntnuUsername: z.boolean().optional(), - flags: z.boolean().optional(), - workspaceUserId: z.boolean().optional(), - createdAt: z.boolean().optional(), - updatedAt: z.boolean().optional(), - privacyPermissionsId: z.boolean().optional(), - privacyPermissions: z.boolean().optional(), - notificationPermissionsId: z.boolean().optional(), - notificationPermissions: z.boolean().optional(), - attendee: z.boolean().optional(), - personalMark: z.boolean().optional(), - groupMemberships: z.boolean().optional(), - memberships: z.boolean().optional(), - givenMarks: z.boolean().optional(), - attendeesRefunded: z.boolean().optional(), - auditLogs: z.boolean().optional(), - deregisterReasons: z.boolean().optional(), - notificationsReceived: z.boolean().optional(), - notificationsCreated: z.boolean().optional(), - notificationsUpdated: z.boolean().optional(), - contestants: z.boolean().optional(), - contestTeams: z.boolean().optional(), - _count: z.boolean().optional() - }).strict(); - -export const UserFindFirstSchema: z.ZodType = z.object({ get select(){ return UserFindFirstSelectSchema__findFirstUser_schema.optional(); }, get include(){ return UserIncludeObjectSchema.optional(); }, orderBy: z.union([UserOrderByWithRelationInputObjectSchema, UserOrderByWithRelationInputObjectSchema.array()]).optional(), where: UserWhereInputObjectSchema.optional(), cursor: UserWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), distinct: z.union([UserScalarFieldEnumSchema, UserScalarFieldEnumSchema.array()]).optional() }).strict() as unknown as z.ZodType; - -export const UserFindFirstZodSchema = z.object({ get select(){ return UserFindFirstSelectSchema__findFirstUser_schema.optional(); }, get include(){ return UserIncludeObjectSchema.optional(); }, orderBy: z.union([UserOrderByWithRelationInputObjectSchema, UserOrderByWithRelationInputObjectSchema.array()]).optional(), where: UserWhereInputObjectSchema.optional(), cursor: UserWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), distinct: z.union([UserScalarFieldEnumSchema, UserScalarFieldEnumSchema.array()]).optional() }).strict(); - -// File: findFirstOrThrowUser.schema.ts - -// Select schema needs to be in file to prevent circular imports -//------------------------------------------------------ - -export const UserFindFirstOrThrowSelectSchema__findFirstOrThrowUser_schema: z.ZodType = z.object({ - id: z.boolean().optional(), - username: z.boolean().optional(), - name: z.boolean().optional(), - email: z.boolean().optional(), - imageUrl: z.boolean().optional(), - biography: z.boolean().optional(), - phone: z.boolean().optional(), - gender: z.boolean().optional(), - dietaryRestrictions: z.boolean().optional(), - ntnuUsername: z.boolean().optional(), - flags: z.boolean().optional(), - workspaceUserId: z.boolean().optional(), - createdAt: z.boolean().optional(), - updatedAt: z.boolean().optional(), - privacyPermissionsId: z.boolean().optional(), - privacyPermissions: z.boolean().optional(), - notificationPermissionsId: z.boolean().optional(), - notificationPermissions: z.boolean().optional(), - attendee: z.boolean().optional(), - personalMark: z.boolean().optional(), - groupMemberships: z.boolean().optional(), - memberships: z.boolean().optional(), - givenMarks: z.boolean().optional(), - attendeesRefunded: z.boolean().optional(), - auditLogs: z.boolean().optional(), - deregisterReasons: z.boolean().optional(), - notificationsReceived: z.boolean().optional(), - notificationsCreated: z.boolean().optional(), - notificationsUpdated: z.boolean().optional(), - contestants: z.boolean().optional(), - contestTeams: z.boolean().optional(), - _count: z.boolean().optional() - }).strict() as unknown as z.ZodType; - -export const UserFindFirstOrThrowSelectZodSchema__findFirstOrThrowUser_schema = z.object({ - id: z.boolean().optional(), - username: z.boolean().optional(), - name: z.boolean().optional(), - email: z.boolean().optional(), - imageUrl: z.boolean().optional(), - biography: z.boolean().optional(), - phone: z.boolean().optional(), - gender: z.boolean().optional(), - dietaryRestrictions: z.boolean().optional(), - ntnuUsername: z.boolean().optional(), - flags: z.boolean().optional(), - workspaceUserId: z.boolean().optional(), - createdAt: z.boolean().optional(), - updatedAt: z.boolean().optional(), - privacyPermissionsId: z.boolean().optional(), - privacyPermissions: z.boolean().optional(), - notificationPermissionsId: z.boolean().optional(), - notificationPermissions: z.boolean().optional(), - attendee: z.boolean().optional(), - personalMark: z.boolean().optional(), - groupMemberships: z.boolean().optional(), - memberships: z.boolean().optional(), - givenMarks: z.boolean().optional(), - attendeesRefunded: z.boolean().optional(), - auditLogs: z.boolean().optional(), - deregisterReasons: z.boolean().optional(), - notificationsReceived: z.boolean().optional(), - notificationsCreated: z.boolean().optional(), - notificationsUpdated: z.boolean().optional(), - contestants: z.boolean().optional(), - contestTeams: z.boolean().optional(), - _count: z.boolean().optional() - }).strict(); - -export const UserFindFirstOrThrowSchema: z.ZodType = z.object({ get select(){ return UserFindFirstOrThrowSelectSchema__findFirstOrThrowUser_schema.optional(); }, get include(){ return UserIncludeObjectSchema.optional(); }, orderBy: z.union([UserOrderByWithRelationInputObjectSchema, UserOrderByWithRelationInputObjectSchema.array()]).optional(), where: UserWhereInputObjectSchema.optional(), cursor: UserWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), distinct: z.union([UserScalarFieldEnumSchema, UserScalarFieldEnumSchema.array()]).optional() }).strict() as unknown as z.ZodType; - -export const UserFindFirstOrThrowZodSchema = z.object({ get select(){ return UserFindFirstOrThrowSelectSchema__findFirstOrThrowUser_schema.optional(); }, get include(){ return UserIncludeObjectSchema.optional(); }, orderBy: z.union([UserOrderByWithRelationInputObjectSchema, UserOrderByWithRelationInputObjectSchema.array()]).optional(), where: UserWhereInputObjectSchema.optional(), cursor: UserWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), distinct: z.union([UserScalarFieldEnumSchema, UserScalarFieldEnumSchema.array()]).optional() }).strict(); - -// File: findManyUser.schema.ts - -// Select schema needs to be in file to prevent circular imports -//------------------------------------------------------ - -export const UserFindManySelectSchema__findManyUser_schema: z.ZodType = z.object({ - id: z.boolean().optional(), - username: z.boolean().optional(), - name: z.boolean().optional(), - email: z.boolean().optional(), - imageUrl: z.boolean().optional(), - biography: z.boolean().optional(), - phone: z.boolean().optional(), - gender: z.boolean().optional(), - dietaryRestrictions: z.boolean().optional(), - ntnuUsername: z.boolean().optional(), - flags: z.boolean().optional(), - workspaceUserId: z.boolean().optional(), - createdAt: z.boolean().optional(), - updatedAt: z.boolean().optional(), - privacyPermissionsId: z.boolean().optional(), - privacyPermissions: z.boolean().optional(), - notificationPermissionsId: z.boolean().optional(), - notificationPermissions: z.boolean().optional(), - attendee: z.boolean().optional(), - personalMark: z.boolean().optional(), - groupMemberships: z.boolean().optional(), - memberships: z.boolean().optional(), - givenMarks: z.boolean().optional(), - attendeesRefunded: z.boolean().optional(), - auditLogs: z.boolean().optional(), - deregisterReasons: z.boolean().optional(), - notificationsReceived: z.boolean().optional(), - notificationsCreated: z.boolean().optional(), - notificationsUpdated: z.boolean().optional(), - contestants: z.boolean().optional(), - contestTeams: z.boolean().optional(), - _count: z.boolean().optional() - }).strict() as unknown as z.ZodType; - -export const UserFindManySelectZodSchema__findManyUser_schema = z.object({ - id: z.boolean().optional(), - username: z.boolean().optional(), - name: z.boolean().optional(), - email: z.boolean().optional(), - imageUrl: z.boolean().optional(), - biography: z.boolean().optional(), - phone: z.boolean().optional(), - gender: z.boolean().optional(), - dietaryRestrictions: z.boolean().optional(), - ntnuUsername: z.boolean().optional(), - flags: z.boolean().optional(), - workspaceUserId: z.boolean().optional(), - createdAt: z.boolean().optional(), - updatedAt: z.boolean().optional(), - privacyPermissionsId: z.boolean().optional(), - privacyPermissions: z.boolean().optional(), - notificationPermissionsId: z.boolean().optional(), - notificationPermissions: z.boolean().optional(), - attendee: z.boolean().optional(), - personalMark: z.boolean().optional(), - groupMemberships: z.boolean().optional(), - memberships: z.boolean().optional(), - givenMarks: z.boolean().optional(), - attendeesRefunded: z.boolean().optional(), - auditLogs: z.boolean().optional(), - deregisterReasons: z.boolean().optional(), - notificationsReceived: z.boolean().optional(), - notificationsCreated: z.boolean().optional(), - notificationsUpdated: z.boolean().optional(), - contestants: z.boolean().optional(), - contestTeams: z.boolean().optional(), - _count: z.boolean().optional() - }).strict(); - -export const UserFindManySchema: z.ZodType = z.object({ get select(){ return UserFindManySelectSchema__findManyUser_schema.optional(); }, get include(){ return UserIncludeObjectSchema.optional(); }, orderBy: z.union([UserOrderByWithRelationInputObjectSchema, UserOrderByWithRelationInputObjectSchema.array()]).optional(), where: UserWhereInputObjectSchema.optional(), cursor: UserWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), distinct: z.union([UserScalarFieldEnumSchema, UserScalarFieldEnumSchema.array()]).optional() }).strict() as unknown as z.ZodType; - -export const UserFindManyZodSchema = z.object({ get select(){ return UserFindManySelectSchema__findManyUser_schema.optional(); }, get include(){ return UserIncludeObjectSchema.optional(); }, orderBy: z.union([UserOrderByWithRelationInputObjectSchema, UserOrderByWithRelationInputObjectSchema.array()]).optional(), where: UserWhereInputObjectSchema.optional(), cursor: UserWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), distinct: z.union([UserScalarFieldEnumSchema, UserScalarFieldEnumSchema.array()]).optional() }).strict(); - -// File: countUser.schema.ts - -export const UserCountSchema: z.ZodType = z.object({ orderBy: z.union([UserOrderByWithRelationInputObjectSchema, UserOrderByWithRelationInputObjectSchema.array()]).optional(), where: UserWhereInputObjectSchema.optional(), cursor: UserWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), select: z.union([ z.literal(true), UserCountAggregateInputObjectSchema ]).optional() }).strict() as unknown as z.ZodType; - -export const UserCountZodSchema = z.object({ orderBy: z.union([UserOrderByWithRelationInputObjectSchema, UserOrderByWithRelationInputObjectSchema.array()]).optional(), where: UserWhereInputObjectSchema.optional(), cursor: UserWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), select: z.union([ z.literal(true), UserCountAggregateInputObjectSchema ]).optional() }).strict(); - -// File: createOneUser.schema.ts - -export const UserCreateOneSchema: z.ZodType = z.object({ get select(){ return UserSelectObjectSchema.optional(); }, get include(){ return UserIncludeObjectSchema.optional(); }, data: z.union([UserCreateInputObjectSchema, UserUncheckedCreateInputObjectSchema]) }).strict() as unknown as z.ZodType; - -export const UserCreateOneZodSchema = z.object({ get select(){ return UserSelectObjectSchema.optional(); }, get include(){ return UserIncludeObjectSchema.optional(); }, data: z.union([UserCreateInputObjectSchema, UserUncheckedCreateInputObjectSchema]) }).strict(); - -// File: createManyUser.schema.ts - -export const UserCreateManySchema: z.ZodType = z.object({ data: z.union([ UserCreateManyInputObjectSchema, z.array(UserCreateManyInputObjectSchema) ]), skipDuplicates: z.boolean().optional() }).strict() as unknown as z.ZodType; - -export const UserCreateManyZodSchema = z.object({ data: z.union([ UserCreateManyInputObjectSchema, z.array(UserCreateManyInputObjectSchema) ]), skipDuplicates: z.boolean().optional() }).strict(); - -// File: createManyAndReturnUser.schema.ts - -export const UserCreateManyAndReturnSchema: z.ZodType = z.object({ get select(){ return UserSelectObjectSchema.optional(); }, data: z.union([ UserCreateManyInputObjectSchema, z.array(UserCreateManyInputObjectSchema) ]), skipDuplicates: z.boolean().optional() }).strict() as unknown as z.ZodType; - -export const UserCreateManyAndReturnZodSchema = z.object({ get select(){ return UserSelectObjectSchema.optional(); }, data: z.union([ UserCreateManyInputObjectSchema, z.array(UserCreateManyInputObjectSchema) ]), skipDuplicates: z.boolean().optional() }).strict(); - -// File: deleteOneUser.schema.ts - -export const UserDeleteOneSchema: z.ZodType = z.object({ get select(){ return UserSelectObjectSchema.optional(); }, get include(){ return UserIncludeObjectSchema.optional(); }, where: UserWhereUniqueInputObjectSchema }).strict() as unknown as z.ZodType; - -export const UserDeleteOneZodSchema = z.object({ get select(){ return UserSelectObjectSchema.optional(); }, get include(){ return UserIncludeObjectSchema.optional(); }, where: UserWhereUniqueInputObjectSchema }).strict(); - -// File: deleteManyUser.schema.ts - -export const UserDeleteManySchema: z.ZodType = z.object({ where: UserWhereInputObjectSchema.optional() }).strict() as unknown as z.ZodType; - -export const UserDeleteManyZodSchema = z.object({ where: UserWhereInputObjectSchema.optional() }).strict(); - -// File: updateOneUser.schema.ts - -export const UserUpdateOneSchema: z.ZodType = z.object({ get select(){ return UserSelectObjectSchema.optional(); }, get include(){ return UserIncludeObjectSchema.optional(); }, data: z.union([UserUpdateInputObjectSchema, UserUncheckedUpdateInputObjectSchema]), where: UserWhereUniqueInputObjectSchema }).strict() as unknown as z.ZodType; - -export const UserUpdateOneZodSchema = z.object({ get select(){ return UserSelectObjectSchema.optional(); }, get include(){ return UserIncludeObjectSchema.optional(); }, data: z.union([UserUpdateInputObjectSchema, UserUncheckedUpdateInputObjectSchema]), where: UserWhereUniqueInputObjectSchema }).strict(); - -// File: updateManyUser.schema.ts - -export const UserUpdateManySchema: z.ZodType = z.object({ data: UserUpdateManyMutationInputObjectSchema, where: UserWhereInputObjectSchema.optional() }).strict() as unknown as z.ZodType; - -export const UserUpdateManyZodSchema = z.object({ data: UserUpdateManyMutationInputObjectSchema, where: UserWhereInputObjectSchema.optional() }).strict(); - -// File: updateManyAndReturnUser.schema.ts - -export const UserUpdateManyAndReturnSchema: z.ZodType = z.object({ get select(){ return UserSelectObjectSchema.optional(); }, data: UserUpdateManyMutationInputObjectSchema, where: UserWhereInputObjectSchema.optional() }).strict() as unknown as z.ZodType; - -export const UserUpdateManyAndReturnZodSchema = z.object({ get select(){ return UserSelectObjectSchema.optional(); }, data: UserUpdateManyMutationInputObjectSchema, where: UserWhereInputObjectSchema.optional() }).strict(); - -// File: upsertOneUser.schema.ts - -export const UserUpsertOneSchema: z.ZodType = z.object({ get select(){ return UserSelectObjectSchema.optional(); }, get include(){ return UserIncludeObjectSchema.optional(); }, where: UserWhereUniqueInputObjectSchema, create: z.union([ UserCreateInputObjectSchema, UserUncheckedCreateInputObjectSchema ]), update: z.union([ UserUpdateInputObjectSchema, UserUncheckedUpdateInputObjectSchema ]) }).strict() as unknown as z.ZodType; - -export const UserUpsertOneZodSchema = z.object({ get select(){ return UserSelectObjectSchema.optional(); }, get include(){ return UserIncludeObjectSchema.optional(); }, where: UserWhereUniqueInputObjectSchema, create: z.union([ UserCreateInputObjectSchema, UserUncheckedCreateInputObjectSchema ]), update: z.union([ UserUpdateInputObjectSchema, UserUncheckedUpdateInputObjectSchema ]) }).strict(); - -// File: aggregateUser.schema.ts - -export const UserAggregateSchema: z.ZodType = z.object({ orderBy: z.union([UserOrderByWithRelationInputObjectSchema, UserOrderByWithRelationInputObjectSchema.array()]).optional(), where: UserWhereInputObjectSchema.optional(), cursor: UserWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), _count: z.union([ z.literal(true), UserCountAggregateInputObjectSchema ]).optional(), _min: UserMinAggregateInputObjectSchema.optional(), _max: UserMaxAggregateInputObjectSchema.optional() }).strict() as unknown as z.ZodType; - -export const UserAggregateZodSchema = z.object({ orderBy: z.union([UserOrderByWithRelationInputObjectSchema, UserOrderByWithRelationInputObjectSchema.array()]).optional(), where: UserWhereInputObjectSchema.optional(), cursor: UserWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), _count: z.union([ z.literal(true), UserCountAggregateInputObjectSchema ]).optional(), _min: UserMinAggregateInputObjectSchema.optional(), _max: UserMaxAggregateInputObjectSchema.optional() }).strict(); - -// File: groupByUser.schema.ts - -export const UserGroupBySchema: z.ZodType = z.object({ where: UserWhereInputObjectSchema.optional(), orderBy: z.union([UserOrderByWithAggregationInputObjectSchema, UserOrderByWithAggregationInputObjectSchema.array()]).optional(), having: UserScalarWhereWithAggregatesInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), by: z.array(UserScalarFieldEnumSchema), _count: z.union([ z.literal(true), UserCountAggregateInputObjectSchema ]).optional(), _min: UserMinAggregateInputObjectSchema.optional(), _max: UserMaxAggregateInputObjectSchema.optional() }).strict() as unknown as z.ZodType; - -export const UserGroupByZodSchema = z.object({ where: UserWhereInputObjectSchema.optional(), orderBy: z.union([UserOrderByWithAggregationInputObjectSchema, UserOrderByWithAggregationInputObjectSchema.array()]).optional(), having: UserScalarWhereWithAggregatesInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), by: z.array(UserScalarFieldEnumSchema), _count: z.union([ z.literal(true), UserCountAggregateInputObjectSchema ]).optional(), _min: UserMinAggregateInputObjectSchema.optional(), _max: UserMaxAggregateInputObjectSchema.optional() }).strict(); - -// File: findUniqueCompany.schema.ts - -export const CompanyFindUniqueSchema: z.ZodType = z.object({ get select(){ return CompanySelectObjectSchema.optional(); }, get include(){ return CompanyIncludeObjectSchema.optional(); }, where: CompanyWhereUniqueInputObjectSchema }).strict() as unknown as z.ZodType; - -export const CompanyFindUniqueZodSchema = z.object({ get select(){ return CompanySelectObjectSchema.optional(); }, get include(){ return CompanyIncludeObjectSchema.optional(); }, where: CompanyWhereUniqueInputObjectSchema }).strict(); - -// File: findUniqueOrThrowCompany.schema.ts - -export const CompanyFindUniqueOrThrowSchema: z.ZodType = z.object({ get select(){ return CompanySelectObjectSchema.optional(); }, get include(){ return CompanyIncludeObjectSchema.optional(); }, where: CompanyWhereUniqueInputObjectSchema }).strict() as unknown as z.ZodType; - -export const CompanyFindUniqueOrThrowZodSchema = z.object({ get select(){ return CompanySelectObjectSchema.optional(); }, get include(){ return CompanyIncludeObjectSchema.optional(); }, where: CompanyWhereUniqueInputObjectSchema }).strict(); - -// File: findFirstCompany.schema.ts - -// Select schema needs to be in file to prevent circular imports -//------------------------------------------------------ - -export const CompanyFindFirstSelectSchema__findFirstCompany_schema: z.ZodType = z.object({ - id: z.boolean().optional(), - name: z.boolean().optional(), - slug: z.boolean().optional(), - description: z.boolean().optional(), - phone: z.boolean().optional(), - email: z.boolean().optional(), - website: z.boolean().optional(), - location: z.boolean().optional(), - imageUrl: z.boolean().optional(), - createdAt: z.boolean().optional(), - updatedAt: z.boolean().optional(), - events: z.boolean().optional(), - JobListing: z.boolean().optional(), - _count: z.boolean().optional() - }).strict() as unknown as z.ZodType; - -export const CompanyFindFirstSelectZodSchema__findFirstCompany_schema = z.object({ - id: z.boolean().optional(), - name: z.boolean().optional(), - slug: z.boolean().optional(), - description: z.boolean().optional(), - phone: z.boolean().optional(), - email: z.boolean().optional(), - website: z.boolean().optional(), - location: z.boolean().optional(), - imageUrl: z.boolean().optional(), - createdAt: z.boolean().optional(), - updatedAt: z.boolean().optional(), - events: z.boolean().optional(), - JobListing: z.boolean().optional(), - _count: z.boolean().optional() - }).strict(); - -export const CompanyFindFirstSchema: z.ZodType = z.object({ get select(){ return CompanyFindFirstSelectSchema__findFirstCompany_schema.optional(); }, get include(){ return CompanyIncludeObjectSchema.optional(); }, orderBy: z.union([CompanyOrderByWithRelationInputObjectSchema, CompanyOrderByWithRelationInputObjectSchema.array()]).optional(), where: CompanyWhereInputObjectSchema.optional(), cursor: CompanyWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), distinct: z.union([CompanyScalarFieldEnumSchema, CompanyScalarFieldEnumSchema.array()]).optional() }).strict() as unknown as z.ZodType; - -export const CompanyFindFirstZodSchema = z.object({ get select(){ return CompanyFindFirstSelectSchema__findFirstCompany_schema.optional(); }, get include(){ return CompanyIncludeObjectSchema.optional(); }, orderBy: z.union([CompanyOrderByWithRelationInputObjectSchema, CompanyOrderByWithRelationInputObjectSchema.array()]).optional(), where: CompanyWhereInputObjectSchema.optional(), cursor: CompanyWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), distinct: z.union([CompanyScalarFieldEnumSchema, CompanyScalarFieldEnumSchema.array()]).optional() }).strict(); - -// File: findFirstOrThrowCompany.schema.ts - -// Select schema needs to be in file to prevent circular imports -//------------------------------------------------------ - -export const CompanyFindFirstOrThrowSelectSchema__findFirstOrThrowCompany_schema: z.ZodType = z.object({ - id: z.boolean().optional(), - name: z.boolean().optional(), - slug: z.boolean().optional(), - description: z.boolean().optional(), - phone: z.boolean().optional(), - email: z.boolean().optional(), - website: z.boolean().optional(), - location: z.boolean().optional(), - imageUrl: z.boolean().optional(), - createdAt: z.boolean().optional(), - updatedAt: z.boolean().optional(), - events: z.boolean().optional(), - JobListing: z.boolean().optional(), - _count: z.boolean().optional() - }).strict() as unknown as z.ZodType; - -export const CompanyFindFirstOrThrowSelectZodSchema__findFirstOrThrowCompany_schema = z.object({ - id: z.boolean().optional(), - name: z.boolean().optional(), - slug: z.boolean().optional(), - description: z.boolean().optional(), - phone: z.boolean().optional(), - email: z.boolean().optional(), - website: z.boolean().optional(), - location: z.boolean().optional(), - imageUrl: z.boolean().optional(), - createdAt: z.boolean().optional(), - updatedAt: z.boolean().optional(), - events: z.boolean().optional(), - JobListing: z.boolean().optional(), - _count: z.boolean().optional() - }).strict(); - -export const CompanyFindFirstOrThrowSchema: z.ZodType = z.object({ get select(){ return CompanyFindFirstOrThrowSelectSchema__findFirstOrThrowCompany_schema.optional(); }, get include(){ return CompanyIncludeObjectSchema.optional(); }, orderBy: z.union([CompanyOrderByWithRelationInputObjectSchema, CompanyOrderByWithRelationInputObjectSchema.array()]).optional(), where: CompanyWhereInputObjectSchema.optional(), cursor: CompanyWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), distinct: z.union([CompanyScalarFieldEnumSchema, CompanyScalarFieldEnumSchema.array()]).optional() }).strict() as unknown as z.ZodType; - -export const CompanyFindFirstOrThrowZodSchema = z.object({ get select(){ return CompanyFindFirstOrThrowSelectSchema__findFirstOrThrowCompany_schema.optional(); }, get include(){ return CompanyIncludeObjectSchema.optional(); }, orderBy: z.union([CompanyOrderByWithRelationInputObjectSchema, CompanyOrderByWithRelationInputObjectSchema.array()]).optional(), where: CompanyWhereInputObjectSchema.optional(), cursor: CompanyWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), distinct: z.union([CompanyScalarFieldEnumSchema, CompanyScalarFieldEnumSchema.array()]).optional() }).strict(); - -// File: findManyCompany.schema.ts - -// Select schema needs to be in file to prevent circular imports -//------------------------------------------------------ - -export const CompanyFindManySelectSchema__findManyCompany_schema: z.ZodType = z.object({ - id: z.boolean().optional(), - name: z.boolean().optional(), - slug: z.boolean().optional(), - description: z.boolean().optional(), - phone: z.boolean().optional(), - email: z.boolean().optional(), - website: z.boolean().optional(), - location: z.boolean().optional(), - imageUrl: z.boolean().optional(), - createdAt: z.boolean().optional(), - updatedAt: z.boolean().optional(), - events: z.boolean().optional(), - JobListing: z.boolean().optional(), - _count: z.boolean().optional() - }).strict() as unknown as z.ZodType; - -export const CompanyFindManySelectZodSchema__findManyCompany_schema = z.object({ - id: z.boolean().optional(), - name: z.boolean().optional(), - slug: z.boolean().optional(), - description: z.boolean().optional(), - phone: z.boolean().optional(), - email: z.boolean().optional(), - website: z.boolean().optional(), - location: z.boolean().optional(), - imageUrl: z.boolean().optional(), - createdAt: z.boolean().optional(), - updatedAt: z.boolean().optional(), - events: z.boolean().optional(), - JobListing: z.boolean().optional(), - _count: z.boolean().optional() - }).strict(); - -export const CompanyFindManySchema: z.ZodType = z.object({ get select(){ return CompanyFindManySelectSchema__findManyCompany_schema.optional(); }, get include(){ return CompanyIncludeObjectSchema.optional(); }, orderBy: z.union([CompanyOrderByWithRelationInputObjectSchema, CompanyOrderByWithRelationInputObjectSchema.array()]).optional(), where: CompanyWhereInputObjectSchema.optional(), cursor: CompanyWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), distinct: z.union([CompanyScalarFieldEnumSchema, CompanyScalarFieldEnumSchema.array()]).optional() }).strict() as unknown as z.ZodType; - -export const CompanyFindManyZodSchema = z.object({ get select(){ return CompanyFindManySelectSchema__findManyCompany_schema.optional(); }, get include(){ return CompanyIncludeObjectSchema.optional(); }, orderBy: z.union([CompanyOrderByWithRelationInputObjectSchema, CompanyOrderByWithRelationInputObjectSchema.array()]).optional(), where: CompanyWhereInputObjectSchema.optional(), cursor: CompanyWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), distinct: z.union([CompanyScalarFieldEnumSchema, CompanyScalarFieldEnumSchema.array()]).optional() }).strict(); - -// File: countCompany.schema.ts - -export const CompanyCountSchema: z.ZodType = z.object({ orderBy: z.union([CompanyOrderByWithRelationInputObjectSchema, CompanyOrderByWithRelationInputObjectSchema.array()]).optional(), where: CompanyWhereInputObjectSchema.optional(), cursor: CompanyWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), select: z.union([ z.literal(true), CompanyCountAggregateInputObjectSchema ]).optional() }).strict() as unknown as z.ZodType; - -export const CompanyCountZodSchema = z.object({ orderBy: z.union([CompanyOrderByWithRelationInputObjectSchema, CompanyOrderByWithRelationInputObjectSchema.array()]).optional(), where: CompanyWhereInputObjectSchema.optional(), cursor: CompanyWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), select: z.union([ z.literal(true), CompanyCountAggregateInputObjectSchema ]).optional() }).strict(); - -// File: createOneCompany.schema.ts - -export const CompanyCreateOneSchema: z.ZodType = z.object({ get select(){ return CompanySelectObjectSchema.optional(); }, get include(){ return CompanyIncludeObjectSchema.optional(); }, data: z.union([CompanyCreateInputObjectSchema, CompanyUncheckedCreateInputObjectSchema]) }).strict() as unknown as z.ZodType; - -export const CompanyCreateOneZodSchema = z.object({ get select(){ return CompanySelectObjectSchema.optional(); }, get include(){ return CompanyIncludeObjectSchema.optional(); }, data: z.union([CompanyCreateInputObjectSchema, CompanyUncheckedCreateInputObjectSchema]) }).strict(); - -// File: createManyCompany.schema.ts - -export const CompanyCreateManySchema: z.ZodType = z.object({ data: z.union([ CompanyCreateManyInputObjectSchema, z.array(CompanyCreateManyInputObjectSchema) ]), skipDuplicates: z.boolean().optional() }).strict() as unknown as z.ZodType; - -export const CompanyCreateManyZodSchema = z.object({ data: z.union([ CompanyCreateManyInputObjectSchema, z.array(CompanyCreateManyInputObjectSchema) ]), skipDuplicates: z.boolean().optional() }).strict(); - -// File: createManyAndReturnCompany.schema.ts - -export const CompanyCreateManyAndReturnSchema: z.ZodType = z.object({ get select(){ return CompanySelectObjectSchema.optional(); }, data: z.union([ CompanyCreateManyInputObjectSchema, z.array(CompanyCreateManyInputObjectSchema) ]), skipDuplicates: z.boolean().optional() }).strict() as unknown as z.ZodType; - -export const CompanyCreateManyAndReturnZodSchema = z.object({ get select(){ return CompanySelectObjectSchema.optional(); }, data: z.union([ CompanyCreateManyInputObjectSchema, z.array(CompanyCreateManyInputObjectSchema) ]), skipDuplicates: z.boolean().optional() }).strict(); - -// File: deleteOneCompany.schema.ts - -export const CompanyDeleteOneSchema: z.ZodType = z.object({ get select(){ return CompanySelectObjectSchema.optional(); }, get include(){ return CompanyIncludeObjectSchema.optional(); }, where: CompanyWhereUniqueInputObjectSchema }).strict() as unknown as z.ZodType; - -export const CompanyDeleteOneZodSchema = z.object({ get select(){ return CompanySelectObjectSchema.optional(); }, get include(){ return CompanyIncludeObjectSchema.optional(); }, where: CompanyWhereUniqueInputObjectSchema }).strict(); - -// File: deleteManyCompany.schema.ts - -export const CompanyDeleteManySchema: z.ZodType = z.object({ where: CompanyWhereInputObjectSchema.optional() }).strict() as unknown as z.ZodType; - -export const CompanyDeleteManyZodSchema = z.object({ where: CompanyWhereInputObjectSchema.optional() }).strict(); - -// File: updateOneCompany.schema.ts - -export const CompanyUpdateOneSchema: z.ZodType = z.object({ get select(){ return CompanySelectObjectSchema.optional(); }, get include(){ return CompanyIncludeObjectSchema.optional(); }, data: z.union([CompanyUpdateInputObjectSchema, CompanyUncheckedUpdateInputObjectSchema]), where: CompanyWhereUniqueInputObjectSchema }).strict() as unknown as z.ZodType; - -export const CompanyUpdateOneZodSchema = z.object({ get select(){ return CompanySelectObjectSchema.optional(); }, get include(){ return CompanyIncludeObjectSchema.optional(); }, data: z.union([CompanyUpdateInputObjectSchema, CompanyUncheckedUpdateInputObjectSchema]), where: CompanyWhereUniqueInputObjectSchema }).strict(); - -// File: updateManyCompany.schema.ts - -export const CompanyUpdateManySchema: z.ZodType = z.object({ data: CompanyUpdateManyMutationInputObjectSchema, where: CompanyWhereInputObjectSchema.optional() }).strict() as unknown as z.ZodType; - -export const CompanyUpdateManyZodSchema = z.object({ data: CompanyUpdateManyMutationInputObjectSchema, where: CompanyWhereInputObjectSchema.optional() }).strict(); - -// File: updateManyAndReturnCompany.schema.ts - -export const CompanyUpdateManyAndReturnSchema: z.ZodType = z.object({ get select(){ return CompanySelectObjectSchema.optional(); }, data: CompanyUpdateManyMutationInputObjectSchema, where: CompanyWhereInputObjectSchema.optional() }).strict() as unknown as z.ZodType; - -export const CompanyUpdateManyAndReturnZodSchema = z.object({ get select(){ return CompanySelectObjectSchema.optional(); }, data: CompanyUpdateManyMutationInputObjectSchema, where: CompanyWhereInputObjectSchema.optional() }).strict(); - -// File: upsertOneCompany.schema.ts - -export const CompanyUpsertOneSchema: z.ZodType = z.object({ get select(){ return CompanySelectObjectSchema.optional(); }, get include(){ return CompanyIncludeObjectSchema.optional(); }, where: CompanyWhereUniqueInputObjectSchema, create: z.union([ CompanyCreateInputObjectSchema, CompanyUncheckedCreateInputObjectSchema ]), update: z.union([ CompanyUpdateInputObjectSchema, CompanyUncheckedUpdateInputObjectSchema ]) }).strict() as unknown as z.ZodType; - -export const CompanyUpsertOneZodSchema = z.object({ get select(){ return CompanySelectObjectSchema.optional(); }, get include(){ return CompanyIncludeObjectSchema.optional(); }, where: CompanyWhereUniqueInputObjectSchema, create: z.union([ CompanyCreateInputObjectSchema, CompanyUncheckedCreateInputObjectSchema ]), update: z.union([ CompanyUpdateInputObjectSchema, CompanyUncheckedUpdateInputObjectSchema ]) }).strict(); - -// File: aggregateCompany.schema.ts - -export const CompanyAggregateSchema: z.ZodType = z.object({ orderBy: z.union([CompanyOrderByWithRelationInputObjectSchema, CompanyOrderByWithRelationInputObjectSchema.array()]).optional(), where: CompanyWhereInputObjectSchema.optional(), cursor: CompanyWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), _count: z.union([ z.literal(true), CompanyCountAggregateInputObjectSchema ]).optional(), _min: CompanyMinAggregateInputObjectSchema.optional(), _max: CompanyMaxAggregateInputObjectSchema.optional() }).strict() as unknown as z.ZodType; - -export const CompanyAggregateZodSchema = z.object({ orderBy: z.union([CompanyOrderByWithRelationInputObjectSchema, CompanyOrderByWithRelationInputObjectSchema.array()]).optional(), where: CompanyWhereInputObjectSchema.optional(), cursor: CompanyWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), _count: z.union([ z.literal(true), CompanyCountAggregateInputObjectSchema ]).optional(), _min: CompanyMinAggregateInputObjectSchema.optional(), _max: CompanyMaxAggregateInputObjectSchema.optional() }).strict(); - -// File: groupByCompany.schema.ts - -export const CompanyGroupBySchema: z.ZodType = z.object({ where: CompanyWhereInputObjectSchema.optional(), orderBy: z.union([CompanyOrderByWithAggregationInputObjectSchema, CompanyOrderByWithAggregationInputObjectSchema.array()]).optional(), having: CompanyScalarWhereWithAggregatesInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), by: z.array(CompanyScalarFieldEnumSchema), _count: z.union([ z.literal(true), CompanyCountAggregateInputObjectSchema ]).optional(), _min: CompanyMinAggregateInputObjectSchema.optional(), _max: CompanyMaxAggregateInputObjectSchema.optional() }).strict() as unknown as z.ZodType; - -export const CompanyGroupByZodSchema = z.object({ where: CompanyWhereInputObjectSchema.optional(), orderBy: z.union([CompanyOrderByWithAggregationInputObjectSchema, CompanyOrderByWithAggregationInputObjectSchema.array()]).optional(), having: CompanyScalarWhereWithAggregatesInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), by: z.array(CompanyScalarFieldEnumSchema), _count: z.union([ z.literal(true), CompanyCountAggregateInputObjectSchema ]).optional(), _min: CompanyMinAggregateInputObjectSchema.optional(), _max: CompanyMaxAggregateInputObjectSchema.optional() }).strict(); - -// File: findUniqueGroup.schema.ts - -export const GroupFindUniqueSchema: z.ZodType = z.object({ get select(){ return GroupSelectObjectSchema.optional(); }, get include(){ return GroupIncludeObjectSchema.optional(); }, where: GroupWhereUniqueInputObjectSchema }).strict() as unknown as z.ZodType; - -export const GroupFindUniqueZodSchema = z.object({ get select(){ return GroupSelectObjectSchema.optional(); }, get include(){ return GroupIncludeObjectSchema.optional(); }, where: GroupWhereUniqueInputObjectSchema }).strict(); - -// File: findUniqueOrThrowGroup.schema.ts - -export const GroupFindUniqueOrThrowSchema: z.ZodType = z.object({ get select(){ return GroupSelectObjectSchema.optional(); }, get include(){ return GroupIncludeObjectSchema.optional(); }, where: GroupWhereUniqueInputObjectSchema }).strict() as unknown as z.ZodType; - -export const GroupFindUniqueOrThrowZodSchema = z.object({ get select(){ return GroupSelectObjectSchema.optional(); }, get include(){ return GroupIncludeObjectSchema.optional(); }, where: GroupWhereUniqueInputObjectSchema }).strict(); - -// File: findFirstGroup.schema.ts - -// Select schema needs to be in file to prevent circular imports -//------------------------------------------------------ - -export const GroupFindFirstSelectSchema__findFirstGroup_schema: z.ZodType = z.object({ - slug: z.boolean().optional(), - abbreviation: z.boolean().optional(), - name: z.boolean().optional(), - shortDescription: z.boolean().optional(), - description: z.boolean().optional(), - imageUrl: z.boolean().optional(), - email: z.boolean().optional(), - contactUrl: z.boolean().optional(), - slackUrl: z.boolean().optional(), - showLeaderAsContact: z.boolean().optional(), - createdAt: z.boolean().optional(), - deactivatedAt: z.boolean().optional(), - workspaceGroupId: z.boolean().optional(), - memberVisibility: z.boolean().optional(), - recruitmentMethod: z.boolean().optional(), - type: z.boolean().optional(), - events: z.boolean().optional(), - contests: z.boolean().optional(), - memberships: z.boolean().optional(), - marks: z.boolean().optional(), - roles: z.boolean().optional(), - notifications: z.boolean().optional(), - _count: z.boolean().optional() - }).strict() as unknown as z.ZodType; - -export const GroupFindFirstSelectZodSchema__findFirstGroup_schema = z.object({ - slug: z.boolean().optional(), - abbreviation: z.boolean().optional(), - name: z.boolean().optional(), - shortDescription: z.boolean().optional(), - description: z.boolean().optional(), - imageUrl: z.boolean().optional(), - email: z.boolean().optional(), - contactUrl: z.boolean().optional(), - slackUrl: z.boolean().optional(), - showLeaderAsContact: z.boolean().optional(), - createdAt: z.boolean().optional(), - deactivatedAt: z.boolean().optional(), - workspaceGroupId: z.boolean().optional(), - memberVisibility: z.boolean().optional(), - recruitmentMethod: z.boolean().optional(), - type: z.boolean().optional(), - events: z.boolean().optional(), - contests: z.boolean().optional(), - memberships: z.boolean().optional(), - marks: z.boolean().optional(), - roles: z.boolean().optional(), - notifications: z.boolean().optional(), - _count: z.boolean().optional() - }).strict(); - -export const GroupFindFirstSchema: z.ZodType = z.object({ get select(){ return GroupFindFirstSelectSchema__findFirstGroup_schema.optional(); }, get include(){ return GroupIncludeObjectSchema.optional(); }, orderBy: z.union([GroupOrderByWithRelationInputObjectSchema, GroupOrderByWithRelationInputObjectSchema.array()]).optional(), where: GroupWhereInputObjectSchema.optional(), cursor: GroupWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), distinct: z.union([GroupScalarFieldEnumSchema, GroupScalarFieldEnumSchema.array()]).optional() }).strict() as unknown as z.ZodType; - -export const GroupFindFirstZodSchema = z.object({ get select(){ return GroupFindFirstSelectSchema__findFirstGroup_schema.optional(); }, get include(){ return GroupIncludeObjectSchema.optional(); }, orderBy: z.union([GroupOrderByWithRelationInputObjectSchema, GroupOrderByWithRelationInputObjectSchema.array()]).optional(), where: GroupWhereInputObjectSchema.optional(), cursor: GroupWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), distinct: z.union([GroupScalarFieldEnumSchema, GroupScalarFieldEnumSchema.array()]).optional() }).strict(); - -// File: findFirstOrThrowGroup.schema.ts - -// Select schema needs to be in file to prevent circular imports -//------------------------------------------------------ - -export const GroupFindFirstOrThrowSelectSchema__findFirstOrThrowGroup_schema: z.ZodType = z.object({ - slug: z.boolean().optional(), - abbreviation: z.boolean().optional(), - name: z.boolean().optional(), - shortDescription: z.boolean().optional(), - description: z.boolean().optional(), - imageUrl: z.boolean().optional(), - email: z.boolean().optional(), - contactUrl: z.boolean().optional(), - slackUrl: z.boolean().optional(), - showLeaderAsContact: z.boolean().optional(), - createdAt: z.boolean().optional(), - deactivatedAt: z.boolean().optional(), - workspaceGroupId: z.boolean().optional(), - memberVisibility: z.boolean().optional(), - recruitmentMethod: z.boolean().optional(), - type: z.boolean().optional(), - events: z.boolean().optional(), - contests: z.boolean().optional(), - memberships: z.boolean().optional(), - marks: z.boolean().optional(), - roles: z.boolean().optional(), - notifications: z.boolean().optional(), - _count: z.boolean().optional() - }).strict() as unknown as z.ZodType; - -export const GroupFindFirstOrThrowSelectZodSchema__findFirstOrThrowGroup_schema = z.object({ - slug: z.boolean().optional(), - abbreviation: z.boolean().optional(), - name: z.boolean().optional(), - shortDescription: z.boolean().optional(), - description: z.boolean().optional(), - imageUrl: z.boolean().optional(), - email: z.boolean().optional(), - contactUrl: z.boolean().optional(), - slackUrl: z.boolean().optional(), - showLeaderAsContact: z.boolean().optional(), - createdAt: z.boolean().optional(), - deactivatedAt: z.boolean().optional(), - workspaceGroupId: z.boolean().optional(), - memberVisibility: z.boolean().optional(), - recruitmentMethod: z.boolean().optional(), - type: z.boolean().optional(), - events: z.boolean().optional(), - contests: z.boolean().optional(), - memberships: z.boolean().optional(), - marks: z.boolean().optional(), - roles: z.boolean().optional(), - notifications: z.boolean().optional(), - _count: z.boolean().optional() - }).strict(); - -export const GroupFindFirstOrThrowSchema: z.ZodType = z.object({ get select(){ return GroupFindFirstOrThrowSelectSchema__findFirstOrThrowGroup_schema.optional(); }, get include(){ return GroupIncludeObjectSchema.optional(); }, orderBy: z.union([GroupOrderByWithRelationInputObjectSchema, GroupOrderByWithRelationInputObjectSchema.array()]).optional(), where: GroupWhereInputObjectSchema.optional(), cursor: GroupWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), distinct: z.union([GroupScalarFieldEnumSchema, GroupScalarFieldEnumSchema.array()]).optional() }).strict() as unknown as z.ZodType; - -export const GroupFindFirstOrThrowZodSchema = z.object({ get select(){ return GroupFindFirstOrThrowSelectSchema__findFirstOrThrowGroup_schema.optional(); }, get include(){ return GroupIncludeObjectSchema.optional(); }, orderBy: z.union([GroupOrderByWithRelationInputObjectSchema, GroupOrderByWithRelationInputObjectSchema.array()]).optional(), where: GroupWhereInputObjectSchema.optional(), cursor: GroupWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), distinct: z.union([GroupScalarFieldEnumSchema, GroupScalarFieldEnumSchema.array()]).optional() }).strict(); - -// File: findManyGroup.schema.ts - -// Select schema needs to be in file to prevent circular imports -//------------------------------------------------------ - -export const GroupFindManySelectSchema__findManyGroup_schema: z.ZodType = z.object({ - slug: z.boolean().optional(), - abbreviation: z.boolean().optional(), - name: z.boolean().optional(), - shortDescription: z.boolean().optional(), - description: z.boolean().optional(), - imageUrl: z.boolean().optional(), - email: z.boolean().optional(), - contactUrl: z.boolean().optional(), - slackUrl: z.boolean().optional(), - showLeaderAsContact: z.boolean().optional(), - createdAt: z.boolean().optional(), - deactivatedAt: z.boolean().optional(), - workspaceGroupId: z.boolean().optional(), - memberVisibility: z.boolean().optional(), - recruitmentMethod: z.boolean().optional(), - type: z.boolean().optional(), - events: z.boolean().optional(), - contests: z.boolean().optional(), - memberships: z.boolean().optional(), - marks: z.boolean().optional(), - roles: z.boolean().optional(), - notifications: z.boolean().optional(), - _count: z.boolean().optional() - }).strict() as unknown as z.ZodType; - -export const GroupFindManySelectZodSchema__findManyGroup_schema = z.object({ - slug: z.boolean().optional(), - abbreviation: z.boolean().optional(), - name: z.boolean().optional(), - shortDescription: z.boolean().optional(), - description: z.boolean().optional(), - imageUrl: z.boolean().optional(), - email: z.boolean().optional(), - contactUrl: z.boolean().optional(), - slackUrl: z.boolean().optional(), - showLeaderAsContact: z.boolean().optional(), - createdAt: z.boolean().optional(), - deactivatedAt: z.boolean().optional(), - workspaceGroupId: z.boolean().optional(), - memberVisibility: z.boolean().optional(), - recruitmentMethod: z.boolean().optional(), - type: z.boolean().optional(), - events: z.boolean().optional(), - contests: z.boolean().optional(), - memberships: z.boolean().optional(), - marks: z.boolean().optional(), - roles: z.boolean().optional(), - notifications: z.boolean().optional(), - _count: z.boolean().optional() - }).strict(); - -export const GroupFindManySchema: z.ZodType = z.object({ get select(){ return GroupFindManySelectSchema__findManyGroup_schema.optional(); }, get include(){ return GroupIncludeObjectSchema.optional(); }, orderBy: z.union([GroupOrderByWithRelationInputObjectSchema, GroupOrderByWithRelationInputObjectSchema.array()]).optional(), where: GroupWhereInputObjectSchema.optional(), cursor: GroupWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), distinct: z.union([GroupScalarFieldEnumSchema, GroupScalarFieldEnumSchema.array()]).optional() }).strict() as unknown as z.ZodType; - -export const GroupFindManyZodSchema = z.object({ get select(){ return GroupFindManySelectSchema__findManyGroup_schema.optional(); }, get include(){ return GroupIncludeObjectSchema.optional(); }, orderBy: z.union([GroupOrderByWithRelationInputObjectSchema, GroupOrderByWithRelationInputObjectSchema.array()]).optional(), where: GroupWhereInputObjectSchema.optional(), cursor: GroupWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), distinct: z.union([GroupScalarFieldEnumSchema, GroupScalarFieldEnumSchema.array()]).optional() }).strict(); - -// File: countGroup.schema.ts - -export const GroupCountSchema: z.ZodType = z.object({ orderBy: z.union([GroupOrderByWithRelationInputObjectSchema, GroupOrderByWithRelationInputObjectSchema.array()]).optional(), where: GroupWhereInputObjectSchema.optional(), cursor: GroupWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), select: z.union([ z.literal(true), GroupCountAggregateInputObjectSchema ]).optional() }).strict() as unknown as z.ZodType; - -export const GroupCountZodSchema = z.object({ orderBy: z.union([GroupOrderByWithRelationInputObjectSchema, GroupOrderByWithRelationInputObjectSchema.array()]).optional(), where: GroupWhereInputObjectSchema.optional(), cursor: GroupWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), select: z.union([ z.literal(true), GroupCountAggregateInputObjectSchema ]).optional() }).strict(); - -// File: createOneGroup.schema.ts - -export const GroupCreateOneSchema: z.ZodType = z.object({ get select(){ return GroupSelectObjectSchema.optional(); }, get include(){ return GroupIncludeObjectSchema.optional(); }, data: z.union([GroupCreateInputObjectSchema, GroupUncheckedCreateInputObjectSchema]) }).strict() as unknown as z.ZodType; - -export const GroupCreateOneZodSchema = z.object({ get select(){ return GroupSelectObjectSchema.optional(); }, get include(){ return GroupIncludeObjectSchema.optional(); }, data: z.union([GroupCreateInputObjectSchema, GroupUncheckedCreateInputObjectSchema]) }).strict(); - -// File: createManyGroup.schema.ts - -export const GroupCreateManySchema: z.ZodType = z.object({ data: z.union([ GroupCreateManyInputObjectSchema, z.array(GroupCreateManyInputObjectSchema) ]), skipDuplicates: z.boolean().optional() }).strict() as unknown as z.ZodType; - -export const GroupCreateManyZodSchema = z.object({ data: z.union([ GroupCreateManyInputObjectSchema, z.array(GroupCreateManyInputObjectSchema) ]), skipDuplicates: z.boolean().optional() }).strict(); - -// File: createManyAndReturnGroup.schema.ts - -export const GroupCreateManyAndReturnSchema: z.ZodType = z.object({ get select(){ return GroupSelectObjectSchema.optional(); }, data: z.union([ GroupCreateManyInputObjectSchema, z.array(GroupCreateManyInputObjectSchema) ]), skipDuplicates: z.boolean().optional() }).strict() as unknown as z.ZodType; - -export const GroupCreateManyAndReturnZodSchema = z.object({ get select(){ return GroupSelectObjectSchema.optional(); }, data: z.union([ GroupCreateManyInputObjectSchema, z.array(GroupCreateManyInputObjectSchema) ]), skipDuplicates: z.boolean().optional() }).strict(); - -// File: deleteOneGroup.schema.ts - -export const GroupDeleteOneSchema: z.ZodType = z.object({ get select(){ return GroupSelectObjectSchema.optional(); }, get include(){ return GroupIncludeObjectSchema.optional(); }, where: GroupWhereUniqueInputObjectSchema }).strict() as unknown as z.ZodType; - -export const GroupDeleteOneZodSchema = z.object({ get select(){ return GroupSelectObjectSchema.optional(); }, get include(){ return GroupIncludeObjectSchema.optional(); }, where: GroupWhereUniqueInputObjectSchema }).strict(); - -// File: deleteManyGroup.schema.ts - -export const GroupDeleteManySchema: z.ZodType = z.object({ where: GroupWhereInputObjectSchema.optional() }).strict() as unknown as z.ZodType; - -export const GroupDeleteManyZodSchema = z.object({ where: GroupWhereInputObjectSchema.optional() }).strict(); - -// File: updateOneGroup.schema.ts - -export const GroupUpdateOneSchema: z.ZodType = z.object({ get select(){ return GroupSelectObjectSchema.optional(); }, get include(){ return GroupIncludeObjectSchema.optional(); }, data: z.union([GroupUpdateInputObjectSchema, GroupUncheckedUpdateInputObjectSchema]), where: GroupWhereUniqueInputObjectSchema }).strict() as unknown as z.ZodType; - -export const GroupUpdateOneZodSchema = z.object({ get select(){ return GroupSelectObjectSchema.optional(); }, get include(){ return GroupIncludeObjectSchema.optional(); }, data: z.union([GroupUpdateInputObjectSchema, GroupUncheckedUpdateInputObjectSchema]), where: GroupWhereUniqueInputObjectSchema }).strict(); - -// File: updateManyGroup.schema.ts - -export const GroupUpdateManySchema: z.ZodType = z.object({ data: GroupUpdateManyMutationInputObjectSchema, where: GroupWhereInputObjectSchema.optional() }).strict() as unknown as z.ZodType; - -export const GroupUpdateManyZodSchema = z.object({ data: GroupUpdateManyMutationInputObjectSchema, where: GroupWhereInputObjectSchema.optional() }).strict(); - -// File: updateManyAndReturnGroup.schema.ts - -export const GroupUpdateManyAndReturnSchema: z.ZodType = z.object({ get select(){ return GroupSelectObjectSchema.optional(); }, data: GroupUpdateManyMutationInputObjectSchema, where: GroupWhereInputObjectSchema.optional() }).strict() as unknown as z.ZodType; - -export const GroupUpdateManyAndReturnZodSchema = z.object({ get select(){ return GroupSelectObjectSchema.optional(); }, data: GroupUpdateManyMutationInputObjectSchema, where: GroupWhereInputObjectSchema.optional() }).strict(); - -// File: upsertOneGroup.schema.ts - -export const GroupUpsertOneSchema: z.ZodType = z.object({ get select(){ return GroupSelectObjectSchema.optional(); }, get include(){ return GroupIncludeObjectSchema.optional(); }, where: GroupWhereUniqueInputObjectSchema, create: z.union([ GroupCreateInputObjectSchema, GroupUncheckedCreateInputObjectSchema ]), update: z.union([ GroupUpdateInputObjectSchema, GroupUncheckedUpdateInputObjectSchema ]) }).strict() as unknown as z.ZodType; - -export const GroupUpsertOneZodSchema = z.object({ get select(){ return GroupSelectObjectSchema.optional(); }, get include(){ return GroupIncludeObjectSchema.optional(); }, where: GroupWhereUniqueInputObjectSchema, create: z.union([ GroupCreateInputObjectSchema, GroupUncheckedCreateInputObjectSchema ]), update: z.union([ GroupUpdateInputObjectSchema, GroupUncheckedUpdateInputObjectSchema ]) }).strict(); - -// File: aggregateGroup.schema.ts - -export const GroupAggregateSchema: z.ZodType = z.object({ orderBy: z.union([GroupOrderByWithRelationInputObjectSchema, GroupOrderByWithRelationInputObjectSchema.array()]).optional(), where: GroupWhereInputObjectSchema.optional(), cursor: GroupWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), _count: z.union([ z.literal(true), GroupCountAggregateInputObjectSchema ]).optional(), _min: GroupMinAggregateInputObjectSchema.optional(), _max: GroupMaxAggregateInputObjectSchema.optional() }).strict() as unknown as z.ZodType; - -export const GroupAggregateZodSchema = z.object({ orderBy: z.union([GroupOrderByWithRelationInputObjectSchema, GroupOrderByWithRelationInputObjectSchema.array()]).optional(), where: GroupWhereInputObjectSchema.optional(), cursor: GroupWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), _count: z.union([ z.literal(true), GroupCountAggregateInputObjectSchema ]).optional(), _min: GroupMinAggregateInputObjectSchema.optional(), _max: GroupMaxAggregateInputObjectSchema.optional() }).strict(); - -// File: groupByGroup.schema.ts - -export const GroupGroupBySchema: z.ZodType = z.object({ where: GroupWhereInputObjectSchema.optional(), orderBy: z.union([GroupOrderByWithAggregationInputObjectSchema, GroupOrderByWithAggregationInputObjectSchema.array()]).optional(), having: GroupScalarWhereWithAggregatesInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), by: z.array(GroupScalarFieldEnumSchema), _count: z.union([ z.literal(true), GroupCountAggregateInputObjectSchema ]).optional(), _min: GroupMinAggregateInputObjectSchema.optional(), _max: GroupMaxAggregateInputObjectSchema.optional() }).strict() as unknown as z.ZodType; - -export const GroupGroupByZodSchema = z.object({ where: GroupWhereInputObjectSchema.optional(), orderBy: z.union([GroupOrderByWithAggregationInputObjectSchema, GroupOrderByWithAggregationInputObjectSchema.array()]).optional(), having: GroupScalarWhereWithAggregatesInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), by: z.array(GroupScalarFieldEnumSchema), _count: z.union([ z.literal(true), GroupCountAggregateInputObjectSchema ]).optional(), _min: GroupMinAggregateInputObjectSchema.optional(), _max: GroupMaxAggregateInputObjectSchema.optional() }).strict(); - -// File: findUniqueGroupMembership.schema.ts - -export const GroupMembershipFindUniqueSchema: z.ZodType = z.object({ get select(){ return GroupMembershipSelectObjectSchema.optional(); }, get include(){ return GroupMembershipIncludeObjectSchema.optional(); }, where: GroupMembershipWhereUniqueInputObjectSchema }).strict() as unknown as z.ZodType; - -export const GroupMembershipFindUniqueZodSchema = z.object({ get select(){ return GroupMembershipSelectObjectSchema.optional(); }, get include(){ return GroupMembershipIncludeObjectSchema.optional(); }, where: GroupMembershipWhereUniqueInputObjectSchema }).strict(); - -// File: findUniqueOrThrowGroupMembership.schema.ts - -export const GroupMembershipFindUniqueOrThrowSchema: z.ZodType = z.object({ get select(){ return GroupMembershipSelectObjectSchema.optional(); }, get include(){ return GroupMembershipIncludeObjectSchema.optional(); }, where: GroupMembershipWhereUniqueInputObjectSchema }).strict() as unknown as z.ZodType; - -export const GroupMembershipFindUniqueOrThrowZodSchema = z.object({ get select(){ return GroupMembershipSelectObjectSchema.optional(); }, get include(){ return GroupMembershipIncludeObjectSchema.optional(); }, where: GroupMembershipWhereUniqueInputObjectSchema }).strict(); - -// File: findFirstGroupMembership.schema.ts - -// Select schema needs to be in file to prevent circular imports -//------------------------------------------------------ - -export const GroupMembershipFindFirstSelectSchema__findFirstGroupMembership_schema: z.ZodType = z.object({ - id: z.boolean().optional(), - start: z.boolean().optional(), - end: z.boolean().optional(), - createdAt: z.boolean().optional(), - updatedAt: z.boolean().optional(), - groupId: z.boolean().optional(), - userId: z.boolean().optional(), - group: z.boolean().optional(), - user: z.boolean().optional(), - roles: z.boolean().optional(), - _count: z.boolean().optional() - }).strict() as unknown as z.ZodType; - -export const GroupMembershipFindFirstSelectZodSchema__findFirstGroupMembership_schema = z.object({ - id: z.boolean().optional(), - start: z.boolean().optional(), - end: z.boolean().optional(), - createdAt: z.boolean().optional(), - updatedAt: z.boolean().optional(), - groupId: z.boolean().optional(), - userId: z.boolean().optional(), - group: z.boolean().optional(), - user: z.boolean().optional(), - roles: z.boolean().optional(), - _count: z.boolean().optional() - }).strict(); - -export const GroupMembershipFindFirstSchema: z.ZodType = z.object({ get select(){ return GroupMembershipFindFirstSelectSchema__findFirstGroupMembership_schema.optional(); }, get include(){ return GroupMembershipIncludeObjectSchema.optional(); }, orderBy: z.union([GroupMembershipOrderByWithRelationInputObjectSchema, GroupMembershipOrderByWithRelationInputObjectSchema.array()]).optional(), where: GroupMembershipWhereInputObjectSchema.optional(), cursor: GroupMembershipWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), distinct: z.union([GroupMembershipScalarFieldEnumSchema, GroupMembershipScalarFieldEnumSchema.array()]).optional() }).strict() as unknown as z.ZodType; - -export const GroupMembershipFindFirstZodSchema = z.object({ get select(){ return GroupMembershipFindFirstSelectSchema__findFirstGroupMembership_schema.optional(); }, get include(){ return GroupMembershipIncludeObjectSchema.optional(); }, orderBy: z.union([GroupMembershipOrderByWithRelationInputObjectSchema, GroupMembershipOrderByWithRelationInputObjectSchema.array()]).optional(), where: GroupMembershipWhereInputObjectSchema.optional(), cursor: GroupMembershipWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), distinct: z.union([GroupMembershipScalarFieldEnumSchema, GroupMembershipScalarFieldEnumSchema.array()]).optional() }).strict(); - -// File: findFirstOrThrowGroupMembership.schema.ts - -// Select schema needs to be in file to prevent circular imports -//------------------------------------------------------ - -export const GroupMembershipFindFirstOrThrowSelectSchema__findFirstOrThrowGroupMembership_schema: z.ZodType = z.object({ - id: z.boolean().optional(), - start: z.boolean().optional(), - end: z.boolean().optional(), - createdAt: z.boolean().optional(), - updatedAt: z.boolean().optional(), - groupId: z.boolean().optional(), - userId: z.boolean().optional(), - group: z.boolean().optional(), - user: z.boolean().optional(), - roles: z.boolean().optional(), - _count: z.boolean().optional() - }).strict() as unknown as z.ZodType; - -export const GroupMembershipFindFirstOrThrowSelectZodSchema__findFirstOrThrowGroupMembership_schema = z.object({ - id: z.boolean().optional(), - start: z.boolean().optional(), - end: z.boolean().optional(), - createdAt: z.boolean().optional(), - updatedAt: z.boolean().optional(), - groupId: z.boolean().optional(), - userId: z.boolean().optional(), - group: z.boolean().optional(), - user: z.boolean().optional(), - roles: z.boolean().optional(), - _count: z.boolean().optional() - }).strict(); - -export const GroupMembershipFindFirstOrThrowSchema: z.ZodType = z.object({ get select(){ return GroupMembershipFindFirstOrThrowSelectSchema__findFirstOrThrowGroupMembership_schema.optional(); }, get include(){ return GroupMembershipIncludeObjectSchema.optional(); }, orderBy: z.union([GroupMembershipOrderByWithRelationInputObjectSchema, GroupMembershipOrderByWithRelationInputObjectSchema.array()]).optional(), where: GroupMembershipWhereInputObjectSchema.optional(), cursor: GroupMembershipWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), distinct: z.union([GroupMembershipScalarFieldEnumSchema, GroupMembershipScalarFieldEnumSchema.array()]).optional() }).strict() as unknown as z.ZodType; - -export const GroupMembershipFindFirstOrThrowZodSchema = z.object({ get select(){ return GroupMembershipFindFirstOrThrowSelectSchema__findFirstOrThrowGroupMembership_schema.optional(); }, get include(){ return GroupMembershipIncludeObjectSchema.optional(); }, orderBy: z.union([GroupMembershipOrderByWithRelationInputObjectSchema, GroupMembershipOrderByWithRelationInputObjectSchema.array()]).optional(), where: GroupMembershipWhereInputObjectSchema.optional(), cursor: GroupMembershipWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), distinct: z.union([GroupMembershipScalarFieldEnumSchema, GroupMembershipScalarFieldEnumSchema.array()]).optional() }).strict(); - -// File: findManyGroupMembership.schema.ts - -// Select schema needs to be in file to prevent circular imports -//------------------------------------------------------ - -export const GroupMembershipFindManySelectSchema__findManyGroupMembership_schema: z.ZodType = z.object({ - id: z.boolean().optional(), - start: z.boolean().optional(), - end: z.boolean().optional(), - createdAt: z.boolean().optional(), - updatedAt: z.boolean().optional(), - groupId: z.boolean().optional(), - userId: z.boolean().optional(), - group: z.boolean().optional(), - user: z.boolean().optional(), - roles: z.boolean().optional(), - _count: z.boolean().optional() - }).strict() as unknown as z.ZodType; - -export const GroupMembershipFindManySelectZodSchema__findManyGroupMembership_schema = z.object({ - id: z.boolean().optional(), - start: z.boolean().optional(), - end: z.boolean().optional(), - createdAt: z.boolean().optional(), - updatedAt: z.boolean().optional(), - groupId: z.boolean().optional(), - userId: z.boolean().optional(), - group: z.boolean().optional(), - user: z.boolean().optional(), - roles: z.boolean().optional(), - _count: z.boolean().optional() - }).strict(); - -export const GroupMembershipFindManySchema: z.ZodType = z.object({ get select(){ return GroupMembershipFindManySelectSchema__findManyGroupMembership_schema.optional(); }, get include(){ return GroupMembershipIncludeObjectSchema.optional(); }, orderBy: z.union([GroupMembershipOrderByWithRelationInputObjectSchema, GroupMembershipOrderByWithRelationInputObjectSchema.array()]).optional(), where: GroupMembershipWhereInputObjectSchema.optional(), cursor: GroupMembershipWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), distinct: z.union([GroupMembershipScalarFieldEnumSchema, GroupMembershipScalarFieldEnumSchema.array()]).optional() }).strict() as unknown as z.ZodType; - -export const GroupMembershipFindManyZodSchema = z.object({ get select(){ return GroupMembershipFindManySelectSchema__findManyGroupMembership_schema.optional(); }, get include(){ return GroupMembershipIncludeObjectSchema.optional(); }, orderBy: z.union([GroupMembershipOrderByWithRelationInputObjectSchema, GroupMembershipOrderByWithRelationInputObjectSchema.array()]).optional(), where: GroupMembershipWhereInputObjectSchema.optional(), cursor: GroupMembershipWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), distinct: z.union([GroupMembershipScalarFieldEnumSchema, GroupMembershipScalarFieldEnumSchema.array()]).optional() }).strict(); - -// File: countGroupMembership.schema.ts - -export const GroupMembershipCountSchema: z.ZodType = z.object({ orderBy: z.union([GroupMembershipOrderByWithRelationInputObjectSchema, GroupMembershipOrderByWithRelationInputObjectSchema.array()]).optional(), where: GroupMembershipWhereInputObjectSchema.optional(), cursor: GroupMembershipWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), select: z.union([ z.literal(true), GroupMembershipCountAggregateInputObjectSchema ]).optional() }).strict() as unknown as z.ZodType; - -export const GroupMembershipCountZodSchema = z.object({ orderBy: z.union([GroupMembershipOrderByWithRelationInputObjectSchema, GroupMembershipOrderByWithRelationInputObjectSchema.array()]).optional(), where: GroupMembershipWhereInputObjectSchema.optional(), cursor: GroupMembershipWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), select: z.union([ z.literal(true), GroupMembershipCountAggregateInputObjectSchema ]).optional() }).strict(); - -// File: createOneGroupMembership.schema.ts - -export const GroupMembershipCreateOneSchema: z.ZodType = z.object({ get select(){ return GroupMembershipSelectObjectSchema.optional(); }, get include(){ return GroupMembershipIncludeObjectSchema.optional(); }, data: z.union([GroupMembershipCreateInputObjectSchema, GroupMembershipUncheckedCreateInputObjectSchema]) }).strict() as unknown as z.ZodType; - -export const GroupMembershipCreateOneZodSchema = z.object({ get select(){ return GroupMembershipSelectObjectSchema.optional(); }, get include(){ return GroupMembershipIncludeObjectSchema.optional(); }, data: z.union([GroupMembershipCreateInputObjectSchema, GroupMembershipUncheckedCreateInputObjectSchema]) }).strict(); - -// File: createManyGroupMembership.schema.ts - -export const GroupMembershipCreateManySchema: z.ZodType = z.object({ data: z.union([ GroupMembershipCreateManyInputObjectSchema, z.array(GroupMembershipCreateManyInputObjectSchema) ]), skipDuplicates: z.boolean().optional() }).strict() as unknown as z.ZodType; - -export const GroupMembershipCreateManyZodSchema = z.object({ data: z.union([ GroupMembershipCreateManyInputObjectSchema, z.array(GroupMembershipCreateManyInputObjectSchema) ]), skipDuplicates: z.boolean().optional() }).strict(); - -// File: createManyAndReturnGroupMembership.schema.ts - -export const GroupMembershipCreateManyAndReturnSchema: z.ZodType = z.object({ get select(){ return GroupMembershipSelectObjectSchema.optional(); }, data: z.union([ GroupMembershipCreateManyInputObjectSchema, z.array(GroupMembershipCreateManyInputObjectSchema) ]), skipDuplicates: z.boolean().optional() }).strict() as unknown as z.ZodType; - -export const GroupMembershipCreateManyAndReturnZodSchema = z.object({ get select(){ return GroupMembershipSelectObjectSchema.optional(); }, data: z.union([ GroupMembershipCreateManyInputObjectSchema, z.array(GroupMembershipCreateManyInputObjectSchema) ]), skipDuplicates: z.boolean().optional() }).strict(); - -// File: deleteOneGroupMembership.schema.ts - -export const GroupMembershipDeleteOneSchema: z.ZodType = z.object({ get select(){ return GroupMembershipSelectObjectSchema.optional(); }, get include(){ return GroupMembershipIncludeObjectSchema.optional(); }, where: GroupMembershipWhereUniqueInputObjectSchema }).strict() as unknown as z.ZodType; - -export const GroupMembershipDeleteOneZodSchema = z.object({ get select(){ return GroupMembershipSelectObjectSchema.optional(); }, get include(){ return GroupMembershipIncludeObjectSchema.optional(); }, where: GroupMembershipWhereUniqueInputObjectSchema }).strict(); - -// File: deleteManyGroupMembership.schema.ts - -export const GroupMembershipDeleteManySchema: z.ZodType = z.object({ where: GroupMembershipWhereInputObjectSchema.optional() }).strict() as unknown as z.ZodType; - -export const GroupMembershipDeleteManyZodSchema = z.object({ where: GroupMembershipWhereInputObjectSchema.optional() }).strict(); - -// File: updateOneGroupMembership.schema.ts - -export const GroupMembershipUpdateOneSchema: z.ZodType = z.object({ get select(){ return GroupMembershipSelectObjectSchema.optional(); }, get include(){ return GroupMembershipIncludeObjectSchema.optional(); }, data: z.union([GroupMembershipUpdateInputObjectSchema, GroupMembershipUncheckedUpdateInputObjectSchema]), where: GroupMembershipWhereUniqueInputObjectSchema }).strict() as unknown as z.ZodType; - -export const GroupMembershipUpdateOneZodSchema = z.object({ get select(){ return GroupMembershipSelectObjectSchema.optional(); }, get include(){ return GroupMembershipIncludeObjectSchema.optional(); }, data: z.union([GroupMembershipUpdateInputObjectSchema, GroupMembershipUncheckedUpdateInputObjectSchema]), where: GroupMembershipWhereUniqueInputObjectSchema }).strict(); - -// File: updateManyGroupMembership.schema.ts - -export const GroupMembershipUpdateManySchema: z.ZodType = z.object({ data: GroupMembershipUpdateManyMutationInputObjectSchema, where: GroupMembershipWhereInputObjectSchema.optional() }).strict() as unknown as z.ZodType; - -export const GroupMembershipUpdateManyZodSchema = z.object({ data: GroupMembershipUpdateManyMutationInputObjectSchema, where: GroupMembershipWhereInputObjectSchema.optional() }).strict(); - -// File: updateManyAndReturnGroupMembership.schema.ts - -export const GroupMembershipUpdateManyAndReturnSchema: z.ZodType = z.object({ get select(){ return GroupMembershipSelectObjectSchema.optional(); }, data: GroupMembershipUpdateManyMutationInputObjectSchema, where: GroupMembershipWhereInputObjectSchema.optional() }).strict() as unknown as z.ZodType; - -export const GroupMembershipUpdateManyAndReturnZodSchema = z.object({ get select(){ return GroupMembershipSelectObjectSchema.optional(); }, data: GroupMembershipUpdateManyMutationInputObjectSchema, where: GroupMembershipWhereInputObjectSchema.optional() }).strict(); - -// File: upsertOneGroupMembership.schema.ts - -export const GroupMembershipUpsertOneSchema: z.ZodType = z.object({ get select(){ return GroupMembershipSelectObjectSchema.optional(); }, get include(){ return GroupMembershipIncludeObjectSchema.optional(); }, where: GroupMembershipWhereUniqueInputObjectSchema, create: z.union([ GroupMembershipCreateInputObjectSchema, GroupMembershipUncheckedCreateInputObjectSchema ]), update: z.union([ GroupMembershipUpdateInputObjectSchema, GroupMembershipUncheckedUpdateInputObjectSchema ]) }).strict() as unknown as z.ZodType; - -export const GroupMembershipUpsertOneZodSchema = z.object({ get select(){ return GroupMembershipSelectObjectSchema.optional(); }, get include(){ return GroupMembershipIncludeObjectSchema.optional(); }, where: GroupMembershipWhereUniqueInputObjectSchema, create: z.union([ GroupMembershipCreateInputObjectSchema, GroupMembershipUncheckedCreateInputObjectSchema ]), update: z.union([ GroupMembershipUpdateInputObjectSchema, GroupMembershipUncheckedUpdateInputObjectSchema ]) }).strict(); - -// File: aggregateGroupMembership.schema.ts - -export const GroupMembershipAggregateSchema: z.ZodType = z.object({ orderBy: z.union([GroupMembershipOrderByWithRelationInputObjectSchema, GroupMembershipOrderByWithRelationInputObjectSchema.array()]).optional(), where: GroupMembershipWhereInputObjectSchema.optional(), cursor: GroupMembershipWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), _count: z.union([ z.literal(true), GroupMembershipCountAggregateInputObjectSchema ]).optional(), _min: GroupMembershipMinAggregateInputObjectSchema.optional(), _max: GroupMembershipMaxAggregateInputObjectSchema.optional() }).strict() as unknown as z.ZodType; - -export const GroupMembershipAggregateZodSchema = z.object({ orderBy: z.union([GroupMembershipOrderByWithRelationInputObjectSchema, GroupMembershipOrderByWithRelationInputObjectSchema.array()]).optional(), where: GroupMembershipWhereInputObjectSchema.optional(), cursor: GroupMembershipWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), _count: z.union([ z.literal(true), GroupMembershipCountAggregateInputObjectSchema ]).optional(), _min: GroupMembershipMinAggregateInputObjectSchema.optional(), _max: GroupMembershipMaxAggregateInputObjectSchema.optional() }).strict(); - -// File: groupByGroupMembership.schema.ts - -export const GroupMembershipGroupBySchema: z.ZodType = z.object({ where: GroupMembershipWhereInputObjectSchema.optional(), orderBy: z.union([GroupMembershipOrderByWithAggregationInputObjectSchema, GroupMembershipOrderByWithAggregationInputObjectSchema.array()]).optional(), having: GroupMembershipScalarWhereWithAggregatesInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), by: z.array(GroupMembershipScalarFieldEnumSchema), _count: z.union([ z.literal(true), GroupMembershipCountAggregateInputObjectSchema ]).optional(), _min: GroupMembershipMinAggregateInputObjectSchema.optional(), _max: GroupMembershipMaxAggregateInputObjectSchema.optional() }).strict() as unknown as z.ZodType; - -export const GroupMembershipGroupByZodSchema = z.object({ where: GroupMembershipWhereInputObjectSchema.optional(), orderBy: z.union([GroupMembershipOrderByWithAggregationInputObjectSchema, GroupMembershipOrderByWithAggregationInputObjectSchema.array()]).optional(), having: GroupMembershipScalarWhereWithAggregatesInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), by: z.array(GroupMembershipScalarFieldEnumSchema), _count: z.union([ z.literal(true), GroupMembershipCountAggregateInputObjectSchema ]).optional(), _min: GroupMembershipMinAggregateInputObjectSchema.optional(), _max: GroupMembershipMaxAggregateInputObjectSchema.optional() }).strict(); - -// File: findUniqueGroupMembershipRole.schema.ts - -export const GroupMembershipRoleFindUniqueSchema: z.ZodType = z.object({ get select(){ return GroupMembershipRoleSelectObjectSchema.optional(); }, get include(){ return GroupMembershipRoleIncludeObjectSchema.optional(); }, where: GroupMembershipRoleWhereUniqueInputObjectSchema }).strict() as unknown as z.ZodType; - -export const GroupMembershipRoleFindUniqueZodSchema = z.object({ get select(){ return GroupMembershipRoleSelectObjectSchema.optional(); }, get include(){ return GroupMembershipRoleIncludeObjectSchema.optional(); }, where: GroupMembershipRoleWhereUniqueInputObjectSchema }).strict(); - -// File: findUniqueOrThrowGroupMembershipRole.schema.ts - -export const GroupMembershipRoleFindUniqueOrThrowSchema: z.ZodType = z.object({ get select(){ return GroupMembershipRoleSelectObjectSchema.optional(); }, get include(){ return GroupMembershipRoleIncludeObjectSchema.optional(); }, where: GroupMembershipRoleWhereUniqueInputObjectSchema }).strict() as unknown as z.ZodType; - -export const GroupMembershipRoleFindUniqueOrThrowZodSchema = z.object({ get select(){ return GroupMembershipRoleSelectObjectSchema.optional(); }, get include(){ return GroupMembershipRoleIncludeObjectSchema.optional(); }, where: GroupMembershipRoleWhereUniqueInputObjectSchema }).strict(); - -// File: findFirstGroupMembershipRole.schema.ts - -// Select schema needs to be in file to prevent circular imports -//------------------------------------------------------ - -export const GroupMembershipRoleFindFirstSelectSchema__findFirstGroupMembershipRole_schema: z.ZodType = z.object({ - membershipId: z.boolean().optional(), - roleId: z.boolean().optional(), - membership: z.boolean().optional(), - role: z.boolean().optional() - }).strict() as unknown as z.ZodType; - -export const GroupMembershipRoleFindFirstSelectZodSchema__findFirstGroupMembershipRole_schema = z.object({ - membershipId: z.boolean().optional(), - roleId: z.boolean().optional(), - membership: z.boolean().optional(), - role: z.boolean().optional() - }).strict(); - -export const GroupMembershipRoleFindFirstSchema: z.ZodType = z.object({ get select(){ return GroupMembershipRoleFindFirstSelectSchema__findFirstGroupMembershipRole_schema.optional(); }, get include(){ return GroupMembershipRoleIncludeObjectSchema.optional(); }, orderBy: z.union([GroupMembershipRoleOrderByWithRelationInputObjectSchema, GroupMembershipRoleOrderByWithRelationInputObjectSchema.array()]).optional(), where: GroupMembershipRoleWhereInputObjectSchema.optional(), cursor: GroupMembershipRoleWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), distinct: z.union([GroupMembershipRoleScalarFieldEnumSchema, GroupMembershipRoleScalarFieldEnumSchema.array()]).optional() }).strict() as unknown as z.ZodType; - -export const GroupMembershipRoleFindFirstZodSchema = z.object({ get select(){ return GroupMembershipRoleFindFirstSelectSchema__findFirstGroupMembershipRole_schema.optional(); }, get include(){ return GroupMembershipRoleIncludeObjectSchema.optional(); }, orderBy: z.union([GroupMembershipRoleOrderByWithRelationInputObjectSchema, GroupMembershipRoleOrderByWithRelationInputObjectSchema.array()]).optional(), where: GroupMembershipRoleWhereInputObjectSchema.optional(), cursor: GroupMembershipRoleWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), distinct: z.union([GroupMembershipRoleScalarFieldEnumSchema, GroupMembershipRoleScalarFieldEnumSchema.array()]).optional() }).strict(); - -// File: findFirstOrThrowGroupMembershipRole.schema.ts - -// Select schema needs to be in file to prevent circular imports -//------------------------------------------------------ - -export const GroupMembershipRoleFindFirstOrThrowSelectSchema__findFirstOrThrowGroupMembershipRole_schema: z.ZodType = z.object({ - membershipId: z.boolean().optional(), - roleId: z.boolean().optional(), - membership: z.boolean().optional(), - role: z.boolean().optional() - }).strict() as unknown as z.ZodType; - -export const GroupMembershipRoleFindFirstOrThrowSelectZodSchema__findFirstOrThrowGroupMembershipRole_schema = z.object({ - membershipId: z.boolean().optional(), - roleId: z.boolean().optional(), - membership: z.boolean().optional(), - role: z.boolean().optional() - }).strict(); - -export const GroupMembershipRoleFindFirstOrThrowSchema: z.ZodType = z.object({ get select(){ return GroupMembershipRoleFindFirstOrThrowSelectSchema__findFirstOrThrowGroupMembershipRole_schema.optional(); }, get include(){ return GroupMembershipRoleIncludeObjectSchema.optional(); }, orderBy: z.union([GroupMembershipRoleOrderByWithRelationInputObjectSchema, GroupMembershipRoleOrderByWithRelationInputObjectSchema.array()]).optional(), where: GroupMembershipRoleWhereInputObjectSchema.optional(), cursor: GroupMembershipRoleWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), distinct: z.union([GroupMembershipRoleScalarFieldEnumSchema, GroupMembershipRoleScalarFieldEnumSchema.array()]).optional() }).strict() as unknown as z.ZodType; - -export const GroupMembershipRoleFindFirstOrThrowZodSchema = z.object({ get select(){ return GroupMembershipRoleFindFirstOrThrowSelectSchema__findFirstOrThrowGroupMembershipRole_schema.optional(); }, get include(){ return GroupMembershipRoleIncludeObjectSchema.optional(); }, orderBy: z.union([GroupMembershipRoleOrderByWithRelationInputObjectSchema, GroupMembershipRoleOrderByWithRelationInputObjectSchema.array()]).optional(), where: GroupMembershipRoleWhereInputObjectSchema.optional(), cursor: GroupMembershipRoleWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), distinct: z.union([GroupMembershipRoleScalarFieldEnumSchema, GroupMembershipRoleScalarFieldEnumSchema.array()]).optional() }).strict(); - -// File: findManyGroupMembershipRole.schema.ts - -// Select schema needs to be in file to prevent circular imports -//------------------------------------------------------ - -export const GroupMembershipRoleFindManySelectSchema__findManyGroupMembershipRole_schema: z.ZodType = z.object({ - membershipId: z.boolean().optional(), - roleId: z.boolean().optional(), - membership: z.boolean().optional(), - role: z.boolean().optional() - }).strict() as unknown as z.ZodType; - -export const GroupMembershipRoleFindManySelectZodSchema__findManyGroupMembershipRole_schema = z.object({ - membershipId: z.boolean().optional(), - roleId: z.boolean().optional(), - membership: z.boolean().optional(), - role: z.boolean().optional() - }).strict(); - -export const GroupMembershipRoleFindManySchema: z.ZodType = z.object({ get select(){ return GroupMembershipRoleFindManySelectSchema__findManyGroupMembershipRole_schema.optional(); }, get include(){ return GroupMembershipRoleIncludeObjectSchema.optional(); }, orderBy: z.union([GroupMembershipRoleOrderByWithRelationInputObjectSchema, GroupMembershipRoleOrderByWithRelationInputObjectSchema.array()]).optional(), where: GroupMembershipRoleWhereInputObjectSchema.optional(), cursor: GroupMembershipRoleWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), distinct: z.union([GroupMembershipRoleScalarFieldEnumSchema, GroupMembershipRoleScalarFieldEnumSchema.array()]).optional() }).strict() as unknown as z.ZodType; - -export const GroupMembershipRoleFindManyZodSchema = z.object({ get select(){ return GroupMembershipRoleFindManySelectSchema__findManyGroupMembershipRole_schema.optional(); }, get include(){ return GroupMembershipRoleIncludeObjectSchema.optional(); }, orderBy: z.union([GroupMembershipRoleOrderByWithRelationInputObjectSchema, GroupMembershipRoleOrderByWithRelationInputObjectSchema.array()]).optional(), where: GroupMembershipRoleWhereInputObjectSchema.optional(), cursor: GroupMembershipRoleWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), distinct: z.union([GroupMembershipRoleScalarFieldEnumSchema, GroupMembershipRoleScalarFieldEnumSchema.array()]).optional() }).strict(); - -// File: countGroupMembershipRole.schema.ts - -export const GroupMembershipRoleCountSchema: z.ZodType = z.object({ orderBy: z.union([GroupMembershipRoleOrderByWithRelationInputObjectSchema, GroupMembershipRoleOrderByWithRelationInputObjectSchema.array()]).optional(), where: GroupMembershipRoleWhereInputObjectSchema.optional(), cursor: GroupMembershipRoleWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), select: z.union([ z.literal(true), GroupMembershipRoleCountAggregateInputObjectSchema ]).optional() }).strict() as unknown as z.ZodType; - -export const GroupMembershipRoleCountZodSchema = z.object({ orderBy: z.union([GroupMembershipRoleOrderByWithRelationInputObjectSchema, GroupMembershipRoleOrderByWithRelationInputObjectSchema.array()]).optional(), where: GroupMembershipRoleWhereInputObjectSchema.optional(), cursor: GroupMembershipRoleWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), select: z.union([ z.literal(true), GroupMembershipRoleCountAggregateInputObjectSchema ]).optional() }).strict(); - -// File: createOneGroupMembershipRole.schema.ts - -export const GroupMembershipRoleCreateOneSchema: z.ZodType = z.object({ get select(){ return GroupMembershipRoleSelectObjectSchema.optional(); }, get include(){ return GroupMembershipRoleIncludeObjectSchema.optional(); }, data: z.union([GroupMembershipRoleCreateInputObjectSchema, GroupMembershipRoleUncheckedCreateInputObjectSchema]) }).strict() as unknown as z.ZodType; - -export const GroupMembershipRoleCreateOneZodSchema = z.object({ get select(){ return GroupMembershipRoleSelectObjectSchema.optional(); }, get include(){ return GroupMembershipRoleIncludeObjectSchema.optional(); }, data: z.union([GroupMembershipRoleCreateInputObjectSchema, GroupMembershipRoleUncheckedCreateInputObjectSchema]) }).strict(); - -// File: createManyGroupMembershipRole.schema.ts - -export const GroupMembershipRoleCreateManySchema: z.ZodType = z.object({ data: z.union([ GroupMembershipRoleCreateManyInputObjectSchema, z.array(GroupMembershipRoleCreateManyInputObjectSchema) ]), skipDuplicates: z.boolean().optional() }).strict() as unknown as z.ZodType; - -export const GroupMembershipRoleCreateManyZodSchema = z.object({ data: z.union([ GroupMembershipRoleCreateManyInputObjectSchema, z.array(GroupMembershipRoleCreateManyInputObjectSchema) ]), skipDuplicates: z.boolean().optional() }).strict(); - -// File: createManyAndReturnGroupMembershipRole.schema.ts - -export const GroupMembershipRoleCreateManyAndReturnSchema: z.ZodType = z.object({ get select(){ return GroupMembershipRoleSelectObjectSchema.optional(); }, data: z.union([ GroupMembershipRoleCreateManyInputObjectSchema, z.array(GroupMembershipRoleCreateManyInputObjectSchema) ]), skipDuplicates: z.boolean().optional() }).strict() as unknown as z.ZodType; - -export const GroupMembershipRoleCreateManyAndReturnZodSchema = z.object({ get select(){ return GroupMembershipRoleSelectObjectSchema.optional(); }, data: z.union([ GroupMembershipRoleCreateManyInputObjectSchema, z.array(GroupMembershipRoleCreateManyInputObjectSchema) ]), skipDuplicates: z.boolean().optional() }).strict(); - -// File: deleteOneGroupMembershipRole.schema.ts - -export const GroupMembershipRoleDeleteOneSchema: z.ZodType = z.object({ get select(){ return GroupMembershipRoleSelectObjectSchema.optional(); }, get include(){ return GroupMembershipRoleIncludeObjectSchema.optional(); }, where: GroupMembershipRoleWhereUniqueInputObjectSchema }).strict() as unknown as z.ZodType; - -export const GroupMembershipRoleDeleteOneZodSchema = z.object({ get select(){ return GroupMembershipRoleSelectObjectSchema.optional(); }, get include(){ return GroupMembershipRoleIncludeObjectSchema.optional(); }, where: GroupMembershipRoleWhereUniqueInputObjectSchema }).strict(); - -// File: deleteManyGroupMembershipRole.schema.ts - -export const GroupMembershipRoleDeleteManySchema: z.ZodType = z.object({ where: GroupMembershipRoleWhereInputObjectSchema.optional() }).strict() as unknown as z.ZodType; - -export const GroupMembershipRoleDeleteManyZodSchema = z.object({ where: GroupMembershipRoleWhereInputObjectSchema.optional() }).strict(); - -// File: updateOneGroupMembershipRole.schema.ts - -export const GroupMembershipRoleUpdateOneSchema: z.ZodType = z.object({ get select(){ return GroupMembershipRoleSelectObjectSchema.optional(); }, get include(){ return GroupMembershipRoleIncludeObjectSchema.optional(); }, data: z.union([GroupMembershipRoleUpdateInputObjectSchema, GroupMembershipRoleUncheckedUpdateInputObjectSchema]), where: GroupMembershipRoleWhereUniqueInputObjectSchema }).strict() as unknown as z.ZodType; - -export const GroupMembershipRoleUpdateOneZodSchema = z.object({ get select(){ return GroupMembershipRoleSelectObjectSchema.optional(); }, get include(){ return GroupMembershipRoleIncludeObjectSchema.optional(); }, data: z.union([GroupMembershipRoleUpdateInputObjectSchema, GroupMembershipRoleUncheckedUpdateInputObjectSchema]), where: GroupMembershipRoleWhereUniqueInputObjectSchema }).strict(); - -// File: updateManyGroupMembershipRole.schema.ts - -export const GroupMembershipRoleUpdateManySchema: z.ZodType = z.object({ data: GroupMembershipRoleUpdateManyMutationInputObjectSchema, where: GroupMembershipRoleWhereInputObjectSchema.optional() }).strict() as unknown as z.ZodType; - -export const GroupMembershipRoleUpdateManyZodSchema = z.object({ data: GroupMembershipRoleUpdateManyMutationInputObjectSchema, where: GroupMembershipRoleWhereInputObjectSchema.optional() }).strict(); - -// File: updateManyAndReturnGroupMembershipRole.schema.ts - -export const GroupMembershipRoleUpdateManyAndReturnSchema: z.ZodType = z.object({ get select(){ return GroupMembershipRoleSelectObjectSchema.optional(); }, data: GroupMembershipRoleUpdateManyMutationInputObjectSchema, where: GroupMembershipRoleWhereInputObjectSchema.optional() }).strict() as unknown as z.ZodType; - -export const GroupMembershipRoleUpdateManyAndReturnZodSchema = z.object({ get select(){ return GroupMembershipRoleSelectObjectSchema.optional(); }, data: GroupMembershipRoleUpdateManyMutationInputObjectSchema, where: GroupMembershipRoleWhereInputObjectSchema.optional() }).strict(); - -// File: upsertOneGroupMembershipRole.schema.ts - -export const GroupMembershipRoleUpsertOneSchema: z.ZodType = z.object({ get select(){ return GroupMembershipRoleSelectObjectSchema.optional(); }, get include(){ return GroupMembershipRoleIncludeObjectSchema.optional(); }, where: GroupMembershipRoleWhereUniqueInputObjectSchema, create: z.union([ GroupMembershipRoleCreateInputObjectSchema, GroupMembershipRoleUncheckedCreateInputObjectSchema ]), update: z.union([ GroupMembershipRoleUpdateInputObjectSchema, GroupMembershipRoleUncheckedUpdateInputObjectSchema ]) }).strict() as unknown as z.ZodType; - -export const GroupMembershipRoleUpsertOneZodSchema = z.object({ get select(){ return GroupMembershipRoleSelectObjectSchema.optional(); }, get include(){ return GroupMembershipRoleIncludeObjectSchema.optional(); }, where: GroupMembershipRoleWhereUniqueInputObjectSchema, create: z.union([ GroupMembershipRoleCreateInputObjectSchema, GroupMembershipRoleUncheckedCreateInputObjectSchema ]), update: z.union([ GroupMembershipRoleUpdateInputObjectSchema, GroupMembershipRoleUncheckedUpdateInputObjectSchema ]) }).strict(); - -// File: aggregateGroupMembershipRole.schema.ts - -export const GroupMembershipRoleAggregateSchema: z.ZodType = z.object({ orderBy: z.union([GroupMembershipRoleOrderByWithRelationInputObjectSchema, GroupMembershipRoleOrderByWithRelationInputObjectSchema.array()]).optional(), where: GroupMembershipRoleWhereInputObjectSchema.optional(), cursor: GroupMembershipRoleWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), _count: z.union([ z.literal(true), GroupMembershipRoleCountAggregateInputObjectSchema ]).optional(), _min: GroupMembershipRoleMinAggregateInputObjectSchema.optional(), _max: GroupMembershipRoleMaxAggregateInputObjectSchema.optional() }).strict() as unknown as z.ZodType; - -export const GroupMembershipRoleAggregateZodSchema = z.object({ orderBy: z.union([GroupMembershipRoleOrderByWithRelationInputObjectSchema, GroupMembershipRoleOrderByWithRelationInputObjectSchema.array()]).optional(), where: GroupMembershipRoleWhereInputObjectSchema.optional(), cursor: GroupMembershipRoleWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), _count: z.union([ z.literal(true), GroupMembershipRoleCountAggregateInputObjectSchema ]).optional(), _min: GroupMembershipRoleMinAggregateInputObjectSchema.optional(), _max: GroupMembershipRoleMaxAggregateInputObjectSchema.optional() }).strict(); - -// File: groupByGroupMembershipRole.schema.ts - -export const GroupMembershipRoleGroupBySchema: z.ZodType = z.object({ where: GroupMembershipRoleWhereInputObjectSchema.optional(), orderBy: z.union([GroupMembershipRoleOrderByWithAggregationInputObjectSchema, GroupMembershipRoleOrderByWithAggregationInputObjectSchema.array()]).optional(), having: GroupMembershipRoleScalarWhereWithAggregatesInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), by: z.array(GroupMembershipRoleScalarFieldEnumSchema), _count: z.union([ z.literal(true), GroupMembershipRoleCountAggregateInputObjectSchema ]).optional(), _min: GroupMembershipRoleMinAggregateInputObjectSchema.optional(), _max: GroupMembershipRoleMaxAggregateInputObjectSchema.optional() }).strict() as unknown as z.ZodType; - -export const GroupMembershipRoleGroupByZodSchema = z.object({ where: GroupMembershipRoleWhereInputObjectSchema.optional(), orderBy: z.union([GroupMembershipRoleOrderByWithAggregationInputObjectSchema, GroupMembershipRoleOrderByWithAggregationInputObjectSchema.array()]).optional(), having: GroupMembershipRoleScalarWhereWithAggregatesInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), by: z.array(GroupMembershipRoleScalarFieldEnumSchema), _count: z.union([ z.literal(true), GroupMembershipRoleCountAggregateInputObjectSchema ]).optional(), _min: GroupMembershipRoleMinAggregateInputObjectSchema.optional(), _max: GroupMembershipRoleMaxAggregateInputObjectSchema.optional() }).strict(); - -// File: findUniqueGroupRole.schema.ts - -export const GroupRoleFindUniqueSchema: z.ZodType = z.object({ get select(){ return GroupRoleSelectObjectSchema.optional(); }, get include(){ return GroupRoleIncludeObjectSchema.optional(); }, where: GroupRoleWhereUniqueInputObjectSchema }).strict() as unknown as z.ZodType; - -export const GroupRoleFindUniqueZodSchema = z.object({ get select(){ return GroupRoleSelectObjectSchema.optional(); }, get include(){ return GroupRoleIncludeObjectSchema.optional(); }, where: GroupRoleWhereUniqueInputObjectSchema }).strict(); - -// File: findUniqueOrThrowGroupRole.schema.ts - -export const GroupRoleFindUniqueOrThrowSchema: z.ZodType = z.object({ get select(){ return GroupRoleSelectObjectSchema.optional(); }, get include(){ return GroupRoleIncludeObjectSchema.optional(); }, where: GroupRoleWhereUniqueInputObjectSchema }).strict() as unknown as z.ZodType; - -export const GroupRoleFindUniqueOrThrowZodSchema = z.object({ get select(){ return GroupRoleSelectObjectSchema.optional(); }, get include(){ return GroupRoleIncludeObjectSchema.optional(); }, where: GroupRoleWhereUniqueInputObjectSchema }).strict(); - -// File: findFirstGroupRole.schema.ts - -// Select schema needs to be in file to prevent circular imports -//------------------------------------------------------ - -export const GroupRoleFindFirstSelectSchema__findFirstGroupRole_schema: z.ZodType = z.object({ - id: z.boolean().optional(), - name: z.boolean().optional(), - type: z.boolean().optional(), - groupId: z.boolean().optional(), - group: z.boolean().optional(), - groupMembershipRoles: z.boolean().optional(), - _count: z.boolean().optional() - }).strict() as unknown as z.ZodType; - -export const GroupRoleFindFirstSelectZodSchema__findFirstGroupRole_schema = z.object({ - id: z.boolean().optional(), - name: z.boolean().optional(), - type: z.boolean().optional(), - groupId: z.boolean().optional(), - group: z.boolean().optional(), - groupMembershipRoles: z.boolean().optional(), - _count: z.boolean().optional() - }).strict(); - -export const GroupRoleFindFirstSchema: z.ZodType = z.object({ get select(){ return GroupRoleFindFirstSelectSchema__findFirstGroupRole_schema.optional(); }, get include(){ return GroupRoleIncludeObjectSchema.optional(); }, orderBy: z.union([GroupRoleOrderByWithRelationInputObjectSchema, GroupRoleOrderByWithRelationInputObjectSchema.array()]).optional(), where: GroupRoleWhereInputObjectSchema.optional(), cursor: GroupRoleWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), distinct: z.union([GroupRoleScalarFieldEnumSchema, GroupRoleScalarFieldEnumSchema.array()]).optional() }).strict() as unknown as z.ZodType; - -export const GroupRoleFindFirstZodSchema = z.object({ get select(){ return GroupRoleFindFirstSelectSchema__findFirstGroupRole_schema.optional(); }, get include(){ return GroupRoleIncludeObjectSchema.optional(); }, orderBy: z.union([GroupRoleOrderByWithRelationInputObjectSchema, GroupRoleOrderByWithRelationInputObjectSchema.array()]).optional(), where: GroupRoleWhereInputObjectSchema.optional(), cursor: GroupRoleWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), distinct: z.union([GroupRoleScalarFieldEnumSchema, GroupRoleScalarFieldEnumSchema.array()]).optional() }).strict(); - -// File: findFirstOrThrowGroupRole.schema.ts - -// Select schema needs to be in file to prevent circular imports -//------------------------------------------------------ - -export const GroupRoleFindFirstOrThrowSelectSchema__findFirstOrThrowGroupRole_schema: z.ZodType = z.object({ - id: z.boolean().optional(), - name: z.boolean().optional(), - type: z.boolean().optional(), - groupId: z.boolean().optional(), - group: z.boolean().optional(), - groupMembershipRoles: z.boolean().optional(), - _count: z.boolean().optional() - }).strict() as unknown as z.ZodType; - -export const GroupRoleFindFirstOrThrowSelectZodSchema__findFirstOrThrowGroupRole_schema = z.object({ - id: z.boolean().optional(), - name: z.boolean().optional(), - type: z.boolean().optional(), - groupId: z.boolean().optional(), - group: z.boolean().optional(), - groupMembershipRoles: z.boolean().optional(), - _count: z.boolean().optional() - }).strict(); - -export const GroupRoleFindFirstOrThrowSchema: z.ZodType = z.object({ get select(){ return GroupRoleFindFirstOrThrowSelectSchema__findFirstOrThrowGroupRole_schema.optional(); }, get include(){ return GroupRoleIncludeObjectSchema.optional(); }, orderBy: z.union([GroupRoleOrderByWithRelationInputObjectSchema, GroupRoleOrderByWithRelationInputObjectSchema.array()]).optional(), where: GroupRoleWhereInputObjectSchema.optional(), cursor: GroupRoleWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), distinct: z.union([GroupRoleScalarFieldEnumSchema, GroupRoleScalarFieldEnumSchema.array()]).optional() }).strict() as unknown as z.ZodType; - -export const GroupRoleFindFirstOrThrowZodSchema = z.object({ get select(){ return GroupRoleFindFirstOrThrowSelectSchema__findFirstOrThrowGroupRole_schema.optional(); }, get include(){ return GroupRoleIncludeObjectSchema.optional(); }, orderBy: z.union([GroupRoleOrderByWithRelationInputObjectSchema, GroupRoleOrderByWithRelationInputObjectSchema.array()]).optional(), where: GroupRoleWhereInputObjectSchema.optional(), cursor: GroupRoleWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), distinct: z.union([GroupRoleScalarFieldEnumSchema, GroupRoleScalarFieldEnumSchema.array()]).optional() }).strict(); - -// File: findManyGroupRole.schema.ts - -// Select schema needs to be in file to prevent circular imports -//------------------------------------------------------ - -export const GroupRoleFindManySelectSchema__findManyGroupRole_schema: z.ZodType = z.object({ - id: z.boolean().optional(), - name: z.boolean().optional(), - type: z.boolean().optional(), - groupId: z.boolean().optional(), - group: z.boolean().optional(), - groupMembershipRoles: z.boolean().optional(), - _count: z.boolean().optional() - }).strict() as unknown as z.ZodType; - -export const GroupRoleFindManySelectZodSchema__findManyGroupRole_schema = z.object({ - id: z.boolean().optional(), - name: z.boolean().optional(), - type: z.boolean().optional(), - groupId: z.boolean().optional(), - group: z.boolean().optional(), - groupMembershipRoles: z.boolean().optional(), - _count: z.boolean().optional() - }).strict(); - -export const GroupRoleFindManySchema: z.ZodType = z.object({ get select(){ return GroupRoleFindManySelectSchema__findManyGroupRole_schema.optional(); }, get include(){ return GroupRoleIncludeObjectSchema.optional(); }, orderBy: z.union([GroupRoleOrderByWithRelationInputObjectSchema, GroupRoleOrderByWithRelationInputObjectSchema.array()]).optional(), where: GroupRoleWhereInputObjectSchema.optional(), cursor: GroupRoleWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), distinct: z.union([GroupRoleScalarFieldEnumSchema, GroupRoleScalarFieldEnumSchema.array()]).optional() }).strict() as unknown as z.ZodType; - -export const GroupRoleFindManyZodSchema = z.object({ get select(){ return GroupRoleFindManySelectSchema__findManyGroupRole_schema.optional(); }, get include(){ return GroupRoleIncludeObjectSchema.optional(); }, orderBy: z.union([GroupRoleOrderByWithRelationInputObjectSchema, GroupRoleOrderByWithRelationInputObjectSchema.array()]).optional(), where: GroupRoleWhereInputObjectSchema.optional(), cursor: GroupRoleWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), distinct: z.union([GroupRoleScalarFieldEnumSchema, GroupRoleScalarFieldEnumSchema.array()]).optional() }).strict(); - -// File: countGroupRole.schema.ts - -export const GroupRoleCountSchema: z.ZodType = z.object({ orderBy: z.union([GroupRoleOrderByWithRelationInputObjectSchema, GroupRoleOrderByWithRelationInputObjectSchema.array()]).optional(), where: GroupRoleWhereInputObjectSchema.optional(), cursor: GroupRoleWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), select: z.union([ z.literal(true), GroupRoleCountAggregateInputObjectSchema ]).optional() }).strict() as unknown as z.ZodType; - -export const GroupRoleCountZodSchema = z.object({ orderBy: z.union([GroupRoleOrderByWithRelationInputObjectSchema, GroupRoleOrderByWithRelationInputObjectSchema.array()]).optional(), where: GroupRoleWhereInputObjectSchema.optional(), cursor: GroupRoleWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), select: z.union([ z.literal(true), GroupRoleCountAggregateInputObjectSchema ]).optional() }).strict(); - -// File: createOneGroupRole.schema.ts - -export const GroupRoleCreateOneSchema: z.ZodType = z.object({ get select(){ return GroupRoleSelectObjectSchema.optional(); }, get include(){ return GroupRoleIncludeObjectSchema.optional(); }, data: z.union([GroupRoleCreateInputObjectSchema, GroupRoleUncheckedCreateInputObjectSchema]) }).strict() as unknown as z.ZodType; - -export const GroupRoleCreateOneZodSchema = z.object({ get select(){ return GroupRoleSelectObjectSchema.optional(); }, get include(){ return GroupRoleIncludeObjectSchema.optional(); }, data: z.union([GroupRoleCreateInputObjectSchema, GroupRoleUncheckedCreateInputObjectSchema]) }).strict(); - -// File: createManyGroupRole.schema.ts - -export const GroupRoleCreateManySchema: z.ZodType = z.object({ data: z.union([ GroupRoleCreateManyInputObjectSchema, z.array(GroupRoleCreateManyInputObjectSchema) ]), skipDuplicates: z.boolean().optional() }).strict() as unknown as z.ZodType; - -export const GroupRoleCreateManyZodSchema = z.object({ data: z.union([ GroupRoleCreateManyInputObjectSchema, z.array(GroupRoleCreateManyInputObjectSchema) ]), skipDuplicates: z.boolean().optional() }).strict(); - -// File: createManyAndReturnGroupRole.schema.ts - -export const GroupRoleCreateManyAndReturnSchema: z.ZodType = z.object({ get select(){ return GroupRoleSelectObjectSchema.optional(); }, data: z.union([ GroupRoleCreateManyInputObjectSchema, z.array(GroupRoleCreateManyInputObjectSchema) ]), skipDuplicates: z.boolean().optional() }).strict() as unknown as z.ZodType; - -export const GroupRoleCreateManyAndReturnZodSchema = z.object({ get select(){ return GroupRoleSelectObjectSchema.optional(); }, data: z.union([ GroupRoleCreateManyInputObjectSchema, z.array(GroupRoleCreateManyInputObjectSchema) ]), skipDuplicates: z.boolean().optional() }).strict(); - -// File: deleteOneGroupRole.schema.ts - -export const GroupRoleDeleteOneSchema: z.ZodType = z.object({ get select(){ return GroupRoleSelectObjectSchema.optional(); }, get include(){ return GroupRoleIncludeObjectSchema.optional(); }, where: GroupRoleWhereUniqueInputObjectSchema }).strict() as unknown as z.ZodType; - -export const GroupRoleDeleteOneZodSchema = z.object({ get select(){ return GroupRoleSelectObjectSchema.optional(); }, get include(){ return GroupRoleIncludeObjectSchema.optional(); }, where: GroupRoleWhereUniqueInputObjectSchema }).strict(); - -// File: deleteManyGroupRole.schema.ts - -export const GroupRoleDeleteManySchema: z.ZodType = z.object({ where: GroupRoleWhereInputObjectSchema.optional() }).strict() as unknown as z.ZodType; - -export const GroupRoleDeleteManyZodSchema = z.object({ where: GroupRoleWhereInputObjectSchema.optional() }).strict(); - -// File: updateOneGroupRole.schema.ts - -export const GroupRoleUpdateOneSchema: z.ZodType = z.object({ get select(){ return GroupRoleSelectObjectSchema.optional(); }, get include(){ return GroupRoleIncludeObjectSchema.optional(); }, data: z.union([GroupRoleUpdateInputObjectSchema, GroupRoleUncheckedUpdateInputObjectSchema]), where: GroupRoleWhereUniqueInputObjectSchema }).strict() as unknown as z.ZodType; - -export const GroupRoleUpdateOneZodSchema = z.object({ get select(){ return GroupRoleSelectObjectSchema.optional(); }, get include(){ return GroupRoleIncludeObjectSchema.optional(); }, data: z.union([GroupRoleUpdateInputObjectSchema, GroupRoleUncheckedUpdateInputObjectSchema]), where: GroupRoleWhereUniqueInputObjectSchema }).strict(); - -// File: updateManyGroupRole.schema.ts - -export const GroupRoleUpdateManySchema: z.ZodType = z.object({ data: GroupRoleUpdateManyMutationInputObjectSchema, where: GroupRoleWhereInputObjectSchema.optional() }).strict() as unknown as z.ZodType; - -export const GroupRoleUpdateManyZodSchema = z.object({ data: GroupRoleUpdateManyMutationInputObjectSchema, where: GroupRoleWhereInputObjectSchema.optional() }).strict(); - -// File: updateManyAndReturnGroupRole.schema.ts - -export const GroupRoleUpdateManyAndReturnSchema: z.ZodType = z.object({ get select(){ return GroupRoleSelectObjectSchema.optional(); }, data: GroupRoleUpdateManyMutationInputObjectSchema, where: GroupRoleWhereInputObjectSchema.optional() }).strict() as unknown as z.ZodType; - -export const GroupRoleUpdateManyAndReturnZodSchema = z.object({ get select(){ return GroupRoleSelectObjectSchema.optional(); }, data: GroupRoleUpdateManyMutationInputObjectSchema, where: GroupRoleWhereInputObjectSchema.optional() }).strict(); - -// File: upsertOneGroupRole.schema.ts - -export const GroupRoleUpsertOneSchema: z.ZodType = z.object({ get select(){ return GroupRoleSelectObjectSchema.optional(); }, get include(){ return GroupRoleIncludeObjectSchema.optional(); }, where: GroupRoleWhereUniqueInputObjectSchema, create: z.union([ GroupRoleCreateInputObjectSchema, GroupRoleUncheckedCreateInputObjectSchema ]), update: z.union([ GroupRoleUpdateInputObjectSchema, GroupRoleUncheckedUpdateInputObjectSchema ]) }).strict() as unknown as z.ZodType; - -export const GroupRoleUpsertOneZodSchema = z.object({ get select(){ return GroupRoleSelectObjectSchema.optional(); }, get include(){ return GroupRoleIncludeObjectSchema.optional(); }, where: GroupRoleWhereUniqueInputObjectSchema, create: z.union([ GroupRoleCreateInputObjectSchema, GroupRoleUncheckedCreateInputObjectSchema ]), update: z.union([ GroupRoleUpdateInputObjectSchema, GroupRoleUncheckedUpdateInputObjectSchema ]) }).strict(); - -// File: aggregateGroupRole.schema.ts - -export const GroupRoleAggregateSchema: z.ZodType = z.object({ orderBy: z.union([GroupRoleOrderByWithRelationInputObjectSchema, GroupRoleOrderByWithRelationInputObjectSchema.array()]).optional(), where: GroupRoleWhereInputObjectSchema.optional(), cursor: GroupRoleWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), _count: z.union([ z.literal(true), GroupRoleCountAggregateInputObjectSchema ]).optional(), _min: GroupRoleMinAggregateInputObjectSchema.optional(), _max: GroupRoleMaxAggregateInputObjectSchema.optional() }).strict() as unknown as z.ZodType; - -export const GroupRoleAggregateZodSchema = z.object({ orderBy: z.union([GroupRoleOrderByWithRelationInputObjectSchema, GroupRoleOrderByWithRelationInputObjectSchema.array()]).optional(), where: GroupRoleWhereInputObjectSchema.optional(), cursor: GroupRoleWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), _count: z.union([ z.literal(true), GroupRoleCountAggregateInputObjectSchema ]).optional(), _min: GroupRoleMinAggregateInputObjectSchema.optional(), _max: GroupRoleMaxAggregateInputObjectSchema.optional() }).strict(); - -// File: groupByGroupRole.schema.ts - -export const GroupRoleGroupBySchema: z.ZodType = z.object({ where: GroupRoleWhereInputObjectSchema.optional(), orderBy: z.union([GroupRoleOrderByWithAggregationInputObjectSchema, GroupRoleOrderByWithAggregationInputObjectSchema.array()]).optional(), having: GroupRoleScalarWhereWithAggregatesInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), by: z.array(GroupRoleScalarFieldEnumSchema), _count: z.union([ z.literal(true), GroupRoleCountAggregateInputObjectSchema ]).optional(), _min: GroupRoleMinAggregateInputObjectSchema.optional(), _max: GroupRoleMaxAggregateInputObjectSchema.optional() }).strict() as unknown as z.ZodType; - -export const GroupRoleGroupByZodSchema = z.object({ where: GroupRoleWhereInputObjectSchema.optional(), orderBy: z.union([GroupRoleOrderByWithAggregationInputObjectSchema, GroupRoleOrderByWithAggregationInputObjectSchema.array()]).optional(), having: GroupRoleScalarWhereWithAggregatesInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), by: z.array(GroupRoleScalarFieldEnumSchema), _count: z.union([ z.literal(true), GroupRoleCountAggregateInputObjectSchema ]).optional(), _min: GroupRoleMinAggregateInputObjectSchema.optional(), _max: GroupRoleMaxAggregateInputObjectSchema.optional() }).strict(); - -// File: findUniqueAttendance.schema.ts - -export const AttendanceFindUniqueSchema: z.ZodType = z.object({ get select(){ return AttendanceSelectObjectSchema.optional(); }, get include(){ return AttendanceIncludeObjectSchema.optional(); }, where: AttendanceWhereUniqueInputObjectSchema }).strict() as unknown as z.ZodType; - -export const AttendanceFindUniqueZodSchema = z.object({ get select(){ return AttendanceSelectObjectSchema.optional(); }, get include(){ return AttendanceIncludeObjectSchema.optional(); }, where: AttendanceWhereUniqueInputObjectSchema }).strict(); - -// File: findUniqueOrThrowAttendance.schema.ts - -export const AttendanceFindUniqueOrThrowSchema: z.ZodType = z.object({ get select(){ return AttendanceSelectObjectSchema.optional(); }, get include(){ return AttendanceIncludeObjectSchema.optional(); }, where: AttendanceWhereUniqueInputObjectSchema }).strict() as unknown as z.ZodType; - -export const AttendanceFindUniqueOrThrowZodSchema = z.object({ get select(){ return AttendanceSelectObjectSchema.optional(); }, get include(){ return AttendanceIncludeObjectSchema.optional(); }, where: AttendanceWhereUniqueInputObjectSchema }).strict(); - -// File: findFirstAttendance.schema.ts - -// Select schema needs to be in file to prevent circular imports -//------------------------------------------------------ - -export const AttendanceFindFirstSelectSchema__findFirstAttendance_schema: z.ZodType = z.object({ - id: z.boolean().optional(), - registerStart: z.boolean().optional(), - registerEnd: z.boolean().optional(), - deregisterDeadline: z.boolean().optional(), - selections: z.boolean().optional(), - createdAt: z.boolean().optional(), - updatedAt: z.boolean().optional(), - attendancePrice: z.boolean().optional(), - pools: z.boolean().optional(), - attendees: z.boolean().optional(), - events: z.boolean().optional(), - _count: z.boolean().optional() - }).strict() as unknown as z.ZodType; - -export const AttendanceFindFirstSelectZodSchema__findFirstAttendance_schema = z.object({ - id: z.boolean().optional(), - registerStart: z.boolean().optional(), - registerEnd: z.boolean().optional(), - deregisterDeadline: z.boolean().optional(), - selections: z.boolean().optional(), - createdAt: z.boolean().optional(), - updatedAt: z.boolean().optional(), - attendancePrice: z.boolean().optional(), - pools: z.boolean().optional(), - attendees: z.boolean().optional(), - events: z.boolean().optional(), - _count: z.boolean().optional() - }).strict(); - -export const AttendanceFindFirstSchema: z.ZodType = z.object({ get select(){ return AttendanceFindFirstSelectSchema__findFirstAttendance_schema.optional(); }, get include(){ return AttendanceIncludeObjectSchema.optional(); }, orderBy: z.union([AttendanceOrderByWithRelationInputObjectSchema, AttendanceOrderByWithRelationInputObjectSchema.array()]).optional(), where: AttendanceWhereInputObjectSchema.optional(), cursor: AttendanceWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), distinct: z.union([AttendanceScalarFieldEnumSchema, AttendanceScalarFieldEnumSchema.array()]).optional() }).strict() as unknown as z.ZodType; - -export const AttendanceFindFirstZodSchema = z.object({ get select(){ return AttendanceFindFirstSelectSchema__findFirstAttendance_schema.optional(); }, get include(){ return AttendanceIncludeObjectSchema.optional(); }, orderBy: z.union([AttendanceOrderByWithRelationInputObjectSchema, AttendanceOrderByWithRelationInputObjectSchema.array()]).optional(), where: AttendanceWhereInputObjectSchema.optional(), cursor: AttendanceWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), distinct: z.union([AttendanceScalarFieldEnumSchema, AttendanceScalarFieldEnumSchema.array()]).optional() }).strict(); - -// File: findFirstOrThrowAttendance.schema.ts - -// Select schema needs to be in file to prevent circular imports -//------------------------------------------------------ - -export const AttendanceFindFirstOrThrowSelectSchema__findFirstOrThrowAttendance_schema: z.ZodType = z.object({ - id: z.boolean().optional(), - registerStart: z.boolean().optional(), - registerEnd: z.boolean().optional(), - deregisterDeadline: z.boolean().optional(), - selections: z.boolean().optional(), - createdAt: z.boolean().optional(), - updatedAt: z.boolean().optional(), - attendancePrice: z.boolean().optional(), - pools: z.boolean().optional(), - attendees: z.boolean().optional(), - events: z.boolean().optional(), - _count: z.boolean().optional() - }).strict() as unknown as z.ZodType; - -export const AttendanceFindFirstOrThrowSelectZodSchema__findFirstOrThrowAttendance_schema = z.object({ - id: z.boolean().optional(), - registerStart: z.boolean().optional(), - registerEnd: z.boolean().optional(), - deregisterDeadline: z.boolean().optional(), - selections: z.boolean().optional(), - createdAt: z.boolean().optional(), - updatedAt: z.boolean().optional(), - attendancePrice: z.boolean().optional(), - pools: z.boolean().optional(), - attendees: z.boolean().optional(), - events: z.boolean().optional(), - _count: z.boolean().optional() - }).strict(); - -export const AttendanceFindFirstOrThrowSchema: z.ZodType = z.object({ get select(){ return AttendanceFindFirstOrThrowSelectSchema__findFirstOrThrowAttendance_schema.optional(); }, get include(){ return AttendanceIncludeObjectSchema.optional(); }, orderBy: z.union([AttendanceOrderByWithRelationInputObjectSchema, AttendanceOrderByWithRelationInputObjectSchema.array()]).optional(), where: AttendanceWhereInputObjectSchema.optional(), cursor: AttendanceWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), distinct: z.union([AttendanceScalarFieldEnumSchema, AttendanceScalarFieldEnumSchema.array()]).optional() }).strict() as unknown as z.ZodType; - -export const AttendanceFindFirstOrThrowZodSchema = z.object({ get select(){ return AttendanceFindFirstOrThrowSelectSchema__findFirstOrThrowAttendance_schema.optional(); }, get include(){ return AttendanceIncludeObjectSchema.optional(); }, orderBy: z.union([AttendanceOrderByWithRelationInputObjectSchema, AttendanceOrderByWithRelationInputObjectSchema.array()]).optional(), where: AttendanceWhereInputObjectSchema.optional(), cursor: AttendanceWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), distinct: z.union([AttendanceScalarFieldEnumSchema, AttendanceScalarFieldEnumSchema.array()]).optional() }).strict(); - -// File: findManyAttendance.schema.ts - -// Select schema needs to be in file to prevent circular imports -//------------------------------------------------------ - -export const AttendanceFindManySelectSchema__findManyAttendance_schema: z.ZodType = z.object({ - id: z.boolean().optional(), - registerStart: z.boolean().optional(), - registerEnd: z.boolean().optional(), - deregisterDeadline: z.boolean().optional(), - selections: z.boolean().optional(), - createdAt: z.boolean().optional(), - updatedAt: z.boolean().optional(), - attendancePrice: z.boolean().optional(), - pools: z.boolean().optional(), - attendees: z.boolean().optional(), - events: z.boolean().optional(), - _count: z.boolean().optional() - }).strict() as unknown as z.ZodType; - -export const AttendanceFindManySelectZodSchema__findManyAttendance_schema = z.object({ - id: z.boolean().optional(), - registerStart: z.boolean().optional(), - registerEnd: z.boolean().optional(), - deregisterDeadline: z.boolean().optional(), - selections: z.boolean().optional(), - createdAt: z.boolean().optional(), - updatedAt: z.boolean().optional(), - attendancePrice: z.boolean().optional(), - pools: z.boolean().optional(), - attendees: z.boolean().optional(), - events: z.boolean().optional(), - _count: z.boolean().optional() - }).strict(); - -export const AttendanceFindManySchema: z.ZodType = z.object({ get select(){ return AttendanceFindManySelectSchema__findManyAttendance_schema.optional(); }, get include(){ return AttendanceIncludeObjectSchema.optional(); }, orderBy: z.union([AttendanceOrderByWithRelationInputObjectSchema, AttendanceOrderByWithRelationInputObjectSchema.array()]).optional(), where: AttendanceWhereInputObjectSchema.optional(), cursor: AttendanceWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), distinct: z.union([AttendanceScalarFieldEnumSchema, AttendanceScalarFieldEnumSchema.array()]).optional() }).strict() as unknown as z.ZodType; - -export const AttendanceFindManyZodSchema = z.object({ get select(){ return AttendanceFindManySelectSchema__findManyAttendance_schema.optional(); }, get include(){ return AttendanceIncludeObjectSchema.optional(); }, orderBy: z.union([AttendanceOrderByWithRelationInputObjectSchema, AttendanceOrderByWithRelationInputObjectSchema.array()]).optional(), where: AttendanceWhereInputObjectSchema.optional(), cursor: AttendanceWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), distinct: z.union([AttendanceScalarFieldEnumSchema, AttendanceScalarFieldEnumSchema.array()]).optional() }).strict(); - -// File: countAttendance.schema.ts - -export const AttendanceCountSchema: z.ZodType = z.object({ orderBy: z.union([AttendanceOrderByWithRelationInputObjectSchema, AttendanceOrderByWithRelationInputObjectSchema.array()]).optional(), where: AttendanceWhereInputObjectSchema.optional(), cursor: AttendanceWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), select: z.union([ z.literal(true), AttendanceCountAggregateInputObjectSchema ]).optional() }).strict() as unknown as z.ZodType; - -export const AttendanceCountZodSchema = z.object({ orderBy: z.union([AttendanceOrderByWithRelationInputObjectSchema, AttendanceOrderByWithRelationInputObjectSchema.array()]).optional(), where: AttendanceWhereInputObjectSchema.optional(), cursor: AttendanceWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), select: z.union([ z.literal(true), AttendanceCountAggregateInputObjectSchema ]).optional() }).strict(); - -// File: createOneAttendance.schema.ts - -export const AttendanceCreateOneSchema: z.ZodType = z.object({ get select(){ return AttendanceSelectObjectSchema.optional(); }, get include(){ return AttendanceIncludeObjectSchema.optional(); }, data: z.union([AttendanceCreateInputObjectSchema, AttendanceUncheckedCreateInputObjectSchema]) }).strict() as unknown as z.ZodType; - -export const AttendanceCreateOneZodSchema = z.object({ get select(){ return AttendanceSelectObjectSchema.optional(); }, get include(){ return AttendanceIncludeObjectSchema.optional(); }, data: z.union([AttendanceCreateInputObjectSchema, AttendanceUncheckedCreateInputObjectSchema]) }).strict(); - -// File: createManyAttendance.schema.ts - -export const AttendanceCreateManySchema: z.ZodType = z.object({ data: z.union([ AttendanceCreateManyInputObjectSchema, z.array(AttendanceCreateManyInputObjectSchema) ]), skipDuplicates: z.boolean().optional() }).strict() as unknown as z.ZodType; - -export const AttendanceCreateManyZodSchema = z.object({ data: z.union([ AttendanceCreateManyInputObjectSchema, z.array(AttendanceCreateManyInputObjectSchema) ]), skipDuplicates: z.boolean().optional() }).strict(); - -// File: createManyAndReturnAttendance.schema.ts - -export const AttendanceCreateManyAndReturnSchema: z.ZodType = z.object({ get select(){ return AttendanceSelectObjectSchema.optional(); }, data: z.union([ AttendanceCreateManyInputObjectSchema, z.array(AttendanceCreateManyInputObjectSchema) ]), skipDuplicates: z.boolean().optional() }).strict() as unknown as z.ZodType; - -export const AttendanceCreateManyAndReturnZodSchema = z.object({ get select(){ return AttendanceSelectObjectSchema.optional(); }, data: z.union([ AttendanceCreateManyInputObjectSchema, z.array(AttendanceCreateManyInputObjectSchema) ]), skipDuplicates: z.boolean().optional() }).strict(); - -// File: deleteOneAttendance.schema.ts - -export const AttendanceDeleteOneSchema: z.ZodType = z.object({ get select(){ return AttendanceSelectObjectSchema.optional(); }, get include(){ return AttendanceIncludeObjectSchema.optional(); }, where: AttendanceWhereUniqueInputObjectSchema }).strict() as unknown as z.ZodType; - -export const AttendanceDeleteOneZodSchema = z.object({ get select(){ return AttendanceSelectObjectSchema.optional(); }, get include(){ return AttendanceIncludeObjectSchema.optional(); }, where: AttendanceWhereUniqueInputObjectSchema }).strict(); - -// File: deleteManyAttendance.schema.ts - -export const AttendanceDeleteManySchema: z.ZodType = z.object({ where: AttendanceWhereInputObjectSchema.optional() }).strict() as unknown as z.ZodType; - -export const AttendanceDeleteManyZodSchema = z.object({ where: AttendanceWhereInputObjectSchema.optional() }).strict(); - -// File: updateOneAttendance.schema.ts - -export const AttendanceUpdateOneSchema: z.ZodType = z.object({ get select(){ return AttendanceSelectObjectSchema.optional(); }, get include(){ return AttendanceIncludeObjectSchema.optional(); }, data: z.union([AttendanceUpdateInputObjectSchema, AttendanceUncheckedUpdateInputObjectSchema]), where: AttendanceWhereUniqueInputObjectSchema }).strict() as unknown as z.ZodType; - -export const AttendanceUpdateOneZodSchema = z.object({ get select(){ return AttendanceSelectObjectSchema.optional(); }, get include(){ return AttendanceIncludeObjectSchema.optional(); }, data: z.union([AttendanceUpdateInputObjectSchema, AttendanceUncheckedUpdateInputObjectSchema]), where: AttendanceWhereUniqueInputObjectSchema }).strict(); - -// File: updateManyAttendance.schema.ts - -export const AttendanceUpdateManySchema: z.ZodType = z.object({ data: AttendanceUpdateManyMutationInputObjectSchema, where: AttendanceWhereInputObjectSchema.optional() }).strict() as unknown as z.ZodType; - -export const AttendanceUpdateManyZodSchema = z.object({ data: AttendanceUpdateManyMutationInputObjectSchema, where: AttendanceWhereInputObjectSchema.optional() }).strict(); - -// File: updateManyAndReturnAttendance.schema.ts - -export const AttendanceUpdateManyAndReturnSchema: z.ZodType = z.object({ get select(){ return AttendanceSelectObjectSchema.optional(); }, data: AttendanceUpdateManyMutationInputObjectSchema, where: AttendanceWhereInputObjectSchema.optional() }).strict() as unknown as z.ZodType; - -export const AttendanceUpdateManyAndReturnZodSchema = z.object({ get select(){ return AttendanceSelectObjectSchema.optional(); }, data: AttendanceUpdateManyMutationInputObjectSchema, where: AttendanceWhereInputObjectSchema.optional() }).strict(); - -// File: upsertOneAttendance.schema.ts - -export const AttendanceUpsertOneSchema: z.ZodType = z.object({ get select(){ return AttendanceSelectObjectSchema.optional(); }, get include(){ return AttendanceIncludeObjectSchema.optional(); }, where: AttendanceWhereUniqueInputObjectSchema, create: z.union([ AttendanceCreateInputObjectSchema, AttendanceUncheckedCreateInputObjectSchema ]), update: z.union([ AttendanceUpdateInputObjectSchema, AttendanceUncheckedUpdateInputObjectSchema ]) }).strict() as unknown as z.ZodType; - -export const AttendanceUpsertOneZodSchema = z.object({ get select(){ return AttendanceSelectObjectSchema.optional(); }, get include(){ return AttendanceIncludeObjectSchema.optional(); }, where: AttendanceWhereUniqueInputObjectSchema, create: z.union([ AttendanceCreateInputObjectSchema, AttendanceUncheckedCreateInputObjectSchema ]), update: z.union([ AttendanceUpdateInputObjectSchema, AttendanceUncheckedUpdateInputObjectSchema ]) }).strict(); - -// File: aggregateAttendance.schema.ts - -export const AttendanceAggregateSchema: z.ZodType = z.object({ orderBy: z.union([AttendanceOrderByWithRelationInputObjectSchema, AttendanceOrderByWithRelationInputObjectSchema.array()]).optional(), where: AttendanceWhereInputObjectSchema.optional(), cursor: AttendanceWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), _count: z.union([ z.literal(true), AttendanceCountAggregateInputObjectSchema ]).optional(), _min: AttendanceMinAggregateInputObjectSchema.optional(), _max: AttendanceMaxAggregateInputObjectSchema.optional(), _avg: AttendanceAvgAggregateInputObjectSchema.optional(), _sum: AttendanceSumAggregateInputObjectSchema.optional() }).strict() as unknown as z.ZodType; - -export const AttendanceAggregateZodSchema = z.object({ orderBy: z.union([AttendanceOrderByWithRelationInputObjectSchema, AttendanceOrderByWithRelationInputObjectSchema.array()]).optional(), where: AttendanceWhereInputObjectSchema.optional(), cursor: AttendanceWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), _count: z.union([ z.literal(true), AttendanceCountAggregateInputObjectSchema ]).optional(), _min: AttendanceMinAggregateInputObjectSchema.optional(), _max: AttendanceMaxAggregateInputObjectSchema.optional(), _avg: AttendanceAvgAggregateInputObjectSchema.optional(), _sum: AttendanceSumAggregateInputObjectSchema.optional() }).strict(); - -// File: groupByAttendance.schema.ts - -export const AttendanceGroupBySchema: z.ZodType = z.object({ where: AttendanceWhereInputObjectSchema.optional(), orderBy: z.union([AttendanceOrderByWithAggregationInputObjectSchema, AttendanceOrderByWithAggregationInputObjectSchema.array()]).optional(), having: AttendanceScalarWhereWithAggregatesInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), by: z.array(AttendanceScalarFieldEnumSchema), _count: z.union([ z.literal(true), AttendanceCountAggregateInputObjectSchema ]).optional(), _min: AttendanceMinAggregateInputObjectSchema.optional(), _max: AttendanceMaxAggregateInputObjectSchema.optional(), _avg: AttendanceAvgAggregateInputObjectSchema.optional(), _sum: AttendanceSumAggregateInputObjectSchema.optional() }).strict() as unknown as z.ZodType; - -export const AttendanceGroupByZodSchema = z.object({ where: AttendanceWhereInputObjectSchema.optional(), orderBy: z.union([AttendanceOrderByWithAggregationInputObjectSchema, AttendanceOrderByWithAggregationInputObjectSchema.array()]).optional(), having: AttendanceScalarWhereWithAggregatesInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), by: z.array(AttendanceScalarFieldEnumSchema), _count: z.union([ z.literal(true), AttendanceCountAggregateInputObjectSchema ]).optional(), _min: AttendanceMinAggregateInputObjectSchema.optional(), _max: AttendanceMaxAggregateInputObjectSchema.optional(), _avg: AttendanceAvgAggregateInputObjectSchema.optional(), _sum: AttendanceSumAggregateInputObjectSchema.optional() }).strict(); - -// File: findUniqueAttendancePool.schema.ts - -export const AttendancePoolFindUniqueSchema: z.ZodType = z.object({ get select(){ return AttendancePoolSelectObjectSchema.optional(); }, get include(){ return AttendancePoolIncludeObjectSchema.optional(); }, where: AttendancePoolWhereUniqueInputObjectSchema }).strict() as unknown as z.ZodType; - -export const AttendancePoolFindUniqueZodSchema = z.object({ get select(){ return AttendancePoolSelectObjectSchema.optional(); }, get include(){ return AttendancePoolIncludeObjectSchema.optional(); }, where: AttendancePoolWhereUniqueInputObjectSchema }).strict(); - -// File: findUniqueOrThrowAttendancePool.schema.ts - -export const AttendancePoolFindUniqueOrThrowSchema: z.ZodType = z.object({ get select(){ return AttendancePoolSelectObjectSchema.optional(); }, get include(){ return AttendancePoolIncludeObjectSchema.optional(); }, where: AttendancePoolWhereUniqueInputObjectSchema }).strict() as unknown as z.ZodType; - -export const AttendancePoolFindUniqueOrThrowZodSchema = z.object({ get select(){ return AttendancePoolSelectObjectSchema.optional(); }, get include(){ return AttendancePoolIncludeObjectSchema.optional(); }, where: AttendancePoolWhereUniqueInputObjectSchema }).strict(); - -// File: findFirstAttendancePool.schema.ts - -// Select schema needs to be in file to prevent circular imports -//------------------------------------------------------ - -export const AttendancePoolFindFirstSelectSchema__findFirstAttendancePool_schema: z.ZodType = z.object({ - id: z.boolean().optional(), - title: z.boolean().optional(), - mergeDelayHours: z.boolean().optional(), - yearCriteria: z.boolean().optional(), - capacity: z.boolean().optional(), - createdAt: z.boolean().optional(), - updatedAt: z.boolean().optional(), - attendanceId: z.boolean().optional(), - taskId: z.boolean().optional(), - attendance: z.boolean().optional(), - task: z.boolean().optional(), - attendees: z.boolean().optional(), - _count: z.boolean().optional() - }).strict() as unknown as z.ZodType; - -export const AttendancePoolFindFirstSelectZodSchema__findFirstAttendancePool_schema = z.object({ - id: z.boolean().optional(), - title: z.boolean().optional(), - mergeDelayHours: z.boolean().optional(), - yearCriteria: z.boolean().optional(), - capacity: z.boolean().optional(), - createdAt: z.boolean().optional(), - updatedAt: z.boolean().optional(), - attendanceId: z.boolean().optional(), - taskId: z.boolean().optional(), - attendance: z.boolean().optional(), - task: z.boolean().optional(), - attendees: z.boolean().optional(), - _count: z.boolean().optional() - }).strict(); - -export const AttendancePoolFindFirstSchema: z.ZodType = z.object({ get select(){ return AttendancePoolFindFirstSelectSchema__findFirstAttendancePool_schema.optional(); }, get include(){ return AttendancePoolIncludeObjectSchema.optional(); }, orderBy: z.union([AttendancePoolOrderByWithRelationInputObjectSchema, AttendancePoolOrderByWithRelationInputObjectSchema.array()]).optional(), where: AttendancePoolWhereInputObjectSchema.optional(), cursor: AttendancePoolWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), distinct: z.union([AttendancePoolScalarFieldEnumSchema, AttendancePoolScalarFieldEnumSchema.array()]).optional() }).strict() as unknown as z.ZodType; - -export const AttendancePoolFindFirstZodSchema = z.object({ get select(){ return AttendancePoolFindFirstSelectSchema__findFirstAttendancePool_schema.optional(); }, get include(){ return AttendancePoolIncludeObjectSchema.optional(); }, orderBy: z.union([AttendancePoolOrderByWithRelationInputObjectSchema, AttendancePoolOrderByWithRelationInputObjectSchema.array()]).optional(), where: AttendancePoolWhereInputObjectSchema.optional(), cursor: AttendancePoolWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), distinct: z.union([AttendancePoolScalarFieldEnumSchema, AttendancePoolScalarFieldEnumSchema.array()]).optional() }).strict(); - -// File: findFirstOrThrowAttendancePool.schema.ts - -// Select schema needs to be in file to prevent circular imports -//------------------------------------------------------ - -export const AttendancePoolFindFirstOrThrowSelectSchema__findFirstOrThrowAttendancePool_schema: z.ZodType = z.object({ - id: z.boolean().optional(), - title: z.boolean().optional(), - mergeDelayHours: z.boolean().optional(), - yearCriteria: z.boolean().optional(), - capacity: z.boolean().optional(), - createdAt: z.boolean().optional(), - updatedAt: z.boolean().optional(), - attendanceId: z.boolean().optional(), - taskId: z.boolean().optional(), - attendance: z.boolean().optional(), - task: z.boolean().optional(), - attendees: z.boolean().optional(), - _count: z.boolean().optional() - }).strict() as unknown as z.ZodType; - -export const AttendancePoolFindFirstOrThrowSelectZodSchema__findFirstOrThrowAttendancePool_schema = z.object({ - id: z.boolean().optional(), - title: z.boolean().optional(), - mergeDelayHours: z.boolean().optional(), - yearCriteria: z.boolean().optional(), - capacity: z.boolean().optional(), - createdAt: z.boolean().optional(), - updatedAt: z.boolean().optional(), - attendanceId: z.boolean().optional(), - taskId: z.boolean().optional(), - attendance: z.boolean().optional(), - task: z.boolean().optional(), - attendees: z.boolean().optional(), - _count: z.boolean().optional() - }).strict(); - -export const AttendancePoolFindFirstOrThrowSchema: z.ZodType = z.object({ get select(){ return AttendancePoolFindFirstOrThrowSelectSchema__findFirstOrThrowAttendancePool_schema.optional(); }, get include(){ return AttendancePoolIncludeObjectSchema.optional(); }, orderBy: z.union([AttendancePoolOrderByWithRelationInputObjectSchema, AttendancePoolOrderByWithRelationInputObjectSchema.array()]).optional(), where: AttendancePoolWhereInputObjectSchema.optional(), cursor: AttendancePoolWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), distinct: z.union([AttendancePoolScalarFieldEnumSchema, AttendancePoolScalarFieldEnumSchema.array()]).optional() }).strict() as unknown as z.ZodType; - -export const AttendancePoolFindFirstOrThrowZodSchema = z.object({ get select(){ return AttendancePoolFindFirstOrThrowSelectSchema__findFirstOrThrowAttendancePool_schema.optional(); }, get include(){ return AttendancePoolIncludeObjectSchema.optional(); }, orderBy: z.union([AttendancePoolOrderByWithRelationInputObjectSchema, AttendancePoolOrderByWithRelationInputObjectSchema.array()]).optional(), where: AttendancePoolWhereInputObjectSchema.optional(), cursor: AttendancePoolWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), distinct: z.union([AttendancePoolScalarFieldEnumSchema, AttendancePoolScalarFieldEnumSchema.array()]).optional() }).strict(); - -// File: findManyAttendancePool.schema.ts - -// Select schema needs to be in file to prevent circular imports -//------------------------------------------------------ - -export const AttendancePoolFindManySelectSchema__findManyAttendancePool_schema: z.ZodType = z.object({ - id: z.boolean().optional(), - title: z.boolean().optional(), - mergeDelayHours: z.boolean().optional(), - yearCriteria: z.boolean().optional(), - capacity: z.boolean().optional(), - createdAt: z.boolean().optional(), - updatedAt: z.boolean().optional(), - attendanceId: z.boolean().optional(), - taskId: z.boolean().optional(), - attendance: z.boolean().optional(), - task: z.boolean().optional(), - attendees: z.boolean().optional(), - _count: z.boolean().optional() - }).strict() as unknown as z.ZodType; - -export const AttendancePoolFindManySelectZodSchema__findManyAttendancePool_schema = z.object({ - id: z.boolean().optional(), - title: z.boolean().optional(), - mergeDelayHours: z.boolean().optional(), - yearCriteria: z.boolean().optional(), - capacity: z.boolean().optional(), - createdAt: z.boolean().optional(), - updatedAt: z.boolean().optional(), - attendanceId: z.boolean().optional(), - taskId: z.boolean().optional(), - attendance: z.boolean().optional(), - task: z.boolean().optional(), - attendees: z.boolean().optional(), - _count: z.boolean().optional() - }).strict(); - -export const AttendancePoolFindManySchema: z.ZodType = z.object({ get select(){ return AttendancePoolFindManySelectSchema__findManyAttendancePool_schema.optional(); }, get include(){ return AttendancePoolIncludeObjectSchema.optional(); }, orderBy: z.union([AttendancePoolOrderByWithRelationInputObjectSchema, AttendancePoolOrderByWithRelationInputObjectSchema.array()]).optional(), where: AttendancePoolWhereInputObjectSchema.optional(), cursor: AttendancePoolWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), distinct: z.union([AttendancePoolScalarFieldEnumSchema, AttendancePoolScalarFieldEnumSchema.array()]).optional() }).strict() as unknown as z.ZodType; - -export const AttendancePoolFindManyZodSchema = z.object({ get select(){ return AttendancePoolFindManySelectSchema__findManyAttendancePool_schema.optional(); }, get include(){ return AttendancePoolIncludeObjectSchema.optional(); }, orderBy: z.union([AttendancePoolOrderByWithRelationInputObjectSchema, AttendancePoolOrderByWithRelationInputObjectSchema.array()]).optional(), where: AttendancePoolWhereInputObjectSchema.optional(), cursor: AttendancePoolWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), distinct: z.union([AttendancePoolScalarFieldEnumSchema, AttendancePoolScalarFieldEnumSchema.array()]).optional() }).strict(); - -// File: countAttendancePool.schema.ts - -export const AttendancePoolCountSchema: z.ZodType = z.object({ orderBy: z.union([AttendancePoolOrderByWithRelationInputObjectSchema, AttendancePoolOrderByWithRelationInputObjectSchema.array()]).optional(), where: AttendancePoolWhereInputObjectSchema.optional(), cursor: AttendancePoolWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), select: z.union([ z.literal(true), AttendancePoolCountAggregateInputObjectSchema ]).optional() }).strict() as unknown as z.ZodType; - -export const AttendancePoolCountZodSchema = z.object({ orderBy: z.union([AttendancePoolOrderByWithRelationInputObjectSchema, AttendancePoolOrderByWithRelationInputObjectSchema.array()]).optional(), where: AttendancePoolWhereInputObjectSchema.optional(), cursor: AttendancePoolWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), select: z.union([ z.literal(true), AttendancePoolCountAggregateInputObjectSchema ]).optional() }).strict(); - -// File: createOneAttendancePool.schema.ts - -export const AttendancePoolCreateOneSchema: z.ZodType = z.object({ get select(){ return AttendancePoolSelectObjectSchema.optional(); }, get include(){ return AttendancePoolIncludeObjectSchema.optional(); }, data: z.union([AttendancePoolCreateInputObjectSchema, AttendancePoolUncheckedCreateInputObjectSchema]) }).strict() as unknown as z.ZodType; - -export const AttendancePoolCreateOneZodSchema = z.object({ get select(){ return AttendancePoolSelectObjectSchema.optional(); }, get include(){ return AttendancePoolIncludeObjectSchema.optional(); }, data: z.union([AttendancePoolCreateInputObjectSchema, AttendancePoolUncheckedCreateInputObjectSchema]) }).strict(); - -// File: createManyAttendancePool.schema.ts - -export const AttendancePoolCreateManySchema: z.ZodType = z.object({ data: z.union([ AttendancePoolCreateManyInputObjectSchema, z.array(AttendancePoolCreateManyInputObjectSchema) ]), skipDuplicates: z.boolean().optional() }).strict() as unknown as z.ZodType; - -export const AttendancePoolCreateManyZodSchema = z.object({ data: z.union([ AttendancePoolCreateManyInputObjectSchema, z.array(AttendancePoolCreateManyInputObjectSchema) ]), skipDuplicates: z.boolean().optional() }).strict(); - -// File: createManyAndReturnAttendancePool.schema.ts - -export const AttendancePoolCreateManyAndReturnSchema: z.ZodType = z.object({ get select(){ return AttendancePoolSelectObjectSchema.optional(); }, data: z.union([ AttendancePoolCreateManyInputObjectSchema, z.array(AttendancePoolCreateManyInputObjectSchema) ]), skipDuplicates: z.boolean().optional() }).strict() as unknown as z.ZodType; - -export const AttendancePoolCreateManyAndReturnZodSchema = z.object({ get select(){ return AttendancePoolSelectObjectSchema.optional(); }, data: z.union([ AttendancePoolCreateManyInputObjectSchema, z.array(AttendancePoolCreateManyInputObjectSchema) ]), skipDuplicates: z.boolean().optional() }).strict(); - -// File: deleteOneAttendancePool.schema.ts - -export const AttendancePoolDeleteOneSchema: z.ZodType = z.object({ get select(){ return AttendancePoolSelectObjectSchema.optional(); }, get include(){ return AttendancePoolIncludeObjectSchema.optional(); }, where: AttendancePoolWhereUniqueInputObjectSchema }).strict() as unknown as z.ZodType; - -export const AttendancePoolDeleteOneZodSchema = z.object({ get select(){ return AttendancePoolSelectObjectSchema.optional(); }, get include(){ return AttendancePoolIncludeObjectSchema.optional(); }, where: AttendancePoolWhereUniqueInputObjectSchema }).strict(); - -// File: deleteManyAttendancePool.schema.ts - -export const AttendancePoolDeleteManySchema: z.ZodType = z.object({ where: AttendancePoolWhereInputObjectSchema.optional() }).strict() as unknown as z.ZodType; - -export const AttendancePoolDeleteManyZodSchema = z.object({ where: AttendancePoolWhereInputObjectSchema.optional() }).strict(); - -// File: updateOneAttendancePool.schema.ts - -export const AttendancePoolUpdateOneSchema: z.ZodType = z.object({ get select(){ return AttendancePoolSelectObjectSchema.optional(); }, get include(){ return AttendancePoolIncludeObjectSchema.optional(); }, data: z.union([AttendancePoolUpdateInputObjectSchema, AttendancePoolUncheckedUpdateInputObjectSchema]), where: AttendancePoolWhereUniqueInputObjectSchema }).strict() as unknown as z.ZodType; - -export const AttendancePoolUpdateOneZodSchema = z.object({ get select(){ return AttendancePoolSelectObjectSchema.optional(); }, get include(){ return AttendancePoolIncludeObjectSchema.optional(); }, data: z.union([AttendancePoolUpdateInputObjectSchema, AttendancePoolUncheckedUpdateInputObjectSchema]), where: AttendancePoolWhereUniqueInputObjectSchema }).strict(); - -// File: updateManyAttendancePool.schema.ts - -export const AttendancePoolUpdateManySchema: z.ZodType = z.object({ data: AttendancePoolUpdateManyMutationInputObjectSchema, where: AttendancePoolWhereInputObjectSchema.optional() }).strict() as unknown as z.ZodType; - -export const AttendancePoolUpdateManyZodSchema = z.object({ data: AttendancePoolUpdateManyMutationInputObjectSchema, where: AttendancePoolWhereInputObjectSchema.optional() }).strict(); - -// File: updateManyAndReturnAttendancePool.schema.ts - -export const AttendancePoolUpdateManyAndReturnSchema: z.ZodType = z.object({ get select(){ return AttendancePoolSelectObjectSchema.optional(); }, data: AttendancePoolUpdateManyMutationInputObjectSchema, where: AttendancePoolWhereInputObjectSchema.optional() }).strict() as unknown as z.ZodType; - -export const AttendancePoolUpdateManyAndReturnZodSchema = z.object({ get select(){ return AttendancePoolSelectObjectSchema.optional(); }, data: AttendancePoolUpdateManyMutationInputObjectSchema, where: AttendancePoolWhereInputObjectSchema.optional() }).strict(); - -// File: upsertOneAttendancePool.schema.ts - -export const AttendancePoolUpsertOneSchema: z.ZodType = z.object({ get select(){ return AttendancePoolSelectObjectSchema.optional(); }, get include(){ return AttendancePoolIncludeObjectSchema.optional(); }, where: AttendancePoolWhereUniqueInputObjectSchema, create: z.union([ AttendancePoolCreateInputObjectSchema, AttendancePoolUncheckedCreateInputObjectSchema ]), update: z.union([ AttendancePoolUpdateInputObjectSchema, AttendancePoolUncheckedUpdateInputObjectSchema ]) }).strict() as unknown as z.ZodType; - -export const AttendancePoolUpsertOneZodSchema = z.object({ get select(){ return AttendancePoolSelectObjectSchema.optional(); }, get include(){ return AttendancePoolIncludeObjectSchema.optional(); }, where: AttendancePoolWhereUniqueInputObjectSchema, create: z.union([ AttendancePoolCreateInputObjectSchema, AttendancePoolUncheckedCreateInputObjectSchema ]), update: z.union([ AttendancePoolUpdateInputObjectSchema, AttendancePoolUncheckedUpdateInputObjectSchema ]) }).strict(); - -// File: aggregateAttendancePool.schema.ts - -export const AttendancePoolAggregateSchema: z.ZodType = z.object({ orderBy: z.union([AttendancePoolOrderByWithRelationInputObjectSchema, AttendancePoolOrderByWithRelationInputObjectSchema.array()]).optional(), where: AttendancePoolWhereInputObjectSchema.optional(), cursor: AttendancePoolWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), _count: z.union([ z.literal(true), AttendancePoolCountAggregateInputObjectSchema ]).optional(), _min: AttendancePoolMinAggregateInputObjectSchema.optional(), _max: AttendancePoolMaxAggregateInputObjectSchema.optional(), _avg: AttendancePoolAvgAggregateInputObjectSchema.optional(), _sum: AttendancePoolSumAggregateInputObjectSchema.optional() }).strict() as unknown as z.ZodType; - -export const AttendancePoolAggregateZodSchema = z.object({ orderBy: z.union([AttendancePoolOrderByWithRelationInputObjectSchema, AttendancePoolOrderByWithRelationInputObjectSchema.array()]).optional(), where: AttendancePoolWhereInputObjectSchema.optional(), cursor: AttendancePoolWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), _count: z.union([ z.literal(true), AttendancePoolCountAggregateInputObjectSchema ]).optional(), _min: AttendancePoolMinAggregateInputObjectSchema.optional(), _max: AttendancePoolMaxAggregateInputObjectSchema.optional(), _avg: AttendancePoolAvgAggregateInputObjectSchema.optional(), _sum: AttendancePoolSumAggregateInputObjectSchema.optional() }).strict(); - -// File: groupByAttendancePool.schema.ts - -export const AttendancePoolGroupBySchema: z.ZodType = z.object({ where: AttendancePoolWhereInputObjectSchema.optional(), orderBy: z.union([AttendancePoolOrderByWithAggregationInputObjectSchema, AttendancePoolOrderByWithAggregationInputObjectSchema.array()]).optional(), having: AttendancePoolScalarWhereWithAggregatesInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), by: z.array(AttendancePoolScalarFieldEnumSchema), _count: z.union([ z.literal(true), AttendancePoolCountAggregateInputObjectSchema ]).optional(), _min: AttendancePoolMinAggregateInputObjectSchema.optional(), _max: AttendancePoolMaxAggregateInputObjectSchema.optional(), _avg: AttendancePoolAvgAggregateInputObjectSchema.optional(), _sum: AttendancePoolSumAggregateInputObjectSchema.optional() }).strict() as unknown as z.ZodType; - -export const AttendancePoolGroupByZodSchema = z.object({ where: AttendancePoolWhereInputObjectSchema.optional(), orderBy: z.union([AttendancePoolOrderByWithAggregationInputObjectSchema, AttendancePoolOrderByWithAggregationInputObjectSchema.array()]).optional(), having: AttendancePoolScalarWhereWithAggregatesInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), by: z.array(AttendancePoolScalarFieldEnumSchema), _count: z.union([ z.literal(true), AttendancePoolCountAggregateInputObjectSchema ]).optional(), _min: AttendancePoolMinAggregateInputObjectSchema.optional(), _max: AttendancePoolMaxAggregateInputObjectSchema.optional(), _avg: AttendancePoolAvgAggregateInputObjectSchema.optional(), _sum: AttendancePoolSumAggregateInputObjectSchema.optional() }).strict(); - -// File: findUniqueAttendee.schema.ts - -export const AttendeeFindUniqueSchema: z.ZodType = z.object({ get select(){ return AttendeeSelectObjectSchema.optional(); }, get include(){ return AttendeeIncludeObjectSchema.optional(); }, where: AttendeeWhereUniqueInputObjectSchema }).strict() as unknown as z.ZodType; - -export const AttendeeFindUniqueZodSchema = z.object({ get select(){ return AttendeeSelectObjectSchema.optional(); }, get include(){ return AttendeeIncludeObjectSchema.optional(); }, where: AttendeeWhereUniqueInputObjectSchema }).strict(); - -// File: findUniqueOrThrowAttendee.schema.ts - -export const AttendeeFindUniqueOrThrowSchema: z.ZodType = z.object({ get select(){ return AttendeeSelectObjectSchema.optional(); }, get include(){ return AttendeeIncludeObjectSchema.optional(); }, where: AttendeeWhereUniqueInputObjectSchema }).strict() as unknown as z.ZodType; - -export const AttendeeFindUniqueOrThrowZodSchema = z.object({ get select(){ return AttendeeSelectObjectSchema.optional(); }, get include(){ return AttendeeIncludeObjectSchema.optional(); }, where: AttendeeWhereUniqueInputObjectSchema }).strict(); - -// File: findFirstAttendee.schema.ts - -// Select schema needs to be in file to prevent circular imports -//------------------------------------------------------ - -export const AttendeeFindFirstSelectSchema__findFirstAttendee_schema: z.ZodType = z.object({ - id: z.boolean().optional(), - userGrade: z.boolean().optional(), - feedbackFormAnswer: z.boolean().optional(), - selections: z.boolean().optional(), - reserved: z.boolean().optional(), - earliestReservationAt: z.boolean().optional(), - attendedAt: z.boolean().optional(), - createdAt: z.boolean().optional(), - updatedAt: z.boolean().optional(), - paymentDeadline: z.boolean().optional(), - paymentLink: z.boolean().optional(), - paymentId: z.boolean().optional(), - paymentReservedAt: z.boolean().optional(), - paymentChargeDeadline: z.boolean().optional(), - paymentChargedAt: z.boolean().optional(), - paymentRefundedAt: z.boolean().optional(), - paymentCheckoutUrl: z.boolean().optional(), - attendanceId: z.boolean().optional(), - userId: z.boolean().optional(), - attendancePoolId: z.boolean().optional(), - paymentRefundedById: z.boolean().optional(), - attendance: z.boolean().optional(), - user: z.boolean().optional(), - attendancePool: z.boolean().optional(), - paymentRefundedBy: z.boolean().optional() - }).strict() as unknown as z.ZodType; - -export const AttendeeFindFirstSelectZodSchema__findFirstAttendee_schema = z.object({ - id: z.boolean().optional(), - userGrade: z.boolean().optional(), - feedbackFormAnswer: z.boolean().optional(), - selections: z.boolean().optional(), - reserved: z.boolean().optional(), - earliestReservationAt: z.boolean().optional(), - attendedAt: z.boolean().optional(), - createdAt: z.boolean().optional(), - updatedAt: z.boolean().optional(), - paymentDeadline: z.boolean().optional(), - paymentLink: z.boolean().optional(), - paymentId: z.boolean().optional(), - paymentReservedAt: z.boolean().optional(), - paymentChargeDeadline: z.boolean().optional(), - paymentChargedAt: z.boolean().optional(), - paymentRefundedAt: z.boolean().optional(), - paymentCheckoutUrl: z.boolean().optional(), - attendanceId: z.boolean().optional(), - userId: z.boolean().optional(), - attendancePoolId: z.boolean().optional(), - paymentRefundedById: z.boolean().optional(), - attendance: z.boolean().optional(), - user: z.boolean().optional(), - attendancePool: z.boolean().optional(), - paymentRefundedBy: z.boolean().optional() - }).strict(); - -export const AttendeeFindFirstSchema: z.ZodType = z.object({ get select(){ return AttendeeFindFirstSelectSchema__findFirstAttendee_schema.optional(); }, get include(){ return AttendeeIncludeObjectSchema.optional(); }, orderBy: z.union([AttendeeOrderByWithRelationInputObjectSchema, AttendeeOrderByWithRelationInputObjectSchema.array()]).optional(), where: AttendeeWhereInputObjectSchema.optional(), cursor: AttendeeWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), distinct: z.union([AttendeeScalarFieldEnumSchema, AttendeeScalarFieldEnumSchema.array()]).optional() }).strict() as unknown as z.ZodType; - -export const AttendeeFindFirstZodSchema = z.object({ get select(){ return AttendeeFindFirstSelectSchema__findFirstAttendee_schema.optional(); }, get include(){ return AttendeeIncludeObjectSchema.optional(); }, orderBy: z.union([AttendeeOrderByWithRelationInputObjectSchema, AttendeeOrderByWithRelationInputObjectSchema.array()]).optional(), where: AttendeeWhereInputObjectSchema.optional(), cursor: AttendeeWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), distinct: z.union([AttendeeScalarFieldEnumSchema, AttendeeScalarFieldEnumSchema.array()]).optional() }).strict(); - -// File: findFirstOrThrowAttendee.schema.ts - -// Select schema needs to be in file to prevent circular imports -//------------------------------------------------------ - -export const AttendeeFindFirstOrThrowSelectSchema__findFirstOrThrowAttendee_schema: z.ZodType = z.object({ - id: z.boolean().optional(), - userGrade: z.boolean().optional(), - feedbackFormAnswer: z.boolean().optional(), - selections: z.boolean().optional(), - reserved: z.boolean().optional(), - earliestReservationAt: z.boolean().optional(), - attendedAt: z.boolean().optional(), - createdAt: z.boolean().optional(), - updatedAt: z.boolean().optional(), - paymentDeadline: z.boolean().optional(), - paymentLink: z.boolean().optional(), - paymentId: z.boolean().optional(), - paymentReservedAt: z.boolean().optional(), - paymentChargeDeadline: z.boolean().optional(), - paymentChargedAt: z.boolean().optional(), - paymentRefundedAt: z.boolean().optional(), - paymentCheckoutUrl: z.boolean().optional(), - attendanceId: z.boolean().optional(), - userId: z.boolean().optional(), - attendancePoolId: z.boolean().optional(), - paymentRefundedById: z.boolean().optional(), - attendance: z.boolean().optional(), - user: z.boolean().optional(), - attendancePool: z.boolean().optional(), - paymentRefundedBy: z.boolean().optional() - }).strict() as unknown as z.ZodType; - -export const AttendeeFindFirstOrThrowSelectZodSchema__findFirstOrThrowAttendee_schema = z.object({ - id: z.boolean().optional(), - userGrade: z.boolean().optional(), - feedbackFormAnswer: z.boolean().optional(), - selections: z.boolean().optional(), - reserved: z.boolean().optional(), - earliestReservationAt: z.boolean().optional(), - attendedAt: z.boolean().optional(), - createdAt: z.boolean().optional(), - updatedAt: z.boolean().optional(), - paymentDeadline: z.boolean().optional(), - paymentLink: z.boolean().optional(), - paymentId: z.boolean().optional(), - paymentReservedAt: z.boolean().optional(), - paymentChargeDeadline: z.boolean().optional(), - paymentChargedAt: z.boolean().optional(), - paymentRefundedAt: z.boolean().optional(), - paymentCheckoutUrl: z.boolean().optional(), - attendanceId: z.boolean().optional(), - userId: z.boolean().optional(), - attendancePoolId: z.boolean().optional(), - paymentRefundedById: z.boolean().optional(), - attendance: z.boolean().optional(), - user: z.boolean().optional(), - attendancePool: z.boolean().optional(), - paymentRefundedBy: z.boolean().optional() - }).strict(); - -export const AttendeeFindFirstOrThrowSchema: z.ZodType = z.object({ get select(){ return AttendeeFindFirstOrThrowSelectSchema__findFirstOrThrowAttendee_schema.optional(); }, get include(){ return AttendeeIncludeObjectSchema.optional(); }, orderBy: z.union([AttendeeOrderByWithRelationInputObjectSchema, AttendeeOrderByWithRelationInputObjectSchema.array()]).optional(), where: AttendeeWhereInputObjectSchema.optional(), cursor: AttendeeWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), distinct: z.union([AttendeeScalarFieldEnumSchema, AttendeeScalarFieldEnumSchema.array()]).optional() }).strict() as unknown as z.ZodType; - -export const AttendeeFindFirstOrThrowZodSchema = z.object({ get select(){ return AttendeeFindFirstOrThrowSelectSchema__findFirstOrThrowAttendee_schema.optional(); }, get include(){ return AttendeeIncludeObjectSchema.optional(); }, orderBy: z.union([AttendeeOrderByWithRelationInputObjectSchema, AttendeeOrderByWithRelationInputObjectSchema.array()]).optional(), where: AttendeeWhereInputObjectSchema.optional(), cursor: AttendeeWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), distinct: z.union([AttendeeScalarFieldEnumSchema, AttendeeScalarFieldEnumSchema.array()]).optional() }).strict(); - -// File: findManyAttendee.schema.ts - -// Select schema needs to be in file to prevent circular imports -//------------------------------------------------------ - -export const AttendeeFindManySelectSchema__findManyAttendee_schema: z.ZodType = z.object({ - id: z.boolean().optional(), - userGrade: z.boolean().optional(), - feedbackFormAnswer: z.boolean().optional(), - selections: z.boolean().optional(), - reserved: z.boolean().optional(), - earliestReservationAt: z.boolean().optional(), - attendedAt: z.boolean().optional(), - createdAt: z.boolean().optional(), - updatedAt: z.boolean().optional(), - paymentDeadline: z.boolean().optional(), - paymentLink: z.boolean().optional(), - paymentId: z.boolean().optional(), - paymentReservedAt: z.boolean().optional(), - paymentChargeDeadline: z.boolean().optional(), - paymentChargedAt: z.boolean().optional(), - paymentRefundedAt: z.boolean().optional(), - paymentCheckoutUrl: z.boolean().optional(), - attendanceId: z.boolean().optional(), - userId: z.boolean().optional(), - attendancePoolId: z.boolean().optional(), - paymentRefundedById: z.boolean().optional(), - attendance: z.boolean().optional(), - user: z.boolean().optional(), - attendancePool: z.boolean().optional(), - paymentRefundedBy: z.boolean().optional() - }).strict() as unknown as z.ZodType; - -export const AttendeeFindManySelectZodSchema__findManyAttendee_schema = z.object({ - id: z.boolean().optional(), - userGrade: z.boolean().optional(), - feedbackFormAnswer: z.boolean().optional(), - selections: z.boolean().optional(), - reserved: z.boolean().optional(), - earliestReservationAt: z.boolean().optional(), - attendedAt: z.boolean().optional(), - createdAt: z.boolean().optional(), - updatedAt: z.boolean().optional(), - paymentDeadline: z.boolean().optional(), - paymentLink: z.boolean().optional(), - paymentId: z.boolean().optional(), - paymentReservedAt: z.boolean().optional(), - paymentChargeDeadline: z.boolean().optional(), - paymentChargedAt: z.boolean().optional(), - paymentRefundedAt: z.boolean().optional(), - paymentCheckoutUrl: z.boolean().optional(), - attendanceId: z.boolean().optional(), - userId: z.boolean().optional(), - attendancePoolId: z.boolean().optional(), - paymentRefundedById: z.boolean().optional(), - attendance: z.boolean().optional(), - user: z.boolean().optional(), - attendancePool: z.boolean().optional(), - paymentRefundedBy: z.boolean().optional() - }).strict(); - -export const AttendeeFindManySchema: z.ZodType = z.object({ get select(){ return AttendeeFindManySelectSchema__findManyAttendee_schema.optional(); }, get include(){ return AttendeeIncludeObjectSchema.optional(); }, orderBy: z.union([AttendeeOrderByWithRelationInputObjectSchema, AttendeeOrderByWithRelationInputObjectSchema.array()]).optional(), where: AttendeeWhereInputObjectSchema.optional(), cursor: AttendeeWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), distinct: z.union([AttendeeScalarFieldEnumSchema, AttendeeScalarFieldEnumSchema.array()]).optional() }).strict() as unknown as z.ZodType; - -export const AttendeeFindManyZodSchema = z.object({ get select(){ return AttendeeFindManySelectSchema__findManyAttendee_schema.optional(); }, get include(){ return AttendeeIncludeObjectSchema.optional(); }, orderBy: z.union([AttendeeOrderByWithRelationInputObjectSchema, AttendeeOrderByWithRelationInputObjectSchema.array()]).optional(), where: AttendeeWhereInputObjectSchema.optional(), cursor: AttendeeWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), distinct: z.union([AttendeeScalarFieldEnumSchema, AttendeeScalarFieldEnumSchema.array()]).optional() }).strict(); - -// File: countAttendee.schema.ts - -export const AttendeeCountSchema: z.ZodType = z.object({ orderBy: z.union([AttendeeOrderByWithRelationInputObjectSchema, AttendeeOrderByWithRelationInputObjectSchema.array()]).optional(), where: AttendeeWhereInputObjectSchema.optional(), cursor: AttendeeWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), select: z.union([ z.literal(true), AttendeeCountAggregateInputObjectSchema ]).optional() }).strict() as unknown as z.ZodType; - -export const AttendeeCountZodSchema = z.object({ orderBy: z.union([AttendeeOrderByWithRelationInputObjectSchema, AttendeeOrderByWithRelationInputObjectSchema.array()]).optional(), where: AttendeeWhereInputObjectSchema.optional(), cursor: AttendeeWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), select: z.union([ z.literal(true), AttendeeCountAggregateInputObjectSchema ]).optional() }).strict(); - -// File: createOneAttendee.schema.ts - -export const AttendeeCreateOneSchema: z.ZodType = z.object({ get select(){ return AttendeeSelectObjectSchema.optional(); }, get include(){ return AttendeeIncludeObjectSchema.optional(); }, data: z.union([AttendeeCreateInputObjectSchema, AttendeeUncheckedCreateInputObjectSchema]) }).strict() as unknown as z.ZodType; - -export const AttendeeCreateOneZodSchema = z.object({ get select(){ return AttendeeSelectObjectSchema.optional(); }, get include(){ return AttendeeIncludeObjectSchema.optional(); }, data: z.union([AttendeeCreateInputObjectSchema, AttendeeUncheckedCreateInputObjectSchema]) }).strict(); - -// File: createManyAttendee.schema.ts - -export const AttendeeCreateManySchema: z.ZodType = z.object({ data: z.union([ AttendeeCreateManyInputObjectSchema, z.array(AttendeeCreateManyInputObjectSchema) ]), skipDuplicates: z.boolean().optional() }).strict() as unknown as z.ZodType; - -export const AttendeeCreateManyZodSchema = z.object({ data: z.union([ AttendeeCreateManyInputObjectSchema, z.array(AttendeeCreateManyInputObjectSchema) ]), skipDuplicates: z.boolean().optional() }).strict(); - -// File: createManyAndReturnAttendee.schema.ts - -export const AttendeeCreateManyAndReturnSchema: z.ZodType = z.object({ get select(){ return AttendeeSelectObjectSchema.optional(); }, data: z.union([ AttendeeCreateManyInputObjectSchema, z.array(AttendeeCreateManyInputObjectSchema) ]), skipDuplicates: z.boolean().optional() }).strict() as unknown as z.ZodType; - -export const AttendeeCreateManyAndReturnZodSchema = z.object({ get select(){ return AttendeeSelectObjectSchema.optional(); }, data: z.union([ AttendeeCreateManyInputObjectSchema, z.array(AttendeeCreateManyInputObjectSchema) ]), skipDuplicates: z.boolean().optional() }).strict(); - -// File: deleteOneAttendee.schema.ts - -export const AttendeeDeleteOneSchema: z.ZodType = z.object({ get select(){ return AttendeeSelectObjectSchema.optional(); }, get include(){ return AttendeeIncludeObjectSchema.optional(); }, where: AttendeeWhereUniqueInputObjectSchema }).strict() as unknown as z.ZodType; - -export const AttendeeDeleteOneZodSchema = z.object({ get select(){ return AttendeeSelectObjectSchema.optional(); }, get include(){ return AttendeeIncludeObjectSchema.optional(); }, where: AttendeeWhereUniqueInputObjectSchema }).strict(); - -// File: deleteManyAttendee.schema.ts - -export const AttendeeDeleteManySchema: z.ZodType = z.object({ where: AttendeeWhereInputObjectSchema.optional() }).strict() as unknown as z.ZodType; - -export const AttendeeDeleteManyZodSchema = z.object({ where: AttendeeWhereInputObjectSchema.optional() }).strict(); - -// File: updateOneAttendee.schema.ts - -export const AttendeeUpdateOneSchema: z.ZodType = z.object({ get select(){ return AttendeeSelectObjectSchema.optional(); }, get include(){ return AttendeeIncludeObjectSchema.optional(); }, data: z.union([AttendeeUpdateInputObjectSchema, AttendeeUncheckedUpdateInputObjectSchema]), where: AttendeeWhereUniqueInputObjectSchema }).strict() as unknown as z.ZodType; - -export const AttendeeUpdateOneZodSchema = z.object({ get select(){ return AttendeeSelectObjectSchema.optional(); }, get include(){ return AttendeeIncludeObjectSchema.optional(); }, data: z.union([AttendeeUpdateInputObjectSchema, AttendeeUncheckedUpdateInputObjectSchema]), where: AttendeeWhereUniqueInputObjectSchema }).strict(); - -// File: updateManyAttendee.schema.ts - -export const AttendeeUpdateManySchema: z.ZodType = z.object({ data: AttendeeUpdateManyMutationInputObjectSchema, where: AttendeeWhereInputObjectSchema.optional() }).strict() as unknown as z.ZodType; - -export const AttendeeUpdateManyZodSchema = z.object({ data: AttendeeUpdateManyMutationInputObjectSchema, where: AttendeeWhereInputObjectSchema.optional() }).strict(); - -// File: updateManyAndReturnAttendee.schema.ts - -export const AttendeeUpdateManyAndReturnSchema: z.ZodType = z.object({ get select(){ return AttendeeSelectObjectSchema.optional(); }, data: AttendeeUpdateManyMutationInputObjectSchema, where: AttendeeWhereInputObjectSchema.optional() }).strict() as unknown as z.ZodType; - -export const AttendeeUpdateManyAndReturnZodSchema = z.object({ get select(){ return AttendeeSelectObjectSchema.optional(); }, data: AttendeeUpdateManyMutationInputObjectSchema, where: AttendeeWhereInputObjectSchema.optional() }).strict(); - -// File: upsertOneAttendee.schema.ts - -export const AttendeeUpsertOneSchema: z.ZodType = z.object({ get select(){ return AttendeeSelectObjectSchema.optional(); }, get include(){ return AttendeeIncludeObjectSchema.optional(); }, where: AttendeeWhereUniqueInputObjectSchema, create: z.union([ AttendeeCreateInputObjectSchema, AttendeeUncheckedCreateInputObjectSchema ]), update: z.union([ AttendeeUpdateInputObjectSchema, AttendeeUncheckedUpdateInputObjectSchema ]) }).strict() as unknown as z.ZodType; - -export const AttendeeUpsertOneZodSchema = z.object({ get select(){ return AttendeeSelectObjectSchema.optional(); }, get include(){ return AttendeeIncludeObjectSchema.optional(); }, where: AttendeeWhereUniqueInputObjectSchema, create: z.union([ AttendeeCreateInputObjectSchema, AttendeeUncheckedCreateInputObjectSchema ]), update: z.union([ AttendeeUpdateInputObjectSchema, AttendeeUncheckedUpdateInputObjectSchema ]) }).strict(); - -// File: aggregateAttendee.schema.ts - -export const AttendeeAggregateSchema: z.ZodType = z.object({ orderBy: z.union([AttendeeOrderByWithRelationInputObjectSchema, AttendeeOrderByWithRelationInputObjectSchema.array()]).optional(), where: AttendeeWhereInputObjectSchema.optional(), cursor: AttendeeWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), _count: z.union([ z.literal(true), AttendeeCountAggregateInputObjectSchema ]).optional(), _min: AttendeeMinAggregateInputObjectSchema.optional(), _max: AttendeeMaxAggregateInputObjectSchema.optional(), _avg: AttendeeAvgAggregateInputObjectSchema.optional(), _sum: AttendeeSumAggregateInputObjectSchema.optional() }).strict() as unknown as z.ZodType; - -export const AttendeeAggregateZodSchema = z.object({ orderBy: z.union([AttendeeOrderByWithRelationInputObjectSchema, AttendeeOrderByWithRelationInputObjectSchema.array()]).optional(), where: AttendeeWhereInputObjectSchema.optional(), cursor: AttendeeWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), _count: z.union([ z.literal(true), AttendeeCountAggregateInputObjectSchema ]).optional(), _min: AttendeeMinAggregateInputObjectSchema.optional(), _max: AttendeeMaxAggregateInputObjectSchema.optional(), _avg: AttendeeAvgAggregateInputObjectSchema.optional(), _sum: AttendeeSumAggregateInputObjectSchema.optional() }).strict(); - -// File: groupByAttendee.schema.ts - -export const AttendeeGroupBySchema: z.ZodType = z.object({ where: AttendeeWhereInputObjectSchema.optional(), orderBy: z.union([AttendeeOrderByWithAggregationInputObjectSchema, AttendeeOrderByWithAggregationInputObjectSchema.array()]).optional(), having: AttendeeScalarWhereWithAggregatesInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), by: z.array(AttendeeScalarFieldEnumSchema), _count: z.union([ z.literal(true), AttendeeCountAggregateInputObjectSchema ]).optional(), _min: AttendeeMinAggregateInputObjectSchema.optional(), _max: AttendeeMaxAggregateInputObjectSchema.optional(), _avg: AttendeeAvgAggregateInputObjectSchema.optional(), _sum: AttendeeSumAggregateInputObjectSchema.optional() }).strict() as unknown as z.ZodType; - -export const AttendeeGroupByZodSchema = z.object({ where: AttendeeWhereInputObjectSchema.optional(), orderBy: z.union([AttendeeOrderByWithAggregationInputObjectSchema, AttendeeOrderByWithAggregationInputObjectSchema.array()]).optional(), having: AttendeeScalarWhereWithAggregatesInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), by: z.array(AttendeeScalarFieldEnumSchema), _count: z.union([ z.literal(true), AttendeeCountAggregateInputObjectSchema ]).optional(), _min: AttendeeMinAggregateInputObjectSchema.optional(), _max: AttendeeMaxAggregateInputObjectSchema.optional(), _avg: AttendeeAvgAggregateInputObjectSchema.optional(), _sum: AttendeeSumAggregateInputObjectSchema.optional() }).strict(); - -// File: findUniqueEvent.schema.ts - -export const EventFindUniqueSchema: z.ZodType = z.object({ get select(){ return EventSelectObjectSchema.optional(); }, get include(){ return EventIncludeObjectSchema.optional(); }, where: EventWhereUniqueInputObjectSchema }).strict() as unknown as z.ZodType; - -export const EventFindUniqueZodSchema = z.object({ get select(){ return EventSelectObjectSchema.optional(); }, get include(){ return EventIncludeObjectSchema.optional(); }, where: EventWhereUniqueInputObjectSchema }).strict(); - -// File: findUniqueOrThrowEvent.schema.ts - -export const EventFindUniqueOrThrowSchema: z.ZodType = z.object({ get select(){ return EventSelectObjectSchema.optional(); }, get include(){ return EventIncludeObjectSchema.optional(); }, where: EventWhereUniqueInputObjectSchema }).strict() as unknown as z.ZodType; - -export const EventFindUniqueOrThrowZodSchema = z.object({ get select(){ return EventSelectObjectSchema.optional(); }, get include(){ return EventIncludeObjectSchema.optional(); }, where: EventWhereUniqueInputObjectSchema }).strict(); - -// File: findFirstEvent.schema.ts - -// Select schema needs to be in file to prevent circular imports -//------------------------------------------------------ - -export const EventFindFirstSelectSchema__findFirstEvent_schema: z.ZodType = z.object({ - id: z.boolean().optional(), - title: z.boolean().optional(), - start: z.boolean().optional(), - end: z.boolean().optional(), - status: z.boolean().optional(), - description: z.boolean().optional(), - shortDescription: z.boolean().optional(), - imageUrl: z.boolean().optional(), - locationTitle: z.boolean().optional(), - locationAddress: z.boolean().optional(), - locationLink: z.boolean().optional(), - type: z.boolean().optional(), - feedbackForm: z.boolean().optional(), - markForMissedAttendance: z.boolean().optional(), - fadderuke: z.boolean().optional(), - createdAt: z.boolean().optional(), - updatedAt: z.boolean().optional(), - attendanceId: z.boolean().optional(), - parentId: z.boolean().optional(), - contestId: z.boolean().optional(), - attendance: z.boolean().optional(), - parent: z.boolean().optional(), - children: z.boolean().optional(), - contest: z.boolean().optional(), - companies: z.boolean().optional(), - hostingGroups: z.boolean().optional(), - deregisterReasons: z.boolean().optional(), - metadataImportId: z.boolean().optional(), - _count: z.boolean().optional() - }).strict() as unknown as z.ZodType; - -export const EventFindFirstSelectZodSchema__findFirstEvent_schema = z.object({ - id: z.boolean().optional(), - title: z.boolean().optional(), - start: z.boolean().optional(), - end: z.boolean().optional(), - status: z.boolean().optional(), - description: z.boolean().optional(), - shortDescription: z.boolean().optional(), - imageUrl: z.boolean().optional(), - locationTitle: z.boolean().optional(), - locationAddress: z.boolean().optional(), - locationLink: z.boolean().optional(), - type: z.boolean().optional(), - feedbackForm: z.boolean().optional(), - markForMissedAttendance: z.boolean().optional(), - fadderuke: z.boolean().optional(), - createdAt: z.boolean().optional(), - updatedAt: z.boolean().optional(), - attendanceId: z.boolean().optional(), - parentId: z.boolean().optional(), - contestId: z.boolean().optional(), - attendance: z.boolean().optional(), - parent: z.boolean().optional(), - children: z.boolean().optional(), - contest: z.boolean().optional(), - companies: z.boolean().optional(), - hostingGroups: z.boolean().optional(), - deregisterReasons: z.boolean().optional(), - metadataImportId: z.boolean().optional(), - _count: z.boolean().optional() - }).strict(); - -export const EventFindFirstSchema: z.ZodType = z.object({ get select(){ return EventFindFirstSelectSchema__findFirstEvent_schema.optional(); }, get include(){ return EventIncludeObjectSchema.optional(); }, orderBy: z.union([EventOrderByWithRelationInputObjectSchema, EventOrderByWithRelationInputObjectSchema.array()]).optional(), where: EventWhereInputObjectSchema.optional(), cursor: EventWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), distinct: z.union([EventScalarFieldEnumSchema, EventScalarFieldEnumSchema.array()]).optional() }).strict() as unknown as z.ZodType; - -export const EventFindFirstZodSchema = z.object({ get select(){ return EventFindFirstSelectSchema__findFirstEvent_schema.optional(); }, get include(){ return EventIncludeObjectSchema.optional(); }, orderBy: z.union([EventOrderByWithRelationInputObjectSchema, EventOrderByWithRelationInputObjectSchema.array()]).optional(), where: EventWhereInputObjectSchema.optional(), cursor: EventWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), distinct: z.union([EventScalarFieldEnumSchema, EventScalarFieldEnumSchema.array()]).optional() }).strict(); - -// File: findFirstOrThrowEvent.schema.ts - -// Select schema needs to be in file to prevent circular imports -//------------------------------------------------------ - -export const EventFindFirstOrThrowSelectSchema__findFirstOrThrowEvent_schema: z.ZodType = z.object({ - id: z.boolean().optional(), - title: z.boolean().optional(), - start: z.boolean().optional(), - end: z.boolean().optional(), - status: z.boolean().optional(), - description: z.boolean().optional(), - shortDescription: z.boolean().optional(), - imageUrl: z.boolean().optional(), - locationTitle: z.boolean().optional(), - locationAddress: z.boolean().optional(), - locationLink: z.boolean().optional(), - type: z.boolean().optional(), - feedbackForm: z.boolean().optional(), - markForMissedAttendance: z.boolean().optional(), - fadderuke: z.boolean().optional(), - createdAt: z.boolean().optional(), - updatedAt: z.boolean().optional(), - attendanceId: z.boolean().optional(), - parentId: z.boolean().optional(), - contestId: z.boolean().optional(), - attendance: z.boolean().optional(), - parent: z.boolean().optional(), - children: z.boolean().optional(), - contest: z.boolean().optional(), - companies: z.boolean().optional(), - hostingGroups: z.boolean().optional(), - deregisterReasons: z.boolean().optional(), - metadataImportId: z.boolean().optional(), - _count: z.boolean().optional() - }).strict() as unknown as z.ZodType; - -export const EventFindFirstOrThrowSelectZodSchema__findFirstOrThrowEvent_schema = z.object({ - id: z.boolean().optional(), - title: z.boolean().optional(), - start: z.boolean().optional(), - end: z.boolean().optional(), - status: z.boolean().optional(), - description: z.boolean().optional(), - shortDescription: z.boolean().optional(), - imageUrl: z.boolean().optional(), - locationTitle: z.boolean().optional(), - locationAddress: z.boolean().optional(), - locationLink: z.boolean().optional(), - type: z.boolean().optional(), - feedbackForm: z.boolean().optional(), - markForMissedAttendance: z.boolean().optional(), - fadderuke: z.boolean().optional(), - createdAt: z.boolean().optional(), - updatedAt: z.boolean().optional(), - attendanceId: z.boolean().optional(), - parentId: z.boolean().optional(), - contestId: z.boolean().optional(), - attendance: z.boolean().optional(), - parent: z.boolean().optional(), - children: z.boolean().optional(), - contest: z.boolean().optional(), - companies: z.boolean().optional(), - hostingGroups: z.boolean().optional(), - deregisterReasons: z.boolean().optional(), - metadataImportId: z.boolean().optional(), - _count: z.boolean().optional() - }).strict(); - -export const EventFindFirstOrThrowSchema: z.ZodType = z.object({ get select(){ return EventFindFirstOrThrowSelectSchema__findFirstOrThrowEvent_schema.optional(); }, get include(){ return EventIncludeObjectSchema.optional(); }, orderBy: z.union([EventOrderByWithRelationInputObjectSchema, EventOrderByWithRelationInputObjectSchema.array()]).optional(), where: EventWhereInputObjectSchema.optional(), cursor: EventWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), distinct: z.union([EventScalarFieldEnumSchema, EventScalarFieldEnumSchema.array()]).optional() }).strict() as unknown as z.ZodType; - -export const EventFindFirstOrThrowZodSchema = z.object({ get select(){ return EventFindFirstOrThrowSelectSchema__findFirstOrThrowEvent_schema.optional(); }, get include(){ return EventIncludeObjectSchema.optional(); }, orderBy: z.union([EventOrderByWithRelationInputObjectSchema, EventOrderByWithRelationInputObjectSchema.array()]).optional(), where: EventWhereInputObjectSchema.optional(), cursor: EventWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), distinct: z.union([EventScalarFieldEnumSchema, EventScalarFieldEnumSchema.array()]).optional() }).strict(); - -// File: findManyEvent.schema.ts - -// Select schema needs to be in file to prevent circular imports -//------------------------------------------------------ - -export const EventFindManySelectSchema__findManyEvent_schema: z.ZodType = z.object({ - id: z.boolean().optional(), - title: z.boolean().optional(), - start: z.boolean().optional(), - end: z.boolean().optional(), - status: z.boolean().optional(), - description: z.boolean().optional(), - shortDescription: z.boolean().optional(), - imageUrl: z.boolean().optional(), - locationTitle: z.boolean().optional(), - locationAddress: z.boolean().optional(), - locationLink: z.boolean().optional(), - type: z.boolean().optional(), - feedbackForm: z.boolean().optional(), - markForMissedAttendance: z.boolean().optional(), - fadderuke: z.boolean().optional(), - createdAt: z.boolean().optional(), - updatedAt: z.boolean().optional(), - attendanceId: z.boolean().optional(), - parentId: z.boolean().optional(), - contestId: z.boolean().optional(), - attendance: z.boolean().optional(), - parent: z.boolean().optional(), - children: z.boolean().optional(), - contest: z.boolean().optional(), - companies: z.boolean().optional(), - hostingGroups: z.boolean().optional(), - deregisterReasons: z.boolean().optional(), - metadataImportId: z.boolean().optional(), - _count: z.boolean().optional() - }).strict() as unknown as z.ZodType; - -export const EventFindManySelectZodSchema__findManyEvent_schema = z.object({ - id: z.boolean().optional(), - title: z.boolean().optional(), - start: z.boolean().optional(), - end: z.boolean().optional(), - status: z.boolean().optional(), - description: z.boolean().optional(), - shortDescription: z.boolean().optional(), - imageUrl: z.boolean().optional(), - locationTitle: z.boolean().optional(), - locationAddress: z.boolean().optional(), - locationLink: z.boolean().optional(), - type: z.boolean().optional(), - feedbackForm: z.boolean().optional(), - markForMissedAttendance: z.boolean().optional(), - fadderuke: z.boolean().optional(), - createdAt: z.boolean().optional(), - updatedAt: z.boolean().optional(), - attendanceId: z.boolean().optional(), - parentId: z.boolean().optional(), - contestId: z.boolean().optional(), - attendance: z.boolean().optional(), - parent: z.boolean().optional(), - children: z.boolean().optional(), - contest: z.boolean().optional(), - companies: z.boolean().optional(), - hostingGroups: z.boolean().optional(), - deregisterReasons: z.boolean().optional(), - metadataImportId: z.boolean().optional(), - _count: z.boolean().optional() - }).strict(); - -export const EventFindManySchema: z.ZodType = z.object({ get select(){ return EventFindManySelectSchema__findManyEvent_schema.optional(); }, get include(){ return EventIncludeObjectSchema.optional(); }, orderBy: z.union([EventOrderByWithRelationInputObjectSchema, EventOrderByWithRelationInputObjectSchema.array()]).optional(), where: EventWhereInputObjectSchema.optional(), cursor: EventWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), distinct: z.union([EventScalarFieldEnumSchema, EventScalarFieldEnumSchema.array()]).optional() }).strict() as unknown as z.ZodType; - -export const EventFindManyZodSchema = z.object({ get select(){ return EventFindManySelectSchema__findManyEvent_schema.optional(); }, get include(){ return EventIncludeObjectSchema.optional(); }, orderBy: z.union([EventOrderByWithRelationInputObjectSchema, EventOrderByWithRelationInputObjectSchema.array()]).optional(), where: EventWhereInputObjectSchema.optional(), cursor: EventWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), distinct: z.union([EventScalarFieldEnumSchema, EventScalarFieldEnumSchema.array()]).optional() }).strict(); - -// File: countEvent.schema.ts - -export const EventCountSchema: z.ZodType = z.object({ orderBy: z.union([EventOrderByWithRelationInputObjectSchema, EventOrderByWithRelationInputObjectSchema.array()]).optional(), where: EventWhereInputObjectSchema.optional(), cursor: EventWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), select: z.union([ z.literal(true), EventCountAggregateInputObjectSchema ]).optional() }).strict() as unknown as z.ZodType; - -export const EventCountZodSchema = z.object({ orderBy: z.union([EventOrderByWithRelationInputObjectSchema, EventOrderByWithRelationInputObjectSchema.array()]).optional(), where: EventWhereInputObjectSchema.optional(), cursor: EventWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), select: z.union([ z.literal(true), EventCountAggregateInputObjectSchema ]).optional() }).strict(); - -// File: createOneEvent.schema.ts - -export const EventCreateOneSchema: z.ZodType = z.object({ get select(){ return EventSelectObjectSchema.optional(); }, get include(){ return EventIncludeObjectSchema.optional(); }, data: z.union([EventCreateInputObjectSchema, EventUncheckedCreateInputObjectSchema]) }).strict() as unknown as z.ZodType; - -export const EventCreateOneZodSchema = z.object({ get select(){ return EventSelectObjectSchema.optional(); }, get include(){ return EventIncludeObjectSchema.optional(); }, data: z.union([EventCreateInputObjectSchema, EventUncheckedCreateInputObjectSchema]) }).strict(); - -// File: createManyEvent.schema.ts - -export const EventCreateManySchema: z.ZodType = z.object({ data: z.union([ EventCreateManyInputObjectSchema, z.array(EventCreateManyInputObjectSchema) ]), skipDuplicates: z.boolean().optional() }).strict() as unknown as z.ZodType; - -export const EventCreateManyZodSchema = z.object({ data: z.union([ EventCreateManyInputObjectSchema, z.array(EventCreateManyInputObjectSchema) ]), skipDuplicates: z.boolean().optional() }).strict(); - -// File: createManyAndReturnEvent.schema.ts - -export const EventCreateManyAndReturnSchema: z.ZodType = z.object({ get select(){ return EventSelectObjectSchema.optional(); }, data: z.union([ EventCreateManyInputObjectSchema, z.array(EventCreateManyInputObjectSchema) ]), skipDuplicates: z.boolean().optional() }).strict() as unknown as z.ZodType; - -export const EventCreateManyAndReturnZodSchema = z.object({ get select(){ return EventSelectObjectSchema.optional(); }, data: z.union([ EventCreateManyInputObjectSchema, z.array(EventCreateManyInputObjectSchema) ]), skipDuplicates: z.boolean().optional() }).strict(); - -// File: deleteOneEvent.schema.ts - -export const EventDeleteOneSchema: z.ZodType = z.object({ get select(){ return EventSelectObjectSchema.optional(); }, get include(){ return EventIncludeObjectSchema.optional(); }, where: EventWhereUniqueInputObjectSchema }).strict() as unknown as z.ZodType; - -export const EventDeleteOneZodSchema = z.object({ get select(){ return EventSelectObjectSchema.optional(); }, get include(){ return EventIncludeObjectSchema.optional(); }, where: EventWhereUniqueInputObjectSchema }).strict(); - -// File: deleteManyEvent.schema.ts - -export const EventDeleteManySchema: z.ZodType = z.object({ where: EventWhereInputObjectSchema.optional() }).strict() as unknown as z.ZodType; - -export const EventDeleteManyZodSchema = z.object({ where: EventWhereInputObjectSchema.optional() }).strict(); - -// File: updateOneEvent.schema.ts - -export const EventUpdateOneSchema: z.ZodType = z.object({ get select(){ return EventSelectObjectSchema.optional(); }, get include(){ return EventIncludeObjectSchema.optional(); }, data: z.union([EventUpdateInputObjectSchema, EventUncheckedUpdateInputObjectSchema]), where: EventWhereUniqueInputObjectSchema }).strict() as unknown as z.ZodType; - -export const EventUpdateOneZodSchema = z.object({ get select(){ return EventSelectObjectSchema.optional(); }, get include(){ return EventIncludeObjectSchema.optional(); }, data: z.union([EventUpdateInputObjectSchema, EventUncheckedUpdateInputObjectSchema]), where: EventWhereUniqueInputObjectSchema }).strict(); - -// File: updateManyEvent.schema.ts - -export const EventUpdateManySchema: z.ZodType = z.object({ data: EventUpdateManyMutationInputObjectSchema, where: EventWhereInputObjectSchema.optional() }).strict() as unknown as z.ZodType; - -export const EventUpdateManyZodSchema = z.object({ data: EventUpdateManyMutationInputObjectSchema, where: EventWhereInputObjectSchema.optional() }).strict(); - -// File: updateManyAndReturnEvent.schema.ts - -export const EventUpdateManyAndReturnSchema: z.ZodType = z.object({ get select(){ return EventSelectObjectSchema.optional(); }, data: EventUpdateManyMutationInputObjectSchema, where: EventWhereInputObjectSchema.optional() }).strict() as unknown as z.ZodType; - -export const EventUpdateManyAndReturnZodSchema = z.object({ get select(){ return EventSelectObjectSchema.optional(); }, data: EventUpdateManyMutationInputObjectSchema, where: EventWhereInputObjectSchema.optional() }).strict(); - -// File: upsertOneEvent.schema.ts - -export const EventUpsertOneSchema: z.ZodType = z.object({ get select(){ return EventSelectObjectSchema.optional(); }, get include(){ return EventIncludeObjectSchema.optional(); }, where: EventWhereUniqueInputObjectSchema, create: z.union([ EventCreateInputObjectSchema, EventUncheckedCreateInputObjectSchema ]), update: z.union([ EventUpdateInputObjectSchema, EventUncheckedUpdateInputObjectSchema ]) }).strict() as unknown as z.ZodType; - -export const EventUpsertOneZodSchema = z.object({ get select(){ return EventSelectObjectSchema.optional(); }, get include(){ return EventIncludeObjectSchema.optional(); }, where: EventWhereUniqueInputObjectSchema, create: z.union([ EventCreateInputObjectSchema, EventUncheckedCreateInputObjectSchema ]), update: z.union([ EventUpdateInputObjectSchema, EventUncheckedUpdateInputObjectSchema ]) }).strict(); - -// File: aggregateEvent.schema.ts - -export const EventAggregateSchema: z.ZodType = z.object({ orderBy: z.union([EventOrderByWithRelationInputObjectSchema, EventOrderByWithRelationInputObjectSchema.array()]).optional(), where: EventWhereInputObjectSchema.optional(), cursor: EventWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), _count: z.union([ z.literal(true), EventCountAggregateInputObjectSchema ]).optional(), _min: EventMinAggregateInputObjectSchema.optional(), _max: EventMaxAggregateInputObjectSchema.optional(), _avg: EventAvgAggregateInputObjectSchema.optional(), _sum: EventSumAggregateInputObjectSchema.optional() }).strict() as unknown as z.ZodType; - -export const EventAggregateZodSchema = z.object({ orderBy: z.union([EventOrderByWithRelationInputObjectSchema, EventOrderByWithRelationInputObjectSchema.array()]).optional(), where: EventWhereInputObjectSchema.optional(), cursor: EventWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), _count: z.union([ z.literal(true), EventCountAggregateInputObjectSchema ]).optional(), _min: EventMinAggregateInputObjectSchema.optional(), _max: EventMaxAggregateInputObjectSchema.optional(), _avg: EventAvgAggregateInputObjectSchema.optional(), _sum: EventSumAggregateInputObjectSchema.optional() }).strict(); - -// File: groupByEvent.schema.ts - -export const EventGroupBySchema: z.ZodType = z.object({ where: EventWhereInputObjectSchema.optional(), orderBy: z.union([EventOrderByWithAggregationInputObjectSchema, EventOrderByWithAggregationInputObjectSchema.array()]).optional(), having: EventScalarWhereWithAggregatesInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), by: z.array(EventScalarFieldEnumSchema), _count: z.union([ z.literal(true), EventCountAggregateInputObjectSchema ]).optional(), _min: EventMinAggregateInputObjectSchema.optional(), _max: EventMaxAggregateInputObjectSchema.optional(), _avg: EventAvgAggregateInputObjectSchema.optional(), _sum: EventSumAggregateInputObjectSchema.optional() }).strict() as unknown as z.ZodType; - -export const EventGroupByZodSchema = z.object({ where: EventWhereInputObjectSchema.optional(), orderBy: z.union([EventOrderByWithAggregationInputObjectSchema, EventOrderByWithAggregationInputObjectSchema.array()]).optional(), having: EventScalarWhereWithAggregatesInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), by: z.array(EventScalarFieldEnumSchema), _count: z.union([ z.literal(true), EventCountAggregateInputObjectSchema ]).optional(), _min: EventMinAggregateInputObjectSchema.optional(), _max: EventMaxAggregateInputObjectSchema.optional(), _avg: EventAvgAggregateInputObjectSchema.optional(), _sum: EventSumAggregateInputObjectSchema.optional() }).strict(); - -// File: findUniqueEventCompany.schema.ts - -export const EventCompanyFindUniqueSchema: z.ZodType = z.object({ get select(){ return EventCompanySelectObjectSchema.optional(); }, get include(){ return EventCompanyIncludeObjectSchema.optional(); }, where: EventCompanyWhereUniqueInputObjectSchema }).strict() as unknown as z.ZodType; - -export const EventCompanyFindUniqueZodSchema = z.object({ get select(){ return EventCompanySelectObjectSchema.optional(); }, get include(){ return EventCompanyIncludeObjectSchema.optional(); }, where: EventCompanyWhereUniqueInputObjectSchema }).strict(); - -// File: findUniqueOrThrowEventCompany.schema.ts - -export const EventCompanyFindUniqueOrThrowSchema: z.ZodType = z.object({ get select(){ return EventCompanySelectObjectSchema.optional(); }, get include(){ return EventCompanyIncludeObjectSchema.optional(); }, where: EventCompanyWhereUniqueInputObjectSchema }).strict() as unknown as z.ZodType; - -export const EventCompanyFindUniqueOrThrowZodSchema = z.object({ get select(){ return EventCompanySelectObjectSchema.optional(); }, get include(){ return EventCompanyIncludeObjectSchema.optional(); }, where: EventCompanyWhereUniqueInputObjectSchema }).strict(); - -// File: findFirstEventCompany.schema.ts - -// Select schema needs to be in file to prevent circular imports -//------------------------------------------------------ - -export const EventCompanyFindFirstSelectSchema__findFirstEventCompany_schema: z.ZodType = z.object({ - eventId: z.boolean().optional(), - companyId: z.boolean().optional(), - event: z.boolean().optional(), - company: z.boolean().optional() - }).strict() as unknown as z.ZodType; - -export const EventCompanyFindFirstSelectZodSchema__findFirstEventCompany_schema = z.object({ - eventId: z.boolean().optional(), - companyId: z.boolean().optional(), - event: z.boolean().optional(), - company: z.boolean().optional() - }).strict(); - -export const EventCompanyFindFirstSchema: z.ZodType = z.object({ get select(){ return EventCompanyFindFirstSelectSchema__findFirstEventCompany_schema.optional(); }, get include(){ return EventCompanyIncludeObjectSchema.optional(); }, orderBy: z.union([EventCompanyOrderByWithRelationInputObjectSchema, EventCompanyOrderByWithRelationInputObjectSchema.array()]).optional(), where: EventCompanyWhereInputObjectSchema.optional(), cursor: EventCompanyWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), distinct: z.union([EventCompanyScalarFieldEnumSchema, EventCompanyScalarFieldEnumSchema.array()]).optional() }).strict() as unknown as z.ZodType; - -export const EventCompanyFindFirstZodSchema = z.object({ get select(){ return EventCompanyFindFirstSelectSchema__findFirstEventCompany_schema.optional(); }, get include(){ return EventCompanyIncludeObjectSchema.optional(); }, orderBy: z.union([EventCompanyOrderByWithRelationInputObjectSchema, EventCompanyOrderByWithRelationInputObjectSchema.array()]).optional(), where: EventCompanyWhereInputObjectSchema.optional(), cursor: EventCompanyWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), distinct: z.union([EventCompanyScalarFieldEnumSchema, EventCompanyScalarFieldEnumSchema.array()]).optional() }).strict(); - -// File: findFirstOrThrowEventCompany.schema.ts - -// Select schema needs to be in file to prevent circular imports -//------------------------------------------------------ - -export const EventCompanyFindFirstOrThrowSelectSchema__findFirstOrThrowEventCompany_schema: z.ZodType = z.object({ - eventId: z.boolean().optional(), - companyId: z.boolean().optional(), - event: z.boolean().optional(), - company: z.boolean().optional() - }).strict() as unknown as z.ZodType; - -export const EventCompanyFindFirstOrThrowSelectZodSchema__findFirstOrThrowEventCompany_schema = z.object({ - eventId: z.boolean().optional(), - companyId: z.boolean().optional(), - event: z.boolean().optional(), - company: z.boolean().optional() - }).strict(); - -export const EventCompanyFindFirstOrThrowSchema: z.ZodType = z.object({ get select(){ return EventCompanyFindFirstOrThrowSelectSchema__findFirstOrThrowEventCompany_schema.optional(); }, get include(){ return EventCompanyIncludeObjectSchema.optional(); }, orderBy: z.union([EventCompanyOrderByWithRelationInputObjectSchema, EventCompanyOrderByWithRelationInputObjectSchema.array()]).optional(), where: EventCompanyWhereInputObjectSchema.optional(), cursor: EventCompanyWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), distinct: z.union([EventCompanyScalarFieldEnumSchema, EventCompanyScalarFieldEnumSchema.array()]).optional() }).strict() as unknown as z.ZodType; - -export const EventCompanyFindFirstOrThrowZodSchema = z.object({ get select(){ return EventCompanyFindFirstOrThrowSelectSchema__findFirstOrThrowEventCompany_schema.optional(); }, get include(){ return EventCompanyIncludeObjectSchema.optional(); }, orderBy: z.union([EventCompanyOrderByWithRelationInputObjectSchema, EventCompanyOrderByWithRelationInputObjectSchema.array()]).optional(), where: EventCompanyWhereInputObjectSchema.optional(), cursor: EventCompanyWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), distinct: z.union([EventCompanyScalarFieldEnumSchema, EventCompanyScalarFieldEnumSchema.array()]).optional() }).strict(); - -// File: findManyEventCompany.schema.ts - -// Select schema needs to be in file to prevent circular imports -//------------------------------------------------------ - -export const EventCompanyFindManySelectSchema__findManyEventCompany_schema: z.ZodType = z.object({ - eventId: z.boolean().optional(), - companyId: z.boolean().optional(), - event: z.boolean().optional(), - company: z.boolean().optional() - }).strict() as unknown as z.ZodType; - -export const EventCompanyFindManySelectZodSchema__findManyEventCompany_schema = z.object({ - eventId: z.boolean().optional(), - companyId: z.boolean().optional(), - event: z.boolean().optional(), - company: z.boolean().optional() - }).strict(); - -export const EventCompanyFindManySchema: z.ZodType = z.object({ get select(){ return EventCompanyFindManySelectSchema__findManyEventCompany_schema.optional(); }, get include(){ return EventCompanyIncludeObjectSchema.optional(); }, orderBy: z.union([EventCompanyOrderByWithRelationInputObjectSchema, EventCompanyOrderByWithRelationInputObjectSchema.array()]).optional(), where: EventCompanyWhereInputObjectSchema.optional(), cursor: EventCompanyWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), distinct: z.union([EventCompanyScalarFieldEnumSchema, EventCompanyScalarFieldEnumSchema.array()]).optional() }).strict() as unknown as z.ZodType; - -export const EventCompanyFindManyZodSchema = z.object({ get select(){ return EventCompanyFindManySelectSchema__findManyEventCompany_schema.optional(); }, get include(){ return EventCompanyIncludeObjectSchema.optional(); }, orderBy: z.union([EventCompanyOrderByWithRelationInputObjectSchema, EventCompanyOrderByWithRelationInputObjectSchema.array()]).optional(), where: EventCompanyWhereInputObjectSchema.optional(), cursor: EventCompanyWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), distinct: z.union([EventCompanyScalarFieldEnumSchema, EventCompanyScalarFieldEnumSchema.array()]).optional() }).strict(); - -// File: countEventCompany.schema.ts - -export const EventCompanyCountSchema: z.ZodType = z.object({ orderBy: z.union([EventCompanyOrderByWithRelationInputObjectSchema, EventCompanyOrderByWithRelationInputObjectSchema.array()]).optional(), where: EventCompanyWhereInputObjectSchema.optional(), cursor: EventCompanyWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), select: z.union([ z.literal(true), EventCompanyCountAggregateInputObjectSchema ]).optional() }).strict() as unknown as z.ZodType; - -export const EventCompanyCountZodSchema = z.object({ orderBy: z.union([EventCompanyOrderByWithRelationInputObjectSchema, EventCompanyOrderByWithRelationInputObjectSchema.array()]).optional(), where: EventCompanyWhereInputObjectSchema.optional(), cursor: EventCompanyWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), select: z.union([ z.literal(true), EventCompanyCountAggregateInputObjectSchema ]).optional() }).strict(); - -// File: createOneEventCompany.schema.ts - -export const EventCompanyCreateOneSchema: z.ZodType = z.object({ get select(){ return EventCompanySelectObjectSchema.optional(); }, get include(){ return EventCompanyIncludeObjectSchema.optional(); }, data: z.union([EventCompanyCreateInputObjectSchema, EventCompanyUncheckedCreateInputObjectSchema]) }).strict() as unknown as z.ZodType; - -export const EventCompanyCreateOneZodSchema = z.object({ get select(){ return EventCompanySelectObjectSchema.optional(); }, get include(){ return EventCompanyIncludeObjectSchema.optional(); }, data: z.union([EventCompanyCreateInputObjectSchema, EventCompanyUncheckedCreateInputObjectSchema]) }).strict(); - -// File: createManyEventCompany.schema.ts - -export const EventCompanyCreateManySchema: z.ZodType = z.object({ data: z.union([ EventCompanyCreateManyInputObjectSchema, z.array(EventCompanyCreateManyInputObjectSchema) ]), skipDuplicates: z.boolean().optional() }).strict() as unknown as z.ZodType; - -export const EventCompanyCreateManyZodSchema = z.object({ data: z.union([ EventCompanyCreateManyInputObjectSchema, z.array(EventCompanyCreateManyInputObjectSchema) ]), skipDuplicates: z.boolean().optional() }).strict(); - -// File: createManyAndReturnEventCompany.schema.ts - -export const EventCompanyCreateManyAndReturnSchema: z.ZodType = z.object({ get select(){ return EventCompanySelectObjectSchema.optional(); }, data: z.union([ EventCompanyCreateManyInputObjectSchema, z.array(EventCompanyCreateManyInputObjectSchema) ]), skipDuplicates: z.boolean().optional() }).strict() as unknown as z.ZodType; - -export const EventCompanyCreateManyAndReturnZodSchema = z.object({ get select(){ return EventCompanySelectObjectSchema.optional(); }, data: z.union([ EventCompanyCreateManyInputObjectSchema, z.array(EventCompanyCreateManyInputObjectSchema) ]), skipDuplicates: z.boolean().optional() }).strict(); - -// File: deleteOneEventCompany.schema.ts - -export const EventCompanyDeleteOneSchema: z.ZodType = z.object({ get select(){ return EventCompanySelectObjectSchema.optional(); }, get include(){ return EventCompanyIncludeObjectSchema.optional(); }, where: EventCompanyWhereUniqueInputObjectSchema }).strict() as unknown as z.ZodType; - -export const EventCompanyDeleteOneZodSchema = z.object({ get select(){ return EventCompanySelectObjectSchema.optional(); }, get include(){ return EventCompanyIncludeObjectSchema.optional(); }, where: EventCompanyWhereUniqueInputObjectSchema }).strict(); - -// File: deleteManyEventCompany.schema.ts - -export const EventCompanyDeleteManySchema: z.ZodType = z.object({ where: EventCompanyWhereInputObjectSchema.optional() }).strict() as unknown as z.ZodType; - -export const EventCompanyDeleteManyZodSchema = z.object({ where: EventCompanyWhereInputObjectSchema.optional() }).strict(); - -// File: updateOneEventCompany.schema.ts - -export const EventCompanyUpdateOneSchema: z.ZodType = z.object({ get select(){ return EventCompanySelectObjectSchema.optional(); }, get include(){ return EventCompanyIncludeObjectSchema.optional(); }, data: z.union([EventCompanyUpdateInputObjectSchema, EventCompanyUncheckedUpdateInputObjectSchema]), where: EventCompanyWhereUniqueInputObjectSchema }).strict() as unknown as z.ZodType; - -export const EventCompanyUpdateOneZodSchema = z.object({ get select(){ return EventCompanySelectObjectSchema.optional(); }, get include(){ return EventCompanyIncludeObjectSchema.optional(); }, data: z.union([EventCompanyUpdateInputObjectSchema, EventCompanyUncheckedUpdateInputObjectSchema]), where: EventCompanyWhereUniqueInputObjectSchema }).strict(); - -// File: updateManyEventCompany.schema.ts - -export const EventCompanyUpdateManySchema: z.ZodType = z.object({ data: EventCompanyUpdateManyMutationInputObjectSchema, where: EventCompanyWhereInputObjectSchema.optional() }).strict() as unknown as z.ZodType; - -export const EventCompanyUpdateManyZodSchema = z.object({ data: EventCompanyUpdateManyMutationInputObjectSchema, where: EventCompanyWhereInputObjectSchema.optional() }).strict(); - -// File: updateManyAndReturnEventCompany.schema.ts - -export const EventCompanyUpdateManyAndReturnSchema: z.ZodType = z.object({ get select(){ return EventCompanySelectObjectSchema.optional(); }, data: EventCompanyUpdateManyMutationInputObjectSchema, where: EventCompanyWhereInputObjectSchema.optional() }).strict() as unknown as z.ZodType; - -export const EventCompanyUpdateManyAndReturnZodSchema = z.object({ get select(){ return EventCompanySelectObjectSchema.optional(); }, data: EventCompanyUpdateManyMutationInputObjectSchema, where: EventCompanyWhereInputObjectSchema.optional() }).strict(); - -// File: upsertOneEventCompany.schema.ts - -export const EventCompanyUpsertOneSchema: z.ZodType = z.object({ get select(){ return EventCompanySelectObjectSchema.optional(); }, get include(){ return EventCompanyIncludeObjectSchema.optional(); }, where: EventCompanyWhereUniqueInputObjectSchema, create: z.union([ EventCompanyCreateInputObjectSchema, EventCompanyUncheckedCreateInputObjectSchema ]), update: z.union([ EventCompanyUpdateInputObjectSchema, EventCompanyUncheckedUpdateInputObjectSchema ]) }).strict() as unknown as z.ZodType; - -export const EventCompanyUpsertOneZodSchema = z.object({ get select(){ return EventCompanySelectObjectSchema.optional(); }, get include(){ return EventCompanyIncludeObjectSchema.optional(); }, where: EventCompanyWhereUniqueInputObjectSchema, create: z.union([ EventCompanyCreateInputObjectSchema, EventCompanyUncheckedCreateInputObjectSchema ]), update: z.union([ EventCompanyUpdateInputObjectSchema, EventCompanyUncheckedUpdateInputObjectSchema ]) }).strict(); - -// File: aggregateEventCompany.schema.ts - -export const EventCompanyAggregateSchema: z.ZodType = z.object({ orderBy: z.union([EventCompanyOrderByWithRelationInputObjectSchema, EventCompanyOrderByWithRelationInputObjectSchema.array()]).optional(), where: EventCompanyWhereInputObjectSchema.optional(), cursor: EventCompanyWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), _count: z.union([ z.literal(true), EventCompanyCountAggregateInputObjectSchema ]).optional(), _min: EventCompanyMinAggregateInputObjectSchema.optional(), _max: EventCompanyMaxAggregateInputObjectSchema.optional() }).strict() as unknown as z.ZodType; - -export const EventCompanyAggregateZodSchema = z.object({ orderBy: z.union([EventCompanyOrderByWithRelationInputObjectSchema, EventCompanyOrderByWithRelationInputObjectSchema.array()]).optional(), where: EventCompanyWhereInputObjectSchema.optional(), cursor: EventCompanyWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), _count: z.union([ z.literal(true), EventCompanyCountAggregateInputObjectSchema ]).optional(), _min: EventCompanyMinAggregateInputObjectSchema.optional(), _max: EventCompanyMaxAggregateInputObjectSchema.optional() }).strict(); - -// File: groupByEventCompany.schema.ts - -export const EventCompanyGroupBySchema: z.ZodType = z.object({ where: EventCompanyWhereInputObjectSchema.optional(), orderBy: z.union([EventCompanyOrderByWithAggregationInputObjectSchema, EventCompanyOrderByWithAggregationInputObjectSchema.array()]).optional(), having: EventCompanyScalarWhereWithAggregatesInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), by: z.array(EventCompanyScalarFieldEnumSchema), _count: z.union([ z.literal(true), EventCompanyCountAggregateInputObjectSchema ]).optional(), _min: EventCompanyMinAggregateInputObjectSchema.optional(), _max: EventCompanyMaxAggregateInputObjectSchema.optional() }).strict() as unknown as z.ZodType; - -export const EventCompanyGroupByZodSchema = z.object({ where: EventCompanyWhereInputObjectSchema.optional(), orderBy: z.union([EventCompanyOrderByWithAggregationInputObjectSchema, EventCompanyOrderByWithAggregationInputObjectSchema.array()]).optional(), having: EventCompanyScalarWhereWithAggregatesInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), by: z.array(EventCompanyScalarFieldEnumSchema), _count: z.union([ z.literal(true), EventCompanyCountAggregateInputObjectSchema ]).optional(), _min: EventCompanyMinAggregateInputObjectSchema.optional(), _max: EventCompanyMaxAggregateInputObjectSchema.optional() }).strict(); - -// File: findUniqueMark.schema.ts - -export const MarkFindUniqueSchema: z.ZodType = z.object({ get select(){ return MarkSelectObjectSchema.optional(); }, get include(){ return MarkIncludeObjectSchema.optional(); }, where: MarkWhereUniqueInputObjectSchema }).strict() as unknown as z.ZodType; - -export const MarkFindUniqueZodSchema = z.object({ get select(){ return MarkSelectObjectSchema.optional(); }, get include(){ return MarkIncludeObjectSchema.optional(); }, where: MarkWhereUniqueInputObjectSchema }).strict(); - -// File: findUniqueOrThrowMark.schema.ts - -export const MarkFindUniqueOrThrowSchema: z.ZodType = z.object({ get select(){ return MarkSelectObjectSchema.optional(); }, get include(){ return MarkIncludeObjectSchema.optional(); }, where: MarkWhereUniqueInputObjectSchema }).strict() as unknown as z.ZodType; - -export const MarkFindUniqueOrThrowZodSchema = z.object({ get select(){ return MarkSelectObjectSchema.optional(); }, get include(){ return MarkIncludeObjectSchema.optional(); }, where: MarkWhereUniqueInputObjectSchema }).strict(); - -// File: findFirstMark.schema.ts - -// Select schema needs to be in file to prevent circular imports -//------------------------------------------------------ - -export const MarkFindFirstSelectSchema__findFirstMark_schema: z.ZodType = z.object({ - id: z.boolean().optional(), - title: z.boolean().optional(), - details: z.boolean().optional(), - duration: z.boolean().optional(), - weight: z.boolean().optional(), - type: z.boolean().optional(), - createdAt: z.boolean().optional(), - updatedAt: z.boolean().optional(), - users: z.boolean().optional(), - groups: z.boolean().optional(), - _count: z.boolean().optional() - }).strict() as unknown as z.ZodType; - -export const MarkFindFirstSelectZodSchema__findFirstMark_schema = z.object({ - id: z.boolean().optional(), - title: z.boolean().optional(), - details: z.boolean().optional(), - duration: z.boolean().optional(), - weight: z.boolean().optional(), - type: z.boolean().optional(), - createdAt: z.boolean().optional(), - updatedAt: z.boolean().optional(), - users: z.boolean().optional(), - groups: z.boolean().optional(), - _count: z.boolean().optional() - }).strict(); - -export const MarkFindFirstSchema: z.ZodType = z.object({ get select(){ return MarkFindFirstSelectSchema__findFirstMark_schema.optional(); }, get include(){ return MarkIncludeObjectSchema.optional(); }, orderBy: z.union([MarkOrderByWithRelationInputObjectSchema, MarkOrderByWithRelationInputObjectSchema.array()]).optional(), where: MarkWhereInputObjectSchema.optional(), cursor: MarkWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), distinct: z.union([MarkScalarFieldEnumSchema, MarkScalarFieldEnumSchema.array()]).optional() }).strict() as unknown as z.ZodType; - -export const MarkFindFirstZodSchema = z.object({ get select(){ return MarkFindFirstSelectSchema__findFirstMark_schema.optional(); }, get include(){ return MarkIncludeObjectSchema.optional(); }, orderBy: z.union([MarkOrderByWithRelationInputObjectSchema, MarkOrderByWithRelationInputObjectSchema.array()]).optional(), where: MarkWhereInputObjectSchema.optional(), cursor: MarkWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), distinct: z.union([MarkScalarFieldEnumSchema, MarkScalarFieldEnumSchema.array()]).optional() }).strict(); - -// File: findFirstOrThrowMark.schema.ts - -// Select schema needs to be in file to prevent circular imports -//------------------------------------------------------ - -export const MarkFindFirstOrThrowSelectSchema__findFirstOrThrowMark_schema: z.ZodType = z.object({ - id: z.boolean().optional(), - title: z.boolean().optional(), - details: z.boolean().optional(), - duration: z.boolean().optional(), - weight: z.boolean().optional(), - type: z.boolean().optional(), - createdAt: z.boolean().optional(), - updatedAt: z.boolean().optional(), - users: z.boolean().optional(), - groups: z.boolean().optional(), - _count: z.boolean().optional() - }).strict() as unknown as z.ZodType; - -export const MarkFindFirstOrThrowSelectZodSchema__findFirstOrThrowMark_schema = z.object({ - id: z.boolean().optional(), - title: z.boolean().optional(), - details: z.boolean().optional(), - duration: z.boolean().optional(), - weight: z.boolean().optional(), - type: z.boolean().optional(), - createdAt: z.boolean().optional(), - updatedAt: z.boolean().optional(), - users: z.boolean().optional(), - groups: z.boolean().optional(), - _count: z.boolean().optional() - }).strict(); - -export const MarkFindFirstOrThrowSchema: z.ZodType = z.object({ get select(){ return MarkFindFirstOrThrowSelectSchema__findFirstOrThrowMark_schema.optional(); }, get include(){ return MarkIncludeObjectSchema.optional(); }, orderBy: z.union([MarkOrderByWithRelationInputObjectSchema, MarkOrderByWithRelationInputObjectSchema.array()]).optional(), where: MarkWhereInputObjectSchema.optional(), cursor: MarkWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), distinct: z.union([MarkScalarFieldEnumSchema, MarkScalarFieldEnumSchema.array()]).optional() }).strict() as unknown as z.ZodType; - -export const MarkFindFirstOrThrowZodSchema = z.object({ get select(){ return MarkFindFirstOrThrowSelectSchema__findFirstOrThrowMark_schema.optional(); }, get include(){ return MarkIncludeObjectSchema.optional(); }, orderBy: z.union([MarkOrderByWithRelationInputObjectSchema, MarkOrderByWithRelationInputObjectSchema.array()]).optional(), where: MarkWhereInputObjectSchema.optional(), cursor: MarkWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), distinct: z.union([MarkScalarFieldEnumSchema, MarkScalarFieldEnumSchema.array()]).optional() }).strict(); - -// File: findManyMark.schema.ts - -// Select schema needs to be in file to prevent circular imports -//------------------------------------------------------ - -export const MarkFindManySelectSchema__findManyMark_schema: z.ZodType = z.object({ - id: z.boolean().optional(), - title: z.boolean().optional(), - details: z.boolean().optional(), - duration: z.boolean().optional(), - weight: z.boolean().optional(), - type: z.boolean().optional(), - createdAt: z.boolean().optional(), - updatedAt: z.boolean().optional(), - users: z.boolean().optional(), - groups: z.boolean().optional(), - _count: z.boolean().optional() - }).strict() as unknown as z.ZodType; - -export const MarkFindManySelectZodSchema__findManyMark_schema = z.object({ - id: z.boolean().optional(), - title: z.boolean().optional(), - details: z.boolean().optional(), - duration: z.boolean().optional(), - weight: z.boolean().optional(), - type: z.boolean().optional(), - createdAt: z.boolean().optional(), - updatedAt: z.boolean().optional(), - users: z.boolean().optional(), - groups: z.boolean().optional(), - _count: z.boolean().optional() - }).strict(); - -export const MarkFindManySchema: z.ZodType = z.object({ get select(){ return MarkFindManySelectSchema__findManyMark_schema.optional(); }, get include(){ return MarkIncludeObjectSchema.optional(); }, orderBy: z.union([MarkOrderByWithRelationInputObjectSchema, MarkOrderByWithRelationInputObjectSchema.array()]).optional(), where: MarkWhereInputObjectSchema.optional(), cursor: MarkWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), distinct: z.union([MarkScalarFieldEnumSchema, MarkScalarFieldEnumSchema.array()]).optional() }).strict() as unknown as z.ZodType; - -export const MarkFindManyZodSchema = z.object({ get select(){ return MarkFindManySelectSchema__findManyMark_schema.optional(); }, get include(){ return MarkIncludeObjectSchema.optional(); }, orderBy: z.union([MarkOrderByWithRelationInputObjectSchema, MarkOrderByWithRelationInputObjectSchema.array()]).optional(), where: MarkWhereInputObjectSchema.optional(), cursor: MarkWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), distinct: z.union([MarkScalarFieldEnumSchema, MarkScalarFieldEnumSchema.array()]).optional() }).strict(); - -// File: countMark.schema.ts - -export const MarkCountSchema: z.ZodType = z.object({ orderBy: z.union([MarkOrderByWithRelationInputObjectSchema, MarkOrderByWithRelationInputObjectSchema.array()]).optional(), where: MarkWhereInputObjectSchema.optional(), cursor: MarkWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), select: z.union([ z.literal(true), MarkCountAggregateInputObjectSchema ]).optional() }).strict() as unknown as z.ZodType; - -export const MarkCountZodSchema = z.object({ orderBy: z.union([MarkOrderByWithRelationInputObjectSchema, MarkOrderByWithRelationInputObjectSchema.array()]).optional(), where: MarkWhereInputObjectSchema.optional(), cursor: MarkWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), select: z.union([ z.literal(true), MarkCountAggregateInputObjectSchema ]).optional() }).strict(); - -// File: createOneMark.schema.ts - -export const MarkCreateOneSchema: z.ZodType = z.object({ get select(){ return MarkSelectObjectSchema.optional(); }, get include(){ return MarkIncludeObjectSchema.optional(); }, data: z.union([MarkCreateInputObjectSchema, MarkUncheckedCreateInputObjectSchema]) }).strict() as unknown as z.ZodType; - -export const MarkCreateOneZodSchema = z.object({ get select(){ return MarkSelectObjectSchema.optional(); }, get include(){ return MarkIncludeObjectSchema.optional(); }, data: z.union([MarkCreateInputObjectSchema, MarkUncheckedCreateInputObjectSchema]) }).strict(); - -// File: createManyMark.schema.ts - -export const MarkCreateManySchema: z.ZodType = z.object({ data: z.union([ MarkCreateManyInputObjectSchema, z.array(MarkCreateManyInputObjectSchema) ]), skipDuplicates: z.boolean().optional() }).strict() as unknown as z.ZodType; - -export const MarkCreateManyZodSchema = z.object({ data: z.union([ MarkCreateManyInputObjectSchema, z.array(MarkCreateManyInputObjectSchema) ]), skipDuplicates: z.boolean().optional() }).strict(); - -// File: createManyAndReturnMark.schema.ts - -export const MarkCreateManyAndReturnSchema: z.ZodType = z.object({ get select(){ return MarkSelectObjectSchema.optional(); }, data: z.union([ MarkCreateManyInputObjectSchema, z.array(MarkCreateManyInputObjectSchema) ]), skipDuplicates: z.boolean().optional() }).strict() as unknown as z.ZodType; - -export const MarkCreateManyAndReturnZodSchema = z.object({ get select(){ return MarkSelectObjectSchema.optional(); }, data: z.union([ MarkCreateManyInputObjectSchema, z.array(MarkCreateManyInputObjectSchema) ]), skipDuplicates: z.boolean().optional() }).strict(); - -// File: deleteOneMark.schema.ts - -export const MarkDeleteOneSchema: z.ZodType = z.object({ get select(){ return MarkSelectObjectSchema.optional(); }, get include(){ return MarkIncludeObjectSchema.optional(); }, where: MarkWhereUniqueInputObjectSchema }).strict() as unknown as z.ZodType; - -export const MarkDeleteOneZodSchema = z.object({ get select(){ return MarkSelectObjectSchema.optional(); }, get include(){ return MarkIncludeObjectSchema.optional(); }, where: MarkWhereUniqueInputObjectSchema }).strict(); - -// File: deleteManyMark.schema.ts - -export const MarkDeleteManySchema: z.ZodType = z.object({ where: MarkWhereInputObjectSchema.optional() }).strict() as unknown as z.ZodType; - -export const MarkDeleteManyZodSchema = z.object({ where: MarkWhereInputObjectSchema.optional() }).strict(); - -// File: updateOneMark.schema.ts - -export const MarkUpdateOneSchema: z.ZodType = z.object({ get select(){ return MarkSelectObjectSchema.optional(); }, get include(){ return MarkIncludeObjectSchema.optional(); }, data: z.union([MarkUpdateInputObjectSchema, MarkUncheckedUpdateInputObjectSchema]), where: MarkWhereUniqueInputObjectSchema }).strict() as unknown as z.ZodType; - -export const MarkUpdateOneZodSchema = z.object({ get select(){ return MarkSelectObjectSchema.optional(); }, get include(){ return MarkIncludeObjectSchema.optional(); }, data: z.union([MarkUpdateInputObjectSchema, MarkUncheckedUpdateInputObjectSchema]), where: MarkWhereUniqueInputObjectSchema }).strict(); - -// File: updateManyMark.schema.ts - -export const MarkUpdateManySchema: z.ZodType = z.object({ data: MarkUpdateManyMutationInputObjectSchema, where: MarkWhereInputObjectSchema.optional() }).strict() as unknown as z.ZodType; - -export const MarkUpdateManyZodSchema = z.object({ data: MarkUpdateManyMutationInputObjectSchema, where: MarkWhereInputObjectSchema.optional() }).strict(); - -// File: updateManyAndReturnMark.schema.ts - -export const MarkUpdateManyAndReturnSchema: z.ZodType = z.object({ get select(){ return MarkSelectObjectSchema.optional(); }, data: MarkUpdateManyMutationInputObjectSchema, where: MarkWhereInputObjectSchema.optional() }).strict() as unknown as z.ZodType; - -export const MarkUpdateManyAndReturnZodSchema = z.object({ get select(){ return MarkSelectObjectSchema.optional(); }, data: MarkUpdateManyMutationInputObjectSchema, where: MarkWhereInputObjectSchema.optional() }).strict(); - -// File: upsertOneMark.schema.ts - -export const MarkUpsertOneSchema: z.ZodType = z.object({ get select(){ return MarkSelectObjectSchema.optional(); }, get include(){ return MarkIncludeObjectSchema.optional(); }, where: MarkWhereUniqueInputObjectSchema, create: z.union([ MarkCreateInputObjectSchema, MarkUncheckedCreateInputObjectSchema ]), update: z.union([ MarkUpdateInputObjectSchema, MarkUncheckedUpdateInputObjectSchema ]) }).strict() as unknown as z.ZodType; - -export const MarkUpsertOneZodSchema = z.object({ get select(){ return MarkSelectObjectSchema.optional(); }, get include(){ return MarkIncludeObjectSchema.optional(); }, where: MarkWhereUniqueInputObjectSchema, create: z.union([ MarkCreateInputObjectSchema, MarkUncheckedCreateInputObjectSchema ]), update: z.union([ MarkUpdateInputObjectSchema, MarkUncheckedUpdateInputObjectSchema ]) }).strict(); - -// File: aggregateMark.schema.ts - -export const MarkAggregateSchema: z.ZodType = z.object({ orderBy: z.union([MarkOrderByWithRelationInputObjectSchema, MarkOrderByWithRelationInputObjectSchema.array()]).optional(), where: MarkWhereInputObjectSchema.optional(), cursor: MarkWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), _count: z.union([ z.literal(true), MarkCountAggregateInputObjectSchema ]).optional(), _min: MarkMinAggregateInputObjectSchema.optional(), _max: MarkMaxAggregateInputObjectSchema.optional(), _avg: MarkAvgAggregateInputObjectSchema.optional(), _sum: MarkSumAggregateInputObjectSchema.optional() }).strict() as unknown as z.ZodType; - -export const MarkAggregateZodSchema = z.object({ orderBy: z.union([MarkOrderByWithRelationInputObjectSchema, MarkOrderByWithRelationInputObjectSchema.array()]).optional(), where: MarkWhereInputObjectSchema.optional(), cursor: MarkWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), _count: z.union([ z.literal(true), MarkCountAggregateInputObjectSchema ]).optional(), _min: MarkMinAggregateInputObjectSchema.optional(), _max: MarkMaxAggregateInputObjectSchema.optional(), _avg: MarkAvgAggregateInputObjectSchema.optional(), _sum: MarkSumAggregateInputObjectSchema.optional() }).strict(); - -// File: groupByMark.schema.ts - -export const MarkGroupBySchema: z.ZodType = z.object({ where: MarkWhereInputObjectSchema.optional(), orderBy: z.union([MarkOrderByWithAggregationInputObjectSchema, MarkOrderByWithAggregationInputObjectSchema.array()]).optional(), having: MarkScalarWhereWithAggregatesInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), by: z.array(MarkScalarFieldEnumSchema), _count: z.union([ z.literal(true), MarkCountAggregateInputObjectSchema ]).optional(), _min: MarkMinAggregateInputObjectSchema.optional(), _max: MarkMaxAggregateInputObjectSchema.optional(), _avg: MarkAvgAggregateInputObjectSchema.optional(), _sum: MarkSumAggregateInputObjectSchema.optional() }).strict() as unknown as z.ZodType; - -export const MarkGroupByZodSchema = z.object({ where: MarkWhereInputObjectSchema.optional(), orderBy: z.union([MarkOrderByWithAggregationInputObjectSchema, MarkOrderByWithAggregationInputObjectSchema.array()]).optional(), having: MarkScalarWhereWithAggregatesInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), by: z.array(MarkScalarFieldEnumSchema), _count: z.union([ z.literal(true), MarkCountAggregateInputObjectSchema ]).optional(), _min: MarkMinAggregateInputObjectSchema.optional(), _max: MarkMaxAggregateInputObjectSchema.optional(), _avg: MarkAvgAggregateInputObjectSchema.optional(), _sum: MarkSumAggregateInputObjectSchema.optional() }).strict(); - -// File: findUniqueMarkGroup.schema.ts - -export const MarkGroupFindUniqueSchema: z.ZodType = z.object({ get select(){ return MarkGroupSelectObjectSchema.optional(); }, get include(){ return MarkGroupIncludeObjectSchema.optional(); }, where: MarkGroupWhereUniqueInputObjectSchema }).strict() as unknown as z.ZodType; - -export const MarkGroupFindUniqueZodSchema = z.object({ get select(){ return MarkGroupSelectObjectSchema.optional(); }, get include(){ return MarkGroupIncludeObjectSchema.optional(); }, where: MarkGroupWhereUniqueInputObjectSchema }).strict(); - -// File: findUniqueOrThrowMarkGroup.schema.ts - -export const MarkGroupFindUniqueOrThrowSchema: z.ZodType = z.object({ get select(){ return MarkGroupSelectObjectSchema.optional(); }, get include(){ return MarkGroupIncludeObjectSchema.optional(); }, where: MarkGroupWhereUniqueInputObjectSchema }).strict() as unknown as z.ZodType; - -export const MarkGroupFindUniqueOrThrowZodSchema = z.object({ get select(){ return MarkGroupSelectObjectSchema.optional(); }, get include(){ return MarkGroupIncludeObjectSchema.optional(); }, where: MarkGroupWhereUniqueInputObjectSchema }).strict(); - -// File: findFirstMarkGroup.schema.ts - -// Select schema needs to be in file to prevent circular imports -//------------------------------------------------------ - -export const MarkGroupFindFirstSelectSchema__findFirstMarkGroup_schema: z.ZodType = z.object({ - markId: z.boolean().optional(), - groupId: z.boolean().optional(), - mark: z.boolean().optional(), - group: z.boolean().optional() - }).strict() as unknown as z.ZodType; - -export const MarkGroupFindFirstSelectZodSchema__findFirstMarkGroup_schema = z.object({ - markId: z.boolean().optional(), - groupId: z.boolean().optional(), - mark: z.boolean().optional(), - group: z.boolean().optional() - }).strict(); - -export const MarkGroupFindFirstSchema: z.ZodType = z.object({ get select(){ return MarkGroupFindFirstSelectSchema__findFirstMarkGroup_schema.optional(); }, get include(){ return MarkGroupIncludeObjectSchema.optional(); }, orderBy: z.union([MarkGroupOrderByWithRelationInputObjectSchema, MarkGroupOrderByWithRelationInputObjectSchema.array()]).optional(), where: MarkGroupWhereInputObjectSchema.optional(), cursor: MarkGroupWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), distinct: z.union([MarkGroupScalarFieldEnumSchema, MarkGroupScalarFieldEnumSchema.array()]).optional() }).strict() as unknown as z.ZodType; - -export const MarkGroupFindFirstZodSchema = z.object({ get select(){ return MarkGroupFindFirstSelectSchema__findFirstMarkGroup_schema.optional(); }, get include(){ return MarkGroupIncludeObjectSchema.optional(); }, orderBy: z.union([MarkGroupOrderByWithRelationInputObjectSchema, MarkGroupOrderByWithRelationInputObjectSchema.array()]).optional(), where: MarkGroupWhereInputObjectSchema.optional(), cursor: MarkGroupWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), distinct: z.union([MarkGroupScalarFieldEnumSchema, MarkGroupScalarFieldEnumSchema.array()]).optional() }).strict(); - -// File: findFirstOrThrowMarkGroup.schema.ts - -// Select schema needs to be in file to prevent circular imports -//------------------------------------------------------ - -export const MarkGroupFindFirstOrThrowSelectSchema__findFirstOrThrowMarkGroup_schema: z.ZodType = z.object({ - markId: z.boolean().optional(), - groupId: z.boolean().optional(), - mark: z.boolean().optional(), - group: z.boolean().optional() - }).strict() as unknown as z.ZodType; - -export const MarkGroupFindFirstOrThrowSelectZodSchema__findFirstOrThrowMarkGroup_schema = z.object({ - markId: z.boolean().optional(), - groupId: z.boolean().optional(), - mark: z.boolean().optional(), - group: z.boolean().optional() - }).strict(); - -export const MarkGroupFindFirstOrThrowSchema: z.ZodType = z.object({ get select(){ return MarkGroupFindFirstOrThrowSelectSchema__findFirstOrThrowMarkGroup_schema.optional(); }, get include(){ return MarkGroupIncludeObjectSchema.optional(); }, orderBy: z.union([MarkGroupOrderByWithRelationInputObjectSchema, MarkGroupOrderByWithRelationInputObjectSchema.array()]).optional(), where: MarkGroupWhereInputObjectSchema.optional(), cursor: MarkGroupWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), distinct: z.union([MarkGroupScalarFieldEnumSchema, MarkGroupScalarFieldEnumSchema.array()]).optional() }).strict() as unknown as z.ZodType; - -export const MarkGroupFindFirstOrThrowZodSchema = z.object({ get select(){ return MarkGroupFindFirstOrThrowSelectSchema__findFirstOrThrowMarkGroup_schema.optional(); }, get include(){ return MarkGroupIncludeObjectSchema.optional(); }, orderBy: z.union([MarkGroupOrderByWithRelationInputObjectSchema, MarkGroupOrderByWithRelationInputObjectSchema.array()]).optional(), where: MarkGroupWhereInputObjectSchema.optional(), cursor: MarkGroupWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), distinct: z.union([MarkGroupScalarFieldEnumSchema, MarkGroupScalarFieldEnumSchema.array()]).optional() }).strict(); - -// File: findManyMarkGroup.schema.ts - -// Select schema needs to be in file to prevent circular imports -//------------------------------------------------------ - -export const MarkGroupFindManySelectSchema__findManyMarkGroup_schema: z.ZodType = z.object({ - markId: z.boolean().optional(), - groupId: z.boolean().optional(), - mark: z.boolean().optional(), - group: z.boolean().optional() - }).strict() as unknown as z.ZodType; - -export const MarkGroupFindManySelectZodSchema__findManyMarkGroup_schema = z.object({ - markId: z.boolean().optional(), - groupId: z.boolean().optional(), - mark: z.boolean().optional(), - group: z.boolean().optional() - }).strict(); - -export const MarkGroupFindManySchema: z.ZodType = z.object({ get select(){ return MarkGroupFindManySelectSchema__findManyMarkGroup_schema.optional(); }, get include(){ return MarkGroupIncludeObjectSchema.optional(); }, orderBy: z.union([MarkGroupOrderByWithRelationInputObjectSchema, MarkGroupOrderByWithRelationInputObjectSchema.array()]).optional(), where: MarkGroupWhereInputObjectSchema.optional(), cursor: MarkGroupWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), distinct: z.union([MarkGroupScalarFieldEnumSchema, MarkGroupScalarFieldEnumSchema.array()]).optional() }).strict() as unknown as z.ZodType; - -export const MarkGroupFindManyZodSchema = z.object({ get select(){ return MarkGroupFindManySelectSchema__findManyMarkGroup_schema.optional(); }, get include(){ return MarkGroupIncludeObjectSchema.optional(); }, orderBy: z.union([MarkGroupOrderByWithRelationInputObjectSchema, MarkGroupOrderByWithRelationInputObjectSchema.array()]).optional(), where: MarkGroupWhereInputObjectSchema.optional(), cursor: MarkGroupWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), distinct: z.union([MarkGroupScalarFieldEnumSchema, MarkGroupScalarFieldEnumSchema.array()]).optional() }).strict(); - -// File: countMarkGroup.schema.ts - -export const MarkGroupCountSchema: z.ZodType = z.object({ orderBy: z.union([MarkGroupOrderByWithRelationInputObjectSchema, MarkGroupOrderByWithRelationInputObjectSchema.array()]).optional(), where: MarkGroupWhereInputObjectSchema.optional(), cursor: MarkGroupWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), select: z.union([ z.literal(true), MarkGroupCountAggregateInputObjectSchema ]).optional() }).strict() as unknown as z.ZodType; - -export const MarkGroupCountZodSchema = z.object({ orderBy: z.union([MarkGroupOrderByWithRelationInputObjectSchema, MarkGroupOrderByWithRelationInputObjectSchema.array()]).optional(), where: MarkGroupWhereInputObjectSchema.optional(), cursor: MarkGroupWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), select: z.union([ z.literal(true), MarkGroupCountAggregateInputObjectSchema ]).optional() }).strict(); - -// File: createOneMarkGroup.schema.ts - -export const MarkGroupCreateOneSchema: z.ZodType = z.object({ get select(){ return MarkGroupSelectObjectSchema.optional(); }, get include(){ return MarkGroupIncludeObjectSchema.optional(); }, data: z.union([MarkGroupCreateInputObjectSchema, MarkGroupUncheckedCreateInputObjectSchema]) }).strict() as unknown as z.ZodType; - -export const MarkGroupCreateOneZodSchema = z.object({ get select(){ return MarkGroupSelectObjectSchema.optional(); }, get include(){ return MarkGroupIncludeObjectSchema.optional(); }, data: z.union([MarkGroupCreateInputObjectSchema, MarkGroupUncheckedCreateInputObjectSchema]) }).strict(); - -// File: createManyMarkGroup.schema.ts - -export const MarkGroupCreateManySchema: z.ZodType = z.object({ data: z.union([ MarkGroupCreateManyInputObjectSchema, z.array(MarkGroupCreateManyInputObjectSchema) ]), skipDuplicates: z.boolean().optional() }).strict() as unknown as z.ZodType; - -export const MarkGroupCreateManyZodSchema = z.object({ data: z.union([ MarkGroupCreateManyInputObjectSchema, z.array(MarkGroupCreateManyInputObjectSchema) ]), skipDuplicates: z.boolean().optional() }).strict(); - -// File: createManyAndReturnMarkGroup.schema.ts - -export const MarkGroupCreateManyAndReturnSchema: z.ZodType = z.object({ get select(){ return MarkGroupSelectObjectSchema.optional(); }, data: z.union([ MarkGroupCreateManyInputObjectSchema, z.array(MarkGroupCreateManyInputObjectSchema) ]), skipDuplicates: z.boolean().optional() }).strict() as unknown as z.ZodType; - -export const MarkGroupCreateManyAndReturnZodSchema = z.object({ get select(){ return MarkGroupSelectObjectSchema.optional(); }, data: z.union([ MarkGroupCreateManyInputObjectSchema, z.array(MarkGroupCreateManyInputObjectSchema) ]), skipDuplicates: z.boolean().optional() }).strict(); - -// File: deleteOneMarkGroup.schema.ts - -export const MarkGroupDeleteOneSchema: z.ZodType = z.object({ get select(){ return MarkGroupSelectObjectSchema.optional(); }, get include(){ return MarkGroupIncludeObjectSchema.optional(); }, where: MarkGroupWhereUniqueInputObjectSchema }).strict() as unknown as z.ZodType; - -export const MarkGroupDeleteOneZodSchema = z.object({ get select(){ return MarkGroupSelectObjectSchema.optional(); }, get include(){ return MarkGroupIncludeObjectSchema.optional(); }, where: MarkGroupWhereUniqueInputObjectSchema }).strict(); - -// File: deleteManyMarkGroup.schema.ts - -export const MarkGroupDeleteManySchema: z.ZodType = z.object({ where: MarkGroupWhereInputObjectSchema.optional() }).strict() as unknown as z.ZodType; - -export const MarkGroupDeleteManyZodSchema = z.object({ where: MarkGroupWhereInputObjectSchema.optional() }).strict(); - -// File: updateOneMarkGroup.schema.ts - -export const MarkGroupUpdateOneSchema: z.ZodType = z.object({ get select(){ return MarkGroupSelectObjectSchema.optional(); }, get include(){ return MarkGroupIncludeObjectSchema.optional(); }, data: z.union([MarkGroupUpdateInputObjectSchema, MarkGroupUncheckedUpdateInputObjectSchema]), where: MarkGroupWhereUniqueInputObjectSchema }).strict() as unknown as z.ZodType; - -export const MarkGroupUpdateOneZodSchema = z.object({ get select(){ return MarkGroupSelectObjectSchema.optional(); }, get include(){ return MarkGroupIncludeObjectSchema.optional(); }, data: z.union([MarkGroupUpdateInputObjectSchema, MarkGroupUncheckedUpdateInputObjectSchema]), where: MarkGroupWhereUniqueInputObjectSchema }).strict(); - -// File: updateManyMarkGroup.schema.ts - -export const MarkGroupUpdateManySchema: z.ZodType = z.object({ data: MarkGroupUpdateManyMutationInputObjectSchema, where: MarkGroupWhereInputObjectSchema.optional() }).strict() as unknown as z.ZodType; - -export const MarkGroupUpdateManyZodSchema = z.object({ data: MarkGroupUpdateManyMutationInputObjectSchema, where: MarkGroupWhereInputObjectSchema.optional() }).strict(); - -// File: updateManyAndReturnMarkGroup.schema.ts - -export const MarkGroupUpdateManyAndReturnSchema: z.ZodType = z.object({ get select(){ return MarkGroupSelectObjectSchema.optional(); }, data: MarkGroupUpdateManyMutationInputObjectSchema, where: MarkGroupWhereInputObjectSchema.optional() }).strict() as unknown as z.ZodType; - -export const MarkGroupUpdateManyAndReturnZodSchema = z.object({ get select(){ return MarkGroupSelectObjectSchema.optional(); }, data: MarkGroupUpdateManyMutationInputObjectSchema, where: MarkGroupWhereInputObjectSchema.optional() }).strict(); - -// File: upsertOneMarkGroup.schema.ts - -export const MarkGroupUpsertOneSchema: z.ZodType = z.object({ get select(){ return MarkGroupSelectObjectSchema.optional(); }, get include(){ return MarkGroupIncludeObjectSchema.optional(); }, where: MarkGroupWhereUniqueInputObjectSchema, create: z.union([ MarkGroupCreateInputObjectSchema, MarkGroupUncheckedCreateInputObjectSchema ]), update: z.union([ MarkGroupUpdateInputObjectSchema, MarkGroupUncheckedUpdateInputObjectSchema ]) }).strict() as unknown as z.ZodType; - -export const MarkGroupUpsertOneZodSchema = z.object({ get select(){ return MarkGroupSelectObjectSchema.optional(); }, get include(){ return MarkGroupIncludeObjectSchema.optional(); }, where: MarkGroupWhereUniqueInputObjectSchema, create: z.union([ MarkGroupCreateInputObjectSchema, MarkGroupUncheckedCreateInputObjectSchema ]), update: z.union([ MarkGroupUpdateInputObjectSchema, MarkGroupUncheckedUpdateInputObjectSchema ]) }).strict(); - -// File: aggregateMarkGroup.schema.ts - -export const MarkGroupAggregateSchema: z.ZodType = z.object({ orderBy: z.union([MarkGroupOrderByWithRelationInputObjectSchema, MarkGroupOrderByWithRelationInputObjectSchema.array()]).optional(), where: MarkGroupWhereInputObjectSchema.optional(), cursor: MarkGroupWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), _count: z.union([ z.literal(true), MarkGroupCountAggregateInputObjectSchema ]).optional(), _min: MarkGroupMinAggregateInputObjectSchema.optional(), _max: MarkGroupMaxAggregateInputObjectSchema.optional() }).strict() as unknown as z.ZodType; - -export const MarkGroupAggregateZodSchema = z.object({ orderBy: z.union([MarkGroupOrderByWithRelationInputObjectSchema, MarkGroupOrderByWithRelationInputObjectSchema.array()]).optional(), where: MarkGroupWhereInputObjectSchema.optional(), cursor: MarkGroupWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), _count: z.union([ z.literal(true), MarkGroupCountAggregateInputObjectSchema ]).optional(), _min: MarkGroupMinAggregateInputObjectSchema.optional(), _max: MarkGroupMaxAggregateInputObjectSchema.optional() }).strict(); - -// File: groupByMarkGroup.schema.ts - -export const MarkGroupGroupBySchema: z.ZodType = z.object({ where: MarkGroupWhereInputObjectSchema.optional(), orderBy: z.union([MarkGroupOrderByWithAggregationInputObjectSchema, MarkGroupOrderByWithAggregationInputObjectSchema.array()]).optional(), having: MarkGroupScalarWhereWithAggregatesInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), by: z.array(MarkGroupScalarFieldEnumSchema), _count: z.union([ z.literal(true), MarkGroupCountAggregateInputObjectSchema ]).optional(), _min: MarkGroupMinAggregateInputObjectSchema.optional(), _max: MarkGroupMaxAggregateInputObjectSchema.optional() }).strict() as unknown as z.ZodType; - -export const MarkGroupGroupByZodSchema = z.object({ where: MarkGroupWhereInputObjectSchema.optional(), orderBy: z.union([MarkGroupOrderByWithAggregationInputObjectSchema, MarkGroupOrderByWithAggregationInputObjectSchema.array()]).optional(), having: MarkGroupScalarWhereWithAggregatesInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), by: z.array(MarkGroupScalarFieldEnumSchema), _count: z.union([ z.literal(true), MarkGroupCountAggregateInputObjectSchema ]).optional(), _min: MarkGroupMinAggregateInputObjectSchema.optional(), _max: MarkGroupMaxAggregateInputObjectSchema.optional() }).strict(); - -// File: findUniquePersonalMark.schema.ts - -export const PersonalMarkFindUniqueSchema: z.ZodType = z.object({ get select(){ return PersonalMarkSelectObjectSchema.optional(); }, get include(){ return PersonalMarkIncludeObjectSchema.optional(); }, where: PersonalMarkWhereUniqueInputObjectSchema }).strict() as unknown as z.ZodType; - -export const PersonalMarkFindUniqueZodSchema = z.object({ get select(){ return PersonalMarkSelectObjectSchema.optional(); }, get include(){ return PersonalMarkIncludeObjectSchema.optional(); }, where: PersonalMarkWhereUniqueInputObjectSchema }).strict(); - -// File: findUniqueOrThrowPersonalMark.schema.ts - -export const PersonalMarkFindUniqueOrThrowSchema: z.ZodType = z.object({ get select(){ return PersonalMarkSelectObjectSchema.optional(); }, get include(){ return PersonalMarkIncludeObjectSchema.optional(); }, where: PersonalMarkWhereUniqueInputObjectSchema }).strict() as unknown as z.ZodType; - -export const PersonalMarkFindUniqueOrThrowZodSchema = z.object({ get select(){ return PersonalMarkSelectObjectSchema.optional(); }, get include(){ return PersonalMarkIncludeObjectSchema.optional(); }, where: PersonalMarkWhereUniqueInputObjectSchema }).strict(); - -// File: findFirstPersonalMark.schema.ts - -// Select schema needs to be in file to prevent circular imports -//------------------------------------------------------ - -export const PersonalMarkFindFirstSelectSchema__findFirstPersonalMark_schema: z.ZodType = z.object({ - createdAt: z.boolean().optional(), - markId: z.boolean().optional(), - userId: z.boolean().optional(), - givenById: z.boolean().optional(), - mark: z.boolean().optional(), - user: z.boolean().optional(), - givenBy: z.boolean().optional() - }).strict() as unknown as z.ZodType; - -export const PersonalMarkFindFirstSelectZodSchema__findFirstPersonalMark_schema = z.object({ - createdAt: z.boolean().optional(), - markId: z.boolean().optional(), - userId: z.boolean().optional(), - givenById: z.boolean().optional(), - mark: z.boolean().optional(), - user: z.boolean().optional(), - givenBy: z.boolean().optional() - }).strict(); - -export const PersonalMarkFindFirstSchema: z.ZodType = z.object({ get select(){ return PersonalMarkFindFirstSelectSchema__findFirstPersonalMark_schema.optional(); }, get include(){ return PersonalMarkIncludeObjectSchema.optional(); }, orderBy: z.union([PersonalMarkOrderByWithRelationInputObjectSchema, PersonalMarkOrderByWithRelationInputObjectSchema.array()]).optional(), where: PersonalMarkWhereInputObjectSchema.optional(), cursor: PersonalMarkWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), distinct: z.union([PersonalMarkScalarFieldEnumSchema, PersonalMarkScalarFieldEnumSchema.array()]).optional() }).strict() as unknown as z.ZodType; - -export const PersonalMarkFindFirstZodSchema = z.object({ get select(){ return PersonalMarkFindFirstSelectSchema__findFirstPersonalMark_schema.optional(); }, get include(){ return PersonalMarkIncludeObjectSchema.optional(); }, orderBy: z.union([PersonalMarkOrderByWithRelationInputObjectSchema, PersonalMarkOrderByWithRelationInputObjectSchema.array()]).optional(), where: PersonalMarkWhereInputObjectSchema.optional(), cursor: PersonalMarkWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), distinct: z.union([PersonalMarkScalarFieldEnumSchema, PersonalMarkScalarFieldEnumSchema.array()]).optional() }).strict(); - -// File: findFirstOrThrowPersonalMark.schema.ts - -// Select schema needs to be in file to prevent circular imports -//------------------------------------------------------ - -export const PersonalMarkFindFirstOrThrowSelectSchema__findFirstOrThrowPersonalMark_schema: z.ZodType = z.object({ - createdAt: z.boolean().optional(), - markId: z.boolean().optional(), - userId: z.boolean().optional(), - givenById: z.boolean().optional(), - mark: z.boolean().optional(), - user: z.boolean().optional(), - givenBy: z.boolean().optional() - }).strict() as unknown as z.ZodType; - -export const PersonalMarkFindFirstOrThrowSelectZodSchema__findFirstOrThrowPersonalMark_schema = z.object({ - createdAt: z.boolean().optional(), - markId: z.boolean().optional(), - userId: z.boolean().optional(), - givenById: z.boolean().optional(), - mark: z.boolean().optional(), - user: z.boolean().optional(), - givenBy: z.boolean().optional() - }).strict(); - -export const PersonalMarkFindFirstOrThrowSchema: z.ZodType = z.object({ get select(){ return PersonalMarkFindFirstOrThrowSelectSchema__findFirstOrThrowPersonalMark_schema.optional(); }, get include(){ return PersonalMarkIncludeObjectSchema.optional(); }, orderBy: z.union([PersonalMarkOrderByWithRelationInputObjectSchema, PersonalMarkOrderByWithRelationInputObjectSchema.array()]).optional(), where: PersonalMarkWhereInputObjectSchema.optional(), cursor: PersonalMarkWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), distinct: z.union([PersonalMarkScalarFieldEnumSchema, PersonalMarkScalarFieldEnumSchema.array()]).optional() }).strict() as unknown as z.ZodType; - -export const PersonalMarkFindFirstOrThrowZodSchema = z.object({ get select(){ return PersonalMarkFindFirstOrThrowSelectSchema__findFirstOrThrowPersonalMark_schema.optional(); }, get include(){ return PersonalMarkIncludeObjectSchema.optional(); }, orderBy: z.union([PersonalMarkOrderByWithRelationInputObjectSchema, PersonalMarkOrderByWithRelationInputObjectSchema.array()]).optional(), where: PersonalMarkWhereInputObjectSchema.optional(), cursor: PersonalMarkWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), distinct: z.union([PersonalMarkScalarFieldEnumSchema, PersonalMarkScalarFieldEnumSchema.array()]).optional() }).strict(); - -// File: findManyPersonalMark.schema.ts - -// Select schema needs to be in file to prevent circular imports -//------------------------------------------------------ - -export const PersonalMarkFindManySelectSchema__findManyPersonalMark_schema: z.ZodType = z.object({ - createdAt: z.boolean().optional(), - markId: z.boolean().optional(), - userId: z.boolean().optional(), - givenById: z.boolean().optional(), - mark: z.boolean().optional(), - user: z.boolean().optional(), - givenBy: z.boolean().optional() - }).strict() as unknown as z.ZodType; - -export const PersonalMarkFindManySelectZodSchema__findManyPersonalMark_schema = z.object({ - createdAt: z.boolean().optional(), - markId: z.boolean().optional(), - userId: z.boolean().optional(), - givenById: z.boolean().optional(), - mark: z.boolean().optional(), - user: z.boolean().optional(), - givenBy: z.boolean().optional() - }).strict(); - -export const PersonalMarkFindManySchema: z.ZodType = z.object({ get select(){ return PersonalMarkFindManySelectSchema__findManyPersonalMark_schema.optional(); }, get include(){ return PersonalMarkIncludeObjectSchema.optional(); }, orderBy: z.union([PersonalMarkOrderByWithRelationInputObjectSchema, PersonalMarkOrderByWithRelationInputObjectSchema.array()]).optional(), where: PersonalMarkWhereInputObjectSchema.optional(), cursor: PersonalMarkWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), distinct: z.union([PersonalMarkScalarFieldEnumSchema, PersonalMarkScalarFieldEnumSchema.array()]).optional() }).strict() as unknown as z.ZodType; - -export const PersonalMarkFindManyZodSchema = z.object({ get select(){ return PersonalMarkFindManySelectSchema__findManyPersonalMark_schema.optional(); }, get include(){ return PersonalMarkIncludeObjectSchema.optional(); }, orderBy: z.union([PersonalMarkOrderByWithRelationInputObjectSchema, PersonalMarkOrderByWithRelationInputObjectSchema.array()]).optional(), where: PersonalMarkWhereInputObjectSchema.optional(), cursor: PersonalMarkWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), distinct: z.union([PersonalMarkScalarFieldEnumSchema, PersonalMarkScalarFieldEnumSchema.array()]).optional() }).strict(); - -// File: countPersonalMark.schema.ts - -export const PersonalMarkCountSchema: z.ZodType = z.object({ orderBy: z.union([PersonalMarkOrderByWithRelationInputObjectSchema, PersonalMarkOrderByWithRelationInputObjectSchema.array()]).optional(), where: PersonalMarkWhereInputObjectSchema.optional(), cursor: PersonalMarkWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), select: z.union([ z.literal(true), PersonalMarkCountAggregateInputObjectSchema ]).optional() }).strict() as unknown as z.ZodType; - -export const PersonalMarkCountZodSchema = z.object({ orderBy: z.union([PersonalMarkOrderByWithRelationInputObjectSchema, PersonalMarkOrderByWithRelationInputObjectSchema.array()]).optional(), where: PersonalMarkWhereInputObjectSchema.optional(), cursor: PersonalMarkWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), select: z.union([ z.literal(true), PersonalMarkCountAggregateInputObjectSchema ]).optional() }).strict(); - -// File: createOnePersonalMark.schema.ts - -export const PersonalMarkCreateOneSchema: z.ZodType = z.object({ get select(){ return PersonalMarkSelectObjectSchema.optional(); }, get include(){ return PersonalMarkIncludeObjectSchema.optional(); }, data: z.union([PersonalMarkCreateInputObjectSchema, PersonalMarkUncheckedCreateInputObjectSchema]) }).strict() as unknown as z.ZodType; - -export const PersonalMarkCreateOneZodSchema = z.object({ get select(){ return PersonalMarkSelectObjectSchema.optional(); }, get include(){ return PersonalMarkIncludeObjectSchema.optional(); }, data: z.union([PersonalMarkCreateInputObjectSchema, PersonalMarkUncheckedCreateInputObjectSchema]) }).strict(); - -// File: createManyPersonalMark.schema.ts - -export const PersonalMarkCreateManySchema: z.ZodType = z.object({ data: z.union([ PersonalMarkCreateManyInputObjectSchema, z.array(PersonalMarkCreateManyInputObjectSchema) ]), skipDuplicates: z.boolean().optional() }).strict() as unknown as z.ZodType; - -export const PersonalMarkCreateManyZodSchema = z.object({ data: z.union([ PersonalMarkCreateManyInputObjectSchema, z.array(PersonalMarkCreateManyInputObjectSchema) ]), skipDuplicates: z.boolean().optional() }).strict(); - -// File: createManyAndReturnPersonalMark.schema.ts - -export const PersonalMarkCreateManyAndReturnSchema: z.ZodType = z.object({ get select(){ return PersonalMarkSelectObjectSchema.optional(); }, data: z.union([ PersonalMarkCreateManyInputObjectSchema, z.array(PersonalMarkCreateManyInputObjectSchema) ]), skipDuplicates: z.boolean().optional() }).strict() as unknown as z.ZodType; - -export const PersonalMarkCreateManyAndReturnZodSchema = z.object({ get select(){ return PersonalMarkSelectObjectSchema.optional(); }, data: z.union([ PersonalMarkCreateManyInputObjectSchema, z.array(PersonalMarkCreateManyInputObjectSchema) ]), skipDuplicates: z.boolean().optional() }).strict(); - -// File: deleteOnePersonalMark.schema.ts - -export const PersonalMarkDeleteOneSchema: z.ZodType = z.object({ get select(){ return PersonalMarkSelectObjectSchema.optional(); }, get include(){ return PersonalMarkIncludeObjectSchema.optional(); }, where: PersonalMarkWhereUniqueInputObjectSchema }).strict() as unknown as z.ZodType; - -export const PersonalMarkDeleteOneZodSchema = z.object({ get select(){ return PersonalMarkSelectObjectSchema.optional(); }, get include(){ return PersonalMarkIncludeObjectSchema.optional(); }, where: PersonalMarkWhereUniqueInputObjectSchema }).strict(); - -// File: deleteManyPersonalMark.schema.ts - -export const PersonalMarkDeleteManySchema: z.ZodType = z.object({ where: PersonalMarkWhereInputObjectSchema.optional() }).strict() as unknown as z.ZodType; - -export const PersonalMarkDeleteManyZodSchema = z.object({ where: PersonalMarkWhereInputObjectSchema.optional() }).strict(); - -// File: updateOnePersonalMark.schema.ts - -export const PersonalMarkUpdateOneSchema: z.ZodType = z.object({ get select(){ return PersonalMarkSelectObjectSchema.optional(); }, get include(){ return PersonalMarkIncludeObjectSchema.optional(); }, data: z.union([PersonalMarkUpdateInputObjectSchema, PersonalMarkUncheckedUpdateInputObjectSchema]), where: PersonalMarkWhereUniqueInputObjectSchema }).strict() as unknown as z.ZodType; - -export const PersonalMarkUpdateOneZodSchema = z.object({ get select(){ return PersonalMarkSelectObjectSchema.optional(); }, get include(){ return PersonalMarkIncludeObjectSchema.optional(); }, data: z.union([PersonalMarkUpdateInputObjectSchema, PersonalMarkUncheckedUpdateInputObjectSchema]), where: PersonalMarkWhereUniqueInputObjectSchema }).strict(); - -// File: updateManyPersonalMark.schema.ts - -export const PersonalMarkUpdateManySchema: z.ZodType = z.object({ data: PersonalMarkUpdateManyMutationInputObjectSchema, where: PersonalMarkWhereInputObjectSchema.optional() }).strict() as unknown as z.ZodType; - -export const PersonalMarkUpdateManyZodSchema = z.object({ data: PersonalMarkUpdateManyMutationInputObjectSchema, where: PersonalMarkWhereInputObjectSchema.optional() }).strict(); - -// File: updateManyAndReturnPersonalMark.schema.ts - -export const PersonalMarkUpdateManyAndReturnSchema: z.ZodType = z.object({ get select(){ return PersonalMarkSelectObjectSchema.optional(); }, data: PersonalMarkUpdateManyMutationInputObjectSchema, where: PersonalMarkWhereInputObjectSchema.optional() }).strict() as unknown as z.ZodType; - -export const PersonalMarkUpdateManyAndReturnZodSchema = z.object({ get select(){ return PersonalMarkSelectObjectSchema.optional(); }, data: PersonalMarkUpdateManyMutationInputObjectSchema, where: PersonalMarkWhereInputObjectSchema.optional() }).strict(); - -// File: upsertOnePersonalMark.schema.ts - -export const PersonalMarkUpsertOneSchema: z.ZodType = z.object({ get select(){ return PersonalMarkSelectObjectSchema.optional(); }, get include(){ return PersonalMarkIncludeObjectSchema.optional(); }, where: PersonalMarkWhereUniqueInputObjectSchema, create: z.union([ PersonalMarkCreateInputObjectSchema, PersonalMarkUncheckedCreateInputObjectSchema ]), update: z.union([ PersonalMarkUpdateInputObjectSchema, PersonalMarkUncheckedUpdateInputObjectSchema ]) }).strict() as unknown as z.ZodType; - -export const PersonalMarkUpsertOneZodSchema = z.object({ get select(){ return PersonalMarkSelectObjectSchema.optional(); }, get include(){ return PersonalMarkIncludeObjectSchema.optional(); }, where: PersonalMarkWhereUniqueInputObjectSchema, create: z.union([ PersonalMarkCreateInputObjectSchema, PersonalMarkUncheckedCreateInputObjectSchema ]), update: z.union([ PersonalMarkUpdateInputObjectSchema, PersonalMarkUncheckedUpdateInputObjectSchema ]) }).strict(); - -// File: aggregatePersonalMark.schema.ts - -export const PersonalMarkAggregateSchema: z.ZodType = z.object({ orderBy: z.union([PersonalMarkOrderByWithRelationInputObjectSchema, PersonalMarkOrderByWithRelationInputObjectSchema.array()]).optional(), where: PersonalMarkWhereInputObjectSchema.optional(), cursor: PersonalMarkWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), _count: z.union([ z.literal(true), PersonalMarkCountAggregateInputObjectSchema ]).optional(), _min: PersonalMarkMinAggregateInputObjectSchema.optional(), _max: PersonalMarkMaxAggregateInputObjectSchema.optional() }).strict() as unknown as z.ZodType; - -export const PersonalMarkAggregateZodSchema = z.object({ orderBy: z.union([PersonalMarkOrderByWithRelationInputObjectSchema, PersonalMarkOrderByWithRelationInputObjectSchema.array()]).optional(), where: PersonalMarkWhereInputObjectSchema.optional(), cursor: PersonalMarkWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), _count: z.union([ z.literal(true), PersonalMarkCountAggregateInputObjectSchema ]).optional(), _min: PersonalMarkMinAggregateInputObjectSchema.optional(), _max: PersonalMarkMaxAggregateInputObjectSchema.optional() }).strict(); - -// File: groupByPersonalMark.schema.ts - -export const PersonalMarkGroupBySchema: z.ZodType = z.object({ where: PersonalMarkWhereInputObjectSchema.optional(), orderBy: z.union([PersonalMarkOrderByWithAggregationInputObjectSchema, PersonalMarkOrderByWithAggregationInputObjectSchema.array()]).optional(), having: PersonalMarkScalarWhereWithAggregatesInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), by: z.array(PersonalMarkScalarFieldEnumSchema), _count: z.union([ z.literal(true), PersonalMarkCountAggregateInputObjectSchema ]).optional(), _min: PersonalMarkMinAggregateInputObjectSchema.optional(), _max: PersonalMarkMaxAggregateInputObjectSchema.optional() }).strict() as unknown as z.ZodType; - -export const PersonalMarkGroupByZodSchema = z.object({ where: PersonalMarkWhereInputObjectSchema.optional(), orderBy: z.union([PersonalMarkOrderByWithAggregationInputObjectSchema, PersonalMarkOrderByWithAggregationInputObjectSchema.array()]).optional(), having: PersonalMarkScalarWhereWithAggregatesInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), by: z.array(PersonalMarkScalarFieldEnumSchema), _count: z.union([ z.literal(true), PersonalMarkCountAggregateInputObjectSchema ]).optional(), _min: PersonalMarkMinAggregateInputObjectSchema.optional(), _max: PersonalMarkMaxAggregateInputObjectSchema.optional() }).strict(); - -// File: findUniquePrivacyPermissions.schema.ts - -export const PrivacyPermissionsFindUniqueSchema: z.ZodType = z.object({ get select(){ return PrivacyPermissionsSelectObjectSchema.optional(); }, get include(){ return PrivacyPermissionsIncludeObjectSchema.optional(); }, where: PrivacyPermissionsWhereUniqueInputObjectSchema }).strict() as unknown as z.ZodType; - -export const PrivacyPermissionsFindUniqueZodSchema = z.object({ get select(){ return PrivacyPermissionsSelectObjectSchema.optional(); }, get include(){ return PrivacyPermissionsIncludeObjectSchema.optional(); }, where: PrivacyPermissionsWhereUniqueInputObjectSchema }).strict(); - -// File: findUniqueOrThrowPrivacyPermissions.schema.ts - -export const PrivacyPermissionsFindUniqueOrThrowSchema: z.ZodType = z.object({ get select(){ return PrivacyPermissionsSelectObjectSchema.optional(); }, get include(){ return PrivacyPermissionsIncludeObjectSchema.optional(); }, where: PrivacyPermissionsWhereUniqueInputObjectSchema }).strict() as unknown as z.ZodType; - -export const PrivacyPermissionsFindUniqueOrThrowZodSchema = z.object({ get select(){ return PrivacyPermissionsSelectObjectSchema.optional(); }, get include(){ return PrivacyPermissionsIncludeObjectSchema.optional(); }, where: PrivacyPermissionsWhereUniqueInputObjectSchema }).strict(); - -// File: findFirstPrivacyPermissions.schema.ts - -// Select schema needs to be in file to prevent circular imports -//------------------------------------------------------ - -export const PrivacyPermissionsFindFirstSelectSchema__findFirstPrivacyPermissions_schema: z.ZodType = z.object({ - id: z.boolean().optional(), - user: z.boolean().optional(), - userId: z.boolean().optional(), - profileVisible: z.boolean().optional(), - usernameVisible: z.boolean().optional(), - emailVisible: z.boolean().optional(), - phoneVisible: z.boolean().optional(), - addressVisible: z.boolean().optional(), - attendanceVisible: z.boolean().optional(), - createdAt: z.boolean().optional(), - updatedAt: z.boolean().optional() - }).strict() as unknown as z.ZodType; - -export const PrivacyPermissionsFindFirstSelectZodSchema__findFirstPrivacyPermissions_schema = z.object({ - id: z.boolean().optional(), - user: z.boolean().optional(), - userId: z.boolean().optional(), - profileVisible: z.boolean().optional(), - usernameVisible: z.boolean().optional(), - emailVisible: z.boolean().optional(), - phoneVisible: z.boolean().optional(), - addressVisible: z.boolean().optional(), - attendanceVisible: z.boolean().optional(), - createdAt: z.boolean().optional(), - updatedAt: z.boolean().optional() - }).strict(); - -export const PrivacyPermissionsFindFirstSchema: z.ZodType = z.object({ get select(){ return PrivacyPermissionsFindFirstSelectSchema__findFirstPrivacyPermissions_schema.optional(); }, get include(){ return PrivacyPermissionsIncludeObjectSchema.optional(); }, orderBy: z.union([PrivacyPermissionsOrderByWithRelationInputObjectSchema, PrivacyPermissionsOrderByWithRelationInputObjectSchema.array()]).optional(), where: PrivacyPermissionsWhereInputObjectSchema.optional(), cursor: PrivacyPermissionsWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), distinct: z.union([PrivacyPermissionsScalarFieldEnumSchema, PrivacyPermissionsScalarFieldEnumSchema.array()]).optional() }).strict() as unknown as z.ZodType; - -export const PrivacyPermissionsFindFirstZodSchema = z.object({ get select(){ return PrivacyPermissionsFindFirstSelectSchema__findFirstPrivacyPermissions_schema.optional(); }, get include(){ return PrivacyPermissionsIncludeObjectSchema.optional(); }, orderBy: z.union([PrivacyPermissionsOrderByWithRelationInputObjectSchema, PrivacyPermissionsOrderByWithRelationInputObjectSchema.array()]).optional(), where: PrivacyPermissionsWhereInputObjectSchema.optional(), cursor: PrivacyPermissionsWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), distinct: z.union([PrivacyPermissionsScalarFieldEnumSchema, PrivacyPermissionsScalarFieldEnumSchema.array()]).optional() }).strict(); - -// File: findFirstOrThrowPrivacyPermissions.schema.ts - -// Select schema needs to be in file to prevent circular imports -//------------------------------------------------------ - -export const PrivacyPermissionsFindFirstOrThrowSelectSchema__findFirstOrThrowPrivacyPermissions_schema: z.ZodType = z.object({ - id: z.boolean().optional(), - user: z.boolean().optional(), - userId: z.boolean().optional(), - profileVisible: z.boolean().optional(), - usernameVisible: z.boolean().optional(), - emailVisible: z.boolean().optional(), - phoneVisible: z.boolean().optional(), - addressVisible: z.boolean().optional(), - attendanceVisible: z.boolean().optional(), - createdAt: z.boolean().optional(), - updatedAt: z.boolean().optional() - }).strict() as unknown as z.ZodType; - -export const PrivacyPermissionsFindFirstOrThrowSelectZodSchema__findFirstOrThrowPrivacyPermissions_schema = z.object({ - id: z.boolean().optional(), - user: z.boolean().optional(), - userId: z.boolean().optional(), - profileVisible: z.boolean().optional(), - usernameVisible: z.boolean().optional(), - emailVisible: z.boolean().optional(), - phoneVisible: z.boolean().optional(), - addressVisible: z.boolean().optional(), - attendanceVisible: z.boolean().optional(), - createdAt: z.boolean().optional(), - updatedAt: z.boolean().optional() - }).strict(); - -export const PrivacyPermissionsFindFirstOrThrowSchema: z.ZodType = z.object({ get select(){ return PrivacyPermissionsFindFirstOrThrowSelectSchema__findFirstOrThrowPrivacyPermissions_schema.optional(); }, get include(){ return PrivacyPermissionsIncludeObjectSchema.optional(); }, orderBy: z.union([PrivacyPermissionsOrderByWithRelationInputObjectSchema, PrivacyPermissionsOrderByWithRelationInputObjectSchema.array()]).optional(), where: PrivacyPermissionsWhereInputObjectSchema.optional(), cursor: PrivacyPermissionsWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), distinct: z.union([PrivacyPermissionsScalarFieldEnumSchema, PrivacyPermissionsScalarFieldEnumSchema.array()]).optional() }).strict() as unknown as z.ZodType; - -export const PrivacyPermissionsFindFirstOrThrowZodSchema = z.object({ get select(){ return PrivacyPermissionsFindFirstOrThrowSelectSchema__findFirstOrThrowPrivacyPermissions_schema.optional(); }, get include(){ return PrivacyPermissionsIncludeObjectSchema.optional(); }, orderBy: z.union([PrivacyPermissionsOrderByWithRelationInputObjectSchema, PrivacyPermissionsOrderByWithRelationInputObjectSchema.array()]).optional(), where: PrivacyPermissionsWhereInputObjectSchema.optional(), cursor: PrivacyPermissionsWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), distinct: z.union([PrivacyPermissionsScalarFieldEnumSchema, PrivacyPermissionsScalarFieldEnumSchema.array()]).optional() }).strict(); - -// File: findManyPrivacyPermissions.schema.ts - -// Select schema needs to be in file to prevent circular imports -//------------------------------------------------------ - -export const PrivacyPermissionsFindManySelectSchema__findManyPrivacyPermissions_schema: z.ZodType = z.object({ - id: z.boolean().optional(), - user: z.boolean().optional(), - userId: z.boolean().optional(), - profileVisible: z.boolean().optional(), - usernameVisible: z.boolean().optional(), - emailVisible: z.boolean().optional(), - phoneVisible: z.boolean().optional(), - addressVisible: z.boolean().optional(), - attendanceVisible: z.boolean().optional(), - createdAt: z.boolean().optional(), - updatedAt: z.boolean().optional() - }).strict() as unknown as z.ZodType; - -export const PrivacyPermissionsFindManySelectZodSchema__findManyPrivacyPermissions_schema = z.object({ - id: z.boolean().optional(), - user: z.boolean().optional(), - userId: z.boolean().optional(), - profileVisible: z.boolean().optional(), - usernameVisible: z.boolean().optional(), - emailVisible: z.boolean().optional(), - phoneVisible: z.boolean().optional(), - addressVisible: z.boolean().optional(), - attendanceVisible: z.boolean().optional(), - createdAt: z.boolean().optional(), - updatedAt: z.boolean().optional() - }).strict(); - -export const PrivacyPermissionsFindManySchema: z.ZodType = z.object({ get select(){ return PrivacyPermissionsFindManySelectSchema__findManyPrivacyPermissions_schema.optional(); }, get include(){ return PrivacyPermissionsIncludeObjectSchema.optional(); }, orderBy: z.union([PrivacyPermissionsOrderByWithRelationInputObjectSchema, PrivacyPermissionsOrderByWithRelationInputObjectSchema.array()]).optional(), where: PrivacyPermissionsWhereInputObjectSchema.optional(), cursor: PrivacyPermissionsWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), distinct: z.union([PrivacyPermissionsScalarFieldEnumSchema, PrivacyPermissionsScalarFieldEnumSchema.array()]).optional() }).strict() as unknown as z.ZodType; - -export const PrivacyPermissionsFindManyZodSchema = z.object({ get select(){ return PrivacyPermissionsFindManySelectSchema__findManyPrivacyPermissions_schema.optional(); }, get include(){ return PrivacyPermissionsIncludeObjectSchema.optional(); }, orderBy: z.union([PrivacyPermissionsOrderByWithRelationInputObjectSchema, PrivacyPermissionsOrderByWithRelationInputObjectSchema.array()]).optional(), where: PrivacyPermissionsWhereInputObjectSchema.optional(), cursor: PrivacyPermissionsWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), distinct: z.union([PrivacyPermissionsScalarFieldEnumSchema, PrivacyPermissionsScalarFieldEnumSchema.array()]).optional() }).strict(); - -// File: countPrivacyPermissions.schema.ts - -export const PrivacyPermissionsCountSchema: z.ZodType = z.object({ orderBy: z.union([PrivacyPermissionsOrderByWithRelationInputObjectSchema, PrivacyPermissionsOrderByWithRelationInputObjectSchema.array()]).optional(), where: PrivacyPermissionsWhereInputObjectSchema.optional(), cursor: PrivacyPermissionsWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), select: z.union([ z.literal(true), PrivacyPermissionsCountAggregateInputObjectSchema ]).optional() }).strict() as unknown as z.ZodType; - -export const PrivacyPermissionsCountZodSchema = z.object({ orderBy: z.union([PrivacyPermissionsOrderByWithRelationInputObjectSchema, PrivacyPermissionsOrderByWithRelationInputObjectSchema.array()]).optional(), where: PrivacyPermissionsWhereInputObjectSchema.optional(), cursor: PrivacyPermissionsWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), select: z.union([ z.literal(true), PrivacyPermissionsCountAggregateInputObjectSchema ]).optional() }).strict(); - -// File: createOnePrivacyPermissions.schema.ts - -export const PrivacyPermissionsCreateOneSchema: z.ZodType = z.object({ get select(){ return PrivacyPermissionsSelectObjectSchema.optional(); }, get include(){ return PrivacyPermissionsIncludeObjectSchema.optional(); }, data: z.union([PrivacyPermissionsCreateInputObjectSchema, PrivacyPermissionsUncheckedCreateInputObjectSchema]) }).strict() as unknown as z.ZodType; - -export const PrivacyPermissionsCreateOneZodSchema = z.object({ get select(){ return PrivacyPermissionsSelectObjectSchema.optional(); }, get include(){ return PrivacyPermissionsIncludeObjectSchema.optional(); }, data: z.union([PrivacyPermissionsCreateInputObjectSchema, PrivacyPermissionsUncheckedCreateInputObjectSchema]) }).strict(); - -// File: createManyPrivacyPermissions.schema.ts - -export const PrivacyPermissionsCreateManySchema: z.ZodType = z.object({ data: z.union([ PrivacyPermissionsCreateManyInputObjectSchema, z.array(PrivacyPermissionsCreateManyInputObjectSchema) ]), skipDuplicates: z.boolean().optional() }).strict() as unknown as z.ZodType; - -export const PrivacyPermissionsCreateManyZodSchema = z.object({ data: z.union([ PrivacyPermissionsCreateManyInputObjectSchema, z.array(PrivacyPermissionsCreateManyInputObjectSchema) ]), skipDuplicates: z.boolean().optional() }).strict(); - -// File: createManyAndReturnPrivacyPermissions.schema.ts - -export const PrivacyPermissionsCreateManyAndReturnSchema: z.ZodType = z.object({ get select(){ return PrivacyPermissionsSelectObjectSchema.optional(); }, data: z.union([ PrivacyPermissionsCreateManyInputObjectSchema, z.array(PrivacyPermissionsCreateManyInputObjectSchema) ]), skipDuplicates: z.boolean().optional() }).strict() as unknown as z.ZodType; - -export const PrivacyPermissionsCreateManyAndReturnZodSchema = z.object({ get select(){ return PrivacyPermissionsSelectObjectSchema.optional(); }, data: z.union([ PrivacyPermissionsCreateManyInputObjectSchema, z.array(PrivacyPermissionsCreateManyInputObjectSchema) ]), skipDuplicates: z.boolean().optional() }).strict(); - -// File: deleteOnePrivacyPermissions.schema.ts - -export const PrivacyPermissionsDeleteOneSchema: z.ZodType = z.object({ get select(){ return PrivacyPermissionsSelectObjectSchema.optional(); }, get include(){ return PrivacyPermissionsIncludeObjectSchema.optional(); }, where: PrivacyPermissionsWhereUniqueInputObjectSchema }).strict() as unknown as z.ZodType; - -export const PrivacyPermissionsDeleteOneZodSchema = z.object({ get select(){ return PrivacyPermissionsSelectObjectSchema.optional(); }, get include(){ return PrivacyPermissionsIncludeObjectSchema.optional(); }, where: PrivacyPermissionsWhereUniqueInputObjectSchema }).strict(); - -// File: deleteManyPrivacyPermissions.schema.ts - -export const PrivacyPermissionsDeleteManySchema: z.ZodType = z.object({ where: PrivacyPermissionsWhereInputObjectSchema.optional() }).strict() as unknown as z.ZodType; - -export const PrivacyPermissionsDeleteManyZodSchema = z.object({ where: PrivacyPermissionsWhereInputObjectSchema.optional() }).strict(); - -// File: updateOnePrivacyPermissions.schema.ts - -export const PrivacyPermissionsUpdateOneSchema: z.ZodType = z.object({ get select(){ return PrivacyPermissionsSelectObjectSchema.optional(); }, get include(){ return PrivacyPermissionsIncludeObjectSchema.optional(); }, data: z.union([PrivacyPermissionsUpdateInputObjectSchema, PrivacyPermissionsUncheckedUpdateInputObjectSchema]), where: PrivacyPermissionsWhereUniqueInputObjectSchema }).strict() as unknown as z.ZodType; - -export const PrivacyPermissionsUpdateOneZodSchema = z.object({ get select(){ return PrivacyPermissionsSelectObjectSchema.optional(); }, get include(){ return PrivacyPermissionsIncludeObjectSchema.optional(); }, data: z.union([PrivacyPermissionsUpdateInputObjectSchema, PrivacyPermissionsUncheckedUpdateInputObjectSchema]), where: PrivacyPermissionsWhereUniqueInputObjectSchema }).strict(); - -// File: updateManyPrivacyPermissions.schema.ts - -export const PrivacyPermissionsUpdateManySchema: z.ZodType = z.object({ data: PrivacyPermissionsUpdateManyMutationInputObjectSchema, where: PrivacyPermissionsWhereInputObjectSchema.optional() }).strict() as unknown as z.ZodType; - -export const PrivacyPermissionsUpdateManyZodSchema = z.object({ data: PrivacyPermissionsUpdateManyMutationInputObjectSchema, where: PrivacyPermissionsWhereInputObjectSchema.optional() }).strict(); - -// File: updateManyAndReturnPrivacyPermissions.schema.ts - -export const PrivacyPermissionsUpdateManyAndReturnSchema: z.ZodType = z.object({ get select(){ return PrivacyPermissionsSelectObjectSchema.optional(); }, data: PrivacyPermissionsUpdateManyMutationInputObjectSchema, where: PrivacyPermissionsWhereInputObjectSchema.optional() }).strict() as unknown as z.ZodType; - -export const PrivacyPermissionsUpdateManyAndReturnZodSchema = z.object({ get select(){ return PrivacyPermissionsSelectObjectSchema.optional(); }, data: PrivacyPermissionsUpdateManyMutationInputObjectSchema, where: PrivacyPermissionsWhereInputObjectSchema.optional() }).strict(); - -// File: upsertOnePrivacyPermissions.schema.ts - -export const PrivacyPermissionsUpsertOneSchema: z.ZodType = z.object({ get select(){ return PrivacyPermissionsSelectObjectSchema.optional(); }, get include(){ return PrivacyPermissionsIncludeObjectSchema.optional(); }, where: PrivacyPermissionsWhereUniqueInputObjectSchema, create: z.union([ PrivacyPermissionsCreateInputObjectSchema, PrivacyPermissionsUncheckedCreateInputObjectSchema ]), update: z.union([ PrivacyPermissionsUpdateInputObjectSchema, PrivacyPermissionsUncheckedUpdateInputObjectSchema ]) }).strict() as unknown as z.ZodType; - -export const PrivacyPermissionsUpsertOneZodSchema = z.object({ get select(){ return PrivacyPermissionsSelectObjectSchema.optional(); }, get include(){ return PrivacyPermissionsIncludeObjectSchema.optional(); }, where: PrivacyPermissionsWhereUniqueInputObjectSchema, create: z.union([ PrivacyPermissionsCreateInputObjectSchema, PrivacyPermissionsUncheckedCreateInputObjectSchema ]), update: z.union([ PrivacyPermissionsUpdateInputObjectSchema, PrivacyPermissionsUncheckedUpdateInputObjectSchema ]) }).strict(); - -// File: aggregatePrivacyPermissions.schema.ts - -export const PrivacyPermissionsAggregateSchema: z.ZodType = z.object({ orderBy: z.union([PrivacyPermissionsOrderByWithRelationInputObjectSchema, PrivacyPermissionsOrderByWithRelationInputObjectSchema.array()]).optional(), where: PrivacyPermissionsWhereInputObjectSchema.optional(), cursor: PrivacyPermissionsWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), _count: z.union([ z.literal(true), PrivacyPermissionsCountAggregateInputObjectSchema ]).optional(), _min: PrivacyPermissionsMinAggregateInputObjectSchema.optional(), _max: PrivacyPermissionsMaxAggregateInputObjectSchema.optional() }).strict() as unknown as z.ZodType; - -export const PrivacyPermissionsAggregateZodSchema = z.object({ orderBy: z.union([PrivacyPermissionsOrderByWithRelationInputObjectSchema, PrivacyPermissionsOrderByWithRelationInputObjectSchema.array()]).optional(), where: PrivacyPermissionsWhereInputObjectSchema.optional(), cursor: PrivacyPermissionsWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), _count: z.union([ z.literal(true), PrivacyPermissionsCountAggregateInputObjectSchema ]).optional(), _min: PrivacyPermissionsMinAggregateInputObjectSchema.optional(), _max: PrivacyPermissionsMaxAggregateInputObjectSchema.optional() }).strict(); - -// File: groupByPrivacyPermissions.schema.ts - -export const PrivacyPermissionsGroupBySchema: z.ZodType = z.object({ where: PrivacyPermissionsWhereInputObjectSchema.optional(), orderBy: z.union([PrivacyPermissionsOrderByWithAggregationInputObjectSchema, PrivacyPermissionsOrderByWithAggregationInputObjectSchema.array()]).optional(), having: PrivacyPermissionsScalarWhereWithAggregatesInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), by: z.array(PrivacyPermissionsScalarFieldEnumSchema), _count: z.union([ z.literal(true), PrivacyPermissionsCountAggregateInputObjectSchema ]).optional(), _min: PrivacyPermissionsMinAggregateInputObjectSchema.optional(), _max: PrivacyPermissionsMaxAggregateInputObjectSchema.optional() }).strict() as unknown as z.ZodType; - -export const PrivacyPermissionsGroupByZodSchema = z.object({ where: PrivacyPermissionsWhereInputObjectSchema.optional(), orderBy: z.union([PrivacyPermissionsOrderByWithAggregationInputObjectSchema, PrivacyPermissionsOrderByWithAggregationInputObjectSchema.array()]).optional(), having: PrivacyPermissionsScalarWhereWithAggregatesInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), by: z.array(PrivacyPermissionsScalarFieldEnumSchema), _count: z.union([ z.literal(true), PrivacyPermissionsCountAggregateInputObjectSchema ]).optional(), _min: PrivacyPermissionsMinAggregateInputObjectSchema.optional(), _max: PrivacyPermissionsMaxAggregateInputObjectSchema.optional() }).strict(); - -// File: findUniqueNotificationPermissions.schema.ts - -export const NotificationPermissionsFindUniqueSchema: z.ZodType = z.object({ get select(){ return NotificationPermissionsSelectObjectSchema.optional(); }, get include(){ return NotificationPermissionsIncludeObjectSchema.optional(); }, where: NotificationPermissionsWhereUniqueInputObjectSchema }).strict() as unknown as z.ZodType; - -export const NotificationPermissionsFindUniqueZodSchema = z.object({ get select(){ return NotificationPermissionsSelectObjectSchema.optional(); }, get include(){ return NotificationPermissionsIncludeObjectSchema.optional(); }, where: NotificationPermissionsWhereUniqueInputObjectSchema }).strict(); - -// File: findUniqueOrThrowNotificationPermissions.schema.ts - -export const NotificationPermissionsFindUniqueOrThrowSchema: z.ZodType = z.object({ get select(){ return NotificationPermissionsSelectObjectSchema.optional(); }, get include(){ return NotificationPermissionsIncludeObjectSchema.optional(); }, where: NotificationPermissionsWhereUniqueInputObjectSchema }).strict() as unknown as z.ZodType; - -export const NotificationPermissionsFindUniqueOrThrowZodSchema = z.object({ get select(){ return NotificationPermissionsSelectObjectSchema.optional(); }, get include(){ return NotificationPermissionsIncludeObjectSchema.optional(); }, where: NotificationPermissionsWhereUniqueInputObjectSchema }).strict(); - -// File: findFirstNotificationPermissions.schema.ts - -// Select schema needs to be in file to prevent circular imports -//------------------------------------------------------ - -export const NotificationPermissionsFindFirstSelectSchema__findFirstNotificationPermissions_schema: z.ZodType = z.object({ - id: z.boolean().optional(), - user: z.boolean().optional(), - userId: z.boolean().optional(), - applications: z.boolean().optional(), - newArticles: z.boolean().optional(), - standardNotifications: z.boolean().optional(), - groupMessages: z.boolean().optional(), - markRulesUpdates: z.boolean().optional(), - receipts: z.boolean().optional(), - registrationByAdministrator: z.boolean().optional(), - registrationStart: z.boolean().optional(), - createdAt: z.boolean().optional(), - updatedAt: z.boolean().optional() - }).strict() as unknown as z.ZodType; - -export const NotificationPermissionsFindFirstSelectZodSchema__findFirstNotificationPermissions_schema = z.object({ - id: z.boolean().optional(), - user: z.boolean().optional(), - userId: z.boolean().optional(), - applications: z.boolean().optional(), - newArticles: z.boolean().optional(), - standardNotifications: z.boolean().optional(), - groupMessages: z.boolean().optional(), - markRulesUpdates: z.boolean().optional(), - receipts: z.boolean().optional(), - registrationByAdministrator: z.boolean().optional(), - registrationStart: z.boolean().optional(), - createdAt: z.boolean().optional(), - updatedAt: z.boolean().optional() - }).strict(); - -export const NotificationPermissionsFindFirstSchema: z.ZodType = z.object({ get select(){ return NotificationPermissionsFindFirstSelectSchema__findFirstNotificationPermissions_schema.optional(); }, get include(){ return NotificationPermissionsIncludeObjectSchema.optional(); }, orderBy: z.union([NotificationPermissionsOrderByWithRelationInputObjectSchema, NotificationPermissionsOrderByWithRelationInputObjectSchema.array()]).optional(), where: NotificationPermissionsWhereInputObjectSchema.optional(), cursor: NotificationPermissionsWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), distinct: z.union([NotificationPermissionsScalarFieldEnumSchema, NotificationPermissionsScalarFieldEnumSchema.array()]).optional() }).strict() as unknown as z.ZodType; - -export const NotificationPermissionsFindFirstZodSchema = z.object({ get select(){ return NotificationPermissionsFindFirstSelectSchema__findFirstNotificationPermissions_schema.optional(); }, get include(){ return NotificationPermissionsIncludeObjectSchema.optional(); }, orderBy: z.union([NotificationPermissionsOrderByWithRelationInputObjectSchema, NotificationPermissionsOrderByWithRelationInputObjectSchema.array()]).optional(), where: NotificationPermissionsWhereInputObjectSchema.optional(), cursor: NotificationPermissionsWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), distinct: z.union([NotificationPermissionsScalarFieldEnumSchema, NotificationPermissionsScalarFieldEnumSchema.array()]).optional() }).strict(); - -// File: findFirstOrThrowNotificationPermissions.schema.ts - -// Select schema needs to be in file to prevent circular imports -//------------------------------------------------------ - -export const NotificationPermissionsFindFirstOrThrowSelectSchema__findFirstOrThrowNotificationPermissions_schema: z.ZodType = z.object({ - id: z.boolean().optional(), - user: z.boolean().optional(), - userId: z.boolean().optional(), - applications: z.boolean().optional(), - newArticles: z.boolean().optional(), - standardNotifications: z.boolean().optional(), - groupMessages: z.boolean().optional(), - markRulesUpdates: z.boolean().optional(), - receipts: z.boolean().optional(), - registrationByAdministrator: z.boolean().optional(), - registrationStart: z.boolean().optional(), - createdAt: z.boolean().optional(), - updatedAt: z.boolean().optional() - }).strict() as unknown as z.ZodType; - -export const NotificationPermissionsFindFirstOrThrowSelectZodSchema__findFirstOrThrowNotificationPermissions_schema = z.object({ - id: z.boolean().optional(), - user: z.boolean().optional(), - userId: z.boolean().optional(), - applications: z.boolean().optional(), - newArticles: z.boolean().optional(), - standardNotifications: z.boolean().optional(), - groupMessages: z.boolean().optional(), - markRulesUpdates: z.boolean().optional(), - receipts: z.boolean().optional(), - registrationByAdministrator: z.boolean().optional(), - registrationStart: z.boolean().optional(), - createdAt: z.boolean().optional(), - updatedAt: z.boolean().optional() - }).strict(); - -export const NotificationPermissionsFindFirstOrThrowSchema: z.ZodType = z.object({ get select(){ return NotificationPermissionsFindFirstOrThrowSelectSchema__findFirstOrThrowNotificationPermissions_schema.optional(); }, get include(){ return NotificationPermissionsIncludeObjectSchema.optional(); }, orderBy: z.union([NotificationPermissionsOrderByWithRelationInputObjectSchema, NotificationPermissionsOrderByWithRelationInputObjectSchema.array()]).optional(), where: NotificationPermissionsWhereInputObjectSchema.optional(), cursor: NotificationPermissionsWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), distinct: z.union([NotificationPermissionsScalarFieldEnumSchema, NotificationPermissionsScalarFieldEnumSchema.array()]).optional() }).strict() as unknown as z.ZodType; - -export const NotificationPermissionsFindFirstOrThrowZodSchema = z.object({ get select(){ return NotificationPermissionsFindFirstOrThrowSelectSchema__findFirstOrThrowNotificationPermissions_schema.optional(); }, get include(){ return NotificationPermissionsIncludeObjectSchema.optional(); }, orderBy: z.union([NotificationPermissionsOrderByWithRelationInputObjectSchema, NotificationPermissionsOrderByWithRelationInputObjectSchema.array()]).optional(), where: NotificationPermissionsWhereInputObjectSchema.optional(), cursor: NotificationPermissionsWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), distinct: z.union([NotificationPermissionsScalarFieldEnumSchema, NotificationPermissionsScalarFieldEnumSchema.array()]).optional() }).strict(); - -// File: findManyNotificationPermissions.schema.ts - -// Select schema needs to be in file to prevent circular imports -//------------------------------------------------------ - -export const NotificationPermissionsFindManySelectSchema__findManyNotificationPermissions_schema: z.ZodType = z.object({ - id: z.boolean().optional(), - user: z.boolean().optional(), - userId: z.boolean().optional(), - applications: z.boolean().optional(), - newArticles: z.boolean().optional(), - standardNotifications: z.boolean().optional(), - groupMessages: z.boolean().optional(), - markRulesUpdates: z.boolean().optional(), - receipts: z.boolean().optional(), - registrationByAdministrator: z.boolean().optional(), - registrationStart: z.boolean().optional(), - createdAt: z.boolean().optional(), - updatedAt: z.boolean().optional() - }).strict() as unknown as z.ZodType; - -export const NotificationPermissionsFindManySelectZodSchema__findManyNotificationPermissions_schema = z.object({ - id: z.boolean().optional(), - user: z.boolean().optional(), - userId: z.boolean().optional(), - applications: z.boolean().optional(), - newArticles: z.boolean().optional(), - standardNotifications: z.boolean().optional(), - groupMessages: z.boolean().optional(), - markRulesUpdates: z.boolean().optional(), - receipts: z.boolean().optional(), - registrationByAdministrator: z.boolean().optional(), - registrationStart: z.boolean().optional(), - createdAt: z.boolean().optional(), - updatedAt: z.boolean().optional() - }).strict(); - -export const NotificationPermissionsFindManySchema: z.ZodType = z.object({ get select(){ return NotificationPermissionsFindManySelectSchema__findManyNotificationPermissions_schema.optional(); }, get include(){ return NotificationPermissionsIncludeObjectSchema.optional(); }, orderBy: z.union([NotificationPermissionsOrderByWithRelationInputObjectSchema, NotificationPermissionsOrderByWithRelationInputObjectSchema.array()]).optional(), where: NotificationPermissionsWhereInputObjectSchema.optional(), cursor: NotificationPermissionsWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), distinct: z.union([NotificationPermissionsScalarFieldEnumSchema, NotificationPermissionsScalarFieldEnumSchema.array()]).optional() }).strict() as unknown as z.ZodType; - -export const NotificationPermissionsFindManyZodSchema = z.object({ get select(){ return NotificationPermissionsFindManySelectSchema__findManyNotificationPermissions_schema.optional(); }, get include(){ return NotificationPermissionsIncludeObjectSchema.optional(); }, orderBy: z.union([NotificationPermissionsOrderByWithRelationInputObjectSchema, NotificationPermissionsOrderByWithRelationInputObjectSchema.array()]).optional(), where: NotificationPermissionsWhereInputObjectSchema.optional(), cursor: NotificationPermissionsWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), distinct: z.union([NotificationPermissionsScalarFieldEnumSchema, NotificationPermissionsScalarFieldEnumSchema.array()]).optional() }).strict(); - -// File: countNotificationPermissions.schema.ts - -export const NotificationPermissionsCountSchema: z.ZodType = z.object({ orderBy: z.union([NotificationPermissionsOrderByWithRelationInputObjectSchema, NotificationPermissionsOrderByWithRelationInputObjectSchema.array()]).optional(), where: NotificationPermissionsWhereInputObjectSchema.optional(), cursor: NotificationPermissionsWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), select: z.union([ z.literal(true), NotificationPermissionsCountAggregateInputObjectSchema ]).optional() }).strict() as unknown as z.ZodType; - -export const NotificationPermissionsCountZodSchema = z.object({ orderBy: z.union([NotificationPermissionsOrderByWithRelationInputObjectSchema, NotificationPermissionsOrderByWithRelationInputObjectSchema.array()]).optional(), where: NotificationPermissionsWhereInputObjectSchema.optional(), cursor: NotificationPermissionsWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), select: z.union([ z.literal(true), NotificationPermissionsCountAggregateInputObjectSchema ]).optional() }).strict(); - -// File: createOneNotificationPermissions.schema.ts - -export const NotificationPermissionsCreateOneSchema: z.ZodType = z.object({ get select(){ return NotificationPermissionsSelectObjectSchema.optional(); }, get include(){ return NotificationPermissionsIncludeObjectSchema.optional(); }, data: z.union([NotificationPermissionsCreateInputObjectSchema, NotificationPermissionsUncheckedCreateInputObjectSchema]) }).strict() as unknown as z.ZodType; - -export const NotificationPermissionsCreateOneZodSchema = z.object({ get select(){ return NotificationPermissionsSelectObjectSchema.optional(); }, get include(){ return NotificationPermissionsIncludeObjectSchema.optional(); }, data: z.union([NotificationPermissionsCreateInputObjectSchema, NotificationPermissionsUncheckedCreateInputObjectSchema]) }).strict(); - -// File: createManyNotificationPermissions.schema.ts - -export const NotificationPermissionsCreateManySchema: z.ZodType = z.object({ data: z.union([ NotificationPermissionsCreateManyInputObjectSchema, z.array(NotificationPermissionsCreateManyInputObjectSchema) ]), skipDuplicates: z.boolean().optional() }).strict() as unknown as z.ZodType; - -export const NotificationPermissionsCreateManyZodSchema = z.object({ data: z.union([ NotificationPermissionsCreateManyInputObjectSchema, z.array(NotificationPermissionsCreateManyInputObjectSchema) ]), skipDuplicates: z.boolean().optional() }).strict(); - -// File: createManyAndReturnNotificationPermissions.schema.ts - -export const NotificationPermissionsCreateManyAndReturnSchema: z.ZodType = z.object({ get select(){ return NotificationPermissionsSelectObjectSchema.optional(); }, data: z.union([ NotificationPermissionsCreateManyInputObjectSchema, z.array(NotificationPermissionsCreateManyInputObjectSchema) ]), skipDuplicates: z.boolean().optional() }).strict() as unknown as z.ZodType; - -export const NotificationPermissionsCreateManyAndReturnZodSchema = z.object({ get select(){ return NotificationPermissionsSelectObjectSchema.optional(); }, data: z.union([ NotificationPermissionsCreateManyInputObjectSchema, z.array(NotificationPermissionsCreateManyInputObjectSchema) ]), skipDuplicates: z.boolean().optional() }).strict(); - -// File: deleteOneNotificationPermissions.schema.ts - -export const NotificationPermissionsDeleteOneSchema: z.ZodType = z.object({ get select(){ return NotificationPermissionsSelectObjectSchema.optional(); }, get include(){ return NotificationPermissionsIncludeObjectSchema.optional(); }, where: NotificationPermissionsWhereUniqueInputObjectSchema }).strict() as unknown as z.ZodType; - -export const NotificationPermissionsDeleteOneZodSchema = z.object({ get select(){ return NotificationPermissionsSelectObjectSchema.optional(); }, get include(){ return NotificationPermissionsIncludeObjectSchema.optional(); }, where: NotificationPermissionsWhereUniqueInputObjectSchema }).strict(); - -// File: deleteManyNotificationPermissions.schema.ts - -export const NotificationPermissionsDeleteManySchema: z.ZodType = z.object({ where: NotificationPermissionsWhereInputObjectSchema.optional() }).strict() as unknown as z.ZodType; - -export const NotificationPermissionsDeleteManyZodSchema = z.object({ where: NotificationPermissionsWhereInputObjectSchema.optional() }).strict(); - -// File: updateOneNotificationPermissions.schema.ts - -export const NotificationPermissionsUpdateOneSchema: z.ZodType = z.object({ get select(){ return NotificationPermissionsSelectObjectSchema.optional(); }, get include(){ return NotificationPermissionsIncludeObjectSchema.optional(); }, data: z.union([NotificationPermissionsUpdateInputObjectSchema, NotificationPermissionsUncheckedUpdateInputObjectSchema]), where: NotificationPermissionsWhereUniqueInputObjectSchema }).strict() as unknown as z.ZodType; - -export const NotificationPermissionsUpdateOneZodSchema = z.object({ get select(){ return NotificationPermissionsSelectObjectSchema.optional(); }, get include(){ return NotificationPermissionsIncludeObjectSchema.optional(); }, data: z.union([NotificationPermissionsUpdateInputObjectSchema, NotificationPermissionsUncheckedUpdateInputObjectSchema]), where: NotificationPermissionsWhereUniqueInputObjectSchema }).strict(); - -// File: updateManyNotificationPermissions.schema.ts - -export const NotificationPermissionsUpdateManySchema: z.ZodType = z.object({ data: NotificationPermissionsUpdateManyMutationInputObjectSchema, where: NotificationPermissionsWhereInputObjectSchema.optional() }).strict() as unknown as z.ZodType; - -export const NotificationPermissionsUpdateManyZodSchema = z.object({ data: NotificationPermissionsUpdateManyMutationInputObjectSchema, where: NotificationPermissionsWhereInputObjectSchema.optional() }).strict(); - -// File: updateManyAndReturnNotificationPermissions.schema.ts - -export const NotificationPermissionsUpdateManyAndReturnSchema: z.ZodType = z.object({ get select(){ return NotificationPermissionsSelectObjectSchema.optional(); }, data: NotificationPermissionsUpdateManyMutationInputObjectSchema, where: NotificationPermissionsWhereInputObjectSchema.optional() }).strict() as unknown as z.ZodType; - -export const NotificationPermissionsUpdateManyAndReturnZodSchema = z.object({ get select(){ return NotificationPermissionsSelectObjectSchema.optional(); }, data: NotificationPermissionsUpdateManyMutationInputObjectSchema, where: NotificationPermissionsWhereInputObjectSchema.optional() }).strict(); - -// File: upsertOneNotificationPermissions.schema.ts - -export const NotificationPermissionsUpsertOneSchema: z.ZodType = z.object({ get select(){ return NotificationPermissionsSelectObjectSchema.optional(); }, get include(){ return NotificationPermissionsIncludeObjectSchema.optional(); }, where: NotificationPermissionsWhereUniqueInputObjectSchema, create: z.union([ NotificationPermissionsCreateInputObjectSchema, NotificationPermissionsUncheckedCreateInputObjectSchema ]), update: z.union([ NotificationPermissionsUpdateInputObjectSchema, NotificationPermissionsUncheckedUpdateInputObjectSchema ]) }).strict() as unknown as z.ZodType; - -export const NotificationPermissionsUpsertOneZodSchema = z.object({ get select(){ return NotificationPermissionsSelectObjectSchema.optional(); }, get include(){ return NotificationPermissionsIncludeObjectSchema.optional(); }, where: NotificationPermissionsWhereUniqueInputObjectSchema, create: z.union([ NotificationPermissionsCreateInputObjectSchema, NotificationPermissionsUncheckedCreateInputObjectSchema ]), update: z.union([ NotificationPermissionsUpdateInputObjectSchema, NotificationPermissionsUncheckedUpdateInputObjectSchema ]) }).strict(); - -// File: aggregateNotificationPermissions.schema.ts - -export const NotificationPermissionsAggregateSchema: z.ZodType = z.object({ orderBy: z.union([NotificationPermissionsOrderByWithRelationInputObjectSchema, NotificationPermissionsOrderByWithRelationInputObjectSchema.array()]).optional(), where: NotificationPermissionsWhereInputObjectSchema.optional(), cursor: NotificationPermissionsWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), _count: z.union([ z.literal(true), NotificationPermissionsCountAggregateInputObjectSchema ]).optional(), _min: NotificationPermissionsMinAggregateInputObjectSchema.optional(), _max: NotificationPermissionsMaxAggregateInputObjectSchema.optional() }).strict() as unknown as z.ZodType; - -export const NotificationPermissionsAggregateZodSchema = z.object({ orderBy: z.union([NotificationPermissionsOrderByWithRelationInputObjectSchema, NotificationPermissionsOrderByWithRelationInputObjectSchema.array()]).optional(), where: NotificationPermissionsWhereInputObjectSchema.optional(), cursor: NotificationPermissionsWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), _count: z.union([ z.literal(true), NotificationPermissionsCountAggregateInputObjectSchema ]).optional(), _min: NotificationPermissionsMinAggregateInputObjectSchema.optional(), _max: NotificationPermissionsMaxAggregateInputObjectSchema.optional() }).strict(); - -// File: groupByNotificationPermissions.schema.ts - -export const NotificationPermissionsGroupBySchema: z.ZodType = z.object({ where: NotificationPermissionsWhereInputObjectSchema.optional(), orderBy: z.union([NotificationPermissionsOrderByWithAggregationInputObjectSchema, NotificationPermissionsOrderByWithAggregationInputObjectSchema.array()]).optional(), having: NotificationPermissionsScalarWhereWithAggregatesInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), by: z.array(NotificationPermissionsScalarFieldEnumSchema), _count: z.union([ z.literal(true), NotificationPermissionsCountAggregateInputObjectSchema ]).optional(), _min: NotificationPermissionsMinAggregateInputObjectSchema.optional(), _max: NotificationPermissionsMaxAggregateInputObjectSchema.optional() }).strict() as unknown as z.ZodType; - -export const NotificationPermissionsGroupByZodSchema = z.object({ where: NotificationPermissionsWhereInputObjectSchema.optional(), orderBy: z.union([NotificationPermissionsOrderByWithAggregationInputObjectSchema, NotificationPermissionsOrderByWithAggregationInputObjectSchema.array()]).optional(), having: NotificationPermissionsScalarWhereWithAggregatesInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), by: z.array(NotificationPermissionsScalarFieldEnumSchema), _count: z.union([ z.literal(true), NotificationPermissionsCountAggregateInputObjectSchema ]).optional(), _min: NotificationPermissionsMinAggregateInputObjectSchema.optional(), _max: NotificationPermissionsMaxAggregateInputObjectSchema.optional() }).strict(); - -// File: findUniqueEventHostingGroup.schema.ts - -export const EventHostingGroupFindUniqueSchema: z.ZodType = z.object({ get select(){ return EventHostingGroupSelectObjectSchema.optional(); }, get include(){ return EventHostingGroupIncludeObjectSchema.optional(); }, where: EventHostingGroupWhereUniqueInputObjectSchema }).strict() as unknown as z.ZodType; - -export const EventHostingGroupFindUniqueZodSchema = z.object({ get select(){ return EventHostingGroupSelectObjectSchema.optional(); }, get include(){ return EventHostingGroupIncludeObjectSchema.optional(); }, where: EventHostingGroupWhereUniqueInputObjectSchema }).strict(); - -// File: findUniqueOrThrowEventHostingGroup.schema.ts - -export const EventHostingGroupFindUniqueOrThrowSchema: z.ZodType = z.object({ get select(){ return EventHostingGroupSelectObjectSchema.optional(); }, get include(){ return EventHostingGroupIncludeObjectSchema.optional(); }, where: EventHostingGroupWhereUniqueInputObjectSchema }).strict() as unknown as z.ZodType; - -export const EventHostingGroupFindUniqueOrThrowZodSchema = z.object({ get select(){ return EventHostingGroupSelectObjectSchema.optional(); }, get include(){ return EventHostingGroupIncludeObjectSchema.optional(); }, where: EventHostingGroupWhereUniqueInputObjectSchema }).strict(); - -// File: findFirstEventHostingGroup.schema.ts - -// Select schema needs to be in file to prevent circular imports -//------------------------------------------------------ - -export const EventHostingGroupFindFirstSelectSchema__findFirstEventHostingGroup_schema: z.ZodType = z.object({ - groupId: z.boolean().optional(), - eventId: z.boolean().optional(), - group: z.boolean().optional(), - event: z.boolean().optional() - }).strict() as unknown as z.ZodType; - -export const EventHostingGroupFindFirstSelectZodSchema__findFirstEventHostingGroup_schema = z.object({ - groupId: z.boolean().optional(), - eventId: z.boolean().optional(), - group: z.boolean().optional(), - event: z.boolean().optional() - }).strict(); - -export const EventHostingGroupFindFirstSchema: z.ZodType = z.object({ get select(){ return EventHostingGroupFindFirstSelectSchema__findFirstEventHostingGroup_schema.optional(); }, get include(){ return EventHostingGroupIncludeObjectSchema.optional(); }, orderBy: z.union([EventHostingGroupOrderByWithRelationInputObjectSchema, EventHostingGroupOrderByWithRelationInputObjectSchema.array()]).optional(), where: EventHostingGroupWhereInputObjectSchema.optional(), cursor: EventHostingGroupWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), distinct: z.union([EventHostingGroupScalarFieldEnumSchema, EventHostingGroupScalarFieldEnumSchema.array()]).optional() }).strict() as unknown as z.ZodType; - -export const EventHostingGroupFindFirstZodSchema = z.object({ get select(){ return EventHostingGroupFindFirstSelectSchema__findFirstEventHostingGroup_schema.optional(); }, get include(){ return EventHostingGroupIncludeObjectSchema.optional(); }, orderBy: z.union([EventHostingGroupOrderByWithRelationInputObjectSchema, EventHostingGroupOrderByWithRelationInputObjectSchema.array()]).optional(), where: EventHostingGroupWhereInputObjectSchema.optional(), cursor: EventHostingGroupWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), distinct: z.union([EventHostingGroupScalarFieldEnumSchema, EventHostingGroupScalarFieldEnumSchema.array()]).optional() }).strict(); - -// File: findFirstOrThrowEventHostingGroup.schema.ts - -// Select schema needs to be in file to prevent circular imports -//------------------------------------------------------ - -export const EventHostingGroupFindFirstOrThrowSelectSchema__findFirstOrThrowEventHostingGroup_schema: z.ZodType = z.object({ - groupId: z.boolean().optional(), - eventId: z.boolean().optional(), - group: z.boolean().optional(), - event: z.boolean().optional() - }).strict() as unknown as z.ZodType; - -export const EventHostingGroupFindFirstOrThrowSelectZodSchema__findFirstOrThrowEventHostingGroup_schema = z.object({ - groupId: z.boolean().optional(), - eventId: z.boolean().optional(), - group: z.boolean().optional(), - event: z.boolean().optional() - }).strict(); - -export const EventHostingGroupFindFirstOrThrowSchema: z.ZodType = z.object({ get select(){ return EventHostingGroupFindFirstOrThrowSelectSchema__findFirstOrThrowEventHostingGroup_schema.optional(); }, get include(){ return EventHostingGroupIncludeObjectSchema.optional(); }, orderBy: z.union([EventHostingGroupOrderByWithRelationInputObjectSchema, EventHostingGroupOrderByWithRelationInputObjectSchema.array()]).optional(), where: EventHostingGroupWhereInputObjectSchema.optional(), cursor: EventHostingGroupWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), distinct: z.union([EventHostingGroupScalarFieldEnumSchema, EventHostingGroupScalarFieldEnumSchema.array()]).optional() }).strict() as unknown as z.ZodType; - -export const EventHostingGroupFindFirstOrThrowZodSchema = z.object({ get select(){ return EventHostingGroupFindFirstOrThrowSelectSchema__findFirstOrThrowEventHostingGroup_schema.optional(); }, get include(){ return EventHostingGroupIncludeObjectSchema.optional(); }, orderBy: z.union([EventHostingGroupOrderByWithRelationInputObjectSchema, EventHostingGroupOrderByWithRelationInputObjectSchema.array()]).optional(), where: EventHostingGroupWhereInputObjectSchema.optional(), cursor: EventHostingGroupWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), distinct: z.union([EventHostingGroupScalarFieldEnumSchema, EventHostingGroupScalarFieldEnumSchema.array()]).optional() }).strict(); - -// File: findManyEventHostingGroup.schema.ts - -// Select schema needs to be in file to prevent circular imports -//------------------------------------------------------ - -export const EventHostingGroupFindManySelectSchema__findManyEventHostingGroup_schema: z.ZodType = z.object({ - groupId: z.boolean().optional(), - eventId: z.boolean().optional(), - group: z.boolean().optional(), - event: z.boolean().optional() - }).strict() as unknown as z.ZodType; - -export const EventHostingGroupFindManySelectZodSchema__findManyEventHostingGroup_schema = z.object({ - groupId: z.boolean().optional(), - eventId: z.boolean().optional(), - group: z.boolean().optional(), - event: z.boolean().optional() - }).strict(); - -export const EventHostingGroupFindManySchema: z.ZodType = z.object({ get select(){ return EventHostingGroupFindManySelectSchema__findManyEventHostingGroup_schema.optional(); }, get include(){ return EventHostingGroupIncludeObjectSchema.optional(); }, orderBy: z.union([EventHostingGroupOrderByWithRelationInputObjectSchema, EventHostingGroupOrderByWithRelationInputObjectSchema.array()]).optional(), where: EventHostingGroupWhereInputObjectSchema.optional(), cursor: EventHostingGroupWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), distinct: z.union([EventHostingGroupScalarFieldEnumSchema, EventHostingGroupScalarFieldEnumSchema.array()]).optional() }).strict() as unknown as z.ZodType; - -export const EventHostingGroupFindManyZodSchema = z.object({ get select(){ return EventHostingGroupFindManySelectSchema__findManyEventHostingGroup_schema.optional(); }, get include(){ return EventHostingGroupIncludeObjectSchema.optional(); }, orderBy: z.union([EventHostingGroupOrderByWithRelationInputObjectSchema, EventHostingGroupOrderByWithRelationInputObjectSchema.array()]).optional(), where: EventHostingGroupWhereInputObjectSchema.optional(), cursor: EventHostingGroupWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), distinct: z.union([EventHostingGroupScalarFieldEnumSchema, EventHostingGroupScalarFieldEnumSchema.array()]).optional() }).strict(); - -// File: countEventHostingGroup.schema.ts - -export const EventHostingGroupCountSchema: z.ZodType = z.object({ orderBy: z.union([EventHostingGroupOrderByWithRelationInputObjectSchema, EventHostingGroupOrderByWithRelationInputObjectSchema.array()]).optional(), where: EventHostingGroupWhereInputObjectSchema.optional(), cursor: EventHostingGroupWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), select: z.union([ z.literal(true), EventHostingGroupCountAggregateInputObjectSchema ]).optional() }).strict() as unknown as z.ZodType; - -export const EventHostingGroupCountZodSchema = z.object({ orderBy: z.union([EventHostingGroupOrderByWithRelationInputObjectSchema, EventHostingGroupOrderByWithRelationInputObjectSchema.array()]).optional(), where: EventHostingGroupWhereInputObjectSchema.optional(), cursor: EventHostingGroupWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), select: z.union([ z.literal(true), EventHostingGroupCountAggregateInputObjectSchema ]).optional() }).strict(); - -// File: createOneEventHostingGroup.schema.ts - -export const EventHostingGroupCreateOneSchema: z.ZodType = z.object({ get select(){ return EventHostingGroupSelectObjectSchema.optional(); }, get include(){ return EventHostingGroupIncludeObjectSchema.optional(); }, data: z.union([EventHostingGroupCreateInputObjectSchema, EventHostingGroupUncheckedCreateInputObjectSchema]) }).strict() as unknown as z.ZodType; - -export const EventHostingGroupCreateOneZodSchema = z.object({ get select(){ return EventHostingGroupSelectObjectSchema.optional(); }, get include(){ return EventHostingGroupIncludeObjectSchema.optional(); }, data: z.union([EventHostingGroupCreateInputObjectSchema, EventHostingGroupUncheckedCreateInputObjectSchema]) }).strict(); - -// File: createManyEventHostingGroup.schema.ts - -export const EventHostingGroupCreateManySchema: z.ZodType = z.object({ data: z.union([ EventHostingGroupCreateManyInputObjectSchema, z.array(EventHostingGroupCreateManyInputObjectSchema) ]), skipDuplicates: z.boolean().optional() }).strict() as unknown as z.ZodType; - -export const EventHostingGroupCreateManyZodSchema = z.object({ data: z.union([ EventHostingGroupCreateManyInputObjectSchema, z.array(EventHostingGroupCreateManyInputObjectSchema) ]), skipDuplicates: z.boolean().optional() }).strict(); - -// File: createManyAndReturnEventHostingGroup.schema.ts - -export const EventHostingGroupCreateManyAndReturnSchema: z.ZodType = z.object({ get select(){ return EventHostingGroupSelectObjectSchema.optional(); }, data: z.union([ EventHostingGroupCreateManyInputObjectSchema, z.array(EventHostingGroupCreateManyInputObjectSchema) ]), skipDuplicates: z.boolean().optional() }).strict() as unknown as z.ZodType; - -export const EventHostingGroupCreateManyAndReturnZodSchema = z.object({ get select(){ return EventHostingGroupSelectObjectSchema.optional(); }, data: z.union([ EventHostingGroupCreateManyInputObjectSchema, z.array(EventHostingGroupCreateManyInputObjectSchema) ]), skipDuplicates: z.boolean().optional() }).strict(); - -// File: deleteOneEventHostingGroup.schema.ts - -export const EventHostingGroupDeleteOneSchema: z.ZodType = z.object({ get select(){ return EventHostingGroupSelectObjectSchema.optional(); }, get include(){ return EventHostingGroupIncludeObjectSchema.optional(); }, where: EventHostingGroupWhereUniqueInputObjectSchema }).strict() as unknown as z.ZodType; - -export const EventHostingGroupDeleteOneZodSchema = z.object({ get select(){ return EventHostingGroupSelectObjectSchema.optional(); }, get include(){ return EventHostingGroupIncludeObjectSchema.optional(); }, where: EventHostingGroupWhereUniqueInputObjectSchema }).strict(); - -// File: deleteManyEventHostingGroup.schema.ts - -export const EventHostingGroupDeleteManySchema: z.ZodType = z.object({ where: EventHostingGroupWhereInputObjectSchema.optional() }).strict() as unknown as z.ZodType; - -export const EventHostingGroupDeleteManyZodSchema = z.object({ where: EventHostingGroupWhereInputObjectSchema.optional() }).strict(); - -// File: updateOneEventHostingGroup.schema.ts - -export const EventHostingGroupUpdateOneSchema: z.ZodType = z.object({ get select(){ return EventHostingGroupSelectObjectSchema.optional(); }, get include(){ return EventHostingGroupIncludeObjectSchema.optional(); }, data: z.union([EventHostingGroupUpdateInputObjectSchema, EventHostingGroupUncheckedUpdateInputObjectSchema]), where: EventHostingGroupWhereUniqueInputObjectSchema }).strict() as unknown as z.ZodType; - -export const EventHostingGroupUpdateOneZodSchema = z.object({ get select(){ return EventHostingGroupSelectObjectSchema.optional(); }, get include(){ return EventHostingGroupIncludeObjectSchema.optional(); }, data: z.union([EventHostingGroupUpdateInputObjectSchema, EventHostingGroupUncheckedUpdateInputObjectSchema]), where: EventHostingGroupWhereUniqueInputObjectSchema }).strict(); - -// File: updateManyEventHostingGroup.schema.ts - -export const EventHostingGroupUpdateManySchema: z.ZodType = z.object({ data: EventHostingGroupUpdateManyMutationInputObjectSchema, where: EventHostingGroupWhereInputObjectSchema.optional() }).strict() as unknown as z.ZodType; - -export const EventHostingGroupUpdateManyZodSchema = z.object({ data: EventHostingGroupUpdateManyMutationInputObjectSchema, where: EventHostingGroupWhereInputObjectSchema.optional() }).strict(); - -// File: updateManyAndReturnEventHostingGroup.schema.ts - -export const EventHostingGroupUpdateManyAndReturnSchema: z.ZodType = z.object({ get select(){ return EventHostingGroupSelectObjectSchema.optional(); }, data: EventHostingGroupUpdateManyMutationInputObjectSchema, where: EventHostingGroupWhereInputObjectSchema.optional() }).strict() as unknown as z.ZodType; - -export const EventHostingGroupUpdateManyAndReturnZodSchema = z.object({ get select(){ return EventHostingGroupSelectObjectSchema.optional(); }, data: EventHostingGroupUpdateManyMutationInputObjectSchema, where: EventHostingGroupWhereInputObjectSchema.optional() }).strict(); - -// File: upsertOneEventHostingGroup.schema.ts - -export const EventHostingGroupUpsertOneSchema: z.ZodType = z.object({ get select(){ return EventHostingGroupSelectObjectSchema.optional(); }, get include(){ return EventHostingGroupIncludeObjectSchema.optional(); }, where: EventHostingGroupWhereUniqueInputObjectSchema, create: z.union([ EventHostingGroupCreateInputObjectSchema, EventHostingGroupUncheckedCreateInputObjectSchema ]), update: z.union([ EventHostingGroupUpdateInputObjectSchema, EventHostingGroupUncheckedUpdateInputObjectSchema ]) }).strict() as unknown as z.ZodType; - -export const EventHostingGroupUpsertOneZodSchema = z.object({ get select(){ return EventHostingGroupSelectObjectSchema.optional(); }, get include(){ return EventHostingGroupIncludeObjectSchema.optional(); }, where: EventHostingGroupWhereUniqueInputObjectSchema, create: z.union([ EventHostingGroupCreateInputObjectSchema, EventHostingGroupUncheckedCreateInputObjectSchema ]), update: z.union([ EventHostingGroupUpdateInputObjectSchema, EventHostingGroupUncheckedUpdateInputObjectSchema ]) }).strict(); - -// File: aggregateEventHostingGroup.schema.ts - -export const EventHostingGroupAggregateSchema: z.ZodType = z.object({ orderBy: z.union([EventHostingGroupOrderByWithRelationInputObjectSchema, EventHostingGroupOrderByWithRelationInputObjectSchema.array()]).optional(), where: EventHostingGroupWhereInputObjectSchema.optional(), cursor: EventHostingGroupWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), _count: z.union([ z.literal(true), EventHostingGroupCountAggregateInputObjectSchema ]).optional(), _min: EventHostingGroupMinAggregateInputObjectSchema.optional(), _max: EventHostingGroupMaxAggregateInputObjectSchema.optional() }).strict() as unknown as z.ZodType; - -export const EventHostingGroupAggregateZodSchema = z.object({ orderBy: z.union([EventHostingGroupOrderByWithRelationInputObjectSchema, EventHostingGroupOrderByWithRelationInputObjectSchema.array()]).optional(), where: EventHostingGroupWhereInputObjectSchema.optional(), cursor: EventHostingGroupWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), _count: z.union([ z.literal(true), EventHostingGroupCountAggregateInputObjectSchema ]).optional(), _min: EventHostingGroupMinAggregateInputObjectSchema.optional(), _max: EventHostingGroupMaxAggregateInputObjectSchema.optional() }).strict(); - -// File: groupByEventHostingGroup.schema.ts - -export const EventHostingGroupGroupBySchema: z.ZodType = z.object({ where: EventHostingGroupWhereInputObjectSchema.optional(), orderBy: z.union([EventHostingGroupOrderByWithAggregationInputObjectSchema, EventHostingGroupOrderByWithAggregationInputObjectSchema.array()]).optional(), having: EventHostingGroupScalarWhereWithAggregatesInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), by: z.array(EventHostingGroupScalarFieldEnumSchema), _count: z.union([ z.literal(true), EventHostingGroupCountAggregateInputObjectSchema ]).optional(), _min: EventHostingGroupMinAggregateInputObjectSchema.optional(), _max: EventHostingGroupMaxAggregateInputObjectSchema.optional() }).strict() as unknown as z.ZodType; - -export const EventHostingGroupGroupByZodSchema = z.object({ where: EventHostingGroupWhereInputObjectSchema.optional(), orderBy: z.union([EventHostingGroupOrderByWithAggregationInputObjectSchema, EventHostingGroupOrderByWithAggregationInputObjectSchema.array()]).optional(), having: EventHostingGroupScalarWhereWithAggregatesInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), by: z.array(EventHostingGroupScalarFieldEnumSchema), _count: z.union([ z.literal(true), EventHostingGroupCountAggregateInputObjectSchema ]).optional(), _min: EventHostingGroupMinAggregateInputObjectSchema.optional(), _max: EventHostingGroupMaxAggregateInputObjectSchema.optional() }).strict(); - -// File: findUniqueJobListing.schema.ts - -export const JobListingFindUniqueSchema: z.ZodType = z.object({ get select(){ return JobListingSelectObjectSchema.optional(); }, get include(){ return JobListingIncludeObjectSchema.optional(); }, where: JobListingWhereUniqueInputObjectSchema }).strict() as unknown as z.ZodType; - -export const JobListingFindUniqueZodSchema = z.object({ get select(){ return JobListingSelectObjectSchema.optional(); }, get include(){ return JobListingIncludeObjectSchema.optional(); }, where: JobListingWhereUniqueInputObjectSchema }).strict(); - -// File: findUniqueOrThrowJobListing.schema.ts - -export const JobListingFindUniqueOrThrowSchema: z.ZodType = z.object({ get select(){ return JobListingSelectObjectSchema.optional(); }, get include(){ return JobListingIncludeObjectSchema.optional(); }, where: JobListingWhereUniqueInputObjectSchema }).strict() as unknown as z.ZodType; - -export const JobListingFindUniqueOrThrowZodSchema = z.object({ get select(){ return JobListingSelectObjectSchema.optional(); }, get include(){ return JobListingIncludeObjectSchema.optional(); }, where: JobListingWhereUniqueInputObjectSchema }).strict(); - -// File: findFirstJobListing.schema.ts - -// Select schema needs to be in file to prevent circular imports -//------------------------------------------------------ - -export const JobListingFindFirstSelectSchema__findFirstJobListing_schema: z.ZodType = z.object({ - id: z.boolean().optional(), - title: z.boolean().optional(), - description: z.boolean().optional(), - shortDescription: z.boolean().optional(), - start: z.boolean().optional(), - end: z.boolean().optional(), - featured: z.boolean().optional(), - hidden: z.boolean().optional(), - deadline: z.boolean().optional(), - employment: z.boolean().optional(), - applicationLink: z.boolean().optional(), - applicationEmail: z.boolean().optional(), - rollingAdmission: z.boolean().optional(), - createdAt: z.boolean().optional(), - updatedAt: z.boolean().optional(), - companyId: z.boolean().optional(), - company: z.boolean().optional(), - locations: z.boolean().optional(), - _count: z.boolean().optional() - }).strict() as unknown as z.ZodType; - -export const JobListingFindFirstSelectZodSchema__findFirstJobListing_schema = z.object({ - id: z.boolean().optional(), - title: z.boolean().optional(), - description: z.boolean().optional(), - shortDescription: z.boolean().optional(), - start: z.boolean().optional(), - end: z.boolean().optional(), - featured: z.boolean().optional(), - hidden: z.boolean().optional(), - deadline: z.boolean().optional(), - employment: z.boolean().optional(), - applicationLink: z.boolean().optional(), - applicationEmail: z.boolean().optional(), - rollingAdmission: z.boolean().optional(), - createdAt: z.boolean().optional(), - updatedAt: z.boolean().optional(), - companyId: z.boolean().optional(), - company: z.boolean().optional(), - locations: z.boolean().optional(), - _count: z.boolean().optional() - }).strict(); - -export const JobListingFindFirstSchema: z.ZodType = z.object({ get select(){ return JobListingFindFirstSelectSchema__findFirstJobListing_schema.optional(); }, get include(){ return JobListingIncludeObjectSchema.optional(); }, orderBy: z.union([JobListingOrderByWithRelationInputObjectSchema, JobListingOrderByWithRelationInputObjectSchema.array()]).optional(), where: JobListingWhereInputObjectSchema.optional(), cursor: JobListingWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), distinct: z.union([JobListingScalarFieldEnumSchema, JobListingScalarFieldEnumSchema.array()]).optional() }).strict() as unknown as z.ZodType; - -export const JobListingFindFirstZodSchema = z.object({ get select(){ return JobListingFindFirstSelectSchema__findFirstJobListing_schema.optional(); }, get include(){ return JobListingIncludeObjectSchema.optional(); }, orderBy: z.union([JobListingOrderByWithRelationInputObjectSchema, JobListingOrderByWithRelationInputObjectSchema.array()]).optional(), where: JobListingWhereInputObjectSchema.optional(), cursor: JobListingWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), distinct: z.union([JobListingScalarFieldEnumSchema, JobListingScalarFieldEnumSchema.array()]).optional() }).strict(); - -// File: findFirstOrThrowJobListing.schema.ts - -// Select schema needs to be in file to prevent circular imports -//------------------------------------------------------ - -export const JobListingFindFirstOrThrowSelectSchema__findFirstOrThrowJobListing_schema: z.ZodType = z.object({ - id: z.boolean().optional(), - title: z.boolean().optional(), - description: z.boolean().optional(), - shortDescription: z.boolean().optional(), - start: z.boolean().optional(), - end: z.boolean().optional(), - featured: z.boolean().optional(), - hidden: z.boolean().optional(), - deadline: z.boolean().optional(), - employment: z.boolean().optional(), - applicationLink: z.boolean().optional(), - applicationEmail: z.boolean().optional(), - rollingAdmission: z.boolean().optional(), - createdAt: z.boolean().optional(), - updatedAt: z.boolean().optional(), - companyId: z.boolean().optional(), - company: z.boolean().optional(), - locations: z.boolean().optional(), - _count: z.boolean().optional() - }).strict() as unknown as z.ZodType; - -export const JobListingFindFirstOrThrowSelectZodSchema__findFirstOrThrowJobListing_schema = z.object({ - id: z.boolean().optional(), - title: z.boolean().optional(), - description: z.boolean().optional(), - shortDescription: z.boolean().optional(), - start: z.boolean().optional(), - end: z.boolean().optional(), - featured: z.boolean().optional(), - hidden: z.boolean().optional(), - deadline: z.boolean().optional(), - employment: z.boolean().optional(), - applicationLink: z.boolean().optional(), - applicationEmail: z.boolean().optional(), - rollingAdmission: z.boolean().optional(), - createdAt: z.boolean().optional(), - updatedAt: z.boolean().optional(), - companyId: z.boolean().optional(), - company: z.boolean().optional(), - locations: z.boolean().optional(), - _count: z.boolean().optional() - }).strict(); - -export const JobListingFindFirstOrThrowSchema: z.ZodType = z.object({ get select(){ return JobListingFindFirstOrThrowSelectSchema__findFirstOrThrowJobListing_schema.optional(); }, get include(){ return JobListingIncludeObjectSchema.optional(); }, orderBy: z.union([JobListingOrderByWithRelationInputObjectSchema, JobListingOrderByWithRelationInputObjectSchema.array()]).optional(), where: JobListingWhereInputObjectSchema.optional(), cursor: JobListingWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), distinct: z.union([JobListingScalarFieldEnumSchema, JobListingScalarFieldEnumSchema.array()]).optional() }).strict() as unknown as z.ZodType; - -export const JobListingFindFirstOrThrowZodSchema = z.object({ get select(){ return JobListingFindFirstOrThrowSelectSchema__findFirstOrThrowJobListing_schema.optional(); }, get include(){ return JobListingIncludeObjectSchema.optional(); }, orderBy: z.union([JobListingOrderByWithRelationInputObjectSchema, JobListingOrderByWithRelationInputObjectSchema.array()]).optional(), where: JobListingWhereInputObjectSchema.optional(), cursor: JobListingWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), distinct: z.union([JobListingScalarFieldEnumSchema, JobListingScalarFieldEnumSchema.array()]).optional() }).strict(); - -// File: findManyJobListing.schema.ts - -// Select schema needs to be in file to prevent circular imports -//------------------------------------------------------ - -export const JobListingFindManySelectSchema__findManyJobListing_schema: z.ZodType = z.object({ - id: z.boolean().optional(), - title: z.boolean().optional(), - description: z.boolean().optional(), - shortDescription: z.boolean().optional(), - start: z.boolean().optional(), - end: z.boolean().optional(), - featured: z.boolean().optional(), - hidden: z.boolean().optional(), - deadline: z.boolean().optional(), - employment: z.boolean().optional(), - applicationLink: z.boolean().optional(), - applicationEmail: z.boolean().optional(), - rollingAdmission: z.boolean().optional(), - createdAt: z.boolean().optional(), - updatedAt: z.boolean().optional(), - companyId: z.boolean().optional(), - company: z.boolean().optional(), - locations: z.boolean().optional(), - _count: z.boolean().optional() - }).strict() as unknown as z.ZodType; - -export const JobListingFindManySelectZodSchema__findManyJobListing_schema = z.object({ - id: z.boolean().optional(), - title: z.boolean().optional(), - description: z.boolean().optional(), - shortDescription: z.boolean().optional(), - start: z.boolean().optional(), - end: z.boolean().optional(), - featured: z.boolean().optional(), - hidden: z.boolean().optional(), - deadline: z.boolean().optional(), - employment: z.boolean().optional(), - applicationLink: z.boolean().optional(), - applicationEmail: z.boolean().optional(), - rollingAdmission: z.boolean().optional(), - createdAt: z.boolean().optional(), - updatedAt: z.boolean().optional(), - companyId: z.boolean().optional(), - company: z.boolean().optional(), - locations: z.boolean().optional(), - _count: z.boolean().optional() - }).strict(); - -export const JobListingFindManySchema: z.ZodType = z.object({ get select(){ return JobListingFindManySelectSchema__findManyJobListing_schema.optional(); }, get include(){ return JobListingIncludeObjectSchema.optional(); }, orderBy: z.union([JobListingOrderByWithRelationInputObjectSchema, JobListingOrderByWithRelationInputObjectSchema.array()]).optional(), where: JobListingWhereInputObjectSchema.optional(), cursor: JobListingWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), distinct: z.union([JobListingScalarFieldEnumSchema, JobListingScalarFieldEnumSchema.array()]).optional() }).strict() as unknown as z.ZodType; - -export const JobListingFindManyZodSchema = z.object({ get select(){ return JobListingFindManySelectSchema__findManyJobListing_schema.optional(); }, get include(){ return JobListingIncludeObjectSchema.optional(); }, orderBy: z.union([JobListingOrderByWithRelationInputObjectSchema, JobListingOrderByWithRelationInputObjectSchema.array()]).optional(), where: JobListingWhereInputObjectSchema.optional(), cursor: JobListingWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), distinct: z.union([JobListingScalarFieldEnumSchema, JobListingScalarFieldEnumSchema.array()]).optional() }).strict(); - -// File: countJobListing.schema.ts - -export const JobListingCountSchema: z.ZodType = z.object({ orderBy: z.union([JobListingOrderByWithRelationInputObjectSchema, JobListingOrderByWithRelationInputObjectSchema.array()]).optional(), where: JobListingWhereInputObjectSchema.optional(), cursor: JobListingWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), select: z.union([ z.literal(true), JobListingCountAggregateInputObjectSchema ]).optional() }).strict() as unknown as z.ZodType; - -export const JobListingCountZodSchema = z.object({ orderBy: z.union([JobListingOrderByWithRelationInputObjectSchema, JobListingOrderByWithRelationInputObjectSchema.array()]).optional(), where: JobListingWhereInputObjectSchema.optional(), cursor: JobListingWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), select: z.union([ z.literal(true), JobListingCountAggregateInputObjectSchema ]).optional() }).strict(); - -// File: createOneJobListing.schema.ts - -export const JobListingCreateOneSchema: z.ZodType = z.object({ get select(){ return JobListingSelectObjectSchema.optional(); }, get include(){ return JobListingIncludeObjectSchema.optional(); }, data: z.union([JobListingCreateInputObjectSchema, JobListingUncheckedCreateInputObjectSchema]) }).strict() as unknown as z.ZodType; - -export const JobListingCreateOneZodSchema = z.object({ get select(){ return JobListingSelectObjectSchema.optional(); }, get include(){ return JobListingIncludeObjectSchema.optional(); }, data: z.union([JobListingCreateInputObjectSchema, JobListingUncheckedCreateInputObjectSchema]) }).strict(); - -// File: createManyJobListing.schema.ts - -export const JobListingCreateManySchema: z.ZodType = z.object({ data: z.union([ JobListingCreateManyInputObjectSchema, z.array(JobListingCreateManyInputObjectSchema) ]), skipDuplicates: z.boolean().optional() }).strict() as unknown as z.ZodType; - -export const JobListingCreateManyZodSchema = z.object({ data: z.union([ JobListingCreateManyInputObjectSchema, z.array(JobListingCreateManyInputObjectSchema) ]), skipDuplicates: z.boolean().optional() }).strict(); - -// File: createManyAndReturnJobListing.schema.ts - -export const JobListingCreateManyAndReturnSchema: z.ZodType = z.object({ get select(){ return JobListingSelectObjectSchema.optional(); }, data: z.union([ JobListingCreateManyInputObjectSchema, z.array(JobListingCreateManyInputObjectSchema) ]), skipDuplicates: z.boolean().optional() }).strict() as unknown as z.ZodType; - -export const JobListingCreateManyAndReturnZodSchema = z.object({ get select(){ return JobListingSelectObjectSchema.optional(); }, data: z.union([ JobListingCreateManyInputObjectSchema, z.array(JobListingCreateManyInputObjectSchema) ]), skipDuplicates: z.boolean().optional() }).strict(); - -// File: deleteOneJobListing.schema.ts - -export const JobListingDeleteOneSchema: z.ZodType = z.object({ get select(){ return JobListingSelectObjectSchema.optional(); }, get include(){ return JobListingIncludeObjectSchema.optional(); }, where: JobListingWhereUniqueInputObjectSchema }).strict() as unknown as z.ZodType; - -export const JobListingDeleteOneZodSchema = z.object({ get select(){ return JobListingSelectObjectSchema.optional(); }, get include(){ return JobListingIncludeObjectSchema.optional(); }, where: JobListingWhereUniqueInputObjectSchema }).strict(); - -// File: deleteManyJobListing.schema.ts - -export const JobListingDeleteManySchema: z.ZodType = z.object({ where: JobListingWhereInputObjectSchema.optional() }).strict() as unknown as z.ZodType; - -export const JobListingDeleteManyZodSchema = z.object({ where: JobListingWhereInputObjectSchema.optional() }).strict(); - -// File: updateOneJobListing.schema.ts - -export const JobListingUpdateOneSchema: z.ZodType = z.object({ get select(){ return JobListingSelectObjectSchema.optional(); }, get include(){ return JobListingIncludeObjectSchema.optional(); }, data: z.union([JobListingUpdateInputObjectSchema, JobListingUncheckedUpdateInputObjectSchema]), where: JobListingWhereUniqueInputObjectSchema }).strict() as unknown as z.ZodType; - -export const JobListingUpdateOneZodSchema = z.object({ get select(){ return JobListingSelectObjectSchema.optional(); }, get include(){ return JobListingIncludeObjectSchema.optional(); }, data: z.union([JobListingUpdateInputObjectSchema, JobListingUncheckedUpdateInputObjectSchema]), where: JobListingWhereUniqueInputObjectSchema }).strict(); - -// File: updateManyJobListing.schema.ts - -export const JobListingUpdateManySchema: z.ZodType = z.object({ data: JobListingUpdateManyMutationInputObjectSchema, where: JobListingWhereInputObjectSchema.optional() }).strict() as unknown as z.ZodType; - -export const JobListingUpdateManyZodSchema = z.object({ data: JobListingUpdateManyMutationInputObjectSchema, where: JobListingWhereInputObjectSchema.optional() }).strict(); - -// File: updateManyAndReturnJobListing.schema.ts - -export const JobListingUpdateManyAndReturnSchema: z.ZodType = z.object({ get select(){ return JobListingSelectObjectSchema.optional(); }, data: JobListingUpdateManyMutationInputObjectSchema, where: JobListingWhereInputObjectSchema.optional() }).strict() as unknown as z.ZodType; - -export const JobListingUpdateManyAndReturnZodSchema = z.object({ get select(){ return JobListingSelectObjectSchema.optional(); }, data: JobListingUpdateManyMutationInputObjectSchema, where: JobListingWhereInputObjectSchema.optional() }).strict(); - -// File: upsertOneJobListing.schema.ts - -export const JobListingUpsertOneSchema: z.ZodType = z.object({ get select(){ return JobListingSelectObjectSchema.optional(); }, get include(){ return JobListingIncludeObjectSchema.optional(); }, where: JobListingWhereUniqueInputObjectSchema, create: z.union([ JobListingCreateInputObjectSchema, JobListingUncheckedCreateInputObjectSchema ]), update: z.union([ JobListingUpdateInputObjectSchema, JobListingUncheckedUpdateInputObjectSchema ]) }).strict() as unknown as z.ZodType; - -export const JobListingUpsertOneZodSchema = z.object({ get select(){ return JobListingSelectObjectSchema.optional(); }, get include(){ return JobListingIncludeObjectSchema.optional(); }, where: JobListingWhereUniqueInputObjectSchema, create: z.union([ JobListingCreateInputObjectSchema, JobListingUncheckedCreateInputObjectSchema ]), update: z.union([ JobListingUpdateInputObjectSchema, JobListingUncheckedUpdateInputObjectSchema ]) }).strict(); - -// File: aggregateJobListing.schema.ts - -export const JobListingAggregateSchema: z.ZodType = z.object({ orderBy: z.union([JobListingOrderByWithRelationInputObjectSchema, JobListingOrderByWithRelationInputObjectSchema.array()]).optional(), where: JobListingWhereInputObjectSchema.optional(), cursor: JobListingWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), _count: z.union([ z.literal(true), JobListingCountAggregateInputObjectSchema ]).optional(), _min: JobListingMinAggregateInputObjectSchema.optional(), _max: JobListingMaxAggregateInputObjectSchema.optional() }).strict() as unknown as z.ZodType; - -export const JobListingAggregateZodSchema = z.object({ orderBy: z.union([JobListingOrderByWithRelationInputObjectSchema, JobListingOrderByWithRelationInputObjectSchema.array()]).optional(), where: JobListingWhereInputObjectSchema.optional(), cursor: JobListingWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), _count: z.union([ z.literal(true), JobListingCountAggregateInputObjectSchema ]).optional(), _min: JobListingMinAggregateInputObjectSchema.optional(), _max: JobListingMaxAggregateInputObjectSchema.optional() }).strict(); - -// File: groupByJobListing.schema.ts - -export const JobListingGroupBySchema: z.ZodType = z.object({ where: JobListingWhereInputObjectSchema.optional(), orderBy: z.union([JobListingOrderByWithAggregationInputObjectSchema, JobListingOrderByWithAggregationInputObjectSchema.array()]).optional(), having: JobListingScalarWhereWithAggregatesInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), by: z.array(JobListingScalarFieldEnumSchema), _count: z.union([ z.literal(true), JobListingCountAggregateInputObjectSchema ]).optional(), _min: JobListingMinAggregateInputObjectSchema.optional(), _max: JobListingMaxAggregateInputObjectSchema.optional() }).strict() as unknown as z.ZodType; - -export const JobListingGroupByZodSchema = z.object({ where: JobListingWhereInputObjectSchema.optional(), orderBy: z.union([JobListingOrderByWithAggregationInputObjectSchema, JobListingOrderByWithAggregationInputObjectSchema.array()]).optional(), having: JobListingScalarWhereWithAggregatesInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), by: z.array(JobListingScalarFieldEnumSchema), _count: z.union([ z.literal(true), JobListingCountAggregateInputObjectSchema ]).optional(), _min: JobListingMinAggregateInputObjectSchema.optional(), _max: JobListingMaxAggregateInputObjectSchema.optional() }).strict(); - -// File: findUniqueJobListingLocation.schema.ts - -export const JobListingLocationFindUniqueSchema: z.ZodType = z.object({ get select(){ return JobListingLocationSelectObjectSchema.optional(); }, get include(){ return JobListingLocationIncludeObjectSchema.optional(); }, where: JobListingLocationWhereUniqueInputObjectSchema }).strict() as unknown as z.ZodType; - -export const JobListingLocationFindUniqueZodSchema = z.object({ get select(){ return JobListingLocationSelectObjectSchema.optional(); }, get include(){ return JobListingLocationIncludeObjectSchema.optional(); }, where: JobListingLocationWhereUniqueInputObjectSchema }).strict(); - -// File: findUniqueOrThrowJobListingLocation.schema.ts - -export const JobListingLocationFindUniqueOrThrowSchema: z.ZodType = z.object({ get select(){ return JobListingLocationSelectObjectSchema.optional(); }, get include(){ return JobListingLocationIncludeObjectSchema.optional(); }, where: JobListingLocationWhereUniqueInputObjectSchema }).strict() as unknown as z.ZodType; - -export const JobListingLocationFindUniqueOrThrowZodSchema = z.object({ get select(){ return JobListingLocationSelectObjectSchema.optional(); }, get include(){ return JobListingLocationIncludeObjectSchema.optional(); }, where: JobListingLocationWhereUniqueInputObjectSchema }).strict(); - -// File: findFirstJobListingLocation.schema.ts - -// Select schema needs to be in file to prevent circular imports -//------------------------------------------------------ - -export const JobListingLocationFindFirstSelectSchema__findFirstJobListingLocation_schema: z.ZodType = z.object({ - name: z.boolean().optional(), - createdAt: z.boolean().optional(), - jobListingId: z.boolean().optional(), - jobListing: z.boolean().optional() - }).strict() as unknown as z.ZodType; - -export const JobListingLocationFindFirstSelectZodSchema__findFirstJobListingLocation_schema = z.object({ - name: z.boolean().optional(), - createdAt: z.boolean().optional(), - jobListingId: z.boolean().optional(), - jobListing: z.boolean().optional() - }).strict(); - -export const JobListingLocationFindFirstSchema: z.ZodType = z.object({ get select(){ return JobListingLocationFindFirstSelectSchema__findFirstJobListingLocation_schema.optional(); }, get include(){ return JobListingLocationIncludeObjectSchema.optional(); }, orderBy: z.union([JobListingLocationOrderByWithRelationInputObjectSchema, JobListingLocationOrderByWithRelationInputObjectSchema.array()]).optional(), where: JobListingLocationWhereInputObjectSchema.optional(), cursor: JobListingLocationWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), distinct: z.union([JobListingLocationScalarFieldEnumSchema, JobListingLocationScalarFieldEnumSchema.array()]).optional() }).strict() as unknown as z.ZodType; - -export const JobListingLocationFindFirstZodSchema = z.object({ get select(){ return JobListingLocationFindFirstSelectSchema__findFirstJobListingLocation_schema.optional(); }, get include(){ return JobListingLocationIncludeObjectSchema.optional(); }, orderBy: z.union([JobListingLocationOrderByWithRelationInputObjectSchema, JobListingLocationOrderByWithRelationInputObjectSchema.array()]).optional(), where: JobListingLocationWhereInputObjectSchema.optional(), cursor: JobListingLocationWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), distinct: z.union([JobListingLocationScalarFieldEnumSchema, JobListingLocationScalarFieldEnumSchema.array()]).optional() }).strict(); - -// File: findFirstOrThrowJobListingLocation.schema.ts - -// Select schema needs to be in file to prevent circular imports -//------------------------------------------------------ - -export const JobListingLocationFindFirstOrThrowSelectSchema__findFirstOrThrowJobListingLocation_schema: z.ZodType = z.object({ - name: z.boolean().optional(), - createdAt: z.boolean().optional(), - jobListingId: z.boolean().optional(), - jobListing: z.boolean().optional() - }).strict() as unknown as z.ZodType; - -export const JobListingLocationFindFirstOrThrowSelectZodSchema__findFirstOrThrowJobListingLocation_schema = z.object({ - name: z.boolean().optional(), - createdAt: z.boolean().optional(), - jobListingId: z.boolean().optional(), - jobListing: z.boolean().optional() - }).strict(); - -export const JobListingLocationFindFirstOrThrowSchema: z.ZodType = z.object({ get select(){ return JobListingLocationFindFirstOrThrowSelectSchema__findFirstOrThrowJobListingLocation_schema.optional(); }, get include(){ return JobListingLocationIncludeObjectSchema.optional(); }, orderBy: z.union([JobListingLocationOrderByWithRelationInputObjectSchema, JobListingLocationOrderByWithRelationInputObjectSchema.array()]).optional(), where: JobListingLocationWhereInputObjectSchema.optional(), cursor: JobListingLocationWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), distinct: z.union([JobListingLocationScalarFieldEnumSchema, JobListingLocationScalarFieldEnumSchema.array()]).optional() }).strict() as unknown as z.ZodType; - -export const JobListingLocationFindFirstOrThrowZodSchema = z.object({ get select(){ return JobListingLocationFindFirstOrThrowSelectSchema__findFirstOrThrowJobListingLocation_schema.optional(); }, get include(){ return JobListingLocationIncludeObjectSchema.optional(); }, orderBy: z.union([JobListingLocationOrderByWithRelationInputObjectSchema, JobListingLocationOrderByWithRelationInputObjectSchema.array()]).optional(), where: JobListingLocationWhereInputObjectSchema.optional(), cursor: JobListingLocationWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), distinct: z.union([JobListingLocationScalarFieldEnumSchema, JobListingLocationScalarFieldEnumSchema.array()]).optional() }).strict(); - -// File: findManyJobListingLocation.schema.ts - -// Select schema needs to be in file to prevent circular imports -//------------------------------------------------------ - -export const JobListingLocationFindManySelectSchema__findManyJobListingLocation_schema: z.ZodType = z.object({ - name: z.boolean().optional(), - createdAt: z.boolean().optional(), - jobListingId: z.boolean().optional(), - jobListing: z.boolean().optional() - }).strict() as unknown as z.ZodType; - -export const JobListingLocationFindManySelectZodSchema__findManyJobListingLocation_schema = z.object({ - name: z.boolean().optional(), - createdAt: z.boolean().optional(), - jobListingId: z.boolean().optional(), - jobListing: z.boolean().optional() - }).strict(); - -export const JobListingLocationFindManySchema: z.ZodType = z.object({ get select(){ return JobListingLocationFindManySelectSchema__findManyJobListingLocation_schema.optional(); }, get include(){ return JobListingLocationIncludeObjectSchema.optional(); }, orderBy: z.union([JobListingLocationOrderByWithRelationInputObjectSchema, JobListingLocationOrderByWithRelationInputObjectSchema.array()]).optional(), where: JobListingLocationWhereInputObjectSchema.optional(), cursor: JobListingLocationWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), distinct: z.union([JobListingLocationScalarFieldEnumSchema, JobListingLocationScalarFieldEnumSchema.array()]).optional() }).strict() as unknown as z.ZodType; - -export const JobListingLocationFindManyZodSchema = z.object({ get select(){ return JobListingLocationFindManySelectSchema__findManyJobListingLocation_schema.optional(); }, get include(){ return JobListingLocationIncludeObjectSchema.optional(); }, orderBy: z.union([JobListingLocationOrderByWithRelationInputObjectSchema, JobListingLocationOrderByWithRelationInputObjectSchema.array()]).optional(), where: JobListingLocationWhereInputObjectSchema.optional(), cursor: JobListingLocationWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), distinct: z.union([JobListingLocationScalarFieldEnumSchema, JobListingLocationScalarFieldEnumSchema.array()]).optional() }).strict(); - -// File: countJobListingLocation.schema.ts - -export const JobListingLocationCountSchema: z.ZodType = z.object({ orderBy: z.union([JobListingLocationOrderByWithRelationInputObjectSchema, JobListingLocationOrderByWithRelationInputObjectSchema.array()]).optional(), where: JobListingLocationWhereInputObjectSchema.optional(), cursor: JobListingLocationWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), select: z.union([ z.literal(true), JobListingLocationCountAggregateInputObjectSchema ]).optional() }).strict() as unknown as z.ZodType; - -export const JobListingLocationCountZodSchema = z.object({ orderBy: z.union([JobListingLocationOrderByWithRelationInputObjectSchema, JobListingLocationOrderByWithRelationInputObjectSchema.array()]).optional(), where: JobListingLocationWhereInputObjectSchema.optional(), cursor: JobListingLocationWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), select: z.union([ z.literal(true), JobListingLocationCountAggregateInputObjectSchema ]).optional() }).strict(); - -// File: createOneJobListingLocation.schema.ts - -export const JobListingLocationCreateOneSchema: z.ZodType = z.object({ get select(){ return JobListingLocationSelectObjectSchema.optional(); }, get include(){ return JobListingLocationIncludeObjectSchema.optional(); }, data: z.union([JobListingLocationCreateInputObjectSchema, JobListingLocationUncheckedCreateInputObjectSchema]) }).strict() as unknown as z.ZodType; - -export const JobListingLocationCreateOneZodSchema = z.object({ get select(){ return JobListingLocationSelectObjectSchema.optional(); }, get include(){ return JobListingLocationIncludeObjectSchema.optional(); }, data: z.union([JobListingLocationCreateInputObjectSchema, JobListingLocationUncheckedCreateInputObjectSchema]) }).strict(); - -// File: createManyJobListingLocation.schema.ts - -export const JobListingLocationCreateManySchema: z.ZodType = z.object({ data: z.union([ JobListingLocationCreateManyInputObjectSchema, z.array(JobListingLocationCreateManyInputObjectSchema) ]), skipDuplicates: z.boolean().optional() }).strict() as unknown as z.ZodType; - -export const JobListingLocationCreateManyZodSchema = z.object({ data: z.union([ JobListingLocationCreateManyInputObjectSchema, z.array(JobListingLocationCreateManyInputObjectSchema) ]), skipDuplicates: z.boolean().optional() }).strict(); - -// File: createManyAndReturnJobListingLocation.schema.ts - -export const JobListingLocationCreateManyAndReturnSchema: z.ZodType = z.object({ get select(){ return JobListingLocationSelectObjectSchema.optional(); }, data: z.union([ JobListingLocationCreateManyInputObjectSchema, z.array(JobListingLocationCreateManyInputObjectSchema) ]), skipDuplicates: z.boolean().optional() }).strict() as unknown as z.ZodType; - -export const JobListingLocationCreateManyAndReturnZodSchema = z.object({ get select(){ return JobListingLocationSelectObjectSchema.optional(); }, data: z.union([ JobListingLocationCreateManyInputObjectSchema, z.array(JobListingLocationCreateManyInputObjectSchema) ]), skipDuplicates: z.boolean().optional() }).strict(); - -// File: deleteOneJobListingLocation.schema.ts - -export const JobListingLocationDeleteOneSchema: z.ZodType = z.object({ get select(){ return JobListingLocationSelectObjectSchema.optional(); }, get include(){ return JobListingLocationIncludeObjectSchema.optional(); }, where: JobListingLocationWhereUniqueInputObjectSchema }).strict() as unknown as z.ZodType; - -export const JobListingLocationDeleteOneZodSchema = z.object({ get select(){ return JobListingLocationSelectObjectSchema.optional(); }, get include(){ return JobListingLocationIncludeObjectSchema.optional(); }, where: JobListingLocationWhereUniqueInputObjectSchema }).strict(); - -// File: deleteManyJobListingLocation.schema.ts - -export const JobListingLocationDeleteManySchema: z.ZodType = z.object({ where: JobListingLocationWhereInputObjectSchema.optional() }).strict() as unknown as z.ZodType; - -export const JobListingLocationDeleteManyZodSchema = z.object({ where: JobListingLocationWhereInputObjectSchema.optional() }).strict(); - -// File: updateOneJobListingLocation.schema.ts - -export const JobListingLocationUpdateOneSchema: z.ZodType = z.object({ get select(){ return JobListingLocationSelectObjectSchema.optional(); }, get include(){ return JobListingLocationIncludeObjectSchema.optional(); }, data: z.union([JobListingLocationUpdateInputObjectSchema, JobListingLocationUncheckedUpdateInputObjectSchema]), where: JobListingLocationWhereUniqueInputObjectSchema }).strict() as unknown as z.ZodType; - -export const JobListingLocationUpdateOneZodSchema = z.object({ get select(){ return JobListingLocationSelectObjectSchema.optional(); }, get include(){ return JobListingLocationIncludeObjectSchema.optional(); }, data: z.union([JobListingLocationUpdateInputObjectSchema, JobListingLocationUncheckedUpdateInputObjectSchema]), where: JobListingLocationWhereUniqueInputObjectSchema }).strict(); - -// File: updateManyJobListingLocation.schema.ts - -export const JobListingLocationUpdateManySchema: z.ZodType = z.object({ data: JobListingLocationUpdateManyMutationInputObjectSchema, where: JobListingLocationWhereInputObjectSchema.optional() }).strict() as unknown as z.ZodType; - -export const JobListingLocationUpdateManyZodSchema = z.object({ data: JobListingLocationUpdateManyMutationInputObjectSchema, where: JobListingLocationWhereInputObjectSchema.optional() }).strict(); - -// File: updateManyAndReturnJobListingLocation.schema.ts - -export const JobListingLocationUpdateManyAndReturnSchema: z.ZodType = z.object({ get select(){ return JobListingLocationSelectObjectSchema.optional(); }, data: JobListingLocationUpdateManyMutationInputObjectSchema, where: JobListingLocationWhereInputObjectSchema.optional() }).strict() as unknown as z.ZodType; - -export const JobListingLocationUpdateManyAndReturnZodSchema = z.object({ get select(){ return JobListingLocationSelectObjectSchema.optional(); }, data: JobListingLocationUpdateManyMutationInputObjectSchema, where: JobListingLocationWhereInputObjectSchema.optional() }).strict(); - -// File: upsertOneJobListingLocation.schema.ts - -export const JobListingLocationUpsertOneSchema: z.ZodType = z.object({ get select(){ return JobListingLocationSelectObjectSchema.optional(); }, get include(){ return JobListingLocationIncludeObjectSchema.optional(); }, where: JobListingLocationWhereUniqueInputObjectSchema, create: z.union([ JobListingLocationCreateInputObjectSchema, JobListingLocationUncheckedCreateInputObjectSchema ]), update: z.union([ JobListingLocationUpdateInputObjectSchema, JobListingLocationUncheckedUpdateInputObjectSchema ]) }).strict() as unknown as z.ZodType; - -export const JobListingLocationUpsertOneZodSchema = z.object({ get select(){ return JobListingLocationSelectObjectSchema.optional(); }, get include(){ return JobListingLocationIncludeObjectSchema.optional(); }, where: JobListingLocationWhereUniqueInputObjectSchema, create: z.union([ JobListingLocationCreateInputObjectSchema, JobListingLocationUncheckedCreateInputObjectSchema ]), update: z.union([ JobListingLocationUpdateInputObjectSchema, JobListingLocationUncheckedUpdateInputObjectSchema ]) }).strict(); - -// File: aggregateJobListingLocation.schema.ts - -export const JobListingLocationAggregateSchema: z.ZodType = z.object({ orderBy: z.union([JobListingLocationOrderByWithRelationInputObjectSchema, JobListingLocationOrderByWithRelationInputObjectSchema.array()]).optional(), where: JobListingLocationWhereInputObjectSchema.optional(), cursor: JobListingLocationWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), _count: z.union([ z.literal(true), JobListingLocationCountAggregateInputObjectSchema ]).optional(), _min: JobListingLocationMinAggregateInputObjectSchema.optional(), _max: JobListingLocationMaxAggregateInputObjectSchema.optional() }).strict() as unknown as z.ZodType; - -export const JobListingLocationAggregateZodSchema = z.object({ orderBy: z.union([JobListingLocationOrderByWithRelationInputObjectSchema, JobListingLocationOrderByWithRelationInputObjectSchema.array()]).optional(), where: JobListingLocationWhereInputObjectSchema.optional(), cursor: JobListingLocationWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), _count: z.union([ z.literal(true), JobListingLocationCountAggregateInputObjectSchema ]).optional(), _min: JobListingLocationMinAggregateInputObjectSchema.optional(), _max: JobListingLocationMaxAggregateInputObjectSchema.optional() }).strict(); - -// File: groupByJobListingLocation.schema.ts - -export const JobListingLocationGroupBySchema: z.ZodType = z.object({ where: JobListingLocationWhereInputObjectSchema.optional(), orderBy: z.union([JobListingLocationOrderByWithAggregationInputObjectSchema, JobListingLocationOrderByWithAggregationInputObjectSchema.array()]).optional(), having: JobListingLocationScalarWhereWithAggregatesInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), by: z.array(JobListingLocationScalarFieldEnumSchema), _count: z.union([ z.literal(true), JobListingLocationCountAggregateInputObjectSchema ]).optional(), _min: JobListingLocationMinAggregateInputObjectSchema.optional(), _max: JobListingLocationMaxAggregateInputObjectSchema.optional() }).strict() as unknown as z.ZodType; - -export const JobListingLocationGroupByZodSchema = z.object({ where: JobListingLocationWhereInputObjectSchema.optional(), orderBy: z.union([JobListingLocationOrderByWithAggregationInputObjectSchema, JobListingLocationOrderByWithAggregationInputObjectSchema.array()]).optional(), having: JobListingLocationScalarWhereWithAggregatesInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), by: z.array(JobListingLocationScalarFieldEnumSchema), _count: z.union([ z.literal(true), JobListingLocationCountAggregateInputObjectSchema ]).optional(), _min: JobListingLocationMinAggregateInputObjectSchema.optional(), _max: JobListingLocationMaxAggregateInputObjectSchema.optional() }).strict(); - -// File: findUniqueOffline.schema.ts - -export const OfflineFindUniqueSchema: z.ZodType = z.object({ get select(){ return OfflineSelectObjectSchema.optional(); }, where: OfflineWhereUniqueInputObjectSchema }).strict() as unknown as z.ZodType; - -export const OfflineFindUniqueZodSchema = z.object({ get select(){ return OfflineSelectObjectSchema.optional(); }, where: OfflineWhereUniqueInputObjectSchema }).strict(); - -// File: findUniqueOrThrowOffline.schema.ts - -export const OfflineFindUniqueOrThrowSchema: z.ZodType = z.object({ get select(){ return OfflineSelectObjectSchema.optional(); }, where: OfflineWhereUniqueInputObjectSchema }).strict() as unknown as z.ZodType; - -export const OfflineFindUniqueOrThrowZodSchema = z.object({ get select(){ return OfflineSelectObjectSchema.optional(); }, where: OfflineWhereUniqueInputObjectSchema }).strict(); - -// File: findFirstOffline.schema.ts - -// Select schema needs to be in file to prevent circular imports -//------------------------------------------------------ - -export const OfflineFindFirstSelectSchema__findFirstOffline_schema: z.ZodType = z.object({ - id: z.boolean().optional(), - title: z.boolean().optional(), - fileUrl: z.boolean().optional(), - imageUrl: z.boolean().optional(), - publishedAt: z.boolean().optional(), - createdAt: z.boolean().optional(), - updatedAt: z.boolean().optional() - }).strict() as unknown as z.ZodType; - -export const OfflineFindFirstSelectZodSchema__findFirstOffline_schema = z.object({ - id: z.boolean().optional(), - title: z.boolean().optional(), - fileUrl: z.boolean().optional(), - imageUrl: z.boolean().optional(), - publishedAt: z.boolean().optional(), - createdAt: z.boolean().optional(), - updatedAt: z.boolean().optional() - }).strict(); - -export const OfflineFindFirstSchema: z.ZodType = z.object({ get select(){ return OfflineFindFirstSelectSchema__findFirstOffline_schema.optional(); }, orderBy: z.union([OfflineOrderByWithRelationInputObjectSchema, OfflineOrderByWithRelationInputObjectSchema.array()]).optional(), where: OfflineWhereInputObjectSchema.optional(), cursor: OfflineWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), distinct: z.union([OfflineScalarFieldEnumSchema, OfflineScalarFieldEnumSchema.array()]).optional() }).strict() as unknown as z.ZodType; - -export const OfflineFindFirstZodSchema = z.object({ get select(){ return OfflineFindFirstSelectSchema__findFirstOffline_schema.optional(); }, orderBy: z.union([OfflineOrderByWithRelationInputObjectSchema, OfflineOrderByWithRelationInputObjectSchema.array()]).optional(), where: OfflineWhereInputObjectSchema.optional(), cursor: OfflineWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), distinct: z.union([OfflineScalarFieldEnumSchema, OfflineScalarFieldEnumSchema.array()]).optional() }).strict(); - -// File: findFirstOrThrowOffline.schema.ts - -// Select schema needs to be in file to prevent circular imports -//------------------------------------------------------ - -export const OfflineFindFirstOrThrowSelectSchema__findFirstOrThrowOffline_schema: z.ZodType = z.object({ - id: z.boolean().optional(), - title: z.boolean().optional(), - fileUrl: z.boolean().optional(), - imageUrl: z.boolean().optional(), - publishedAt: z.boolean().optional(), - createdAt: z.boolean().optional(), - updatedAt: z.boolean().optional() - }).strict() as unknown as z.ZodType; - -export const OfflineFindFirstOrThrowSelectZodSchema__findFirstOrThrowOffline_schema = z.object({ - id: z.boolean().optional(), - title: z.boolean().optional(), - fileUrl: z.boolean().optional(), - imageUrl: z.boolean().optional(), - publishedAt: z.boolean().optional(), - createdAt: z.boolean().optional(), - updatedAt: z.boolean().optional() - }).strict(); - -export const OfflineFindFirstOrThrowSchema: z.ZodType = z.object({ get select(){ return OfflineFindFirstOrThrowSelectSchema__findFirstOrThrowOffline_schema.optional(); }, orderBy: z.union([OfflineOrderByWithRelationInputObjectSchema, OfflineOrderByWithRelationInputObjectSchema.array()]).optional(), where: OfflineWhereInputObjectSchema.optional(), cursor: OfflineWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), distinct: z.union([OfflineScalarFieldEnumSchema, OfflineScalarFieldEnumSchema.array()]).optional() }).strict() as unknown as z.ZodType; - -export const OfflineFindFirstOrThrowZodSchema = z.object({ get select(){ return OfflineFindFirstOrThrowSelectSchema__findFirstOrThrowOffline_schema.optional(); }, orderBy: z.union([OfflineOrderByWithRelationInputObjectSchema, OfflineOrderByWithRelationInputObjectSchema.array()]).optional(), where: OfflineWhereInputObjectSchema.optional(), cursor: OfflineWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), distinct: z.union([OfflineScalarFieldEnumSchema, OfflineScalarFieldEnumSchema.array()]).optional() }).strict(); - -// File: findManyOffline.schema.ts - -// Select schema needs to be in file to prevent circular imports -//------------------------------------------------------ - -export const OfflineFindManySelectSchema__findManyOffline_schema: z.ZodType = z.object({ - id: z.boolean().optional(), - title: z.boolean().optional(), - fileUrl: z.boolean().optional(), - imageUrl: z.boolean().optional(), - publishedAt: z.boolean().optional(), - createdAt: z.boolean().optional(), - updatedAt: z.boolean().optional() - }).strict() as unknown as z.ZodType; - -export const OfflineFindManySelectZodSchema__findManyOffline_schema = z.object({ - id: z.boolean().optional(), - title: z.boolean().optional(), - fileUrl: z.boolean().optional(), - imageUrl: z.boolean().optional(), - publishedAt: z.boolean().optional(), - createdAt: z.boolean().optional(), - updatedAt: z.boolean().optional() - }).strict(); - -export const OfflineFindManySchema: z.ZodType = z.object({ get select(){ return OfflineFindManySelectSchema__findManyOffline_schema.optional(); }, orderBy: z.union([OfflineOrderByWithRelationInputObjectSchema, OfflineOrderByWithRelationInputObjectSchema.array()]).optional(), where: OfflineWhereInputObjectSchema.optional(), cursor: OfflineWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), distinct: z.union([OfflineScalarFieldEnumSchema, OfflineScalarFieldEnumSchema.array()]).optional() }).strict() as unknown as z.ZodType; - -export const OfflineFindManyZodSchema = z.object({ get select(){ return OfflineFindManySelectSchema__findManyOffline_schema.optional(); }, orderBy: z.union([OfflineOrderByWithRelationInputObjectSchema, OfflineOrderByWithRelationInputObjectSchema.array()]).optional(), where: OfflineWhereInputObjectSchema.optional(), cursor: OfflineWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), distinct: z.union([OfflineScalarFieldEnumSchema, OfflineScalarFieldEnumSchema.array()]).optional() }).strict(); - -// File: countOffline.schema.ts - -export const OfflineCountSchema: z.ZodType = z.object({ orderBy: z.union([OfflineOrderByWithRelationInputObjectSchema, OfflineOrderByWithRelationInputObjectSchema.array()]).optional(), where: OfflineWhereInputObjectSchema.optional(), cursor: OfflineWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), select: z.union([ z.literal(true), OfflineCountAggregateInputObjectSchema ]).optional() }).strict() as unknown as z.ZodType; - -export const OfflineCountZodSchema = z.object({ orderBy: z.union([OfflineOrderByWithRelationInputObjectSchema, OfflineOrderByWithRelationInputObjectSchema.array()]).optional(), where: OfflineWhereInputObjectSchema.optional(), cursor: OfflineWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), select: z.union([ z.literal(true), OfflineCountAggregateInputObjectSchema ]).optional() }).strict(); - -// File: createOneOffline.schema.ts - -export const OfflineCreateOneSchema: z.ZodType = z.object({ get select(){ return OfflineSelectObjectSchema.optional(); }, data: z.union([OfflineCreateInputObjectSchema, OfflineUncheckedCreateInputObjectSchema]) }).strict() as unknown as z.ZodType; - -export const OfflineCreateOneZodSchema = z.object({ get select(){ return OfflineSelectObjectSchema.optional(); }, data: z.union([OfflineCreateInputObjectSchema, OfflineUncheckedCreateInputObjectSchema]) }).strict(); - -// File: createManyOffline.schema.ts - -export const OfflineCreateManySchema: z.ZodType = z.object({ data: z.union([ OfflineCreateManyInputObjectSchema, z.array(OfflineCreateManyInputObjectSchema) ]), skipDuplicates: z.boolean().optional() }).strict() as unknown as z.ZodType; - -export const OfflineCreateManyZodSchema = z.object({ data: z.union([ OfflineCreateManyInputObjectSchema, z.array(OfflineCreateManyInputObjectSchema) ]), skipDuplicates: z.boolean().optional() }).strict(); - -// File: createManyAndReturnOffline.schema.ts - -export const OfflineCreateManyAndReturnSchema: z.ZodType = z.object({ get select(){ return OfflineSelectObjectSchema.optional(); }, data: z.union([ OfflineCreateManyInputObjectSchema, z.array(OfflineCreateManyInputObjectSchema) ]), skipDuplicates: z.boolean().optional() }).strict() as unknown as z.ZodType; - -export const OfflineCreateManyAndReturnZodSchema = z.object({ get select(){ return OfflineSelectObjectSchema.optional(); }, data: z.union([ OfflineCreateManyInputObjectSchema, z.array(OfflineCreateManyInputObjectSchema) ]), skipDuplicates: z.boolean().optional() }).strict(); - -// File: deleteOneOffline.schema.ts - -export const OfflineDeleteOneSchema: z.ZodType = z.object({ get select(){ return OfflineSelectObjectSchema.optional(); }, where: OfflineWhereUniqueInputObjectSchema }).strict() as unknown as z.ZodType; - -export const OfflineDeleteOneZodSchema = z.object({ get select(){ return OfflineSelectObjectSchema.optional(); }, where: OfflineWhereUniqueInputObjectSchema }).strict(); - -// File: deleteManyOffline.schema.ts - -export const OfflineDeleteManySchema: z.ZodType = z.object({ where: OfflineWhereInputObjectSchema.optional() }).strict() as unknown as z.ZodType; - -export const OfflineDeleteManyZodSchema = z.object({ where: OfflineWhereInputObjectSchema.optional() }).strict(); - -// File: updateOneOffline.schema.ts - -export const OfflineUpdateOneSchema: z.ZodType = z.object({ get select(){ return OfflineSelectObjectSchema.optional(); }, data: z.union([OfflineUpdateInputObjectSchema, OfflineUncheckedUpdateInputObjectSchema]), where: OfflineWhereUniqueInputObjectSchema }).strict() as unknown as z.ZodType; - -export const OfflineUpdateOneZodSchema = z.object({ get select(){ return OfflineSelectObjectSchema.optional(); }, data: z.union([OfflineUpdateInputObjectSchema, OfflineUncheckedUpdateInputObjectSchema]), where: OfflineWhereUniqueInputObjectSchema }).strict(); - -// File: updateManyOffline.schema.ts - -export const OfflineUpdateManySchema: z.ZodType = z.object({ data: OfflineUpdateManyMutationInputObjectSchema, where: OfflineWhereInputObjectSchema.optional() }).strict() as unknown as z.ZodType; - -export const OfflineUpdateManyZodSchema = z.object({ data: OfflineUpdateManyMutationInputObjectSchema, where: OfflineWhereInputObjectSchema.optional() }).strict(); - -// File: updateManyAndReturnOffline.schema.ts - -export const OfflineUpdateManyAndReturnSchema: z.ZodType = z.object({ get select(){ return OfflineSelectObjectSchema.optional(); }, data: OfflineUpdateManyMutationInputObjectSchema, where: OfflineWhereInputObjectSchema.optional() }).strict() as unknown as z.ZodType; - -export const OfflineUpdateManyAndReturnZodSchema = z.object({ get select(){ return OfflineSelectObjectSchema.optional(); }, data: OfflineUpdateManyMutationInputObjectSchema, where: OfflineWhereInputObjectSchema.optional() }).strict(); - -// File: upsertOneOffline.schema.ts - -export const OfflineUpsertOneSchema: z.ZodType = z.object({ get select(){ return OfflineSelectObjectSchema.optional(); }, where: OfflineWhereUniqueInputObjectSchema, create: z.union([ OfflineCreateInputObjectSchema, OfflineUncheckedCreateInputObjectSchema ]), update: z.union([ OfflineUpdateInputObjectSchema, OfflineUncheckedUpdateInputObjectSchema ]) }).strict() as unknown as z.ZodType; - -export const OfflineUpsertOneZodSchema = z.object({ get select(){ return OfflineSelectObjectSchema.optional(); }, where: OfflineWhereUniqueInputObjectSchema, create: z.union([ OfflineCreateInputObjectSchema, OfflineUncheckedCreateInputObjectSchema ]), update: z.union([ OfflineUpdateInputObjectSchema, OfflineUncheckedUpdateInputObjectSchema ]) }).strict(); - -// File: aggregateOffline.schema.ts - -export const OfflineAggregateSchema: z.ZodType = z.object({ orderBy: z.union([OfflineOrderByWithRelationInputObjectSchema, OfflineOrderByWithRelationInputObjectSchema.array()]).optional(), where: OfflineWhereInputObjectSchema.optional(), cursor: OfflineWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), _count: z.union([ z.literal(true), OfflineCountAggregateInputObjectSchema ]).optional(), _min: OfflineMinAggregateInputObjectSchema.optional(), _max: OfflineMaxAggregateInputObjectSchema.optional() }).strict() as unknown as z.ZodType; - -export const OfflineAggregateZodSchema = z.object({ orderBy: z.union([OfflineOrderByWithRelationInputObjectSchema, OfflineOrderByWithRelationInputObjectSchema.array()]).optional(), where: OfflineWhereInputObjectSchema.optional(), cursor: OfflineWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), _count: z.union([ z.literal(true), OfflineCountAggregateInputObjectSchema ]).optional(), _min: OfflineMinAggregateInputObjectSchema.optional(), _max: OfflineMaxAggregateInputObjectSchema.optional() }).strict(); - -// File: groupByOffline.schema.ts - -export const OfflineGroupBySchema: z.ZodType = z.object({ where: OfflineWhereInputObjectSchema.optional(), orderBy: z.union([OfflineOrderByWithAggregationInputObjectSchema, OfflineOrderByWithAggregationInputObjectSchema.array()]).optional(), having: OfflineScalarWhereWithAggregatesInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), by: z.array(OfflineScalarFieldEnumSchema), _count: z.union([ z.literal(true), OfflineCountAggregateInputObjectSchema ]).optional(), _min: OfflineMinAggregateInputObjectSchema.optional(), _max: OfflineMaxAggregateInputObjectSchema.optional() }).strict() as unknown as z.ZodType; - -export const OfflineGroupByZodSchema = z.object({ where: OfflineWhereInputObjectSchema.optional(), orderBy: z.union([OfflineOrderByWithAggregationInputObjectSchema, OfflineOrderByWithAggregationInputObjectSchema.array()]).optional(), having: OfflineScalarWhereWithAggregatesInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), by: z.array(OfflineScalarFieldEnumSchema), _count: z.union([ z.literal(true), OfflineCountAggregateInputObjectSchema ]).optional(), _min: OfflineMinAggregateInputObjectSchema.optional(), _max: OfflineMaxAggregateInputObjectSchema.optional() }).strict(); - -// File: findUniqueArticle.schema.ts - -export const ArticleFindUniqueSchema: z.ZodType = z.object({ get select(){ return ArticleSelectObjectSchema.optional(); }, get include(){ return ArticleIncludeObjectSchema.optional(); }, where: ArticleWhereUniqueInputObjectSchema }).strict() as unknown as z.ZodType; - -export const ArticleFindUniqueZodSchema = z.object({ get select(){ return ArticleSelectObjectSchema.optional(); }, get include(){ return ArticleIncludeObjectSchema.optional(); }, where: ArticleWhereUniqueInputObjectSchema }).strict(); - -// File: findUniqueOrThrowArticle.schema.ts - -export const ArticleFindUniqueOrThrowSchema: z.ZodType = z.object({ get select(){ return ArticleSelectObjectSchema.optional(); }, get include(){ return ArticleIncludeObjectSchema.optional(); }, where: ArticleWhereUniqueInputObjectSchema }).strict() as unknown as z.ZodType; - -export const ArticleFindUniqueOrThrowZodSchema = z.object({ get select(){ return ArticleSelectObjectSchema.optional(); }, get include(){ return ArticleIncludeObjectSchema.optional(); }, where: ArticleWhereUniqueInputObjectSchema }).strict(); - -// File: findFirstArticle.schema.ts - -// Select schema needs to be in file to prevent circular imports -//------------------------------------------------------ - -export const ArticleFindFirstSelectSchema__findFirstArticle_schema: z.ZodType = z.object({ - id: z.boolean().optional(), - slug: z.boolean().optional(), - title: z.boolean().optional(), - author: z.boolean().optional(), - photographer: z.boolean().optional(), - imageUrl: z.boolean().optional(), - excerpt: z.boolean().optional(), - content: z.boolean().optional(), - isFeatured: z.boolean().optional(), - vimeoId: z.boolean().optional(), - createdAt: z.boolean().optional(), - updatedAt: z.boolean().optional(), - tags: z.boolean().optional(), - _count: z.boolean().optional() - }).strict() as unknown as z.ZodType; - -export const ArticleFindFirstSelectZodSchema__findFirstArticle_schema = z.object({ - id: z.boolean().optional(), - slug: z.boolean().optional(), - title: z.boolean().optional(), - author: z.boolean().optional(), - photographer: z.boolean().optional(), - imageUrl: z.boolean().optional(), - excerpt: z.boolean().optional(), - content: z.boolean().optional(), - isFeatured: z.boolean().optional(), - vimeoId: z.boolean().optional(), - createdAt: z.boolean().optional(), - updatedAt: z.boolean().optional(), - tags: z.boolean().optional(), - _count: z.boolean().optional() - }).strict(); - -export const ArticleFindFirstSchema: z.ZodType = z.object({ get select(){ return ArticleFindFirstSelectSchema__findFirstArticle_schema.optional(); }, get include(){ return ArticleIncludeObjectSchema.optional(); }, orderBy: z.union([ArticleOrderByWithRelationInputObjectSchema, ArticleOrderByWithRelationInputObjectSchema.array()]).optional(), where: ArticleWhereInputObjectSchema.optional(), cursor: ArticleWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), distinct: z.union([ArticleScalarFieldEnumSchema, ArticleScalarFieldEnumSchema.array()]).optional() }).strict() as unknown as z.ZodType; - -export const ArticleFindFirstZodSchema = z.object({ get select(){ return ArticleFindFirstSelectSchema__findFirstArticle_schema.optional(); }, get include(){ return ArticleIncludeObjectSchema.optional(); }, orderBy: z.union([ArticleOrderByWithRelationInputObjectSchema, ArticleOrderByWithRelationInputObjectSchema.array()]).optional(), where: ArticleWhereInputObjectSchema.optional(), cursor: ArticleWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), distinct: z.union([ArticleScalarFieldEnumSchema, ArticleScalarFieldEnumSchema.array()]).optional() }).strict(); - -// File: findFirstOrThrowArticle.schema.ts - -// Select schema needs to be in file to prevent circular imports -//------------------------------------------------------ - -export const ArticleFindFirstOrThrowSelectSchema__findFirstOrThrowArticle_schema: z.ZodType = z.object({ - id: z.boolean().optional(), - slug: z.boolean().optional(), - title: z.boolean().optional(), - author: z.boolean().optional(), - photographer: z.boolean().optional(), - imageUrl: z.boolean().optional(), - excerpt: z.boolean().optional(), - content: z.boolean().optional(), - isFeatured: z.boolean().optional(), - vimeoId: z.boolean().optional(), - createdAt: z.boolean().optional(), - updatedAt: z.boolean().optional(), - tags: z.boolean().optional(), - _count: z.boolean().optional() - }).strict() as unknown as z.ZodType; - -export const ArticleFindFirstOrThrowSelectZodSchema__findFirstOrThrowArticle_schema = z.object({ - id: z.boolean().optional(), - slug: z.boolean().optional(), - title: z.boolean().optional(), - author: z.boolean().optional(), - photographer: z.boolean().optional(), - imageUrl: z.boolean().optional(), - excerpt: z.boolean().optional(), - content: z.boolean().optional(), - isFeatured: z.boolean().optional(), - vimeoId: z.boolean().optional(), - createdAt: z.boolean().optional(), - updatedAt: z.boolean().optional(), - tags: z.boolean().optional(), - _count: z.boolean().optional() - }).strict(); - -export const ArticleFindFirstOrThrowSchema: z.ZodType = z.object({ get select(){ return ArticleFindFirstOrThrowSelectSchema__findFirstOrThrowArticle_schema.optional(); }, get include(){ return ArticleIncludeObjectSchema.optional(); }, orderBy: z.union([ArticleOrderByWithRelationInputObjectSchema, ArticleOrderByWithRelationInputObjectSchema.array()]).optional(), where: ArticleWhereInputObjectSchema.optional(), cursor: ArticleWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), distinct: z.union([ArticleScalarFieldEnumSchema, ArticleScalarFieldEnumSchema.array()]).optional() }).strict() as unknown as z.ZodType; - -export const ArticleFindFirstOrThrowZodSchema = z.object({ get select(){ return ArticleFindFirstOrThrowSelectSchema__findFirstOrThrowArticle_schema.optional(); }, get include(){ return ArticleIncludeObjectSchema.optional(); }, orderBy: z.union([ArticleOrderByWithRelationInputObjectSchema, ArticleOrderByWithRelationInputObjectSchema.array()]).optional(), where: ArticleWhereInputObjectSchema.optional(), cursor: ArticleWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), distinct: z.union([ArticleScalarFieldEnumSchema, ArticleScalarFieldEnumSchema.array()]).optional() }).strict(); - -// File: findManyArticle.schema.ts - -// Select schema needs to be in file to prevent circular imports -//------------------------------------------------------ - -export const ArticleFindManySelectSchema__findManyArticle_schema: z.ZodType = z.object({ - id: z.boolean().optional(), - slug: z.boolean().optional(), - title: z.boolean().optional(), - author: z.boolean().optional(), - photographer: z.boolean().optional(), - imageUrl: z.boolean().optional(), - excerpt: z.boolean().optional(), - content: z.boolean().optional(), - isFeatured: z.boolean().optional(), - vimeoId: z.boolean().optional(), - createdAt: z.boolean().optional(), - updatedAt: z.boolean().optional(), - tags: z.boolean().optional(), - _count: z.boolean().optional() - }).strict() as unknown as z.ZodType; - -export const ArticleFindManySelectZodSchema__findManyArticle_schema = z.object({ - id: z.boolean().optional(), - slug: z.boolean().optional(), - title: z.boolean().optional(), - author: z.boolean().optional(), - photographer: z.boolean().optional(), - imageUrl: z.boolean().optional(), - excerpt: z.boolean().optional(), - content: z.boolean().optional(), - isFeatured: z.boolean().optional(), - vimeoId: z.boolean().optional(), - createdAt: z.boolean().optional(), - updatedAt: z.boolean().optional(), - tags: z.boolean().optional(), - _count: z.boolean().optional() - }).strict(); - -export const ArticleFindManySchema: z.ZodType = z.object({ get select(){ return ArticleFindManySelectSchema__findManyArticle_schema.optional(); }, get include(){ return ArticleIncludeObjectSchema.optional(); }, orderBy: z.union([ArticleOrderByWithRelationInputObjectSchema, ArticleOrderByWithRelationInputObjectSchema.array()]).optional(), where: ArticleWhereInputObjectSchema.optional(), cursor: ArticleWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), distinct: z.union([ArticleScalarFieldEnumSchema, ArticleScalarFieldEnumSchema.array()]).optional() }).strict() as unknown as z.ZodType; - -export const ArticleFindManyZodSchema = z.object({ get select(){ return ArticleFindManySelectSchema__findManyArticle_schema.optional(); }, get include(){ return ArticleIncludeObjectSchema.optional(); }, orderBy: z.union([ArticleOrderByWithRelationInputObjectSchema, ArticleOrderByWithRelationInputObjectSchema.array()]).optional(), where: ArticleWhereInputObjectSchema.optional(), cursor: ArticleWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), distinct: z.union([ArticleScalarFieldEnumSchema, ArticleScalarFieldEnumSchema.array()]).optional() }).strict(); - -// File: countArticle.schema.ts - -export const ArticleCountSchema: z.ZodType = z.object({ orderBy: z.union([ArticleOrderByWithRelationInputObjectSchema, ArticleOrderByWithRelationInputObjectSchema.array()]).optional(), where: ArticleWhereInputObjectSchema.optional(), cursor: ArticleWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), select: z.union([ z.literal(true), ArticleCountAggregateInputObjectSchema ]).optional() }).strict() as unknown as z.ZodType; - -export const ArticleCountZodSchema = z.object({ orderBy: z.union([ArticleOrderByWithRelationInputObjectSchema, ArticleOrderByWithRelationInputObjectSchema.array()]).optional(), where: ArticleWhereInputObjectSchema.optional(), cursor: ArticleWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), select: z.union([ z.literal(true), ArticleCountAggregateInputObjectSchema ]).optional() }).strict(); - -// File: createOneArticle.schema.ts - -export const ArticleCreateOneSchema: z.ZodType = z.object({ get select(){ return ArticleSelectObjectSchema.optional(); }, get include(){ return ArticleIncludeObjectSchema.optional(); }, data: z.union([ArticleCreateInputObjectSchema, ArticleUncheckedCreateInputObjectSchema]) }).strict() as unknown as z.ZodType; - -export const ArticleCreateOneZodSchema = z.object({ get select(){ return ArticleSelectObjectSchema.optional(); }, get include(){ return ArticleIncludeObjectSchema.optional(); }, data: z.union([ArticleCreateInputObjectSchema, ArticleUncheckedCreateInputObjectSchema]) }).strict(); - -// File: createManyArticle.schema.ts - -export const ArticleCreateManySchema: z.ZodType = z.object({ data: z.union([ ArticleCreateManyInputObjectSchema, z.array(ArticleCreateManyInputObjectSchema) ]), skipDuplicates: z.boolean().optional() }).strict() as unknown as z.ZodType; - -export const ArticleCreateManyZodSchema = z.object({ data: z.union([ ArticleCreateManyInputObjectSchema, z.array(ArticleCreateManyInputObjectSchema) ]), skipDuplicates: z.boolean().optional() }).strict(); - -// File: createManyAndReturnArticle.schema.ts - -export const ArticleCreateManyAndReturnSchema: z.ZodType = z.object({ get select(){ return ArticleSelectObjectSchema.optional(); }, data: z.union([ ArticleCreateManyInputObjectSchema, z.array(ArticleCreateManyInputObjectSchema) ]), skipDuplicates: z.boolean().optional() }).strict() as unknown as z.ZodType; - -export const ArticleCreateManyAndReturnZodSchema = z.object({ get select(){ return ArticleSelectObjectSchema.optional(); }, data: z.union([ ArticleCreateManyInputObjectSchema, z.array(ArticleCreateManyInputObjectSchema) ]), skipDuplicates: z.boolean().optional() }).strict(); - -// File: deleteOneArticle.schema.ts - -export const ArticleDeleteOneSchema: z.ZodType = z.object({ get select(){ return ArticleSelectObjectSchema.optional(); }, get include(){ return ArticleIncludeObjectSchema.optional(); }, where: ArticleWhereUniqueInputObjectSchema }).strict() as unknown as z.ZodType; - -export const ArticleDeleteOneZodSchema = z.object({ get select(){ return ArticleSelectObjectSchema.optional(); }, get include(){ return ArticleIncludeObjectSchema.optional(); }, where: ArticleWhereUniqueInputObjectSchema }).strict(); - -// File: deleteManyArticle.schema.ts - -export const ArticleDeleteManySchema: z.ZodType = z.object({ where: ArticleWhereInputObjectSchema.optional() }).strict() as unknown as z.ZodType; - -export const ArticleDeleteManyZodSchema = z.object({ where: ArticleWhereInputObjectSchema.optional() }).strict(); - -// File: updateOneArticle.schema.ts - -export const ArticleUpdateOneSchema: z.ZodType = z.object({ get select(){ return ArticleSelectObjectSchema.optional(); }, get include(){ return ArticleIncludeObjectSchema.optional(); }, data: z.union([ArticleUpdateInputObjectSchema, ArticleUncheckedUpdateInputObjectSchema]), where: ArticleWhereUniqueInputObjectSchema }).strict() as unknown as z.ZodType; - -export const ArticleUpdateOneZodSchema = z.object({ get select(){ return ArticleSelectObjectSchema.optional(); }, get include(){ return ArticleIncludeObjectSchema.optional(); }, data: z.union([ArticleUpdateInputObjectSchema, ArticleUncheckedUpdateInputObjectSchema]), where: ArticleWhereUniqueInputObjectSchema }).strict(); - -// File: updateManyArticle.schema.ts - -export const ArticleUpdateManySchema: z.ZodType = z.object({ data: ArticleUpdateManyMutationInputObjectSchema, where: ArticleWhereInputObjectSchema.optional() }).strict() as unknown as z.ZodType; - -export const ArticleUpdateManyZodSchema = z.object({ data: ArticleUpdateManyMutationInputObjectSchema, where: ArticleWhereInputObjectSchema.optional() }).strict(); - -// File: updateManyAndReturnArticle.schema.ts - -export const ArticleUpdateManyAndReturnSchema: z.ZodType = z.object({ get select(){ return ArticleSelectObjectSchema.optional(); }, data: ArticleUpdateManyMutationInputObjectSchema, where: ArticleWhereInputObjectSchema.optional() }).strict() as unknown as z.ZodType; - -export const ArticleUpdateManyAndReturnZodSchema = z.object({ get select(){ return ArticleSelectObjectSchema.optional(); }, data: ArticleUpdateManyMutationInputObjectSchema, where: ArticleWhereInputObjectSchema.optional() }).strict(); - -// File: upsertOneArticle.schema.ts - -export const ArticleUpsertOneSchema: z.ZodType = z.object({ get select(){ return ArticleSelectObjectSchema.optional(); }, get include(){ return ArticleIncludeObjectSchema.optional(); }, where: ArticleWhereUniqueInputObjectSchema, create: z.union([ ArticleCreateInputObjectSchema, ArticleUncheckedCreateInputObjectSchema ]), update: z.union([ ArticleUpdateInputObjectSchema, ArticleUncheckedUpdateInputObjectSchema ]) }).strict() as unknown as z.ZodType; - -export const ArticleUpsertOneZodSchema = z.object({ get select(){ return ArticleSelectObjectSchema.optional(); }, get include(){ return ArticleIncludeObjectSchema.optional(); }, where: ArticleWhereUniqueInputObjectSchema, create: z.union([ ArticleCreateInputObjectSchema, ArticleUncheckedCreateInputObjectSchema ]), update: z.union([ ArticleUpdateInputObjectSchema, ArticleUncheckedUpdateInputObjectSchema ]) }).strict(); - -// File: aggregateArticle.schema.ts - -export const ArticleAggregateSchema: z.ZodType = z.object({ orderBy: z.union([ArticleOrderByWithRelationInputObjectSchema, ArticleOrderByWithRelationInputObjectSchema.array()]).optional(), where: ArticleWhereInputObjectSchema.optional(), cursor: ArticleWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), _count: z.union([ z.literal(true), ArticleCountAggregateInputObjectSchema ]).optional(), _min: ArticleMinAggregateInputObjectSchema.optional(), _max: ArticleMaxAggregateInputObjectSchema.optional() }).strict() as unknown as z.ZodType; - -export const ArticleAggregateZodSchema = z.object({ orderBy: z.union([ArticleOrderByWithRelationInputObjectSchema, ArticleOrderByWithRelationInputObjectSchema.array()]).optional(), where: ArticleWhereInputObjectSchema.optional(), cursor: ArticleWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), _count: z.union([ z.literal(true), ArticleCountAggregateInputObjectSchema ]).optional(), _min: ArticleMinAggregateInputObjectSchema.optional(), _max: ArticleMaxAggregateInputObjectSchema.optional() }).strict(); - -// File: groupByArticle.schema.ts - -export const ArticleGroupBySchema: z.ZodType = z.object({ where: ArticleWhereInputObjectSchema.optional(), orderBy: z.union([ArticleOrderByWithAggregationInputObjectSchema, ArticleOrderByWithAggregationInputObjectSchema.array()]).optional(), having: ArticleScalarWhereWithAggregatesInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), by: z.array(ArticleScalarFieldEnumSchema), _count: z.union([ z.literal(true), ArticleCountAggregateInputObjectSchema ]).optional(), _min: ArticleMinAggregateInputObjectSchema.optional(), _max: ArticleMaxAggregateInputObjectSchema.optional() }).strict() as unknown as z.ZodType; - -export const ArticleGroupByZodSchema = z.object({ where: ArticleWhereInputObjectSchema.optional(), orderBy: z.union([ArticleOrderByWithAggregationInputObjectSchema, ArticleOrderByWithAggregationInputObjectSchema.array()]).optional(), having: ArticleScalarWhereWithAggregatesInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), by: z.array(ArticleScalarFieldEnumSchema), _count: z.union([ z.literal(true), ArticleCountAggregateInputObjectSchema ]).optional(), _min: ArticleMinAggregateInputObjectSchema.optional(), _max: ArticleMaxAggregateInputObjectSchema.optional() }).strict(); - -// File: findUniqueArticleTag.schema.ts - -export const ArticleTagFindUniqueSchema: z.ZodType = z.object({ get select(){ return ArticleTagSelectObjectSchema.optional(); }, get include(){ return ArticleTagIncludeObjectSchema.optional(); }, where: ArticleTagWhereUniqueInputObjectSchema }).strict() as unknown as z.ZodType; - -export const ArticleTagFindUniqueZodSchema = z.object({ get select(){ return ArticleTagSelectObjectSchema.optional(); }, get include(){ return ArticleTagIncludeObjectSchema.optional(); }, where: ArticleTagWhereUniqueInputObjectSchema }).strict(); - -// File: findUniqueOrThrowArticleTag.schema.ts - -export const ArticleTagFindUniqueOrThrowSchema: z.ZodType = z.object({ get select(){ return ArticleTagSelectObjectSchema.optional(); }, get include(){ return ArticleTagIncludeObjectSchema.optional(); }, where: ArticleTagWhereUniqueInputObjectSchema }).strict() as unknown as z.ZodType; - -export const ArticleTagFindUniqueOrThrowZodSchema = z.object({ get select(){ return ArticleTagSelectObjectSchema.optional(); }, get include(){ return ArticleTagIncludeObjectSchema.optional(); }, where: ArticleTagWhereUniqueInputObjectSchema }).strict(); - -// File: findFirstArticleTag.schema.ts - -// Select schema needs to be in file to prevent circular imports -//------------------------------------------------------ - -export const ArticleTagFindFirstSelectSchema__findFirstArticleTag_schema: z.ZodType = z.object({ - name: z.boolean().optional(), - articles: z.boolean().optional(), - _count: z.boolean().optional() - }).strict() as unknown as z.ZodType; - -export const ArticleTagFindFirstSelectZodSchema__findFirstArticleTag_schema = z.object({ - name: z.boolean().optional(), - articles: z.boolean().optional(), - _count: z.boolean().optional() - }).strict(); - -export const ArticleTagFindFirstSchema: z.ZodType = z.object({ get select(){ return ArticleTagFindFirstSelectSchema__findFirstArticleTag_schema.optional(); }, get include(){ return ArticleTagIncludeObjectSchema.optional(); }, orderBy: z.union([ArticleTagOrderByWithRelationInputObjectSchema, ArticleTagOrderByWithRelationInputObjectSchema.array()]).optional(), where: ArticleTagWhereInputObjectSchema.optional(), cursor: ArticleTagWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), distinct: z.union([ArticleTagScalarFieldEnumSchema, ArticleTagScalarFieldEnumSchema.array()]).optional() }).strict() as unknown as z.ZodType; - -export const ArticleTagFindFirstZodSchema = z.object({ get select(){ return ArticleTagFindFirstSelectSchema__findFirstArticleTag_schema.optional(); }, get include(){ return ArticleTagIncludeObjectSchema.optional(); }, orderBy: z.union([ArticleTagOrderByWithRelationInputObjectSchema, ArticleTagOrderByWithRelationInputObjectSchema.array()]).optional(), where: ArticleTagWhereInputObjectSchema.optional(), cursor: ArticleTagWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), distinct: z.union([ArticleTagScalarFieldEnumSchema, ArticleTagScalarFieldEnumSchema.array()]).optional() }).strict(); - -// File: findFirstOrThrowArticleTag.schema.ts - -// Select schema needs to be in file to prevent circular imports -//------------------------------------------------------ - -export const ArticleTagFindFirstOrThrowSelectSchema__findFirstOrThrowArticleTag_schema: z.ZodType = z.object({ - name: z.boolean().optional(), - articles: z.boolean().optional(), - _count: z.boolean().optional() - }).strict() as unknown as z.ZodType; - -export const ArticleTagFindFirstOrThrowSelectZodSchema__findFirstOrThrowArticleTag_schema = z.object({ - name: z.boolean().optional(), - articles: z.boolean().optional(), - _count: z.boolean().optional() - }).strict(); - -export const ArticleTagFindFirstOrThrowSchema: z.ZodType = z.object({ get select(){ return ArticleTagFindFirstOrThrowSelectSchema__findFirstOrThrowArticleTag_schema.optional(); }, get include(){ return ArticleTagIncludeObjectSchema.optional(); }, orderBy: z.union([ArticleTagOrderByWithRelationInputObjectSchema, ArticleTagOrderByWithRelationInputObjectSchema.array()]).optional(), where: ArticleTagWhereInputObjectSchema.optional(), cursor: ArticleTagWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), distinct: z.union([ArticleTagScalarFieldEnumSchema, ArticleTagScalarFieldEnumSchema.array()]).optional() }).strict() as unknown as z.ZodType; - -export const ArticleTagFindFirstOrThrowZodSchema = z.object({ get select(){ return ArticleTagFindFirstOrThrowSelectSchema__findFirstOrThrowArticleTag_schema.optional(); }, get include(){ return ArticleTagIncludeObjectSchema.optional(); }, orderBy: z.union([ArticleTagOrderByWithRelationInputObjectSchema, ArticleTagOrderByWithRelationInputObjectSchema.array()]).optional(), where: ArticleTagWhereInputObjectSchema.optional(), cursor: ArticleTagWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), distinct: z.union([ArticleTagScalarFieldEnumSchema, ArticleTagScalarFieldEnumSchema.array()]).optional() }).strict(); - -// File: findManyArticleTag.schema.ts - -// Select schema needs to be in file to prevent circular imports -//------------------------------------------------------ - -export const ArticleTagFindManySelectSchema__findManyArticleTag_schema: z.ZodType = z.object({ - name: z.boolean().optional(), - articles: z.boolean().optional(), - _count: z.boolean().optional() - }).strict() as unknown as z.ZodType; - -export const ArticleTagFindManySelectZodSchema__findManyArticleTag_schema = z.object({ - name: z.boolean().optional(), - articles: z.boolean().optional(), - _count: z.boolean().optional() - }).strict(); - -export const ArticleTagFindManySchema: z.ZodType = z.object({ get select(){ return ArticleTagFindManySelectSchema__findManyArticleTag_schema.optional(); }, get include(){ return ArticleTagIncludeObjectSchema.optional(); }, orderBy: z.union([ArticleTagOrderByWithRelationInputObjectSchema, ArticleTagOrderByWithRelationInputObjectSchema.array()]).optional(), where: ArticleTagWhereInputObjectSchema.optional(), cursor: ArticleTagWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), distinct: z.union([ArticleTagScalarFieldEnumSchema, ArticleTagScalarFieldEnumSchema.array()]).optional() }).strict() as unknown as z.ZodType; - -export const ArticleTagFindManyZodSchema = z.object({ get select(){ return ArticleTagFindManySelectSchema__findManyArticleTag_schema.optional(); }, get include(){ return ArticleTagIncludeObjectSchema.optional(); }, orderBy: z.union([ArticleTagOrderByWithRelationInputObjectSchema, ArticleTagOrderByWithRelationInputObjectSchema.array()]).optional(), where: ArticleTagWhereInputObjectSchema.optional(), cursor: ArticleTagWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), distinct: z.union([ArticleTagScalarFieldEnumSchema, ArticleTagScalarFieldEnumSchema.array()]).optional() }).strict(); - -// File: countArticleTag.schema.ts - -export const ArticleTagCountSchema: z.ZodType = z.object({ orderBy: z.union([ArticleTagOrderByWithRelationInputObjectSchema, ArticleTagOrderByWithRelationInputObjectSchema.array()]).optional(), where: ArticleTagWhereInputObjectSchema.optional(), cursor: ArticleTagWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), select: z.union([ z.literal(true), ArticleTagCountAggregateInputObjectSchema ]).optional() }).strict() as unknown as z.ZodType; - -export const ArticleTagCountZodSchema = z.object({ orderBy: z.union([ArticleTagOrderByWithRelationInputObjectSchema, ArticleTagOrderByWithRelationInputObjectSchema.array()]).optional(), where: ArticleTagWhereInputObjectSchema.optional(), cursor: ArticleTagWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), select: z.union([ z.literal(true), ArticleTagCountAggregateInputObjectSchema ]).optional() }).strict(); - -// File: createOneArticleTag.schema.ts - -export const ArticleTagCreateOneSchema: z.ZodType = z.object({ get select(){ return ArticleTagSelectObjectSchema.optional(); }, get include(){ return ArticleTagIncludeObjectSchema.optional(); }, data: z.union([ArticleTagCreateInputObjectSchema, ArticleTagUncheckedCreateInputObjectSchema]) }).strict() as unknown as z.ZodType; - -export const ArticleTagCreateOneZodSchema = z.object({ get select(){ return ArticleTagSelectObjectSchema.optional(); }, get include(){ return ArticleTagIncludeObjectSchema.optional(); }, data: z.union([ArticleTagCreateInputObjectSchema, ArticleTagUncheckedCreateInputObjectSchema]) }).strict(); - -// File: createManyArticleTag.schema.ts - -export const ArticleTagCreateManySchema: z.ZodType = z.object({ data: z.union([ ArticleTagCreateManyInputObjectSchema, z.array(ArticleTagCreateManyInputObjectSchema) ]), skipDuplicates: z.boolean().optional() }).strict() as unknown as z.ZodType; - -export const ArticleTagCreateManyZodSchema = z.object({ data: z.union([ ArticleTagCreateManyInputObjectSchema, z.array(ArticleTagCreateManyInputObjectSchema) ]), skipDuplicates: z.boolean().optional() }).strict(); - -// File: createManyAndReturnArticleTag.schema.ts - -export const ArticleTagCreateManyAndReturnSchema: z.ZodType = z.object({ get select(){ return ArticleTagSelectObjectSchema.optional(); }, data: z.union([ ArticleTagCreateManyInputObjectSchema, z.array(ArticleTagCreateManyInputObjectSchema) ]), skipDuplicates: z.boolean().optional() }).strict() as unknown as z.ZodType; - -export const ArticleTagCreateManyAndReturnZodSchema = z.object({ get select(){ return ArticleTagSelectObjectSchema.optional(); }, data: z.union([ ArticleTagCreateManyInputObjectSchema, z.array(ArticleTagCreateManyInputObjectSchema) ]), skipDuplicates: z.boolean().optional() }).strict(); - -// File: deleteOneArticleTag.schema.ts - -export const ArticleTagDeleteOneSchema: z.ZodType = z.object({ get select(){ return ArticleTagSelectObjectSchema.optional(); }, get include(){ return ArticleTagIncludeObjectSchema.optional(); }, where: ArticleTagWhereUniqueInputObjectSchema }).strict() as unknown as z.ZodType; - -export const ArticleTagDeleteOneZodSchema = z.object({ get select(){ return ArticleTagSelectObjectSchema.optional(); }, get include(){ return ArticleTagIncludeObjectSchema.optional(); }, where: ArticleTagWhereUniqueInputObjectSchema }).strict(); - -// File: deleteManyArticleTag.schema.ts - -export const ArticleTagDeleteManySchema: z.ZodType = z.object({ where: ArticleTagWhereInputObjectSchema.optional() }).strict() as unknown as z.ZodType; - -export const ArticleTagDeleteManyZodSchema = z.object({ where: ArticleTagWhereInputObjectSchema.optional() }).strict(); - -// File: updateOneArticleTag.schema.ts - -export const ArticleTagUpdateOneSchema: z.ZodType = z.object({ get select(){ return ArticleTagSelectObjectSchema.optional(); }, get include(){ return ArticleTagIncludeObjectSchema.optional(); }, data: z.union([ArticleTagUpdateInputObjectSchema, ArticleTagUncheckedUpdateInputObjectSchema]), where: ArticleTagWhereUniqueInputObjectSchema }).strict() as unknown as z.ZodType; - -export const ArticleTagUpdateOneZodSchema = z.object({ get select(){ return ArticleTagSelectObjectSchema.optional(); }, get include(){ return ArticleTagIncludeObjectSchema.optional(); }, data: z.union([ArticleTagUpdateInputObjectSchema, ArticleTagUncheckedUpdateInputObjectSchema]), where: ArticleTagWhereUniqueInputObjectSchema }).strict(); - -// File: updateManyArticleTag.schema.ts - -export const ArticleTagUpdateManySchema: z.ZodType = z.object({ data: ArticleTagUpdateManyMutationInputObjectSchema, where: ArticleTagWhereInputObjectSchema.optional() }).strict() as unknown as z.ZodType; - -export const ArticleTagUpdateManyZodSchema = z.object({ data: ArticleTagUpdateManyMutationInputObjectSchema, where: ArticleTagWhereInputObjectSchema.optional() }).strict(); - -// File: updateManyAndReturnArticleTag.schema.ts - -export const ArticleTagUpdateManyAndReturnSchema: z.ZodType = z.object({ get select(){ return ArticleTagSelectObjectSchema.optional(); }, data: ArticleTagUpdateManyMutationInputObjectSchema, where: ArticleTagWhereInputObjectSchema.optional() }).strict() as unknown as z.ZodType; - -export const ArticleTagUpdateManyAndReturnZodSchema = z.object({ get select(){ return ArticleTagSelectObjectSchema.optional(); }, data: ArticleTagUpdateManyMutationInputObjectSchema, where: ArticleTagWhereInputObjectSchema.optional() }).strict(); - -// File: upsertOneArticleTag.schema.ts - -export const ArticleTagUpsertOneSchema: z.ZodType = z.object({ get select(){ return ArticleTagSelectObjectSchema.optional(); }, get include(){ return ArticleTagIncludeObjectSchema.optional(); }, where: ArticleTagWhereUniqueInputObjectSchema, create: z.union([ ArticleTagCreateInputObjectSchema, ArticleTagUncheckedCreateInputObjectSchema ]), update: z.union([ ArticleTagUpdateInputObjectSchema, ArticleTagUncheckedUpdateInputObjectSchema ]) }).strict() as unknown as z.ZodType; - -export const ArticleTagUpsertOneZodSchema = z.object({ get select(){ return ArticleTagSelectObjectSchema.optional(); }, get include(){ return ArticleTagIncludeObjectSchema.optional(); }, where: ArticleTagWhereUniqueInputObjectSchema, create: z.union([ ArticleTagCreateInputObjectSchema, ArticleTagUncheckedCreateInputObjectSchema ]), update: z.union([ ArticleTagUpdateInputObjectSchema, ArticleTagUncheckedUpdateInputObjectSchema ]) }).strict(); - -// File: aggregateArticleTag.schema.ts - -export const ArticleTagAggregateSchema: z.ZodType = z.object({ orderBy: z.union([ArticleTagOrderByWithRelationInputObjectSchema, ArticleTagOrderByWithRelationInputObjectSchema.array()]).optional(), where: ArticleTagWhereInputObjectSchema.optional(), cursor: ArticleTagWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), _count: z.union([ z.literal(true), ArticleTagCountAggregateInputObjectSchema ]).optional(), _min: ArticleTagMinAggregateInputObjectSchema.optional(), _max: ArticleTagMaxAggregateInputObjectSchema.optional() }).strict() as unknown as z.ZodType; - -export const ArticleTagAggregateZodSchema = z.object({ orderBy: z.union([ArticleTagOrderByWithRelationInputObjectSchema, ArticleTagOrderByWithRelationInputObjectSchema.array()]).optional(), where: ArticleTagWhereInputObjectSchema.optional(), cursor: ArticleTagWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), _count: z.union([ z.literal(true), ArticleTagCountAggregateInputObjectSchema ]).optional(), _min: ArticleTagMinAggregateInputObjectSchema.optional(), _max: ArticleTagMaxAggregateInputObjectSchema.optional() }).strict(); - -// File: groupByArticleTag.schema.ts - -export const ArticleTagGroupBySchema: z.ZodType = z.object({ where: ArticleTagWhereInputObjectSchema.optional(), orderBy: z.union([ArticleTagOrderByWithAggregationInputObjectSchema, ArticleTagOrderByWithAggregationInputObjectSchema.array()]).optional(), having: ArticleTagScalarWhereWithAggregatesInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), by: z.array(ArticleTagScalarFieldEnumSchema), _count: z.union([ z.literal(true), ArticleTagCountAggregateInputObjectSchema ]).optional(), _min: ArticleTagMinAggregateInputObjectSchema.optional(), _max: ArticleTagMaxAggregateInputObjectSchema.optional() }).strict() as unknown as z.ZodType; - -export const ArticleTagGroupByZodSchema = z.object({ where: ArticleTagWhereInputObjectSchema.optional(), orderBy: z.union([ArticleTagOrderByWithAggregationInputObjectSchema, ArticleTagOrderByWithAggregationInputObjectSchema.array()]).optional(), having: ArticleTagScalarWhereWithAggregatesInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), by: z.array(ArticleTagScalarFieldEnumSchema), _count: z.union([ z.literal(true), ArticleTagCountAggregateInputObjectSchema ]).optional(), _min: ArticleTagMinAggregateInputObjectSchema.optional(), _max: ArticleTagMaxAggregateInputObjectSchema.optional() }).strict(); - -// File: findUniqueArticleTagLink.schema.ts - -export const ArticleTagLinkFindUniqueSchema: z.ZodType = z.object({ get select(){ return ArticleTagLinkSelectObjectSchema.optional(); }, get include(){ return ArticleTagLinkIncludeObjectSchema.optional(); }, where: ArticleTagLinkWhereUniqueInputObjectSchema }).strict() as unknown as z.ZodType; - -export const ArticleTagLinkFindUniqueZodSchema = z.object({ get select(){ return ArticleTagLinkSelectObjectSchema.optional(); }, get include(){ return ArticleTagLinkIncludeObjectSchema.optional(); }, where: ArticleTagLinkWhereUniqueInputObjectSchema }).strict(); - -// File: findUniqueOrThrowArticleTagLink.schema.ts - -export const ArticleTagLinkFindUniqueOrThrowSchema: z.ZodType = z.object({ get select(){ return ArticleTagLinkSelectObjectSchema.optional(); }, get include(){ return ArticleTagLinkIncludeObjectSchema.optional(); }, where: ArticleTagLinkWhereUniqueInputObjectSchema }).strict() as unknown as z.ZodType; - -export const ArticleTagLinkFindUniqueOrThrowZodSchema = z.object({ get select(){ return ArticleTagLinkSelectObjectSchema.optional(); }, get include(){ return ArticleTagLinkIncludeObjectSchema.optional(); }, where: ArticleTagLinkWhereUniqueInputObjectSchema }).strict(); - -// File: findFirstArticleTagLink.schema.ts - -// Select schema needs to be in file to prevent circular imports -//------------------------------------------------------ - -export const ArticleTagLinkFindFirstSelectSchema__findFirstArticleTagLink_schema: z.ZodType = z.object({ - articleId: z.boolean().optional(), - tagName: z.boolean().optional(), - article: z.boolean().optional(), - tag: z.boolean().optional() - }).strict() as unknown as z.ZodType; - -export const ArticleTagLinkFindFirstSelectZodSchema__findFirstArticleTagLink_schema = z.object({ - articleId: z.boolean().optional(), - tagName: z.boolean().optional(), - article: z.boolean().optional(), - tag: z.boolean().optional() - }).strict(); - -export const ArticleTagLinkFindFirstSchema: z.ZodType = z.object({ get select(){ return ArticleTagLinkFindFirstSelectSchema__findFirstArticleTagLink_schema.optional(); }, get include(){ return ArticleTagLinkIncludeObjectSchema.optional(); }, orderBy: z.union([ArticleTagLinkOrderByWithRelationInputObjectSchema, ArticleTagLinkOrderByWithRelationInputObjectSchema.array()]).optional(), where: ArticleTagLinkWhereInputObjectSchema.optional(), cursor: ArticleTagLinkWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), distinct: z.union([ArticleTagLinkScalarFieldEnumSchema, ArticleTagLinkScalarFieldEnumSchema.array()]).optional() }).strict() as unknown as z.ZodType; - -export const ArticleTagLinkFindFirstZodSchema = z.object({ get select(){ return ArticleTagLinkFindFirstSelectSchema__findFirstArticleTagLink_schema.optional(); }, get include(){ return ArticleTagLinkIncludeObjectSchema.optional(); }, orderBy: z.union([ArticleTagLinkOrderByWithRelationInputObjectSchema, ArticleTagLinkOrderByWithRelationInputObjectSchema.array()]).optional(), where: ArticleTagLinkWhereInputObjectSchema.optional(), cursor: ArticleTagLinkWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), distinct: z.union([ArticleTagLinkScalarFieldEnumSchema, ArticleTagLinkScalarFieldEnumSchema.array()]).optional() }).strict(); - -// File: findFirstOrThrowArticleTagLink.schema.ts - -// Select schema needs to be in file to prevent circular imports -//------------------------------------------------------ - -export const ArticleTagLinkFindFirstOrThrowSelectSchema__findFirstOrThrowArticleTagLink_schema: z.ZodType = z.object({ - articleId: z.boolean().optional(), - tagName: z.boolean().optional(), - article: z.boolean().optional(), - tag: z.boolean().optional() - }).strict() as unknown as z.ZodType; - -export const ArticleTagLinkFindFirstOrThrowSelectZodSchema__findFirstOrThrowArticleTagLink_schema = z.object({ - articleId: z.boolean().optional(), - tagName: z.boolean().optional(), - article: z.boolean().optional(), - tag: z.boolean().optional() - }).strict(); - -export const ArticleTagLinkFindFirstOrThrowSchema: z.ZodType = z.object({ get select(){ return ArticleTagLinkFindFirstOrThrowSelectSchema__findFirstOrThrowArticleTagLink_schema.optional(); }, get include(){ return ArticleTagLinkIncludeObjectSchema.optional(); }, orderBy: z.union([ArticleTagLinkOrderByWithRelationInputObjectSchema, ArticleTagLinkOrderByWithRelationInputObjectSchema.array()]).optional(), where: ArticleTagLinkWhereInputObjectSchema.optional(), cursor: ArticleTagLinkWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), distinct: z.union([ArticleTagLinkScalarFieldEnumSchema, ArticleTagLinkScalarFieldEnumSchema.array()]).optional() }).strict() as unknown as z.ZodType; - -export const ArticleTagLinkFindFirstOrThrowZodSchema = z.object({ get select(){ return ArticleTagLinkFindFirstOrThrowSelectSchema__findFirstOrThrowArticleTagLink_schema.optional(); }, get include(){ return ArticleTagLinkIncludeObjectSchema.optional(); }, orderBy: z.union([ArticleTagLinkOrderByWithRelationInputObjectSchema, ArticleTagLinkOrderByWithRelationInputObjectSchema.array()]).optional(), where: ArticleTagLinkWhereInputObjectSchema.optional(), cursor: ArticleTagLinkWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), distinct: z.union([ArticleTagLinkScalarFieldEnumSchema, ArticleTagLinkScalarFieldEnumSchema.array()]).optional() }).strict(); - -// File: findManyArticleTagLink.schema.ts - -// Select schema needs to be in file to prevent circular imports -//------------------------------------------------------ - -export const ArticleTagLinkFindManySelectSchema__findManyArticleTagLink_schema: z.ZodType = z.object({ - articleId: z.boolean().optional(), - tagName: z.boolean().optional(), - article: z.boolean().optional(), - tag: z.boolean().optional() - }).strict() as unknown as z.ZodType; - -export const ArticleTagLinkFindManySelectZodSchema__findManyArticleTagLink_schema = z.object({ - articleId: z.boolean().optional(), - tagName: z.boolean().optional(), - article: z.boolean().optional(), - tag: z.boolean().optional() - }).strict(); - -export const ArticleTagLinkFindManySchema: z.ZodType = z.object({ get select(){ return ArticleTagLinkFindManySelectSchema__findManyArticleTagLink_schema.optional(); }, get include(){ return ArticleTagLinkIncludeObjectSchema.optional(); }, orderBy: z.union([ArticleTagLinkOrderByWithRelationInputObjectSchema, ArticleTagLinkOrderByWithRelationInputObjectSchema.array()]).optional(), where: ArticleTagLinkWhereInputObjectSchema.optional(), cursor: ArticleTagLinkWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), distinct: z.union([ArticleTagLinkScalarFieldEnumSchema, ArticleTagLinkScalarFieldEnumSchema.array()]).optional() }).strict() as unknown as z.ZodType; - -export const ArticleTagLinkFindManyZodSchema = z.object({ get select(){ return ArticleTagLinkFindManySelectSchema__findManyArticleTagLink_schema.optional(); }, get include(){ return ArticleTagLinkIncludeObjectSchema.optional(); }, orderBy: z.union([ArticleTagLinkOrderByWithRelationInputObjectSchema, ArticleTagLinkOrderByWithRelationInputObjectSchema.array()]).optional(), where: ArticleTagLinkWhereInputObjectSchema.optional(), cursor: ArticleTagLinkWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), distinct: z.union([ArticleTagLinkScalarFieldEnumSchema, ArticleTagLinkScalarFieldEnumSchema.array()]).optional() }).strict(); - -// File: countArticleTagLink.schema.ts - -export const ArticleTagLinkCountSchema: z.ZodType = z.object({ orderBy: z.union([ArticleTagLinkOrderByWithRelationInputObjectSchema, ArticleTagLinkOrderByWithRelationInputObjectSchema.array()]).optional(), where: ArticleTagLinkWhereInputObjectSchema.optional(), cursor: ArticleTagLinkWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), select: z.union([ z.literal(true), ArticleTagLinkCountAggregateInputObjectSchema ]).optional() }).strict() as unknown as z.ZodType; - -export const ArticleTagLinkCountZodSchema = z.object({ orderBy: z.union([ArticleTagLinkOrderByWithRelationInputObjectSchema, ArticleTagLinkOrderByWithRelationInputObjectSchema.array()]).optional(), where: ArticleTagLinkWhereInputObjectSchema.optional(), cursor: ArticleTagLinkWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), select: z.union([ z.literal(true), ArticleTagLinkCountAggregateInputObjectSchema ]).optional() }).strict(); - -// File: createOneArticleTagLink.schema.ts - -export const ArticleTagLinkCreateOneSchema: z.ZodType = z.object({ get select(){ return ArticleTagLinkSelectObjectSchema.optional(); }, get include(){ return ArticleTagLinkIncludeObjectSchema.optional(); }, data: z.union([ArticleTagLinkCreateInputObjectSchema, ArticleTagLinkUncheckedCreateInputObjectSchema]) }).strict() as unknown as z.ZodType; - -export const ArticleTagLinkCreateOneZodSchema = z.object({ get select(){ return ArticleTagLinkSelectObjectSchema.optional(); }, get include(){ return ArticleTagLinkIncludeObjectSchema.optional(); }, data: z.union([ArticleTagLinkCreateInputObjectSchema, ArticleTagLinkUncheckedCreateInputObjectSchema]) }).strict(); - -// File: createManyArticleTagLink.schema.ts - -export const ArticleTagLinkCreateManySchema: z.ZodType = z.object({ data: z.union([ ArticleTagLinkCreateManyInputObjectSchema, z.array(ArticleTagLinkCreateManyInputObjectSchema) ]), skipDuplicates: z.boolean().optional() }).strict() as unknown as z.ZodType; - -export const ArticleTagLinkCreateManyZodSchema = z.object({ data: z.union([ ArticleTagLinkCreateManyInputObjectSchema, z.array(ArticleTagLinkCreateManyInputObjectSchema) ]), skipDuplicates: z.boolean().optional() }).strict(); - -// File: createManyAndReturnArticleTagLink.schema.ts - -export const ArticleTagLinkCreateManyAndReturnSchema: z.ZodType = z.object({ get select(){ return ArticleTagLinkSelectObjectSchema.optional(); }, data: z.union([ ArticleTagLinkCreateManyInputObjectSchema, z.array(ArticleTagLinkCreateManyInputObjectSchema) ]), skipDuplicates: z.boolean().optional() }).strict() as unknown as z.ZodType; - -export const ArticleTagLinkCreateManyAndReturnZodSchema = z.object({ get select(){ return ArticleTagLinkSelectObjectSchema.optional(); }, data: z.union([ ArticleTagLinkCreateManyInputObjectSchema, z.array(ArticleTagLinkCreateManyInputObjectSchema) ]), skipDuplicates: z.boolean().optional() }).strict(); - -// File: deleteOneArticleTagLink.schema.ts - -export const ArticleTagLinkDeleteOneSchema: z.ZodType = z.object({ get select(){ return ArticleTagLinkSelectObjectSchema.optional(); }, get include(){ return ArticleTagLinkIncludeObjectSchema.optional(); }, where: ArticleTagLinkWhereUniqueInputObjectSchema }).strict() as unknown as z.ZodType; - -export const ArticleTagLinkDeleteOneZodSchema = z.object({ get select(){ return ArticleTagLinkSelectObjectSchema.optional(); }, get include(){ return ArticleTagLinkIncludeObjectSchema.optional(); }, where: ArticleTagLinkWhereUniqueInputObjectSchema }).strict(); - -// File: deleteManyArticleTagLink.schema.ts - -export const ArticleTagLinkDeleteManySchema: z.ZodType = z.object({ where: ArticleTagLinkWhereInputObjectSchema.optional() }).strict() as unknown as z.ZodType; - -export const ArticleTagLinkDeleteManyZodSchema = z.object({ where: ArticleTagLinkWhereInputObjectSchema.optional() }).strict(); - -// File: updateOneArticleTagLink.schema.ts - -export const ArticleTagLinkUpdateOneSchema: z.ZodType = z.object({ get select(){ return ArticleTagLinkSelectObjectSchema.optional(); }, get include(){ return ArticleTagLinkIncludeObjectSchema.optional(); }, data: z.union([ArticleTagLinkUpdateInputObjectSchema, ArticleTagLinkUncheckedUpdateInputObjectSchema]), where: ArticleTagLinkWhereUniqueInputObjectSchema }).strict() as unknown as z.ZodType; - -export const ArticleTagLinkUpdateOneZodSchema = z.object({ get select(){ return ArticleTagLinkSelectObjectSchema.optional(); }, get include(){ return ArticleTagLinkIncludeObjectSchema.optional(); }, data: z.union([ArticleTagLinkUpdateInputObjectSchema, ArticleTagLinkUncheckedUpdateInputObjectSchema]), where: ArticleTagLinkWhereUniqueInputObjectSchema }).strict(); - -// File: updateManyArticleTagLink.schema.ts - -export const ArticleTagLinkUpdateManySchema: z.ZodType = z.object({ data: ArticleTagLinkUpdateManyMutationInputObjectSchema, where: ArticleTagLinkWhereInputObjectSchema.optional() }).strict() as unknown as z.ZodType; - -export const ArticleTagLinkUpdateManyZodSchema = z.object({ data: ArticleTagLinkUpdateManyMutationInputObjectSchema, where: ArticleTagLinkWhereInputObjectSchema.optional() }).strict(); - -// File: updateManyAndReturnArticleTagLink.schema.ts - -export const ArticleTagLinkUpdateManyAndReturnSchema: z.ZodType = z.object({ get select(){ return ArticleTagLinkSelectObjectSchema.optional(); }, data: ArticleTagLinkUpdateManyMutationInputObjectSchema, where: ArticleTagLinkWhereInputObjectSchema.optional() }).strict() as unknown as z.ZodType; - -export const ArticleTagLinkUpdateManyAndReturnZodSchema = z.object({ get select(){ return ArticleTagLinkSelectObjectSchema.optional(); }, data: ArticleTagLinkUpdateManyMutationInputObjectSchema, where: ArticleTagLinkWhereInputObjectSchema.optional() }).strict(); - -// File: upsertOneArticleTagLink.schema.ts - -export const ArticleTagLinkUpsertOneSchema: z.ZodType = z.object({ get select(){ return ArticleTagLinkSelectObjectSchema.optional(); }, get include(){ return ArticleTagLinkIncludeObjectSchema.optional(); }, where: ArticleTagLinkWhereUniqueInputObjectSchema, create: z.union([ ArticleTagLinkCreateInputObjectSchema, ArticleTagLinkUncheckedCreateInputObjectSchema ]), update: z.union([ ArticleTagLinkUpdateInputObjectSchema, ArticleTagLinkUncheckedUpdateInputObjectSchema ]) }).strict() as unknown as z.ZodType; - -export const ArticleTagLinkUpsertOneZodSchema = z.object({ get select(){ return ArticleTagLinkSelectObjectSchema.optional(); }, get include(){ return ArticleTagLinkIncludeObjectSchema.optional(); }, where: ArticleTagLinkWhereUniqueInputObjectSchema, create: z.union([ ArticleTagLinkCreateInputObjectSchema, ArticleTagLinkUncheckedCreateInputObjectSchema ]), update: z.union([ ArticleTagLinkUpdateInputObjectSchema, ArticleTagLinkUncheckedUpdateInputObjectSchema ]) }).strict(); - -// File: aggregateArticleTagLink.schema.ts - -export const ArticleTagLinkAggregateSchema: z.ZodType = z.object({ orderBy: z.union([ArticleTagLinkOrderByWithRelationInputObjectSchema, ArticleTagLinkOrderByWithRelationInputObjectSchema.array()]).optional(), where: ArticleTagLinkWhereInputObjectSchema.optional(), cursor: ArticleTagLinkWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), _count: z.union([ z.literal(true), ArticleTagLinkCountAggregateInputObjectSchema ]).optional(), _min: ArticleTagLinkMinAggregateInputObjectSchema.optional(), _max: ArticleTagLinkMaxAggregateInputObjectSchema.optional() }).strict() as unknown as z.ZodType; - -export const ArticleTagLinkAggregateZodSchema = z.object({ orderBy: z.union([ArticleTagLinkOrderByWithRelationInputObjectSchema, ArticleTagLinkOrderByWithRelationInputObjectSchema.array()]).optional(), where: ArticleTagLinkWhereInputObjectSchema.optional(), cursor: ArticleTagLinkWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), _count: z.union([ z.literal(true), ArticleTagLinkCountAggregateInputObjectSchema ]).optional(), _min: ArticleTagLinkMinAggregateInputObjectSchema.optional(), _max: ArticleTagLinkMaxAggregateInputObjectSchema.optional() }).strict(); - -// File: groupByArticleTagLink.schema.ts - -export const ArticleTagLinkGroupBySchema: z.ZodType = z.object({ where: ArticleTagLinkWhereInputObjectSchema.optional(), orderBy: z.union([ArticleTagLinkOrderByWithAggregationInputObjectSchema, ArticleTagLinkOrderByWithAggregationInputObjectSchema.array()]).optional(), having: ArticleTagLinkScalarWhereWithAggregatesInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), by: z.array(ArticleTagLinkScalarFieldEnumSchema), _count: z.union([ z.literal(true), ArticleTagLinkCountAggregateInputObjectSchema ]).optional(), _min: ArticleTagLinkMinAggregateInputObjectSchema.optional(), _max: ArticleTagLinkMaxAggregateInputObjectSchema.optional() }).strict() as unknown as z.ZodType; - -export const ArticleTagLinkGroupByZodSchema = z.object({ where: ArticleTagLinkWhereInputObjectSchema.optional(), orderBy: z.union([ArticleTagLinkOrderByWithAggregationInputObjectSchema, ArticleTagLinkOrderByWithAggregationInputObjectSchema.array()]).optional(), having: ArticleTagLinkScalarWhereWithAggregatesInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), by: z.array(ArticleTagLinkScalarFieldEnumSchema), _count: z.union([ z.literal(true), ArticleTagLinkCountAggregateInputObjectSchema ]).optional(), _min: ArticleTagLinkMinAggregateInputObjectSchema.optional(), _max: ArticleTagLinkMaxAggregateInputObjectSchema.optional() }).strict(); - -// File: findUniqueTask.schema.ts - -export const TaskFindUniqueSchema: z.ZodType = z.object({ get select(){ return TaskSelectObjectSchema.optional(); }, get include(){ return TaskIncludeObjectSchema.optional(); }, where: TaskWhereUniqueInputObjectSchema }).strict() as unknown as z.ZodType; - -export const TaskFindUniqueZodSchema = z.object({ get select(){ return TaskSelectObjectSchema.optional(); }, get include(){ return TaskIncludeObjectSchema.optional(); }, where: TaskWhereUniqueInputObjectSchema }).strict(); - -// File: findUniqueOrThrowTask.schema.ts - -export const TaskFindUniqueOrThrowSchema: z.ZodType = z.object({ get select(){ return TaskSelectObjectSchema.optional(); }, get include(){ return TaskIncludeObjectSchema.optional(); }, where: TaskWhereUniqueInputObjectSchema }).strict() as unknown as z.ZodType; - -export const TaskFindUniqueOrThrowZodSchema = z.object({ get select(){ return TaskSelectObjectSchema.optional(); }, get include(){ return TaskIncludeObjectSchema.optional(); }, where: TaskWhereUniqueInputObjectSchema }).strict(); - -// File: findFirstTask.schema.ts - -// Select schema needs to be in file to prevent circular imports -//------------------------------------------------------ - -export const TaskFindFirstSelectSchema__findFirstTask_schema: z.ZodType = z.object({ - id: z.boolean().optional(), - type: z.boolean().optional(), - status: z.boolean().optional(), - payload: z.boolean().optional(), - createdAt: z.boolean().optional(), - scheduledAt: z.boolean().optional(), - processedAt: z.boolean().optional(), - recurringTaskId: z.boolean().optional(), - recurringTask: z.boolean().optional(), - attendancePools: z.boolean().optional(), - notifications: z.boolean().optional(), - _count: z.boolean().optional() - }).strict() as unknown as z.ZodType; - -export const TaskFindFirstSelectZodSchema__findFirstTask_schema = z.object({ - id: z.boolean().optional(), - type: z.boolean().optional(), - status: z.boolean().optional(), - payload: z.boolean().optional(), - createdAt: z.boolean().optional(), - scheduledAt: z.boolean().optional(), - processedAt: z.boolean().optional(), - recurringTaskId: z.boolean().optional(), - recurringTask: z.boolean().optional(), - attendancePools: z.boolean().optional(), - notifications: z.boolean().optional(), - _count: z.boolean().optional() - }).strict(); - -export const TaskFindFirstSchema: z.ZodType = z.object({ get select(){ return TaskFindFirstSelectSchema__findFirstTask_schema.optional(); }, get include(){ return TaskIncludeObjectSchema.optional(); }, orderBy: z.union([TaskOrderByWithRelationInputObjectSchema, TaskOrderByWithRelationInputObjectSchema.array()]).optional(), where: TaskWhereInputObjectSchema.optional(), cursor: TaskWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), distinct: z.union([TaskScalarFieldEnumSchema, TaskScalarFieldEnumSchema.array()]).optional() }).strict() as unknown as z.ZodType; - -export const TaskFindFirstZodSchema = z.object({ get select(){ return TaskFindFirstSelectSchema__findFirstTask_schema.optional(); }, get include(){ return TaskIncludeObjectSchema.optional(); }, orderBy: z.union([TaskOrderByWithRelationInputObjectSchema, TaskOrderByWithRelationInputObjectSchema.array()]).optional(), where: TaskWhereInputObjectSchema.optional(), cursor: TaskWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), distinct: z.union([TaskScalarFieldEnumSchema, TaskScalarFieldEnumSchema.array()]).optional() }).strict(); - -// File: findFirstOrThrowTask.schema.ts - -// Select schema needs to be in file to prevent circular imports -//------------------------------------------------------ - -export const TaskFindFirstOrThrowSelectSchema__findFirstOrThrowTask_schema: z.ZodType = z.object({ - id: z.boolean().optional(), - type: z.boolean().optional(), - status: z.boolean().optional(), - payload: z.boolean().optional(), - createdAt: z.boolean().optional(), - scheduledAt: z.boolean().optional(), - processedAt: z.boolean().optional(), - recurringTaskId: z.boolean().optional(), - recurringTask: z.boolean().optional(), - attendancePools: z.boolean().optional(), - notifications: z.boolean().optional(), - _count: z.boolean().optional() - }).strict() as unknown as z.ZodType; - -export const TaskFindFirstOrThrowSelectZodSchema__findFirstOrThrowTask_schema = z.object({ - id: z.boolean().optional(), - type: z.boolean().optional(), - status: z.boolean().optional(), - payload: z.boolean().optional(), - createdAt: z.boolean().optional(), - scheduledAt: z.boolean().optional(), - processedAt: z.boolean().optional(), - recurringTaskId: z.boolean().optional(), - recurringTask: z.boolean().optional(), - attendancePools: z.boolean().optional(), - notifications: z.boolean().optional(), - _count: z.boolean().optional() - }).strict(); - -export const TaskFindFirstOrThrowSchema: z.ZodType = z.object({ get select(){ return TaskFindFirstOrThrowSelectSchema__findFirstOrThrowTask_schema.optional(); }, get include(){ return TaskIncludeObjectSchema.optional(); }, orderBy: z.union([TaskOrderByWithRelationInputObjectSchema, TaskOrderByWithRelationInputObjectSchema.array()]).optional(), where: TaskWhereInputObjectSchema.optional(), cursor: TaskWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), distinct: z.union([TaskScalarFieldEnumSchema, TaskScalarFieldEnumSchema.array()]).optional() }).strict() as unknown as z.ZodType; - -export const TaskFindFirstOrThrowZodSchema = z.object({ get select(){ return TaskFindFirstOrThrowSelectSchema__findFirstOrThrowTask_schema.optional(); }, get include(){ return TaskIncludeObjectSchema.optional(); }, orderBy: z.union([TaskOrderByWithRelationInputObjectSchema, TaskOrderByWithRelationInputObjectSchema.array()]).optional(), where: TaskWhereInputObjectSchema.optional(), cursor: TaskWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), distinct: z.union([TaskScalarFieldEnumSchema, TaskScalarFieldEnumSchema.array()]).optional() }).strict(); - -// File: findManyTask.schema.ts - -// Select schema needs to be in file to prevent circular imports -//------------------------------------------------------ - -export const TaskFindManySelectSchema__findManyTask_schema: z.ZodType = z.object({ - id: z.boolean().optional(), - type: z.boolean().optional(), - status: z.boolean().optional(), - payload: z.boolean().optional(), - createdAt: z.boolean().optional(), - scheduledAt: z.boolean().optional(), - processedAt: z.boolean().optional(), - recurringTaskId: z.boolean().optional(), - recurringTask: z.boolean().optional(), - attendancePools: z.boolean().optional(), - notifications: z.boolean().optional(), - _count: z.boolean().optional() - }).strict() as unknown as z.ZodType; - -export const TaskFindManySelectZodSchema__findManyTask_schema = z.object({ - id: z.boolean().optional(), - type: z.boolean().optional(), - status: z.boolean().optional(), - payload: z.boolean().optional(), - createdAt: z.boolean().optional(), - scheduledAt: z.boolean().optional(), - processedAt: z.boolean().optional(), - recurringTaskId: z.boolean().optional(), - recurringTask: z.boolean().optional(), - attendancePools: z.boolean().optional(), - notifications: z.boolean().optional(), - _count: z.boolean().optional() - }).strict(); - -export const TaskFindManySchema: z.ZodType = z.object({ get select(){ return TaskFindManySelectSchema__findManyTask_schema.optional(); }, get include(){ return TaskIncludeObjectSchema.optional(); }, orderBy: z.union([TaskOrderByWithRelationInputObjectSchema, TaskOrderByWithRelationInputObjectSchema.array()]).optional(), where: TaskWhereInputObjectSchema.optional(), cursor: TaskWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), distinct: z.union([TaskScalarFieldEnumSchema, TaskScalarFieldEnumSchema.array()]).optional() }).strict() as unknown as z.ZodType; - -export const TaskFindManyZodSchema = z.object({ get select(){ return TaskFindManySelectSchema__findManyTask_schema.optional(); }, get include(){ return TaskIncludeObjectSchema.optional(); }, orderBy: z.union([TaskOrderByWithRelationInputObjectSchema, TaskOrderByWithRelationInputObjectSchema.array()]).optional(), where: TaskWhereInputObjectSchema.optional(), cursor: TaskWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), distinct: z.union([TaskScalarFieldEnumSchema, TaskScalarFieldEnumSchema.array()]).optional() }).strict(); - -// File: countTask.schema.ts - -export const TaskCountSchema: z.ZodType = z.object({ orderBy: z.union([TaskOrderByWithRelationInputObjectSchema, TaskOrderByWithRelationInputObjectSchema.array()]).optional(), where: TaskWhereInputObjectSchema.optional(), cursor: TaskWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), select: z.union([ z.literal(true), TaskCountAggregateInputObjectSchema ]).optional() }).strict() as unknown as z.ZodType; - -export const TaskCountZodSchema = z.object({ orderBy: z.union([TaskOrderByWithRelationInputObjectSchema, TaskOrderByWithRelationInputObjectSchema.array()]).optional(), where: TaskWhereInputObjectSchema.optional(), cursor: TaskWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), select: z.union([ z.literal(true), TaskCountAggregateInputObjectSchema ]).optional() }).strict(); - -// File: createOneTask.schema.ts - -export const TaskCreateOneSchema: z.ZodType = z.object({ get select(){ return TaskSelectObjectSchema.optional(); }, get include(){ return TaskIncludeObjectSchema.optional(); }, data: z.union([TaskCreateInputObjectSchema, TaskUncheckedCreateInputObjectSchema]) }).strict() as unknown as z.ZodType; - -export const TaskCreateOneZodSchema = z.object({ get select(){ return TaskSelectObjectSchema.optional(); }, get include(){ return TaskIncludeObjectSchema.optional(); }, data: z.union([TaskCreateInputObjectSchema, TaskUncheckedCreateInputObjectSchema]) }).strict(); - -// File: createManyTask.schema.ts - -export const TaskCreateManySchema: z.ZodType = z.object({ data: z.union([ TaskCreateManyInputObjectSchema, z.array(TaskCreateManyInputObjectSchema) ]), skipDuplicates: z.boolean().optional() }).strict() as unknown as z.ZodType; - -export const TaskCreateManyZodSchema = z.object({ data: z.union([ TaskCreateManyInputObjectSchema, z.array(TaskCreateManyInputObjectSchema) ]), skipDuplicates: z.boolean().optional() }).strict(); - -// File: createManyAndReturnTask.schema.ts - -export const TaskCreateManyAndReturnSchema: z.ZodType = z.object({ get select(){ return TaskSelectObjectSchema.optional(); }, data: z.union([ TaskCreateManyInputObjectSchema, z.array(TaskCreateManyInputObjectSchema) ]), skipDuplicates: z.boolean().optional() }).strict() as unknown as z.ZodType; - -export const TaskCreateManyAndReturnZodSchema = z.object({ get select(){ return TaskSelectObjectSchema.optional(); }, data: z.union([ TaskCreateManyInputObjectSchema, z.array(TaskCreateManyInputObjectSchema) ]), skipDuplicates: z.boolean().optional() }).strict(); - -// File: deleteOneTask.schema.ts - -export const TaskDeleteOneSchema: z.ZodType = z.object({ get select(){ return TaskSelectObjectSchema.optional(); }, get include(){ return TaskIncludeObjectSchema.optional(); }, where: TaskWhereUniqueInputObjectSchema }).strict() as unknown as z.ZodType; - -export const TaskDeleteOneZodSchema = z.object({ get select(){ return TaskSelectObjectSchema.optional(); }, get include(){ return TaskIncludeObjectSchema.optional(); }, where: TaskWhereUniqueInputObjectSchema }).strict(); - -// File: deleteManyTask.schema.ts - -export const TaskDeleteManySchema: z.ZodType = z.object({ where: TaskWhereInputObjectSchema.optional() }).strict() as unknown as z.ZodType; - -export const TaskDeleteManyZodSchema = z.object({ where: TaskWhereInputObjectSchema.optional() }).strict(); - -// File: updateOneTask.schema.ts - -export const TaskUpdateOneSchema: z.ZodType = z.object({ get select(){ return TaskSelectObjectSchema.optional(); }, get include(){ return TaskIncludeObjectSchema.optional(); }, data: z.union([TaskUpdateInputObjectSchema, TaskUncheckedUpdateInputObjectSchema]), where: TaskWhereUniqueInputObjectSchema }).strict() as unknown as z.ZodType; - -export const TaskUpdateOneZodSchema = z.object({ get select(){ return TaskSelectObjectSchema.optional(); }, get include(){ return TaskIncludeObjectSchema.optional(); }, data: z.union([TaskUpdateInputObjectSchema, TaskUncheckedUpdateInputObjectSchema]), where: TaskWhereUniqueInputObjectSchema }).strict(); - -// File: updateManyTask.schema.ts - -export const TaskUpdateManySchema: z.ZodType = z.object({ data: TaskUpdateManyMutationInputObjectSchema, where: TaskWhereInputObjectSchema.optional() }).strict() as unknown as z.ZodType; - -export const TaskUpdateManyZodSchema = z.object({ data: TaskUpdateManyMutationInputObjectSchema, where: TaskWhereInputObjectSchema.optional() }).strict(); - -// File: updateManyAndReturnTask.schema.ts - -export const TaskUpdateManyAndReturnSchema: z.ZodType = z.object({ get select(){ return TaskSelectObjectSchema.optional(); }, data: TaskUpdateManyMutationInputObjectSchema, where: TaskWhereInputObjectSchema.optional() }).strict() as unknown as z.ZodType; - -export const TaskUpdateManyAndReturnZodSchema = z.object({ get select(){ return TaskSelectObjectSchema.optional(); }, data: TaskUpdateManyMutationInputObjectSchema, where: TaskWhereInputObjectSchema.optional() }).strict(); - -// File: upsertOneTask.schema.ts - -export const TaskUpsertOneSchema: z.ZodType = z.object({ get select(){ return TaskSelectObjectSchema.optional(); }, get include(){ return TaskIncludeObjectSchema.optional(); }, where: TaskWhereUniqueInputObjectSchema, create: z.union([ TaskCreateInputObjectSchema, TaskUncheckedCreateInputObjectSchema ]), update: z.union([ TaskUpdateInputObjectSchema, TaskUncheckedUpdateInputObjectSchema ]) }).strict() as unknown as z.ZodType; - -export const TaskUpsertOneZodSchema = z.object({ get select(){ return TaskSelectObjectSchema.optional(); }, get include(){ return TaskIncludeObjectSchema.optional(); }, where: TaskWhereUniqueInputObjectSchema, create: z.union([ TaskCreateInputObjectSchema, TaskUncheckedCreateInputObjectSchema ]), update: z.union([ TaskUpdateInputObjectSchema, TaskUncheckedUpdateInputObjectSchema ]) }).strict(); - -// File: aggregateTask.schema.ts - -export const TaskAggregateSchema: z.ZodType = z.object({ orderBy: z.union([TaskOrderByWithRelationInputObjectSchema, TaskOrderByWithRelationInputObjectSchema.array()]).optional(), where: TaskWhereInputObjectSchema.optional(), cursor: TaskWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), _count: z.union([ z.literal(true), TaskCountAggregateInputObjectSchema ]).optional(), _min: TaskMinAggregateInputObjectSchema.optional(), _max: TaskMaxAggregateInputObjectSchema.optional() }).strict() as unknown as z.ZodType; - -export const TaskAggregateZodSchema = z.object({ orderBy: z.union([TaskOrderByWithRelationInputObjectSchema, TaskOrderByWithRelationInputObjectSchema.array()]).optional(), where: TaskWhereInputObjectSchema.optional(), cursor: TaskWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), _count: z.union([ z.literal(true), TaskCountAggregateInputObjectSchema ]).optional(), _min: TaskMinAggregateInputObjectSchema.optional(), _max: TaskMaxAggregateInputObjectSchema.optional() }).strict(); - -// File: groupByTask.schema.ts - -export const TaskGroupBySchema: z.ZodType = z.object({ where: TaskWhereInputObjectSchema.optional(), orderBy: z.union([TaskOrderByWithAggregationInputObjectSchema, TaskOrderByWithAggregationInputObjectSchema.array()]).optional(), having: TaskScalarWhereWithAggregatesInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), by: z.array(TaskScalarFieldEnumSchema), _count: z.union([ z.literal(true), TaskCountAggregateInputObjectSchema ]).optional(), _min: TaskMinAggregateInputObjectSchema.optional(), _max: TaskMaxAggregateInputObjectSchema.optional() }).strict() as unknown as z.ZodType; - -export const TaskGroupByZodSchema = z.object({ where: TaskWhereInputObjectSchema.optional(), orderBy: z.union([TaskOrderByWithAggregationInputObjectSchema, TaskOrderByWithAggregationInputObjectSchema.array()]).optional(), having: TaskScalarWhereWithAggregatesInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), by: z.array(TaskScalarFieldEnumSchema), _count: z.union([ z.literal(true), TaskCountAggregateInputObjectSchema ]).optional(), _min: TaskMinAggregateInputObjectSchema.optional(), _max: TaskMaxAggregateInputObjectSchema.optional() }).strict(); - -// File: findUniqueRecurringTask.schema.ts - -export const RecurringTaskFindUniqueSchema: z.ZodType = z.object({ get select(){ return RecurringTaskSelectObjectSchema.optional(); }, get include(){ return RecurringTaskIncludeObjectSchema.optional(); }, where: RecurringTaskWhereUniqueInputObjectSchema }).strict() as unknown as z.ZodType; - -export const RecurringTaskFindUniqueZodSchema = z.object({ get select(){ return RecurringTaskSelectObjectSchema.optional(); }, get include(){ return RecurringTaskIncludeObjectSchema.optional(); }, where: RecurringTaskWhereUniqueInputObjectSchema }).strict(); - -// File: findUniqueOrThrowRecurringTask.schema.ts - -export const RecurringTaskFindUniqueOrThrowSchema: z.ZodType = z.object({ get select(){ return RecurringTaskSelectObjectSchema.optional(); }, get include(){ return RecurringTaskIncludeObjectSchema.optional(); }, where: RecurringTaskWhereUniqueInputObjectSchema }).strict() as unknown as z.ZodType; - -export const RecurringTaskFindUniqueOrThrowZodSchema = z.object({ get select(){ return RecurringTaskSelectObjectSchema.optional(); }, get include(){ return RecurringTaskIncludeObjectSchema.optional(); }, where: RecurringTaskWhereUniqueInputObjectSchema }).strict(); - -// File: findFirstRecurringTask.schema.ts - -// Select schema needs to be in file to prevent circular imports -//------------------------------------------------------ - -export const RecurringTaskFindFirstSelectSchema__findFirstRecurringTask_schema: z.ZodType = z.object({ - id: z.boolean().optional(), - type: z.boolean().optional(), - payload: z.boolean().optional(), - createdAt: z.boolean().optional(), - schedule: z.boolean().optional(), - lastRunAt: z.boolean().optional(), - nextRunAt: z.boolean().optional(), - tasks: z.boolean().optional(), - _count: z.boolean().optional() - }).strict() as unknown as z.ZodType; - -export const RecurringTaskFindFirstSelectZodSchema__findFirstRecurringTask_schema = z.object({ - id: z.boolean().optional(), - type: z.boolean().optional(), - payload: z.boolean().optional(), - createdAt: z.boolean().optional(), - schedule: z.boolean().optional(), - lastRunAt: z.boolean().optional(), - nextRunAt: z.boolean().optional(), - tasks: z.boolean().optional(), - _count: z.boolean().optional() - }).strict(); - -export const RecurringTaskFindFirstSchema: z.ZodType = z.object({ get select(){ return RecurringTaskFindFirstSelectSchema__findFirstRecurringTask_schema.optional(); }, get include(){ return RecurringTaskIncludeObjectSchema.optional(); }, orderBy: z.union([RecurringTaskOrderByWithRelationInputObjectSchema, RecurringTaskOrderByWithRelationInputObjectSchema.array()]).optional(), where: RecurringTaskWhereInputObjectSchema.optional(), cursor: RecurringTaskWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), distinct: z.union([RecurringTaskScalarFieldEnumSchema, RecurringTaskScalarFieldEnumSchema.array()]).optional() }).strict() as unknown as z.ZodType; - -export const RecurringTaskFindFirstZodSchema = z.object({ get select(){ return RecurringTaskFindFirstSelectSchema__findFirstRecurringTask_schema.optional(); }, get include(){ return RecurringTaskIncludeObjectSchema.optional(); }, orderBy: z.union([RecurringTaskOrderByWithRelationInputObjectSchema, RecurringTaskOrderByWithRelationInputObjectSchema.array()]).optional(), where: RecurringTaskWhereInputObjectSchema.optional(), cursor: RecurringTaskWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), distinct: z.union([RecurringTaskScalarFieldEnumSchema, RecurringTaskScalarFieldEnumSchema.array()]).optional() }).strict(); - -// File: findFirstOrThrowRecurringTask.schema.ts - -// Select schema needs to be in file to prevent circular imports -//------------------------------------------------------ - -export const RecurringTaskFindFirstOrThrowSelectSchema__findFirstOrThrowRecurringTask_schema: z.ZodType = z.object({ - id: z.boolean().optional(), - type: z.boolean().optional(), - payload: z.boolean().optional(), - createdAt: z.boolean().optional(), - schedule: z.boolean().optional(), - lastRunAt: z.boolean().optional(), - nextRunAt: z.boolean().optional(), - tasks: z.boolean().optional(), - _count: z.boolean().optional() - }).strict() as unknown as z.ZodType; - -export const RecurringTaskFindFirstOrThrowSelectZodSchema__findFirstOrThrowRecurringTask_schema = z.object({ - id: z.boolean().optional(), - type: z.boolean().optional(), - payload: z.boolean().optional(), - createdAt: z.boolean().optional(), - schedule: z.boolean().optional(), - lastRunAt: z.boolean().optional(), - nextRunAt: z.boolean().optional(), - tasks: z.boolean().optional(), - _count: z.boolean().optional() - }).strict(); - -export const RecurringTaskFindFirstOrThrowSchema: z.ZodType = z.object({ get select(){ return RecurringTaskFindFirstOrThrowSelectSchema__findFirstOrThrowRecurringTask_schema.optional(); }, get include(){ return RecurringTaskIncludeObjectSchema.optional(); }, orderBy: z.union([RecurringTaskOrderByWithRelationInputObjectSchema, RecurringTaskOrderByWithRelationInputObjectSchema.array()]).optional(), where: RecurringTaskWhereInputObjectSchema.optional(), cursor: RecurringTaskWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), distinct: z.union([RecurringTaskScalarFieldEnumSchema, RecurringTaskScalarFieldEnumSchema.array()]).optional() }).strict() as unknown as z.ZodType; - -export const RecurringTaskFindFirstOrThrowZodSchema = z.object({ get select(){ return RecurringTaskFindFirstOrThrowSelectSchema__findFirstOrThrowRecurringTask_schema.optional(); }, get include(){ return RecurringTaskIncludeObjectSchema.optional(); }, orderBy: z.union([RecurringTaskOrderByWithRelationInputObjectSchema, RecurringTaskOrderByWithRelationInputObjectSchema.array()]).optional(), where: RecurringTaskWhereInputObjectSchema.optional(), cursor: RecurringTaskWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), distinct: z.union([RecurringTaskScalarFieldEnumSchema, RecurringTaskScalarFieldEnumSchema.array()]).optional() }).strict(); - -// File: findManyRecurringTask.schema.ts - -// Select schema needs to be in file to prevent circular imports -//------------------------------------------------------ - -export const RecurringTaskFindManySelectSchema__findManyRecurringTask_schema: z.ZodType = z.object({ - id: z.boolean().optional(), - type: z.boolean().optional(), - payload: z.boolean().optional(), - createdAt: z.boolean().optional(), - schedule: z.boolean().optional(), - lastRunAt: z.boolean().optional(), - nextRunAt: z.boolean().optional(), - tasks: z.boolean().optional(), - _count: z.boolean().optional() - }).strict() as unknown as z.ZodType; - -export const RecurringTaskFindManySelectZodSchema__findManyRecurringTask_schema = z.object({ - id: z.boolean().optional(), - type: z.boolean().optional(), - payload: z.boolean().optional(), - createdAt: z.boolean().optional(), - schedule: z.boolean().optional(), - lastRunAt: z.boolean().optional(), - nextRunAt: z.boolean().optional(), - tasks: z.boolean().optional(), - _count: z.boolean().optional() - }).strict(); - -export const RecurringTaskFindManySchema: z.ZodType = z.object({ get select(){ return RecurringTaskFindManySelectSchema__findManyRecurringTask_schema.optional(); }, get include(){ return RecurringTaskIncludeObjectSchema.optional(); }, orderBy: z.union([RecurringTaskOrderByWithRelationInputObjectSchema, RecurringTaskOrderByWithRelationInputObjectSchema.array()]).optional(), where: RecurringTaskWhereInputObjectSchema.optional(), cursor: RecurringTaskWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), distinct: z.union([RecurringTaskScalarFieldEnumSchema, RecurringTaskScalarFieldEnumSchema.array()]).optional() }).strict() as unknown as z.ZodType; - -export const RecurringTaskFindManyZodSchema = z.object({ get select(){ return RecurringTaskFindManySelectSchema__findManyRecurringTask_schema.optional(); }, get include(){ return RecurringTaskIncludeObjectSchema.optional(); }, orderBy: z.union([RecurringTaskOrderByWithRelationInputObjectSchema, RecurringTaskOrderByWithRelationInputObjectSchema.array()]).optional(), where: RecurringTaskWhereInputObjectSchema.optional(), cursor: RecurringTaskWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), distinct: z.union([RecurringTaskScalarFieldEnumSchema, RecurringTaskScalarFieldEnumSchema.array()]).optional() }).strict(); - -// File: countRecurringTask.schema.ts - -export const RecurringTaskCountSchema: z.ZodType = z.object({ orderBy: z.union([RecurringTaskOrderByWithRelationInputObjectSchema, RecurringTaskOrderByWithRelationInputObjectSchema.array()]).optional(), where: RecurringTaskWhereInputObjectSchema.optional(), cursor: RecurringTaskWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), select: z.union([ z.literal(true), RecurringTaskCountAggregateInputObjectSchema ]).optional() }).strict() as unknown as z.ZodType; - -export const RecurringTaskCountZodSchema = z.object({ orderBy: z.union([RecurringTaskOrderByWithRelationInputObjectSchema, RecurringTaskOrderByWithRelationInputObjectSchema.array()]).optional(), where: RecurringTaskWhereInputObjectSchema.optional(), cursor: RecurringTaskWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), select: z.union([ z.literal(true), RecurringTaskCountAggregateInputObjectSchema ]).optional() }).strict(); - -// File: createOneRecurringTask.schema.ts - -export const RecurringTaskCreateOneSchema: z.ZodType = z.object({ get select(){ return RecurringTaskSelectObjectSchema.optional(); }, get include(){ return RecurringTaskIncludeObjectSchema.optional(); }, data: z.union([RecurringTaskCreateInputObjectSchema, RecurringTaskUncheckedCreateInputObjectSchema]) }).strict() as unknown as z.ZodType; - -export const RecurringTaskCreateOneZodSchema = z.object({ get select(){ return RecurringTaskSelectObjectSchema.optional(); }, get include(){ return RecurringTaskIncludeObjectSchema.optional(); }, data: z.union([RecurringTaskCreateInputObjectSchema, RecurringTaskUncheckedCreateInputObjectSchema]) }).strict(); - -// File: createManyRecurringTask.schema.ts - -export const RecurringTaskCreateManySchema: z.ZodType = z.object({ data: z.union([ RecurringTaskCreateManyInputObjectSchema, z.array(RecurringTaskCreateManyInputObjectSchema) ]), skipDuplicates: z.boolean().optional() }).strict() as unknown as z.ZodType; - -export const RecurringTaskCreateManyZodSchema = z.object({ data: z.union([ RecurringTaskCreateManyInputObjectSchema, z.array(RecurringTaskCreateManyInputObjectSchema) ]), skipDuplicates: z.boolean().optional() }).strict(); - -// File: createManyAndReturnRecurringTask.schema.ts - -export const RecurringTaskCreateManyAndReturnSchema: z.ZodType = z.object({ get select(){ return RecurringTaskSelectObjectSchema.optional(); }, data: z.union([ RecurringTaskCreateManyInputObjectSchema, z.array(RecurringTaskCreateManyInputObjectSchema) ]), skipDuplicates: z.boolean().optional() }).strict() as unknown as z.ZodType; - -export const RecurringTaskCreateManyAndReturnZodSchema = z.object({ get select(){ return RecurringTaskSelectObjectSchema.optional(); }, data: z.union([ RecurringTaskCreateManyInputObjectSchema, z.array(RecurringTaskCreateManyInputObjectSchema) ]), skipDuplicates: z.boolean().optional() }).strict(); - -// File: deleteOneRecurringTask.schema.ts - -export const RecurringTaskDeleteOneSchema: z.ZodType = z.object({ get select(){ return RecurringTaskSelectObjectSchema.optional(); }, get include(){ return RecurringTaskIncludeObjectSchema.optional(); }, where: RecurringTaskWhereUniqueInputObjectSchema }).strict() as unknown as z.ZodType; - -export const RecurringTaskDeleteOneZodSchema = z.object({ get select(){ return RecurringTaskSelectObjectSchema.optional(); }, get include(){ return RecurringTaskIncludeObjectSchema.optional(); }, where: RecurringTaskWhereUniqueInputObjectSchema }).strict(); - -// File: deleteManyRecurringTask.schema.ts - -export const RecurringTaskDeleteManySchema: z.ZodType = z.object({ where: RecurringTaskWhereInputObjectSchema.optional() }).strict() as unknown as z.ZodType; - -export const RecurringTaskDeleteManyZodSchema = z.object({ where: RecurringTaskWhereInputObjectSchema.optional() }).strict(); - -// File: updateOneRecurringTask.schema.ts - -export const RecurringTaskUpdateOneSchema: z.ZodType = z.object({ get select(){ return RecurringTaskSelectObjectSchema.optional(); }, get include(){ return RecurringTaskIncludeObjectSchema.optional(); }, data: z.union([RecurringTaskUpdateInputObjectSchema, RecurringTaskUncheckedUpdateInputObjectSchema]), where: RecurringTaskWhereUniqueInputObjectSchema }).strict() as unknown as z.ZodType; - -export const RecurringTaskUpdateOneZodSchema = z.object({ get select(){ return RecurringTaskSelectObjectSchema.optional(); }, get include(){ return RecurringTaskIncludeObjectSchema.optional(); }, data: z.union([RecurringTaskUpdateInputObjectSchema, RecurringTaskUncheckedUpdateInputObjectSchema]), where: RecurringTaskWhereUniqueInputObjectSchema }).strict(); - -// File: updateManyRecurringTask.schema.ts - -export const RecurringTaskUpdateManySchema: z.ZodType = z.object({ data: RecurringTaskUpdateManyMutationInputObjectSchema, where: RecurringTaskWhereInputObjectSchema.optional() }).strict() as unknown as z.ZodType; - -export const RecurringTaskUpdateManyZodSchema = z.object({ data: RecurringTaskUpdateManyMutationInputObjectSchema, where: RecurringTaskWhereInputObjectSchema.optional() }).strict(); - -// File: updateManyAndReturnRecurringTask.schema.ts - -export const RecurringTaskUpdateManyAndReturnSchema: z.ZodType = z.object({ get select(){ return RecurringTaskSelectObjectSchema.optional(); }, data: RecurringTaskUpdateManyMutationInputObjectSchema, where: RecurringTaskWhereInputObjectSchema.optional() }).strict() as unknown as z.ZodType; - -export const RecurringTaskUpdateManyAndReturnZodSchema = z.object({ get select(){ return RecurringTaskSelectObjectSchema.optional(); }, data: RecurringTaskUpdateManyMutationInputObjectSchema, where: RecurringTaskWhereInputObjectSchema.optional() }).strict(); - -// File: upsertOneRecurringTask.schema.ts - -export const RecurringTaskUpsertOneSchema: z.ZodType = z.object({ get select(){ return RecurringTaskSelectObjectSchema.optional(); }, get include(){ return RecurringTaskIncludeObjectSchema.optional(); }, where: RecurringTaskWhereUniqueInputObjectSchema, create: z.union([ RecurringTaskCreateInputObjectSchema, RecurringTaskUncheckedCreateInputObjectSchema ]), update: z.union([ RecurringTaskUpdateInputObjectSchema, RecurringTaskUncheckedUpdateInputObjectSchema ]) }).strict() as unknown as z.ZodType; - -export const RecurringTaskUpsertOneZodSchema = z.object({ get select(){ return RecurringTaskSelectObjectSchema.optional(); }, get include(){ return RecurringTaskIncludeObjectSchema.optional(); }, where: RecurringTaskWhereUniqueInputObjectSchema, create: z.union([ RecurringTaskCreateInputObjectSchema, RecurringTaskUncheckedCreateInputObjectSchema ]), update: z.union([ RecurringTaskUpdateInputObjectSchema, RecurringTaskUncheckedUpdateInputObjectSchema ]) }).strict(); - -// File: aggregateRecurringTask.schema.ts - -export const RecurringTaskAggregateSchema: z.ZodType = z.object({ orderBy: z.union([RecurringTaskOrderByWithRelationInputObjectSchema, RecurringTaskOrderByWithRelationInputObjectSchema.array()]).optional(), where: RecurringTaskWhereInputObjectSchema.optional(), cursor: RecurringTaskWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), _count: z.union([ z.literal(true), RecurringTaskCountAggregateInputObjectSchema ]).optional(), _min: RecurringTaskMinAggregateInputObjectSchema.optional(), _max: RecurringTaskMaxAggregateInputObjectSchema.optional() }).strict() as unknown as z.ZodType; - -export const RecurringTaskAggregateZodSchema = z.object({ orderBy: z.union([RecurringTaskOrderByWithRelationInputObjectSchema, RecurringTaskOrderByWithRelationInputObjectSchema.array()]).optional(), where: RecurringTaskWhereInputObjectSchema.optional(), cursor: RecurringTaskWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), _count: z.union([ z.literal(true), RecurringTaskCountAggregateInputObjectSchema ]).optional(), _min: RecurringTaskMinAggregateInputObjectSchema.optional(), _max: RecurringTaskMaxAggregateInputObjectSchema.optional() }).strict(); - -// File: groupByRecurringTask.schema.ts - -export const RecurringTaskGroupBySchema: z.ZodType = z.object({ where: RecurringTaskWhereInputObjectSchema.optional(), orderBy: z.union([RecurringTaskOrderByWithAggregationInputObjectSchema, RecurringTaskOrderByWithAggregationInputObjectSchema.array()]).optional(), having: RecurringTaskScalarWhereWithAggregatesInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), by: z.array(RecurringTaskScalarFieldEnumSchema), _count: z.union([ z.literal(true), RecurringTaskCountAggregateInputObjectSchema ]).optional(), _min: RecurringTaskMinAggregateInputObjectSchema.optional(), _max: RecurringTaskMaxAggregateInputObjectSchema.optional() }).strict() as unknown as z.ZodType; - -export const RecurringTaskGroupByZodSchema = z.object({ where: RecurringTaskWhereInputObjectSchema.optional(), orderBy: z.union([RecurringTaskOrderByWithAggregationInputObjectSchema, RecurringTaskOrderByWithAggregationInputObjectSchema.array()]).optional(), having: RecurringTaskScalarWhereWithAggregatesInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), by: z.array(RecurringTaskScalarFieldEnumSchema), _count: z.union([ z.literal(true), RecurringTaskCountAggregateInputObjectSchema ]).optional(), _min: RecurringTaskMinAggregateInputObjectSchema.optional(), _max: RecurringTaskMaxAggregateInputObjectSchema.optional() }).strict(); - -// File: findUniqueFeedbackForm.schema.ts - -export const FeedbackFormFindUniqueSchema: z.ZodType = z.object({ get select(){ return FeedbackFormSelectObjectSchema.optional(); }, get include(){ return FeedbackFormIncludeObjectSchema.optional(); }, where: FeedbackFormWhereUniqueInputObjectSchema }).strict() as unknown as z.ZodType; - -export const FeedbackFormFindUniqueZodSchema = z.object({ get select(){ return FeedbackFormSelectObjectSchema.optional(); }, get include(){ return FeedbackFormIncludeObjectSchema.optional(); }, where: FeedbackFormWhereUniqueInputObjectSchema }).strict(); - -// File: findUniqueOrThrowFeedbackForm.schema.ts - -export const FeedbackFormFindUniqueOrThrowSchema: z.ZodType = z.object({ get select(){ return FeedbackFormSelectObjectSchema.optional(); }, get include(){ return FeedbackFormIncludeObjectSchema.optional(); }, where: FeedbackFormWhereUniqueInputObjectSchema }).strict() as unknown as z.ZodType; - -export const FeedbackFormFindUniqueOrThrowZodSchema = z.object({ get select(){ return FeedbackFormSelectObjectSchema.optional(); }, get include(){ return FeedbackFormIncludeObjectSchema.optional(); }, where: FeedbackFormWhereUniqueInputObjectSchema }).strict(); - -// File: findFirstFeedbackForm.schema.ts - -// Select schema needs to be in file to prevent circular imports -//------------------------------------------------------ - -export const FeedbackFormFindFirstSelectSchema__findFirstFeedbackForm_schema: z.ZodType = z.object({ - id: z.boolean().optional(), - publicResultsToken: z.boolean().optional(), - createdAt: z.boolean().optional(), - updatedAt: z.boolean().optional(), - answerDeadline: z.boolean().optional(), - eventId: z.boolean().optional(), - event: z.boolean().optional(), - questions: z.boolean().optional(), - answers: z.boolean().optional(), - _count: z.boolean().optional() - }).strict() as unknown as z.ZodType; - -export const FeedbackFormFindFirstSelectZodSchema__findFirstFeedbackForm_schema = z.object({ - id: z.boolean().optional(), - publicResultsToken: z.boolean().optional(), - createdAt: z.boolean().optional(), - updatedAt: z.boolean().optional(), - answerDeadline: z.boolean().optional(), - eventId: z.boolean().optional(), - event: z.boolean().optional(), - questions: z.boolean().optional(), - answers: z.boolean().optional(), - _count: z.boolean().optional() - }).strict(); - -export const FeedbackFormFindFirstSchema: z.ZodType = z.object({ get select(){ return FeedbackFormFindFirstSelectSchema__findFirstFeedbackForm_schema.optional(); }, get include(){ return FeedbackFormIncludeObjectSchema.optional(); }, orderBy: z.union([FeedbackFormOrderByWithRelationInputObjectSchema, FeedbackFormOrderByWithRelationInputObjectSchema.array()]).optional(), where: FeedbackFormWhereInputObjectSchema.optional(), cursor: FeedbackFormWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), distinct: z.union([FeedbackFormScalarFieldEnumSchema, FeedbackFormScalarFieldEnumSchema.array()]).optional() }).strict() as unknown as z.ZodType; - -export const FeedbackFormFindFirstZodSchema = z.object({ get select(){ return FeedbackFormFindFirstSelectSchema__findFirstFeedbackForm_schema.optional(); }, get include(){ return FeedbackFormIncludeObjectSchema.optional(); }, orderBy: z.union([FeedbackFormOrderByWithRelationInputObjectSchema, FeedbackFormOrderByWithRelationInputObjectSchema.array()]).optional(), where: FeedbackFormWhereInputObjectSchema.optional(), cursor: FeedbackFormWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), distinct: z.union([FeedbackFormScalarFieldEnumSchema, FeedbackFormScalarFieldEnumSchema.array()]).optional() }).strict(); - -// File: findFirstOrThrowFeedbackForm.schema.ts - -// Select schema needs to be in file to prevent circular imports -//------------------------------------------------------ - -export const FeedbackFormFindFirstOrThrowSelectSchema__findFirstOrThrowFeedbackForm_schema: z.ZodType = z.object({ - id: z.boolean().optional(), - publicResultsToken: z.boolean().optional(), - createdAt: z.boolean().optional(), - updatedAt: z.boolean().optional(), - answerDeadline: z.boolean().optional(), - eventId: z.boolean().optional(), - event: z.boolean().optional(), - questions: z.boolean().optional(), - answers: z.boolean().optional(), - _count: z.boolean().optional() - }).strict() as unknown as z.ZodType; - -export const FeedbackFormFindFirstOrThrowSelectZodSchema__findFirstOrThrowFeedbackForm_schema = z.object({ - id: z.boolean().optional(), - publicResultsToken: z.boolean().optional(), - createdAt: z.boolean().optional(), - updatedAt: z.boolean().optional(), - answerDeadline: z.boolean().optional(), - eventId: z.boolean().optional(), - event: z.boolean().optional(), - questions: z.boolean().optional(), - answers: z.boolean().optional(), - _count: z.boolean().optional() - }).strict(); - -export const FeedbackFormFindFirstOrThrowSchema: z.ZodType = z.object({ get select(){ return FeedbackFormFindFirstOrThrowSelectSchema__findFirstOrThrowFeedbackForm_schema.optional(); }, get include(){ return FeedbackFormIncludeObjectSchema.optional(); }, orderBy: z.union([FeedbackFormOrderByWithRelationInputObjectSchema, FeedbackFormOrderByWithRelationInputObjectSchema.array()]).optional(), where: FeedbackFormWhereInputObjectSchema.optional(), cursor: FeedbackFormWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), distinct: z.union([FeedbackFormScalarFieldEnumSchema, FeedbackFormScalarFieldEnumSchema.array()]).optional() }).strict() as unknown as z.ZodType; - -export const FeedbackFormFindFirstOrThrowZodSchema = z.object({ get select(){ return FeedbackFormFindFirstOrThrowSelectSchema__findFirstOrThrowFeedbackForm_schema.optional(); }, get include(){ return FeedbackFormIncludeObjectSchema.optional(); }, orderBy: z.union([FeedbackFormOrderByWithRelationInputObjectSchema, FeedbackFormOrderByWithRelationInputObjectSchema.array()]).optional(), where: FeedbackFormWhereInputObjectSchema.optional(), cursor: FeedbackFormWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), distinct: z.union([FeedbackFormScalarFieldEnumSchema, FeedbackFormScalarFieldEnumSchema.array()]).optional() }).strict(); - -// File: findManyFeedbackForm.schema.ts - -// Select schema needs to be in file to prevent circular imports -//------------------------------------------------------ - -export const FeedbackFormFindManySelectSchema__findManyFeedbackForm_schema: z.ZodType = z.object({ - id: z.boolean().optional(), - publicResultsToken: z.boolean().optional(), - createdAt: z.boolean().optional(), - updatedAt: z.boolean().optional(), - answerDeadline: z.boolean().optional(), - eventId: z.boolean().optional(), - event: z.boolean().optional(), - questions: z.boolean().optional(), - answers: z.boolean().optional(), - _count: z.boolean().optional() - }).strict() as unknown as z.ZodType; - -export const FeedbackFormFindManySelectZodSchema__findManyFeedbackForm_schema = z.object({ - id: z.boolean().optional(), - publicResultsToken: z.boolean().optional(), - createdAt: z.boolean().optional(), - updatedAt: z.boolean().optional(), - answerDeadline: z.boolean().optional(), - eventId: z.boolean().optional(), - event: z.boolean().optional(), - questions: z.boolean().optional(), - answers: z.boolean().optional(), - _count: z.boolean().optional() - }).strict(); - -export const FeedbackFormFindManySchema: z.ZodType = z.object({ get select(){ return FeedbackFormFindManySelectSchema__findManyFeedbackForm_schema.optional(); }, get include(){ return FeedbackFormIncludeObjectSchema.optional(); }, orderBy: z.union([FeedbackFormOrderByWithRelationInputObjectSchema, FeedbackFormOrderByWithRelationInputObjectSchema.array()]).optional(), where: FeedbackFormWhereInputObjectSchema.optional(), cursor: FeedbackFormWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), distinct: z.union([FeedbackFormScalarFieldEnumSchema, FeedbackFormScalarFieldEnumSchema.array()]).optional() }).strict() as unknown as z.ZodType; - -export const FeedbackFormFindManyZodSchema = z.object({ get select(){ return FeedbackFormFindManySelectSchema__findManyFeedbackForm_schema.optional(); }, get include(){ return FeedbackFormIncludeObjectSchema.optional(); }, orderBy: z.union([FeedbackFormOrderByWithRelationInputObjectSchema, FeedbackFormOrderByWithRelationInputObjectSchema.array()]).optional(), where: FeedbackFormWhereInputObjectSchema.optional(), cursor: FeedbackFormWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), distinct: z.union([FeedbackFormScalarFieldEnumSchema, FeedbackFormScalarFieldEnumSchema.array()]).optional() }).strict(); - -// File: countFeedbackForm.schema.ts - -export const FeedbackFormCountSchema: z.ZodType = z.object({ orderBy: z.union([FeedbackFormOrderByWithRelationInputObjectSchema, FeedbackFormOrderByWithRelationInputObjectSchema.array()]).optional(), where: FeedbackFormWhereInputObjectSchema.optional(), cursor: FeedbackFormWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), select: z.union([ z.literal(true), FeedbackFormCountAggregateInputObjectSchema ]).optional() }).strict() as unknown as z.ZodType; - -export const FeedbackFormCountZodSchema = z.object({ orderBy: z.union([FeedbackFormOrderByWithRelationInputObjectSchema, FeedbackFormOrderByWithRelationInputObjectSchema.array()]).optional(), where: FeedbackFormWhereInputObjectSchema.optional(), cursor: FeedbackFormWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), select: z.union([ z.literal(true), FeedbackFormCountAggregateInputObjectSchema ]).optional() }).strict(); - -// File: createOneFeedbackForm.schema.ts - -export const FeedbackFormCreateOneSchema: z.ZodType = z.object({ get select(){ return FeedbackFormSelectObjectSchema.optional(); }, get include(){ return FeedbackFormIncludeObjectSchema.optional(); }, data: z.union([FeedbackFormCreateInputObjectSchema, FeedbackFormUncheckedCreateInputObjectSchema]) }).strict() as unknown as z.ZodType; - -export const FeedbackFormCreateOneZodSchema = z.object({ get select(){ return FeedbackFormSelectObjectSchema.optional(); }, get include(){ return FeedbackFormIncludeObjectSchema.optional(); }, data: z.union([FeedbackFormCreateInputObjectSchema, FeedbackFormUncheckedCreateInputObjectSchema]) }).strict(); - -// File: createManyFeedbackForm.schema.ts - -export const FeedbackFormCreateManySchema: z.ZodType = z.object({ data: z.union([ FeedbackFormCreateManyInputObjectSchema, z.array(FeedbackFormCreateManyInputObjectSchema) ]), skipDuplicates: z.boolean().optional() }).strict() as unknown as z.ZodType; - -export const FeedbackFormCreateManyZodSchema = z.object({ data: z.union([ FeedbackFormCreateManyInputObjectSchema, z.array(FeedbackFormCreateManyInputObjectSchema) ]), skipDuplicates: z.boolean().optional() }).strict(); - -// File: createManyAndReturnFeedbackForm.schema.ts - -export const FeedbackFormCreateManyAndReturnSchema: z.ZodType = z.object({ get select(){ return FeedbackFormSelectObjectSchema.optional(); }, data: z.union([ FeedbackFormCreateManyInputObjectSchema, z.array(FeedbackFormCreateManyInputObjectSchema) ]), skipDuplicates: z.boolean().optional() }).strict() as unknown as z.ZodType; - -export const FeedbackFormCreateManyAndReturnZodSchema = z.object({ get select(){ return FeedbackFormSelectObjectSchema.optional(); }, data: z.union([ FeedbackFormCreateManyInputObjectSchema, z.array(FeedbackFormCreateManyInputObjectSchema) ]), skipDuplicates: z.boolean().optional() }).strict(); - -// File: deleteOneFeedbackForm.schema.ts - -export const FeedbackFormDeleteOneSchema: z.ZodType = z.object({ get select(){ return FeedbackFormSelectObjectSchema.optional(); }, get include(){ return FeedbackFormIncludeObjectSchema.optional(); }, where: FeedbackFormWhereUniqueInputObjectSchema }).strict() as unknown as z.ZodType; - -export const FeedbackFormDeleteOneZodSchema = z.object({ get select(){ return FeedbackFormSelectObjectSchema.optional(); }, get include(){ return FeedbackFormIncludeObjectSchema.optional(); }, where: FeedbackFormWhereUniqueInputObjectSchema }).strict(); - -// File: deleteManyFeedbackForm.schema.ts - -export const FeedbackFormDeleteManySchema: z.ZodType = z.object({ where: FeedbackFormWhereInputObjectSchema.optional() }).strict() as unknown as z.ZodType; - -export const FeedbackFormDeleteManyZodSchema = z.object({ where: FeedbackFormWhereInputObjectSchema.optional() }).strict(); - -// File: updateOneFeedbackForm.schema.ts - -export const FeedbackFormUpdateOneSchema: z.ZodType = z.object({ get select(){ return FeedbackFormSelectObjectSchema.optional(); }, get include(){ return FeedbackFormIncludeObjectSchema.optional(); }, data: z.union([FeedbackFormUpdateInputObjectSchema, FeedbackFormUncheckedUpdateInputObjectSchema]), where: FeedbackFormWhereUniqueInputObjectSchema }).strict() as unknown as z.ZodType; - -export const FeedbackFormUpdateOneZodSchema = z.object({ get select(){ return FeedbackFormSelectObjectSchema.optional(); }, get include(){ return FeedbackFormIncludeObjectSchema.optional(); }, data: z.union([FeedbackFormUpdateInputObjectSchema, FeedbackFormUncheckedUpdateInputObjectSchema]), where: FeedbackFormWhereUniqueInputObjectSchema }).strict(); - -// File: updateManyFeedbackForm.schema.ts - -export const FeedbackFormUpdateManySchema: z.ZodType = z.object({ data: FeedbackFormUpdateManyMutationInputObjectSchema, where: FeedbackFormWhereInputObjectSchema.optional() }).strict() as unknown as z.ZodType; - -export const FeedbackFormUpdateManyZodSchema = z.object({ data: FeedbackFormUpdateManyMutationInputObjectSchema, where: FeedbackFormWhereInputObjectSchema.optional() }).strict(); - -// File: updateManyAndReturnFeedbackForm.schema.ts - -export const FeedbackFormUpdateManyAndReturnSchema: z.ZodType = z.object({ get select(){ return FeedbackFormSelectObjectSchema.optional(); }, data: FeedbackFormUpdateManyMutationInputObjectSchema, where: FeedbackFormWhereInputObjectSchema.optional() }).strict() as unknown as z.ZodType; - -export const FeedbackFormUpdateManyAndReturnZodSchema = z.object({ get select(){ return FeedbackFormSelectObjectSchema.optional(); }, data: FeedbackFormUpdateManyMutationInputObjectSchema, where: FeedbackFormWhereInputObjectSchema.optional() }).strict(); - -// File: upsertOneFeedbackForm.schema.ts - -export const FeedbackFormUpsertOneSchema: z.ZodType = z.object({ get select(){ return FeedbackFormSelectObjectSchema.optional(); }, get include(){ return FeedbackFormIncludeObjectSchema.optional(); }, where: FeedbackFormWhereUniqueInputObjectSchema, create: z.union([ FeedbackFormCreateInputObjectSchema, FeedbackFormUncheckedCreateInputObjectSchema ]), update: z.union([ FeedbackFormUpdateInputObjectSchema, FeedbackFormUncheckedUpdateInputObjectSchema ]) }).strict() as unknown as z.ZodType; - -export const FeedbackFormUpsertOneZodSchema = z.object({ get select(){ return FeedbackFormSelectObjectSchema.optional(); }, get include(){ return FeedbackFormIncludeObjectSchema.optional(); }, where: FeedbackFormWhereUniqueInputObjectSchema, create: z.union([ FeedbackFormCreateInputObjectSchema, FeedbackFormUncheckedCreateInputObjectSchema ]), update: z.union([ FeedbackFormUpdateInputObjectSchema, FeedbackFormUncheckedUpdateInputObjectSchema ]) }).strict(); - -// File: aggregateFeedbackForm.schema.ts - -export const FeedbackFormAggregateSchema: z.ZodType = z.object({ orderBy: z.union([FeedbackFormOrderByWithRelationInputObjectSchema, FeedbackFormOrderByWithRelationInputObjectSchema.array()]).optional(), where: FeedbackFormWhereInputObjectSchema.optional(), cursor: FeedbackFormWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), _count: z.union([ z.literal(true), FeedbackFormCountAggregateInputObjectSchema ]).optional(), _min: FeedbackFormMinAggregateInputObjectSchema.optional(), _max: FeedbackFormMaxAggregateInputObjectSchema.optional() }).strict() as unknown as z.ZodType; - -export const FeedbackFormAggregateZodSchema = z.object({ orderBy: z.union([FeedbackFormOrderByWithRelationInputObjectSchema, FeedbackFormOrderByWithRelationInputObjectSchema.array()]).optional(), where: FeedbackFormWhereInputObjectSchema.optional(), cursor: FeedbackFormWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), _count: z.union([ z.literal(true), FeedbackFormCountAggregateInputObjectSchema ]).optional(), _min: FeedbackFormMinAggregateInputObjectSchema.optional(), _max: FeedbackFormMaxAggregateInputObjectSchema.optional() }).strict(); - -// File: groupByFeedbackForm.schema.ts - -export const FeedbackFormGroupBySchema: z.ZodType = z.object({ where: FeedbackFormWhereInputObjectSchema.optional(), orderBy: z.union([FeedbackFormOrderByWithAggregationInputObjectSchema, FeedbackFormOrderByWithAggregationInputObjectSchema.array()]).optional(), having: FeedbackFormScalarWhereWithAggregatesInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), by: z.array(FeedbackFormScalarFieldEnumSchema), _count: z.union([ z.literal(true), FeedbackFormCountAggregateInputObjectSchema ]).optional(), _min: FeedbackFormMinAggregateInputObjectSchema.optional(), _max: FeedbackFormMaxAggregateInputObjectSchema.optional() }).strict() as unknown as z.ZodType; - -export const FeedbackFormGroupByZodSchema = z.object({ where: FeedbackFormWhereInputObjectSchema.optional(), orderBy: z.union([FeedbackFormOrderByWithAggregationInputObjectSchema, FeedbackFormOrderByWithAggregationInputObjectSchema.array()]).optional(), having: FeedbackFormScalarWhereWithAggregatesInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), by: z.array(FeedbackFormScalarFieldEnumSchema), _count: z.union([ z.literal(true), FeedbackFormCountAggregateInputObjectSchema ]).optional(), _min: FeedbackFormMinAggregateInputObjectSchema.optional(), _max: FeedbackFormMaxAggregateInputObjectSchema.optional() }).strict(); - -// File: findUniqueFeedbackQuestion.schema.ts - -export const FeedbackQuestionFindUniqueSchema: z.ZodType = z.object({ get select(){ return FeedbackQuestionSelectObjectSchema.optional(); }, get include(){ return FeedbackQuestionIncludeObjectSchema.optional(); }, where: FeedbackQuestionWhereUniqueInputObjectSchema }).strict() as unknown as z.ZodType; - -export const FeedbackQuestionFindUniqueZodSchema = z.object({ get select(){ return FeedbackQuestionSelectObjectSchema.optional(); }, get include(){ return FeedbackQuestionIncludeObjectSchema.optional(); }, where: FeedbackQuestionWhereUniqueInputObjectSchema }).strict(); - -// File: findUniqueOrThrowFeedbackQuestion.schema.ts - -export const FeedbackQuestionFindUniqueOrThrowSchema: z.ZodType = z.object({ get select(){ return FeedbackQuestionSelectObjectSchema.optional(); }, get include(){ return FeedbackQuestionIncludeObjectSchema.optional(); }, where: FeedbackQuestionWhereUniqueInputObjectSchema }).strict() as unknown as z.ZodType; - -export const FeedbackQuestionFindUniqueOrThrowZodSchema = z.object({ get select(){ return FeedbackQuestionSelectObjectSchema.optional(); }, get include(){ return FeedbackQuestionIncludeObjectSchema.optional(); }, where: FeedbackQuestionWhereUniqueInputObjectSchema }).strict(); - -// File: findFirstFeedbackQuestion.schema.ts - -// Select schema needs to be in file to prevent circular imports -//------------------------------------------------------ - -export const FeedbackQuestionFindFirstSelectSchema__findFirstFeedbackQuestion_schema: z.ZodType = z.object({ - id: z.boolean().optional(), - label: z.boolean().optional(), - required: z.boolean().optional(), - showInPublicResults: z.boolean().optional(), - type: z.boolean().optional(), - order: z.boolean().optional(), - createdAt: z.boolean().optional(), - updatedAt: z.boolean().optional(), - feedbackFormId: z.boolean().optional(), - feedbackForm: z.boolean().optional(), - options: z.boolean().optional(), - answers: z.boolean().optional(), - _count: z.boolean().optional() - }).strict() as unknown as z.ZodType; - -export const FeedbackQuestionFindFirstSelectZodSchema__findFirstFeedbackQuestion_schema = z.object({ - id: z.boolean().optional(), - label: z.boolean().optional(), - required: z.boolean().optional(), - showInPublicResults: z.boolean().optional(), - type: z.boolean().optional(), - order: z.boolean().optional(), - createdAt: z.boolean().optional(), - updatedAt: z.boolean().optional(), - feedbackFormId: z.boolean().optional(), - feedbackForm: z.boolean().optional(), - options: z.boolean().optional(), - answers: z.boolean().optional(), - _count: z.boolean().optional() - }).strict(); - -export const FeedbackQuestionFindFirstSchema: z.ZodType = z.object({ get select(){ return FeedbackQuestionFindFirstSelectSchema__findFirstFeedbackQuestion_schema.optional(); }, get include(){ return FeedbackQuestionIncludeObjectSchema.optional(); }, orderBy: z.union([FeedbackQuestionOrderByWithRelationInputObjectSchema, FeedbackQuestionOrderByWithRelationInputObjectSchema.array()]).optional(), where: FeedbackQuestionWhereInputObjectSchema.optional(), cursor: FeedbackQuestionWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), distinct: z.union([FeedbackQuestionScalarFieldEnumSchema, FeedbackQuestionScalarFieldEnumSchema.array()]).optional() }).strict() as unknown as z.ZodType; - -export const FeedbackQuestionFindFirstZodSchema = z.object({ get select(){ return FeedbackQuestionFindFirstSelectSchema__findFirstFeedbackQuestion_schema.optional(); }, get include(){ return FeedbackQuestionIncludeObjectSchema.optional(); }, orderBy: z.union([FeedbackQuestionOrderByWithRelationInputObjectSchema, FeedbackQuestionOrderByWithRelationInputObjectSchema.array()]).optional(), where: FeedbackQuestionWhereInputObjectSchema.optional(), cursor: FeedbackQuestionWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), distinct: z.union([FeedbackQuestionScalarFieldEnumSchema, FeedbackQuestionScalarFieldEnumSchema.array()]).optional() }).strict(); - -// File: findFirstOrThrowFeedbackQuestion.schema.ts - -// Select schema needs to be in file to prevent circular imports -//------------------------------------------------------ - -export const FeedbackQuestionFindFirstOrThrowSelectSchema__findFirstOrThrowFeedbackQuestion_schema: z.ZodType = z.object({ - id: z.boolean().optional(), - label: z.boolean().optional(), - required: z.boolean().optional(), - showInPublicResults: z.boolean().optional(), - type: z.boolean().optional(), - order: z.boolean().optional(), - createdAt: z.boolean().optional(), - updatedAt: z.boolean().optional(), - feedbackFormId: z.boolean().optional(), - feedbackForm: z.boolean().optional(), - options: z.boolean().optional(), - answers: z.boolean().optional(), - _count: z.boolean().optional() - }).strict() as unknown as z.ZodType; - -export const FeedbackQuestionFindFirstOrThrowSelectZodSchema__findFirstOrThrowFeedbackQuestion_schema = z.object({ - id: z.boolean().optional(), - label: z.boolean().optional(), - required: z.boolean().optional(), - showInPublicResults: z.boolean().optional(), - type: z.boolean().optional(), - order: z.boolean().optional(), - createdAt: z.boolean().optional(), - updatedAt: z.boolean().optional(), - feedbackFormId: z.boolean().optional(), - feedbackForm: z.boolean().optional(), - options: z.boolean().optional(), - answers: z.boolean().optional(), - _count: z.boolean().optional() - }).strict(); - -export const FeedbackQuestionFindFirstOrThrowSchema: z.ZodType = z.object({ get select(){ return FeedbackQuestionFindFirstOrThrowSelectSchema__findFirstOrThrowFeedbackQuestion_schema.optional(); }, get include(){ return FeedbackQuestionIncludeObjectSchema.optional(); }, orderBy: z.union([FeedbackQuestionOrderByWithRelationInputObjectSchema, FeedbackQuestionOrderByWithRelationInputObjectSchema.array()]).optional(), where: FeedbackQuestionWhereInputObjectSchema.optional(), cursor: FeedbackQuestionWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), distinct: z.union([FeedbackQuestionScalarFieldEnumSchema, FeedbackQuestionScalarFieldEnumSchema.array()]).optional() }).strict() as unknown as z.ZodType; - -export const FeedbackQuestionFindFirstOrThrowZodSchema = z.object({ get select(){ return FeedbackQuestionFindFirstOrThrowSelectSchema__findFirstOrThrowFeedbackQuestion_schema.optional(); }, get include(){ return FeedbackQuestionIncludeObjectSchema.optional(); }, orderBy: z.union([FeedbackQuestionOrderByWithRelationInputObjectSchema, FeedbackQuestionOrderByWithRelationInputObjectSchema.array()]).optional(), where: FeedbackQuestionWhereInputObjectSchema.optional(), cursor: FeedbackQuestionWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), distinct: z.union([FeedbackQuestionScalarFieldEnumSchema, FeedbackQuestionScalarFieldEnumSchema.array()]).optional() }).strict(); - -// File: findManyFeedbackQuestion.schema.ts - -// Select schema needs to be in file to prevent circular imports -//------------------------------------------------------ - -export const FeedbackQuestionFindManySelectSchema__findManyFeedbackQuestion_schema: z.ZodType = z.object({ - id: z.boolean().optional(), - label: z.boolean().optional(), - required: z.boolean().optional(), - showInPublicResults: z.boolean().optional(), - type: z.boolean().optional(), - order: z.boolean().optional(), - createdAt: z.boolean().optional(), - updatedAt: z.boolean().optional(), - feedbackFormId: z.boolean().optional(), - feedbackForm: z.boolean().optional(), - options: z.boolean().optional(), - answers: z.boolean().optional(), - _count: z.boolean().optional() - }).strict() as unknown as z.ZodType; - -export const FeedbackQuestionFindManySelectZodSchema__findManyFeedbackQuestion_schema = z.object({ - id: z.boolean().optional(), - label: z.boolean().optional(), - required: z.boolean().optional(), - showInPublicResults: z.boolean().optional(), - type: z.boolean().optional(), - order: z.boolean().optional(), - createdAt: z.boolean().optional(), - updatedAt: z.boolean().optional(), - feedbackFormId: z.boolean().optional(), - feedbackForm: z.boolean().optional(), - options: z.boolean().optional(), - answers: z.boolean().optional(), - _count: z.boolean().optional() - }).strict(); - -export const FeedbackQuestionFindManySchema: z.ZodType = z.object({ get select(){ return FeedbackQuestionFindManySelectSchema__findManyFeedbackQuestion_schema.optional(); }, get include(){ return FeedbackQuestionIncludeObjectSchema.optional(); }, orderBy: z.union([FeedbackQuestionOrderByWithRelationInputObjectSchema, FeedbackQuestionOrderByWithRelationInputObjectSchema.array()]).optional(), where: FeedbackQuestionWhereInputObjectSchema.optional(), cursor: FeedbackQuestionWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), distinct: z.union([FeedbackQuestionScalarFieldEnumSchema, FeedbackQuestionScalarFieldEnumSchema.array()]).optional() }).strict() as unknown as z.ZodType; - -export const FeedbackQuestionFindManyZodSchema = z.object({ get select(){ return FeedbackQuestionFindManySelectSchema__findManyFeedbackQuestion_schema.optional(); }, get include(){ return FeedbackQuestionIncludeObjectSchema.optional(); }, orderBy: z.union([FeedbackQuestionOrderByWithRelationInputObjectSchema, FeedbackQuestionOrderByWithRelationInputObjectSchema.array()]).optional(), where: FeedbackQuestionWhereInputObjectSchema.optional(), cursor: FeedbackQuestionWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), distinct: z.union([FeedbackQuestionScalarFieldEnumSchema, FeedbackQuestionScalarFieldEnumSchema.array()]).optional() }).strict(); - -// File: countFeedbackQuestion.schema.ts - -export const FeedbackQuestionCountSchema: z.ZodType = z.object({ orderBy: z.union([FeedbackQuestionOrderByWithRelationInputObjectSchema, FeedbackQuestionOrderByWithRelationInputObjectSchema.array()]).optional(), where: FeedbackQuestionWhereInputObjectSchema.optional(), cursor: FeedbackQuestionWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), select: z.union([ z.literal(true), FeedbackQuestionCountAggregateInputObjectSchema ]).optional() }).strict() as unknown as z.ZodType; - -export const FeedbackQuestionCountZodSchema = z.object({ orderBy: z.union([FeedbackQuestionOrderByWithRelationInputObjectSchema, FeedbackQuestionOrderByWithRelationInputObjectSchema.array()]).optional(), where: FeedbackQuestionWhereInputObjectSchema.optional(), cursor: FeedbackQuestionWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), select: z.union([ z.literal(true), FeedbackQuestionCountAggregateInputObjectSchema ]).optional() }).strict(); - -// File: createOneFeedbackQuestion.schema.ts - -export const FeedbackQuestionCreateOneSchema: z.ZodType = z.object({ get select(){ return FeedbackQuestionSelectObjectSchema.optional(); }, get include(){ return FeedbackQuestionIncludeObjectSchema.optional(); }, data: z.union([FeedbackQuestionCreateInputObjectSchema, FeedbackQuestionUncheckedCreateInputObjectSchema]) }).strict() as unknown as z.ZodType; - -export const FeedbackQuestionCreateOneZodSchema = z.object({ get select(){ return FeedbackQuestionSelectObjectSchema.optional(); }, get include(){ return FeedbackQuestionIncludeObjectSchema.optional(); }, data: z.union([FeedbackQuestionCreateInputObjectSchema, FeedbackQuestionUncheckedCreateInputObjectSchema]) }).strict(); - -// File: createManyFeedbackQuestion.schema.ts - -export const FeedbackQuestionCreateManySchema: z.ZodType = z.object({ data: z.union([ FeedbackQuestionCreateManyInputObjectSchema, z.array(FeedbackQuestionCreateManyInputObjectSchema) ]), skipDuplicates: z.boolean().optional() }).strict() as unknown as z.ZodType; - -export const FeedbackQuestionCreateManyZodSchema = z.object({ data: z.union([ FeedbackQuestionCreateManyInputObjectSchema, z.array(FeedbackQuestionCreateManyInputObjectSchema) ]), skipDuplicates: z.boolean().optional() }).strict(); - -// File: createManyAndReturnFeedbackQuestion.schema.ts - -export const FeedbackQuestionCreateManyAndReturnSchema: z.ZodType = z.object({ get select(){ return FeedbackQuestionSelectObjectSchema.optional(); }, data: z.union([ FeedbackQuestionCreateManyInputObjectSchema, z.array(FeedbackQuestionCreateManyInputObjectSchema) ]), skipDuplicates: z.boolean().optional() }).strict() as unknown as z.ZodType; - -export const FeedbackQuestionCreateManyAndReturnZodSchema = z.object({ get select(){ return FeedbackQuestionSelectObjectSchema.optional(); }, data: z.union([ FeedbackQuestionCreateManyInputObjectSchema, z.array(FeedbackQuestionCreateManyInputObjectSchema) ]), skipDuplicates: z.boolean().optional() }).strict(); - -// File: deleteOneFeedbackQuestion.schema.ts - -export const FeedbackQuestionDeleteOneSchema: z.ZodType = z.object({ get select(){ return FeedbackQuestionSelectObjectSchema.optional(); }, get include(){ return FeedbackQuestionIncludeObjectSchema.optional(); }, where: FeedbackQuestionWhereUniqueInputObjectSchema }).strict() as unknown as z.ZodType; - -export const FeedbackQuestionDeleteOneZodSchema = z.object({ get select(){ return FeedbackQuestionSelectObjectSchema.optional(); }, get include(){ return FeedbackQuestionIncludeObjectSchema.optional(); }, where: FeedbackQuestionWhereUniqueInputObjectSchema }).strict(); - -// File: deleteManyFeedbackQuestion.schema.ts - -export const FeedbackQuestionDeleteManySchema: z.ZodType = z.object({ where: FeedbackQuestionWhereInputObjectSchema.optional() }).strict() as unknown as z.ZodType; - -export const FeedbackQuestionDeleteManyZodSchema = z.object({ where: FeedbackQuestionWhereInputObjectSchema.optional() }).strict(); - -// File: updateOneFeedbackQuestion.schema.ts - -export const FeedbackQuestionUpdateOneSchema: z.ZodType = z.object({ get select(){ return FeedbackQuestionSelectObjectSchema.optional(); }, get include(){ return FeedbackQuestionIncludeObjectSchema.optional(); }, data: z.union([FeedbackQuestionUpdateInputObjectSchema, FeedbackQuestionUncheckedUpdateInputObjectSchema]), where: FeedbackQuestionWhereUniqueInputObjectSchema }).strict() as unknown as z.ZodType; - -export const FeedbackQuestionUpdateOneZodSchema = z.object({ get select(){ return FeedbackQuestionSelectObjectSchema.optional(); }, get include(){ return FeedbackQuestionIncludeObjectSchema.optional(); }, data: z.union([FeedbackQuestionUpdateInputObjectSchema, FeedbackQuestionUncheckedUpdateInputObjectSchema]), where: FeedbackQuestionWhereUniqueInputObjectSchema }).strict(); - -// File: updateManyFeedbackQuestion.schema.ts - -export const FeedbackQuestionUpdateManySchema: z.ZodType = z.object({ data: FeedbackQuestionUpdateManyMutationInputObjectSchema, where: FeedbackQuestionWhereInputObjectSchema.optional() }).strict() as unknown as z.ZodType; - -export const FeedbackQuestionUpdateManyZodSchema = z.object({ data: FeedbackQuestionUpdateManyMutationInputObjectSchema, where: FeedbackQuestionWhereInputObjectSchema.optional() }).strict(); - -// File: updateManyAndReturnFeedbackQuestion.schema.ts - -export const FeedbackQuestionUpdateManyAndReturnSchema: z.ZodType = z.object({ get select(){ return FeedbackQuestionSelectObjectSchema.optional(); }, data: FeedbackQuestionUpdateManyMutationInputObjectSchema, where: FeedbackQuestionWhereInputObjectSchema.optional() }).strict() as unknown as z.ZodType; - -export const FeedbackQuestionUpdateManyAndReturnZodSchema = z.object({ get select(){ return FeedbackQuestionSelectObjectSchema.optional(); }, data: FeedbackQuestionUpdateManyMutationInputObjectSchema, where: FeedbackQuestionWhereInputObjectSchema.optional() }).strict(); - -// File: upsertOneFeedbackQuestion.schema.ts - -export const FeedbackQuestionUpsertOneSchema: z.ZodType = z.object({ get select(){ return FeedbackQuestionSelectObjectSchema.optional(); }, get include(){ return FeedbackQuestionIncludeObjectSchema.optional(); }, where: FeedbackQuestionWhereUniqueInputObjectSchema, create: z.union([ FeedbackQuestionCreateInputObjectSchema, FeedbackQuestionUncheckedCreateInputObjectSchema ]), update: z.union([ FeedbackQuestionUpdateInputObjectSchema, FeedbackQuestionUncheckedUpdateInputObjectSchema ]) }).strict() as unknown as z.ZodType; - -export const FeedbackQuestionUpsertOneZodSchema = z.object({ get select(){ return FeedbackQuestionSelectObjectSchema.optional(); }, get include(){ return FeedbackQuestionIncludeObjectSchema.optional(); }, where: FeedbackQuestionWhereUniqueInputObjectSchema, create: z.union([ FeedbackQuestionCreateInputObjectSchema, FeedbackQuestionUncheckedCreateInputObjectSchema ]), update: z.union([ FeedbackQuestionUpdateInputObjectSchema, FeedbackQuestionUncheckedUpdateInputObjectSchema ]) }).strict(); - -// File: aggregateFeedbackQuestion.schema.ts - -export const FeedbackQuestionAggregateSchema: z.ZodType = z.object({ orderBy: z.union([FeedbackQuestionOrderByWithRelationInputObjectSchema, FeedbackQuestionOrderByWithRelationInputObjectSchema.array()]).optional(), where: FeedbackQuestionWhereInputObjectSchema.optional(), cursor: FeedbackQuestionWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), _count: z.union([ z.literal(true), FeedbackQuestionCountAggregateInputObjectSchema ]).optional(), _min: FeedbackQuestionMinAggregateInputObjectSchema.optional(), _max: FeedbackQuestionMaxAggregateInputObjectSchema.optional(), _avg: FeedbackQuestionAvgAggregateInputObjectSchema.optional(), _sum: FeedbackQuestionSumAggregateInputObjectSchema.optional() }).strict() as unknown as z.ZodType; - -export const FeedbackQuestionAggregateZodSchema = z.object({ orderBy: z.union([FeedbackQuestionOrderByWithRelationInputObjectSchema, FeedbackQuestionOrderByWithRelationInputObjectSchema.array()]).optional(), where: FeedbackQuestionWhereInputObjectSchema.optional(), cursor: FeedbackQuestionWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), _count: z.union([ z.literal(true), FeedbackQuestionCountAggregateInputObjectSchema ]).optional(), _min: FeedbackQuestionMinAggregateInputObjectSchema.optional(), _max: FeedbackQuestionMaxAggregateInputObjectSchema.optional(), _avg: FeedbackQuestionAvgAggregateInputObjectSchema.optional(), _sum: FeedbackQuestionSumAggregateInputObjectSchema.optional() }).strict(); - -// File: groupByFeedbackQuestion.schema.ts - -export const FeedbackQuestionGroupBySchema: z.ZodType = z.object({ where: FeedbackQuestionWhereInputObjectSchema.optional(), orderBy: z.union([FeedbackQuestionOrderByWithAggregationInputObjectSchema, FeedbackQuestionOrderByWithAggregationInputObjectSchema.array()]).optional(), having: FeedbackQuestionScalarWhereWithAggregatesInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), by: z.array(FeedbackQuestionScalarFieldEnumSchema), _count: z.union([ z.literal(true), FeedbackQuestionCountAggregateInputObjectSchema ]).optional(), _min: FeedbackQuestionMinAggregateInputObjectSchema.optional(), _max: FeedbackQuestionMaxAggregateInputObjectSchema.optional(), _avg: FeedbackQuestionAvgAggregateInputObjectSchema.optional(), _sum: FeedbackQuestionSumAggregateInputObjectSchema.optional() }).strict() as unknown as z.ZodType; - -export const FeedbackQuestionGroupByZodSchema = z.object({ where: FeedbackQuestionWhereInputObjectSchema.optional(), orderBy: z.union([FeedbackQuestionOrderByWithAggregationInputObjectSchema, FeedbackQuestionOrderByWithAggregationInputObjectSchema.array()]).optional(), having: FeedbackQuestionScalarWhereWithAggregatesInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), by: z.array(FeedbackQuestionScalarFieldEnumSchema), _count: z.union([ z.literal(true), FeedbackQuestionCountAggregateInputObjectSchema ]).optional(), _min: FeedbackQuestionMinAggregateInputObjectSchema.optional(), _max: FeedbackQuestionMaxAggregateInputObjectSchema.optional(), _avg: FeedbackQuestionAvgAggregateInputObjectSchema.optional(), _sum: FeedbackQuestionSumAggregateInputObjectSchema.optional() }).strict(); - -// File: findUniqueFeedbackQuestionOption.schema.ts - -export const FeedbackQuestionOptionFindUniqueSchema: z.ZodType = z.object({ get select(){ return FeedbackQuestionOptionSelectObjectSchema.optional(); }, get include(){ return FeedbackQuestionOptionIncludeObjectSchema.optional(); }, where: FeedbackQuestionOptionWhereUniqueInputObjectSchema }).strict() as unknown as z.ZodType; - -export const FeedbackQuestionOptionFindUniqueZodSchema = z.object({ get select(){ return FeedbackQuestionOptionSelectObjectSchema.optional(); }, get include(){ return FeedbackQuestionOptionIncludeObjectSchema.optional(); }, where: FeedbackQuestionOptionWhereUniqueInputObjectSchema }).strict(); - -// File: findUniqueOrThrowFeedbackQuestionOption.schema.ts - -export const FeedbackQuestionOptionFindUniqueOrThrowSchema: z.ZodType = z.object({ get select(){ return FeedbackQuestionOptionSelectObjectSchema.optional(); }, get include(){ return FeedbackQuestionOptionIncludeObjectSchema.optional(); }, where: FeedbackQuestionOptionWhereUniqueInputObjectSchema }).strict() as unknown as z.ZodType; - -export const FeedbackQuestionOptionFindUniqueOrThrowZodSchema = z.object({ get select(){ return FeedbackQuestionOptionSelectObjectSchema.optional(); }, get include(){ return FeedbackQuestionOptionIncludeObjectSchema.optional(); }, where: FeedbackQuestionOptionWhereUniqueInputObjectSchema }).strict(); - -// File: findFirstFeedbackQuestionOption.schema.ts - -// Select schema needs to be in file to prevent circular imports -//------------------------------------------------------ - -export const FeedbackQuestionOptionFindFirstSelectSchema__findFirstFeedbackQuestionOption_schema: z.ZodType = z.object({ - id: z.boolean().optional(), - name: z.boolean().optional(), - questionId: z.boolean().optional(), - question: z.boolean().optional(), - selectedInAnswers: z.boolean().optional(), - _count: z.boolean().optional() - }).strict() as unknown as z.ZodType; - -export const FeedbackQuestionOptionFindFirstSelectZodSchema__findFirstFeedbackQuestionOption_schema = z.object({ - id: z.boolean().optional(), - name: z.boolean().optional(), - questionId: z.boolean().optional(), - question: z.boolean().optional(), - selectedInAnswers: z.boolean().optional(), - _count: z.boolean().optional() - }).strict(); - -export const FeedbackQuestionOptionFindFirstSchema: z.ZodType = z.object({ get select(){ return FeedbackQuestionOptionFindFirstSelectSchema__findFirstFeedbackQuestionOption_schema.optional(); }, get include(){ return FeedbackQuestionOptionIncludeObjectSchema.optional(); }, orderBy: z.union([FeedbackQuestionOptionOrderByWithRelationInputObjectSchema, FeedbackQuestionOptionOrderByWithRelationInputObjectSchema.array()]).optional(), where: FeedbackQuestionOptionWhereInputObjectSchema.optional(), cursor: FeedbackQuestionOptionWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), distinct: z.union([FeedbackQuestionOptionScalarFieldEnumSchema, FeedbackQuestionOptionScalarFieldEnumSchema.array()]).optional() }).strict() as unknown as z.ZodType; - -export const FeedbackQuestionOptionFindFirstZodSchema = z.object({ get select(){ return FeedbackQuestionOptionFindFirstSelectSchema__findFirstFeedbackQuestionOption_schema.optional(); }, get include(){ return FeedbackQuestionOptionIncludeObjectSchema.optional(); }, orderBy: z.union([FeedbackQuestionOptionOrderByWithRelationInputObjectSchema, FeedbackQuestionOptionOrderByWithRelationInputObjectSchema.array()]).optional(), where: FeedbackQuestionOptionWhereInputObjectSchema.optional(), cursor: FeedbackQuestionOptionWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), distinct: z.union([FeedbackQuestionOptionScalarFieldEnumSchema, FeedbackQuestionOptionScalarFieldEnumSchema.array()]).optional() }).strict(); - -// File: findFirstOrThrowFeedbackQuestionOption.schema.ts - -// Select schema needs to be in file to prevent circular imports -//------------------------------------------------------ - -export const FeedbackQuestionOptionFindFirstOrThrowSelectSchema__findFirstOrThrowFeedbackQuestionOption_schema: z.ZodType = z.object({ - id: z.boolean().optional(), - name: z.boolean().optional(), - questionId: z.boolean().optional(), - question: z.boolean().optional(), - selectedInAnswers: z.boolean().optional(), - _count: z.boolean().optional() - }).strict() as unknown as z.ZodType; - -export const FeedbackQuestionOptionFindFirstOrThrowSelectZodSchema__findFirstOrThrowFeedbackQuestionOption_schema = z.object({ - id: z.boolean().optional(), - name: z.boolean().optional(), - questionId: z.boolean().optional(), - question: z.boolean().optional(), - selectedInAnswers: z.boolean().optional(), - _count: z.boolean().optional() - }).strict(); - -export const FeedbackQuestionOptionFindFirstOrThrowSchema: z.ZodType = z.object({ get select(){ return FeedbackQuestionOptionFindFirstOrThrowSelectSchema__findFirstOrThrowFeedbackQuestionOption_schema.optional(); }, get include(){ return FeedbackQuestionOptionIncludeObjectSchema.optional(); }, orderBy: z.union([FeedbackQuestionOptionOrderByWithRelationInputObjectSchema, FeedbackQuestionOptionOrderByWithRelationInputObjectSchema.array()]).optional(), where: FeedbackQuestionOptionWhereInputObjectSchema.optional(), cursor: FeedbackQuestionOptionWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), distinct: z.union([FeedbackQuestionOptionScalarFieldEnumSchema, FeedbackQuestionOptionScalarFieldEnumSchema.array()]).optional() }).strict() as unknown as z.ZodType; - -export const FeedbackQuestionOptionFindFirstOrThrowZodSchema = z.object({ get select(){ return FeedbackQuestionOptionFindFirstOrThrowSelectSchema__findFirstOrThrowFeedbackQuestionOption_schema.optional(); }, get include(){ return FeedbackQuestionOptionIncludeObjectSchema.optional(); }, orderBy: z.union([FeedbackQuestionOptionOrderByWithRelationInputObjectSchema, FeedbackQuestionOptionOrderByWithRelationInputObjectSchema.array()]).optional(), where: FeedbackQuestionOptionWhereInputObjectSchema.optional(), cursor: FeedbackQuestionOptionWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), distinct: z.union([FeedbackQuestionOptionScalarFieldEnumSchema, FeedbackQuestionOptionScalarFieldEnumSchema.array()]).optional() }).strict(); - -// File: findManyFeedbackQuestionOption.schema.ts - -// Select schema needs to be in file to prevent circular imports -//------------------------------------------------------ - -export const FeedbackQuestionOptionFindManySelectSchema__findManyFeedbackQuestionOption_schema: z.ZodType = z.object({ - id: z.boolean().optional(), - name: z.boolean().optional(), - questionId: z.boolean().optional(), - question: z.boolean().optional(), - selectedInAnswers: z.boolean().optional(), - _count: z.boolean().optional() - }).strict() as unknown as z.ZodType; - -export const FeedbackQuestionOptionFindManySelectZodSchema__findManyFeedbackQuestionOption_schema = z.object({ - id: z.boolean().optional(), - name: z.boolean().optional(), - questionId: z.boolean().optional(), - question: z.boolean().optional(), - selectedInAnswers: z.boolean().optional(), - _count: z.boolean().optional() - }).strict(); - -export const FeedbackQuestionOptionFindManySchema: z.ZodType = z.object({ get select(){ return FeedbackQuestionOptionFindManySelectSchema__findManyFeedbackQuestionOption_schema.optional(); }, get include(){ return FeedbackQuestionOptionIncludeObjectSchema.optional(); }, orderBy: z.union([FeedbackQuestionOptionOrderByWithRelationInputObjectSchema, FeedbackQuestionOptionOrderByWithRelationInputObjectSchema.array()]).optional(), where: FeedbackQuestionOptionWhereInputObjectSchema.optional(), cursor: FeedbackQuestionOptionWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), distinct: z.union([FeedbackQuestionOptionScalarFieldEnumSchema, FeedbackQuestionOptionScalarFieldEnumSchema.array()]).optional() }).strict() as unknown as z.ZodType; - -export const FeedbackQuestionOptionFindManyZodSchema = z.object({ get select(){ return FeedbackQuestionOptionFindManySelectSchema__findManyFeedbackQuestionOption_schema.optional(); }, get include(){ return FeedbackQuestionOptionIncludeObjectSchema.optional(); }, orderBy: z.union([FeedbackQuestionOptionOrderByWithRelationInputObjectSchema, FeedbackQuestionOptionOrderByWithRelationInputObjectSchema.array()]).optional(), where: FeedbackQuestionOptionWhereInputObjectSchema.optional(), cursor: FeedbackQuestionOptionWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), distinct: z.union([FeedbackQuestionOptionScalarFieldEnumSchema, FeedbackQuestionOptionScalarFieldEnumSchema.array()]).optional() }).strict(); - -// File: countFeedbackQuestionOption.schema.ts - -export const FeedbackQuestionOptionCountSchema: z.ZodType = z.object({ orderBy: z.union([FeedbackQuestionOptionOrderByWithRelationInputObjectSchema, FeedbackQuestionOptionOrderByWithRelationInputObjectSchema.array()]).optional(), where: FeedbackQuestionOptionWhereInputObjectSchema.optional(), cursor: FeedbackQuestionOptionWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), select: z.union([ z.literal(true), FeedbackQuestionOptionCountAggregateInputObjectSchema ]).optional() }).strict() as unknown as z.ZodType; - -export const FeedbackQuestionOptionCountZodSchema = z.object({ orderBy: z.union([FeedbackQuestionOptionOrderByWithRelationInputObjectSchema, FeedbackQuestionOptionOrderByWithRelationInputObjectSchema.array()]).optional(), where: FeedbackQuestionOptionWhereInputObjectSchema.optional(), cursor: FeedbackQuestionOptionWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), select: z.union([ z.literal(true), FeedbackQuestionOptionCountAggregateInputObjectSchema ]).optional() }).strict(); - -// File: createOneFeedbackQuestionOption.schema.ts - -export const FeedbackQuestionOptionCreateOneSchema: z.ZodType = z.object({ get select(){ return FeedbackQuestionOptionSelectObjectSchema.optional(); }, get include(){ return FeedbackQuestionOptionIncludeObjectSchema.optional(); }, data: z.union([FeedbackQuestionOptionCreateInputObjectSchema, FeedbackQuestionOptionUncheckedCreateInputObjectSchema]) }).strict() as unknown as z.ZodType; - -export const FeedbackQuestionOptionCreateOneZodSchema = z.object({ get select(){ return FeedbackQuestionOptionSelectObjectSchema.optional(); }, get include(){ return FeedbackQuestionOptionIncludeObjectSchema.optional(); }, data: z.union([FeedbackQuestionOptionCreateInputObjectSchema, FeedbackQuestionOptionUncheckedCreateInputObjectSchema]) }).strict(); - -// File: createManyFeedbackQuestionOption.schema.ts - -export const FeedbackQuestionOptionCreateManySchema: z.ZodType = z.object({ data: z.union([ FeedbackQuestionOptionCreateManyInputObjectSchema, z.array(FeedbackQuestionOptionCreateManyInputObjectSchema) ]), skipDuplicates: z.boolean().optional() }).strict() as unknown as z.ZodType; - -export const FeedbackQuestionOptionCreateManyZodSchema = z.object({ data: z.union([ FeedbackQuestionOptionCreateManyInputObjectSchema, z.array(FeedbackQuestionOptionCreateManyInputObjectSchema) ]), skipDuplicates: z.boolean().optional() }).strict(); - -// File: createManyAndReturnFeedbackQuestionOption.schema.ts - -export const FeedbackQuestionOptionCreateManyAndReturnSchema: z.ZodType = z.object({ get select(){ return FeedbackQuestionOptionSelectObjectSchema.optional(); }, data: z.union([ FeedbackQuestionOptionCreateManyInputObjectSchema, z.array(FeedbackQuestionOptionCreateManyInputObjectSchema) ]), skipDuplicates: z.boolean().optional() }).strict() as unknown as z.ZodType; - -export const FeedbackQuestionOptionCreateManyAndReturnZodSchema = z.object({ get select(){ return FeedbackQuestionOptionSelectObjectSchema.optional(); }, data: z.union([ FeedbackQuestionOptionCreateManyInputObjectSchema, z.array(FeedbackQuestionOptionCreateManyInputObjectSchema) ]), skipDuplicates: z.boolean().optional() }).strict(); - -// File: deleteOneFeedbackQuestionOption.schema.ts - -export const FeedbackQuestionOptionDeleteOneSchema: z.ZodType = z.object({ get select(){ return FeedbackQuestionOptionSelectObjectSchema.optional(); }, get include(){ return FeedbackQuestionOptionIncludeObjectSchema.optional(); }, where: FeedbackQuestionOptionWhereUniqueInputObjectSchema }).strict() as unknown as z.ZodType; - -export const FeedbackQuestionOptionDeleteOneZodSchema = z.object({ get select(){ return FeedbackQuestionOptionSelectObjectSchema.optional(); }, get include(){ return FeedbackQuestionOptionIncludeObjectSchema.optional(); }, where: FeedbackQuestionOptionWhereUniqueInputObjectSchema }).strict(); - -// File: deleteManyFeedbackQuestionOption.schema.ts - -export const FeedbackQuestionOptionDeleteManySchema: z.ZodType = z.object({ where: FeedbackQuestionOptionWhereInputObjectSchema.optional() }).strict() as unknown as z.ZodType; - -export const FeedbackQuestionOptionDeleteManyZodSchema = z.object({ where: FeedbackQuestionOptionWhereInputObjectSchema.optional() }).strict(); - -// File: updateOneFeedbackQuestionOption.schema.ts - -export const FeedbackQuestionOptionUpdateOneSchema: z.ZodType = z.object({ get select(){ return FeedbackQuestionOptionSelectObjectSchema.optional(); }, get include(){ return FeedbackQuestionOptionIncludeObjectSchema.optional(); }, data: z.union([FeedbackQuestionOptionUpdateInputObjectSchema, FeedbackQuestionOptionUncheckedUpdateInputObjectSchema]), where: FeedbackQuestionOptionWhereUniqueInputObjectSchema }).strict() as unknown as z.ZodType; - -export const FeedbackQuestionOptionUpdateOneZodSchema = z.object({ get select(){ return FeedbackQuestionOptionSelectObjectSchema.optional(); }, get include(){ return FeedbackQuestionOptionIncludeObjectSchema.optional(); }, data: z.union([FeedbackQuestionOptionUpdateInputObjectSchema, FeedbackQuestionOptionUncheckedUpdateInputObjectSchema]), where: FeedbackQuestionOptionWhereUniqueInputObjectSchema }).strict(); - -// File: updateManyFeedbackQuestionOption.schema.ts - -export const FeedbackQuestionOptionUpdateManySchema: z.ZodType = z.object({ data: FeedbackQuestionOptionUpdateManyMutationInputObjectSchema, where: FeedbackQuestionOptionWhereInputObjectSchema.optional() }).strict() as unknown as z.ZodType; - -export const FeedbackQuestionOptionUpdateManyZodSchema = z.object({ data: FeedbackQuestionOptionUpdateManyMutationInputObjectSchema, where: FeedbackQuestionOptionWhereInputObjectSchema.optional() }).strict(); - -// File: updateManyAndReturnFeedbackQuestionOption.schema.ts - -export const FeedbackQuestionOptionUpdateManyAndReturnSchema: z.ZodType = z.object({ get select(){ return FeedbackQuestionOptionSelectObjectSchema.optional(); }, data: FeedbackQuestionOptionUpdateManyMutationInputObjectSchema, where: FeedbackQuestionOptionWhereInputObjectSchema.optional() }).strict() as unknown as z.ZodType; - -export const FeedbackQuestionOptionUpdateManyAndReturnZodSchema = z.object({ get select(){ return FeedbackQuestionOptionSelectObjectSchema.optional(); }, data: FeedbackQuestionOptionUpdateManyMutationInputObjectSchema, where: FeedbackQuestionOptionWhereInputObjectSchema.optional() }).strict(); - -// File: upsertOneFeedbackQuestionOption.schema.ts - -export const FeedbackQuestionOptionUpsertOneSchema: z.ZodType = z.object({ get select(){ return FeedbackQuestionOptionSelectObjectSchema.optional(); }, get include(){ return FeedbackQuestionOptionIncludeObjectSchema.optional(); }, where: FeedbackQuestionOptionWhereUniqueInputObjectSchema, create: z.union([ FeedbackQuestionOptionCreateInputObjectSchema, FeedbackQuestionOptionUncheckedCreateInputObjectSchema ]), update: z.union([ FeedbackQuestionOptionUpdateInputObjectSchema, FeedbackQuestionOptionUncheckedUpdateInputObjectSchema ]) }).strict() as unknown as z.ZodType; - -export const FeedbackQuestionOptionUpsertOneZodSchema = z.object({ get select(){ return FeedbackQuestionOptionSelectObjectSchema.optional(); }, get include(){ return FeedbackQuestionOptionIncludeObjectSchema.optional(); }, where: FeedbackQuestionOptionWhereUniqueInputObjectSchema, create: z.union([ FeedbackQuestionOptionCreateInputObjectSchema, FeedbackQuestionOptionUncheckedCreateInputObjectSchema ]), update: z.union([ FeedbackQuestionOptionUpdateInputObjectSchema, FeedbackQuestionOptionUncheckedUpdateInputObjectSchema ]) }).strict(); - -// File: aggregateFeedbackQuestionOption.schema.ts - -export const FeedbackQuestionOptionAggregateSchema: z.ZodType = z.object({ orderBy: z.union([FeedbackQuestionOptionOrderByWithRelationInputObjectSchema, FeedbackQuestionOptionOrderByWithRelationInputObjectSchema.array()]).optional(), where: FeedbackQuestionOptionWhereInputObjectSchema.optional(), cursor: FeedbackQuestionOptionWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), _count: z.union([ z.literal(true), FeedbackQuestionOptionCountAggregateInputObjectSchema ]).optional(), _min: FeedbackQuestionOptionMinAggregateInputObjectSchema.optional(), _max: FeedbackQuestionOptionMaxAggregateInputObjectSchema.optional() }).strict() as unknown as z.ZodType; - -export const FeedbackQuestionOptionAggregateZodSchema = z.object({ orderBy: z.union([FeedbackQuestionOptionOrderByWithRelationInputObjectSchema, FeedbackQuestionOptionOrderByWithRelationInputObjectSchema.array()]).optional(), where: FeedbackQuestionOptionWhereInputObjectSchema.optional(), cursor: FeedbackQuestionOptionWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), _count: z.union([ z.literal(true), FeedbackQuestionOptionCountAggregateInputObjectSchema ]).optional(), _min: FeedbackQuestionOptionMinAggregateInputObjectSchema.optional(), _max: FeedbackQuestionOptionMaxAggregateInputObjectSchema.optional() }).strict(); - -// File: groupByFeedbackQuestionOption.schema.ts - -export const FeedbackQuestionOptionGroupBySchema: z.ZodType = z.object({ where: FeedbackQuestionOptionWhereInputObjectSchema.optional(), orderBy: z.union([FeedbackQuestionOptionOrderByWithAggregationInputObjectSchema, FeedbackQuestionOptionOrderByWithAggregationInputObjectSchema.array()]).optional(), having: FeedbackQuestionOptionScalarWhereWithAggregatesInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), by: z.array(FeedbackQuestionOptionScalarFieldEnumSchema), _count: z.union([ z.literal(true), FeedbackQuestionOptionCountAggregateInputObjectSchema ]).optional(), _min: FeedbackQuestionOptionMinAggregateInputObjectSchema.optional(), _max: FeedbackQuestionOptionMaxAggregateInputObjectSchema.optional() }).strict() as unknown as z.ZodType; - -export const FeedbackQuestionOptionGroupByZodSchema = z.object({ where: FeedbackQuestionOptionWhereInputObjectSchema.optional(), orderBy: z.union([FeedbackQuestionOptionOrderByWithAggregationInputObjectSchema, FeedbackQuestionOptionOrderByWithAggregationInputObjectSchema.array()]).optional(), having: FeedbackQuestionOptionScalarWhereWithAggregatesInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), by: z.array(FeedbackQuestionOptionScalarFieldEnumSchema), _count: z.union([ z.literal(true), FeedbackQuestionOptionCountAggregateInputObjectSchema ]).optional(), _min: FeedbackQuestionOptionMinAggregateInputObjectSchema.optional(), _max: FeedbackQuestionOptionMaxAggregateInputObjectSchema.optional() }).strict(); - -// File: findUniqueFeedbackQuestionAnswer.schema.ts - -export const FeedbackQuestionAnswerFindUniqueSchema: z.ZodType = z.object({ get select(){ return FeedbackQuestionAnswerSelectObjectSchema.optional(); }, get include(){ return FeedbackQuestionAnswerIncludeObjectSchema.optional(); }, where: FeedbackQuestionAnswerWhereUniqueInputObjectSchema }).strict() as unknown as z.ZodType; - -export const FeedbackQuestionAnswerFindUniqueZodSchema = z.object({ get select(){ return FeedbackQuestionAnswerSelectObjectSchema.optional(); }, get include(){ return FeedbackQuestionAnswerIncludeObjectSchema.optional(); }, where: FeedbackQuestionAnswerWhereUniqueInputObjectSchema }).strict(); - -// File: findUniqueOrThrowFeedbackQuestionAnswer.schema.ts - -export const FeedbackQuestionAnswerFindUniqueOrThrowSchema: z.ZodType = z.object({ get select(){ return FeedbackQuestionAnswerSelectObjectSchema.optional(); }, get include(){ return FeedbackQuestionAnswerIncludeObjectSchema.optional(); }, where: FeedbackQuestionAnswerWhereUniqueInputObjectSchema }).strict() as unknown as z.ZodType; - -export const FeedbackQuestionAnswerFindUniqueOrThrowZodSchema = z.object({ get select(){ return FeedbackQuestionAnswerSelectObjectSchema.optional(); }, get include(){ return FeedbackQuestionAnswerIncludeObjectSchema.optional(); }, where: FeedbackQuestionAnswerWhereUniqueInputObjectSchema }).strict(); - -// File: findFirstFeedbackQuestionAnswer.schema.ts - -// Select schema needs to be in file to prevent circular imports -//------------------------------------------------------ - -export const FeedbackQuestionAnswerFindFirstSelectSchema__findFirstFeedbackQuestionAnswer_schema: z.ZodType = z.object({ - id: z.boolean().optional(), - value: z.boolean().optional(), - questionId: z.boolean().optional(), - formAnswerId: z.boolean().optional(), - question: z.boolean().optional(), - formAnswer: z.boolean().optional(), - selectedOptions: z.boolean().optional(), - _count: z.boolean().optional() - }).strict() as unknown as z.ZodType; - -export const FeedbackQuestionAnswerFindFirstSelectZodSchema__findFirstFeedbackQuestionAnswer_schema = z.object({ - id: z.boolean().optional(), - value: z.boolean().optional(), - questionId: z.boolean().optional(), - formAnswerId: z.boolean().optional(), - question: z.boolean().optional(), - formAnswer: z.boolean().optional(), - selectedOptions: z.boolean().optional(), - _count: z.boolean().optional() - }).strict(); - -export const FeedbackQuestionAnswerFindFirstSchema: z.ZodType = z.object({ get select(){ return FeedbackQuestionAnswerFindFirstSelectSchema__findFirstFeedbackQuestionAnswer_schema.optional(); }, get include(){ return FeedbackQuestionAnswerIncludeObjectSchema.optional(); }, orderBy: z.union([FeedbackQuestionAnswerOrderByWithRelationInputObjectSchema, FeedbackQuestionAnswerOrderByWithRelationInputObjectSchema.array()]).optional(), where: FeedbackQuestionAnswerWhereInputObjectSchema.optional(), cursor: FeedbackQuestionAnswerWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), distinct: z.union([FeedbackQuestionAnswerScalarFieldEnumSchema, FeedbackQuestionAnswerScalarFieldEnumSchema.array()]).optional() }).strict() as unknown as z.ZodType; - -export const FeedbackQuestionAnswerFindFirstZodSchema = z.object({ get select(){ return FeedbackQuestionAnswerFindFirstSelectSchema__findFirstFeedbackQuestionAnswer_schema.optional(); }, get include(){ return FeedbackQuestionAnswerIncludeObjectSchema.optional(); }, orderBy: z.union([FeedbackQuestionAnswerOrderByWithRelationInputObjectSchema, FeedbackQuestionAnswerOrderByWithRelationInputObjectSchema.array()]).optional(), where: FeedbackQuestionAnswerWhereInputObjectSchema.optional(), cursor: FeedbackQuestionAnswerWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), distinct: z.union([FeedbackQuestionAnswerScalarFieldEnumSchema, FeedbackQuestionAnswerScalarFieldEnumSchema.array()]).optional() }).strict(); - -// File: findFirstOrThrowFeedbackQuestionAnswer.schema.ts - -// Select schema needs to be in file to prevent circular imports -//------------------------------------------------------ - -export const FeedbackQuestionAnswerFindFirstOrThrowSelectSchema__findFirstOrThrowFeedbackQuestionAnswer_schema: z.ZodType = z.object({ - id: z.boolean().optional(), - value: z.boolean().optional(), - questionId: z.boolean().optional(), - formAnswerId: z.boolean().optional(), - question: z.boolean().optional(), - formAnswer: z.boolean().optional(), - selectedOptions: z.boolean().optional(), - _count: z.boolean().optional() - }).strict() as unknown as z.ZodType; - -export const FeedbackQuestionAnswerFindFirstOrThrowSelectZodSchema__findFirstOrThrowFeedbackQuestionAnswer_schema = z.object({ - id: z.boolean().optional(), - value: z.boolean().optional(), - questionId: z.boolean().optional(), - formAnswerId: z.boolean().optional(), - question: z.boolean().optional(), - formAnswer: z.boolean().optional(), - selectedOptions: z.boolean().optional(), - _count: z.boolean().optional() - }).strict(); - -export const FeedbackQuestionAnswerFindFirstOrThrowSchema: z.ZodType = z.object({ get select(){ return FeedbackQuestionAnswerFindFirstOrThrowSelectSchema__findFirstOrThrowFeedbackQuestionAnswer_schema.optional(); }, get include(){ return FeedbackQuestionAnswerIncludeObjectSchema.optional(); }, orderBy: z.union([FeedbackQuestionAnswerOrderByWithRelationInputObjectSchema, FeedbackQuestionAnswerOrderByWithRelationInputObjectSchema.array()]).optional(), where: FeedbackQuestionAnswerWhereInputObjectSchema.optional(), cursor: FeedbackQuestionAnswerWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), distinct: z.union([FeedbackQuestionAnswerScalarFieldEnumSchema, FeedbackQuestionAnswerScalarFieldEnumSchema.array()]).optional() }).strict() as unknown as z.ZodType; - -export const FeedbackQuestionAnswerFindFirstOrThrowZodSchema = z.object({ get select(){ return FeedbackQuestionAnswerFindFirstOrThrowSelectSchema__findFirstOrThrowFeedbackQuestionAnswer_schema.optional(); }, get include(){ return FeedbackQuestionAnswerIncludeObjectSchema.optional(); }, orderBy: z.union([FeedbackQuestionAnswerOrderByWithRelationInputObjectSchema, FeedbackQuestionAnswerOrderByWithRelationInputObjectSchema.array()]).optional(), where: FeedbackQuestionAnswerWhereInputObjectSchema.optional(), cursor: FeedbackQuestionAnswerWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), distinct: z.union([FeedbackQuestionAnswerScalarFieldEnumSchema, FeedbackQuestionAnswerScalarFieldEnumSchema.array()]).optional() }).strict(); - -// File: findManyFeedbackQuestionAnswer.schema.ts - -// Select schema needs to be in file to prevent circular imports -//------------------------------------------------------ - -export const FeedbackQuestionAnswerFindManySelectSchema__findManyFeedbackQuestionAnswer_schema: z.ZodType = z.object({ - id: z.boolean().optional(), - value: z.boolean().optional(), - questionId: z.boolean().optional(), - formAnswerId: z.boolean().optional(), - question: z.boolean().optional(), - formAnswer: z.boolean().optional(), - selectedOptions: z.boolean().optional(), - _count: z.boolean().optional() - }).strict() as unknown as z.ZodType; - -export const FeedbackQuestionAnswerFindManySelectZodSchema__findManyFeedbackQuestionAnswer_schema = z.object({ - id: z.boolean().optional(), - value: z.boolean().optional(), - questionId: z.boolean().optional(), - formAnswerId: z.boolean().optional(), - question: z.boolean().optional(), - formAnswer: z.boolean().optional(), - selectedOptions: z.boolean().optional(), - _count: z.boolean().optional() - }).strict(); - -export const FeedbackQuestionAnswerFindManySchema: z.ZodType = z.object({ get select(){ return FeedbackQuestionAnswerFindManySelectSchema__findManyFeedbackQuestionAnswer_schema.optional(); }, get include(){ return FeedbackQuestionAnswerIncludeObjectSchema.optional(); }, orderBy: z.union([FeedbackQuestionAnswerOrderByWithRelationInputObjectSchema, FeedbackQuestionAnswerOrderByWithRelationInputObjectSchema.array()]).optional(), where: FeedbackQuestionAnswerWhereInputObjectSchema.optional(), cursor: FeedbackQuestionAnswerWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), distinct: z.union([FeedbackQuestionAnswerScalarFieldEnumSchema, FeedbackQuestionAnswerScalarFieldEnumSchema.array()]).optional() }).strict() as unknown as z.ZodType; - -export const FeedbackQuestionAnswerFindManyZodSchema = z.object({ get select(){ return FeedbackQuestionAnswerFindManySelectSchema__findManyFeedbackQuestionAnswer_schema.optional(); }, get include(){ return FeedbackQuestionAnswerIncludeObjectSchema.optional(); }, orderBy: z.union([FeedbackQuestionAnswerOrderByWithRelationInputObjectSchema, FeedbackQuestionAnswerOrderByWithRelationInputObjectSchema.array()]).optional(), where: FeedbackQuestionAnswerWhereInputObjectSchema.optional(), cursor: FeedbackQuestionAnswerWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), distinct: z.union([FeedbackQuestionAnswerScalarFieldEnumSchema, FeedbackQuestionAnswerScalarFieldEnumSchema.array()]).optional() }).strict(); - -// File: countFeedbackQuestionAnswer.schema.ts - -export const FeedbackQuestionAnswerCountSchema: z.ZodType = z.object({ orderBy: z.union([FeedbackQuestionAnswerOrderByWithRelationInputObjectSchema, FeedbackQuestionAnswerOrderByWithRelationInputObjectSchema.array()]).optional(), where: FeedbackQuestionAnswerWhereInputObjectSchema.optional(), cursor: FeedbackQuestionAnswerWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), select: z.union([ z.literal(true), FeedbackQuestionAnswerCountAggregateInputObjectSchema ]).optional() }).strict() as unknown as z.ZodType; - -export const FeedbackQuestionAnswerCountZodSchema = z.object({ orderBy: z.union([FeedbackQuestionAnswerOrderByWithRelationInputObjectSchema, FeedbackQuestionAnswerOrderByWithRelationInputObjectSchema.array()]).optional(), where: FeedbackQuestionAnswerWhereInputObjectSchema.optional(), cursor: FeedbackQuestionAnswerWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), select: z.union([ z.literal(true), FeedbackQuestionAnswerCountAggregateInputObjectSchema ]).optional() }).strict(); - -// File: createOneFeedbackQuestionAnswer.schema.ts - -export const FeedbackQuestionAnswerCreateOneSchema: z.ZodType = z.object({ get select(){ return FeedbackQuestionAnswerSelectObjectSchema.optional(); }, get include(){ return FeedbackQuestionAnswerIncludeObjectSchema.optional(); }, data: z.union([FeedbackQuestionAnswerCreateInputObjectSchema, FeedbackQuestionAnswerUncheckedCreateInputObjectSchema]) }).strict() as unknown as z.ZodType; - -export const FeedbackQuestionAnswerCreateOneZodSchema = z.object({ get select(){ return FeedbackQuestionAnswerSelectObjectSchema.optional(); }, get include(){ return FeedbackQuestionAnswerIncludeObjectSchema.optional(); }, data: z.union([FeedbackQuestionAnswerCreateInputObjectSchema, FeedbackQuestionAnswerUncheckedCreateInputObjectSchema]) }).strict(); - -// File: createManyFeedbackQuestionAnswer.schema.ts - -export const FeedbackQuestionAnswerCreateManySchema: z.ZodType = z.object({ data: z.union([ FeedbackQuestionAnswerCreateManyInputObjectSchema, z.array(FeedbackQuestionAnswerCreateManyInputObjectSchema) ]), skipDuplicates: z.boolean().optional() }).strict() as unknown as z.ZodType; - -export const FeedbackQuestionAnswerCreateManyZodSchema = z.object({ data: z.union([ FeedbackQuestionAnswerCreateManyInputObjectSchema, z.array(FeedbackQuestionAnswerCreateManyInputObjectSchema) ]), skipDuplicates: z.boolean().optional() }).strict(); - -// File: createManyAndReturnFeedbackQuestionAnswer.schema.ts - -export const FeedbackQuestionAnswerCreateManyAndReturnSchema: z.ZodType = z.object({ get select(){ return FeedbackQuestionAnswerSelectObjectSchema.optional(); }, data: z.union([ FeedbackQuestionAnswerCreateManyInputObjectSchema, z.array(FeedbackQuestionAnswerCreateManyInputObjectSchema) ]), skipDuplicates: z.boolean().optional() }).strict() as unknown as z.ZodType; - -export const FeedbackQuestionAnswerCreateManyAndReturnZodSchema = z.object({ get select(){ return FeedbackQuestionAnswerSelectObjectSchema.optional(); }, data: z.union([ FeedbackQuestionAnswerCreateManyInputObjectSchema, z.array(FeedbackQuestionAnswerCreateManyInputObjectSchema) ]), skipDuplicates: z.boolean().optional() }).strict(); - -// File: deleteOneFeedbackQuestionAnswer.schema.ts - -export const FeedbackQuestionAnswerDeleteOneSchema: z.ZodType = z.object({ get select(){ return FeedbackQuestionAnswerSelectObjectSchema.optional(); }, get include(){ return FeedbackQuestionAnswerIncludeObjectSchema.optional(); }, where: FeedbackQuestionAnswerWhereUniqueInputObjectSchema }).strict() as unknown as z.ZodType; - -export const FeedbackQuestionAnswerDeleteOneZodSchema = z.object({ get select(){ return FeedbackQuestionAnswerSelectObjectSchema.optional(); }, get include(){ return FeedbackQuestionAnswerIncludeObjectSchema.optional(); }, where: FeedbackQuestionAnswerWhereUniqueInputObjectSchema }).strict(); - -// File: deleteManyFeedbackQuestionAnswer.schema.ts - -export const FeedbackQuestionAnswerDeleteManySchema: z.ZodType = z.object({ where: FeedbackQuestionAnswerWhereInputObjectSchema.optional() }).strict() as unknown as z.ZodType; - -export const FeedbackQuestionAnswerDeleteManyZodSchema = z.object({ where: FeedbackQuestionAnswerWhereInputObjectSchema.optional() }).strict(); - -// File: updateOneFeedbackQuestionAnswer.schema.ts - -export const FeedbackQuestionAnswerUpdateOneSchema: z.ZodType = z.object({ get select(){ return FeedbackQuestionAnswerSelectObjectSchema.optional(); }, get include(){ return FeedbackQuestionAnswerIncludeObjectSchema.optional(); }, data: z.union([FeedbackQuestionAnswerUpdateInputObjectSchema, FeedbackQuestionAnswerUncheckedUpdateInputObjectSchema]), where: FeedbackQuestionAnswerWhereUniqueInputObjectSchema }).strict() as unknown as z.ZodType; - -export const FeedbackQuestionAnswerUpdateOneZodSchema = z.object({ get select(){ return FeedbackQuestionAnswerSelectObjectSchema.optional(); }, get include(){ return FeedbackQuestionAnswerIncludeObjectSchema.optional(); }, data: z.union([FeedbackQuestionAnswerUpdateInputObjectSchema, FeedbackQuestionAnswerUncheckedUpdateInputObjectSchema]), where: FeedbackQuestionAnswerWhereUniqueInputObjectSchema }).strict(); - -// File: updateManyFeedbackQuestionAnswer.schema.ts - -export const FeedbackQuestionAnswerUpdateManySchema: z.ZodType = z.object({ data: FeedbackQuestionAnswerUpdateManyMutationInputObjectSchema, where: FeedbackQuestionAnswerWhereInputObjectSchema.optional() }).strict() as unknown as z.ZodType; - -export const FeedbackQuestionAnswerUpdateManyZodSchema = z.object({ data: FeedbackQuestionAnswerUpdateManyMutationInputObjectSchema, where: FeedbackQuestionAnswerWhereInputObjectSchema.optional() }).strict(); - -// File: updateManyAndReturnFeedbackQuestionAnswer.schema.ts - -export const FeedbackQuestionAnswerUpdateManyAndReturnSchema: z.ZodType = z.object({ get select(){ return FeedbackQuestionAnswerSelectObjectSchema.optional(); }, data: FeedbackQuestionAnswerUpdateManyMutationInputObjectSchema, where: FeedbackQuestionAnswerWhereInputObjectSchema.optional() }).strict() as unknown as z.ZodType; - -export const FeedbackQuestionAnswerUpdateManyAndReturnZodSchema = z.object({ get select(){ return FeedbackQuestionAnswerSelectObjectSchema.optional(); }, data: FeedbackQuestionAnswerUpdateManyMutationInputObjectSchema, where: FeedbackQuestionAnswerWhereInputObjectSchema.optional() }).strict(); - -// File: upsertOneFeedbackQuestionAnswer.schema.ts - -export const FeedbackQuestionAnswerUpsertOneSchema: z.ZodType = z.object({ get select(){ return FeedbackQuestionAnswerSelectObjectSchema.optional(); }, get include(){ return FeedbackQuestionAnswerIncludeObjectSchema.optional(); }, where: FeedbackQuestionAnswerWhereUniqueInputObjectSchema, create: z.union([ FeedbackQuestionAnswerCreateInputObjectSchema, FeedbackQuestionAnswerUncheckedCreateInputObjectSchema ]), update: z.union([ FeedbackQuestionAnswerUpdateInputObjectSchema, FeedbackQuestionAnswerUncheckedUpdateInputObjectSchema ]) }).strict() as unknown as z.ZodType; - -export const FeedbackQuestionAnswerUpsertOneZodSchema = z.object({ get select(){ return FeedbackQuestionAnswerSelectObjectSchema.optional(); }, get include(){ return FeedbackQuestionAnswerIncludeObjectSchema.optional(); }, where: FeedbackQuestionAnswerWhereUniqueInputObjectSchema, create: z.union([ FeedbackQuestionAnswerCreateInputObjectSchema, FeedbackQuestionAnswerUncheckedCreateInputObjectSchema ]), update: z.union([ FeedbackQuestionAnswerUpdateInputObjectSchema, FeedbackQuestionAnswerUncheckedUpdateInputObjectSchema ]) }).strict(); - -// File: aggregateFeedbackQuestionAnswer.schema.ts - -export const FeedbackQuestionAnswerAggregateSchema: z.ZodType = z.object({ orderBy: z.union([FeedbackQuestionAnswerOrderByWithRelationInputObjectSchema, FeedbackQuestionAnswerOrderByWithRelationInputObjectSchema.array()]).optional(), where: FeedbackQuestionAnswerWhereInputObjectSchema.optional(), cursor: FeedbackQuestionAnswerWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), _count: z.union([ z.literal(true), FeedbackQuestionAnswerCountAggregateInputObjectSchema ]).optional(), _min: FeedbackQuestionAnswerMinAggregateInputObjectSchema.optional(), _max: FeedbackQuestionAnswerMaxAggregateInputObjectSchema.optional() }).strict() as unknown as z.ZodType; - -export const FeedbackQuestionAnswerAggregateZodSchema = z.object({ orderBy: z.union([FeedbackQuestionAnswerOrderByWithRelationInputObjectSchema, FeedbackQuestionAnswerOrderByWithRelationInputObjectSchema.array()]).optional(), where: FeedbackQuestionAnswerWhereInputObjectSchema.optional(), cursor: FeedbackQuestionAnswerWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), _count: z.union([ z.literal(true), FeedbackQuestionAnswerCountAggregateInputObjectSchema ]).optional(), _min: FeedbackQuestionAnswerMinAggregateInputObjectSchema.optional(), _max: FeedbackQuestionAnswerMaxAggregateInputObjectSchema.optional() }).strict(); - -// File: groupByFeedbackQuestionAnswer.schema.ts - -export const FeedbackQuestionAnswerGroupBySchema: z.ZodType = z.object({ where: FeedbackQuestionAnswerWhereInputObjectSchema.optional(), orderBy: z.union([FeedbackQuestionAnswerOrderByWithAggregationInputObjectSchema, FeedbackQuestionAnswerOrderByWithAggregationInputObjectSchema.array()]).optional(), having: FeedbackQuestionAnswerScalarWhereWithAggregatesInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), by: z.array(FeedbackQuestionAnswerScalarFieldEnumSchema), _count: z.union([ z.literal(true), FeedbackQuestionAnswerCountAggregateInputObjectSchema ]).optional(), _min: FeedbackQuestionAnswerMinAggregateInputObjectSchema.optional(), _max: FeedbackQuestionAnswerMaxAggregateInputObjectSchema.optional() }).strict() as unknown as z.ZodType; - -export const FeedbackQuestionAnswerGroupByZodSchema = z.object({ where: FeedbackQuestionAnswerWhereInputObjectSchema.optional(), orderBy: z.union([FeedbackQuestionAnswerOrderByWithAggregationInputObjectSchema, FeedbackQuestionAnswerOrderByWithAggregationInputObjectSchema.array()]).optional(), having: FeedbackQuestionAnswerScalarWhereWithAggregatesInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), by: z.array(FeedbackQuestionAnswerScalarFieldEnumSchema), _count: z.union([ z.literal(true), FeedbackQuestionAnswerCountAggregateInputObjectSchema ]).optional(), _min: FeedbackQuestionAnswerMinAggregateInputObjectSchema.optional(), _max: FeedbackQuestionAnswerMaxAggregateInputObjectSchema.optional() }).strict(); - -// File: findUniqueFeedbackQuestionAnswerOptionLink.schema.ts - -export const FeedbackQuestionAnswerOptionLinkFindUniqueSchema: z.ZodType = z.object({ get select(){ return FeedbackQuestionAnswerOptionLinkSelectObjectSchema.optional(); }, get include(){ return FeedbackQuestionAnswerOptionLinkIncludeObjectSchema.optional(); }, where: FeedbackQuestionAnswerOptionLinkWhereUniqueInputObjectSchema }).strict() as unknown as z.ZodType; - -export const FeedbackQuestionAnswerOptionLinkFindUniqueZodSchema = z.object({ get select(){ return FeedbackQuestionAnswerOptionLinkSelectObjectSchema.optional(); }, get include(){ return FeedbackQuestionAnswerOptionLinkIncludeObjectSchema.optional(); }, where: FeedbackQuestionAnswerOptionLinkWhereUniqueInputObjectSchema }).strict(); - -// File: findUniqueOrThrowFeedbackQuestionAnswerOptionLink.schema.ts - -export const FeedbackQuestionAnswerOptionLinkFindUniqueOrThrowSchema: z.ZodType = z.object({ get select(){ return FeedbackQuestionAnswerOptionLinkSelectObjectSchema.optional(); }, get include(){ return FeedbackQuestionAnswerOptionLinkIncludeObjectSchema.optional(); }, where: FeedbackQuestionAnswerOptionLinkWhereUniqueInputObjectSchema }).strict() as unknown as z.ZodType; - -export const FeedbackQuestionAnswerOptionLinkFindUniqueOrThrowZodSchema = z.object({ get select(){ return FeedbackQuestionAnswerOptionLinkSelectObjectSchema.optional(); }, get include(){ return FeedbackQuestionAnswerOptionLinkIncludeObjectSchema.optional(); }, where: FeedbackQuestionAnswerOptionLinkWhereUniqueInputObjectSchema }).strict(); - -// File: findFirstFeedbackQuestionAnswerOptionLink.schema.ts - -// Select schema needs to be in file to prevent circular imports -//------------------------------------------------------ - -export const FeedbackQuestionAnswerOptionLinkFindFirstSelectSchema__findFirstFeedbackQuestionAnswerOptionLink_schema: z.ZodType = z.object({ - feedbackQuestionOptionId: z.boolean().optional(), - feedbackQuestionAnswerId: z.boolean().optional(), - feedbackQuestionOption: z.boolean().optional(), - feedbackQuestionAnswer: z.boolean().optional() - }).strict() as unknown as z.ZodType; - -export const FeedbackQuestionAnswerOptionLinkFindFirstSelectZodSchema__findFirstFeedbackQuestionAnswerOptionLink_schema = z.object({ - feedbackQuestionOptionId: z.boolean().optional(), - feedbackQuestionAnswerId: z.boolean().optional(), - feedbackQuestionOption: z.boolean().optional(), - feedbackQuestionAnswer: z.boolean().optional() - }).strict(); - -export const FeedbackQuestionAnswerOptionLinkFindFirstSchema: z.ZodType = z.object({ get select(){ return FeedbackQuestionAnswerOptionLinkFindFirstSelectSchema__findFirstFeedbackQuestionAnswerOptionLink_schema.optional(); }, get include(){ return FeedbackQuestionAnswerOptionLinkIncludeObjectSchema.optional(); }, orderBy: z.union([FeedbackQuestionAnswerOptionLinkOrderByWithRelationInputObjectSchema, FeedbackQuestionAnswerOptionLinkOrderByWithRelationInputObjectSchema.array()]).optional(), where: FeedbackQuestionAnswerOptionLinkWhereInputObjectSchema.optional(), cursor: FeedbackQuestionAnswerOptionLinkWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), distinct: z.union([FeedbackQuestionAnswerOptionLinkScalarFieldEnumSchema, FeedbackQuestionAnswerOptionLinkScalarFieldEnumSchema.array()]).optional() }).strict() as unknown as z.ZodType; - -export const FeedbackQuestionAnswerOptionLinkFindFirstZodSchema = z.object({ get select(){ return FeedbackQuestionAnswerOptionLinkFindFirstSelectSchema__findFirstFeedbackQuestionAnswerOptionLink_schema.optional(); }, get include(){ return FeedbackQuestionAnswerOptionLinkIncludeObjectSchema.optional(); }, orderBy: z.union([FeedbackQuestionAnswerOptionLinkOrderByWithRelationInputObjectSchema, FeedbackQuestionAnswerOptionLinkOrderByWithRelationInputObjectSchema.array()]).optional(), where: FeedbackQuestionAnswerOptionLinkWhereInputObjectSchema.optional(), cursor: FeedbackQuestionAnswerOptionLinkWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), distinct: z.union([FeedbackQuestionAnswerOptionLinkScalarFieldEnumSchema, FeedbackQuestionAnswerOptionLinkScalarFieldEnumSchema.array()]).optional() }).strict(); - -// File: findFirstOrThrowFeedbackQuestionAnswerOptionLink.schema.ts - -// Select schema needs to be in file to prevent circular imports -//------------------------------------------------------ - -export const FeedbackQuestionAnswerOptionLinkFindFirstOrThrowSelectSchema__findFirstOrThrowFeedbackQuestionAnswerOptionLink_schema: z.ZodType = z.object({ - feedbackQuestionOptionId: z.boolean().optional(), - feedbackQuestionAnswerId: z.boolean().optional(), - feedbackQuestionOption: z.boolean().optional(), - feedbackQuestionAnswer: z.boolean().optional() - }).strict() as unknown as z.ZodType; - -export const FeedbackQuestionAnswerOptionLinkFindFirstOrThrowSelectZodSchema__findFirstOrThrowFeedbackQuestionAnswerOptionLink_schema = z.object({ - feedbackQuestionOptionId: z.boolean().optional(), - feedbackQuestionAnswerId: z.boolean().optional(), - feedbackQuestionOption: z.boolean().optional(), - feedbackQuestionAnswer: z.boolean().optional() - }).strict(); - -export const FeedbackQuestionAnswerOptionLinkFindFirstOrThrowSchema: z.ZodType = z.object({ get select(){ return FeedbackQuestionAnswerOptionLinkFindFirstOrThrowSelectSchema__findFirstOrThrowFeedbackQuestionAnswerOptionLink_schema.optional(); }, get include(){ return FeedbackQuestionAnswerOptionLinkIncludeObjectSchema.optional(); }, orderBy: z.union([FeedbackQuestionAnswerOptionLinkOrderByWithRelationInputObjectSchema, FeedbackQuestionAnswerOptionLinkOrderByWithRelationInputObjectSchema.array()]).optional(), where: FeedbackQuestionAnswerOptionLinkWhereInputObjectSchema.optional(), cursor: FeedbackQuestionAnswerOptionLinkWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), distinct: z.union([FeedbackQuestionAnswerOptionLinkScalarFieldEnumSchema, FeedbackQuestionAnswerOptionLinkScalarFieldEnumSchema.array()]).optional() }).strict() as unknown as z.ZodType; - -export const FeedbackQuestionAnswerOptionLinkFindFirstOrThrowZodSchema = z.object({ get select(){ return FeedbackQuestionAnswerOptionLinkFindFirstOrThrowSelectSchema__findFirstOrThrowFeedbackQuestionAnswerOptionLink_schema.optional(); }, get include(){ return FeedbackQuestionAnswerOptionLinkIncludeObjectSchema.optional(); }, orderBy: z.union([FeedbackQuestionAnswerOptionLinkOrderByWithRelationInputObjectSchema, FeedbackQuestionAnswerOptionLinkOrderByWithRelationInputObjectSchema.array()]).optional(), where: FeedbackQuestionAnswerOptionLinkWhereInputObjectSchema.optional(), cursor: FeedbackQuestionAnswerOptionLinkWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), distinct: z.union([FeedbackQuestionAnswerOptionLinkScalarFieldEnumSchema, FeedbackQuestionAnswerOptionLinkScalarFieldEnumSchema.array()]).optional() }).strict(); - -// File: findManyFeedbackQuestionAnswerOptionLink.schema.ts - -// Select schema needs to be in file to prevent circular imports -//------------------------------------------------------ - -export const FeedbackQuestionAnswerOptionLinkFindManySelectSchema__findManyFeedbackQuestionAnswerOptionLink_schema: z.ZodType = z.object({ - feedbackQuestionOptionId: z.boolean().optional(), - feedbackQuestionAnswerId: z.boolean().optional(), - feedbackQuestionOption: z.boolean().optional(), - feedbackQuestionAnswer: z.boolean().optional() - }).strict() as unknown as z.ZodType; - -export const FeedbackQuestionAnswerOptionLinkFindManySelectZodSchema__findManyFeedbackQuestionAnswerOptionLink_schema = z.object({ - feedbackQuestionOptionId: z.boolean().optional(), - feedbackQuestionAnswerId: z.boolean().optional(), - feedbackQuestionOption: z.boolean().optional(), - feedbackQuestionAnswer: z.boolean().optional() - }).strict(); - -export const FeedbackQuestionAnswerOptionLinkFindManySchema: z.ZodType = z.object({ get select(){ return FeedbackQuestionAnswerOptionLinkFindManySelectSchema__findManyFeedbackQuestionAnswerOptionLink_schema.optional(); }, get include(){ return FeedbackQuestionAnswerOptionLinkIncludeObjectSchema.optional(); }, orderBy: z.union([FeedbackQuestionAnswerOptionLinkOrderByWithRelationInputObjectSchema, FeedbackQuestionAnswerOptionLinkOrderByWithRelationInputObjectSchema.array()]).optional(), where: FeedbackQuestionAnswerOptionLinkWhereInputObjectSchema.optional(), cursor: FeedbackQuestionAnswerOptionLinkWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), distinct: z.union([FeedbackQuestionAnswerOptionLinkScalarFieldEnumSchema, FeedbackQuestionAnswerOptionLinkScalarFieldEnumSchema.array()]).optional() }).strict() as unknown as z.ZodType; - -export const FeedbackQuestionAnswerOptionLinkFindManyZodSchema = z.object({ get select(){ return FeedbackQuestionAnswerOptionLinkFindManySelectSchema__findManyFeedbackQuestionAnswerOptionLink_schema.optional(); }, get include(){ return FeedbackQuestionAnswerOptionLinkIncludeObjectSchema.optional(); }, orderBy: z.union([FeedbackQuestionAnswerOptionLinkOrderByWithRelationInputObjectSchema, FeedbackQuestionAnswerOptionLinkOrderByWithRelationInputObjectSchema.array()]).optional(), where: FeedbackQuestionAnswerOptionLinkWhereInputObjectSchema.optional(), cursor: FeedbackQuestionAnswerOptionLinkWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), distinct: z.union([FeedbackQuestionAnswerOptionLinkScalarFieldEnumSchema, FeedbackQuestionAnswerOptionLinkScalarFieldEnumSchema.array()]).optional() }).strict(); - -// File: countFeedbackQuestionAnswerOptionLink.schema.ts - -export const FeedbackQuestionAnswerOptionLinkCountSchema: z.ZodType = z.object({ orderBy: z.union([FeedbackQuestionAnswerOptionLinkOrderByWithRelationInputObjectSchema, FeedbackQuestionAnswerOptionLinkOrderByWithRelationInputObjectSchema.array()]).optional(), where: FeedbackQuestionAnswerOptionLinkWhereInputObjectSchema.optional(), cursor: FeedbackQuestionAnswerOptionLinkWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), select: z.union([ z.literal(true), FeedbackQuestionAnswerOptionLinkCountAggregateInputObjectSchema ]).optional() }).strict() as unknown as z.ZodType; - -export const FeedbackQuestionAnswerOptionLinkCountZodSchema = z.object({ orderBy: z.union([FeedbackQuestionAnswerOptionLinkOrderByWithRelationInputObjectSchema, FeedbackQuestionAnswerOptionLinkOrderByWithRelationInputObjectSchema.array()]).optional(), where: FeedbackQuestionAnswerOptionLinkWhereInputObjectSchema.optional(), cursor: FeedbackQuestionAnswerOptionLinkWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), select: z.union([ z.literal(true), FeedbackQuestionAnswerOptionLinkCountAggregateInputObjectSchema ]).optional() }).strict(); - -// File: createOneFeedbackQuestionAnswerOptionLink.schema.ts - -export const FeedbackQuestionAnswerOptionLinkCreateOneSchema: z.ZodType = z.object({ get select(){ return FeedbackQuestionAnswerOptionLinkSelectObjectSchema.optional(); }, get include(){ return FeedbackQuestionAnswerOptionLinkIncludeObjectSchema.optional(); }, data: z.union([FeedbackQuestionAnswerOptionLinkCreateInputObjectSchema, FeedbackQuestionAnswerOptionLinkUncheckedCreateInputObjectSchema]) }).strict() as unknown as z.ZodType; - -export const FeedbackQuestionAnswerOptionLinkCreateOneZodSchema = z.object({ get select(){ return FeedbackQuestionAnswerOptionLinkSelectObjectSchema.optional(); }, get include(){ return FeedbackQuestionAnswerOptionLinkIncludeObjectSchema.optional(); }, data: z.union([FeedbackQuestionAnswerOptionLinkCreateInputObjectSchema, FeedbackQuestionAnswerOptionLinkUncheckedCreateInputObjectSchema]) }).strict(); - -// File: createManyFeedbackQuestionAnswerOptionLink.schema.ts - -export const FeedbackQuestionAnswerOptionLinkCreateManySchema: z.ZodType = z.object({ data: z.union([ FeedbackQuestionAnswerOptionLinkCreateManyInputObjectSchema, z.array(FeedbackQuestionAnswerOptionLinkCreateManyInputObjectSchema) ]), skipDuplicates: z.boolean().optional() }).strict() as unknown as z.ZodType; - -export const FeedbackQuestionAnswerOptionLinkCreateManyZodSchema = z.object({ data: z.union([ FeedbackQuestionAnswerOptionLinkCreateManyInputObjectSchema, z.array(FeedbackQuestionAnswerOptionLinkCreateManyInputObjectSchema) ]), skipDuplicates: z.boolean().optional() }).strict(); - -// File: createManyAndReturnFeedbackQuestionAnswerOptionLink.schema.ts - -export const FeedbackQuestionAnswerOptionLinkCreateManyAndReturnSchema: z.ZodType = z.object({ get select(){ return FeedbackQuestionAnswerOptionLinkSelectObjectSchema.optional(); }, data: z.union([ FeedbackQuestionAnswerOptionLinkCreateManyInputObjectSchema, z.array(FeedbackQuestionAnswerOptionLinkCreateManyInputObjectSchema) ]), skipDuplicates: z.boolean().optional() }).strict() as unknown as z.ZodType; - -export const FeedbackQuestionAnswerOptionLinkCreateManyAndReturnZodSchema = z.object({ get select(){ return FeedbackQuestionAnswerOptionLinkSelectObjectSchema.optional(); }, data: z.union([ FeedbackQuestionAnswerOptionLinkCreateManyInputObjectSchema, z.array(FeedbackQuestionAnswerOptionLinkCreateManyInputObjectSchema) ]), skipDuplicates: z.boolean().optional() }).strict(); - -// File: deleteOneFeedbackQuestionAnswerOptionLink.schema.ts - -export const FeedbackQuestionAnswerOptionLinkDeleteOneSchema: z.ZodType = z.object({ get select(){ return FeedbackQuestionAnswerOptionLinkSelectObjectSchema.optional(); }, get include(){ return FeedbackQuestionAnswerOptionLinkIncludeObjectSchema.optional(); }, where: FeedbackQuestionAnswerOptionLinkWhereUniqueInputObjectSchema }).strict() as unknown as z.ZodType; - -export const FeedbackQuestionAnswerOptionLinkDeleteOneZodSchema = z.object({ get select(){ return FeedbackQuestionAnswerOptionLinkSelectObjectSchema.optional(); }, get include(){ return FeedbackQuestionAnswerOptionLinkIncludeObjectSchema.optional(); }, where: FeedbackQuestionAnswerOptionLinkWhereUniqueInputObjectSchema }).strict(); - -// File: deleteManyFeedbackQuestionAnswerOptionLink.schema.ts - -export const FeedbackQuestionAnswerOptionLinkDeleteManySchema: z.ZodType = z.object({ where: FeedbackQuestionAnswerOptionLinkWhereInputObjectSchema.optional() }).strict() as unknown as z.ZodType; - -export const FeedbackQuestionAnswerOptionLinkDeleteManyZodSchema = z.object({ where: FeedbackQuestionAnswerOptionLinkWhereInputObjectSchema.optional() }).strict(); - -// File: updateOneFeedbackQuestionAnswerOptionLink.schema.ts - -export const FeedbackQuestionAnswerOptionLinkUpdateOneSchema: z.ZodType = z.object({ get select(){ return FeedbackQuestionAnswerOptionLinkSelectObjectSchema.optional(); }, get include(){ return FeedbackQuestionAnswerOptionLinkIncludeObjectSchema.optional(); }, data: z.union([FeedbackQuestionAnswerOptionLinkUpdateInputObjectSchema, FeedbackQuestionAnswerOptionLinkUncheckedUpdateInputObjectSchema]), where: FeedbackQuestionAnswerOptionLinkWhereUniqueInputObjectSchema }).strict() as unknown as z.ZodType; - -export const FeedbackQuestionAnswerOptionLinkUpdateOneZodSchema = z.object({ get select(){ return FeedbackQuestionAnswerOptionLinkSelectObjectSchema.optional(); }, get include(){ return FeedbackQuestionAnswerOptionLinkIncludeObjectSchema.optional(); }, data: z.union([FeedbackQuestionAnswerOptionLinkUpdateInputObjectSchema, FeedbackQuestionAnswerOptionLinkUncheckedUpdateInputObjectSchema]), where: FeedbackQuestionAnswerOptionLinkWhereUniqueInputObjectSchema }).strict(); - -// File: updateManyFeedbackQuestionAnswerOptionLink.schema.ts - -export const FeedbackQuestionAnswerOptionLinkUpdateManySchema: z.ZodType = z.object({ data: FeedbackQuestionAnswerOptionLinkUpdateManyMutationInputObjectSchema, where: FeedbackQuestionAnswerOptionLinkWhereInputObjectSchema.optional() }).strict() as unknown as z.ZodType; - -export const FeedbackQuestionAnswerOptionLinkUpdateManyZodSchema = z.object({ data: FeedbackQuestionAnswerOptionLinkUpdateManyMutationInputObjectSchema, where: FeedbackQuestionAnswerOptionLinkWhereInputObjectSchema.optional() }).strict(); - -// File: updateManyAndReturnFeedbackQuestionAnswerOptionLink.schema.ts - -export const FeedbackQuestionAnswerOptionLinkUpdateManyAndReturnSchema: z.ZodType = z.object({ get select(){ return FeedbackQuestionAnswerOptionLinkSelectObjectSchema.optional(); }, data: FeedbackQuestionAnswerOptionLinkUpdateManyMutationInputObjectSchema, where: FeedbackQuestionAnswerOptionLinkWhereInputObjectSchema.optional() }).strict() as unknown as z.ZodType; - -export const FeedbackQuestionAnswerOptionLinkUpdateManyAndReturnZodSchema = z.object({ get select(){ return FeedbackQuestionAnswerOptionLinkSelectObjectSchema.optional(); }, data: FeedbackQuestionAnswerOptionLinkUpdateManyMutationInputObjectSchema, where: FeedbackQuestionAnswerOptionLinkWhereInputObjectSchema.optional() }).strict(); - -// File: upsertOneFeedbackQuestionAnswerOptionLink.schema.ts - -export const FeedbackQuestionAnswerOptionLinkUpsertOneSchema: z.ZodType = z.object({ get select(){ return FeedbackQuestionAnswerOptionLinkSelectObjectSchema.optional(); }, get include(){ return FeedbackQuestionAnswerOptionLinkIncludeObjectSchema.optional(); }, where: FeedbackQuestionAnswerOptionLinkWhereUniqueInputObjectSchema, create: z.union([ FeedbackQuestionAnswerOptionLinkCreateInputObjectSchema, FeedbackQuestionAnswerOptionLinkUncheckedCreateInputObjectSchema ]), update: z.union([ FeedbackQuestionAnswerOptionLinkUpdateInputObjectSchema, FeedbackQuestionAnswerOptionLinkUncheckedUpdateInputObjectSchema ]) }).strict() as unknown as z.ZodType; - -export const FeedbackQuestionAnswerOptionLinkUpsertOneZodSchema = z.object({ get select(){ return FeedbackQuestionAnswerOptionLinkSelectObjectSchema.optional(); }, get include(){ return FeedbackQuestionAnswerOptionLinkIncludeObjectSchema.optional(); }, where: FeedbackQuestionAnswerOptionLinkWhereUniqueInputObjectSchema, create: z.union([ FeedbackQuestionAnswerOptionLinkCreateInputObjectSchema, FeedbackQuestionAnswerOptionLinkUncheckedCreateInputObjectSchema ]), update: z.union([ FeedbackQuestionAnswerOptionLinkUpdateInputObjectSchema, FeedbackQuestionAnswerOptionLinkUncheckedUpdateInputObjectSchema ]) }).strict(); - -// File: aggregateFeedbackQuestionAnswerOptionLink.schema.ts - -export const FeedbackQuestionAnswerOptionLinkAggregateSchema: z.ZodType = z.object({ orderBy: z.union([FeedbackQuestionAnswerOptionLinkOrderByWithRelationInputObjectSchema, FeedbackQuestionAnswerOptionLinkOrderByWithRelationInputObjectSchema.array()]).optional(), where: FeedbackQuestionAnswerOptionLinkWhereInputObjectSchema.optional(), cursor: FeedbackQuestionAnswerOptionLinkWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), _count: z.union([ z.literal(true), FeedbackQuestionAnswerOptionLinkCountAggregateInputObjectSchema ]).optional(), _min: FeedbackQuestionAnswerOptionLinkMinAggregateInputObjectSchema.optional(), _max: FeedbackQuestionAnswerOptionLinkMaxAggregateInputObjectSchema.optional() }).strict() as unknown as z.ZodType; - -export const FeedbackQuestionAnswerOptionLinkAggregateZodSchema = z.object({ orderBy: z.union([FeedbackQuestionAnswerOptionLinkOrderByWithRelationInputObjectSchema, FeedbackQuestionAnswerOptionLinkOrderByWithRelationInputObjectSchema.array()]).optional(), where: FeedbackQuestionAnswerOptionLinkWhereInputObjectSchema.optional(), cursor: FeedbackQuestionAnswerOptionLinkWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), _count: z.union([ z.literal(true), FeedbackQuestionAnswerOptionLinkCountAggregateInputObjectSchema ]).optional(), _min: FeedbackQuestionAnswerOptionLinkMinAggregateInputObjectSchema.optional(), _max: FeedbackQuestionAnswerOptionLinkMaxAggregateInputObjectSchema.optional() }).strict(); - -// File: groupByFeedbackQuestionAnswerOptionLink.schema.ts - -export const FeedbackQuestionAnswerOptionLinkGroupBySchema: z.ZodType = z.object({ where: FeedbackQuestionAnswerOptionLinkWhereInputObjectSchema.optional(), orderBy: z.union([FeedbackQuestionAnswerOptionLinkOrderByWithAggregationInputObjectSchema, FeedbackQuestionAnswerOptionLinkOrderByWithAggregationInputObjectSchema.array()]).optional(), having: FeedbackQuestionAnswerOptionLinkScalarWhereWithAggregatesInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), by: z.array(FeedbackQuestionAnswerOptionLinkScalarFieldEnumSchema), _count: z.union([ z.literal(true), FeedbackQuestionAnswerOptionLinkCountAggregateInputObjectSchema ]).optional(), _min: FeedbackQuestionAnswerOptionLinkMinAggregateInputObjectSchema.optional(), _max: FeedbackQuestionAnswerOptionLinkMaxAggregateInputObjectSchema.optional() }).strict() as unknown as z.ZodType; - -export const FeedbackQuestionAnswerOptionLinkGroupByZodSchema = z.object({ where: FeedbackQuestionAnswerOptionLinkWhereInputObjectSchema.optional(), orderBy: z.union([FeedbackQuestionAnswerOptionLinkOrderByWithAggregationInputObjectSchema, FeedbackQuestionAnswerOptionLinkOrderByWithAggregationInputObjectSchema.array()]).optional(), having: FeedbackQuestionAnswerOptionLinkScalarWhereWithAggregatesInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), by: z.array(FeedbackQuestionAnswerOptionLinkScalarFieldEnumSchema), _count: z.union([ z.literal(true), FeedbackQuestionAnswerOptionLinkCountAggregateInputObjectSchema ]).optional(), _min: FeedbackQuestionAnswerOptionLinkMinAggregateInputObjectSchema.optional(), _max: FeedbackQuestionAnswerOptionLinkMaxAggregateInputObjectSchema.optional() }).strict(); - -// File: findUniqueFeedbackFormAnswer.schema.ts - -export const FeedbackFormAnswerFindUniqueSchema: z.ZodType = z.object({ get select(){ return FeedbackFormAnswerSelectObjectSchema.optional(); }, get include(){ return FeedbackFormAnswerIncludeObjectSchema.optional(); }, where: FeedbackFormAnswerWhereUniqueInputObjectSchema }).strict() as unknown as z.ZodType; - -export const FeedbackFormAnswerFindUniqueZodSchema = z.object({ get select(){ return FeedbackFormAnswerSelectObjectSchema.optional(); }, get include(){ return FeedbackFormAnswerIncludeObjectSchema.optional(); }, where: FeedbackFormAnswerWhereUniqueInputObjectSchema }).strict(); - -// File: findUniqueOrThrowFeedbackFormAnswer.schema.ts - -export const FeedbackFormAnswerFindUniqueOrThrowSchema: z.ZodType = z.object({ get select(){ return FeedbackFormAnswerSelectObjectSchema.optional(); }, get include(){ return FeedbackFormAnswerIncludeObjectSchema.optional(); }, where: FeedbackFormAnswerWhereUniqueInputObjectSchema }).strict() as unknown as z.ZodType; - -export const FeedbackFormAnswerFindUniqueOrThrowZodSchema = z.object({ get select(){ return FeedbackFormAnswerSelectObjectSchema.optional(); }, get include(){ return FeedbackFormAnswerIncludeObjectSchema.optional(); }, where: FeedbackFormAnswerWhereUniqueInputObjectSchema }).strict(); - -// File: findFirstFeedbackFormAnswer.schema.ts - -// Select schema needs to be in file to prevent circular imports -//------------------------------------------------------ - -export const FeedbackFormAnswerFindFirstSelectSchema__findFirstFeedbackFormAnswer_schema: z.ZodType = z.object({ - id: z.boolean().optional(), - createdAt: z.boolean().optional(), - updatedAt: z.boolean().optional(), - feedbackFormId: z.boolean().optional(), - attendeeId: z.boolean().optional(), - feedbackForm: z.boolean().optional(), - attendee: z.boolean().optional(), - answers: z.boolean().optional(), - _count: z.boolean().optional() - }).strict() as unknown as z.ZodType; - -export const FeedbackFormAnswerFindFirstSelectZodSchema__findFirstFeedbackFormAnswer_schema = z.object({ - id: z.boolean().optional(), - createdAt: z.boolean().optional(), - updatedAt: z.boolean().optional(), - feedbackFormId: z.boolean().optional(), - attendeeId: z.boolean().optional(), - feedbackForm: z.boolean().optional(), - attendee: z.boolean().optional(), - answers: z.boolean().optional(), - _count: z.boolean().optional() - }).strict(); - -export const FeedbackFormAnswerFindFirstSchema: z.ZodType = z.object({ get select(){ return FeedbackFormAnswerFindFirstSelectSchema__findFirstFeedbackFormAnswer_schema.optional(); }, get include(){ return FeedbackFormAnswerIncludeObjectSchema.optional(); }, orderBy: z.union([FeedbackFormAnswerOrderByWithRelationInputObjectSchema, FeedbackFormAnswerOrderByWithRelationInputObjectSchema.array()]).optional(), where: FeedbackFormAnswerWhereInputObjectSchema.optional(), cursor: FeedbackFormAnswerWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), distinct: z.union([FeedbackFormAnswerScalarFieldEnumSchema, FeedbackFormAnswerScalarFieldEnumSchema.array()]).optional() }).strict() as unknown as z.ZodType; - -export const FeedbackFormAnswerFindFirstZodSchema = z.object({ get select(){ return FeedbackFormAnswerFindFirstSelectSchema__findFirstFeedbackFormAnswer_schema.optional(); }, get include(){ return FeedbackFormAnswerIncludeObjectSchema.optional(); }, orderBy: z.union([FeedbackFormAnswerOrderByWithRelationInputObjectSchema, FeedbackFormAnswerOrderByWithRelationInputObjectSchema.array()]).optional(), where: FeedbackFormAnswerWhereInputObjectSchema.optional(), cursor: FeedbackFormAnswerWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), distinct: z.union([FeedbackFormAnswerScalarFieldEnumSchema, FeedbackFormAnswerScalarFieldEnumSchema.array()]).optional() }).strict(); - -// File: findFirstOrThrowFeedbackFormAnswer.schema.ts - -// Select schema needs to be in file to prevent circular imports -//------------------------------------------------------ - -export const FeedbackFormAnswerFindFirstOrThrowSelectSchema__findFirstOrThrowFeedbackFormAnswer_schema: z.ZodType = z.object({ - id: z.boolean().optional(), - createdAt: z.boolean().optional(), - updatedAt: z.boolean().optional(), - feedbackFormId: z.boolean().optional(), - attendeeId: z.boolean().optional(), - feedbackForm: z.boolean().optional(), - attendee: z.boolean().optional(), - answers: z.boolean().optional(), - _count: z.boolean().optional() - }).strict() as unknown as z.ZodType; - -export const FeedbackFormAnswerFindFirstOrThrowSelectZodSchema__findFirstOrThrowFeedbackFormAnswer_schema = z.object({ - id: z.boolean().optional(), - createdAt: z.boolean().optional(), - updatedAt: z.boolean().optional(), - feedbackFormId: z.boolean().optional(), - attendeeId: z.boolean().optional(), - feedbackForm: z.boolean().optional(), - attendee: z.boolean().optional(), - answers: z.boolean().optional(), - _count: z.boolean().optional() - }).strict(); - -export const FeedbackFormAnswerFindFirstOrThrowSchema: z.ZodType = z.object({ get select(){ return FeedbackFormAnswerFindFirstOrThrowSelectSchema__findFirstOrThrowFeedbackFormAnswer_schema.optional(); }, get include(){ return FeedbackFormAnswerIncludeObjectSchema.optional(); }, orderBy: z.union([FeedbackFormAnswerOrderByWithRelationInputObjectSchema, FeedbackFormAnswerOrderByWithRelationInputObjectSchema.array()]).optional(), where: FeedbackFormAnswerWhereInputObjectSchema.optional(), cursor: FeedbackFormAnswerWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), distinct: z.union([FeedbackFormAnswerScalarFieldEnumSchema, FeedbackFormAnswerScalarFieldEnumSchema.array()]).optional() }).strict() as unknown as z.ZodType; - -export const FeedbackFormAnswerFindFirstOrThrowZodSchema = z.object({ get select(){ return FeedbackFormAnswerFindFirstOrThrowSelectSchema__findFirstOrThrowFeedbackFormAnswer_schema.optional(); }, get include(){ return FeedbackFormAnswerIncludeObjectSchema.optional(); }, orderBy: z.union([FeedbackFormAnswerOrderByWithRelationInputObjectSchema, FeedbackFormAnswerOrderByWithRelationInputObjectSchema.array()]).optional(), where: FeedbackFormAnswerWhereInputObjectSchema.optional(), cursor: FeedbackFormAnswerWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), distinct: z.union([FeedbackFormAnswerScalarFieldEnumSchema, FeedbackFormAnswerScalarFieldEnumSchema.array()]).optional() }).strict(); - -// File: findManyFeedbackFormAnswer.schema.ts - -// Select schema needs to be in file to prevent circular imports -//------------------------------------------------------ - -export const FeedbackFormAnswerFindManySelectSchema__findManyFeedbackFormAnswer_schema: z.ZodType = z.object({ - id: z.boolean().optional(), - createdAt: z.boolean().optional(), - updatedAt: z.boolean().optional(), - feedbackFormId: z.boolean().optional(), - attendeeId: z.boolean().optional(), - feedbackForm: z.boolean().optional(), - attendee: z.boolean().optional(), - answers: z.boolean().optional(), - _count: z.boolean().optional() - }).strict() as unknown as z.ZodType; - -export const FeedbackFormAnswerFindManySelectZodSchema__findManyFeedbackFormAnswer_schema = z.object({ - id: z.boolean().optional(), - createdAt: z.boolean().optional(), - updatedAt: z.boolean().optional(), - feedbackFormId: z.boolean().optional(), - attendeeId: z.boolean().optional(), - feedbackForm: z.boolean().optional(), - attendee: z.boolean().optional(), - answers: z.boolean().optional(), - _count: z.boolean().optional() - }).strict(); - -export const FeedbackFormAnswerFindManySchema: z.ZodType = z.object({ get select(){ return FeedbackFormAnswerFindManySelectSchema__findManyFeedbackFormAnswer_schema.optional(); }, get include(){ return FeedbackFormAnswerIncludeObjectSchema.optional(); }, orderBy: z.union([FeedbackFormAnswerOrderByWithRelationInputObjectSchema, FeedbackFormAnswerOrderByWithRelationInputObjectSchema.array()]).optional(), where: FeedbackFormAnswerWhereInputObjectSchema.optional(), cursor: FeedbackFormAnswerWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), distinct: z.union([FeedbackFormAnswerScalarFieldEnumSchema, FeedbackFormAnswerScalarFieldEnumSchema.array()]).optional() }).strict() as unknown as z.ZodType; - -export const FeedbackFormAnswerFindManyZodSchema = z.object({ get select(){ return FeedbackFormAnswerFindManySelectSchema__findManyFeedbackFormAnswer_schema.optional(); }, get include(){ return FeedbackFormAnswerIncludeObjectSchema.optional(); }, orderBy: z.union([FeedbackFormAnswerOrderByWithRelationInputObjectSchema, FeedbackFormAnswerOrderByWithRelationInputObjectSchema.array()]).optional(), where: FeedbackFormAnswerWhereInputObjectSchema.optional(), cursor: FeedbackFormAnswerWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), distinct: z.union([FeedbackFormAnswerScalarFieldEnumSchema, FeedbackFormAnswerScalarFieldEnumSchema.array()]).optional() }).strict(); - -// File: countFeedbackFormAnswer.schema.ts - -export const FeedbackFormAnswerCountSchema: z.ZodType = z.object({ orderBy: z.union([FeedbackFormAnswerOrderByWithRelationInputObjectSchema, FeedbackFormAnswerOrderByWithRelationInputObjectSchema.array()]).optional(), where: FeedbackFormAnswerWhereInputObjectSchema.optional(), cursor: FeedbackFormAnswerWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), select: z.union([ z.literal(true), FeedbackFormAnswerCountAggregateInputObjectSchema ]).optional() }).strict() as unknown as z.ZodType; - -export const FeedbackFormAnswerCountZodSchema = z.object({ orderBy: z.union([FeedbackFormAnswerOrderByWithRelationInputObjectSchema, FeedbackFormAnswerOrderByWithRelationInputObjectSchema.array()]).optional(), where: FeedbackFormAnswerWhereInputObjectSchema.optional(), cursor: FeedbackFormAnswerWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), select: z.union([ z.literal(true), FeedbackFormAnswerCountAggregateInputObjectSchema ]).optional() }).strict(); - -// File: createOneFeedbackFormAnswer.schema.ts - -export const FeedbackFormAnswerCreateOneSchema: z.ZodType = z.object({ get select(){ return FeedbackFormAnswerSelectObjectSchema.optional(); }, get include(){ return FeedbackFormAnswerIncludeObjectSchema.optional(); }, data: z.union([FeedbackFormAnswerCreateInputObjectSchema, FeedbackFormAnswerUncheckedCreateInputObjectSchema]) }).strict() as unknown as z.ZodType; - -export const FeedbackFormAnswerCreateOneZodSchema = z.object({ get select(){ return FeedbackFormAnswerSelectObjectSchema.optional(); }, get include(){ return FeedbackFormAnswerIncludeObjectSchema.optional(); }, data: z.union([FeedbackFormAnswerCreateInputObjectSchema, FeedbackFormAnswerUncheckedCreateInputObjectSchema]) }).strict(); - -// File: createManyFeedbackFormAnswer.schema.ts - -export const FeedbackFormAnswerCreateManySchema: z.ZodType = z.object({ data: z.union([ FeedbackFormAnswerCreateManyInputObjectSchema, z.array(FeedbackFormAnswerCreateManyInputObjectSchema) ]), skipDuplicates: z.boolean().optional() }).strict() as unknown as z.ZodType; - -export const FeedbackFormAnswerCreateManyZodSchema = z.object({ data: z.union([ FeedbackFormAnswerCreateManyInputObjectSchema, z.array(FeedbackFormAnswerCreateManyInputObjectSchema) ]), skipDuplicates: z.boolean().optional() }).strict(); - -// File: createManyAndReturnFeedbackFormAnswer.schema.ts - -export const FeedbackFormAnswerCreateManyAndReturnSchema: z.ZodType = z.object({ get select(){ return FeedbackFormAnswerSelectObjectSchema.optional(); }, data: z.union([ FeedbackFormAnswerCreateManyInputObjectSchema, z.array(FeedbackFormAnswerCreateManyInputObjectSchema) ]), skipDuplicates: z.boolean().optional() }).strict() as unknown as z.ZodType; - -export const FeedbackFormAnswerCreateManyAndReturnZodSchema = z.object({ get select(){ return FeedbackFormAnswerSelectObjectSchema.optional(); }, data: z.union([ FeedbackFormAnswerCreateManyInputObjectSchema, z.array(FeedbackFormAnswerCreateManyInputObjectSchema) ]), skipDuplicates: z.boolean().optional() }).strict(); - -// File: deleteOneFeedbackFormAnswer.schema.ts - -export const FeedbackFormAnswerDeleteOneSchema: z.ZodType = z.object({ get select(){ return FeedbackFormAnswerSelectObjectSchema.optional(); }, get include(){ return FeedbackFormAnswerIncludeObjectSchema.optional(); }, where: FeedbackFormAnswerWhereUniqueInputObjectSchema }).strict() as unknown as z.ZodType; - -export const FeedbackFormAnswerDeleteOneZodSchema = z.object({ get select(){ return FeedbackFormAnswerSelectObjectSchema.optional(); }, get include(){ return FeedbackFormAnswerIncludeObjectSchema.optional(); }, where: FeedbackFormAnswerWhereUniqueInputObjectSchema }).strict(); - -// File: deleteManyFeedbackFormAnswer.schema.ts - -export const FeedbackFormAnswerDeleteManySchema: z.ZodType = z.object({ where: FeedbackFormAnswerWhereInputObjectSchema.optional() }).strict() as unknown as z.ZodType; - -export const FeedbackFormAnswerDeleteManyZodSchema = z.object({ where: FeedbackFormAnswerWhereInputObjectSchema.optional() }).strict(); - -// File: updateOneFeedbackFormAnswer.schema.ts - -export const FeedbackFormAnswerUpdateOneSchema: z.ZodType = z.object({ get select(){ return FeedbackFormAnswerSelectObjectSchema.optional(); }, get include(){ return FeedbackFormAnswerIncludeObjectSchema.optional(); }, data: z.union([FeedbackFormAnswerUpdateInputObjectSchema, FeedbackFormAnswerUncheckedUpdateInputObjectSchema]), where: FeedbackFormAnswerWhereUniqueInputObjectSchema }).strict() as unknown as z.ZodType; - -export const FeedbackFormAnswerUpdateOneZodSchema = z.object({ get select(){ return FeedbackFormAnswerSelectObjectSchema.optional(); }, get include(){ return FeedbackFormAnswerIncludeObjectSchema.optional(); }, data: z.union([FeedbackFormAnswerUpdateInputObjectSchema, FeedbackFormAnswerUncheckedUpdateInputObjectSchema]), where: FeedbackFormAnswerWhereUniqueInputObjectSchema }).strict(); - -// File: updateManyFeedbackFormAnswer.schema.ts - -export const FeedbackFormAnswerUpdateManySchema: z.ZodType = z.object({ data: FeedbackFormAnswerUpdateManyMutationInputObjectSchema, where: FeedbackFormAnswerWhereInputObjectSchema.optional() }).strict() as unknown as z.ZodType; - -export const FeedbackFormAnswerUpdateManyZodSchema = z.object({ data: FeedbackFormAnswerUpdateManyMutationInputObjectSchema, where: FeedbackFormAnswerWhereInputObjectSchema.optional() }).strict(); - -// File: updateManyAndReturnFeedbackFormAnswer.schema.ts - -export const FeedbackFormAnswerUpdateManyAndReturnSchema: z.ZodType = z.object({ get select(){ return FeedbackFormAnswerSelectObjectSchema.optional(); }, data: FeedbackFormAnswerUpdateManyMutationInputObjectSchema, where: FeedbackFormAnswerWhereInputObjectSchema.optional() }).strict() as unknown as z.ZodType; - -export const FeedbackFormAnswerUpdateManyAndReturnZodSchema = z.object({ get select(){ return FeedbackFormAnswerSelectObjectSchema.optional(); }, data: FeedbackFormAnswerUpdateManyMutationInputObjectSchema, where: FeedbackFormAnswerWhereInputObjectSchema.optional() }).strict(); - -// File: upsertOneFeedbackFormAnswer.schema.ts - -export const FeedbackFormAnswerUpsertOneSchema: z.ZodType = z.object({ get select(){ return FeedbackFormAnswerSelectObjectSchema.optional(); }, get include(){ return FeedbackFormAnswerIncludeObjectSchema.optional(); }, where: FeedbackFormAnswerWhereUniqueInputObjectSchema, create: z.union([ FeedbackFormAnswerCreateInputObjectSchema, FeedbackFormAnswerUncheckedCreateInputObjectSchema ]), update: z.union([ FeedbackFormAnswerUpdateInputObjectSchema, FeedbackFormAnswerUncheckedUpdateInputObjectSchema ]) }).strict() as unknown as z.ZodType; - -export const FeedbackFormAnswerUpsertOneZodSchema = z.object({ get select(){ return FeedbackFormAnswerSelectObjectSchema.optional(); }, get include(){ return FeedbackFormAnswerIncludeObjectSchema.optional(); }, where: FeedbackFormAnswerWhereUniqueInputObjectSchema, create: z.union([ FeedbackFormAnswerCreateInputObjectSchema, FeedbackFormAnswerUncheckedCreateInputObjectSchema ]), update: z.union([ FeedbackFormAnswerUpdateInputObjectSchema, FeedbackFormAnswerUncheckedUpdateInputObjectSchema ]) }).strict(); - -// File: aggregateFeedbackFormAnswer.schema.ts - -export const FeedbackFormAnswerAggregateSchema: z.ZodType = z.object({ orderBy: z.union([FeedbackFormAnswerOrderByWithRelationInputObjectSchema, FeedbackFormAnswerOrderByWithRelationInputObjectSchema.array()]).optional(), where: FeedbackFormAnswerWhereInputObjectSchema.optional(), cursor: FeedbackFormAnswerWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), _count: z.union([ z.literal(true), FeedbackFormAnswerCountAggregateInputObjectSchema ]).optional(), _min: FeedbackFormAnswerMinAggregateInputObjectSchema.optional(), _max: FeedbackFormAnswerMaxAggregateInputObjectSchema.optional() }).strict() as unknown as z.ZodType; - -export const FeedbackFormAnswerAggregateZodSchema = z.object({ orderBy: z.union([FeedbackFormAnswerOrderByWithRelationInputObjectSchema, FeedbackFormAnswerOrderByWithRelationInputObjectSchema.array()]).optional(), where: FeedbackFormAnswerWhereInputObjectSchema.optional(), cursor: FeedbackFormAnswerWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), _count: z.union([ z.literal(true), FeedbackFormAnswerCountAggregateInputObjectSchema ]).optional(), _min: FeedbackFormAnswerMinAggregateInputObjectSchema.optional(), _max: FeedbackFormAnswerMaxAggregateInputObjectSchema.optional() }).strict(); - -// File: groupByFeedbackFormAnswer.schema.ts - -export const FeedbackFormAnswerGroupBySchema: z.ZodType = z.object({ where: FeedbackFormAnswerWhereInputObjectSchema.optional(), orderBy: z.union([FeedbackFormAnswerOrderByWithAggregationInputObjectSchema, FeedbackFormAnswerOrderByWithAggregationInputObjectSchema.array()]).optional(), having: FeedbackFormAnswerScalarWhereWithAggregatesInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), by: z.array(FeedbackFormAnswerScalarFieldEnumSchema), _count: z.union([ z.literal(true), FeedbackFormAnswerCountAggregateInputObjectSchema ]).optional(), _min: FeedbackFormAnswerMinAggregateInputObjectSchema.optional(), _max: FeedbackFormAnswerMaxAggregateInputObjectSchema.optional() }).strict() as unknown as z.ZodType; - -export const FeedbackFormAnswerGroupByZodSchema = z.object({ where: FeedbackFormAnswerWhereInputObjectSchema.optional(), orderBy: z.union([FeedbackFormAnswerOrderByWithAggregationInputObjectSchema, FeedbackFormAnswerOrderByWithAggregationInputObjectSchema.array()]).optional(), having: FeedbackFormAnswerScalarWhereWithAggregatesInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), by: z.array(FeedbackFormAnswerScalarFieldEnumSchema), _count: z.union([ z.literal(true), FeedbackFormAnswerCountAggregateInputObjectSchema ]).optional(), _min: FeedbackFormAnswerMinAggregateInputObjectSchema.optional(), _max: FeedbackFormAnswerMaxAggregateInputObjectSchema.optional() }).strict(); - -// File: findUniqueAuditLog.schema.ts - -export const AuditLogFindUniqueSchema: z.ZodType = z.object({ get select(){ return AuditLogSelectObjectSchema.optional(); }, get include(){ return AuditLogIncludeObjectSchema.optional(); }, where: AuditLogWhereUniqueInputObjectSchema }).strict() as unknown as z.ZodType; - -export const AuditLogFindUniqueZodSchema = z.object({ get select(){ return AuditLogSelectObjectSchema.optional(); }, get include(){ return AuditLogIncludeObjectSchema.optional(); }, where: AuditLogWhereUniqueInputObjectSchema }).strict(); - -// File: findUniqueOrThrowAuditLog.schema.ts - -export const AuditLogFindUniqueOrThrowSchema: z.ZodType = z.object({ get select(){ return AuditLogSelectObjectSchema.optional(); }, get include(){ return AuditLogIncludeObjectSchema.optional(); }, where: AuditLogWhereUniqueInputObjectSchema }).strict() as unknown as z.ZodType; - -export const AuditLogFindUniqueOrThrowZodSchema = z.object({ get select(){ return AuditLogSelectObjectSchema.optional(); }, get include(){ return AuditLogIncludeObjectSchema.optional(); }, where: AuditLogWhereUniqueInputObjectSchema }).strict(); - -// File: findFirstAuditLog.schema.ts - -// Select schema needs to be in file to prevent circular imports -//------------------------------------------------------ - -export const AuditLogFindFirstSelectSchema__findFirstAuditLog_schema: z.ZodType = z.object({ - id: z.boolean().optional(), - tableName: z.boolean().optional(), - rowId: z.boolean().optional(), - createdAt: z.boolean().optional(), - operation: z.boolean().optional(), - rowData: z.boolean().optional(), - transactionId: z.boolean().optional(), - user: z.boolean().optional(), - userId: z.boolean().optional() - }).strict() as unknown as z.ZodType; - -export const AuditLogFindFirstSelectZodSchema__findFirstAuditLog_schema = z.object({ - id: z.boolean().optional(), - tableName: z.boolean().optional(), - rowId: z.boolean().optional(), - createdAt: z.boolean().optional(), - operation: z.boolean().optional(), - rowData: z.boolean().optional(), - transactionId: z.boolean().optional(), - user: z.boolean().optional(), - userId: z.boolean().optional() - }).strict(); - -export const AuditLogFindFirstSchema: z.ZodType = z.object({ get select(){ return AuditLogFindFirstSelectSchema__findFirstAuditLog_schema.optional(); }, get include(){ return AuditLogIncludeObjectSchema.optional(); }, orderBy: z.union([AuditLogOrderByWithRelationInputObjectSchema, AuditLogOrderByWithRelationInputObjectSchema.array()]).optional(), where: AuditLogWhereInputObjectSchema.optional(), cursor: AuditLogWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), distinct: z.union([AuditLogScalarFieldEnumSchema, AuditLogScalarFieldEnumSchema.array()]).optional() }).strict() as unknown as z.ZodType; - -export const AuditLogFindFirstZodSchema = z.object({ get select(){ return AuditLogFindFirstSelectSchema__findFirstAuditLog_schema.optional(); }, get include(){ return AuditLogIncludeObjectSchema.optional(); }, orderBy: z.union([AuditLogOrderByWithRelationInputObjectSchema, AuditLogOrderByWithRelationInputObjectSchema.array()]).optional(), where: AuditLogWhereInputObjectSchema.optional(), cursor: AuditLogWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), distinct: z.union([AuditLogScalarFieldEnumSchema, AuditLogScalarFieldEnumSchema.array()]).optional() }).strict(); - -// File: findFirstOrThrowAuditLog.schema.ts - -// Select schema needs to be in file to prevent circular imports -//------------------------------------------------------ - -export const AuditLogFindFirstOrThrowSelectSchema__findFirstOrThrowAuditLog_schema: z.ZodType = z.object({ - id: z.boolean().optional(), - tableName: z.boolean().optional(), - rowId: z.boolean().optional(), - createdAt: z.boolean().optional(), - operation: z.boolean().optional(), - rowData: z.boolean().optional(), - transactionId: z.boolean().optional(), - user: z.boolean().optional(), - userId: z.boolean().optional() - }).strict() as unknown as z.ZodType; - -export const AuditLogFindFirstOrThrowSelectZodSchema__findFirstOrThrowAuditLog_schema = z.object({ - id: z.boolean().optional(), - tableName: z.boolean().optional(), - rowId: z.boolean().optional(), - createdAt: z.boolean().optional(), - operation: z.boolean().optional(), - rowData: z.boolean().optional(), - transactionId: z.boolean().optional(), - user: z.boolean().optional(), - userId: z.boolean().optional() - }).strict(); - -export const AuditLogFindFirstOrThrowSchema: z.ZodType = z.object({ get select(){ return AuditLogFindFirstOrThrowSelectSchema__findFirstOrThrowAuditLog_schema.optional(); }, get include(){ return AuditLogIncludeObjectSchema.optional(); }, orderBy: z.union([AuditLogOrderByWithRelationInputObjectSchema, AuditLogOrderByWithRelationInputObjectSchema.array()]).optional(), where: AuditLogWhereInputObjectSchema.optional(), cursor: AuditLogWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), distinct: z.union([AuditLogScalarFieldEnumSchema, AuditLogScalarFieldEnumSchema.array()]).optional() }).strict() as unknown as z.ZodType; - -export const AuditLogFindFirstOrThrowZodSchema = z.object({ get select(){ return AuditLogFindFirstOrThrowSelectSchema__findFirstOrThrowAuditLog_schema.optional(); }, get include(){ return AuditLogIncludeObjectSchema.optional(); }, orderBy: z.union([AuditLogOrderByWithRelationInputObjectSchema, AuditLogOrderByWithRelationInputObjectSchema.array()]).optional(), where: AuditLogWhereInputObjectSchema.optional(), cursor: AuditLogWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), distinct: z.union([AuditLogScalarFieldEnumSchema, AuditLogScalarFieldEnumSchema.array()]).optional() }).strict(); - -// File: findManyAuditLog.schema.ts - -// Select schema needs to be in file to prevent circular imports -//------------------------------------------------------ - -export const AuditLogFindManySelectSchema__findManyAuditLog_schema: z.ZodType = z.object({ - id: z.boolean().optional(), - tableName: z.boolean().optional(), - rowId: z.boolean().optional(), - createdAt: z.boolean().optional(), - operation: z.boolean().optional(), - rowData: z.boolean().optional(), - transactionId: z.boolean().optional(), - user: z.boolean().optional(), - userId: z.boolean().optional() - }).strict() as unknown as z.ZodType; - -export const AuditLogFindManySelectZodSchema__findManyAuditLog_schema = z.object({ - id: z.boolean().optional(), - tableName: z.boolean().optional(), - rowId: z.boolean().optional(), - createdAt: z.boolean().optional(), - operation: z.boolean().optional(), - rowData: z.boolean().optional(), - transactionId: z.boolean().optional(), - user: z.boolean().optional(), - userId: z.boolean().optional() - }).strict(); - -export const AuditLogFindManySchema: z.ZodType = z.object({ get select(){ return AuditLogFindManySelectSchema__findManyAuditLog_schema.optional(); }, get include(){ return AuditLogIncludeObjectSchema.optional(); }, orderBy: z.union([AuditLogOrderByWithRelationInputObjectSchema, AuditLogOrderByWithRelationInputObjectSchema.array()]).optional(), where: AuditLogWhereInputObjectSchema.optional(), cursor: AuditLogWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), distinct: z.union([AuditLogScalarFieldEnumSchema, AuditLogScalarFieldEnumSchema.array()]).optional() }).strict() as unknown as z.ZodType; - -export const AuditLogFindManyZodSchema = z.object({ get select(){ return AuditLogFindManySelectSchema__findManyAuditLog_schema.optional(); }, get include(){ return AuditLogIncludeObjectSchema.optional(); }, orderBy: z.union([AuditLogOrderByWithRelationInputObjectSchema, AuditLogOrderByWithRelationInputObjectSchema.array()]).optional(), where: AuditLogWhereInputObjectSchema.optional(), cursor: AuditLogWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), distinct: z.union([AuditLogScalarFieldEnumSchema, AuditLogScalarFieldEnumSchema.array()]).optional() }).strict(); - -// File: countAuditLog.schema.ts - -export const AuditLogCountSchema: z.ZodType = z.object({ orderBy: z.union([AuditLogOrderByWithRelationInputObjectSchema, AuditLogOrderByWithRelationInputObjectSchema.array()]).optional(), where: AuditLogWhereInputObjectSchema.optional(), cursor: AuditLogWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), select: z.union([ z.literal(true), AuditLogCountAggregateInputObjectSchema ]).optional() }).strict() as unknown as z.ZodType; - -export const AuditLogCountZodSchema = z.object({ orderBy: z.union([AuditLogOrderByWithRelationInputObjectSchema, AuditLogOrderByWithRelationInputObjectSchema.array()]).optional(), where: AuditLogWhereInputObjectSchema.optional(), cursor: AuditLogWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), select: z.union([ z.literal(true), AuditLogCountAggregateInputObjectSchema ]).optional() }).strict(); - -// File: createOneAuditLog.schema.ts - -export const AuditLogCreateOneSchema: z.ZodType = z.object({ get select(){ return AuditLogSelectObjectSchema.optional(); }, get include(){ return AuditLogIncludeObjectSchema.optional(); }, data: z.union([AuditLogCreateInputObjectSchema, AuditLogUncheckedCreateInputObjectSchema]) }).strict() as unknown as z.ZodType; - -export const AuditLogCreateOneZodSchema = z.object({ get select(){ return AuditLogSelectObjectSchema.optional(); }, get include(){ return AuditLogIncludeObjectSchema.optional(); }, data: z.union([AuditLogCreateInputObjectSchema, AuditLogUncheckedCreateInputObjectSchema]) }).strict(); - -// File: createManyAuditLog.schema.ts - -export const AuditLogCreateManySchema: z.ZodType = z.object({ data: z.union([ AuditLogCreateManyInputObjectSchema, z.array(AuditLogCreateManyInputObjectSchema) ]), skipDuplicates: z.boolean().optional() }).strict() as unknown as z.ZodType; - -export const AuditLogCreateManyZodSchema = z.object({ data: z.union([ AuditLogCreateManyInputObjectSchema, z.array(AuditLogCreateManyInputObjectSchema) ]), skipDuplicates: z.boolean().optional() }).strict(); - -// File: createManyAndReturnAuditLog.schema.ts - -export const AuditLogCreateManyAndReturnSchema: z.ZodType = z.object({ get select(){ return AuditLogSelectObjectSchema.optional(); }, data: z.union([ AuditLogCreateManyInputObjectSchema, z.array(AuditLogCreateManyInputObjectSchema) ]), skipDuplicates: z.boolean().optional() }).strict() as unknown as z.ZodType; - -export const AuditLogCreateManyAndReturnZodSchema = z.object({ get select(){ return AuditLogSelectObjectSchema.optional(); }, data: z.union([ AuditLogCreateManyInputObjectSchema, z.array(AuditLogCreateManyInputObjectSchema) ]), skipDuplicates: z.boolean().optional() }).strict(); - -// File: deleteOneAuditLog.schema.ts - -export const AuditLogDeleteOneSchema: z.ZodType = z.object({ get select(){ return AuditLogSelectObjectSchema.optional(); }, get include(){ return AuditLogIncludeObjectSchema.optional(); }, where: AuditLogWhereUniqueInputObjectSchema }).strict() as unknown as z.ZodType; - -export const AuditLogDeleteOneZodSchema = z.object({ get select(){ return AuditLogSelectObjectSchema.optional(); }, get include(){ return AuditLogIncludeObjectSchema.optional(); }, where: AuditLogWhereUniqueInputObjectSchema }).strict(); - -// File: deleteManyAuditLog.schema.ts - -export const AuditLogDeleteManySchema: z.ZodType = z.object({ where: AuditLogWhereInputObjectSchema.optional() }).strict() as unknown as z.ZodType; - -export const AuditLogDeleteManyZodSchema = z.object({ where: AuditLogWhereInputObjectSchema.optional() }).strict(); - -// File: updateOneAuditLog.schema.ts - -export const AuditLogUpdateOneSchema: z.ZodType = z.object({ get select(){ return AuditLogSelectObjectSchema.optional(); }, get include(){ return AuditLogIncludeObjectSchema.optional(); }, data: z.union([AuditLogUpdateInputObjectSchema, AuditLogUncheckedUpdateInputObjectSchema]), where: AuditLogWhereUniqueInputObjectSchema }).strict() as unknown as z.ZodType; - -export const AuditLogUpdateOneZodSchema = z.object({ get select(){ return AuditLogSelectObjectSchema.optional(); }, get include(){ return AuditLogIncludeObjectSchema.optional(); }, data: z.union([AuditLogUpdateInputObjectSchema, AuditLogUncheckedUpdateInputObjectSchema]), where: AuditLogWhereUniqueInputObjectSchema }).strict(); - -// File: updateManyAuditLog.schema.ts - -export const AuditLogUpdateManySchema: z.ZodType = z.object({ data: AuditLogUpdateManyMutationInputObjectSchema, where: AuditLogWhereInputObjectSchema.optional() }).strict() as unknown as z.ZodType; - -export const AuditLogUpdateManyZodSchema = z.object({ data: AuditLogUpdateManyMutationInputObjectSchema, where: AuditLogWhereInputObjectSchema.optional() }).strict(); - -// File: updateManyAndReturnAuditLog.schema.ts - -export const AuditLogUpdateManyAndReturnSchema: z.ZodType = z.object({ get select(){ return AuditLogSelectObjectSchema.optional(); }, data: AuditLogUpdateManyMutationInputObjectSchema, where: AuditLogWhereInputObjectSchema.optional() }).strict() as unknown as z.ZodType; - -export const AuditLogUpdateManyAndReturnZodSchema = z.object({ get select(){ return AuditLogSelectObjectSchema.optional(); }, data: AuditLogUpdateManyMutationInputObjectSchema, where: AuditLogWhereInputObjectSchema.optional() }).strict(); - -// File: upsertOneAuditLog.schema.ts - -export const AuditLogUpsertOneSchema: z.ZodType = z.object({ get select(){ return AuditLogSelectObjectSchema.optional(); }, get include(){ return AuditLogIncludeObjectSchema.optional(); }, where: AuditLogWhereUniqueInputObjectSchema, create: z.union([ AuditLogCreateInputObjectSchema, AuditLogUncheckedCreateInputObjectSchema ]), update: z.union([ AuditLogUpdateInputObjectSchema, AuditLogUncheckedUpdateInputObjectSchema ]) }).strict() as unknown as z.ZodType; - -export const AuditLogUpsertOneZodSchema = z.object({ get select(){ return AuditLogSelectObjectSchema.optional(); }, get include(){ return AuditLogIncludeObjectSchema.optional(); }, where: AuditLogWhereUniqueInputObjectSchema, create: z.union([ AuditLogCreateInputObjectSchema, AuditLogUncheckedCreateInputObjectSchema ]), update: z.union([ AuditLogUpdateInputObjectSchema, AuditLogUncheckedUpdateInputObjectSchema ]) }).strict(); - -// File: aggregateAuditLog.schema.ts - -export const AuditLogAggregateSchema: z.ZodType = z.object({ orderBy: z.union([AuditLogOrderByWithRelationInputObjectSchema, AuditLogOrderByWithRelationInputObjectSchema.array()]).optional(), where: AuditLogWhereInputObjectSchema.optional(), cursor: AuditLogWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), _count: z.union([ z.literal(true), AuditLogCountAggregateInputObjectSchema ]).optional(), _min: AuditLogMinAggregateInputObjectSchema.optional(), _max: AuditLogMaxAggregateInputObjectSchema.optional(), _avg: AuditLogAvgAggregateInputObjectSchema.optional(), _sum: AuditLogSumAggregateInputObjectSchema.optional() }).strict() as unknown as z.ZodType; - -export const AuditLogAggregateZodSchema = z.object({ orderBy: z.union([AuditLogOrderByWithRelationInputObjectSchema, AuditLogOrderByWithRelationInputObjectSchema.array()]).optional(), where: AuditLogWhereInputObjectSchema.optional(), cursor: AuditLogWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), _count: z.union([ z.literal(true), AuditLogCountAggregateInputObjectSchema ]).optional(), _min: AuditLogMinAggregateInputObjectSchema.optional(), _max: AuditLogMaxAggregateInputObjectSchema.optional(), _avg: AuditLogAvgAggregateInputObjectSchema.optional(), _sum: AuditLogSumAggregateInputObjectSchema.optional() }).strict(); - -// File: groupByAuditLog.schema.ts - -export const AuditLogGroupBySchema: z.ZodType = z.object({ where: AuditLogWhereInputObjectSchema.optional(), orderBy: z.union([AuditLogOrderByWithAggregationInputObjectSchema, AuditLogOrderByWithAggregationInputObjectSchema.array()]).optional(), having: AuditLogScalarWhereWithAggregatesInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), by: z.array(AuditLogScalarFieldEnumSchema), _count: z.union([ z.literal(true), AuditLogCountAggregateInputObjectSchema ]).optional(), _min: AuditLogMinAggregateInputObjectSchema.optional(), _max: AuditLogMaxAggregateInputObjectSchema.optional(), _avg: AuditLogAvgAggregateInputObjectSchema.optional(), _sum: AuditLogSumAggregateInputObjectSchema.optional() }).strict() as unknown as z.ZodType; - -export const AuditLogGroupByZodSchema = z.object({ where: AuditLogWhereInputObjectSchema.optional(), orderBy: z.union([AuditLogOrderByWithAggregationInputObjectSchema, AuditLogOrderByWithAggregationInputObjectSchema.array()]).optional(), having: AuditLogScalarWhereWithAggregatesInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), by: z.array(AuditLogScalarFieldEnumSchema), _count: z.union([ z.literal(true), AuditLogCountAggregateInputObjectSchema ]).optional(), _min: AuditLogMinAggregateInputObjectSchema.optional(), _max: AuditLogMaxAggregateInputObjectSchema.optional(), _avg: AuditLogAvgAggregateInputObjectSchema.optional(), _sum: AuditLogSumAggregateInputObjectSchema.optional() }).strict(); - -// File: findUniqueDeregisterReason.schema.ts - -export const DeregisterReasonFindUniqueSchema: z.ZodType = z.object({ get select(){ return DeregisterReasonSelectObjectSchema.optional(); }, get include(){ return DeregisterReasonIncludeObjectSchema.optional(); }, where: DeregisterReasonWhereUniqueInputObjectSchema }).strict() as unknown as z.ZodType; - -export const DeregisterReasonFindUniqueZodSchema = z.object({ get select(){ return DeregisterReasonSelectObjectSchema.optional(); }, get include(){ return DeregisterReasonIncludeObjectSchema.optional(); }, where: DeregisterReasonWhereUniqueInputObjectSchema }).strict(); - -// File: findUniqueOrThrowDeregisterReason.schema.ts - -export const DeregisterReasonFindUniqueOrThrowSchema: z.ZodType = z.object({ get select(){ return DeregisterReasonSelectObjectSchema.optional(); }, get include(){ return DeregisterReasonIncludeObjectSchema.optional(); }, where: DeregisterReasonWhereUniqueInputObjectSchema }).strict() as unknown as z.ZodType; - -export const DeregisterReasonFindUniqueOrThrowZodSchema = z.object({ get select(){ return DeregisterReasonSelectObjectSchema.optional(); }, get include(){ return DeregisterReasonIncludeObjectSchema.optional(); }, where: DeregisterReasonWhereUniqueInputObjectSchema }).strict(); - -// File: findFirstDeregisterReason.schema.ts - -// Select schema needs to be in file to prevent circular imports -//------------------------------------------------------ - -export const DeregisterReasonFindFirstSelectSchema__findFirstDeregisterReason_schema: z.ZodType = z.object({ - id: z.boolean().optional(), - createdAt: z.boolean().optional(), - registeredAt: z.boolean().optional(), - type: z.boolean().optional(), - details: z.boolean().optional(), - userGrade: z.boolean().optional(), - userId: z.boolean().optional(), - eventId: z.boolean().optional(), - user: z.boolean().optional(), - event: z.boolean().optional() - }).strict() as unknown as z.ZodType; - -export const DeregisterReasonFindFirstSelectZodSchema__findFirstDeregisterReason_schema = z.object({ - id: z.boolean().optional(), - createdAt: z.boolean().optional(), - registeredAt: z.boolean().optional(), - type: z.boolean().optional(), - details: z.boolean().optional(), - userGrade: z.boolean().optional(), - userId: z.boolean().optional(), - eventId: z.boolean().optional(), - user: z.boolean().optional(), - event: z.boolean().optional() - }).strict(); - -export const DeregisterReasonFindFirstSchema: z.ZodType = z.object({ get select(){ return DeregisterReasonFindFirstSelectSchema__findFirstDeregisterReason_schema.optional(); }, get include(){ return DeregisterReasonIncludeObjectSchema.optional(); }, orderBy: z.union([DeregisterReasonOrderByWithRelationInputObjectSchema, DeregisterReasonOrderByWithRelationInputObjectSchema.array()]).optional(), where: DeregisterReasonWhereInputObjectSchema.optional(), cursor: DeregisterReasonWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), distinct: z.union([DeregisterReasonScalarFieldEnumSchema, DeregisterReasonScalarFieldEnumSchema.array()]).optional() }).strict() as unknown as z.ZodType; - -export const DeregisterReasonFindFirstZodSchema = z.object({ get select(){ return DeregisterReasonFindFirstSelectSchema__findFirstDeregisterReason_schema.optional(); }, get include(){ return DeregisterReasonIncludeObjectSchema.optional(); }, orderBy: z.union([DeregisterReasonOrderByWithRelationInputObjectSchema, DeregisterReasonOrderByWithRelationInputObjectSchema.array()]).optional(), where: DeregisterReasonWhereInputObjectSchema.optional(), cursor: DeregisterReasonWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), distinct: z.union([DeregisterReasonScalarFieldEnumSchema, DeregisterReasonScalarFieldEnumSchema.array()]).optional() }).strict(); - -// File: findFirstOrThrowDeregisterReason.schema.ts - -// Select schema needs to be in file to prevent circular imports -//------------------------------------------------------ - -export const DeregisterReasonFindFirstOrThrowSelectSchema__findFirstOrThrowDeregisterReason_schema: z.ZodType = z.object({ - id: z.boolean().optional(), - createdAt: z.boolean().optional(), - registeredAt: z.boolean().optional(), - type: z.boolean().optional(), - details: z.boolean().optional(), - userGrade: z.boolean().optional(), - userId: z.boolean().optional(), - eventId: z.boolean().optional(), - user: z.boolean().optional(), - event: z.boolean().optional() - }).strict() as unknown as z.ZodType; - -export const DeregisterReasonFindFirstOrThrowSelectZodSchema__findFirstOrThrowDeregisterReason_schema = z.object({ - id: z.boolean().optional(), - createdAt: z.boolean().optional(), - registeredAt: z.boolean().optional(), - type: z.boolean().optional(), - details: z.boolean().optional(), - userGrade: z.boolean().optional(), - userId: z.boolean().optional(), - eventId: z.boolean().optional(), - user: z.boolean().optional(), - event: z.boolean().optional() - }).strict(); - -export const DeregisterReasonFindFirstOrThrowSchema: z.ZodType = z.object({ get select(){ return DeregisterReasonFindFirstOrThrowSelectSchema__findFirstOrThrowDeregisterReason_schema.optional(); }, get include(){ return DeregisterReasonIncludeObjectSchema.optional(); }, orderBy: z.union([DeregisterReasonOrderByWithRelationInputObjectSchema, DeregisterReasonOrderByWithRelationInputObjectSchema.array()]).optional(), where: DeregisterReasonWhereInputObjectSchema.optional(), cursor: DeregisterReasonWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), distinct: z.union([DeregisterReasonScalarFieldEnumSchema, DeregisterReasonScalarFieldEnumSchema.array()]).optional() }).strict() as unknown as z.ZodType; - -export const DeregisterReasonFindFirstOrThrowZodSchema = z.object({ get select(){ return DeregisterReasonFindFirstOrThrowSelectSchema__findFirstOrThrowDeregisterReason_schema.optional(); }, get include(){ return DeregisterReasonIncludeObjectSchema.optional(); }, orderBy: z.union([DeregisterReasonOrderByWithRelationInputObjectSchema, DeregisterReasonOrderByWithRelationInputObjectSchema.array()]).optional(), where: DeregisterReasonWhereInputObjectSchema.optional(), cursor: DeregisterReasonWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), distinct: z.union([DeregisterReasonScalarFieldEnumSchema, DeregisterReasonScalarFieldEnumSchema.array()]).optional() }).strict(); - -// File: findManyDeregisterReason.schema.ts - -// Select schema needs to be in file to prevent circular imports -//------------------------------------------------------ - -export const DeregisterReasonFindManySelectSchema__findManyDeregisterReason_schema: z.ZodType = z.object({ - id: z.boolean().optional(), - createdAt: z.boolean().optional(), - registeredAt: z.boolean().optional(), - type: z.boolean().optional(), - details: z.boolean().optional(), - userGrade: z.boolean().optional(), - userId: z.boolean().optional(), - eventId: z.boolean().optional(), - user: z.boolean().optional(), - event: z.boolean().optional() - }).strict() as unknown as z.ZodType; - -export const DeregisterReasonFindManySelectZodSchema__findManyDeregisterReason_schema = z.object({ - id: z.boolean().optional(), - createdAt: z.boolean().optional(), - registeredAt: z.boolean().optional(), - type: z.boolean().optional(), - details: z.boolean().optional(), - userGrade: z.boolean().optional(), - userId: z.boolean().optional(), - eventId: z.boolean().optional(), - user: z.boolean().optional(), - event: z.boolean().optional() - }).strict(); - -export const DeregisterReasonFindManySchema: z.ZodType = z.object({ get select(){ return DeregisterReasonFindManySelectSchema__findManyDeregisterReason_schema.optional(); }, get include(){ return DeregisterReasonIncludeObjectSchema.optional(); }, orderBy: z.union([DeregisterReasonOrderByWithRelationInputObjectSchema, DeregisterReasonOrderByWithRelationInputObjectSchema.array()]).optional(), where: DeregisterReasonWhereInputObjectSchema.optional(), cursor: DeregisterReasonWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), distinct: z.union([DeregisterReasonScalarFieldEnumSchema, DeregisterReasonScalarFieldEnumSchema.array()]).optional() }).strict() as unknown as z.ZodType; - -export const DeregisterReasonFindManyZodSchema = z.object({ get select(){ return DeregisterReasonFindManySelectSchema__findManyDeregisterReason_schema.optional(); }, get include(){ return DeregisterReasonIncludeObjectSchema.optional(); }, orderBy: z.union([DeregisterReasonOrderByWithRelationInputObjectSchema, DeregisterReasonOrderByWithRelationInputObjectSchema.array()]).optional(), where: DeregisterReasonWhereInputObjectSchema.optional(), cursor: DeregisterReasonWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), distinct: z.union([DeregisterReasonScalarFieldEnumSchema, DeregisterReasonScalarFieldEnumSchema.array()]).optional() }).strict(); - -// File: countDeregisterReason.schema.ts - -export const DeregisterReasonCountSchema: z.ZodType = z.object({ orderBy: z.union([DeregisterReasonOrderByWithRelationInputObjectSchema, DeregisterReasonOrderByWithRelationInputObjectSchema.array()]).optional(), where: DeregisterReasonWhereInputObjectSchema.optional(), cursor: DeregisterReasonWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), select: z.union([ z.literal(true), DeregisterReasonCountAggregateInputObjectSchema ]).optional() }).strict() as unknown as z.ZodType; - -export const DeregisterReasonCountZodSchema = z.object({ orderBy: z.union([DeregisterReasonOrderByWithRelationInputObjectSchema, DeregisterReasonOrderByWithRelationInputObjectSchema.array()]).optional(), where: DeregisterReasonWhereInputObjectSchema.optional(), cursor: DeregisterReasonWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), select: z.union([ z.literal(true), DeregisterReasonCountAggregateInputObjectSchema ]).optional() }).strict(); - -// File: createOneDeregisterReason.schema.ts - -export const DeregisterReasonCreateOneSchema: z.ZodType = z.object({ get select(){ return DeregisterReasonSelectObjectSchema.optional(); }, get include(){ return DeregisterReasonIncludeObjectSchema.optional(); }, data: z.union([DeregisterReasonCreateInputObjectSchema, DeregisterReasonUncheckedCreateInputObjectSchema]) }).strict() as unknown as z.ZodType; - -export const DeregisterReasonCreateOneZodSchema = z.object({ get select(){ return DeregisterReasonSelectObjectSchema.optional(); }, get include(){ return DeregisterReasonIncludeObjectSchema.optional(); }, data: z.union([DeregisterReasonCreateInputObjectSchema, DeregisterReasonUncheckedCreateInputObjectSchema]) }).strict(); - -// File: createManyDeregisterReason.schema.ts - -export const DeregisterReasonCreateManySchema: z.ZodType = z.object({ data: z.union([ DeregisterReasonCreateManyInputObjectSchema, z.array(DeregisterReasonCreateManyInputObjectSchema) ]), skipDuplicates: z.boolean().optional() }).strict() as unknown as z.ZodType; - -export const DeregisterReasonCreateManyZodSchema = z.object({ data: z.union([ DeregisterReasonCreateManyInputObjectSchema, z.array(DeregisterReasonCreateManyInputObjectSchema) ]), skipDuplicates: z.boolean().optional() }).strict(); - -// File: createManyAndReturnDeregisterReason.schema.ts - -export const DeregisterReasonCreateManyAndReturnSchema: z.ZodType = z.object({ get select(){ return DeregisterReasonSelectObjectSchema.optional(); }, data: z.union([ DeregisterReasonCreateManyInputObjectSchema, z.array(DeregisterReasonCreateManyInputObjectSchema) ]), skipDuplicates: z.boolean().optional() }).strict() as unknown as z.ZodType; - -export const DeregisterReasonCreateManyAndReturnZodSchema = z.object({ get select(){ return DeregisterReasonSelectObjectSchema.optional(); }, data: z.union([ DeregisterReasonCreateManyInputObjectSchema, z.array(DeregisterReasonCreateManyInputObjectSchema) ]), skipDuplicates: z.boolean().optional() }).strict(); - -// File: deleteOneDeregisterReason.schema.ts - -export const DeregisterReasonDeleteOneSchema: z.ZodType = z.object({ get select(){ return DeregisterReasonSelectObjectSchema.optional(); }, get include(){ return DeregisterReasonIncludeObjectSchema.optional(); }, where: DeregisterReasonWhereUniqueInputObjectSchema }).strict() as unknown as z.ZodType; - -export const DeregisterReasonDeleteOneZodSchema = z.object({ get select(){ return DeregisterReasonSelectObjectSchema.optional(); }, get include(){ return DeregisterReasonIncludeObjectSchema.optional(); }, where: DeregisterReasonWhereUniqueInputObjectSchema }).strict(); - -// File: deleteManyDeregisterReason.schema.ts - -export const DeregisterReasonDeleteManySchema: z.ZodType = z.object({ where: DeregisterReasonWhereInputObjectSchema.optional() }).strict() as unknown as z.ZodType; - -export const DeregisterReasonDeleteManyZodSchema = z.object({ where: DeregisterReasonWhereInputObjectSchema.optional() }).strict(); - -// File: updateOneDeregisterReason.schema.ts - -export const DeregisterReasonUpdateOneSchema: z.ZodType = z.object({ get select(){ return DeregisterReasonSelectObjectSchema.optional(); }, get include(){ return DeregisterReasonIncludeObjectSchema.optional(); }, data: z.union([DeregisterReasonUpdateInputObjectSchema, DeregisterReasonUncheckedUpdateInputObjectSchema]), where: DeregisterReasonWhereUniqueInputObjectSchema }).strict() as unknown as z.ZodType; - -export const DeregisterReasonUpdateOneZodSchema = z.object({ get select(){ return DeregisterReasonSelectObjectSchema.optional(); }, get include(){ return DeregisterReasonIncludeObjectSchema.optional(); }, data: z.union([DeregisterReasonUpdateInputObjectSchema, DeregisterReasonUncheckedUpdateInputObjectSchema]), where: DeregisterReasonWhereUniqueInputObjectSchema }).strict(); - -// File: updateManyDeregisterReason.schema.ts - -export const DeregisterReasonUpdateManySchema: z.ZodType = z.object({ data: DeregisterReasonUpdateManyMutationInputObjectSchema, where: DeregisterReasonWhereInputObjectSchema.optional() }).strict() as unknown as z.ZodType; - -export const DeregisterReasonUpdateManyZodSchema = z.object({ data: DeregisterReasonUpdateManyMutationInputObjectSchema, where: DeregisterReasonWhereInputObjectSchema.optional() }).strict(); - -// File: updateManyAndReturnDeregisterReason.schema.ts - -export const DeregisterReasonUpdateManyAndReturnSchema: z.ZodType = z.object({ get select(){ return DeregisterReasonSelectObjectSchema.optional(); }, data: DeregisterReasonUpdateManyMutationInputObjectSchema, where: DeregisterReasonWhereInputObjectSchema.optional() }).strict() as unknown as z.ZodType; - -export const DeregisterReasonUpdateManyAndReturnZodSchema = z.object({ get select(){ return DeregisterReasonSelectObjectSchema.optional(); }, data: DeregisterReasonUpdateManyMutationInputObjectSchema, where: DeregisterReasonWhereInputObjectSchema.optional() }).strict(); - -// File: upsertOneDeregisterReason.schema.ts - -export const DeregisterReasonUpsertOneSchema: z.ZodType = z.object({ get select(){ return DeregisterReasonSelectObjectSchema.optional(); }, get include(){ return DeregisterReasonIncludeObjectSchema.optional(); }, where: DeregisterReasonWhereUniqueInputObjectSchema, create: z.union([ DeregisterReasonCreateInputObjectSchema, DeregisterReasonUncheckedCreateInputObjectSchema ]), update: z.union([ DeregisterReasonUpdateInputObjectSchema, DeregisterReasonUncheckedUpdateInputObjectSchema ]) }).strict() as unknown as z.ZodType; - -export const DeregisterReasonUpsertOneZodSchema = z.object({ get select(){ return DeregisterReasonSelectObjectSchema.optional(); }, get include(){ return DeregisterReasonIncludeObjectSchema.optional(); }, where: DeregisterReasonWhereUniqueInputObjectSchema, create: z.union([ DeregisterReasonCreateInputObjectSchema, DeregisterReasonUncheckedCreateInputObjectSchema ]), update: z.union([ DeregisterReasonUpdateInputObjectSchema, DeregisterReasonUncheckedUpdateInputObjectSchema ]) }).strict(); - -// File: aggregateDeregisterReason.schema.ts - -export const DeregisterReasonAggregateSchema: z.ZodType = z.object({ orderBy: z.union([DeregisterReasonOrderByWithRelationInputObjectSchema, DeregisterReasonOrderByWithRelationInputObjectSchema.array()]).optional(), where: DeregisterReasonWhereInputObjectSchema.optional(), cursor: DeregisterReasonWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), _count: z.union([ z.literal(true), DeregisterReasonCountAggregateInputObjectSchema ]).optional(), _min: DeregisterReasonMinAggregateInputObjectSchema.optional(), _max: DeregisterReasonMaxAggregateInputObjectSchema.optional(), _avg: DeregisterReasonAvgAggregateInputObjectSchema.optional(), _sum: DeregisterReasonSumAggregateInputObjectSchema.optional() }).strict() as unknown as z.ZodType; - -export const DeregisterReasonAggregateZodSchema = z.object({ orderBy: z.union([DeregisterReasonOrderByWithRelationInputObjectSchema, DeregisterReasonOrderByWithRelationInputObjectSchema.array()]).optional(), where: DeregisterReasonWhereInputObjectSchema.optional(), cursor: DeregisterReasonWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), _count: z.union([ z.literal(true), DeregisterReasonCountAggregateInputObjectSchema ]).optional(), _min: DeregisterReasonMinAggregateInputObjectSchema.optional(), _max: DeregisterReasonMaxAggregateInputObjectSchema.optional(), _avg: DeregisterReasonAvgAggregateInputObjectSchema.optional(), _sum: DeregisterReasonSumAggregateInputObjectSchema.optional() }).strict(); - -// File: groupByDeregisterReason.schema.ts - -export const DeregisterReasonGroupBySchema: z.ZodType = z.object({ where: DeregisterReasonWhereInputObjectSchema.optional(), orderBy: z.union([DeregisterReasonOrderByWithAggregationInputObjectSchema, DeregisterReasonOrderByWithAggregationInputObjectSchema.array()]).optional(), having: DeregisterReasonScalarWhereWithAggregatesInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), by: z.array(DeregisterReasonScalarFieldEnumSchema), _count: z.union([ z.literal(true), DeregisterReasonCountAggregateInputObjectSchema ]).optional(), _min: DeregisterReasonMinAggregateInputObjectSchema.optional(), _max: DeregisterReasonMaxAggregateInputObjectSchema.optional(), _avg: DeregisterReasonAvgAggregateInputObjectSchema.optional(), _sum: DeregisterReasonSumAggregateInputObjectSchema.optional() }).strict() as unknown as z.ZodType; - -export const DeregisterReasonGroupByZodSchema = z.object({ where: DeregisterReasonWhereInputObjectSchema.optional(), orderBy: z.union([DeregisterReasonOrderByWithAggregationInputObjectSchema, DeregisterReasonOrderByWithAggregationInputObjectSchema.array()]).optional(), having: DeregisterReasonScalarWhereWithAggregatesInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), by: z.array(DeregisterReasonScalarFieldEnumSchema), _count: z.union([ z.literal(true), DeregisterReasonCountAggregateInputObjectSchema ]).optional(), _min: DeregisterReasonMinAggregateInputObjectSchema.optional(), _max: DeregisterReasonMaxAggregateInputObjectSchema.optional(), _avg: DeregisterReasonAvgAggregateInputObjectSchema.optional(), _sum: DeregisterReasonSumAggregateInputObjectSchema.optional() }).strict(); - -// File: findUniqueNotificationRecipient.schema.ts - -export const NotificationRecipientFindUniqueSchema: z.ZodType = z.object({ get select(){ return NotificationRecipientSelectObjectSchema.optional(); }, get include(){ return NotificationRecipientIncludeObjectSchema.optional(); }, where: NotificationRecipientWhereUniqueInputObjectSchema }).strict() as unknown as z.ZodType; - -export const NotificationRecipientFindUniqueZodSchema = z.object({ get select(){ return NotificationRecipientSelectObjectSchema.optional(); }, get include(){ return NotificationRecipientIncludeObjectSchema.optional(); }, where: NotificationRecipientWhereUniqueInputObjectSchema }).strict(); - -// File: findUniqueOrThrowNotificationRecipient.schema.ts - -export const NotificationRecipientFindUniqueOrThrowSchema: z.ZodType = z.object({ get select(){ return NotificationRecipientSelectObjectSchema.optional(); }, get include(){ return NotificationRecipientIncludeObjectSchema.optional(); }, where: NotificationRecipientWhereUniqueInputObjectSchema }).strict() as unknown as z.ZodType; - -export const NotificationRecipientFindUniqueOrThrowZodSchema = z.object({ get select(){ return NotificationRecipientSelectObjectSchema.optional(); }, get include(){ return NotificationRecipientIncludeObjectSchema.optional(); }, where: NotificationRecipientWhereUniqueInputObjectSchema }).strict(); - -// File: findFirstNotificationRecipient.schema.ts - -// Select schema needs to be in file to prevent circular imports -//------------------------------------------------------ - -export const NotificationRecipientFindFirstSelectSchema__findFirstNotificationRecipient_schema: z.ZodType = z.object({ - id: z.boolean().optional(), - readAt: z.boolean().optional(), - notificationId: z.boolean().optional(), - notification: z.boolean().optional(), - userId: z.boolean().optional(), - user: z.boolean().optional() - }).strict() as unknown as z.ZodType; - -export const NotificationRecipientFindFirstSelectZodSchema__findFirstNotificationRecipient_schema = z.object({ - id: z.boolean().optional(), - readAt: z.boolean().optional(), - notificationId: z.boolean().optional(), - notification: z.boolean().optional(), - userId: z.boolean().optional(), - user: z.boolean().optional() - }).strict(); - -export const NotificationRecipientFindFirstSchema: z.ZodType = z.object({ get select(){ return NotificationRecipientFindFirstSelectSchema__findFirstNotificationRecipient_schema.optional(); }, get include(){ return NotificationRecipientIncludeObjectSchema.optional(); }, orderBy: z.union([NotificationRecipientOrderByWithRelationInputObjectSchema, NotificationRecipientOrderByWithRelationInputObjectSchema.array()]).optional(), where: NotificationRecipientWhereInputObjectSchema.optional(), cursor: NotificationRecipientWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), distinct: z.union([NotificationRecipientScalarFieldEnumSchema, NotificationRecipientScalarFieldEnumSchema.array()]).optional() }).strict() as unknown as z.ZodType; - -export const NotificationRecipientFindFirstZodSchema = z.object({ get select(){ return NotificationRecipientFindFirstSelectSchema__findFirstNotificationRecipient_schema.optional(); }, get include(){ return NotificationRecipientIncludeObjectSchema.optional(); }, orderBy: z.union([NotificationRecipientOrderByWithRelationInputObjectSchema, NotificationRecipientOrderByWithRelationInputObjectSchema.array()]).optional(), where: NotificationRecipientWhereInputObjectSchema.optional(), cursor: NotificationRecipientWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), distinct: z.union([NotificationRecipientScalarFieldEnumSchema, NotificationRecipientScalarFieldEnumSchema.array()]).optional() }).strict(); - -// File: findFirstOrThrowNotificationRecipient.schema.ts - -// Select schema needs to be in file to prevent circular imports -//------------------------------------------------------ - -export const NotificationRecipientFindFirstOrThrowSelectSchema__findFirstOrThrowNotificationRecipient_schema: z.ZodType = z.object({ - id: z.boolean().optional(), - readAt: z.boolean().optional(), - notificationId: z.boolean().optional(), - notification: z.boolean().optional(), - userId: z.boolean().optional(), - user: z.boolean().optional() - }).strict() as unknown as z.ZodType; - -export const NotificationRecipientFindFirstOrThrowSelectZodSchema__findFirstOrThrowNotificationRecipient_schema = z.object({ - id: z.boolean().optional(), - readAt: z.boolean().optional(), - notificationId: z.boolean().optional(), - notification: z.boolean().optional(), - userId: z.boolean().optional(), - user: z.boolean().optional() - }).strict(); - -export const NotificationRecipientFindFirstOrThrowSchema: z.ZodType = z.object({ get select(){ return NotificationRecipientFindFirstOrThrowSelectSchema__findFirstOrThrowNotificationRecipient_schema.optional(); }, get include(){ return NotificationRecipientIncludeObjectSchema.optional(); }, orderBy: z.union([NotificationRecipientOrderByWithRelationInputObjectSchema, NotificationRecipientOrderByWithRelationInputObjectSchema.array()]).optional(), where: NotificationRecipientWhereInputObjectSchema.optional(), cursor: NotificationRecipientWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), distinct: z.union([NotificationRecipientScalarFieldEnumSchema, NotificationRecipientScalarFieldEnumSchema.array()]).optional() }).strict() as unknown as z.ZodType; - -export const NotificationRecipientFindFirstOrThrowZodSchema = z.object({ get select(){ return NotificationRecipientFindFirstOrThrowSelectSchema__findFirstOrThrowNotificationRecipient_schema.optional(); }, get include(){ return NotificationRecipientIncludeObjectSchema.optional(); }, orderBy: z.union([NotificationRecipientOrderByWithRelationInputObjectSchema, NotificationRecipientOrderByWithRelationInputObjectSchema.array()]).optional(), where: NotificationRecipientWhereInputObjectSchema.optional(), cursor: NotificationRecipientWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), distinct: z.union([NotificationRecipientScalarFieldEnumSchema, NotificationRecipientScalarFieldEnumSchema.array()]).optional() }).strict(); - -// File: findManyNotificationRecipient.schema.ts - -// Select schema needs to be in file to prevent circular imports -//------------------------------------------------------ - -export const NotificationRecipientFindManySelectSchema__findManyNotificationRecipient_schema: z.ZodType = z.object({ - id: z.boolean().optional(), - readAt: z.boolean().optional(), - notificationId: z.boolean().optional(), - notification: z.boolean().optional(), - userId: z.boolean().optional(), - user: z.boolean().optional() - }).strict() as unknown as z.ZodType; - -export const NotificationRecipientFindManySelectZodSchema__findManyNotificationRecipient_schema = z.object({ - id: z.boolean().optional(), - readAt: z.boolean().optional(), - notificationId: z.boolean().optional(), - notification: z.boolean().optional(), - userId: z.boolean().optional(), - user: z.boolean().optional() - }).strict(); - -export const NotificationRecipientFindManySchema: z.ZodType = z.object({ get select(){ return NotificationRecipientFindManySelectSchema__findManyNotificationRecipient_schema.optional(); }, get include(){ return NotificationRecipientIncludeObjectSchema.optional(); }, orderBy: z.union([NotificationRecipientOrderByWithRelationInputObjectSchema, NotificationRecipientOrderByWithRelationInputObjectSchema.array()]).optional(), where: NotificationRecipientWhereInputObjectSchema.optional(), cursor: NotificationRecipientWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), distinct: z.union([NotificationRecipientScalarFieldEnumSchema, NotificationRecipientScalarFieldEnumSchema.array()]).optional() }).strict() as unknown as z.ZodType; - -export const NotificationRecipientFindManyZodSchema = z.object({ get select(){ return NotificationRecipientFindManySelectSchema__findManyNotificationRecipient_schema.optional(); }, get include(){ return NotificationRecipientIncludeObjectSchema.optional(); }, orderBy: z.union([NotificationRecipientOrderByWithRelationInputObjectSchema, NotificationRecipientOrderByWithRelationInputObjectSchema.array()]).optional(), where: NotificationRecipientWhereInputObjectSchema.optional(), cursor: NotificationRecipientWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), distinct: z.union([NotificationRecipientScalarFieldEnumSchema, NotificationRecipientScalarFieldEnumSchema.array()]).optional() }).strict(); - -// File: countNotificationRecipient.schema.ts - -export const NotificationRecipientCountSchema: z.ZodType = z.object({ orderBy: z.union([NotificationRecipientOrderByWithRelationInputObjectSchema, NotificationRecipientOrderByWithRelationInputObjectSchema.array()]).optional(), where: NotificationRecipientWhereInputObjectSchema.optional(), cursor: NotificationRecipientWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), select: z.union([ z.literal(true), NotificationRecipientCountAggregateInputObjectSchema ]).optional() }).strict() as unknown as z.ZodType; - -export const NotificationRecipientCountZodSchema = z.object({ orderBy: z.union([NotificationRecipientOrderByWithRelationInputObjectSchema, NotificationRecipientOrderByWithRelationInputObjectSchema.array()]).optional(), where: NotificationRecipientWhereInputObjectSchema.optional(), cursor: NotificationRecipientWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), select: z.union([ z.literal(true), NotificationRecipientCountAggregateInputObjectSchema ]).optional() }).strict(); - -// File: createOneNotificationRecipient.schema.ts - -export const NotificationRecipientCreateOneSchema: z.ZodType = z.object({ get select(){ return NotificationRecipientSelectObjectSchema.optional(); }, get include(){ return NotificationRecipientIncludeObjectSchema.optional(); }, data: z.union([NotificationRecipientCreateInputObjectSchema, NotificationRecipientUncheckedCreateInputObjectSchema]) }).strict() as unknown as z.ZodType; - -export const NotificationRecipientCreateOneZodSchema = z.object({ get select(){ return NotificationRecipientSelectObjectSchema.optional(); }, get include(){ return NotificationRecipientIncludeObjectSchema.optional(); }, data: z.union([NotificationRecipientCreateInputObjectSchema, NotificationRecipientUncheckedCreateInputObjectSchema]) }).strict(); - -// File: createManyNotificationRecipient.schema.ts - -export const NotificationRecipientCreateManySchema: z.ZodType = z.object({ data: z.union([ NotificationRecipientCreateManyInputObjectSchema, z.array(NotificationRecipientCreateManyInputObjectSchema) ]), skipDuplicates: z.boolean().optional() }).strict() as unknown as z.ZodType; - -export const NotificationRecipientCreateManyZodSchema = z.object({ data: z.union([ NotificationRecipientCreateManyInputObjectSchema, z.array(NotificationRecipientCreateManyInputObjectSchema) ]), skipDuplicates: z.boolean().optional() }).strict(); - -// File: createManyAndReturnNotificationRecipient.schema.ts - -export const NotificationRecipientCreateManyAndReturnSchema: z.ZodType = z.object({ get select(){ return NotificationRecipientSelectObjectSchema.optional(); }, data: z.union([ NotificationRecipientCreateManyInputObjectSchema, z.array(NotificationRecipientCreateManyInputObjectSchema) ]), skipDuplicates: z.boolean().optional() }).strict() as unknown as z.ZodType; - -export const NotificationRecipientCreateManyAndReturnZodSchema = z.object({ get select(){ return NotificationRecipientSelectObjectSchema.optional(); }, data: z.union([ NotificationRecipientCreateManyInputObjectSchema, z.array(NotificationRecipientCreateManyInputObjectSchema) ]), skipDuplicates: z.boolean().optional() }).strict(); - -// File: deleteOneNotificationRecipient.schema.ts - -export const NotificationRecipientDeleteOneSchema: z.ZodType = z.object({ get select(){ return NotificationRecipientSelectObjectSchema.optional(); }, get include(){ return NotificationRecipientIncludeObjectSchema.optional(); }, where: NotificationRecipientWhereUniqueInputObjectSchema }).strict() as unknown as z.ZodType; - -export const NotificationRecipientDeleteOneZodSchema = z.object({ get select(){ return NotificationRecipientSelectObjectSchema.optional(); }, get include(){ return NotificationRecipientIncludeObjectSchema.optional(); }, where: NotificationRecipientWhereUniqueInputObjectSchema }).strict(); - -// File: deleteManyNotificationRecipient.schema.ts - -export const NotificationRecipientDeleteManySchema: z.ZodType = z.object({ where: NotificationRecipientWhereInputObjectSchema.optional() }).strict() as unknown as z.ZodType; - -export const NotificationRecipientDeleteManyZodSchema = z.object({ where: NotificationRecipientWhereInputObjectSchema.optional() }).strict(); - -// File: updateOneNotificationRecipient.schema.ts - -export const NotificationRecipientUpdateOneSchema: z.ZodType = z.object({ get select(){ return NotificationRecipientSelectObjectSchema.optional(); }, get include(){ return NotificationRecipientIncludeObjectSchema.optional(); }, data: z.union([NotificationRecipientUpdateInputObjectSchema, NotificationRecipientUncheckedUpdateInputObjectSchema]), where: NotificationRecipientWhereUniqueInputObjectSchema }).strict() as unknown as z.ZodType; - -export const NotificationRecipientUpdateOneZodSchema = z.object({ get select(){ return NotificationRecipientSelectObjectSchema.optional(); }, get include(){ return NotificationRecipientIncludeObjectSchema.optional(); }, data: z.union([NotificationRecipientUpdateInputObjectSchema, NotificationRecipientUncheckedUpdateInputObjectSchema]), where: NotificationRecipientWhereUniqueInputObjectSchema }).strict(); - -// File: updateManyNotificationRecipient.schema.ts - -export const NotificationRecipientUpdateManySchema: z.ZodType = z.object({ data: NotificationRecipientUpdateManyMutationInputObjectSchema, where: NotificationRecipientWhereInputObjectSchema.optional() }).strict() as unknown as z.ZodType; - -export const NotificationRecipientUpdateManyZodSchema = z.object({ data: NotificationRecipientUpdateManyMutationInputObjectSchema, where: NotificationRecipientWhereInputObjectSchema.optional() }).strict(); - -// File: updateManyAndReturnNotificationRecipient.schema.ts - -export const NotificationRecipientUpdateManyAndReturnSchema: z.ZodType = z.object({ get select(){ return NotificationRecipientSelectObjectSchema.optional(); }, data: NotificationRecipientUpdateManyMutationInputObjectSchema, where: NotificationRecipientWhereInputObjectSchema.optional() }).strict() as unknown as z.ZodType; - -export const NotificationRecipientUpdateManyAndReturnZodSchema = z.object({ get select(){ return NotificationRecipientSelectObjectSchema.optional(); }, data: NotificationRecipientUpdateManyMutationInputObjectSchema, where: NotificationRecipientWhereInputObjectSchema.optional() }).strict(); - -// File: upsertOneNotificationRecipient.schema.ts - -export const NotificationRecipientUpsertOneSchema: z.ZodType = z.object({ get select(){ return NotificationRecipientSelectObjectSchema.optional(); }, get include(){ return NotificationRecipientIncludeObjectSchema.optional(); }, where: NotificationRecipientWhereUniqueInputObjectSchema, create: z.union([ NotificationRecipientCreateInputObjectSchema, NotificationRecipientUncheckedCreateInputObjectSchema ]), update: z.union([ NotificationRecipientUpdateInputObjectSchema, NotificationRecipientUncheckedUpdateInputObjectSchema ]) }).strict() as unknown as z.ZodType; - -export const NotificationRecipientUpsertOneZodSchema = z.object({ get select(){ return NotificationRecipientSelectObjectSchema.optional(); }, get include(){ return NotificationRecipientIncludeObjectSchema.optional(); }, where: NotificationRecipientWhereUniqueInputObjectSchema, create: z.union([ NotificationRecipientCreateInputObjectSchema, NotificationRecipientUncheckedCreateInputObjectSchema ]), update: z.union([ NotificationRecipientUpdateInputObjectSchema, NotificationRecipientUncheckedUpdateInputObjectSchema ]) }).strict(); - -// File: aggregateNotificationRecipient.schema.ts - -export const NotificationRecipientAggregateSchema: z.ZodType = z.object({ orderBy: z.union([NotificationRecipientOrderByWithRelationInputObjectSchema, NotificationRecipientOrderByWithRelationInputObjectSchema.array()]).optional(), where: NotificationRecipientWhereInputObjectSchema.optional(), cursor: NotificationRecipientWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), _count: z.union([ z.literal(true), NotificationRecipientCountAggregateInputObjectSchema ]).optional(), _min: NotificationRecipientMinAggregateInputObjectSchema.optional(), _max: NotificationRecipientMaxAggregateInputObjectSchema.optional() }).strict() as unknown as z.ZodType; - -export const NotificationRecipientAggregateZodSchema = z.object({ orderBy: z.union([NotificationRecipientOrderByWithRelationInputObjectSchema, NotificationRecipientOrderByWithRelationInputObjectSchema.array()]).optional(), where: NotificationRecipientWhereInputObjectSchema.optional(), cursor: NotificationRecipientWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), _count: z.union([ z.literal(true), NotificationRecipientCountAggregateInputObjectSchema ]).optional(), _min: NotificationRecipientMinAggregateInputObjectSchema.optional(), _max: NotificationRecipientMaxAggregateInputObjectSchema.optional() }).strict(); - -// File: groupByNotificationRecipient.schema.ts - -export const NotificationRecipientGroupBySchema: z.ZodType = z.object({ where: NotificationRecipientWhereInputObjectSchema.optional(), orderBy: z.union([NotificationRecipientOrderByWithAggregationInputObjectSchema, NotificationRecipientOrderByWithAggregationInputObjectSchema.array()]).optional(), having: NotificationRecipientScalarWhereWithAggregatesInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), by: z.array(NotificationRecipientScalarFieldEnumSchema), _count: z.union([ z.literal(true), NotificationRecipientCountAggregateInputObjectSchema ]).optional(), _min: NotificationRecipientMinAggregateInputObjectSchema.optional(), _max: NotificationRecipientMaxAggregateInputObjectSchema.optional() }).strict() as unknown as z.ZodType; - -export const NotificationRecipientGroupByZodSchema = z.object({ where: NotificationRecipientWhereInputObjectSchema.optional(), orderBy: z.union([NotificationRecipientOrderByWithAggregationInputObjectSchema, NotificationRecipientOrderByWithAggregationInputObjectSchema.array()]).optional(), having: NotificationRecipientScalarWhereWithAggregatesInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), by: z.array(NotificationRecipientScalarFieldEnumSchema), _count: z.union([ z.literal(true), NotificationRecipientCountAggregateInputObjectSchema ]).optional(), _min: NotificationRecipientMinAggregateInputObjectSchema.optional(), _max: NotificationRecipientMaxAggregateInputObjectSchema.optional() }).strict(); - -// File: findUniqueNotification.schema.ts - -export const NotificationFindUniqueSchema: z.ZodType = z.object({ get select(){ return NotificationSelectObjectSchema.optional(); }, get include(){ return NotificationIncludeObjectSchema.optional(); }, where: NotificationWhereUniqueInputObjectSchema }).strict() as unknown as z.ZodType; - -export const NotificationFindUniqueZodSchema = z.object({ get select(){ return NotificationSelectObjectSchema.optional(); }, get include(){ return NotificationIncludeObjectSchema.optional(); }, where: NotificationWhereUniqueInputObjectSchema }).strict(); - -// File: findUniqueOrThrowNotification.schema.ts - -export const NotificationFindUniqueOrThrowSchema: z.ZodType = z.object({ get select(){ return NotificationSelectObjectSchema.optional(); }, get include(){ return NotificationIncludeObjectSchema.optional(); }, where: NotificationWhereUniqueInputObjectSchema }).strict() as unknown as z.ZodType; - -export const NotificationFindUniqueOrThrowZodSchema = z.object({ get select(){ return NotificationSelectObjectSchema.optional(); }, get include(){ return NotificationIncludeObjectSchema.optional(); }, where: NotificationWhereUniqueInputObjectSchema }).strict(); - -// File: findFirstNotification.schema.ts - -// Select schema needs to be in file to prevent circular imports -//------------------------------------------------------ - -export const NotificationFindFirstSelectSchema__findFirstNotification_schema: z.ZodType = z.object({ - id: z.boolean().optional(), - createdAt: z.boolean().optional(), - updatedAt: z.boolean().optional(), - title: z.boolean().optional(), - shortDescription: z.boolean().optional(), - content: z.boolean().optional(), - type: z.boolean().optional(), - payload: z.boolean().optional(), - payloadType: z.boolean().optional(), - actorGroupId: z.boolean().optional(), - actorGroup: z.boolean().optional(), - createdById: z.boolean().optional(), - createdBy: z.boolean().optional(), - lastUpdatedById: z.boolean().optional(), - lastUpdatedBy: z.boolean().optional(), - taskId: z.boolean().optional(), - task: z.boolean().optional(), - recipients: z.boolean().optional(), - _count: z.boolean().optional() - }).strict() as unknown as z.ZodType; - -export const NotificationFindFirstSelectZodSchema__findFirstNotification_schema = z.object({ - id: z.boolean().optional(), - createdAt: z.boolean().optional(), - updatedAt: z.boolean().optional(), - title: z.boolean().optional(), - shortDescription: z.boolean().optional(), - content: z.boolean().optional(), - type: z.boolean().optional(), - payload: z.boolean().optional(), - payloadType: z.boolean().optional(), - actorGroupId: z.boolean().optional(), - actorGroup: z.boolean().optional(), - createdById: z.boolean().optional(), - createdBy: z.boolean().optional(), - lastUpdatedById: z.boolean().optional(), - lastUpdatedBy: z.boolean().optional(), - taskId: z.boolean().optional(), - task: z.boolean().optional(), - recipients: z.boolean().optional(), - _count: z.boolean().optional() - }).strict(); - -export const NotificationFindFirstSchema: z.ZodType = z.object({ get select(){ return NotificationFindFirstSelectSchema__findFirstNotification_schema.optional(); }, get include(){ return NotificationIncludeObjectSchema.optional(); }, orderBy: z.union([NotificationOrderByWithRelationInputObjectSchema, NotificationOrderByWithRelationInputObjectSchema.array()]).optional(), where: NotificationWhereInputObjectSchema.optional(), cursor: NotificationWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), distinct: z.union([NotificationScalarFieldEnumSchema, NotificationScalarFieldEnumSchema.array()]).optional() }).strict() as unknown as z.ZodType; - -export const NotificationFindFirstZodSchema = z.object({ get select(){ return NotificationFindFirstSelectSchema__findFirstNotification_schema.optional(); }, get include(){ return NotificationIncludeObjectSchema.optional(); }, orderBy: z.union([NotificationOrderByWithRelationInputObjectSchema, NotificationOrderByWithRelationInputObjectSchema.array()]).optional(), where: NotificationWhereInputObjectSchema.optional(), cursor: NotificationWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), distinct: z.union([NotificationScalarFieldEnumSchema, NotificationScalarFieldEnumSchema.array()]).optional() }).strict(); - -// File: findFirstOrThrowNotification.schema.ts - -// Select schema needs to be in file to prevent circular imports -//------------------------------------------------------ - -export const NotificationFindFirstOrThrowSelectSchema__findFirstOrThrowNotification_schema: z.ZodType = z.object({ - id: z.boolean().optional(), - createdAt: z.boolean().optional(), - updatedAt: z.boolean().optional(), - title: z.boolean().optional(), - shortDescription: z.boolean().optional(), - content: z.boolean().optional(), - type: z.boolean().optional(), - payload: z.boolean().optional(), - payloadType: z.boolean().optional(), - actorGroupId: z.boolean().optional(), - actorGroup: z.boolean().optional(), - createdById: z.boolean().optional(), - createdBy: z.boolean().optional(), - lastUpdatedById: z.boolean().optional(), - lastUpdatedBy: z.boolean().optional(), - taskId: z.boolean().optional(), - task: z.boolean().optional(), - recipients: z.boolean().optional(), - _count: z.boolean().optional() - }).strict() as unknown as z.ZodType; - -export const NotificationFindFirstOrThrowSelectZodSchema__findFirstOrThrowNotification_schema = z.object({ - id: z.boolean().optional(), - createdAt: z.boolean().optional(), - updatedAt: z.boolean().optional(), - title: z.boolean().optional(), - shortDescription: z.boolean().optional(), - content: z.boolean().optional(), - type: z.boolean().optional(), - payload: z.boolean().optional(), - payloadType: z.boolean().optional(), - actorGroupId: z.boolean().optional(), - actorGroup: z.boolean().optional(), - createdById: z.boolean().optional(), - createdBy: z.boolean().optional(), - lastUpdatedById: z.boolean().optional(), - lastUpdatedBy: z.boolean().optional(), - taskId: z.boolean().optional(), - task: z.boolean().optional(), - recipients: z.boolean().optional(), - _count: z.boolean().optional() - }).strict(); - -export const NotificationFindFirstOrThrowSchema: z.ZodType = z.object({ get select(){ return NotificationFindFirstOrThrowSelectSchema__findFirstOrThrowNotification_schema.optional(); }, get include(){ return NotificationIncludeObjectSchema.optional(); }, orderBy: z.union([NotificationOrderByWithRelationInputObjectSchema, NotificationOrderByWithRelationInputObjectSchema.array()]).optional(), where: NotificationWhereInputObjectSchema.optional(), cursor: NotificationWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), distinct: z.union([NotificationScalarFieldEnumSchema, NotificationScalarFieldEnumSchema.array()]).optional() }).strict() as unknown as z.ZodType; - -export const NotificationFindFirstOrThrowZodSchema = z.object({ get select(){ return NotificationFindFirstOrThrowSelectSchema__findFirstOrThrowNotification_schema.optional(); }, get include(){ return NotificationIncludeObjectSchema.optional(); }, orderBy: z.union([NotificationOrderByWithRelationInputObjectSchema, NotificationOrderByWithRelationInputObjectSchema.array()]).optional(), where: NotificationWhereInputObjectSchema.optional(), cursor: NotificationWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), distinct: z.union([NotificationScalarFieldEnumSchema, NotificationScalarFieldEnumSchema.array()]).optional() }).strict(); - -// File: findManyNotification.schema.ts - -// Select schema needs to be in file to prevent circular imports -//------------------------------------------------------ - -export const NotificationFindManySelectSchema__findManyNotification_schema: z.ZodType = z.object({ - id: z.boolean().optional(), - createdAt: z.boolean().optional(), - updatedAt: z.boolean().optional(), - title: z.boolean().optional(), - shortDescription: z.boolean().optional(), - content: z.boolean().optional(), - type: z.boolean().optional(), - payload: z.boolean().optional(), - payloadType: z.boolean().optional(), - actorGroupId: z.boolean().optional(), - actorGroup: z.boolean().optional(), - createdById: z.boolean().optional(), - createdBy: z.boolean().optional(), - lastUpdatedById: z.boolean().optional(), - lastUpdatedBy: z.boolean().optional(), - taskId: z.boolean().optional(), - task: z.boolean().optional(), - recipients: z.boolean().optional(), - _count: z.boolean().optional() - }).strict() as unknown as z.ZodType; - -export const NotificationFindManySelectZodSchema__findManyNotification_schema = z.object({ - id: z.boolean().optional(), - createdAt: z.boolean().optional(), - updatedAt: z.boolean().optional(), - title: z.boolean().optional(), - shortDescription: z.boolean().optional(), - content: z.boolean().optional(), - type: z.boolean().optional(), - payload: z.boolean().optional(), - payloadType: z.boolean().optional(), - actorGroupId: z.boolean().optional(), - actorGroup: z.boolean().optional(), - createdById: z.boolean().optional(), - createdBy: z.boolean().optional(), - lastUpdatedById: z.boolean().optional(), - lastUpdatedBy: z.boolean().optional(), - taskId: z.boolean().optional(), - task: z.boolean().optional(), - recipients: z.boolean().optional(), - _count: z.boolean().optional() - }).strict(); - -export const NotificationFindManySchema: z.ZodType = z.object({ get select(){ return NotificationFindManySelectSchema__findManyNotification_schema.optional(); }, get include(){ return NotificationIncludeObjectSchema.optional(); }, orderBy: z.union([NotificationOrderByWithRelationInputObjectSchema, NotificationOrderByWithRelationInputObjectSchema.array()]).optional(), where: NotificationWhereInputObjectSchema.optional(), cursor: NotificationWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), distinct: z.union([NotificationScalarFieldEnumSchema, NotificationScalarFieldEnumSchema.array()]).optional() }).strict() as unknown as z.ZodType; - -export const NotificationFindManyZodSchema = z.object({ get select(){ return NotificationFindManySelectSchema__findManyNotification_schema.optional(); }, get include(){ return NotificationIncludeObjectSchema.optional(); }, orderBy: z.union([NotificationOrderByWithRelationInputObjectSchema, NotificationOrderByWithRelationInputObjectSchema.array()]).optional(), where: NotificationWhereInputObjectSchema.optional(), cursor: NotificationWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), distinct: z.union([NotificationScalarFieldEnumSchema, NotificationScalarFieldEnumSchema.array()]).optional() }).strict(); - -// File: countNotification.schema.ts - -export const NotificationCountSchema: z.ZodType = z.object({ orderBy: z.union([NotificationOrderByWithRelationInputObjectSchema, NotificationOrderByWithRelationInputObjectSchema.array()]).optional(), where: NotificationWhereInputObjectSchema.optional(), cursor: NotificationWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), select: z.union([ z.literal(true), NotificationCountAggregateInputObjectSchema ]).optional() }).strict() as unknown as z.ZodType; - -export const NotificationCountZodSchema = z.object({ orderBy: z.union([NotificationOrderByWithRelationInputObjectSchema, NotificationOrderByWithRelationInputObjectSchema.array()]).optional(), where: NotificationWhereInputObjectSchema.optional(), cursor: NotificationWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), select: z.union([ z.literal(true), NotificationCountAggregateInputObjectSchema ]).optional() }).strict(); - -// File: createOneNotification.schema.ts - -export const NotificationCreateOneSchema: z.ZodType = z.object({ get select(){ return NotificationSelectObjectSchema.optional(); }, get include(){ return NotificationIncludeObjectSchema.optional(); }, data: z.union([NotificationCreateInputObjectSchema, NotificationUncheckedCreateInputObjectSchema]) }).strict() as unknown as z.ZodType; - -export const NotificationCreateOneZodSchema = z.object({ get select(){ return NotificationSelectObjectSchema.optional(); }, get include(){ return NotificationIncludeObjectSchema.optional(); }, data: z.union([NotificationCreateInputObjectSchema, NotificationUncheckedCreateInputObjectSchema]) }).strict(); - -// File: createManyNotification.schema.ts - -export const NotificationCreateManySchema: z.ZodType = z.object({ data: z.union([ NotificationCreateManyInputObjectSchema, z.array(NotificationCreateManyInputObjectSchema) ]), skipDuplicates: z.boolean().optional() }).strict() as unknown as z.ZodType; - -export const NotificationCreateManyZodSchema = z.object({ data: z.union([ NotificationCreateManyInputObjectSchema, z.array(NotificationCreateManyInputObjectSchema) ]), skipDuplicates: z.boolean().optional() }).strict(); - -// File: createManyAndReturnNotification.schema.ts - -export const NotificationCreateManyAndReturnSchema: z.ZodType = z.object({ get select(){ return NotificationSelectObjectSchema.optional(); }, data: z.union([ NotificationCreateManyInputObjectSchema, z.array(NotificationCreateManyInputObjectSchema) ]), skipDuplicates: z.boolean().optional() }).strict() as unknown as z.ZodType; - -export const NotificationCreateManyAndReturnZodSchema = z.object({ get select(){ return NotificationSelectObjectSchema.optional(); }, data: z.union([ NotificationCreateManyInputObjectSchema, z.array(NotificationCreateManyInputObjectSchema) ]), skipDuplicates: z.boolean().optional() }).strict(); - -// File: deleteOneNotification.schema.ts - -export const NotificationDeleteOneSchema: z.ZodType = z.object({ get select(){ return NotificationSelectObjectSchema.optional(); }, get include(){ return NotificationIncludeObjectSchema.optional(); }, where: NotificationWhereUniqueInputObjectSchema }).strict() as unknown as z.ZodType; - -export const NotificationDeleteOneZodSchema = z.object({ get select(){ return NotificationSelectObjectSchema.optional(); }, get include(){ return NotificationIncludeObjectSchema.optional(); }, where: NotificationWhereUniqueInputObjectSchema }).strict(); - -// File: deleteManyNotification.schema.ts - -export const NotificationDeleteManySchema: z.ZodType = z.object({ where: NotificationWhereInputObjectSchema.optional() }).strict() as unknown as z.ZodType; - -export const NotificationDeleteManyZodSchema = z.object({ where: NotificationWhereInputObjectSchema.optional() }).strict(); - -// File: updateOneNotification.schema.ts - -export const NotificationUpdateOneSchema: z.ZodType = z.object({ get select(){ return NotificationSelectObjectSchema.optional(); }, get include(){ return NotificationIncludeObjectSchema.optional(); }, data: z.union([NotificationUpdateInputObjectSchema, NotificationUncheckedUpdateInputObjectSchema]), where: NotificationWhereUniqueInputObjectSchema }).strict() as unknown as z.ZodType; - -export const NotificationUpdateOneZodSchema = z.object({ get select(){ return NotificationSelectObjectSchema.optional(); }, get include(){ return NotificationIncludeObjectSchema.optional(); }, data: z.union([NotificationUpdateInputObjectSchema, NotificationUncheckedUpdateInputObjectSchema]), where: NotificationWhereUniqueInputObjectSchema }).strict(); - -// File: updateManyNotification.schema.ts - -export const NotificationUpdateManySchema: z.ZodType = z.object({ data: NotificationUpdateManyMutationInputObjectSchema, where: NotificationWhereInputObjectSchema.optional() }).strict() as unknown as z.ZodType; - -export const NotificationUpdateManyZodSchema = z.object({ data: NotificationUpdateManyMutationInputObjectSchema, where: NotificationWhereInputObjectSchema.optional() }).strict(); - -// File: updateManyAndReturnNotification.schema.ts - -export const NotificationUpdateManyAndReturnSchema: z.ZodType = z.object({ get select(){ return NotificationSelectObjectSchema.optional(); }, data: NotificationUpdateManyMutationInputObjectSchema, where: NotificationWhereInputObjectSchema.optional() }).strict() as unknown as z.ZodType; - -export const NotificationUpdateManyAndReturnZodSchema = z.object({ get select(){ return NotificationSelectObjectSchema.optional(); }, data: NotificationUpdateManyMutationInputObjectSchema, where: NotificationWhereInputObjectSchema.optional() }).strict(); - -// File: upsertOneNotification.schema.ts - -export const NotificationUpsertOneSchema: z.ZodType = z.object({ get select(){ return NotificationSelectObjectSchema.optional(); }, get include(){ return NotificationIncludeObjectSchema.optional(); }, where: NotificationWhereUniqueInputObjectSchema, create: z.union([ NotificationCreateInputObjectSchema, NotificationUncheckedCreateInputObjectSchema ]), update: z.union([ NotificationUpdateInputObjectSchema, NotificationUncheckedUpdateInputObjectSchema ]) }).strict() as unknown as z.ZodType; - -export const NotificationUpsertOneZodSchema = z.object({ get select(){ return NotificationSelectObjectSchema.optional(); }, get include(){ return NotificationIncludeObjectSchema.optional(); }, where: NotificationWhereUniqueInputObjectSchema, create: z.union([ NotificationCreateInputObjectSchema, NotificationUncheckedCreateInputObjectSchema ]), update: z.union([ NotificationUpdateInputObjectSchema, NotificationUncheckedUpdateInputObjectSchema ]) }).strict(); - -// File: aggregateNotification.schema.ts - -export const NotificationAggregateSchema: z.ZodType = z.object({ orderBy: z.union([NotificationOrderByWithRelationInputObjectSchema, NotificationOrderByWithRelationInputObjectSchema.array()]).optional(), where: NotificationWhereInputObjectSchema.optional(), cursor: NotificationWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), _count: z.union([ z.literal(true), NotificationCountAggregateInputObjectSchema ]).optional(), _min: NotificationMinAggregateInputObjectSchema.optional(), _max: NotificationMaxAggregateInputObjectSchema.optional() }).strict() as unknown as z.ZodType; - -export const NotificationAggregateZodSchema = z.object({ orderBy: z.union([NotificationOrderByWithRelationInputObjectSchema, NotificationOrderByWithRelationInputObjectSchema.array()]).optional(), where: NotificationWhereInputObjectSchema.optional(), cursor: NotificationWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), _count: z.union([ z.literal(true), NotificationCountAggregateInputObjectSchema ]).optional(), _min: NotificationMinAggregateInputObjectSchema.optional(), _max: NotificationMaxAggregateInputObjectSchema.optional() }).strict(); - -// File: groupByNotification.schema.ts - -export const NotificationGroupBySchema: z.ZodType = z.object({ where: NotificationWhereInputObjectSchema.optional(), orderBy: z.union([NotificationOrderByWithAggregationInputObjectSchema, NotificationOrderByWithAggregationInputObjectSchema.array()]).optional(), having: NotificationScalarWhereWithAggregatesInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), by: z.array(NotificationScalarFieldEnumSchema), _count: z.union([ z.literal(true), NotificationCountAggregateInputObjectSchema ]).optional(), _min: NotificationMinAggregateInputObjectSchema.optional(), _max: NotificationMaxAggregateInputObjectSchema.optional() }).strict() as unknown as z.ZodType; - -export const NotificationGroupByZodSchema = z.object({ where: NotificationWhereInputObjectSchema.optional(), orderBy: z.union([NotificationOrderByWithAggregationInputObjectSchema, NotificationOrderByWithAggregationInputObjectSchema.array()]).optional(), having: NotificationScalarWhereWithAggregatesInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), by: z.array(NotificationScalarFieldEnumSchema), _count: z.union([ z.literal(true), NotificationCountAggregateInputObjectSchema ]).optional(), _min: NotificationMinAggregateInputObjectSchema.optional(), _max: NotificationMaxAggregateInputObjectSchema.optional() }).strict(); - -// File: findUniqueContest.schema.ts - -export const ContestFindUniqueSchema: z.ZodType = z.object({ get select(){ return ContestSelectObjectSchema.optional(); }, get include(){ return ContestIncludeObjectSchema.optional(); }, where: ContestWhereUniqueInputObjectSchema }).strict() as unknown as z.ZodType; - -export const ContestFindUniqueZodSchema = z.object({ get select(){ return ContestSelectObjectSchema.optional(); }, get include(){ return ContestIncludeObjectSchema.optional(); }, where: ContestWhereUniqueInputObjectSchema }).strict(); - -// File: findUniqueOrThrowContest.schema.ts - -export const ContestFindUniqueOrThrowSchema: z.ZodType = z.object({ get select(){ return ContestSelectObjectSchema.optional(); }, get include(){ return ContestIncludeObjectSchema.optional(); }, where: ContestWhereUniqueInputObjectSchema }).strict() as unknown as z.ZodType; - -export const ContestFindUniqueOrThrowZodSchema = z.object({ get select(){ return ContestSelectObjectSchema.optional(); }, get include(){ return ContestIncludeObjectSchema.optional(); }, where: ContestWhereUniqueInputObjectSchema }).strict(); - -// File: findFirstContest.schema.ts - -// Select schema needs to be in file to prevent circular imports -//------------------------------------------------------ - -export const ContestFindFirstSelectSchema__findFirstContest_schema: z.ZodType = z.object({ - id: z.boolean().optional(), - name: z.boolean().optional(), - description: z.boolean().optional(), - startDate: z.boolean().optional(), - resultType: z.boolean().optional(), - resultOrder: z.boolean().optional(), - winnerContestantId: z.boolean().optional(), - winnerContestant: z.boolean().optional(), - contestants: z.boolean().optional(), - groups: z.boolean().optional(), - events: z.boolean().optional(), - _count: z.boolean().optional() - }).strict() as unknown as z.ZodType; - -export const ContestFindFirstSelectZodSchema__findFirstContest_schema = z.object({ - id: z.boolean().optional(), - name: z.boolean().optional(), - description: z.boolean().optional(), - startDate: z.boolean().optional(), - resultType: z.boolean().optional(), - resultOrder: z.boolean().optional(), - winnerContestantId: z.boolean().optional(), - winnerContestant: z.boolean().optional(), - contestants: z.boolean().optional(), - groups: z.boolean().optional(), - events: z.boolean().optional(), - _count: z.boolean().optional() - }).strict(); - -export const ContestFindFirstSchema: z.ZodType = z.object({ get select(){ return ContestFindFirstSelectSchema__findFirstContest_schema.optional(); }, get include(){ return ContestIncludeObjectSchema.optional(); }, orderBy: z.union([ContestOrderByWithRelationInputObjectSchema, ContestOrderByWithRelationInputObjectSchema.array()]).optional(), where: ContestWhereInputObjectSchema.optional(), cursor: ContestWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), distinct: z.union([ContestScalarFieldEnumSchema, ContestScalarFieldEnumSchema.array()]).optional() }).strict() as unknown as z.ZodType; - -export const ContestFindFirstZodSchema = z.object({ get select(){ return ContestFindFirstSelectSchema__findFirstContest_schema.optional(); }, get include(){ return ContestIncludeObjectSchema.optional(); }, orderBy: z.union([ContestOrderByWithRelationInputObjectSchema, ContestOrderByWithRelationInputObjectSchema.array()]).optional(), where: ContestWhereInputObjectSchema.optional(), cursor: ContestWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), distinct: z.union([ContestScalarFieldEnumSchema, ContestScalarFieldEnumSchema.array()]).optional() }).strict(); - -// File: findFirstOrThrowContest.schema.ts - -// Select schema needs to be in file to prevent circular imports -//------------------------------------------------------ - -export const ContestFindFirstOrThrowSelectSchema__findFirstOrThrowContest_schema: z.ZodType = z.object({ - id: z.boolean().optional(), - name: z.boolean().optional(), - description: z.boolean().optional(), - startDate: z.boolean().optional(), - resultType: z.boolean().optional(), - resultOrder: z.boolean().optional(), - winnerContestantId: z.boolean().optional(), - winnerContestant: z.boolean().optional(), - contestants: z.boolean().optional(), - groups: z.boolean().optional(), - events: z.boolean().optional(), - _count: z.boolean().optional() - }).strict() as unknown as z.ZodType; - -export const ContestFindFirstOrThrowSelectZodSchema__findFirstOrThrowContest_schema = z.object({ - id: z.boolean().optional(), - name: z.boolean().optional(), - description: z.boolean().optional(), - startDate: z.boolean().optional(), - resultType: z.boolean().optional(), - resultOrder: z.boolean().optional(), - winnerContestantId: z.boolean().optional(), - winnerContestant: z.boolean().optional(), - contestants: z.boolean().optional(), - groups: z.boolean().optional(), - events: z.boolean().optional(), - _count: z.boolean().optional() - }).strict(); - -export const ContestFindFirstOrThrowSchema: z.ZodType = z.object({ get select(){ return ContestFindFirstOrThrowSelectSchema__findFirstOrThrowContest_schema.optional(); }, get include(){ return ContestIncludeObjectSchema.optional(); }, orderBy: z.union([ContestOrderByWithRelationInputObjectSchema, ContestOrderByWithRelationInputObjectSchema.array()]).optional(), where: ContestWhereInputObjectSchema.optional(), cursor: ContestWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), distinct: z.union([ContestScalarFieldEnumSchema, ContestScalarFieldEnumSchema.array()]).optional() }).strict() as unknown as z.ZodType; - -export const ContestFindFirstOrThrowZodSchema = z.object({ get select(){ return ContestFindFirstOrThrowSelectSchema__findFirstOrThrowContest_schema.optional(); }, get include(){ return ContestIncludeObjectSchema.optional(); }, orderBy: z.union([ContestOrderByWithRelationInputObjectSchema, ContestOrderByWithRelationInputObjectSchema.array()]).optional(), where: ContestWhereInputObjectSchema.optional(), cursor: ContestWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), distinct: z.union([ContestScalarFieldEnumSchema, ContestScalarFieldEnumSchema.array()]).optional() }).strict(); - -// File: findManyContest.schema.ts - -// Select schema needs to be in file to prevent circular imports -//------------------------------------------------------ - -export const ContestFindManySelectSchema__findManyContest_schema: z.ZodType = z.object({ - id: z.boolean().optional(), - name: z.boolean().optional(), - description: z.boolean().optional(), - startDate: z.boolean().optional(), - resultType: z.boolean().optional(), - resultOrder: z.boolean().optional(), - winnerContestantId: z.boolean().optional(), - winnerContestant: z.boolean().optional(), - contestants: z.boolean().optional(), - groups: z.boolean().optional(), - events: z.boolean().optional(), - _count: z.boolean().optional() - }).strict() as unknown as z.ZodType; - -export const ContestFindManySelectZodSchema__findManyContest_schema = z.object({ - id: z.boolean().optional(), - name: z.boolean().optional(), - description: z.boolean().optional(), - startDate: z.boolean().optional(), - resultType: z.boolean().optional(), - resultOrder: z.boolean().optional(), - winnerContestantId: z.boolean().optional(), - winnerContestant: z.boolean().optional(), - contestants: z.boolean().optional(), - groups: z.boolean().optional(), - events: z.boolean().optional(), - _count: z.boolean().optional() - }).strict(); - -export const ContestFindManySchema: z.ZodType = z.object({ get select(){ return ContestFindManySelectSchema__findManyContest_schema.optional(); }, get include(){ return ContestIncludeObjectSchema.optional(); }, orderBy: z.union([ContestOrderByWithRelationInputObjectSchema, ContestOrderByWithRelationInputObjectSchema.array()]).optional(), where: ContestWhereInputObjectSchema.optional(), cursor: ContestWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), distinct: z.union([ContestScalarFieldEnumSchema, ContestScalarFieldEnumSchema.array()]).optional() }).strict() as unknown as z.ZodType; - -export const ContestFindManyZodSchema = z.object({ get select(){ return ContestFindManySelectSchema__findManyContest_schema.optional(); }, get include(){ return ContestIncludeObjectSchema.optional(); }, orderBy: z.union([ContestOrderByWithRelationInputObjectSchema, ContestOrderByWithRelationInputObjectSchema.array()]).optional(), where: ContestWhereInputObjectSchema.optional(), cursor: ContestWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), distinct: z.union([ContestScalarFieldEnumSchema, ContestScalarFieldEnumSchema.array()]).optional() }).strict(); - -// File: countContest.schema.ts - -export const ContestCountSchema: z.ZodType = z.object({ orderBy: z.union([ContestOrderByWithRelationInputObjectSchema, ContestOrderByWithRelationInputObjectSchema.array()]).optional(), where: ContestWhereInputObjectSchema.optional(), cursor: ContestWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), select: z.union([ z.literal(true), ContestCountAggregateInputObjectSchema ]).optional() }).strict() as unknown as z.ZodType; - -export const ContestCountZodSchema = z.object({ orderBy: z.union([ContestOrderByWithRelationInputObjectSchema, ContestOrderByWithRelationInputObjectSchema.array()]).optional(), where: ContestWhereInputObjectSchema.optional(), cursor: ContestWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), select: z.union([ z.literal(true), ContestCountAggregateInputObjectSchema ]).optional() }).strict(); - -// File: createOneContest.schema.ts - -export const ContestCreateOneSchema: z.ZodType = z.object({ get select(){ return ContestSelectObjectSchema.optional(); }, get include(){ return ContestIncludeObjectSchema.optional(); }, data: z.union([ContestCreateInputObjectSchema, ContestUncheckedCreateInputObjectSchema]) }).strict() as unknown as z.ZodType; - -export const ContestCreateOneZodSchema = z.object({ get select(){ return ContestSelectObjectSchema.optional(); }, get include(){ return ContestIncludeObjectSchema.optional(); }, data: z.union([ContestCreateInputObjectSchema, ContestUncheckedCreateInputObjectSchema]) }).strict(); - -// File: createManyContest.schema.ts - -export const ContestCreateManySchema: z.ZodType = z.object({ data: z.union([ ContestCreateManyInputObjectSchema, z.array(ContestCreateManyInputObjectSchema) ]), skipDuplicates: z.boolean().optional() }).strict() as unknown as z.ZodType; - -export const ContestCreateManyZodSchema = z.object({ data: z.union([ ContestCreateManyInputObjectSchema, z.array(ContestCreateManyInputObjectSchema) ]), skipDuplicates: z.boolean().optional() }).strict(); - -// File: createManyAndReturnContest.schema.ts - -export const ContestCreateManyAndReturnSchema: z.ZodType = z.object({ get select(){ return ContestSelectObjectSchema.optional(); }, data: z.union([ ContestCreateManyInputObjectSchema, z.array(ContestCreateManyInputObjectSchema) ]), skipDuplicates: z.boolean().optional() }).strict() as unknown as z.ZodType; - -export const ContestCreateManyAndReturnZodSchema = z.object({ get select(){ return ContestSelectObjectSchema.optional(); }, data: z.union([ ContestCreateManyInputObjectSchema, z.array(ContestCreateManyInputObjectSchema) ]), skipDuplicates: z.boolean().optional() }).strict(); - -// File: deleteOneContest.schema.ts - -export const ContestDeleteOneSchema: z.ZodType = z.object({ get select(){ return ContestSelectObjectSchema.optional(); }, get include(){ return ContestIncludeObjectSchema.optional(); }, where: ContestWhereUniqueInputObjectSchema }).strict() as unknown as z.ZodType; - -export const ContestDeleteOneZodSchema = z.object({ get select(){ return ContestSelectObjectSchema.optional(); }, get include(){ return ContestIncludeObjectSchema.optional(); }, where: ContestWhereUniqueInputObjectSchema }).strict(); - -// File: deleteManyContest.schema.ts - -export const ContestDeleteManySchema: z.ZodType = z.object({ where: ContestWhereInputObjectSchema.optional() }).strict() as unknown as z.ZodType; - -export const ContestDeleteManyZodSchema = z.object({ where: ContestWhereInputObjectSchema.optional() }).strict(); - -// File: updateOneContest.schema.ts - -export const ContestUpdateOneSchema: z.ZodType = z.object({ get select(){ return ContestSelectObjectSchema.optional(); }, get include(){ return ContestIncludeObjectSchema.optional(); }, data: z.union([ContestUpdateInputObjectSchema, ContestUncheckedUpdateInputObjectSchema]), where: ContestWhereUniqueInputObjectSchema }).strict() as unknown as z.ZodType; - -export const ContestUpdateOneZodSchema = z.object({ get select(){ return ContestSelectObjectSchema.optional(); }, get include(){ return ContestIncludeObjectSchema.optional(); }, data: z.union([ContestUpdateInputObjectSchema, ContestUncheckedUpdateInputObjectSchema]), where: ContestWhereUniqueInputObjectSchema }).strict(); - -// File: updateManyContest.schema.ts - -export const ContestUpdateManySchema: z.ZodType = z.object({ data: ContestUpdateManyMutationInputObjectSchema, where: ContestWhereInputObjectSchema.optional() }).strict() as unknown as z.ZodType; - -export const ContestUpdateManyZodSchema = z.object({ data: ContestUpdateManyMutationInputObjectSchema, where: ContestWhereInputObjectSchema.optional() }).strict(); - -// File: updateManyAndReturnContest.schema.ts - -export const ContestUpdateManyAndReturnSchema: z.ZodType = z.object({ get select(){ return ContestSelectObjectSchema.optional(); }, data: ContestUpdateManyMutationInputObjectSchema, where: ContestWhereInputObjectSchema.optional() }).strict() as unknown as z.ZodType; - -export const ContestUpdateManyAndReturnZodSchema = z.object({ get select(){ return ContestSelectObjectSchema.optional(); }, data: ContestUpdateManyMutationInputObjectSchema, where: ContestWhereInputObjectSchema.optional() }).strict(); - -// File: upsertOneContest.schema.ts - -export const ContestUpsertOneSchema: z.ZodType = z.object({ get select(){ return ContestSelectObjectSchema.optional(); }, get include(){ return ContestIncludeObjectSchema.optional(); }, where: ContestWhereUniqueInputObjectSchema, create: z.union([ ContestCreateInputObjectSchema, ContestUncheckedCreateInputObjectSchema ]), update: z.union([ ContestUpdateInputObjectSchema, ContestUncheckedUpdateInputObjectSchema ]) }).strict() as unknown as z.ZodType; - -export const ContestUpsertOneZodSchema = z.object({ get select(){ return ContestSelectObjectSchema.optional(); }, get include(){ return ContestIncludeObjectSchema.optional(); }, where: ContestWhereUniqueInputObjectSchema, create: z.union([ ContestCreateInputObjectSchema, ContestUncheckedCreateInputObjectSchema ]), update: z.union([ ContestUpdateInputObjectSchema, ContestUncheckedUpdateInputObjectSchema ]) }).strict(); - -// File: aggregateContest.schema.ts - -export const ContestAggregateSchema: z.ZodType = z.object({ orderBy: z.union([ContestOrderByWithRelationInputObjectSchema, ContestOrderByWithRelationInputObjectSchema.array()]).optional(), where: ContestWhereInputObjectSchema.optional(), cursor: ContestWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), _count: z.union([ z.literal(true), ContestCountAggregateInputObjectSchema ]).optional(), _min: ContestMinAggregateInputObjectSchema.optional(), _max: ContestMaxAggregateInputObjectSchema.optional() }).strict() as unknown as z.ZodType; - -export const ContestAggregateZodSchema = z.object({ orderBy: z.union([ContestOrderByWithRelationInputObjectSchema, ContestOrderByWithRelationInputObjectSchema.array()]).optional(), where: ContestWhereInputObjectSchema.optional(), cursor: ContestWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), _count: z.union([ z.literal(true), ContestCountAggregateInputObjectSchema ]).optional(), _min: ContestMinAggregateInputObjectSchema.optional(), _max: ContestMaxAggregateInputObjectSchema.optional() }).strict(); - -// File: groupByContest.schema.ts - -export const ContestGroupBySchema: z.ZodType = z.object({ where: ContestWhereInputObjectSchema.optional(), orderBy: z.union([ContestOrderByWithAggregationInputObjectSchema, ContestOrderByWithAggregationInputObjectSchema.array()]).optional(), having: ContestScalarWhereWithAggregatesInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), by: z.array(ContestScalarFieldEnumSchema), _count: z.union([ z.literal(true), ContestCountAggregateInputObjectSchema ]).optional(), _min: ContestMinAggregateInputObjectSchema.optional(), _max: ContestMaxAggregateInputObjectSchema.optional() }).strict() as unknown as z.ZodType; - -export const ContestGroupByZodSchema = z.object({ where: ContestWhereInputObjectSchema.optional(), orderBy: z.union([ContestOrderByWithAggregationInputObjectSchema, ContestOrderByWithAggregationInputObjectSchema.array()]).optional(), having: ContestScalarWhereWithAggregatesInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), by: z.array(ContestScalarFieldEnumSchema), _count: z.union([ z.literal(true), ContestCountAggregateInputObjectSchema ]).optional(), _min: ContestMinAggregateInputObjectSchema.optional(), _max: ContestMaxAggregateInputObjectSchema.optional() }).strict(); - -// File: findUniqueFadderuke.schema.ts - -export const FadderukeFindUniqueSchema: z.ZodType = z.object({ get select(){ return FadderukeSelectObjectSchema.optional(); }, get include(){ return FadderukeIncludeObjectSchema.optional(); }, where: FadderukeWhereUniqueInputObjectSchema }).strict() as unknown as z.ZodType; - -export const FadderukeFindUniqueZodSchema = z.object({ get select(){ return FadderukeSelectObjectSchema.optional(); }, get include(){ return FadderukeIncludeObjectSchema.optional(); }, where: FadderukeWhereUniqueInputObjectSchema }).strict(); - -// File: findUniqueOrThrowFadderuke.schema.ts - -export const FadderukeFindUniqueOrThrowSchema: z.ZodType = z.object({ get select(){ return FadderukeSelectObjectSchema.optional(); }, get include(){ return FadderukeIncludeObjectSchema.optional(); }, where: FadderukeWhereUniqueInputObjectSchema }).strict() as unknown as z.ZodType; - -export const FadderukeFindUniqueOrThrowZodSchema = z.object({ get select(){ return FadderukeSelectObjectSchema.optional(); }, get include(){ return FadderukeIncludeObjectSchema.optional(); }, where: FadderukeWhereUniqueInputObjectSchema }).strict(); - -// File: findFirstFadderuke.schema.ts - -// Select schema needs to be in file to prevent circular imports -//------------------------------------------------------ - -export const FadderukeFindFirstSelectSchema__findFirstFadderuke_schema: z.ZodType = z.object({ - id: z.boolean().optional(), - year: z.boolean().optional(), - eventId: z.boolean().optional(), - event: z.boolean().optional(), - createdAt: z.boolean().optional(), - updatedAt: z.boolean().optional() - }).strict() as unknown as z.ZodType; - -export const FadderukeFindFirstSelectZodSchema__findFirstFadderuke_schema = z.object({ - id: z.boolean().optional(), - year: z.boolean().optional(), - eventId: z.boolean().optional(), - event: z.boolean().optional(), - createdAt: z.boolean().optional(), - updatedAt: z.boolean().optional() - }).strict(); - -export const FadderukeFindFirstSchema: z.ZodType = z.object({ get select(){ return FadderukeFindFirstSelectSchema__findFirstFadderuke_schema.optional(); }, get include(){ return FadderukeIncludeObjectSchema.optional(); }, orderBy: z.union([FadderukeOrderByWithRelationInputObjectSchema, FadderukeOrderByWithRelationInputObjectSchema.array()]).optional(), where: FadderukeWhereInputObjectSchema.optional(), cursor: FadderukeWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), distinct: z.union([FadderukeScalarFieldEnumSchema, FadderukeScalarFieldEnumSchema.array()]).optional() }).strict() as unknown as z.ZodType; - -export const FadderukeFindFirstZodSchema = z.object({ get select(){ return FadderukeFindFirstSelectSchema__findFirstFadderuke_schema.optional(); }, get include(){ return FadderukeIncludeObjectSchema.optional(); }, orderBy: z.union([FadderukeOrderByWithRelationInputObjectSchema, FadderukeOrderByWithRelationInputObjectSchema.array()]).optional(), where: FadderukeWhereInputObjectSchema.optional(), cursor: FadderukeWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), distinct: z.union([FadderukeScalarFieldEnumSchema, FadderukeScalarFieldEnumSchema.array()]).optional() }).strict(); - -// File: findFirstOrThrowFadderuke.schema.ts - -// Select schema needs to be in file to prevent circular imports -//------------------------------------------------------ - -export const FadderukeFindFirstOrThrowSelectSchema__findFirstOrThrowFadderuke_schema: z.ZodType = z.object({ - id: z.boolean().optional(), - year: z.boolean().optional(), - eventId: z.boolean().optional(), - event: z.boolean().optional(), - createdAt: z.boolean().optional(), - updatedAt: z.boolean().optional() - }).strict() as unknown as z.ZodType; - -export const FadderukeFindFirstOrThrowSelectZodSchema__findFirstOrThrowFadderuke_schema = z.object({ - id: z.boolean().optional(), - year: z.boolean().optional(), - eventId: z.boolean().optional(), - event: z.boolean().optional(), - createdAt: z.boolean().optional(), - updatedAt: z.boolean().optional() - }).strict(); - -export const FadderukeFindFirstOrThrowSchema: z.ZodType = z.object({ get select(){ return FadderukeFindFirstOrThrowSelectSchema__findFirstOrThrowFadderuke_schema.optional(); }, get include(){ return FadderukeIncludeObjectSchema.optional(); }, orderBy: z.union([FadderukeOrderByWithRelationInputObjectSchema, FadderukeOrderByWithRelationInputObjectSchema.array()]).optional(), where: FadderukeWhereInputObjectSchema.optional(), cursor: FadderukeWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), distinct: z.union([FadderukeScalarFieldEnumSchema, FadderukeScalarFieldEnumSchema.array()]).optional() }).strict() as unknown as z.ZodType; - -export const FadderukeFindFirstOrThrowZodSchema = z.object({ get select(){ return FadderukeFindFirstOrThrowSelectSchema__findFirstOrThrowFadderuke_schema.optional(); }, get include(){ return FadderukeIncludeObjectSchema.optional(); }, orderBy: z.union([FadderukeOrderByWithRelationInputObjectSchema, FadderukeOrderByWithRelationInputObjectSchema.array()]).optional(), where: FadderukeWhereInputObjectSchema.optional(), cursor: FadderukeWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), distinct: z.union([FadderukeScalarFieldEnumSchema, FadderukeScalarFieldEnumSchema.array()]).optional() }).strict(); - -// File: findManyFadderuke.schema.ts - -// Select schema needs to be in file to prevent circular imports -//------------------------------------------------------ - -export const FadderukeFindManySelectSchema__findManyFadderuke_schema: z.ZodType = z.object({ - id: z.boolean().optional(), - year: z.boolean().optional(), - eventId: z.boolean().optional(), - event: z.boolean().optional(), - createdAt: z.boolean().optional(), - updatedAt: z.boolean().optional() - }).strict() as unknown as z.ZodType; - -export const FadderukeFindManySelectZodSchema__findManyFadderuke_schema = z.object({ - id: z.boolean().optional(), - year: z.boolean().optional(), - eventId: z.boolean().optional(), - event: z.boolean().optional(), - createdAt: z.boolean().optional(), - updatedAt: z.boolean().optional() - }).strict(); - -export const FadderukeFindManySchema: z.ZodType = z.object({ get select(){ return FadderukeFindManySelectSchema__findManyFadderuke_schema.optional(); }, get include(){ return FadderukeIncludeObjectSchema.optional(); }, orderBy: z.union([FadderukeOrderByWithRelationInputObjectSchema, FadderukeOrderByWithRelationInputObjectSchema.array()]).optional(), where: FadderukeWhereInputObjectSchema.optional(), cursor: FadderukeWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), distinct: z.union([FadderukeScalarFieldEnumSchema, FadderukeScalarFieldEnumSchema.array()]).optional() }).strict() as unknown as z.ZodType; - -export const FadderukeFindManyZodSchema = z.object({ get select(){ return FadderukeFindManySelectSchema__findManyFadderuke_schema.optional(); }, get include(){ return FadderukeIncludeObjectSchema.optional(); }, orderBy: z.union([FadderukeOrderByWithRelationInputObjectSchema, FadderukeOrderByWithRelationInputObjectSchema.array()]).optional(), where: FadderukeWhereInputObjectSchema.optional(), cursor: FadderukeWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), distinct: z.union([FadderukeScalarFieldEnumSchema, FadderukeScalarFieldEnumSchema.array()]).optional() }).strict(); - -// File: countFadderuke.schema.ts - -export const FadderukeCountSchema: z.ZodType = z.object({ orderBy: z.union([FadderukeOrderByWithRelationInputObjectSchema, FadderukeOrderByWithRelationInputObjectSchema.array()]).optional(), where: FadderukeWhereInputObjectSchema.optional(), cursor: FadderukeWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), select: z.union([ z.literal(true), FadderukeCountAggregateInputObjectSchema ]).optional() }).strict() as unknown as z.ZodType; - -export const FadderukeCountZodSchema = z.object({ orderBy: z.union([FadderukeOrderByWithRelationInputObjectSchema, FadderukeOrderByWithRelationInputObjectSchema.array()]).optional(), where: FadderukeWhereInputObjectSchema.optional(), cursor: FadderukeWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), select: z.union([ z.literal(true), FadderukeCountAggregateInputObjectSchema ]).optional() }).strict(); - -// File: createOneFadderuke.schema.ts - -export const FadderukeCreateOneSchema: z.ZodType = z.object({ get select(){ return FadderukeSelectObjectSchema.optional(); }, get include(){ return FadderukeIncludeObjectSchema.optional(); }, data: z.union([FadderukeCreateInputObjectSchema, FadderukeUncheckedCreateInputObjectSchema]) }).strict() as unknown as z.ZodType; - -export const FadderukeCreateOneZodSchema = z.object({ get select(){ return FadderukeSelectObjectSchema.optional(); }, get include(){ return FadderukeIncludeObjectSchema.optional(); }, data: z.union([FadderukeCreateInputObjectSchema, FadderukeUncheckedCreateInputObjectSchema]) }).strict(); - -// File: createManyFadderuke.schema.ts - -export const FadderukeCreateManySchema: z.ZodType = z.object({ data: z.union([ FadderukeCreateManyInputObjectSchema, z.array(FadderukeCreateManyInputObjectSchema) ]), skipDuplicates: z.boolean().optional() }).strict() as unknown as z.ZodType; - -export const FadderukeCreateManyZodSchema = z.object({ data: z.union([ FadderukeCreateManyInputObjectSchema, z.array(FadderukeCreateManyInputObjectSchema) ]), skipDuplicates: z.boolean().optional() }).strict(); - -// File: createManyAndReturnFadderuke.schema.ts - -export const FadderukeCreateManyAndReturnSchema: z.ZodType = z.object({ get select(){ return FadderukeSelectObjectSchema.optional(); }, data: z.union([ FadderukeCreateManyInputObjectSchema, z.array(FadderukeCreateManyInputObjectSchema) ]), skipDuplicates: z.boolean().optional() }).strict() as unknown as z.ZodType; - -export const FadderukeCreateManyAndReturnZodSchema = z.object({ get select(){ return FadderukeSelectObjectSchema.optional(); }, data: z.union([ FadderukeCreateManyInputObjectSchema, z.array(FadderukeCreateManyInputObjectSchema) ]), skipDuplicates: z.boolean().optional() }).strict(); - -// File: deleteOneFadderuke.schema.ts - -export const FadderukeDeleteOneSchema: z.ZodType = z.object({ get select(){ return FadderukeSelectObjectSchema.optional(); }, get include(){ return FadderukeIncludeObjectSchema.optional(); }, where: FadderukeWhereUniqueInputObjectSchema }).strict() as unknown as z.ZodType; - -export const FadderukeDeleteOneZodSchema = z.object({ get select(){ return FadderukeSelectObjectSchema.optional(); }, get include(){ return FadderukeIncludeObjectSchema.optional(); }, where: FadderukeWhereUniqueInputObjectSchema }).strict(); - -// File: deleteManyFadderuke.schema.ts - -export const FadderukeDeleteManySchema: z.ZodType = z.object({ where: FadderukeWhereInputObjectSchema.optional() }).strict() as unknown as z.ZodType; - -export const FadderukeDeleteManyZodSchema = z.object({ where: FadderukeWhereInputObjectSchema.optional() }).strict(); - -// File: updateOneFadderuke.schema.ts - -export const FadderukeUpdateOneSchema: z.ZodType = z.object({ get select(){ return FadderukeSelectObjectSchema.optional(); }, get include(){ return FadderukeIncludeObjectSchema.optional(); }, data: z.union([FadderukeUpdateInputObjectSchema, FadderukeUncheckedUpdateInputObjectSchema]), where: FadderukeWhereUniqueInputObjectSchema }).strict() as unknown as z.ZodType; - -export const FadderukeUpdateOneZodSchema = z.object({ get select(){ return FadderukeSelectObjectSchema.optional(); }, get include(){ return FadderukeIncludeObjectSchema.optional(); }, data: z.union([FadderukeUpdateInputObjectSchema, FadderukeUncheckedUpdateInputObjectSchema]), where: FadderukeWhereUniqueInputObjectSchema }).strict(); - -// File: updateManyFadderuke.schema.ts - -export const FadderukeUpdateManySchema: z.ZodType = z.object({ data: FadderukeUpdateManyMutationInputObjectSchema, where: FadderukeWhereInputObjectSchema.optional() }).strict() as unknown as z.ZodType; - -export const FadderukeUpdateManyZodSchema = z.object({ data: FadderukeUpdateManyMutationInputObjectSchema, where: FadderukeWhereInputObjectSchema.optional() }).strict(); - -// File: updateManyAndReturnFadderuke.schema.ts - -export const FadderukeUpdateManyAndReturnSchema: z.ZodType = z.object({ get select(){ return FadderukeSelectObjectSchema.optional(); }, data: FadderukeUpdateManyMutationInputObjectSchema, where: FadderukeWhereInputObjectSchema.optional() }).strict() as unknown as z.ZodType; - -export const FadderukeUpdateManyAndReturnZodSchema = z.object({ get select(){ return FadderukeSelectObjectSchema.optional(); }, data: FadderukeUpdateManyMutationInputObjectSchema, where: FadderukeWhereInputObjectSchema.optional() }).strict(); - -// File: upsertOneFadderuke.schema.ts - -export const FadderukeUpsertOneSchema: z.ZodType = z.object({ get select(){ return FadderukeSelectObjectSchema.optional(); }, get include(){ return FadderukeIncludeObjectSchema.optional(); }, where: FadderukeWhereUniqueInputObjectSchema, create: z.union([ FadderukeCreateInputObjectSchema, FadderukeUncheckedCreateInputObjectSchema ]), update: z.union([ FadderukeUpdateInputObjectSchema, FadderukeUncheckedUpdateInputObjectSchema ]) }).strict() as unknown as z.ZodType; - -export const FadderukeUpsertOneZodSchema = z.object({ get select(){ return FadderukeSelectObjectSchema.optional(); }, get include(){ return FadderukeIncludeObjectSchema.optional(); }, where: FadderukeWhereUniqueInputObjectSchema, create: z.union([ FadderukeCreateInputObjectSchema, FadderukeUncheckedCreateInputObjectSchema ]), update: z.union([ FadderukeUpdateInputObjectSchema, FadderukeUncheckedUpdateInputObjectSchema ]) }).strict(); - -// File: aggregateFadderuke.schema.ts - -export const FadderukeAggregateSchema: z.ZodType = z.object({ orderBy: z.union([FadderukeOrderByWithRelationInputObjectSchema, FadderukeOrderByWithRelationInputObjectSchema.array()]).optional(), where: FadderukeWhereInputObjectSchema.optional(), cursor: FadderukeWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), _count: z.union([ z.literal(true), FadderukeCountAggregateInputObjectSchema ]).optional(), _min: FadderukeMinAggregateInputObjectSchema.optional(), _max: FadderukeMaxAggregateInputObjectSchema.optional(), _avg: FadderukeAvgAggregateInputObjectSchema.optional(), _sum: FadderukeSumAggregateInputObjectSchema.optional() }).strict() as unknown as z.ZodType; - -export const FadderukeAggregateZodSchema = z.object({ orderBy: z.union([FadderukeOrderByWithRelationInputObjectSchema, FadderukeOrderByWithRelationInputObjectSchema.array()]).optional(), where: FadderukeWhereInputObjectSchema.optional(), cursor: FadderukeWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), _count: z.union([ z.literal(true), FadderukeCountAggregateInputObjectSchema ]).optional(), _min: FadderukeMinAggregateInputObjectSchema.optional(), _max: FadderukeMaxAggregateInputObjectSchema.optional(), _avg: FadderukeAvgAggregateInputObjectSchema.optional(), _sum: FadderukeSumAggregateInputObjectSchema.optional() }).strict(); - -// File: groupByFadderuke.schema.ts - -export const FadderukeGroupBySchema: z.ZodType = z.object({ where: FadderukeWhereInputObjectSchema.optional(), orderBy: z.union([FadderukeOrderByWithAggregationInputObjectSchema, FadderukeOrderByWithAggregationInputObjectSchema.array()]).optional(), having: FadderukeScalarWhereWithAggregatesInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), by: z.array(FadderukeScalarFieldEnumSchema), _count: z.union([ z.literal(true), FadderukeCountAggregateInputObjectSchema ]).optional(), _min: FadderukeMinAggregateInputObjectSchema.optional(), _max: FadderukeMaxAggregateInputObjectSchema.optional(), _avg: FadderukeAvgAggregateInputObjectSchema.optional(), _sum: FadderukeSumAggregateInputObjectSchema.optional() }).strict() as unknown as z.ZodType; - -export const FadderukeGroupByZodSchema = z.object({ where: FadderukeWhereInputObjectSchema.optional(), orderBy: z.union([FadderukeOrderByWithAggregationInputObjectSchema, FadderukeOrderByWithAggregationInputObjectSchema.array()]).optional(), having: FadderukeScalarWhereWithAggregatesInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), by: z.array(FadderukeScalarFieldEnumSchema), _count: z.union([ z.literal(true), FadderukeCountAggregateInputObjectSchema ]).optional(), _min: FadderukeMinAggregateInputObjectSchema.optional(), _max: FadderukeMaxAggregateInputObjectSchema.optional(), _avg: FadderukeAvgAggregateInputObjectSchema.optional(), _sum: FadderukeSumAggregateInputObjectSchema.optional() }).strict(); - -// File: findUniqueContestant.schema.ts - -export const ContestantFindUniqueSchema: z.ZodType = z.object({ get select(){ return ContestantSelectObjectSchema.optional(); }, get include(){ return ContestantIncludeObjectSchema.optional(); }, where: ContestantWhereUniqueInputObjectSchema }).strict() as unknown as z.ZodType; - -export const ContestantFindUniqueZodSchema = z.object({ get select(){ return ContestantSelectObjectSchema.optional(); }, get include(){ return ContestantIncludeObjectSchema.optional(); }, where: ContestantWhereUniqueInputObjectSchema }).strict(); - -// File: findUniqueOrThrowContestant.schema.ts - -export const ContestantFindUniqueOrThrowSchema: z.ZodType = z.object({ get select(){ return ContestantSelectObjectSchema.optional(); }, get include(){ return ContestantIncludeObjectSchema.optional(); }, where: ContestantWhereUniqueInputObjectSchema }).strict() as unknown as z.ZodType; - -export const ContestantFindUniqueOrThrowZodSchema = z.object({ get select(){ return ContestantSelectObjectSchema.optional(); }, get include(){ return ContestantIncludeObjectSchema.optional(); }, where: ContestantWhereUniqueInputObjectSchema }).strict(); - -// File: findFirstContestant.schema.ts - -// Select schema needs to be in file to prevent circular imports -//------------------------------------------------------ - -export const ContestantFindFirstSelectSchema__findFirstContestant_schema: z.ZodType = z.object({ - id: z.boolean().optional(), - resultValue: z.boolean().optional(), - contestId: z.boolean().optional(), - userId: z.boolean().optional(), - contest: z.boolean().optional(), - user: z.boolean().optional(), - team: z.boolean().optional(), - wonContest: z.boolean().optional() - }).strict() as unknown as z.ZodType; - -export const ContestantFindFirstSelectZodSchema__findFirstContestant_schema = z.object({ - id: z.boolean().optional(), - resultValue: z.boolean().optional(), - contestId: z.boolean().optional(), - userId: z.boolean().optional(), - contest: z.boolean().optional(), - user: z.boolean().optional(), - team: z.boolean().optional(), - wonContest: z.boolean().optional() - }).strict(); - -export const ContestantFindFirstSchema: z.ZodType = z.object({ get select(){ return ContestantFindFirstSelectSchema__findFirstContestant_schema.optional(); }, get include(){ return ContestantIncludeObjectSchema.optional(); }, orderBy: z.union([ContestantOrderByWithRelationInputObjectSchema, ContestantOrderByWithRelationInputObjectSchema.array()]).optional(), where: ContestantWhereInputObjectSchema.optional(), cursor: ContestantWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), distinct: z.union([ContestantScalarFieldEnumSchema, ContestantScalarFieldEnumSchema.array()]).optional() }).strict() as unknown as z.ZodType; - -export const ContestantFindFirstZodSchema = z.object({ get select(){ return ContestantFindFirstSelectSchema__findFirstContestant_schema.optional(); }, get include(){ return ContestantIncludeObjectSchema.optional(); }, orderBy: z.union([ContestantOrderByWithRelationInputObjectSchema, ContestantOrderByWithRelationInputObjectSchema.array()]).optional(), where: ContestantWhereInputObjectSchema.optional(), cursor: ContestantWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), distinct: z.union([ContestantScalarFieldEnumSchema, ContestantScalarFieldEnumSchema.array()]).optional() }).strict(); - -// File: findFirstOrThrowContestant.schema.ts - -// Select schema needs to be in file to prevent circular imports -//------------------------------------------------------ - -export const ContestantFindFirstOrThrowSelectSchema__findFirstOrThrowContestant_schema: z.ZodType = z.object({ - id: z.boolean().optional(), - resultValue: z.boolean().optional(), - contestId: z.boolean().optional(), - userId: z.boolean().optional(), - contest: z.boolean().optional(), - user: z.boolean().optional(), - team: z.boolean().optional(), - wonContest: z.boolean().optional() - }).strict() as unknown as z.ZodType; - -export const ContestantFindFirstOrThrowSelectZodSchema__findFirstOrThrowContestant_schema = z.object({ - id: z.boolean().optional(), - resultValue: z.boolean().optional(), - contestId: z.boolean().optional(), - userId: z.boolean().optional(), - contest: z.boolean().optional(), - user: z.boolean().optional(), - team: z.boolean().optional(), - wonContest: z.boolean().optional() - }).strict(); - -export const ContestantFindFirstOrThrowSchema: z.ZodType = z.object({ get select(){ return ContestantFindFirstOrThrowSelectSchema__findFirstOrThrowContestant_schema.optional(); }, get include(){ return ContestantIncludeObjectSchema.optional(); }, orderBy: z.union([ContestantOrderByWithRelationInputObjectSchema, ContestantOrderByWithRelationInputObjectSchema.array()]).optional(), where: ContestantWhereInputObjectSchema.optional(), cursor: ContestantWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), distinct: z.union([ContestantScalarFieldEnumSchema, ContestantScalarFieldEnumSchema.array()]).optional() }).strict() as unknown as z.ZodType; - -export const ContestantFindFirstOrThrowZodSchema = z.object({ get select(){ return ContestantFindFirstOrThrowSelectSchema__findFirstOrThrowContestant_schema.optional(); }, get include(){ return ContestantIncludeObjectSchema.optional(); }, orderBy: z.union([ContestantOrderByWithRelationInputObjectSchema, ContestantOrderByWithRelationInputObjectSchema.array()]).optional(), where: ContestantWhereInputObjectSchema.optional(), cursor: ContestantWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), distinct: z.union([ContestantScalarFieldEnumSchema, ContestantScalarFieldEnumSchema.array()]).optional() }).strict(); - -// File: findManyContestant.schema.ts - -// Select schema needs to be in file to prevent circular imports -//------------------------------------------------------ - -export const ContestantFindManySelectSchema__findManyContestant_schema: z.ZodType = z.object({ - id: z.boolean().optional(), - resultValue: z.boolean().optional(), - contestId: z.boolean().optional(), - userId: z.boolean().optional(), - contest: z.boolean().optional(), - user: z.boolean().optional(), - team: z.boolean().optional(), - wonContest: z.boolean().optional() - }).strict() as unknown as z.ZodType; - -export const ContestantFindManySelectZodSchema__findManyContestant_schema = z.object({ - id: z.boolean().optional(), - resultValue: z.boolean().optional(), - contestId: z.boolean().optional(), - userId: z.boolean().optional(), - contest: z.boolean().optional(), - user: z.boolean().optional(), - team: z.boolean().optional(), - wonContest: z.boolean().optional() - }).strict(); - -export const ContestantFindManySchema: z.ZodType = z.object({ get select(){ return ContestantFindManySelectSchema__findManyContestant_schema.optional(); }, get include(){ return ContestantIncludeObjectSchema.optional(); }, orderBy: z.union([ContestantOrderByWithRelationInputObjectSchema, ContestantOrderByWithRelationInputObjectSchema.array()]).optional(), where: ContestantWhereInputObjectSchema.optional(), cursor: ContestantWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), distinct: z.union([ContestantScalarFieldEnumSchema, ContestantScalarFieldEnumSchema.array()]).optional() }).strict() as unknown as z.ZodType; - -export const ContestantFindManyZodSchema = z.object({ get select(){ return ContestantFindManySelectSchema__findManyContestant_schema.optional(); }, get include(){ return ContestantIncludeObjectSchema.optional(); }, orderBy: z.union([ContestantOrderByWithRelationInputObjectSchema, ContestantOrderByWithRelationInputObjectSchema.array()]).optional(), where: ContestantWhereInputObjectSchema.optional(), cursor: ContestantWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), distinct: z.union([ContestantScalarFieldEnumSchema, ContestantScalarFieldEnumSchema.array()]).optional() }).strict(); - -// File: countContestant.schema.ts - -export const ContestantCountSchema: z.ZodType = z.object({ orderBy: z.union([ContestantOrderByWithRelationInputObjectSchema, ContestantOrderByWithRelationInputObjectSchema.array()]).optional(), where: ContestantWhereInputObjectSchema.optional(), cursor: ContestantWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), select: z.union([ z.literal(true), ContestantCountAggregateInputObjectSchema ]).optional() }).strict() as unknown as z.ZodType; - -export const ContestantCountZodSchema = z.object({ orderBy: z.union([ContestantOrderByWithRelationInputObjectSchema, ContestantOrderByWithRelationInputObjectSchema.array()]).optional(), where: ContestantWhereInputObjectSchema.optional(), cursor: ContestantWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), select: z.union([ z.literal(true), ContestantCountAggregateInputObjectSchema ]).optional() }).strict(); - -// File: createOneContestant.schema.ts - -export const ContestantCreateOneSchema: z.ZodType = z.object({ get select(){ return ContestantSelectObjectSchema.optional(); }, get include(){ return ContestantIncludeObjectSchema.optional(); }, data: z.union([ContestantCreateInputObjectSchema, ContestantUncheckedCreateInputObjectSchema]) }).strict() as unknown as z.ZodType; - -export const ContestantCreateOneZodSchema = z.object({ get select(){ return ContestantSelectObjectSchema.optional(); }, get include(){ return ContestantIncludeObjectSchema.optional(); }, data: z.union([ContestantCreateInputObjectSchema, ContestantUncheckedCreateInputObjectSchema]) }).strict(); - -// File: createManyContestant.schema.ts - -export const ContestantCreateManySchema: z.ZodType = z.object({ data: z.union([ ContestantCreateManyInputObjectSchema, z.array(ContestantCreateManyInputObjectSchema) ]), skipDuplicates: z.boolean().optional() }).strict() as unknown as z.ZodType; - -export const ContestantCreateManyZodSchema = z.object({ data: z.union([ ContestantCreateManyInputObjectSchema, z.array(ContestantCreateManyInputObjectSchema) ]), skipDuplicates: z.boolean().optional() }).strict(); - -// File: createManyAndReturnContestant.schema.ts - -export const ContestantCreateManyAndReturnSchema: z.ZodType = z.object({ get select(){ return ContestantSelectObjectSchema.optional(); }, data: z.union([ ContestantCreateManyInputObjectSchema, z.array(ContestantCreateManyInputObjectSchema) ]), skipDuplicates: z.boolean().optional() }).strict() as unknown as z.ZodType; - -export const ContestantCreateManyAndReturnZodSchema = z.object({ get select(){ return ContestantSelectObjectSchema.optional(); }, data: z.union([ ContestantCreateManyInputObjectSchema, z.array(ContestantCreateManyInputObjectSchema) ]), skipDuplicates: z.boolean().optional() }).strict(); - -// File: deleteOneContestant.schema.ts - -export const ContestantDeleteOneSchema: z.ZodType = z.object({ get select(){ return ContestantSelectObjectSchema.optional(); }, get include(){ return ContestantIncludeObjectSchema.optional(); }, where: ContestantWhereUniqueInputObjectSchema }).strict() as unknown as z.ZodType; - -export const ContestantDeleteOneZodSchema = z.object({ get select(){ return ContestantSelectObjectSchema.optional(); }, get include(){ return ContestantIncludeObjectSchema.optional(); }, where: ContestantWhereUniqueInputObjectSchema }).strict(); - -// File: deleteManyContestant.schema.ts - -export const ContestantDeleteManySchema: z.ZodType = z.object({ where: ContestantWhereInputObjectSchema.optional() }).strict() as unknown as z.ZodType; - -export const ContestantDeleteManyZodSchema = z.object({ where: ContestantWhereInputObjectSchema.optional() }).strict(); - -// File: updateOneContestant.schema.ts - -export const ContestantUpdateOneSchema: z.ZodType = z.object({ get select(){ return ContestantSelectObjectSchema.optional(); }, get include(){ return ContestantIncludeObjectSchema.optional(); }, data: z.union([ContestantUpdateInputObjectSchema, ContestantUncheckedUpdateInputObjectSchema]), where: ContestantWhereUniqueInputObjectSchema }).strict() as unknown as z.ZodType; - -export const ContestantUpdateOneZodSchema = z.object({ get select(){ return ContestantSelectObjectSchema.optional(); }, get include(){ return ContestantIncludeObjectSchema.optional(); }, data: z.union([ContestantUpdateInputObjectSchema, ContestantUncheckedUpdateInputObjectSchema]), where: ContestantWhereUniqueInputObjectSchema }).strict(); - -// File: updateManyContestant.schema.ts - -export const ContestantUpdateManySchema: z.ZodType = z.object({ data: ContestantUpdateManyMutationInputObjectSchema, where: ContestantWhereInputObjectSchema.optional() }).strict() as unknown as z.ZodType; - -export const ContestantUpdateManyZodSchema = z.object({ data: ContestantUpdateManyMutationInputObjectSchema, where: ContestantWhereInputObjectSchema.optional() }).strict(); - -// File: updateManyAndReturnContestant.schema.ts - -export const ContestantUpdateManyAndReturnSchema: z.ZodType = z.object({ get select(){ return ContestantSelectObjectSchema.optional(); }, data: ContestantUpdateManyMutationInputObjectSchema, where: ContestantWhereInputObjectSchema.optional() }).strict() as unknown as z.ZodType; - -export const ContestantUpdateManyAndReturnZodSchema = z.object({ get select(){ return ContestantSelectObjectSchema.optional(); }, data: ContestantUpdateManyMutationInputObjectSchema, where: ContestantWhereInputObjectSchema.optional() }).strict(); - -// File: upsertOneContestant.schema.ts - -export const ContestantUpsertOneSchema: z.ZodType = z.object({ get select(){ return ContestantSelectObjectSchema.optional(); }, get include(){ return ContestantIncludeObjectSchema.optional(); }, where: ContestantWhereUniqueInputObjectSchema, create: z.union([ ContestantCreateInputObjectSchema, ContestantUncheckedCreateInputObjectSchema ]), update: z.union([ ContestantUpdateInputObjectSchema, ContestantUncheckedUpdateInputObjectSchema ]) }).strict() as unknown as z.ZodType; - -export const ContestantUpsertOneZodSchema = z.object({ get select(){ return ContestantSelectObjectSchema.optional(); }, get include(){ return ContestantIncludeObjectSchema.optional(); }, where: ContestantWhereUniqueInputObjectSchema, create: z.union([ ContestantCreateInputObjectSchema, ContestantUncheckedCreateInputObjectSchema ]), update: z.union([ ContestantUpdateInputObjectSchema, ContestantUncheckedUpdateInputObjectSchema ]) }).strict(); - -// File: aggregateContestant.schema.ts - -export const ContestantAggregateSchema: z.ZodType = z.object({ orderBy: z.union([ContestantOrderByWithRelationInputObjectSchema, ContestantOrderByWithRelationInputObjectSchema.array()]).optional(), where: ContestantWhereInputObjectSchema.optional(), cursor: ContestantWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), _count: z.union([ z.literal(true), ContestantCountAggregateInputObjectSchema ]).optional(), _min: ContestantMinAggregateInputObjectSchema.optional(), _max: ContestantMaxAggregateInputObjectSchema.optional(), _avg: ContestantAvgAggregateInputObjectSchema.optional(), _sum: ContestantSumAggregateInputObjectSchema.optional() }).strict() as unknown as z.ZodType; - -export const ContestantAggregateZodSchema = z.object({ orderBy: z.union([ContestantOrderByWithRelationInputObjectSchema, ContestantOrderByWithRelationInputObjectSchema.array()]).optional(), where: ContestantWhereInputObjectSchema.optional(), cursor: ContestantWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), _count: z.union([ z.literal(true), ContestantCountAggregateInputObjectSchema ]).optional(), _min: ContestantMinAggregateInputObjectSchema.optional(), _max: ContestantMaxAggregateInputObjectSchema.optional(), _avg: ContestantAvgAggregateInputObjectSchema.optional(), _sum: ContestantSumAggregateInputObjectSchema.optional() }).strict(); - -// File: groupByContestant.schema.ts - -export const ContestantGroupBySchema: z.ZodType = z.object({ where: ContestantWhereInputObjectSchema.optional(), orderBy: z.union([ContestantOrderByWithAggregationInputObjectSchema, ContestantOrderByWithAggregationInputObjectSchema.array()]).optional(), having: ContestantScalarWhereWithAggregatesInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), by: z.array(ContestantScalarFieldEnumSchema), _count: z.union([ z.literal(true), ContestantCountAggregateInputObjectSchema ]).optional(), _min: ContestantMinAggregateInputObjectSchema.optional(), _max: ContestantMaxAggregateInputObjectSchema.optional(), _avg: ContestantAvgAggregateInputObjectSchema.optional(), _sum: ContestantSumAggregateInputObjectSchema.optional() }).strict() as unknown as z.ZodType; - -export const ContestantGroupByZodSchema = z.object({ where: ContestantWhereInputObjectSchema.optional(), orderBy: z.union([ContestantOrderByWithAggregationInputObjectSchema, ContestantOrderByWithAggregationInputObjectSchema.array()]).optional(), having: ContestantScalarWhereWithAggregatesInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), by: z.array(ContestantScalarFieldEnumSchema), _count: z.union([ z.literal(true), ContestantCountAggregateInputObjectSchema ]).optional(), _min: ContestantMinAggregateInputObjectSchema.optional(), _max: ContestantMaxAggregateInputObjectSchema.optional(), _avg: ContestantAvgAggregateInputObjectSchema.optional(), _sum: ContestantSumAggregateInputObjectSchema.optional() }).strict(); - -// File: findUniqueContestTeam.schema.ts - -export const ContestTeamFindUniqueSchema: z.ZodType = z.object({ get select(){ return ContestTeamSelectObjectSchema.optional(); }, get include(){ return ContestTeamIncludeObjectSchema.optional(); }, where: ContestTeamWhereUniqueInputObjectSchema }).strict() as unknown as z.ZodType; - -export const ContestTeamFindUniqueZodSchema = z.object({ get select(){ return ContestTeamSelectObjectSchema.optional(); }, get include(){ return ContestTeamIncludeObjectSchema.optional(); }, where: ContestTeamWhereUniqueInputObjectSchema }).strict(); - -// File: findUniqueOrThrowContestTeam.schema.ts - -export const ContestTeamFindUniqueOrThrowSchema: z.ZodType = z.object({ get select(){ return ContestTeamSelectObjectSchema.optional(); }, get include(){ return ContestTeamIncludeObjectSchema.optional(); }, where: ContestTeamWhereUniqueInputObjectSchema }).strict() as unknown as z.ZodType; - -export const ContestTeamFindUniqueOrThrowZodSchema = z.object({ get select(){ return ContestTeamSelectObjectSchema.optional(); }, get include(){ return ContestTeamIncludeObjectSchema.optional(); }, where: ContestTeamWhereUniqueInputObjectSchema }).strict(); - -// File: findFirstContestTeam.schema.ts - -// Select schema needs to be in file to prevent circular imports -//------------------------------------------------------ - -export const ContestTeamFindFirstSelectSchema__findFirstContestTeam_schema: z.ZodType = z.object({ - id: z.boolean().optional(), - name: z.boolean().optional(), - contestantId: z.boolean().optional(), - contestant: z.boolean().optional(), - members: z.boolean().optional(), - _count: z.boolean().optional() - }).strict() as unknown as z.ZodType; - -export const ContestTeamFindFirstSelectZodSchema__findFirstContestTeam_schema = z.object({ - id: z.boolean().optional(), - name: z.boolean().optional(), - contestantId: z.boolean().optional(), - contestant: z.boolean().optional(), - members: z.boolean().optional(), - _count: z.boolean().optional() - }).strict(); - -export const ContestTeamFindFirstSchema: z.ZodType = z.object({ get select(){ return ContestTeamFindFirstSelectSchema__findFirstContestTeam_schema.optional(); }, get include(){ return ContestTeamIncludeObjectSchema.optional(); }, orderBy: z.union([ContestTeamOrderByWithRelationInputObjectSchema, ContestTeamOrderByWithRelationInputObjectSchema.array()]).optional(), where: ContestTeamWhereInputObjectSchema.optional(), cursor: ContestTeamWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), distinct: z.union([ContestTeamScalarFieldEnumSchema, ContestTeamScalarFieldEnumSchema.array()]).optional() }).strict() as unknown as z.ZodType; - -export const ContestTeamFindFirstZodSchema = z.object({ get select(){ return ContestTeamFindFirstSelectSchema__findFirstContestTeam_schema.optional(); }, get include(){ return ContestTeamIncludeObjectSchema.optional(); }, orderBy: z.union([ContestTeamOrderByWithRelationInputObjectSchema, ContestTeamOrderByWithRelationInputObjectSchema.array()]).optional(), where: ContestTeamWhereInputObjectSchema.optional(), cursor: ContestTeamWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), distinct: z.union([ContestTeamScalarFieldEnumSchema, ContestTeamScalarFieldEnumSchema.array()]).optional() }).strict(); - -// File: findFirstOrThrowContestTeam.schema.ts - -// Select schema needs to be in file to prevent circular imports -//------------------------------------------------------ - -export const ContestTeamFindFirstOrThrowSelectSchema__findFirstOrThrowContestTeam_schema: z.ZodType = z.object({ - id: z.boolean().optional(), - name: z.boolean().optional(), - contestantId: z.boolean().optional(), - contestant: z.boolean().optional(), - members: z.boolean().optional(), - _count: z.boolean().optional() - }).strict() as unknown as z.ZodType; - -export const ContestTeamFindFirstOrThrowSelectZodSchema__findFirstOrThrowContestTeam_schema = z.object({ - id: z.boolean().optional(), - name: z.boolean().optional(), - contestantId: z.boolean().optional(), - contestant: z.boolean().optional(), - members: z.boolean().optional(), - _count: z.boolean().optional() - }).strict(); - -export const ContestTeamFindFirstOrThrowSchema: z.ZodType = z.object({ get select(){ return ContestTeamFindFirstOrThrowSelectSchema__findFirstOrThrowContestTeam_schema.optional(); }, get include(){ return ContestTeamIncludeObjectSchema.optional(); }, orderBy: z.union([ContestTeamOrderByWithRelationInputObjectSchema, ContestTeamOrderByWithRelationInputObjectSchema.array()]).optional(), where: ContestTeamWhereInputObjectSchema.optional(), cursor: ContestTeamWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), distinct: z.union([ContestTeamScalarFieldEnumSchema, ContestTeamScalarFieldEnumSchema.array()]).optional() }).strict() as unknown as z.ZodType; - -export const ContestTeamFindFirstOrThrowZodSchema = z.object({ get select(){ return ContestTeamFindFirstOrThrowSelectSchema__findFirstOrThrowContestTeam_schema.optional(); }, get include(){ return ContestTeamIncludeObjectSchema.optional(); }, orderBy: z.union([ContestTeamOrderByWithRelationInputObjectSchema, ContestTeamOrderByWithRelationInputObjectSchema.array()]).optional(), where: ContestTeamWhereInputObjectSchema.optional(), cursor: ContestTeamWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), distinct: z.union([ContestTeamScalarFieldEnumSchema, ContestTeamScalarFieldEnumSchema.array()]).optional() }).strict(); - -// File: findManyContestTeam.schema.ts - -// Select schema needs to be in file to prevent circular imports -//------------------------------------------------------ - -export const ContestTeamFindManySelectSchema__findManyContestTeam_schema: z.ZodType = z.object({ - id: z.boolean().optional(), - name: z.boolean().optional(), - contestantId: z.boolean().optional(), - contestant: z.boolean().optional(), - members: z.boolean().optional(), - _count: z.boolean().optional() - }).strict() as unknown as z.ZodType; - -export const ContestTeamFindManySelectZodSchema__findManyContestTeam_schema = z.object({ - id: z.boolean().optional(), - name: z.boolean().optional(), - contestantId: z.boolean().optional(), - contestant: z.boolean().optional(), - members: z.boolean().optional(), - _count: z.boolean().optional() - }).strict(); - -export const ContestTeamFindManySchema: z.ZodType = z.object({ get select(){ return ContestTeamFindManySelectSchema__findManyContestTeam_schema.optional(); }, get include(){ return ContestTeamIncludeObjectSchema.optional(); }, orderBy: z.union([ContestTeamOrderByWithRelationInputObjectSchema, ContestTeamOrderByWithRelationInputObjectSchema.array()]).optional(), where: ContestTeamWhereInputObjectSchema.optional(), cursor: ContestTeamWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), distinct: z.union([ContestTeamScalarFieldEnumSchema, ContestTeamScalarFieldEnumSchema.array()]).optional() }).strict() as unknown as z.ZodType; - -export const ContestTeamFindManyZodSchema = z.object({ get select(){ return ContestTeamFindManySelectSchema__findManyContestTeam_schema.optional(); }, get include(){ return ContestTeamIncludeObjectSchema.optional(); }, orderBy: z.union([ContestTeamOrderByWithRelationInputObjectSchema, ContestTeamOrderByWithRelationInputObjectSchema.array()]).optional(), where: ContestTeamWhereInputObjectSchema.optional(), cursor: ContestTeamWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), distinct: z.union([ContestTeamScalarFieldEnumSchema, ContestTeamScalarFieldEnumSchema.array()]).optional() }).strict(); - -// File: countContestTeam.schema.ts - -export const ContestTeamCountSchema: z.ZodType = z.object({ orderBy: z.union([ContestTeamOrderByWithRelationInputObjectSchema, ContestTeamOrderByWithRelationInputObjectSchema.array()]).optional(), where: ContestTeamWhereInputObjectSchema.optional(), cursor: ContestTeamWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), select: z.union([ z.literal(true), ContestTeamCountAggregateInputObjectSchema ]).optional() }).strict() as unknown as z.ZodType; - -export const ContestTeamCountZodSchema = z.object({ orderBy: z.union([ContestTeamOrderByWithRelationInputObjectSchema, ContestTeamOrderByWithRelationInputObjectSchema.array()]).optional(), where: ContestTeamWhereInputObjectSchema.optional(), cursor: ContestTeamWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), select: z.union([ z.literal(true), ContestTeamCountAggregateInputObjectSchema ]).optional() }).strict(); - -// File: createOneContestTeam.schema.ts - -export const ContestTeamCreateOneSchema: z.ZodType = z.object({ get select(){ return ContestTeamSelectObjectSchema.optional(); }, get include(){ return ContestTeamIncludeObjectSchema.optional(); }, data: z.union([ContestTeamCreateInputObjectSchema, ContestTeamUncheckedCreateInputObjectSchema]) }).strict() as unknown as z.ZodType; - -export const ContestTeamCreateOneZodSchema = z.object({ get select(){ return ContestTeamSelectObjectSchema.optional(); }, get include(){ return ContestTeamIncludeObjectSchema.optional(); }, data: z.union([ContestTeamCreateInputObjectSchema, ContestTeamUncheckedCreateInputObjectSchema]) }).strict(); - -// File: createManyContestTeam.schema.ts - -export const ContestTeamCreateManySchema: z.ZodType = z.object({ data: z.union([ ContestTeamCreateManyInputObjectSchema, z.array(ContestTeamCreateManyInputObjectSchema) ]), skipDuplicates: z.boolean().optional() }).strict() as unknown as z.ZodType; - -export const ContestTeamCreateManyZodSchema = z.object({ data: z.union([ ContestTeamCreateManyInputObjectSchema, z.array(ContestTeamCreateManyInputObjectSchema) ]), skipDuplicates: z.boolean().optional() }).strict(); - -// File: createManyAndReturnContestTeam.schema.ts - -export const ContestTeamCreateManyAndReturnSchema: z.ZodType = z.object({ get select(){ return ContestTeamSelectObjectSchema.optional(); }, data: z.union([ ContestTeamCreateManyInputObjectSchema, z.array(ContestTeamCreateManyInputObjectSchema) ]), skipDuplicates: z.boolean().optional() }).strict() as unknown as z.ZodType; - -export const ContestTeamCreateManyAndReturnZodSchema = z.object({ get select(){ return ContestTeamSelectObjectSchema.optional(); }, data: z.union([ ContestTeamCreateManyInputObjectSchema, z.array(ContestTeamCreateManyInputObjectSchema) ]), skipDuplicates: z.boolean().optional() }).strict(); - -// File: deleteOneContestTeam.schema.ts - -export const ContestTeamDeleteOneSchema: z.ZodType = z.object({ get select(){ return ContestTeamSelectObjectSchema.optional(); }, get include(){ return ContestTeamIncludeObjectSchema.optional(); }, where: ContestTeamWhereUniqueInputObjectSchema }).strict() as unknown as z.ZodType; - -export const ContestTeamDeleteOneZodSchema = z.object({ get select(){ return ContestTeamSelectObjectSchema.optional(); }, get include(){ return ContestTeamIncludeObjectSchema.optional(); }, where: ContestTeamWhereUniqueInputObjectSchema }).strict(); - -// File: deleteManyContestTeam.schema.ts - -export const ContestTeamDeleteManySchema: z.ZodType = z.object({ where: ContestTeamWhereInputObjectSchema.optional() }).strict() as unknown as z.ZodType; - -export const ContestTeamDeleteManyZodSchema = z.object({ where: ContestTeamWhereInputObjectSchema.optional() }).strict(); - -// File: updateOneContestTeam.schema.ts - -export const ContestTeamUpdateOneSchema: z.ZodType = z.object({ get select(){ return ContestTeamSelectObjectSchema.optional(); }, get include(){ return ContestTeamIncludeObjectSchema.optional(); }, data: z.union([ContestTeamUpdateInputObjectSchema, ContestTeamUncheckedUpdateInputObjectSchema]), where: ContestTeamWhereUniqueInputObjectSchema }).strict() as unknown as z.ZodType; - -export const ContestTeamUpdateOneZodSchema = z.object({ get select(){ return ContestTeamSelectObjectSchema.optional(); }, get include(){ return ContestTeamIncludeObjectSchema.optional(); }, data: z.union([ContestTeamUpdateInputObjectSchema, ContestTeamUncheckedUpdateInputObjectSchema]), where: ContestTeamWhereUniqueInputObjectSchema }).strict(); - -// File: updateManyContestTeam.schema.ts - -export const ContestTeamUpdateManySchema: z.ZodType = z.object({ data: ContestTeamUpdateManyMutationInputObjectSchema, where: ContestTeamWhereInputObjectSchema.optional() }).strict() as unknown as z.ZodType; - -export const ContestTeamUpdateManyZodSchema = z.object({ data: ContestTeamUpdateManyMutationInputObjectSchema, where: ContestTeamWhereInputObjectSchema.optional() }).strict(); - -// File: updateManyAndReturnContestTeam.schema.ts - -export const ContestTeamUpdateManyAndReturnSchema: z.ZodType = z.object({ get select(){ return ContestTeamSelectObjectSchema.optional(); }, data: ContestTeamUpdateManyMutationInputObjectSchema, where: ContestTeamWhereInputObjectSchema.optional() }).strict() as unknown as z.ZodType; - -export const ContestTeamUpdateManyAndReturnZodSchema = z.object({ get select(){ return ContestTeamSelectObjectSchema.optional(); }, data: ContestTeamUpdateManyMutationInputObjectSchema, where: ContestTeamWhereInputObjectSchema.optional() }).strict(); - -// File: upsertOneContestTeam.schema.ts - -export const ContestTeamUpsertOneSchema: z.ZodType = z.object({ get select(){ return ContestTeamSelectObjectSchema.optional(); }, get include(){ return ContestTeamIncludeObjectSchema.optional(); }, where: ContestTeamWhereUniqueInputObjectSchema, create: z.union([ ContestTeamCreateInputObjectSchema, ContestTeamUncheckedCreateInputObjectSchema ]), update: z.union([ ContestTeamUpdateInputObjectSchema, ContestTeamUncheckedUpdateInputObjectSchema ]) }).strict() as unknown as z.ZodType; - -export const ContestTeamUpsertOneZodSchema = z.object({ get select(){ return ContestTeamSelectObjectSchema.optional(); }, get include(){ return ContestTeamIncludeObjectSchema.optional(); }, where: ContestTeamWhereUniqueInputObjectSchema, create: z.union([ ContestTeamCreateInputObjectSchema, ContestTeamUncheckedCreateInputObjectSchema ]), update: z.union([ ContestTeamUpdateInputObjectSchema, ContestTeamUncheckedUpdateInputObjectSchema ]) }).strict(); - -// File: aggregateContestTeam.schema.ts - -export const ContestTeamAggregateSchema: z.ZodType = z.object({ orderBy: z.union([ContestTeamOrderByWithRelationInputObjectSchema, ContestTeamOrderByWithRelationInputObjectSchema.array()]).optional(), where: ContestTeamWhereInputObjectSchema.optional(), cursor: ContestTeamWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), _count: z.union([ z.literal(true), ContestTeamCountAggregateInputObjectSchema ]).optional(), _min: ContestTeamMinAggregateInputObjectSchema.optional(), _max: ContestTeamMaxAggregateInputObjectSchema.optional() }).strict() as unknown as z.ZodType; - -export const ContestTeamAggregateZodSchema = z.object({ orderBy: z.union([ContestTeamOrderByWithRelationInputObjectSchema, ContestTeamOrderByWithRelationInputObjectSchema.array()]).optional(), where: ContestTeamWhereInputObjectSchema.optional(), cursor: ContestTeamWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), _count: z.union([ z.literal(true), ContestTeamCountAggregateInputObjectSchema ]).optional(), _min: ContestTeamMinAggregateInputObjectSchema.optional(), _max: ContestTeamMaxAggregateInputObjectSchema.optional() }).strict(); - -// File: groupByContestTeam.schema.ts - -export const ContestTeamGroupBySchema: z.ZodType = z.object({ where: ContestTeamWhereInputObjectSchema.optional(), orderBy: z.union([ContestTeamOrderByWithAggregationInputObjectSchema, ContestTeamOrderByWithAggregationInputObjectSchema.array()]).optional(), having: ContestTeamScalarWhereWithAggregatesInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), by: z.array(ContestTeamScalarFieldEnumSchema), _count: z.union([ z.literal(true), ContestTeamCountAggregateInputObjectSchema ]).optional(), _min: ContestTeamMinAggregateInputObjectSchema.optional(), _max: ContestTeamMaxAggregateInputObjectSchema.optional() }).strict() as unknown as z.ZodType; - -export const ContestTeamGroupByZodSchema = z.object({ where: ContestTeamWhereInputObjectSchema.optional(), orderBy: z.union([ContestTeamOrderByWithAggregationInputObjectSchema, ContestTeamOrderByWithAggregationInputObjectSchema.array()]).optional(), having: ContestTeamScalarWhereWithAggregatesInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), by: z.array(ContestTeamScalarFieldEnumSchema), _count: z.union([ z.literal(true), ContestTeamCountAggregateInputObjectSchema ]).optional(), _min: ContestTeamMinAggregateInputObjectSchema.optional(), _max: ContestTeamMaxAggregateInputObjectSchema.optional() }).strict(); - -// File: MembershipFindUniqueResult.schema.ts -export const MembershipFindUniqueResultSchema = z.nullable(z.object({ - id: z.string(), - type: z.unknown(), - specialization: z.unknown().optional(), - start: z.date(), - end: z.date().optional(), - semester: z.number().int().optional(), - userId: z.string(), - user: z.unknown() -})); - -// File: MembershipFindFirstResult.schema.ts -export const MembershipFindFirstResultSchema = z.nullable(z.object({ - id: z.string(), - type: z.unknown(), - specialization: z.unknown().optional(), - start: z.date(), - end: z.date().optional(), - semester: z.number().int().optional(), - userId: z.string(), - user: z.unknown() -})); - -// File: MembershipFindManyResult.schema.ts -export const MembershipFindManyResultSchema = z.object({ - data: z.array(z.object({ - id: z.string(), - type: z.unknown(), - specialization: z.unknown().optional(), - start: z.date(), - end: z.date().optional(), - semester: z.number().int().optional(), - userId: z.string(), - user: z.unknown() -})), - pagination: z.object({ - page: z.number().int().min(1), - pageSize: z.number().int().min(1), - total: z.number().int().min(0), - totalPages: z.number().int().min(0), - hasNext: z.boolean(), - hasPrev: z.boolean() -}) -}); - -// File: MembershipCreateResult.schema.ts -export const MembershipCreateResultSchema = z.object({ - id: z.string(), - type: z.unknown(), - specialization: z.unknown().optional(), - start: z.date(), - end: z.date().optional(), - semester: z.number().int().optional(), - userId: z.string(), - user: z.unknown() -}); - -// File: MembershipCreateManyResult.schema.ts -export const MembershipCreateManyResultSchema = z.object({ - count: z.number() -}); - -// File: MembershipUpdateResult.schema.ts -export const MembershipUpdateResultSchema = z.nullable(z.object({ - id: z.string(), - type: z.unknown(), - specialization: z.unknown().optional(), - start: z.date(), - end: z.date().optional(), - semester: z.number().int().optional(), - userId: z.string(), - user: z.unknown() -})); - -// File: MembershipUpdateManyResult.schema.ts -export const MembershipUpdateManyResultSchema = z.object({ - count: z.number() -}); - -// File: MembershipUpsertResult.schema.ts -export const MembershipUpsertResultSchema = z.object({ - id: z.string(), - type: z.unknown(), - specialization: z.unknown().optional(), - start: z.date(), - end: z.date().optional(), - semester: z.number().int().optional(), - userId: z.string(), - user: z.unknown() -}); - -// File: MembershipDeleteResult.schema.ts -export const MembershipDeleteResultSchema = z.nullable(z.object({ - id: z.string(), - type: z.unknown(), - specialization: z.unknown().optional(), - start: z.date(), - end: z.date().optional(), - semester: z.number().int().optional(), - userId: z.string(), - user: z.unknown() -})); - -// File: MembershipDeleteManyResult.schema.ts -export const MembershipDeleteManyResultSchema = z.object({ - count: z.number() -}); - -// File: MembershipAggregateResult.schema.ts -export const MembershipAggregateResultSchema = z.object({ _count: z.object({ - id: z.number(), - type: z.number(), - specialization: z.number(), - start: z.number(), - end: z.number(), - semester: z.number(), - userId: z.number(), - user: z.number() - }).optional(), - _sum: z.object({ - semester: z.number().nullable() - }).nullable().optional(), - _avg: z.object({ - semester: z.number().nullable() - }).nullable().optional(), - _min: z.object({ - id: z.string().nullable(), - start: z.date().nullable(), - end: z.date().nullable(), - semester: z.number().int().nullable(), - userId: z.string().nullable() - }).nullable().optional(), - _max: z.object({ - id: z.string().nullable(), - start: z.date().nullable(), - end: z.date().nullable(), - semester: z.number().int().nullable(), - userId: z.string().nullable() - }).nullable().optional()}); - -// File: MembershipGroupByResult.schema.ts -export const MembershipGroupByResultSchema = z.array(z.object({ - id: z.string(), - start: z.date(), - end: z.date(), - semester: z.number().int(), - userId: z.string(), - _count: z.object({ - id: z.number(), - type: z.number(), - specialization: z.number(), - start: z.number(), - end: z.number(), - semester: z.number(), - userId: z.number(), - user: z.number() - }).optional(), - _sum: z.object({ - semester: z.number().nullable() - }).nullable().optional(), - _avg: z.object({ - semester: z.number().nullable() - }).nullable().optional(), - _min: z.object({ - id: z.string().nullable(), - start: z.date().nullable(), - end: z.date().nullable(), - semester: z.number().int().nullable(), - userId: z.string().nullable() - }).nullable().optional(), - _max: z.object({ - id: z.string().nullable(), - start: z.date().nullable(), - end: z.date().nullable(), - semester: z.number().int().nullable(), - userId: z.string().nullable() - }).nullable().optional() -})); - -// File: MembershipCountResult.schema.ts -export const MembershipCountResultSchema = z.number(); - -// File: UserFindUniqueResult.schema.ts -export const UserFindUniqueResultSchema = z.nullable(z.object({ - id: z.string(), - username: z.string(), - name: z.string().optional(), - email: z.string().optional(), - imageUrl: z.string().optional(), - biography: z.string().optional(), - phone: z.string().optional(), - gender: z.unknown(), - dietaryRestrictions: z.string().optional(), - ntnuUsername: z.string().optional(), - flags: z.array(z.string()), - workspaceUserId: z.string().optional(), - createdAt: z.date(), - updatedAt: z.date(), - privacyPermissionsId: z.string().optional(), - privacyPermissions: z.unknown().optional(), - notificationPermissionsId: z.string().optional(), - notificationPermissions: z.unknown().optional(), - attendee: z.array(z.unknown()), - personalMark: z.array(z.unknown()), - groupMemberships: z.array(z.unknown()), - memberships: z.array(z.unknown()), - givenMarks: z.array(z.unknown()), - attendeesRefunded: z.array(z.unknown()), - auditLogs: z.array(z.unknown()), - deregisterReasons: z.array(z.unknown()), - notificationsReceived: z.array(z.unknown()), - notificationsCreated: z.array(z.unknown()), - notificationsUpdated: z.array(z.unknown()), - contestants: z.array(z.unknown()), - contestTeams: z.array(z.unknown()) -})); - -// File: UserFindFirstResult.schema.ts -export const UserFindFirstResultSchema = z.nullable(z.object({ - id: z.string(), - username: z.string(), - name: z.string().optional(), - email: z.string().optional(), - imageUrl: z.string().optional(), - biography: z.string().optional(), - phone: z.string().optional(), - gender: z.unknown(), - dietaryRestrictions: z.string().optional(), - ntnuUsername: z.string().optional(), - flags: z.array(z.string()), - workspaceUserId: z.string().optional(), - createdAt: z.date(), - updatedAt: z.date(), - privacyPermissionsId: z.string().optional(), - privacyPermissions: z.unknown().optional(), - notificationPermissionsId: z.string().optional(), - notificationPermissions: z.unknown().optional(), - attendee: z.array(z.unknown()), - personalMark: z.array(z.unknown()), - groupMemberships: z.array(z.unknown()), - memberships: z.array(z.unknown()), - givenMarks: z.array(z.unknown()), - attendeesRefunded: z.array(z.unknown()), - auditLogs: z.array(z.unknown()), - deregisterReasons: z.array(z.unknown()), - notificationsReceived: z.array(z.unknown()), - notificationsCreated: z.array(z.unknown()), - notificationsUpdated: z.array(z.unknown()), - contestants: z.array(z.unknown()), - contestTeams: z.array(z.unknown()) -})); - -// File: UserFindManyResult.schema.ts -export const UserFindManyResultSchema = z.object({ - data: z.array(z.object({ - id: z.string(), - username: z.string(), - name: z.string().optional(), - email: z.string().optional(), - imageUrl: z.string().optional(), - biography: z.string().optional(), - phone: z.string().optional(), - gender: z.unknown(), - dietaryRestrictions: z.string().optional(), - ntnuUsername: z.string().optional(), - flags: z.array(z.string()), - workspaceUserId: z.string().optional(), - createdAt: z.date(), - updatedAt: z.date(), - privacyPermissionsId: z.string().optional(), - privacyPermissions: z.unknown().optional(), - notificationPermissionsId: z.string().optional(), - notificationPermissions: z.unknown().optional(), - attendee: z.array(z.unknown()), - personalMark: z.array(z.unknown()), - groupMemberships: z.array(z.unknown()), - memberships: z.array(z.unknown()), - givenMarks: z.array(z.unknown()), - attendeesRefunded: z.array(z.unknown()), - auditLogs: z.array(z.unknown()), - deregisterReasons: z.array(z.unknown()), - notificationsReceived: z.array(z.unknown()), - notificationsCreated: z.array(z.unknown()), - notificationsUpdated: z.array(z.unknown()), - contestants: z.array(z.unknown()), - contestTeams: z.array(z.unknown()) -})), - pagination: z.object({ - page: z.number().int().min(1), - pageSize: z.number().int().min(1), - total: z.number().int().min(0), - totalPages: z.number().int().min(0), - hasNext: z.boolean(), - hasPrev: z.boolean() -}) -}); - -// File: UserCreateResult.schema.ts -export const UserCreateResultSchema = z.object({ - id: z.string(), - username: z.string(), - name: z.string().optional(), - email: z.string().optional(), - imageUrl: z.string().optional(), - biography: z.string().optional(), - phone: z.string().optional(), - gender: z.unknown(), - dietaryRestrictions: z.string().optional(), - ntnuUsername: z.string().optional(), - flags: z.array(z.string()), - workspaceUserId: z.string().optional(), - createdAt: z.date(), - updatedAt: z.date(), - privacyPermissionsId: z.string().optional(), - privacyPermissions: z.unknown().optional(), - notificationPermissionsId: z.string().optional(), - notificationPermissions: z.unknown().optional(), - attendee: z.array(z.unknown()), - personalMark: z.array(z.unknown()), - groupMemberships: z.array(z.unknown()), - memberships: z.array(z.unknown()), - givenMarks: z.array(z.unknown()), - attendeesRefunded: z.array(z.unknown()), - auditLogs: z.array(z.unknown()), - deregisterReasons: z.array(z.unknown()), - notificationsReceived: z.array(z.unknown()), - notificationsCreated: z.array(z.unknown()), - notificationsUpdated: z.array(z.unknown()), - contestants: z.array(z.unknown()), - contestTeams: z.array(z.unknown()) -}); - -// File: UserCreateManyResult.schema.ts -export const UserCreateManyResultSchema = z.object({ - count: z.number() -}); - -// File: UserUpdateResult.schema.ts -export const UserUpdateResultSchema = z.nullable(z.object({ - id: z.string(), - username: z.string(), - name: z.string().optional(), - email: z.string().optional(), - imageUrl: z.string().optional(), - biography: z.string().optional(), - phone: z.string().optional(), - gender: z.unknown(), - dietaryRestrictions: z.string().optional(), - ntnuUsername: z.string().optional(), - flags: z.array(z.string()), - workspaceUserId: z.string().optional(), - createdAt: z.date(), - updatedAt: z.date(), - privacyPermissionsId: z.string().optional(), - privacyPermissions: z.unknown().optional(), - notificationPermissionsId: z.string().optional(), - notificationPermissions: z.unknown().optional(), - attendee: z.array(z.unknown()), - personalMark: z.array(z.unknown()), - groupMemberships: z.array(z.unknown()), - memberships: z.array(z.unknown()), - givenMarks: z.array(z.unknown()), - attendeesRefunded: z.array(z.unknown()), - auditLogs: z.array(z.unknown()), - deregisterReasons: z.array(z.unknown()), - notificationsReceived: z.array(z.unknown()), - notificationsCreated: z.array(z.unknown()), - notificationsUpdated: z.array(z.unknown()), - contestants: z.array(z.unknown()), - contestTeams: z.array(z.unknown()) -})); - -// File: UserUpdateManyResult.schema.ts -export const UserUpdateManyResultSchema = z.object({ - count: z.number() -}); - -// File: UserUpsertResult.schema.ts -export const UserUpsertResultSchema = z.object({ - id: z.string(), - username: z.string(), - name: z.string().optional(), - email: z.string().optional(), - imageUrl: z.string().optional(), - biography: z.string().optional(), - phone: z.string().optional(), - gender: z.unknown(), - dietaryRestrictions: z.string().optional(), - ntnuUsername: z.string().optional(), - flags: z.array(z.string()), - workspaceUserId: z.string().optional(), - createdAt: z.date(), - updatedAt: z.date(), - privacyPermissionsId: z.string().optional(), - privacyPermissions: z.unknown().optional(), - notificationPermissionsId: z.string().optional(), - notificationPermissions: z.unknown().optional(), - attendee: z.array(z.unknown()), - personalMark: z.array(z.unknown()), - groupMemberships: z.array(z.unknown()), - memberships: z.array(z.unknown()), - givenMarks: z.array(z.unknown()), - attendeesRefunded: z.array(z.unknown()), - auditLogs: z.array(z.unknown()), - deregisterReasons: z.array(z.unknown()), - notificationsReceived: z.array(z.unknown()), - notificationsCreated: z.array(z.unknown()), - notificationsUpdated: z.array(z.unknown()), - contestants: z.array(z.unknown()), - contestTeams: z.array(z.unknown()) -}); - -// File: UserDeleteResult.schema.ts -export const UserDeleteResultSchema = z.nullable(z.object({ - id: z.string(), - username: z.string(), - name: z.string().optional(), - email: z.string().optional(), - imageUrl: z.string().optional(), - biography: z.string().optional(), - phone: z.string().optional(), - gender: z.unknown(), - dietaryRestrictions: z.string().optional(), - ntnuUsername: z.string().optional(), - flags: z.array(z.string()), - workspaceUserId: z.string().optional(), - createdAt: z.date(), - updatedAt: z.date(), - privacyPermissionsId: z.string().optional(), - privacyPermissions: z.unknown().optional(), - notificationPermissionsId: z.string().optional(), - notificationPermissions: z.unknown().optional(), - attendee: z.array(z.unknown()), - personalMark: z.array(z.unknown()), - groupMemberships: z.array(z.unknown()), - memberships: z.array(z.unknown()), - givenMarks: z.array(z.unknown()), - attendeesRefunded: z.array(z.unknown()), - auditLogs: z.array(z.unknown()), - deregisterReasons: z.array(z.unknown()), - notificationsReceived: z.array(z.unknown()), - notificationsCreated: z.array(z.unknown()), - notificationsUpdated: z.array(z.unknown()), - contestants: z.array(z.unknown()), - contestTeams: z.array(z.unknown()) -})); - -// File: UserDeleteManyResult.schema.ts -export const UserDeleteManyResultSchema = z.object({ - count: z.number() -}); - -// File: UserAggregateResult.schema.ts -export const UserAggregateResultSchema = z.object({ _count: z.object({ - id: z.number(), - username: z.number(), - name: z.number(), - email: z.number(), - imageUrl: z.number(), - biography: z.number(), - phone: z.number(), - gender: z.number(), - dietaryRestrictions: z.number(), - ntnuUsername: z.number(), - flags: z.number(), - workspaceUserId: z.number(), - createdAt: z.number(), - updatedAt: z.number(), - privacyPermissionsId: z.number(), - privacyPermissions: z.number(), - notificationPermissionsId: z.number(), - notificationPermissions: z.number(), - attendee: z.number(), - personalMark: z.number(), - groupMemberships: z.number(), - memberships: z.number(), - givenMarks: z.number(), - attendeesRefunded: z.number(), - auditLogs: z.number(), - deregisterReasons: z.number(), - notificationsReceived: z.number(), - notificationsCreated: z.number(), - notificationsUpdated: z.number(), - contestants: z.number(), - contestTeams: z.number() - }).optional(), - _min: z.object({ - id: z.string().nullable(), - username: z.string().nullable(), - name: z.string().nullable(), - email: z.string().nullable(), - imageUrl: z.string().nullable(), - biography: z.string().nullable(), - phone: z.string().nullable(), - dietaryRestrictions: z.string().nullable(), - ntnuUsername: z.string().nullable(), - flags: z.array(z.string()).nullable(), - workspaceUserId: z.string().nullable(), - createdAt: z.date().nullable(), - updatedAt: z.date().nullable(), - privacyPermissionsId: z.string().nullable(), - notificationPermissionsId: z.string().nullable() - }).nullable().optional(), - _max: z.object({ - id: z.string().nullable(), - username: z.string().nullable(), - name: z.string().nullable(), - email: z.string().nullable(), - imageUrl: z.string().nullable(), - biography: z.string().nullable(), - phone: z.string().nullable(), - dietaryRestrictions: z.string().nullable(), - ntnuUsername: z.string().nullable(), - flags: z.array(z.string()).nullable(), - workspaceUserId: z.string().nullable(), - createdAt: z.date().nullable(), - updatedAt: z.date().nullable(), - privacyPermissionsId: z.string().nullable(), - notificationPermissionsId: z.string().nullable() - }).nullable().optional()}); - -// File: UserGroupByResult.schema.ts -export const UserGroupByResultSchema = z.array(z.object({ - id: z.string(), - username: z.string(), - name: z.string(), - email: z.string(), - imageUrl: z.string(), - biography: z.string(), - phone: z.string(), - dietaryRestrictions: z.string(), - ntnuUsername: z.string(), - flags: z.array(z.string()), - workspaceUserId: z.string(), - createdAt: z.date(), - updatedAt: z.date(), - privacyPermissionsId: z.string(), - notificationPermissionsId: z.string(), - _count: z.object({ - id: z.number(), - username: z.number(), - name: z.number(), - email: z.number(), - imageUrl: z.number(), - biography: z.number(), - phone: z.number(), - gender: z.number(), - dietaryRestrictions: z.number(), - ntnuUsername: z.number(), - flags: z.number(), - workspaceUserId: z.number(), - createdAt: z.number(), - updatedAt: z.number(), - privacyPermissionsId: z.number(), - privacyPermissions: z.number(), - notificationPermissionsId: z.number(), - notificationPermissions: z.number(), - attendee: z.number(), - personalMark: z.number(), - groupMemberships: z.number(), - memberships: z.number(), - givenMarks: z.number(), - attendeesRefunded: z.number(), - auditLogs: z.number(), - deregisterReasons: z.number(), - notificationsReceived: z.number(), - notificationsCreated: z.number(), - notificationsUpdated: z.number(), - contestants: z.number(), - contestTeams: z.number() - }).optional(), - _min: z.object({ - id: z.string().nullable(), - username: z.string().nullable(), - name: z.string().nullable(), - email: z.string().nullable(), - imageUrl: z.string().nullable(), - biography: z.string().nullable(), - phone: z.string().nullable(), - dietaryRestrictions: z.string().nullable(), - ntnuUsername: z.string().nullable(), - flags: z.array(z.string()).nullable(), - workspaceUserId: z.string().nullable(), - createdAt: z.date().nullable(), - updatedAt: z.date().nullable(), - privacyPermissionsId: z.string().nullable(), - notificationPermissionsId: z.string().nullable() - }).nullable().optional(), - _max: z.object({ - id: z.string().nullable(), - username: z.string().nullable(), - name: z.string().nullable(), - email: z.string().nullable(), - imageUrl: z.string().nullable(), - biography: z.string().nullable(), - phone: z.string().nullable(), - dietaryRestrictions: z.string().nullable(), - ntnuUsername: z.string().nullable(), - flags: z.array(z.string()).nullable(), - workspaceUserId: z.string().nullable(), - createdAt: z.date().nullable(), - updatedAt: z.date().nullable(), - privacyPermissionsId: z.string().nullable(), - notificationPermissionsId: z.string().nullable() - }).nullable().optional() -})); - -// File: UserCountResult.schema.ts -export const UserCountResultSchema = z.number(); - -// File: CompanyFindUniqueResult.schema.ts -export const CompanyFindUniqueResultSchema = z.nullable(z.object({ - id: z.string(), - name: z.string(), - slug: z.string(), - description: z.string().optional(), - phone: z.string().optional(), - email: z.string().optional(), - website: z.string(), - location: z.string().optional(), - imageUrl: z.string().optional(), - createdAt: z.date(), - updatedAt: z.date(), - events: z.array(z.unknown()), - JobListing: z.array(z.unknown()) -})); - -// File: CompanyFindFirstResult.schema.ts -export const CompanyFindFirstResultSchema = z.nullable(z.object({ - id: z.string(), - name: z.string(), - slug: z.string(), - description: z.string().optional(), - phone: z.string().optional(), - email: z.string().optional(), - website: z.string(), - location: z.string().optional(), - imageUrl: z.string().optional(), - createdAt: z.date(), - updatedAt: z.date(), - events: z.array(z.unknown()), - JobListing: z.array(z.unknown()) -})); - -// File: CompanyFindManyResult.schema.ts -export const CompanyFindManyResultSchema = z.object({ - data: z.array(z.object({ - id: z.string(), - name: z.string(), - slug: z.string(), - description: z.string().optional(), - phone: z.string().optional(), - email: z.string().optional(), - website: z.string(), - location: z.string().optional(), - imageUrl: z.string().optional(), - createdAt: z.date(), - updatedAt: z.date(), - events: z.array(z.unknown()), - JobListing: z.array(z.unknown()) -})), - pagination: z.object({ - page: z.number().int().min(1), - pageSize: z.number().int().min(1), - total: z.number().int().min(0), - totalPages: z.number().int().min(0), - hasNext: z.boolean(), - hasPrev: z.boolean() -}) -}); - -// File: CompanyCreateResult.schema.ts -export const CompanyCreateResultSchema = z.object({ - id: z.string(), - name: z.string(), - slug: z.string(), - description: z.string().optional(), - phone: z.string().optional(), - email: z.string().optional(), - website: z.string(), - location: z.string().optional(), - imageUrl: z.string().optional(), - createdAt: z.date(), - updatedAt: z.date(), - events: z.array(z.unknown()), - JobListing: z.array(z.unknown()) -}); - -// File: CompanyCreateManyResult.schema.ts -export const CompanyCreateManyResultSchema = z.object({ - count: z.number() -}); - -// File: CompanyUpdateResult.schema.ts -export const CompanyUpdateResultSchema = z.nullable(z.object({ - id: z.string(), - name: z.string(), - slug: z.string(), - description: z.string().optional(), - phone: z.string().optional(), - email: z.string().optional(), - website: z.string(), - location: z.string().optional(), - imageUrl: z.string().optional(), - createdAt: z.date(), - updatedAt: z.date(), - events: z.array(z.unknown()), - JobListing: z.array(z.unknown()) -})); - -// File: CompanyUpdateManyResult.schema.ts -export const CompanyUpdateManyResultSchema = z.object({ - count: z.number() -}); - -// File: CompanyUpsertResult.schema.ts -export const CompanyUpsertResultSchema = z.object({ - id: z.string(), - name: z.string(), - slug: z.string(), - description: z.string().optional(), - phone: z.string().optional(), - email: z.string().optional(), - website: z.string(), - location: z.string().optional(), - imageUrl: z.string().optional(), - createdAt: z.date(), - updatedAt: z.date(), - events: z.array(z.unknown()), - JobListing: z.array(z.unknown()) -}); - -// File: CompanyDeleteResult.schema.ts -export const CompanyDeleteResultSchema = z.nullable(z.object({ - id: z.string(), - name: z.string(), - slug: z.string(), - description: z.string().optional(), - phone: z.string().optional(), - email: z.string().optional(), - website: z.string(), - location: z.string().optional(), - imageUrl: z.string().optional(), - createdAt: z.date(), - updatedAt: z.date(), - events: z.array(z.unknown()), - JobListing: z.array(z.unknown()) -})); - -// File: CompanyDeleteManyResult.schema.ts -export const CompanyDeleteManyResultSchema = z.object({ - count: z.number() -}); - -// File: CompanyAggregateResult.schema.ts -export const CompanyAggregateResultSchema = z.object({ _count: z.object({ - id: z.number(), - name: z.number(), - slug: z.number(), - description: z.number(), - phone: z.number(), - email: z.number(), - website: z.number(), - location: z.number(), - imageUrl: z.number(), - createdAt: z.number(), - updatedAt: z.number(), - events: z.number(), - JobListing: z.number() - }).optional(), - _min: z.object({ - id: z.string().nullable(), - name: z.string().nullable(), - slug: z.string().nullable(), - description: z.string().nullable(), - phone: z.string().nullable(), - email: z.string().nullable(), - website: z.string().nullable(), - location: z.string().nullable(), - imageUrl: z.string().nullable(), - createdAt: z.date().nullable(), - updatedAt: z.date().nullable() - }).nullable().optional(), - _max: z.object({ - id: z.string().nullable(), - name: z.string().nullable(), - slug: z.string().nullable(), - description: z.string().nullable(), - phone: z.string().nullable(), - email: z.string().nullable(), - website: z.string().nullable(), - location: z.string().nullable(), - imageUrl: z.string().nullable(), - createdAt: z.date().nullable(), - updatedAt: z.date().nullable() - }).nullable().optional()}); - -// File: CompanyGroupByResult.schema.ts -export const CompanyGroupByResultSchema = z.array(z.object({ - id: z.string(), - name: z.string(), - slug: z.string(), - description: z.string(), - phone: z.string(), - email: z.string(), - website: z.string(), - location: z.string(), - imageUrl: z.string(), - createdAt: z.date(), - updatedAt: z.date(), - _count: z.object({ - id: z.number(), - name: z.number(), - slug: z.number(), - description: z.number(), - phone: z.number(), - email: z.number(), - website: z.number(), - location: z.number(), - imageUrl: z.number(), - createdAt: z.number(), - updatedAt: z.number(), - events: z.number(), - JobListing: z.number() - }).optional(), - _min: z.object({ - id: z.string().nullable(), - name: z.string().nullable(), - slug: z.string().nullable(), - description: z.string().nullable(), - phone: z.string().nullable(), - email: z.string().nullable(), - website: z.string().nullable(), - location: z.string().nullable(), - imageUrl: z.string().nullable(), - createdAt: z.date().nullable(), - updatedAt: z.date().nullable() - }).nullable().optional(), - _max: z.object({ - id: z.string().nullable(), - name: z.string().nullable(), - slug: z.string().nullable(), - description: z.string().nullable(), - phone: z.string().nullable(), - email: z.string().nullable(), - website: z.string().nullable(), - location: z.string().nullable(), - imageUrl: z.string().nullable(), - createdAt: z.date().nullable(), - updatedAt: z.date().nullable() - }).nullable().optional() -})); - -// File: CompanyCountResult.schema.ts -export const CompanyCountResultSchema = z.number(); - -// File: GroupFindUniqueResult.schema.ts -export const GroupFindUniqueResultSchema = z.nullable(z.object({ - slug: z.string(), - abbreviation: z.string(), - name: z.string().optional(), - shortDescription: z.string().optional(), - description: z.string(), - imageUrl: z.string().optional(), - email: z.string().optional(), - contactUrl: z.string().optional(), - slackUrl: z.string().optional(), - showLeaderAsContact: z.boolean(), - createdAt: z.date(), - deactivatedAt: z.date().optional(), - workspaceGroupId: z.string().optional(), - memberVisibility: z.unknown(), - recruitmentMethod: z.unknown(), - type: z.unknown(), - events: z.array(z.unknown()), - contests: z.array(z.unknown()), - memberships: z.array(z.unknown()), - marks: z.array(z.unknown()), - roles: z.array(z.unknown()), - notifications: z.array(z.unknown()) -})); - -// File: GroupFindFirstResult.schema.ts -export const GroupFindFirstResultSchema = z.nullable(z.object({ - slug: z.string(), - abbreviation: z.string(), - name: z.string().optional(), - shortDescription: z.string().optional(), - description: z.string(), - imageUrl: z.string().optional(), - email: z.string().optional(), - contactUrl: z.string().optional(), - slackUrl: z.string().optional(), - showLeaderAsContact: z.boolean(), - createdAt: z.date(), - deactivatedAt: z.date().optional(), - workspaceGroupId: z.string().optional(), - memberVisibility: z.unknown(), - recruitmentMethod: z.unknown(), - type: z.unknown(), - events: z.array(z.unknown()), - contests: z.array(z.unknown()), - memberships: z.array(z.unknown()), - marks: z.array(z.unknown()), - roles: z.array(z.unknown()), - notifications: z.array(z.unknown()) -})); - -// File: GroupFindManyResult.schema.ts -export const GroupFindManyResultSchema = z.object({ - data: z.array(z.object({ - slug: z.string(), - abbreviation: z.string(), - name: z.string().optional(), - shortDescription: z.string().optional(), - description: z.string(), - imageUrl: z.string().optional(), - email: z.string().optional(), - contactUrl: z.string().optional(), - slackUrl: z.string().optional(), - showLeaderAsContact: z.boolean(), - createdAt: z.date(), - deactivatedAt: z.date().optional(), - workspaceGroupId: z.string().optional(), - memberVisibility: z.unknown(), - recruitmentMethod: z.unknown(), - type: z.unknown(), - events: z.array(z.unknown()), - contests: z.array(z.unknown()), - memberships: z.array(z.unknown()), - marks: z.array(z.unknown()), - roles: z.array(z.unknown()), - notifications: z.array(z.unknown()) -})), - pagination: z.object({ - page: z.number().int().min(1), - pageSize: z.number().int().min(1), - total: z.number().int().min(0), - totalPages: z.number().int().min(0), - hasNext: z.boolean(), - hasPrev: z.boolean() -}) -}); - -// File: GroupCreateResult.schema.ts -export const GroupCreateResultSchema = z.object({ - slug: z.string(), - abbreviation: z.string(), - name: z.string().optional(), - shortDescription: z.string().optional(), - description: z.string(), - imageUrl: z.string().optional(), - email: z.string().optional(), - contactUrl: z.string().optional(), - slackUrl: z.string().optional(), - showLeaderAsContact: z.boolean(), - createdAt: z.date(), - deactivatedAt: z.date().optional(), - workspaceGroupId: z.string().optional(), - memberVisibility: z.unknown(), - recruitmentMethod: z.unknown(), - type: z.unknown(), - events: z.array(z.unknown()), - contests: z.array(z.unknown()), - memberships: z.array(z.unknown()), - marks: z.array(z.unknown()), - roles: z.array(z.unknown()), - notifications: z.array(z.unknown()) -}); - -// File: GroupCreateManyResult.schema.ts -export const GroupCreateManyResultSchema = z.object({ - count: z.number() -}); - -// File: GroupUpdateResult.schema.ts -export const GroupUpdateResultSchema = z.nullable(z.object({ - slug: z.string(), - abbreviation: z.string(), - name: z.string().optional(), - shortDescription: z.string().optional(), - description: z.string(), - imageUrl: z.string().optional(), - email: z.string().optional(), - contactUrl: z.string().optional(), - slackUrl: z.string().optional(), - showLeaderAsContact: z.boolean(), - createdAt: z.date(), - deactivatedAt: z.date().optional(), - workspaceGroupId: z.string().optional(), - memberVisibility: z.unknown(), - recruitmentMethod: z.unknown(), - type: z.unknown(), - events: z.array(z.unknown()), - contests: z.array(z.unknown()), - memberships: z.array(z.unknown()), - marks: z.array(z.unknown()), - roles: z.array(z.unknown()), - notifications: z.array(z.unknown()) -})); - -// File: GroupUpdateManyResult.schema.ts -export const GroupUpdateManyResultSchema = z.object({ - count: z.number() -}); - -// File: GroupUpsertResult.schema.ts -export const GroupUpsertResultSchema = z.object({ - slug: z.string(), - abbreviation: z.string(), - name: z.string().optional(), - shortDescription: z.string().optional(), - description: z.string(), - imageUrl: z.string().optional(), - email: z.string().optional(), - contactUrl: z.string().optional(), - slackUrl: z.string().optional(), - showLeaderAsContact: z.boolean(), - createdAt: z.date(), - deactivatedAt: z.date().optional(), - workspaceGroupId: z.string().optional(), - memberVisibility: z.unknown(), - recruitmentMethod: z.unknown(), - type: z.unknown(), - events: z.array(z.unknown()), - contests: z.array(z.unknown()), - memberships: z.array(z.unknown()), - marks: z.array(z.unknown()), - roles: z.array(z.unknown()), - notifications: z.array(z.unknown()) -}); - -// File: GroupDeleteResult.schema.ts -export const GroupDeleteResultSchema = z.nullable(z.object({ - slug: z.string(), - abbreviation: z.string(), - name: z.string().optional(), - shortDescription: z.string().optional(), - description: z.string(), - imageUrl: z.string().optional(), - email: z.string().optional(), - contactUrl: z.string().optional(), - slackUrl: z.string().optional(), - showLeaderAsContact: z.boolean(), - createdAt: z.date(), - deactivatedAt: z.date().optional(), - workspaceGroupId: z.string().optional(), - memberVisibility: z.unknown(), - recruitmentMethod: z.unknown(), - type: z.unknown(), - events: z.array(z.unknown()), - contests: z.array(z.unknown()), - memberships: z.array(z.unknown()), - marks: z.array(z.unknown()), - roles: z.array(z.unknown()), - notifications: z.array(z.unknown()) -})); - -// File: GroupDeleteManyResult.schema.ts -export const GroupDeleteManyResultSchema = z.object({ - count: z.number() -}); - -// File: GroupAggregateResult.schema.ts -export const GroupAggregateResultSchema = z.object({ _count: z.object({ - slug: z.number(), - abbreviation: z.number(), - name: z.number(), - shortDescription: z.number(), - description: z.number(), - imageUrl: z.number(), - email: z.number(), - contactUrl: z.number(), - slackUrl: z.number(), - showLeaderAsContact: z.number(), - createdAt: z.number(), - deactivatedAt: z.number(), - workspaceGroupId: z.number(), - memberVisibility: z.number(), - recruitmentMethod: z.number(), - type: z.number(), - events: z.number(), - contests: z.number(), - memberships: z.number(), - marks: z.number(), - roles: z.number(), - notifications: z.number() - }).optional(), - _min: z.object({ - slug: z.string().nullable(), - abbreviation: z.string().nullable(), - name: z.string().nullable(), - shortDescription: z.string().nullable(), - description: z.string().nullable(), - imageUrl: z.string().nullable(), - email: z.string().nullable(), - contactUrl: z.string().nullable(), - slackUrl: z.string().nullable(), - createdAt: z.date().nullable(), - deactivatedAt: z.date().nullable(), - workspaceGroupId: z.string().nullable() - }).nullable().optional(), - _max: z.object({ - slug: z.string().nullable(), - abbreviation: z.string().nullable(), - name: z.string().nullable(), - shortDescription: z.string().nullable(), - description: z.string().nullable(), - imageUrl: z.string().nullable(), - email: z.string().nullable(), - contactUrl: z.string().nullable(), - slackUrl: z.string().nullable(), - createdAt: z.date().nullable(), - deactivatedAt: z.date().nullable(), - workspaceGroupId: z.string().nullable() - }).nullable().optional()}); - -// File: GroupGroupByResult.schema.ts -export const GroupGroupByResultSchema = z.array(z.object({ - slug: z.string(), - abbreviation: z.string(), - name: z.string(), - shortDescription: z.string(), - description: z.string(), - imageUrl: z.string(), - email: z.string(), - contactUrl: z.string(), - slackUrl: z.string(), - showLeaderAsContact: z.boolean(), - createdAt: z.date(), - deactivatedAt: z.date(), - workspaceGroupId: z.string(), - _count: z.object({ - slug: z.number(), - abbreviation: z.number(), - name: z.number(), - shortDescription: z.number(), - description: z.number(), - imageUrl: z.number(), - email: z.number(), - contactUrl: z.number(), - slackUrl: z.number(), - showLeaderAsContact: z.number(), - createdAt: z.number(), - deactivatedAt: z.number(), - workspaceGroupId: z.number(), - memberVisibility: z.number(), - recruitmentMethod: z.number(), - type: z.number(), - events: z.number(), - contests: z.number(), - memberships: z.number(), - marks: z.number(), - roles: z.number(), - notifications: z.number() - }).optional(), - _min: z.object({ - slug: z.string().nullable(), - abbreviation: z.string().nullable(), - name: z.string().nullable(), - shortDescription: z.string().nullable(), - description: z.string().nullable(), - imageUrl: z.string().nullable(), - email: z.string().nullable(), - contactUrl: z.string().nullable(), - slackUrl: z.string().nullable(), - createdAt: z.date().nullable(), - deactivatedAt: z.date().nullable(), - workspaceGroupId: z.string().nullable() - }).nullable().optional(), - _max: z.object({ - slug: z.string().nullable(), - abbreviation: z.string().nullable(), - name: z.string().nullable(), - shortDescription: z.string().nullable(), - description: z.string().nullable(), - imageUrl: z.string().nullable(), - email: z.string().nullable(), - contactUrl: z.string().nullable(), - slackUrl: z.string().nullable(), - createdAt: z.date().nullable(), - deactivatedAt: z.date().nullable(), - workspaceGroupId: z.string().nullable() - }).nullable().optional() -})); - -// File: GroupCountResult.schema.ts -export const GroupCountResultSchema = z.number(); - -// File: GroupMembershipFindUniqueResult.schema.ts -export const GroupMembershipFindUniqueResultSchema = z.nullable(z.object({ - id: z.string(), - start: z.date(), - end: z.date().optional(), - createdAt: z.date(), - updatedAt: z.date(), - groupId: z.string(), - userId: z.string(), - group: z.unknown(), - user: z.unknown(), - roles: z.array(z.unknown()) -})); - -// File: GroupMembershipFindFirstResult.schema.ts -export const GroupMembershipFindFirstResultSchema = z.nullable(z.object({ - id: z.string(), - start: z.date(), - end: z.date().optional(), - createdAt: z.date(), - updatedAt: z.date(), - groupId: z.string(), - userId: z.string(), - group: z.unknown(), - user: z.unknown(), - roles: z.array(z.unknown()) -})); - -// File: GroupMembershipFindManyResult.schema.ts -export const GroupMembershipFindManyResultSchema = z.object({ - data: z.array(z.object({ - id: z.string(), - start: z.date(), - end: z.date().optional(), - createdAt: z.date(), - updatedAt: z.date(), - groupId: z.string(), - userId: z.string(), - group: z.unknown(), - user: z.unknown(), - roles: z.array(z.unknown()) -})), - pagination: z.object({ - page: z.number().int().min(1), - pageSize: z.number().int().min(1), - total: z.number().int().min(0), - totalPages: z.number().int().min(0), - hasNext: z.boolean(), - hasPrev: z.boolean() -}) -}); - -// File: GroupMembershipCreateResult.schema.ts -export const GroupMembershipCreateResultSchema = z.object({ - id: z.string(), - start: z.date(), - end: z.date().optional(), - createdAt: z.date(), - updatedAt: z.date(), - groupId: z.string(), - userId: z.string(), - group: z.unknown(), - user: z.unknown(), - roles: z.array(z.unknown()) -}); - -// File: GroupMembershipCreateManyResult.schema.ts -export const GroupMembershipCreateManyResultSchema = z.object({ - count: z.number() -}); - -// File: GroupMembershipUpdateResult.schema.ts -export const GroupMembershipUpdateResultSchema = z.nullable(z.object({ - id: z.string(), - start: z.date(), - end: z.date().optional(), - createdAt: z.date(), - updatedAt: z.date(), - groupId: z.string(), - userId: z.string(), - group: z.unknown(), - user: z.unknown(), - roles: z.array(z.unknown()) -})); - -// File: GroupMembershipUpdateManyResult.schema.ts -export const GroupMembershipUpdateManyResultSchema = z.object({ - count: z.number() -}); - -// File: GroupMembershipUpsertResult.schema.ts -export const GroupMembershipUpsertResultSchema = z.object({ - id: z.string(), - start: z.date(), - end: z.date().optional(), - createdAt: z.date(), - updatedAt: z.date(), - groupId: z.string(), - userId: z.string(), - group: z.unknown(), - user: z.unknown(), - roles: z.array(z.unknown()) -}); - -// File: GroupMembershipDeleteResult.schema.ts -export const GroupMembershipDeleteResultSchema = z.nullable(z.object({ - id: z.string(), - start: z.date(), - end: z.date().optional(), - createdAt: z.date(), - updatedAt: z.date(), - groupId: z.string(), - userId: z.string(), - group: z.unknown(), - user: z.unknown(), - roles: z.array(z.unknown()) -})); - -// File: GroupMembershipDeleteManyResult.schema.ts -export const GroupMembershipDeleteManyResultSchema = z.object({ - count: z.number() -}); - -// File: GroupMembershipAggregateResult.schema.ts -export const GroupMembershipAggregateResultSchema = z.object({ _count: z.object({ - id: z.number(), - start: z.number(), - end: z.number(), - createdAt: z.number(), - updatedAt: z.number(), - groupId: z.number(), - userId: z.number(), - group: z.number(), - user: z.number(), - roles: z.number() - }).optional(), - _min: z.object({ - id: z.string().nullable(), - start: z.date().nullable(), - end: z.date().nullable(), - createdAt: z.date().nullable(), - updatedAt: z.date().nullable(), - groupId: z.string().nullable(), - userId: z.string().nullable() - }).nullable().optional(), - _max: z.object({ - id: z.string().nullable(), - start: z.date().nullable(), - end: z.date().nullable(), - createdAt: z.date().nullable(), - updatedAt: z.date().nullable(), - groupId: z.string().nullable(), - userId: z.string().nullable() - }).nullable().optional()}); - -// File: GroupMembershipGroupByResult.schema.ts -export const GroupMembershipGroupByResultSchema = z.array(z.object({ - id: z.string(), - start: z.date(), - end: z.date(), - createdAt: z.date(), - updatedAt: z.date(), - groupId: z.string(), - userId: z.string(), - _count: z.object({ - id: z.number(), - start: z.number(), - end: z.number(), - createdAt: z.number(), - updatedAt: z.number(), - groupId: z.number(), - userId: z.number(), - group: z.number(), - user: z.number(), - roles: z.number() - }).optional(), - _min: z.object({ - id: z.string().nullable(), - start: z.date().nullable(), - end: z.date().nullable(), - createdAt: z.date().nullable(), - updatedAt: z.date().nullable(), - groupId: z.string().nullable(), - userId: z.string().nullable() - }).nullable().optional(), - _max: z.object({ - id: z.string().nullable(), - start: z.date().nullable(), - end: z.date().nullable(), - createdAt: z.date().nullable(), - updatedAt: z.date().nullable(), - groupId: z.string().nullable(), - userId: z.string().nullable() - }).nullable().optional() -})); - -// File: GroupMembershipCountResult.schema.ts -export const GroupMembershipCountResultSchema = z.number(); - -// File: GroupMembershipRoleFindUniqueResult.schema.ts -export const GroupMembershipRoleFindUniqueResultSchema = z.nullable(z.object({ - membershipId: z.string(), - roleId: z.string(), - membership: z.unknown(), - role: z.unknown() -})); - -// File: GroupMembershipRoleFindFirstResult.schema.ts -export const GroupMembershipRoleFindFirstResultSchema = z.nullable(z.object({ - membershipId: z.string(), - roleId: z.string(), - membership: z.unknown(), - role: z.unknown() -})); - -// File: GroupMembershipRoleFindManyResult.schema.ts -export const GroupMembershipRoleFindManyResultSchema = z.object({ - data: z.array(z.object({ - membershipId: z.string(), - roleId: z.string(), - membership: z.unknown(), - role: z.unknown() -})), - pagination: z.object({ - page: z.number().int().min(1), - pageSize: z.number().int().min(1), - total: z.number().int().min(0), - totalPages: z.number().int().min(0), - hasNext: z.boolean(), - hasPrev: z.boolean() -}) -}); - -// File: GroupMembershipRoleCreateResult.schema.ts -export const GroupMembershipRoleCreateResultSchema = z.object({ - membershipId: z.string(), - roleId: z.string(), - membership: z.unknown(), - role: z.unknown() -}); - -// File: GroupMembershipRoleCreateManyResult.schema.ts -export const GroupMembershipRoleCreateManyResultSchema = z.object({ - count: z.number() -}); - -// File: GroupMembershipRoleUpdateResult.schema.ts -export const GroupMembershipRoleUpdateResultSchema = z.nullable(z.object({ - membershipId: z.string(), - roleId: z.string(), - membership: z.unknown(), - role: z.unknown() -})); - -// File: GroupMembershipRoleUpdateManyResult.schema.ts -export const GroupMembershipRoleUpdateManyResultSchema = z.object({ - count: z.number() -}); - -// File: GroupMembershipRoleUpsertResult.schema.ts -export const GroupMembershipRoleUpsertResultSchema = z.object({ - membershipId: z.string(), - roleId: z.string(), - membership: z.unknown(), - role: z.unknown() -}); - -// File: GroupMembershipRoleDeleteResult.schema.ts -export const GroupMembershipRoleDeleteResultSchema = z.nullable(z.object({ - membershipId: z.string(), - roleId: z.string(), - membership: z.unknown(), - role: z.unknown() -})); - -// File: GroupMembershipRoleDeleteManyResult.schema.ts -export const GroupMembershipRoleDeleteManyResultSchema = z.object({ - count: z.number() -}); - -// File: GroupMembershipRoleAggregateResult.schema.ts -export const GroupMembershipRoleAggregateResultSchema = z.object({ _count: z.object({ - membershipId: z.number(), - roleId: z.number(), - membership: z.number(), - role: z.number() - }).optional(), - _min: z.object({ - membershipId: z.string().nullable(), - roleId: z.string().nullable() - }).nullable().optional(), - _max: z.object({ - membershipId: z.string().nullable(), - roleId: z.string().nullable() - }).nullable().optional()}); - -// File: GroupMembershipRoleGroupByResult.schema.ts -export const GroupMembershipRoleGroupByResultSchema = z.array(z.object({ - membershipId: z.string(), - roleId: z.string(), - _count: z.object({ - membershipId: z.number(), - roleId: z.number(), - membership: z.number(), - role: z.number() - }).optional(), - _min: z.object({ - membershipId: z.string().nullable(), - roleId: z.string().nullable() - }).nullable().optional(), - _max: z.object({ - membershipId: z.string().nullable(), - roleId: z.string().nullable() - }).nullable().optional() -})); - -// File: GroupMembershipRoleCountResult.schema.ts -export const GroupMembershipRoleCountResultSchema = z.number(); - -// File: GroupRoleFindUniqueResult.schema.ts -export const GroupRoleFindUniqueResultSchema = z.nullable(z.object({ - id: z.string(), - name: z.string(), - type: z.unknown(), - groupId: z.string(), - group: z.unknown(), - groupMembershipRoles: z.array(z.unknown()) -})); - -// File: GroupRoleFindFirstResult.schema.ts -export const GroupRoleFindFirstResultSchema = z.nullable(z.object({ - id: z.string(), - name: z.string(), - type: z.unknown(), - groupId: z.string(), - group: z.unknown(), - groupMembershipRoles: z.array(z.unknown()) -})); - -// File: GroupRoleFindManyResult.schema.ts -export const GroupRoleFindManyResultSchema = z.object({ - data: z.array(z.object({ - id: z.string(), - name: z.string(), - type: z.unknown(), - groupId: z.string(), - group: z.unknown(), - groupMembershipRoles: z.array(z.unknown()) -})), - pagination: z.object({ - page: z.number().int().min(1), - pageSize: z.number().int().min(1), - total: z.number().int().min(0), - totalPages: z.number().int().min(0), - hasNext: z.boolean(), - hasPrev: z.boolean() -}) -}); - -// File: GroupRoleCreateResult.schema.ts -export const GroupRoleCreateResultSchema = z.object({ - id: z.string(), - name: z.string(), - type: z.unknown(), - groupId: z.string(), - group: z.unknown(), - groupMembershipRoles: z.array(z.unknown()) -}); - -// File: GroupRoleCreateManyResult.schema.ts -export const GroupRoleCreateManyResultSchema = z.object({ - count: z.number() -}); - -// File: GroupRoleUpdateResult.schema.ts -export const GroupRoleUpdateResultSchema = z.nullable(z.object({ - id: z.string(), - name: z.string(), - type: z.unknown(), - groupId: z.string(), - group: z.unknown(), - groupMembershipRoles: z.array(z.unknown()) -})); - -// File: GroupRoleUpdateManyResult.schema.ts -export const GroupRoleUpdateManyResultSchema = z.object({ - count: z.number() -}); - -// File: GroupRoleUpsertResult.schema.ts -export const GroupRoleUpsertResultSchema = z.object({ - id: z.string(), - name: z.string(), - type: z.unknown(), - groupId: z.string(), - group: z.unknown(), - groupMembershipRoles: z.array(z.unknown()) -}); - -// File: GroupRoleDeleteResult.schema.ts -export const GroupRoleDeleteResultSchema = z.nullable(z.object({ - id: z.string(), - name: z.string(), - type: z.unknown(), - groupId: z.string(), - group: z.unknown(), - groupMembershipRoles: z.array(z.unknown()) -})); - -// File: GroupRoleDeleteManyResult.schema.ts -export const GroupRoleDeleteManyResultSchema = z.object({ - count: z.number() -}); - -// File: GroupRoleAggregateResult.schema.ts -export const GroupRoleAggregateResultSchema = z.object({ _count: z.object({ - id: z.number(), - name: z.number(), - type: z.number(), - groupId: z.number(), - group: z.number(), - groupMembershipRoles: z.number() - }).optional(), - _min: z.object({ - id: z.string().nullable(), - name: z.string().nullable(), - groupId: z.string().nullable() - }).nullable().optional(), - _max: z.object({ - id: z.string().nullable(), - name: z.string().nullable(), - groupId: z.string().nullable() - }).nullable().optional()}); - -// File: GroupRoleGroupByResult.schema.ts -export const GroupRoleGroupByResultSchema = z.array(z.object({ - id: z.string(), - name: z.string(), - groupId: z.string(), - _count: z.object({ - id: z.number(), - name: z.number(), - type: z.number(), - groupId: z.number(), - group: z.number(), - groupMembershipRoles: z.number() - }).optional(), - _min: z.object({ - id: z.string().nullable(), - name: z.string().nullable(), - groupId: z.string().nullable() - }).nullable().optional(), - _max: z.object({ - id: z.string().nullable(), - name: z.string().nullable(), - groupId: z.string().nullable() - }).nullable().optional() -})); - -// File: GroupRoleCountResult.schema.ts -export const GroupRoleCountResultSchema = z.number(); - -// File: AttendanceFindUniqueResult.schema.ts -export const AttendanceFindUniqueResultSchema = z.nullable(z.object({ - id: z.string(), - registerStart: z.date(), - registerEnd: z.date(), - deregisterDeadline: z.date(), - selections: z.unknown(), - createdAt: z.date(), - updatedAt: z.date(), - attendancePrice: z.number().int().optional(), - pools: z.array(z.unknown()), - attendees: z.array(z.unknown()), - events: z.array(z.unknown()) -})); - -// File: AttendanceFindFirstResult.schema.ts -export const AttendanceFindFirstResultSchema = z.nullable(z.object({ - id: z.string(), - registerStart: z.date(), - registerEnd: z.date(), - deregisterDeadline: z.date(), - selections: z.unknown(), - createdAt: z.date(), - updatedAt: z.date(), - attendancePrice: z.number().int().optional(), - pools: z.array(z.unknown()), - attendees: z.array(z.unknown()), - events: z.array(z.unknown()) -})); - -// File: AttendanceFindManyResult.schema.ts -export const AttendanceFindManyResultSchema = z.object({ - data: z.array(z.object({ - id: z.string(), - registerStart: z.date(), - registerEnd: z.date(), - deregisterDeadline: z.date(), - selections: z.unknown(), - createdAt: z.date(), - updatedAt: z.date(), - attendancePrice: z.number().int().optional(), - pools: z.array(z.unknown()), - attendees: z.array(z.unknown()), - events: z.array(z.unknown()) -})), - pagination: z.object({ - page: z.number().int().min(1), - pageSize: z.number().int().min(1), - total: z.number().int().min(0), - totalPages: z.number().int().min(0), - hasNext: z.boolean(), - hasPrev: z.boolean() -}) -}); - -// File: AttendanceCreateResult.schema.ts -export const AttendanceCreateResultSchema = z.object({ - id: z.string(), - registerStart: z.date(), - registerEnd: z.date(), - deregisterDeadline: z.date(), - selections: z.unknown(), - createdAt: z.date(), - updatedAt: z.date(), - attendancePrice: z.number().int().optional(), - pools: z.array(z.unknown()), - attendees: z.array(z.unknown()), - events: z.array(z.unknown()) -}); - -// File: AttendanceCreateManyResult.schema.ts -export const AttendanceCreateManyResultSchema = z.object({ - count: z.number() -}); - -// File: AttendanceUpdateResult.schema.ts -export const AttendanceUpdateResultSchema = z.nullable(z.object({ - id: z.string(), - registerStart: z.date(), - registerEnd: z.date(), - deregisterDeadline: z.date(), - selections: z.unknown(), - createdAt: z.date(), - updatedAt: z.date(), - attendancePrice: z.number().int().optional(), - pools: z.array(z.unknown()), - attendees: z.array(z.unknown()), - events: z.array(z.unknown()) -})); - -// File: AttendanceUpdateManyResult.schema.ts -export const AttendanceUpdateManyResultSchema = z.object({ - count: z.number() -}); - -// File: AttendanceUpsertResult.schema.ts -export const AttendanceUpsertResultSchema = z.object({ - id: z.string(), - registerStart: z.date(), - registerEnd: z.date(), - deregisterDeadline: z.date(), - selections: z.unknown(), - createdAt: z.date(), - updatedAt: z.date(), - attendancePrice: z.number().int().optional(), - pools: z.array(z.unknown()), - attendees: z.array(z.unknown()), - events: z.array(z.unknown()) -}); - -// File: AttendanceDeleteResult.schema.ts -export const AttendanceDeleteResultSchema = z.nullable(z.object({ - id: z.string(), - registerStart: z.date(), - registerEnd: z.date(), - deregisterDeadline: z.date(), - selections: z.unknown(), - createdAt: z.date(), - updatedAt: z.date(), - attendancePrice: z.number().int().optional(), - pools: z.array(z.unknown()), - attendees: z.array(z.unknown()), - events: z.array(z.unknown()) -})); - -// File: AttendanceDeleteManyResult.schema.ts -export const AttendanceDeleteManyResultSchema = z.object({ - count: z.number() -}); - -// File: AttendanceAggregateResult.schema.ts -export const AttendanceAggregateResultSchema = z.object({ _count: z.object({ - id: z.number(), - registerStart: z.number(), - registerEnd: z.number(), - deregisterDeadline: z.number(), - selections: z.number(), - createdAt: z.number(), - updatedAt: z.number(), - attendancePrice: z.number(), - pools: z.number(), - attendees: z.number(), - events: z.number() - }).optional(), - _sum: z.object({ - attendancePrice: z.number().nullable() - }).nullable().optional(), - _avg: z.object({ - attendancePrice: z.number().nullable() - }).nullable().optional(), - _min: z.object({ - id: z.string().nullable(), - registerStart: z.date().nullable(), - registerEnd: z.date().nullable(), - deregisterDeadline: z.date().nullable(), - createdAt: z.date().nullable(), - updatedAt: z.date().nullable(), - attendancePrice: z.number().int().nullable() - }).nullable().optional(), - _max: z.object({ - id: z.string().nullable(), - registerStart: z.date().nullable(), - registerEnd: z.date().nullable(), - deregisterDeadline: z.date().nullable(), - createdAt: z.date().nullable(), - updatedAt: z.date().nullable(), - attendancePrice: z.number().int().nullable() - }).nullable().optional()}); - -// File: AttendanceGroupByResult.schema.ts -export const AttendanceGroupByResultSchema = z.array(z.object({ - id: z.string(), - registerStart: z.date(), - registerEnd: z.date(), - deregisterDeadline: z.date(), - selections: z.unknown(), - createdAt: z.date(), - updatedAt: z.date(), - attendancePrice: z.number().int(), - _count: z.object({ - id: z.number(), - registerStart: z.number(), - registerEnd: z.number(), - deregisterDeadline: z.number(), - selections: z.number(), - createdAt: z.number(), - updatedAt: z.number(), - attendancePrice: z.number(), - pools: z.number(), - attendees: z.number(), - events: z.number() - }).optional(), - _sum: z.object({ - attendancePrice: z.number().nullable() - }).nullable().optional(), - _avg: z.object({ - attendancePrice: z.number().nullable() - }).nullable().optional(), - _min: z.object({ - id: z.string().nullable(), - registerStart: z.date().nullable(), - registerEnd: z.date().nullable(), - deregisterDeadline: z.date().nullable(), - createdAt: z.date().nullable(), - updatedAt: z.date().nullable(), - attendancePrice: z.number().int().nullable() - }).nullable().optional(), - _max: z.object({ - id: z.string().nullable(), - registerStart: z.date().nullable(), - registerEnd: z.date().nullable(), - deregisterDeadline: z.date().nullable(), - createdAt: z.date().nullable(), - updatedAt: z.date().nullable(), - attendancePrice: z.number().int().nullable() - }).nullable().optional() -})); - -// File: AttendanceCountResult.schema.ts -export const AttendanceCountResultSchema = z.number(); - -// File: AttendancePoolFindUniqueResult.schema.ts -export const AttendancePoolFindUniqueResultSchema = z.nullable(z.object({ - id: z.string(), - title: z.string(), - mergeDelayHours: z.number().int().optional(), - yearCriteria: z.unknown(), - capacity: z.number().int(), - createdAt: z.date(), - updatedAt: z.date(), - attendanceId: z.string(), - taskId: z.string().optional(), - attendance: z.unknown(), - task: z.unknown().optional(), - attendees: z.array(z.unknown()) -})); - -// File: AttendancePoolFindFirstResult.schema.ts -export const AttendancePoolFindFirstResultSchema = z.nullable(z.object({ - id: z.string(), - title: z.string(), - mergeDelayHours: z.number().int().optional(), - yearCriteria: z.unknown(), - capacity: z.number().int(), - createdAt: z.date(), - updatedAt: z.date(), - attendanceId: z.string(), - taskId: z.string().optional(), - attendance: z.unknown(), - task: z.unknown().optional(), - attendees: z.array(z.unknown()) -})); - -// File: AttendancePoolFindManyResult.schema.ts -export const AttendancePoolFindManyResultSchema = z.object({ - data: z.array(z.object({ - id: z.string(), - title: z.string(), - mergeDelayHours: z.number().int().optional(), - yearCriteria: z.unknown(), - capacity: z.number().int(), - createdAt: z.date(), - updatedAt: z.date(), - attendanceId: z.string(), - taskId: z.string().optional(), - attendance: z.unknown(), - task: z.unknown().optional(), - attendees: z.array(z.unknown()) -})), - pagination: z.object({ - page: z.number().int().min(1), - pageSize: z.number().int().min(1), - total: z.number().int().min(0), - totalPages: z.number().int().min(0), - hasNext: z.boolean(), - hasPrev: z.boolean() -}) -}); - -// File: AttendancePoolCreateResult.schema.ts -export const AttendancePoolCreateResultSchema = z.object({ - id: z.string(), - title: z.string(), - mergeDelayHours: z.number().int().optional(), - yearCriteria: z.unknown(), - capacity: z.number().int(), - createdAt: z.date(), - updatedAt: z.date(), - attendanceId: z.string(), - taskId: z.string().optional(), - attendance: z.unknown(), - task: z.unknown().optional(), - attendees: z.array(z.unknown()) -}); - -// File: AttendancePoolCreateManyResult.schema.ts -export const AttendancePoolCreateManyResultSchema = z.object({ - count: z.number() -}); - -// File: AttendancePoolUpdateResult.schema.ts -export const AttendancePoolUpdateResultSchema = z.nullable(z.object({ - id: z.string(), - title: z.string(), - mergeDelayHours: z.number().int().optional(), - yearCriteria: z.unknown(), - capacity: z.number().int(), - createdAt: z.date(), - updatedAt: z.date(), - attendanceId: z.string(), - taskId: z.string().optional(), - attendance: z.unknown(), - task: z.unknown().optional(), - attendees: z.array(z.unknown()) -})); - -// File: AttendancePoolUpdateManyResult.schema.ts -export const AttendancePoolUpdateManyResultSchema = z.object({ - count: z.number() -}); - -// File: AttendancePoolUpsertResult.schema.ts -export const AttendancePoolUpsertResultSchema = z.object({ - id: z.string(), - title: z.string(), - mergeDelayHours: z.number().int().optional(), - yearCriteria: z.unknown(), - capacity: z.number().int(), - createdAt: z.date(), - updatedAt: z.date(), - attendanceId: z.string(), - taskId: z.string().optional(), - attendance: z.unknown(), - task: z.unknown().optional(), - attendees: z.array(z.unknown()) -}); - -// File: AttendancePoolDeleteResult.schema.ts -export const AttendancePoolDeleteResultSchema = z.nullable(z.object({ - id: z.string(), - title: z.string(), - mergeDelayHours: z.number().int().optional(), - yearCriteria: z.unknown(), - capacity: z.number().int(), - createdAt: z.date(), - updatedAt: z.date(), - attendanceId: z.string(), - taskId: z.string().optional(), - attendance: z.unknown(), - task: z.unknown().optional(), - attendees: z.array(z.unknown()) -})); - -// File: AttendancePoolDeleteManyResult.schema.ts -export const AttendancePoolDeleteManyResultSchema = z.object({ - count: z.number() -}); - -// File: AttendancePoolAggregateResult.schema.ts -export const AttendancePoolAggregateResultSchema = z.object({ _count: z.object({ - id: z.number(), - title: z.number(), - mergeDelayHours: z.number(), - yearCriteria: z.number(), - capacity: z.number(), - createdAt: z.number(), - updatedAt: z.number(), - attendanceId: z.number(), - taskId: z.number(), - attendance: z.number(), - task: z.number(), - attendees: z.number() - }).optional(), - _sum: z.object({ - mergeDelayHours: z.number().nullable(), - capacity: z.number().nullable() - }).nullable().optional(), - _avg: z.object({ - mergeDelayHours: z.number().nullable(), - capacity: z.number().nullable() - }).nullable().optional(), - _min: z.object({ - id: z.string().nullable(), - title: z.string().nullable(), - mergeDelayHours: z.number().int().nullable(), - capacity: z.number().int().nullable(), - createdAt: z.date().nullable(), - updatedAt: z.date().nullable(), - attendanceId: z.string().nullable(), - taskId: z.string().nullable() - }).nullable().optional(), - _max: z.object({ - id: z.string().nullable(), - title: z.string().nullable(), - mergeDelayHours: z.number().int().nullable(), - capacity: z.number().int().nullable(), - createdAt: z.date().nullable(), - updatedAt: z.date().nullable(), - attendanceId: z.string().nullable(), - taskId: z.string().nullable() - }).nullable().optional()}); - -// File: AttendancePoolGroupByResult.schema.ts -export const AttendancePoolGroupByResultSchema = z.array(z.object({ - id: z.string(), - title: z.string(), - mergeDelayHours: z.number().int(), - yearCriteria: z.unknown(), - capacity: z.number().int(), - createdAt: z.date(), - updatedAt: z.date(), - attendanceId: z.string(), - taskId: z.string(), - _count: z.object({ - id: z.number(), - title: z.number(), - mergeDelayHours: z.number(), - yearCriteria: z.number(), - capacity: z.number(), - createdAt: z.number(), - updatedAt: z.number(), - attendanceId: z.number(), - taskId: z.number(), - attendance: z.number(), - task: z.number(), - attendees: z.number() - }).optional(), - _sum: z.object({ - mergeDelayHours: z.number().nullable(), - capacity: z.number().nullable() - }).nullable().optional(), - _avg: z.object({ - mergeDelayHours: z.number().nullable(), - capacity: z.number().nullable() - }).nullable().optional(), - _min: z.object({ - id: z.string().nullable(), - title: z.string().nullable(), - mergeDelayHours: z.number().int().nullable(), - capacity: z.number().int().nullable(), - createdAt: z.date().nullable(), - updatedAt: z.date().nullable(), - attendanceId: z.string().nullable(), - taskId: z.string().nullable() - }).nullable().optional(), - _max: z.object({ - id: z.string().nullable(), - title: z.string().nullable(), - mergeDelayHours: z.number().int().nullable(), - capacity: z.number().int().nullable(), - createdAt: z.date().nullable(), - updatedAt: z.date().nullable(), - attendanceId: z.string().nullable(), - taskId: z.string().nullable() - }).nullable().optional() -})); - -// File: AttendancePoolCountResult.schema.ts -export const AttendancePoolCountResultSchema = z.number(); - -// File: AttendeeFindUniqueResult.schema.ts -export const AttendeeFindUniqueResultSchema = z.nullable(z.object({ - id: z.string(), - userGrade: z.number().int().optional(), - feedbackFormAnswer: z.unknown().optional(), - selections: z.unknown(), - reserved: z.boolean(), - earliestReservationAt: z.date(), - attendedAt: z.date().optional(), - createdAt: z.date(), - updatedAt: z.date(), - paymentDeadline: z.date().optional(), - paymentLink: z.string().optional(), - paymentId: z.string().optional(), - paymentReservedAt: z.date().optional(), - paymentChargeDeadline: z.date().optional(), - paymentChargedAt: z.date().optional(), - paymentRefundedAt: z.date().optional(), - paymentCheckoutUrl: z.string().optional(), - attendanceId: z.string(), - userId: z.string(), - attendancePoolId: z.string(), - paymentRefundedById: z.string().optional(), - attendance: z.unknown(), - user: z.unknown(), - attendancePool: z.unknown(), - paymentRefundedBy: z.unknown().optional() -})); - -// File: AttendeeFindFirstResult.schema.ts -export const AttendeeFindFirstResultSchema = z.nullable(z.object({ - id: z.string(), - userGrade: z.number().int().optional(), - feedbackFormAnswer: z.unknown().optional(), - selections: z.unknown(), - reserved: z.boolean(), - earliestReservationAt: z.date(), - attendedAt: z.date().optional(), - createdAt: z.date(), - updatedAt: z.date(), - paymentDeadline: z.date().optional(), - paymentLink: z.string().optional(), - paymentId: z.string().optional(), - paymentReservedAt: z.date().optional(), - paymentChargeDeadline: z.date().optional(), - paymentChargedAt: z.date().optional(), - paymentRefundedAt: z.date().optional(), - paymentCheckoutUrl: z.string().optional(), - attendanceId: z.string(), - userId: z.string(), - attendancePoolId: z.string(), - paymentRefundedById: z.string().optional(), - attendance: z.unknown(), - user: z.unknown(), - attendancePool: z.unknown(), - paymentRefundedBy: z.unknown().optional() -})); - -// File: AttendeeFindManyResult.schema.ts -export const AttendeeFindManyResultSchema = z.object({ - data: z.array(z.object({ - id: z.string(), - userGrade: z.number().int().optional(), - feedbackFormAnswer: z.unknown().optional(), - selections: z.unknown(), - reserved: z.boolean(), - earliestReservationAt: z.date(), - attendedAt: z.date().optional(), - createdAt: z.date(), - updatedAt: z.date(), - paymentDeadline: z.date().optional(), - paymentLink: z.string().optional(), - paymentId: z.string().optional(), - paymentReservedAt: z.date().optional(), - paymentChargeDeadline: z.date().optional(), - paymentChargedAt: z.date().optional(), - paymentRefundedAt: z.date().optional(), - paymentCheckoutUrl: z.string().optional(), - attendanceId: z.string(), - userId: z.string(), - attendancePoolId: z.string(), - paymentRefundedById: z.string().optional(), - attendance: z.unknown(), - user: z.unknown(), - attendancePool: z.unknown(), - paymentRefundedBy: z.unknown().optional() -})), - pagination: z.object({ - page: z.number().int().min(1), - pageSize: z.number().int().min(1), - total: z.number().int().min(0), - totalPages: z.number().int().min(0), - hasNext: z.boolean(), - hasPrev: z.boolean() -}) -}); - -// File: AttendeeCreateResult.schema.ts -export const AttendeeCreateResultSchema = z.object({ - id: z.string(), - userGrade: z.number().int().optional(), - feedbackFormAnswer: z.unknown().optional(), - selections: z.unknown(), - reserved: z.boolean(), - earliestReservationAt: z.date(), - attendedAt: z.date().optional(), - createdAt: z.date(), - updatedAt: z.date(), - paymentDeadline: z.date().optional(), - paymentLink: z.string().optional(), - paymentId: z.string().optional(), - paymentReservedAt: z.date().optional(), - paymentChargeDeadline: z.date().optional(), - paymentChargedAt: z.date().optional(), - paymentRefundedAt: z.date().optional(), - paymentCheckoutUrl: z.string().optional(), - attendanceId: z.string(), - userId: z.string(), - attendancePoolId: z.string(), - paymentRefundedById: z.string().optional(), - attendance: z.unknown(), - user: z.unknown(), - attendancePool: z.unknown(), - paymentRefundedBy: z.unknown().optional() -}); - -// File: AttendeeCreateManyResult.schema.ts -export const AttendeeCreateManyResultSchema = z.object({ - count: z.number() -}); - -// File: AttendeeUpdateResult.schema.ts -export const AttendeeUpdateResultSchema = z.nullable(z.object({ - id: z.string(), - userGrade: z.number().int().optional(), - feedbackFormAnswer: z.unknown().optional(), - selections: z.unknown(), - reserved: z.boolean(), - earliestReservationAt: z.date(), - attendedAt: z.date().optional(), - createdAt: z.date(), - updatedAt: z.date(), - paymentDeadline: z.date().optional(), - paymentLink: z.string().optional(), - paymentId: z.string().optional(), - paymentReservedAt: z.date().optional(), - paymentChargeDeadline: z.date().optional(), - paymentChargedAt: z.date().optional(), - paymentRefundedAt: z.date().optional(), - paymentCheckoutUrl: z.string().optional(), - attendanceId: z.string(), - userId: z.string(), - attendancePoolId: z.string(), - paymentRefundedById: z.string().optional(), - attendance: z.unknown(), - user: z.unknown(), - attendancePool: z.unknown(), - paymentRefundedBy: z.unknown().optional() -})); - -// File: AttendeeUpdateManyResult.schema.ts -export const AttendeeUpdateManyResultSchema = z.object({ - count: z.number() -}); - -// File: AttendeeUpsertResult.schema.ts -export const AttendeeUpsertResultSchema = z.object({ - id: z.string(), - userGrade: z.number().int().optional(), - feedbackFormAnswer: z.unknown().optional(), - selections: z.unknown(), - reserved: z.boolean(), - earliestReservationAt: z.date(), - attendedAt: z.date().optional(), - createdAt: z.date(), - updatedAt: z.date(), - paymentDeadline: z.date().optional(), - paymentLink: z.string().optional(), - paymentId: z.string().optional(), - paymentReservedAt: z.date().optional(), - paymentChargeDeadline: z.date().optional(), - paymentChargedAt: z.date().optional(), - paymentRefundedAt: z.date().optional(), - paymentCheckoutUrl: z.string().optional(), - attendanceId: z.string(), - userId: z.string(), - attendancePoolId: z.string(), - paymentRefundedById: z.string().optional(), - attendance: z.unknown(), - user: z.unknown(), - attendancePool: z.unknown(), - paymentRefundedBy: z.unknown().optional() -}); - -// File: AttendeeDeleteResult.schema.ts -export const AttendeeDeleteResultSchema = z.nullable(z.object({ - id: z.string(), - userGrade: z.number().int().optional(), - feedbackFormAnswer: z.unknown().optional(), - selections: z.unknown(), - reserved: z.boolean(), - earliestReservationAt: z.date(), - attendedAt: z.date().optional(), - createdAt: z.date(), - updatedAt: z.date(), - paymentDeadline: z.date().optional(), - paymentLink: z.string().optional(), - paymentId: z.string().optional(), - paymentReservedAt: z.date().optional(), - paymentChargeDeadline: z.date().optional(), - paymentChargedAt: z.date().optional(), - paymentRefundedAt: z.date().optional(), - paymentCheckoutUrl: z.string().optional(), - attendanceId: z.string(), - userId: z.string(), - attendancePoolId: z.string(), - paymentRefundedById: z.string().optional(), - attendance: z.unknown(), - user: z.unknown(), - attendancePool: z.unknown(), - paymentRefundedBy: z.unknown().optional() -})); - -// File: AttendeeDeleteManyResult.schema.ts -export const AttendeeDeleteManyResultSchema = z.object({ - count: z.number() -}); - -// File: AttendeeAggregateResult.schema.ts -export const AttendeeAggregateResultSchema = z.object({ _count: z.object({ - id: z.number(), - userGrade: z.number(), - feedbackFormAnswer: z.number(), - selections: z.number(), - reserved: z.number(), - earliestReservationAt: z.number(), - attendedAt: z.number(), - createdAt: z.number(), - updatedAt: z.number(), - paymentDeadline: z.number(), - paymentLink: z.number(), - paymentId: z.number(), - paymentReservedAt: z.number(), - paymentChargeDeadline: z.number(), - paymentChargedAt: z.number(), - paymentRefundedAt: z.number(), - paymentCheckoutUrl: z.number(), - attendanceId: z.number(), - userId: z.number(), - attendancePoolId: z.number(), - paymentRefundedById: z.number(), - attendance: z.number(), - user: z.number(), - attendancePool: z.number(), - paymentRefundedBy: z.number() - }).optional(), - _sum: z.object({ - userGrade: z.number().nullable() - }).nullable().optional(), - _avg: z.object({ - userGrade: z.number().nullable() - }).nullable().optional(), - _min: z.object({ - id: z.string().nullable(), - userGrade: z.number().int().nullable(), - earliestReservationAt: z.date().nullable(), - attendedAt: z.date().nullable(), - createdAt: z.date().nullable(), - updatedAt: z.date().nullable(), - paymentDeadline: z.date().nullable(), - paymentLink: z.string().nullable(), - paymentId: z.string().nullable(), - paymentReservedAt: z.date().nullable(), - paymentChargeDeadline: z.date().nullable(), - paymentChargedAt: z.date().nullable(), - paymentRefundedAt: z.date().nullable(), - paymentCheckoutUrl: z.string().nullable(), - attendanceId: z.string().nullable(), - userId: z.string().nullable(), - attendancePoolId: z.string().nullable(), - paymentRefundedById: z.string().nullable() - }).nullable().optional(), - _max: z.object({ - id: z.string().nullable(), - userGrade: z.number().int().nullable(), - earliestReservationAt: z.date().nullable(), - attendedAt: z.date().nullable(), - createdAt: z.date().nullable(), - updatedAt: z.date().nullable(), - paymentDeadline: z.date().nullable(), - paymentLink: z.string().nullable(), - paymentId: z.string().nullable(), - paymentReservedAt: z.date().nullable(), - paymentChargeDeadline: z.date().nullable(), - paymentChargedAt: z.date().nullable(), - paymentRefundedAt: z.date().nullable(), - paymentCheckoutUrl: z.string().nullable(), - attendanceId: z.string().nullable(), - userId: z.string().nullable(), - attendancePoolId: z.string().nullable(), - paymentRefundedById: z.string().nullable() - }).nullable().optional()}); - -// File: AttendeeGroupByResult.schema.ts -export const AttendeeGroupByResultSchema = z.array(z.object({ - id: z.string(), - userGrade: z.number().int(), - selections: z.unknown(), - reserved: z.boolean(), - earliestReservationAt: z.date(), - attendedAt: z.date(), - createdAt: z.date(), - updatedAt: z.date(), - paymentDeadline: z.date(), - paymentLink: z.string(), - paymentId: z.string(), - paymentReservedAt: z.date(), - paymentChargeDeadline: z.date(), - paymentChargedAt: z.date(), - paymentRefundedAt: z.date(), - paymentCheckoutUrl: z.string(), - attendanceId: z.string(), - userId: z.string(), - attendancePoolId: z.string(), - paymentRefundedById: z.string(), - _count: z.object({ - id: z.number(), - userGrade: z.number(), - feedbackFormAnswer: z.number(), - selections: z.number(), - reserved: z.number(), - earliestReservationAt: z.number(), - attendedAt: z.number(), - createdAt: z.number(), - updatedAt: z.number(), - paymentDeadline: z.number(), - paymentLink: z.number(), - paymentId: z.number(), - paymentReservedAt: z.number(), - paymentChargeDeadline: z.number(), - paymentChargedAt: z.number(), - paymentRefundedAt: z.number(), - paymentCheckoutUrl: z.number(), - attendanceId: z.number(), - userId: z.number(), - attendancePoolId: z.number(), - paymentRefundedById: z.number(), - attendance: z.number(), - user: z.number(), - attendancePool: z.number(), - paymentRefundedBy: z.number() - }).optional(), - _sum: z.object({ - userGrade: z.number().nullable() - }).nullable().optional(), - _avg: z.object({ - userGrade: z.number().nullable() - }).nullable().optional(), - _min: z.object({ - id: z.string().nullable(), - userGrade: z.number().int().nullable(), - earliestReservationAt: z.date().nullable(), - attendedAt: z.date().nullable(), - createdAt: z.date().nullable(), - updatedAt: z.date().nullable(), - paymentDeadline: z.date().nullable(), - paymentLink: z.string().nullable(), - paymentId: z.string().nullable(), - paymentReservedAt: z.date().nullable(), - paymentChargeDeadline: z.date().nullable(), - paymentChargedAt: z.date().nullable(), - paymentRefundedAt: z.date().nullable(), - paymentCheckoutUrl: z.string().nullable(), - attendanceId: z.string().nullable(), - userId: z.string().nullable(), - attendancePoolId: z.string().nullable(), - paymentRefundedById: z.string().nullable() - }).nullable().optional(), - _max: z.object({ - id: z.string().nullable(), - userGrade: z.number().int().nullable(), - earliestReservationAt: z.date().nullable(), - attendedAt: z.date().nullable(), - createdAt: z.date().nullable(), - updatedAt: z.date().nullable(), - paymentDeadline: z.date().nullable(), - paymentLink: z.string().nullable(), - paymentId: z.string().nullable(), - paymentReservedAt: z.date().nullable(), - paymentChargeDeadline: z.date().nullable(), - paymentChargedAt: z.date().nullable(), - paymentRefundedAt: z.date().nullable(), - paymentCheckoutUrl: z.string().nullable(), - attendanceId: z.string().nullable(), - userId: z.string().nullable(), - attendancePoolId: z.string().nullable(), - paymentRefundedById: z.string().nullable() - }).nullable().optional() -})); - -// File: AttendeeCountResult.schema.ts -export const AttendeeCountResultSchema = z.number(); - -// File: EventFindUniqueResult.schema.ts -export const EventFindUniqueResultSchema = z.nullable(z.object({ - id: z.string(), - title: z.string(), - start: z.date(), - end: z.date(), - status: z.unknown(), - description: z.string(), - shortDescription: z.string().optional(), - imageUrl: z.string().optional(), - locationTitle: z.string().optional(), - locationAddress: z.string().optional(), - locationLink: z.string().optional(), - type: z.unknown(), - feedbackForm: z.unknown().optional(), - markForMissedAttendance: z.boolean(), - fadderuke: z.unknown().optional(), - createdAt: z.date(), - updatedAt: z.date(), - attendanceId: z.string().optional(), - parentId: z.string().optional(), - contestId: z.string().optional(), - attendance: z.unknown().optional(), - parent: z.unknown().optional(), - children: z.array(z.unknown()), - contest: z.unknown().optional(), - companies: z.array(z.unknown()), - hostingGroups: z.array(z.unknown()), - deregisterReasons: z.array(z.unknown()), - metadataImportId: z.number().int().optional() -})); - -// File: EventFindFirstResult.schema.ts -export const EventFindFirstResultSchema = z.nullable(z.object({ - id: z.string(), - title: z.string(), - start: z.date(), - end: z.date(), - status: z.unknown(), - description: z.string(), - shortDescription: z.string().optional(), - imageUrl: z.string().optional(), - locationTitle: z.string().optional(), - locationAddress: z.string().optional(), - locationLink: z.string().optional(), - type: z.unknown(), - feedbackForm: z.unknown().optional(), - markForMissedAttendance: z.boolean(), - fadderuke: z.unknown().optional(), - createdAt: z.date(), - updatedAt: z.date(), - attendanceId: z.string().optional(), - parentId: z.string().optional(), - contestId: z.string().optional(), - attendance: z.unknown().optional(), - parent: z.unknown().optional(), - children: z.array(z.unknown()), - contest: z.unknown().optional(), - companies: z.array(z.unknown()), - hostingGroups: z.array(z.unknown()), - deregisterReasons: z.array(z.unknown()), - metadataImportId: z.number().int().optional() -})); - -// File: EventFindManyResult.schema.ts -export const EventFindManyResultSchema = z.object({ - data: z.array(z.object({ - id: z.string(), - title: z.string(), - start: z.date(), - end: z.date(), - status: z.unknown(), - description: z.string(), - shortDescription: z.string().optional(), - imageUrl: z.string().optional(), - locationTitle: z.string().optional(), - locationAddress: z.string().optional(), - locationLink: z.string().optional(), - type: z.unknown(), - feedbackForm: z.unknown().optional(), - markForMissedAttendance: z.boolean(), - fadderuke: z.unknown().optional(), - createdAt: z.date(), - updatedAt: z.date(), - attendanceId: z.string().optional(), - parentId: z.string().optional(), - contestId: z.string().optional(), - attendance: z.unknown().optional(), - parent: z.unknown().optional(), - children: z.array(z.unknown()), - contest: z.unknown().optional(), - companies: z.array(z.unknown()), - hostingGroups: z.array(z.unknown()), - deregisterReasons: z.array(z.unknown()), - metadataImportId: z.number().int().optional() -})), - pagination: z.object({ - page: z.number().int().min(1), - pageSize: z.number().int().min(1), - total: z.number().int().min(0), - totalPages: z.number().int().min(0), - hasNext: z.boolean(), - hasPrev: z.boolean() -}) -}); - -// File: EventCreateResult.schema.ts -export const EventCreateResultSchema = z.object({ - id: z.string(), - title: z.string(), - start: z.date(), - end: z.date(), - status: z.unknown(), - description: z.string(), - shortDescription: z.string().optional(), - imageUrl: z.string().optional(), - locationTitle: z.string().optional(), - locationAddress: z.string().optional(), - locationLink: z.string().optional(), - type: z.unknown(), - feedbackForm: z.unknown().optional(), - markForMissedAttendance: z.boolean(), - fadderuke: z.unknown().optional(), - createdAt: z.date(), - updatedAt: z.date(), - attendanceId: z.string().optional(), - parentId: z.string().optional(), - contestId: z.string().optional(), - attendance: z.unknown().optional(), - parent: z.unknown().optional(), - children: z.array(z.unknown()), - contest: z.unknown().optional(), - companies: z.array(z.unknown()), - hostingGroups: z.array(z.unknown()), - deregisterReasons: z.array(z.unknown()), - metadataImportId: z.number().int().optional() -}); - -// File: EventCreateManyResult.schema.ts -export const EventCreateManyResultSchema = z.object({ - count: z.number() -}); - -// File: EventUpdateResult.schema.ts -export const EventUpdateResultSchema = z.nullable(z.object({ - id: z.string(), - title: z.string(), - start: z.date(), - end: z.date(), - status: z.unknown(), - description: z.string(), - shortDescription: z.string().optional(), - imageUrl: z.string().optional(), - locationTitle: z.string().optional(), - locationAddress: z.string().optional(), - locationLink: z.string().optional(), - type: z.unknown(), - feedbackForm: z.unknown().optional(), - markForMissedAttendance: z.boolean(), - fadderuke: z.unknown().optional(), - createdAt: z.date(), - updatedAt: z.date(), - attendanceId: z.string().optional(), - parentId: z.string().optional(), - contestId: z.string().optional(), - attendance: z.unknown().optional(), - parent: z.unknown().optional(), - children: z.array(z.unknown()), - contest: z.unknown().optional(), - companies: z.array(z.unknown()), - hostingGroups: z.array(z.unknown()), - deregisterReasons: z.array(z.unknown()), - metadataImportId: z.number().int().optional() -})); - -// File: EventUpdateManyResult.schema.ts -export const EventUpdateManyResultSchema = z.object({ - count: z.number() -}); - -// File: EventUpsertResult.schema.ts -export const EventUpsertResultSchema = z.object({ - id: z.string(), - title: z.string(), - start: z.date(), - end: z.date(), - status: z.unknown(), - description: z.string(), - shortDescription: z.string().optional(), - imageUrl: z.string().optional(), - locationTitle: z.string().optional(), - locationAddress: z.string().optional(), - locationLink: z.string().optional(), - type: z.unknown(), - feedbackForm: z.unknown().optional(), - markForMissedAttendance: z.boolean(), - fadderuke: z.unknown().optional(), - createdAt: z.date(), - updatedAt: z.date(), - attendanceId: z.string().optional(), - parentId: z.string().optional(), - contestId: z.string().optional(), - attendance: z.unknown().optional(), - parent: z.unknown().optional(), - children: z.array(z.unknown()), - contest: z.unknown().optional(), - companies: z.array(z.unknown()), - hostingGroups: z.array(z.unknown()), - deregisterReasons: z.array(z.unknown()), - metadataImportId: z.number().int().optional() -}); - -// File: EventDeleteResult.schema.ts -export const EventDeleteResultSchema = z.nullable(z.object({ - id: z.string(), - title: z.string(), - start: z.date(), - end: z.date(), - status: z.unknown(), - description: z.string(), - shortDescription: z.string().optional(), - imageUrl: z.string().optional(), - locationTitle: z.string().optional(), - locationAddress: z.string().optional(), - locationLink: z.string().optional(), - type: z.unknown(), - feedbackForm: z.unknown().optional(), - markForMissedAttendance: z.boolean(), - fadderuke: z.unknown().optional(), - createdAt: z.date(), - updatedAt: z.date(), - attendanceId: z.string().optional(), - parentId: z.string().optional(), - contestId: z.string().optional(), - attendance: z.unknown().optional(), - parent: z.unknown().optional(), - children: z.array(z.unknown()), - contest: z.unknown().optional(), - companies: z.array(z.unknown()), - hostingGroups: z.array(z.unknown()), - deregisterReasons: z.array(z.unknown()), - metadataImportId: z.number().int().optional() -})); - -// File: EventDeleteManyResult.schema.ts -export const EventDeleteManyResultSchema = z.object({ - count: z.number() -}); - -// File: EventAggregateResult.schema.ts -export const EventAggregateResultSchema = z.object({ _count: z.object({ - id: z.number(), - title: z.number(), - start: z.number(), - end: z.number(), - status: z.number(), - description: z.number(), - shortDescription: z.number(), - imageUrl: z.number(), - locationTitle: z.number(), - locationAddress: z.number(), - locationLink: z.number(), - type: z.number(), - feedbackForm: z.number(), - markForMissedAttendance: z.number(), - fadderuke: z.number(), - createdAt: z.number(), - updatedAt: z.number(), - attendanceId: z.number(), - parentId: z.number(), - contestId: z.number(), - attendance: z.number(), - parent: z.number(), - children: z.number(), - contest: z.number(), - companies: z.number(), - hostingGroups: z.number(), - deregisterReasons: z.number(), - metadataImportId: z.number() - }).optional(), - _sum: z.object({ - metadataImportId: z.number().nullable() - }).nullable().optional(), - _avg: z.object({ - metadataImportId: z.number().nullable() - }).nullable().optional(), - _min: z.object({ - id: z.string().nullable(), - title: z.string().nullable(), - start: z.date().nullable(), - end: z.date().nullable(), - description: z.string().nullable(), - shortDescription: z.string().nullable(), - imageUrl: z.string().nullable(), - locationTitle: z.string().nullable(), - locationAddress: z.string().nullable(), - locationLink: z.string().nullable(), - createdAt: z.date().nullable(), - updatedAt: z.date().nullable(), - attendanceId: z.string().nullable(), - parentId: z.string().nullable(), - contestId: z.string().nullable(), - metadataImportId: z.number().int().nullable() - }).nullable().optional(), - _max: z.object({ - id: z.string().nullable(), - title: z.string().nullable(), - start: z.date().nullable(), - end: z.date().nullable(), - description: z.string().nullable(), - shortDescription: z.string().nullable(), - imageUrl: z.string().nullable(), - locationTitle: z.string().nullable(), - locationAddress: z.string().nullable(), - locationLink: z.string().nullable(), - createdAt: z.date().nullable(), - updatedAt: z.date().nullable(), - attendanceId: z.string().nullable(), - parentId: z.string().nullable(), - contestId: z.string().nullable(), - metadataImportId: z.number().int().nullable() - }).nullable().optional()}); - -// File: EventGroupByResult.schema.ts -export const EventGroupByResultSchema = z.array(z.object({ - id: z.string(), - title: z.string(), - start: z.date(), - end: z.date(), - description: z.string(), - shortDescription: z.string(), - imageUrl: z.string(), - locationTitle: z.string(), - locationAddress: z.string(), - locationLink: z.string(), - markForMissedAttendance: z.boolean(), - createdAt: z.date(), - updatedAt: z.date(), - attendanceId: z.string(), - parentId: z.string(), - contestId: z.string(), - metadataImportId: z.number().int(), - _count: z.object({ - id: z.number(), - title: z.number(), - start: z.number(), - end: z.number(), - status: z.number(), - description: z.number(), - shortDescription: z.number(), - imageUrl: z.number(), - locationTitle: z.number(), - locationAddress: z.number(), - locationLink: z.number(), - type: z.number(), - feedbackForm: z.number(), - markForMissedAttendance: z.number(), - fadderuke: z.number(), - createdAt: z.number(), - updatedAt: z.number(), - attendanceId: z.number(), - parentId: z.number(), - contestId: z.number(), - attendance: z.number(), - parent: z.number(), - children: z.number(), - contest: z.number(), - companies: z.number(), - hostingGroups: z.number(), - deregisterReasons: z.number(), - metadataImportId: z.number() - }).optional(), - _sum: z.object({ - metadataImportId: z.number().nullable() - }).nullable().optional(), - _avg: z.object({ - metadataImportId: z.number().nullable() - }).nullable().optional(), - _min: z.object({ - id: z.string().nullable(), - title: z.string().nullable(), - start: z.date().nullable(), - end: z.date().nullable(), - description: z.string().nullable(), - shortDescription: z.string().nullable(), - imageUrl: z.string().nullable(), - locationTitle: z.string().nullable(), - locationAddress: z.string().nullable(), - locationLink: z.string().nullable(), - createdAt: z.date().nullable(), - updatedAt: z.date().nullable(), - attendanceId: z.string().nullable(), - parentId: z.string().nullable(), - contestId: z.string().nullable(), - metadataImportId: z.number().int().nullable() - }).nullable().optional(), - _max: z.object({ - id: z.string().nullable(), - title: z.string().nullable(), - start: z.date().nullable(), - end: z.date().nullable(), - description: z.string().nullable(), - shortDescription: z.string().nullable(), - imageUrl: z.string().nullable(), - locationTitle: z.string().nullable(), - locationAddress: z.string().nullable(), - locationLink: z.string().nullable(), - createdAt: z.date().nullable(), - updatedAt: z.date().nullable(), - attendanceId: z.string().nullable(), - parentId: z.string().nullable(), - contestId: z.string().nullable(), - metadataImportId: z.number().int().nullable() - }).nullable().optional() -})); - -// File: EventCountResult.schema.ts -export const EventCountResultSchema = z.number(); - -// File: EventCompanyFindUniqueResult.schema.ts -export const EventCompanyFindUniqueResultSchema = z.nullable(z.object({ - eventId: z.string(), - companyId: z.string(), - event: z.unknown(), - company: z.unknown() -})); - -// File: EventCompanyFindFirstResult.schema.ts -export const EventCompanyFindFirstResultSchema = z.nullable(z.object({ - eventId: z.string(), - companyId: z.string(), - event: z.unknown(), - company: z.unknown() -})); - -// File: EventCompanyFindManyResult.schema.ts -export const EventCompanyFindManyResultSchema = z.object({ - data: z.array(z.object({ - eventId: z.string(), - companyId: z.string(), - event: z.unknown(), - company: z.unknown() -})), - pagination: z.object({ - page: z.number().int().min(1), - pageSize: z.number().int().min(1), - total: z.number().int().min(0), - totalPages: z.number().int().min(0), - hasNext: z.boolean(), - hasPrev: z.boolean() -}) -}); - -// File: EventCompanyCreateResult.schema.ts -export const EventCompanyCreateResultSchema = z.object({ - eventId: z.string(), - companyId: z.string(), - event: z.unknown(), - company: z.unknown() -}); - -// File: EventCompanyCreateManyResult.schema.ts -export const EventCompanyCreateManyResultSchema = z.object({ - count: z.number() -}); - -// File: EventCompanyUpdateResult.schema.ts -export const EventCompanyUpdateResultSchema = z.nullable(z.object({ - eventId: z.string(), - companyId: z.string(), - event: z.unknown(), - company: z.unknown() -})); - -// File: EventCompanyUpdateManyResult.schema.ts -export const EventCompanyUpdateManyResultSchema = z.object({ - count: z.number() -}); - -// File: EventCompanyUpsertResult.schema.ts -export const EventCompanyUpsertResultSchema = z.object({ - eventId: z.string(), - companyId: z.string(), - event: z.unknown(), - company: z.unknown() -}); - -// File: EventCompanyDeleteResult.schema.ts -export const EventCompanyDeleteResultSchema = z.nullable(z.object({ - eventId: z.string(), - companyId: z.string(), - event: z.unknown(), - company: z.unknown() -})); - -// File: EventCompanyDeleteManyResult.schema.ts -export const EventCompanyDeleteManyResultSchema = z.object({ - count: z.number() -}); - -// File: EventCompanyAggregateResult.schema.ts -export const EventCompanyAggregateResultSchema = z.object({ _count: z.object({ - eventId: z.number(), - companyId: z.number(), - event: z.number(), - company: z.number() - }).optional(), - _min: z.object({ - eventId: z.string().nullable(), - companyId: z.string().nullable() - }).nullable().optional(), - _max: z.object({ - eventId: z.string().nullable(), - companyId: z.string().nullable() - }).nullable().optional()}); - -// File: EventCompanyGroupByResult.schema.ts -export const EventCompanyGroupByResultSchema = z.array(z.object({ - eventId: z.string(), - companyId: z.string(), - _count: z.object({ - eventId: z.number(), - companyId: z.number(), - event: z.number(), - company: z.number() - }).optional(), - _min: z.object({ - eventId: z.string().nullable(), - companyId: z.string().nullable() - }).nullable().optional(), - _max: z.object({ - eventId: z.string().nullable(), - companyId: z.string().nullable() - }).nullable().optional() -})); - -// File: EventCompanyCountResult.schema.ts -export const EventCompanyCountResultSchema = z.number(); - -// File: MarkFindUniqueResult.schema.ts -export const MarkFindUniqueResultSchema = z.nullable(z.object({ - id: z.string(), - title: z.string(), - details: z.string().optional(), - duration: z.number().int(), - weight: z.number().int(), - type: z.unknown(), - createdAt: z.date(), - updatedAt: z.date(), - users: z.array(z.unknown()), - groups: z.array(z.unknown()) -})); - -// File: MarkFindFirstResult.schema.ts -export const MarkFindFirstResultSchema = z.nullable(z.object({ - id: z.string(), - title: z.string(), - details: z.string().optional(), - duration: z.number().int(), - weight: z.number().int(), - type: z.unknown(), - createdAt: z.date(), - updatedAt: z.date(), - users: z.array(z.unknown()), - groups: z.array(z.unknown()) -})); - -// File: MarkFindManyResult.schema.ts -export const MarkFindManyResultSchema = z.object({ - data: z.array(z.object({ - id: z.string(), - title: z.string(), - details: z.string().optional(), - duration: z.number().int(), - weight: z.number().int(), - type: z.unknown(), - createdAt: z.date(), - updatedAt: z.date(), - users: z.array(z.unknown()), - groups: z.array(z.unknown()) -})), - pagination: z.object({ - page: z.number().int().min(1), - pageSize: z.number().int().min(1), - total: z.number().int().min(0), - totalPages: z.number().int().min(0), - hasNext: z.boolean(), - hasPrev: z.boolean() -}) -}); - -// File: MarkCreateResult.schema.ts -export const MarkCreateResultSchema = z.object({ - id: z.string(), - title: z.string(), - details: z.string().optional(), - duration: z.number().int(), - weight: z.number().int(), - type: z.unknown(), - createdAt: z.date(), - updatedAt: z.date(), - users: z.array(z.unknown()), - groups: z.array(z.unknown()) -}); - -// File: MarkCreateManyResult.schema.ts -export const MarkCreateManyResultSchema = z.object({ - count: z.number() -}); - -// File: MarkUpdateResult.schema.ts -export const MarkUpdateResultSchema = z.nullable(z.object({ - id: z.string(), - title: z.string(), - details: z.string().optional(), - duration: z.number().int(), - weight: z.number().int(), - type: z.unknown(), - createdAt: z.date(), - updatedAt: z.date(), - users: z.array(z.unknown()), - groups: z.array(z.unknown()) -})); - -// File: MarkUpdateManyResult.schema.ts -export const MarkUpdateManyResultSchema = z.object({ - count: z.number() -}); - -// File: MarkUpsertResult.schema.ts -export const MarkUpsertResultSchema = z.object({ - id: z.string(), - title: z.string(), - details: z.string().optional(), - duration: z.number().int(), - weight: z.number().int(), - type: z.unknown(), - createdAt: z.date(), - updatedAt: z.date(), - users: z.array(z.unknown()), - groups: z.array(z.unknown()) -}); - -// File: MarkDeleteResult.schema.ts -export const MarkDeleteResultSchema = z.nullable(z.object({ - id: z.string(), - title: z.string(), - details: z.string().optional(), - duration: z.number().int(), - weight: z.number().int(), - type: z.unknown(), - createdAt: z.date(), - updatedAt: z.date(), - users: z.array(z.unknown()), - groups: z.array(z.unknown()) -})); - -// File: MarkDeleteManyResult.schema.ts -export const MarkDeleteManyResultSchema = z.object({ - count: z.number() -}); - -// File: MarkAggregateResult.schema.ts -export const MarkAggregateResultSchema = z.object({ _count: z.object({ - id: z.number(), - title: z.number(), - details: z.number(), - duration: z.number(), - weight: z.number(), - type: z.number(), - createdAt: z.number(), - updatedAt: z.number(), - users: z.number(), - groups: z.number() - }).optional(), - _sum: z.object({ - duration: z.number().nullable(), - weight: z.number().nullable() - }).nullable().optional(), - _avg: z.object({ - duration: z.number().nullable(), - weight: z.number().nullable() - }).nullable().optional(), - _min: z.object({ - id: z.string().nullable(), - title: z.string().nullable(), - details: z.string().nullable(), - duration: z.number().int().nullable(), - weight: z.number().int().nullable(), - createdAt: z.date().nullable(), - updatedAt: z.date().nullable() - }).nullable().optional(), - _max: z.object({ - id: z.string().nullable(), - title: z.string().nullable(), - details: z.string().nullable(), - duration: z.number().int().nullable(), - weight: z.number().int().nullable(), - createdAt: z.date().nullable(), - updatedAt: z.date().nullable() - }).nullable().optional()}); - -// File: MarkGroupByResult.schema.ts -export const MarkGroupByResultSchema = z.array(z.object({ - id: z.string(), - title: z.string(), - details: z.string(), - duration: z.number().int(), - weight: z.number().int(), - createdAt: z.date(), - updatedAt: z.date(), - _count: z.object({ - id: z.number(), - title: z.number(), - details: z.number(), - duration: z.number(), - weight: z.number(), - type: z.number(), - createdAt: z.number(), - updatedAt: z.number(), - users: z.number(), - groups: z.number() - }).optional(), - _sum: z.object({ - duration: z.number().nullable(), - weight: z.number().nullable() - }).nullable().optional(), - _avg: z.object({ - duration: z.number().nullable(), - weight: z.number().nullable() - }).nullable().optional(), - _min: z.object({ - id: z.string().nullable(), - title: z.string().nullable(), - details: z.string().nullable(), - duration: z.number().int().nullable(), - weight: z.number().int().nullable(), - createdAt: z.date().nullable(), - updatedAt: z.date().nullable() - }).nullable().optional(), - _max: z.object({ - id: z.string().nullable(), - title: z.string().nullable(), - details: z.string().nullable(), - duration: z.number().int().nullable(), - weight: z.number().int().nullable(), - createdAt: z.date().nullable(), - updatedAt: z.date().nullable() - }).nullable().optional() -})); - -// File: MarkCountResult.schema.ts -export const MarkCountResultSchema = z.number(); - -// File: MarkGroupFindUniqueResult.schema.ts -export const MarkGroupFindUniqueResultSchema = z.nullable(z.object({ - markId: z.string(), - groupId: z.string(), - mark: z.unknown(), - group: z.unknown() -})); - -// File: MarkGroupFindFirstResult.schema.ts -export const MarkGroupFindFirstResultSchema = z.nullable(z.object({ - markId: z.string(), - groupId: z.string(), - mark: z.unknown(), - group: z.unknown() -})); - -// File: MarkGroupFindManyResult.schema.ts -export const MarkGroupFindManyResultSchema = z.object({ - data: z.array(z.object({ - markId: z.string(), - groupId: z.string(), - mark: z.unknown(), - group: z.unknown() -})), - pagination: z.object({ - page: z.number().int().min(1), - pageSize: z.number().int().min(1), - total: z.number().int().min(0), - totalPages: z.number().int().min(0), - hasNext: z.boolean(), - hasPrev: z.boolean() -}) -}); - -// File: MarkGroupCreateResult.schema.ts -export const MarkGroupCreateResultSchema = z.object({ - markId: z.string(), - groupId: z.string(), - mark: z.unknown(), - group: z.unknown() -}); - -// File: MarkGroupCreateManyResult.schema.ts -export const MarkGroupCreateManyResultSchema = z.object({ - count: z.number() -}); - -// File: MarkGroupUpdateResult.schema.ts -export const MarkGroupUpdateResultSchema = z.nullable(z.object({ - markId: z.string(), - groupId: z.string(), - mark: z.unknown(), - group: z.unknown() -})); - -// File: MarkGroupUpdateManyResult.schema.ts -export const MarkGroupUpdateManyResultSchema = z.object({ - count: z.number() -}); - -// File: MarkGroupUpsertResult.schema.ts -export const MarkGroupUpsertResultSchema = z.object({ - markId: z.string(), - groupId: z.string(), - mark: z.unknown(), - group: z.unknown() -}); - -// File: MarkGroupDeleteResult.schema.ts -export const MarkGroupDeleteResultSchema = z.nullable(z.object({ - markId: z.string(), - groupId: z.string(), - mark: z.unknown(), - group: z.unknown() -})); - -// File: MarkGroupDeleteManyResult.schema.ts -export const MarkGroupDeleteManyResultSchema = z.object({ - count: z.number() -}); - -// File: MarkGroupAggregateResult.schema.ts -export const MarkGroupAggregateResultSchema = z.object({ _count: z.object({ - markId: z.number(), - groupId: z.number(), - mark: z.number(), - group: z.number() - }).optional(), - _min: z.object({ - markId: z.string().nullable(), - groupId: z.string().nullable() - }).nullable().optional(), - _max: z.object({ - markId: z.string().nullable(), - groupId: z.string().nullable() - }).nullable().optional()}); - -// File: MarkGroupGroupByResult.schema.ts -export const MarkGroupGroupByResultSchema = z.array(z.object({ - markId: z.string(), - groupId: z.string(), - _count: z.object({ - markId: z.number(), - groupId: z.number(), - mark: z.number(), - group: z.number() - }).optional(), - _min: z.object({ - markId: z.string().nullable(), - groupId: z.string().nullable() - }).nullable().optional(), - _max: z.object({ - markId: z.string().nullable(), - groupId: z.string().nullable() - }).nullable().optional() -})); - -// File: MarkGroupCountResult.schema.ts -export const MarkGroupCountResultSchema = z.number(); - -// File: PersonalMarkFindUniqueResult.schema.ts -export const PersonalMarkFindUniqueResultSchema = z.nullable(z.object({ - createdAt: z.date(), - markId: z.string(), - userId: z.string(), - givenById: z.string().optional(), - mark: z.unknown(), - user: z.unknown(), - givenBy: z.unknown().optional() -})); - -// File: PersonalMarkFindFirstResult.schema.ts -export const PersonalMarkFindFirstResultSchema = z.nullable(z.object({ - createdAt: z.date(), - markId: z.string(), - userId: z.string(), - givenById: z.string().optional(), - mark: z.unknown(), - user: z.unknown(), - givenBy: z.unknown().optional() -})); - -// File: PersonalMarkFindManyResult.schema.ts -export const PersonalMarkFindManyResultSchema = z.object({ - data: z.array(z.object({ - createdAt: z.date(), - markId: z.string(), - userId: z.string(), - givenById: z.string().optional(), - mark: z.unknown(), - user: z.unknown(), - givenBy: z.unknown().optional() -})), - pagination: z.object({ - page: z.number().int().min(1), - pageSize: z.number().int().min(1), - total: z.number().int().min(0), - totalPages: z.number().int().min(0), - hasNext: z.boolean(), - hasPrev: z.boolean() -}) -}); - -// File: PersonalMarkCreateResult.schema.ts -export const PersonalMarkCreateResultSchema = z.object({ - createdAt: z.date(), - markId: z.string(), - userId: z.string(), - givenById: z.string().optional(), - mark: z.unknown(), - user: z.unknown(), - givenBy: z.unknown().optional() -}); - -// File: PersonalMarkCreateManyResult.schema.ts -export const PersonalMarkCreateManyResultSchema = z.object({ - count: z.number() -}); - -// File: PersonalMarkUpdateResult.schema.ts -export const PersonalMarkUpdateResultSchema = z.nullable(z.object({ - createdAt: z.date(), - markId: z.string(), - userId: z.string(), - givenById: z.string().optional(), - mark: z.unknown(), - user: z.unknown(), - givenBy: z.unknown().optional() -})); - -// File: PersonalMarkUpdateManyResult.schema.ts -export const PersonalMarkUpdateManyResultSchema = z.object({ - count: z.number() -}); - -// File: PersonalMarkUpsertResult.schema.ts -export const PersonalMarkUpsertResultSchema = z.object({ - createdAt: z.date(), - markId: z.string(), - userId: z.string(), - givenById: z.string().optional(), - mark: z.unknown(), - user: z.unknown(), - givenBy: z.unknown().optional() -}); - -// File: PersonalMarkDeleteResult.schema.ts -export const PersonalMarkDeleteResultSchema = z.nullable(z.object({ - createdAt: z.date(), - markId: z.string(), - userId: z.string(), - givenById: z.string().optional(), - mark: z.unknown(), - user: z.unknown(), - givenBy: z.unknown().optional() -})); - -// File: PersonalMarkDeleteManyResult.schema.ts -export const PersonalMarkDeleteManyResultSchema = z.object({ - count: z.number() -}); - -// File: PersonalMarkAggregateResult.schema.ts -export const PersonalMarkAggregateResultSchema = z.object({ _count: z.object({ - createdAt: z.number(), - markId: z.number(), - userId: z.number(), - givenById: z.number(), - mark: z.number(), - user: z.number(), - givenBy: z.number() - }).optional(), - _min: z.object({ - createdAt: z.date().nullable(), - markId: z.string().nullable(), - userId: z.string().nullable(), - givenById: z.string().nullable() - }).nullable().optional(), - _max: z.object({ - createdAt: z.date().nullable(), - markId: z.string().nullable(), - userId: z.string().nullable(), - givenById: z.string().nullable() - }).nullable().optional()}); - -// File: PersonalMarkGroupByResult.schema.ts -export const PersonalMarkGroupByResultSchema = z.array(z.object({ - createdAt: z.date(), - markId: z.string(), - userId: z.string(), - givenById: z.string(), - _count: z.object({ - createdAt: z.number(), - markId: z.number(), - userId: z.number(), - givenById: z.number(), - mark: z.number(), - user: z.number(), - givenBy: z.number() - }).optional(), - _min: z.object({ - createdAt: z.date().nullable(), - markId: z.string().nullable(), - userId: z.string().nullable(), - givenById: z.string().nullable() - }).nullable().optional(), - _max: z.object({ - createdAt: z.date().nullable(), - markId: z.string().nullable(), - userId: z.string().nullable(), - givenById: z.string().nullable() - }).nullable().optional() -})); - -// File: PersonalMarkCountResult.schema.ts -export const PersonalMarkCountResultSchema = z.number(); - -// File: PrivacyPermissionsFindUniqueResult.schema.ts -export const PrivacyPermissionsFindUniqueResultSchema = z.nullable(z.object({ - id: z.string(), - user: z.unknown(), - userId: z.string(), - profileVisible: z.boolean(), - usernameVisible: z.boolean(), - emailVisible: z.boolean(), - phoneVisible: z.boolean(), - addressVisible: z.boolean(), - attendanceVisible: z.boolean(), - createdAt: z.date(), - updatedAt: z.date() -})); - -// File: PrivacyPermissionsFindFirstResult.schema.ts -export const PrivacyPermissionsFindFirstResultSchema = z.nullable(z.object({ - id: z.string(), - user: z.unknown(), - userId: z.string(), - profileVisible: z.boolean(), - usernameVisible: z.boolean(), - emailVisible: z.boolean(), - phoneVisible: z.boolean(), - addressVisible: z.boolean(), - attendanceVisible: z.boolean(), - createdAt: z.date(), - updatedAt: z.date() -})); - -// File: PrivacyPermissionsFindManyResult.schema.ts -export const PrivacyPermissionsFindManyResultSchema = z.object({ - data: z.array(z.object({ - id: z.string(), - user: z.unknown(), - userId: z.string(), - profileVisible: z.boolean(), - usernameVisible: z.boolean(), - emailVisible: z.boolean(), - phoneVisible: z.boolean(), - addressVisible: z.boolean(), - attendanceVisible: z.boolean(), - createdAt: z.date(), - updatedAt: z.date() -})), - pagination: z.object({ - page: z.number().int().min(1), - pageSize: z.number().int().min(1), - total: z.number().int().min(0), - totalPages: z.number().int().min(0), - hasNext: z.boolean(), - hasPrev: z.boolean() -}) -}); - -// File: PrivacyPermissionsCreateResult.schema.ts -export const PrivacyPermissionsCreateResultSchema = z.object({ - id: z.string(), - user: z.unknown(), - userId: z.string(), - profileVisible: z.boolean(), - usernameVisible: z.boolean(), - emailVisible: z.boolean(), - phoneVisible: z.boolean(), - addressVisible: z.boolean(), - attendanceVisible: z.boolean(), - createdAt: z.date(), - updatedAt: z.date() -}); - -// File: PrivacyPermissionsCreateManyResult.schema.ts -export const PrivacyPermissionsCreateManyResultSchema = z.object({ - count: z.number() -}); - -// File: PrivacyPermissionsUpdateResult.schema.ts -export const PrivacyPermissionsUpdateResultSchema = z.nullable(z.object({ - id: z.string(), - user: z.unknown(), - userId: z.string(), - profileVisible: z.boolean(), - usernameVisible: z.boolean(), - emailVisible: z.boolean(), - phoneVisible: z.boolean(), - addressVisible: z.boolean(), - attendanceVisible: z.boolean(), - createdAt: z.date(), - updatedAt: z.date() -})); - -// File: PrivacyPermissionsUpdateManyResult.schema.ts -export const PrivacyPermissionsUpdateManyResultSchema = z.object({ - count: z.number() -}); - -// File: PrivacyPermissionsUpsertResult.schema.ts -export const PrivacyPermissionsUpsertResultSchema = z.object({ - id: z.string(), - user: z.unknown(), - userId: z.string(), - profileVisible: z.boolean(), - usernameVisible: z.boolean(), - emailVisible: z.boolean(), - phoneVisible: z.boolean(), - addressVisible: z.boolean(), - attendanceVisible: z.boolean(), - createdAt: z.date(), - updatedAt: z.date() -}); - -// File: PrivacyPermissionsDeleteResult.schema.ts -export const PrivacyPermissionsDeleteResultSchema = z.nullable(z.object({ - id: z.string(), - user: z.unknown(), - userId: z.string(), - profileVisible: z.boolean(), - usernameVisible: z.boolean(), - emailVisible: z.boolean(), - phoneVisible: z.boolean(), - addressVisible: z.boolean(), - attendanceVisible: z.boolean(), - createdAt: z.date(), - updatedAt: z.date() -})); - -// File: PrivacyPermissionsDeleteManyResult.schema.ts -export const PrivacyPermissionsDeleteManyResultSchema = z.object({ - count: z.number() -}); - -// File: PrivacyPermissionsAggregateResult.schema.ts -export const PrivacyPermissionsAggregateResultSchema = z.object({ _count: z.object({ - id: z.number(), - user: z.number(), - userId: z.number(), - profileVisible: z.number(), - usernameVisible: z.number(), - emailVisible: z.number(), - phoneVisible: z.number(), - addressVisible: z.number(), - attendanceVisible: z.number(), - createdAt: z.number(), - updatedAt: z.number() - }).optional(), - _min: z.object({ - id: z.string().nullable(), - userId: z.string().nullable(), - createdAt: z.date().nullable(), - updatedAt: z.date().nullable() - }).nullable().optional(), - _max: z.object({ - id: z.string().nullable(), - userId: z.string().nullable(), - createdAt: z.date().nullable(), - updatedAt: z.date().nullable() - }).nullable().optional()}); - -// File: PrivacyPermissionsGroupByResult.schema.ts -export const PrivacyPermissionsGroupByResultSchema = z.array(z.object({ - id: z.string(), - userId: z.string(), - profileVisible: z.boolean(), - usernameVisible: z.boolean(), - emailVisible: z.boolean(), - phoneVisible: z.boolean(), - addressVisible: z.boolean(), - attendanceVisible: z.boolean(), - createdAt: z.date(), - updatedAt: z.date(), - _count: z.object({ - id: z.number(), - user: z.number(), - userId: z.number(), - profileVisible: z.number(), - usernameVisible: z.number(), - emailVisible: z.number(), - phoneVisible: z.number(), - addressVisible: z.number(), - attendanceVisible: z.number(), - createdAt: z.number(), - updatedAt: z.number() - }).optional(), - _min: z.object({ - id: z.string().nullable(), - userId: z.string().nullable(), - createdAt: z.date().nullable(), - updatedAt: z.date().nullable() - }).nullable().optional(), - _max: z.object({ - id: z.string().nullable(), - userId: z.string().nullable(), - createdAt: z.date().nullable(), - updatedAt: z.date().nullable() - }).nullable().optional() -})); - -// File: PrivacyPermissionsCountResult.schema.ts -export const PrivacyPermissionsCountResultSchema = z.number(); - -// File: NotificationPermissionsFindUniqueResult.schema.ts -export const NotificationPermissionsFindUniqueResultSchema = z.nullable(z.object({ - id: z.string(), - user: z.unknown(), - userId: z.string(), - applications: z.boolean(), - newArticles: z.boolean(), - standardNotifications: z.boolean(), - groupMessages: z.boolean(), - markRulesUpdates: z.boolean(), - receipts: z.boolean(), - registrationByAdministrator: z.boolean(), - registrationStart: z.boolean(), - createdAt: z.date(), - updatedAt: z.date() -})); - -// File: NotificationPermissionsFindFirstResult.schema.ts -export const NotificationPermissionsFindFirstResultSchema = z.nullable(z.object({ - id: z.string(), - user: z.unknown(), - userId: z.string(), - applications: z.boolean(), - newArticles: z.boolean(), - standardNotifications: z.boolean(), - groupMessages: z.boolean(), - markRulesUpdates: z.boolean(), - receipts: z.boolean(), - registrationByAdministrator: z.boolean(), - registrationStart: z.boolean(), - createdAt: z.date(), - updatedAt: z.date() -})); - -// File: NotificationPermissionsFindManyResult.schema.ts -export const NotificationPermissionsFindManyResultSchema = z.object({ - data: z.array(z.object({ - id: z.string(), - user: z.unknown(), - userId: z.string(), - applications: z.boolean(), - newArticles: z.boolean(), - standardNotifications: z.boolean(), - groupMessages: z.boolean(), - markRulesUpdates: z.boolean(), - receipts: z.boolean(), - registrationByAdministrator: z.boolean(), - registrationStart: z.boolean(), - createdAt: z.date(), - updatedAt: z.date() -})), - pagination: z.object({ - page: z.number().int().min(1), - pageSize: z.number().int().min(1), - total: z.number().int().min(0), - totalPages: z.number().int().min(0), - hasNext: z.boolean(), - hasPrev: z.boolean() -}) -}); - -// File: NotificationPermissionsCreateResult.schema.ts -export const NotificationPermissionsCreateResultSchema = z.object({ - id: z.string(), - user: z.unknown(), - userId: z.string(), - applications: z.boolean(), - newArticles: z.boolean(), - standardNotifications: z.boolean(), - groupMessages: z.boolean(), - markRulesUpdates: z.boolean(), - receipts: z.boolean(), - registrationByAdministrator: z.boolean(), - registrationStart: z.boolean(), - createdAt: z.date(), - updatedAt: z.date() -}); - -// File: NotificationPermissionsCreateManyResult.schema.ts -export const NotificationPermissionsCreateManyResultSchema = z.object({ - count: z.number() -}); - -// File: NotificationPermissionsUpdateResult.schema.ts -export const NotificationPermissionsUpdateResultSchema = z.nullable(z.object({ - id: z.string(), - user: z.unknown(), - userId: z.string(), - applications: z.boolean(), - newArticles: z.boolean(), - standardNotifications: z.boolean(), - groupMessages: z.boolean(), - markRulesUpdates: z.boolean(), - receipts: z.boolean(), - registrationByAdministrator: z.boolean(), - registrationStart: z.boolean(), - createdAt: z.date(), - updatedAt: z.date() -})); - -// File: NotificationPermissionsUpdateManyResult.schema.ts -export const NotificationPermissionsUpdateManyResultSchema = z.object({ - count: z.number() -}); - -// File: NotificationPermissionsUpsertResult.schema.ts -export const NotificationPermissionsUpsertResultSchema = z.object({ - id: z.string(), - user: z.unknown(), - userId: z.string(), - applications: z.boolean(), - newArticles: z.boolean(), - standardNotifications: z.boolean(), - groupMessages: z.boolean(), - markRulesUpdates: z.boolean(), - receipts: z.boolean(), - registrationByAdministrator: z.boolean(), - registrationStart: z.boolean(), - createdAt: z.date(), - updatedAt: z.date() -}); - -// File: NotificationPermissionsDeleteResult.schema.ts -export const NotificationPermissionsDeleteResultSchema = z.nullable(z.object({ - id: z.string(), - user: z.unknown(), - userId: z.string(), - applications: z.boolean(), - newArticles: z.boolean(), - standardNotifications: z.boolean(), - groupMessages: z.boolean(), - markRulesUpdates: z.boolean(), - receipts: z.boolean(), - registrationByAdministrator: z.boolean(), - registrationStart: z.boolean(), - createdAt: z.date(), - updatedAt: z.date() -})); - -// File: NotificationPermissionsDeleteManyResult.schema.ts -export const NotificationPermissionsDeleteManyResultSchema = z.object({ - count: z.number() -}); - -// File: NotificationPermissionsAggregateResult.schema.ts -export const NotificationPermissionsAggregateResultSchema = z.object({ _count: z.object({ - id: z.number(), - user: z.number(), - userId: z.number(), - applications: z.number(), - newArticles: z.number(), - standardNotifications: z.number(), - groupMessages: z.number(), - markRulesUpdates: z.number(), - receipts: z.number(), - registrationByAdministrator: z.number(), - registrationStart: z.number(), - createdAt: z.number(), - updatedAt: z.number() - }).optional(), - _min: z.object({ - id: z.string().nullable(), - userId: z.string().nullable(), - createdAt: z.date().nullable(), - updatedAt: z.date().nullable() - }).nullable().optional(), - _max: z.object({ - id: z.string().nullable(), - userId: z.string().nullable(), - createdAt: z.date().nullable(), - updatedAt: z.date().nullable() - }).nullable().optional()}); - -// File: NotificationPermissionsGroupByResult.schema.ts -export const NotificationPermissionsGroupByResultSchema = z.array(z.object({ - id: z.string(), - userId: z.string(), - applications: z.boolean(), - newArticles: z.boolean(), - standardNotifications: z.boolean(), - groupMessages: z.boolean(), - markRulesUpdates: z.boolean(), - receipts: z.boolean(), - registrationByAdministrator: z.boolean(), - registrationStart: z.boolean(), - createdAt: z.date(), - updatedAt: z.date(), - _count: z.object({ - id: z.number(), - user: z.number(), - userId: z.number(), - applications: z.number(), - newArticles: z.number(), - standardNotifications: z.number(), - groupMessages: z.number(), - markRulesUpdates: z.number(), - receipts: z.number(), - registrationByAdministrator: z.number(), - registrationStart: z.number(), - createdAt: z.number(), - updatedAt: z.number() - }).optional(), - _min: z.object({ - id: z.string().nullable(), - userId: z.string().nullable(), - createdAt: z.date().nullable(), - updatedAt: z.date().nullable() - }).nullable().optional(), - _max: z.object({ - id: z.string().nullable(), - userId: z.string().nullable(), - createdAt: z.date().nullable(), - updatedAt: z.date().nullable() - }).nullable().optional() -})); - -// File: NotificationPermissionsCountResult.schema.ts -export const NotificationPermissionsCountResultSchema = z.number(); - -// File: EventHostingGroupFindUniqueResult.schema.ts -export const EventHostingGroupFindUniqueResultSchema = z.nullable(z.object({ - groupId: z.string(), - eventId: z.string(), - group: z.unknown(), - event: z.unknown() -})); - -// File: EventHostingGroupFindFirstResult.schema.ts -export const EventHostingGroupFindFirstResultSchema = z.nullable(z.object({ - groupId: z.string(), - eventId: z.string(), - group: z.unknown(), - event: z.unknown() -})); - -// File: EventHostingGroupFindManyResult.schema.ts -export const EventHostingGroupFindManyResultSchema = z.object({ - data: z.array(z.object({ - groupId: z.string(), - eventId: z.string(), - group: z.unknown(), - event: z.unknown() -})), - pagination: z.object({ - page: z.number().int().min(1), - pageSize: z.number().int().min(1), - total: z.number().int().min(0), - totalPages: z.number().int().min(0), - hasNext: z.boolean(), - hasPrev: z.boolean() -}) -}); - -// File: EventHostingGroupCreateResult.schema.ts -export const EventHostingGroupCreateResultSchema = z.object({ - groupId: z.string(), - eventId: z.string(), - group: z.unknown(), - event: z.unknown() -}); - -// File: EventHostingGroupCreateManyResult.schema.ts -export const EventHostingGroupCreateManyResultSchema = z.object({ - count: z.number() -}); - -// File: EventHostingGroupUpdateResult.schema.ts -export const EventHostingGroupUpdateResultSchema = z.nullable(z.object({ - groupId: z.string(), - eventId: z.string(), - group: z.unknown(), - event: z.unknown() -})); - -// File: EventHostingGroupUpdateManyResult.schema.ts -export const EventHostingGroupUpdateManyResultSchema = z.object({ - count: z.number() -}); - -// File: EventHostingGroupUpsertResult.schema.ts -export const EventHostingGroupUpsertResultSchema = z.object({ - groupId: z.string(), - eventId: z.string(), - group: z.unknown(), - event: z.unknown() -}); - -// File: EventHostingGroupDeleteResult.schema.ts -export const EventHostingGroupDeleteResultSchema = z.nullable(z.object({ - groupId: z.string(), - eventId: z.string(), - group: z.unknown(), - event: z.unknown() -})); - -// File: EventHostingGroupDeleteManyResult.schema.ts -export const EventHostingGroupDeleteManyResultSchema = z.object({ - count: z.number() -}); - -// File: EventHostingGroupAggregateResult.schema.ts -export const EventHostingGroupAggregateResultSchema = z.object({ _count: z.object({ - groupId: z.number(), - eventId: z.number(), - group: z.number(), - event: z.number() - }).optional(), - _min: z.object({ - groupId: z.string().nullable(), - eventId: z.string().nullable() - }).nullable().optional(), - _max: z.object({ - groupId: z.string().nullable(), - eventId: z.string().nullable() - }).nullable().optional()}); - -// File: EventHostingGroupGroupByResult.schema.ts -export const EventHostingGroupGroupByResultSchema = z.array(z.object({ - groupId: z.string(), - eventId: z.string(), - _count: z.object({ - groupId: z.number(), - eventId: z.number(), - group: z.number(), - event: z.number() - }).optional(), - _min: z.object({ - groupId: z.string().nullable(), - eventId: z.string().nullable() - }).nullable().optional(), - _max: z.object({ - groupId: z.string().nullable(), - eventId: z.string().nullable() - }).nullable().optional() -})); - -// File: EventHostingGroupCountResult.schema.ts -export const EventHostingGroupCountResultSchema = z.number(); - -// File: JobListingFindUniqueResult.schema.ts -export const JobListingFindUniqueResultSchema = z.nullable(z.object({ - id: z.string(), - title: z.string(), - description: z.string(), - shortDescription: z.string().optional(), - start: z.date(), - end: z.date(), - featured: z.boolean(), - hidden: z.boolean(), - deadline: z.date().optional(), - employment: z.unknown(), - applicationLink: z.string().optional(), - applicationEmail: z.string().optional(), - rollingAdmission: z.boolean(), - createdAt: z.date(), - updatedAt: z.date(), - companyId: z.string(), - company: z.unknown(), - locations: z.array(z.unknown()) -})); - -// File: JobListingFindFirstResult.schema.ts -export const JobListingFindFirstResultSchema = z.nullable(z.object({ - id: z.string(), - title: z.string(), - description: z.string(), - shortDescription: z.string().optional(), - start: z.date(), - end: z.date(), - featured: z.boolean(), - hidden: z.boolean(), - deadline: z.date().optional(), - employment: z.unknown(), - applicationLink: z.string().optional(), - applicationEmail: z.string().optional(), - rollingAdmission: z.boolean(), - createdAt: z.date(), - updatedAt: z.date(), - companyId: z.string(), - company: z.unknown(), - locations: z.array(z.unknown()) -})); - -// File: JobListingFindManyResult.schema.ts -export const JobListingFindManyResultSchema = z.object({ - data: z.array(z.object({ - id: z.string(), - title: z.string(), - description: z.string(), - shortDescription: z.string().optional(), - start: z.date(), - end: z.date(), - featured: z.boolean(), - hidden: z.boolean(), - deadline: z.date().optional(), - employment: z.unknown(), - applicationLink: z.string().optional(), - applicationEmail: z.string().optional(), - rollingAdmission: z.boolean(), - createdAt: z.date(), - updatedAt: z.date(), - companyId: z.string(), - company: z.unknown(), - locations: z.array(z.unknown()) -})), - pagination: z.object({ - page: z.number().int().min(1), - pageSize: z.number().int().min(1), - total: z.number().int().min(0), - totalPages: z.number().int().min(0), - hasNext: z.boolean(), - hasPrev: z.boolean() -}) -}); - -// File: JobListingCreateResult.schema.ts -export const JobListingCreateResultSchema = z.object({ - id: z.string(), - title: z.string(), - description: z.string(), - shortDescription: z.string().optional(), - start: z.date(), - end: z.date(), - featured: z.boolean(), - hidden: z.boolean(), - deadline: z.date().optional(), - employment: z.unknown(), - applicationLink: z.string().optional(), - applicationEmail: z.string().optional(), - rollingAdmission: z.boolean(), - createdAt: z.date(), - updatedAt: z.date(), - companyId: z.string(), - company: z.unknown(), - locations: z.array(z.unknown()) -}); - -// File: JobListingCreateManyResult.schema.ts -export const JobListingCreateManyResultSchema = z.object({ - count: z.number() -}); - -// File: JobListingUpdateResult.schema.ts -export const JobListingUpdateResultSchema = z.nullable(z.object({ - id: z.string(), - title: z.string(), - description: z.string(), - shortDescription: z.string().optional(), - start: z.date(), - end: z.date(), - featured: z.boolean(), - hidden: z.boolean(), - deadline: z.date().optional(), - employment: z.unknown(), - applicationLink: z.string().optional(), - applicationEmail: z.string().optional(), - rollingAdmission: z.boolean(), - createdAt: z.date(), - updatedAt: z.date(), - companyId: z.string(), - company: z.unknown(), - locations: z.array(z.unknown()) -})); - -// File: JobListingUpdateManyResult.schema.ts -export const JobListingUpdateManyResultSchema = z.object({ - count: z.number() -}); - -// File: JobListingUpsertResult.schema.ts -export const JobListingUpsertResultSchema = z.object({ - id: z.string(), - title: z.string(), - description: z.string(), - shortDescription: z.string().optional(), - start: z.date(), - end: z.date(), - featured: z.boolean(), - hidden: z.boolean(), - deadline: z.date().optional(), - employment: z.unknown(), - applicationLink: z.string().optional(), - applicationEmail: z.string().optional(), - rollingAdmission: z.boolean(), - createdAt: z.date(), - updatedAt: z.date(), - companyId: z.string(), - company: z.unknown(), - locations: z.array(z.unknown()) -}); - -// File: JobListingDeleteResult.schema.ts -export const JobListingDeleteResultSchema = z.nullable(z.object({ - id: z.string(), - title: z.string(), - description: z.string(), - shortDescription: z.string().optional(), - start: z.date(), - end: z.date(), - featured: z.boolean(), - hidden: z.boolean(), - deadline: z.date().optional(), - employment: z.unknown(), - applicationLink: z.string().optional(), - applicationEmail: z.string().optional(), - rollingAdmission: z.boolean(), - createdAt: z.date(), - updatedAt: z.date(), - companyId: z.string(), - company: z.unknown(), - locations: z.array(z.unknown()) -})); - -// File: JobListingDeleteManyResult.schema.ts -export const JobListingDeleteManyResultSchema = z.object({ - count: z.number() -}); - -// File: JobListingAggregateResult.schema.ts -export const JobListingAggregateResultSchema = z.object({ _count: z.object({ - id: z.number(), - title: z.number(), - description: z.number(), - shortDescription: z.number(), - start: z.number(), - end: z.number(), - featured: z.number(), - hidden: z.number(), - deadline: z.number(), - employment: z.number(), - applicationLink: z.number(), - applicationEmail: z.number(), - rollingAdmission: z.number(), - createdAt: z.number(), - updatedAt: z.number(), - companyId: z.number(), - company: z.number(), - locations: z.number() - }).optional(), - _min: z.object({ - id: z.string().nullable(), - title: z.string().nullable(), - description: z.string().nullable(), - shortDescription: z.string().nullable(), - start: z.date().nullable(), - end: z.date().nullable(), - deadline: z.date().nullable(), - applicationLink: z.string().nullable(), - applicationEmail: z.string().nullable(), - createdAt: z.date().nullable(), - updatedAt: z.date().nullable(), - companyId: z.string().nullable() - }).nullable().optional(), - _max: z.object({ - id: z.string().nullable(), - title: z.string().nullable(), - description: z.string().nullable(), - shortDescription: z.string().nullable(), - start: z.date().nullable(), - end: z.date().nullable(), - deadline: z.date().nullable(), - applicationLink: z.string().nullable(), - applicationEmail: z.string().nullable(), - createdAt: z.date().nullable(), - updatedAt: z.date().nullable(), - companyId: z.string().nullable() - }).nullable().optional()}); - -// File: JobListingGroupByResult.schema.ts -export const JobListingGroupByResultSchema = z.array(z.object({ - id: z.string(), - title: z.string(), - description: z.string(), - shortDescription: z.string(), - start: z.date(), - end: z.date(), - featured: z.boolean(), - hidden: z.boolean(), - deadline: z.date(), - applicationLink: z.string(), - applicationEmail: z.string(), - rollingAdmission: z.boolean(), - createdAt: z.date(), - updatedAt: z.date(), - companyId: z.string(), - _count: z.object({ - id: z.number(), - title: z.number(), - description: z.number(), - shortDescription: z.number(), - start: z.number(), - end: z.number(), - featured: z.number(), - hidden: z.number(), - deadline: z.number(), - employment: z.number(), - applicationLink: z.number(), - applicationEmail: z.number(), - rollingAdmission: z.number(), - createdAt: z.number(), - updatedAt: z.number(), - companyId: z.number(), - company: z.number(), - locations: z.number() - }).optional(), - _min: z.object({ - id: z.string().nullable(), - title: z.string().nullable(), - description: z.string().nullable(), - shortDescription: z.string().nullable(), - start: z.date().nullable(), - end: z.date().nullable(), - deadline: z.date().nullable(), - applicationLink: z.string().nullable(), - applicationEmail: z.string().nullable(), - createdAt: z.date().nullable(), - updatedAt: z.date().nullable(), - companyId: z.string().nullable() - }).nullable().optional(), - _max: z.object({ - id: z.string().nullable(), - title: z.string().nullable(), - description: z.string().nullable(), - shortDescription: z.string().nullable(), - start: z.date().nullable(), - end: z.date().nullable(), - deadline: z.date().nullable(), - applicationLink: z.string().nullable(), - applicationEmail: z.string().nullable(), - createdAt: z.date().nullable(), - updatedAt: z.date().nullable(), - companyId: z.string().nullable() - }).nullable().optional() -})); - -// File: JobListingCountResult.schema.ts -export const JobListingCountResultSchema = z.number(); - -// File: JobListingLocationFindUniqueResult.schema.ts -export const JobListingLocationFindUniqueResultSchema = z.nullable(z.object({ - name: z.string(), - createdAt: z.date(), - jobListingId: z.string(), - jobListing: z.unknown() -})); - -// File: JobListingLocationFindFirstResult.schema.ts -export const JobListingLocationFindFirstResultSchema = z.nullable(z.object({ - name: z.string(), - createdAt: z.date(), - jobListingId: z.string(), - jobListing: z.unknown() -})); - -// File: JobListingLocationFindManyResult.schema.ts -export const JobListingLocationFindManyResultSchema = z.object({ - data: z.array(z.object({ - name: z.string(), - createdAt: z.date(), - jobListingId: z.string(), - jobListing: z.unknown() -})), - pagination: z.object({ - page: z.number().int().min(1), - pageSize: z.number().int().min(1), - total: z.number().int().min(0), - totalPages: z.number().int().min(0), - hasNext: z.boolean(), - hasPrev: z.boolean() -}) -}); - -// File: JobListingLocationCreateResult.schema.ts -export const JobListingLocationCreateResultSchema = z.object({ - name: z.string(), - createdAt: z.date(), - jobListingId: z.string(), - jobListing: z.unknown() -}); - -// File: JobListingLocationCreateManyResult.schema.ts -export const JobListingLocationCreateManyResultSchema = z.object({ - count: z.number() -}); - -// File: JobListingLocationUpdateResult.schema.ts -export const JobListingLocationUpdateResultSchema = z.nullable(z.object({ - name: z.string(), - createdAt: z.date(), - jobListingId: z.string(), - jobListing: z.unknown() -})); - -// File: JobListingLocationUpdateManyResult.schema.ts -export const JobListingLocationUpdateManyResultSchema = z.object({ - count: z.number() -}); - -// File: JobListingLocationUpsertResult.schema.ts -export const JobListingLocationUpsertResultSchema = z.object({ - name: z.string(), - createdAt: z.date(), - jobListingId: z.string(), - jobListing: z.unknown() -}); - -// File: JobListingLocationDeleteResult.schema.ts -export const JobListingLocationDeleteResultSchema = z.nullable(z.object({ - name: z.string(), - createdAt: z.date(), - jobListingId: z.string(), - jobListing: z.unknown() -})); - -// File: JobListingLocationDeleteManyResult.schema.ts -export const JobListingLocationDeleteManyResultSchema = z.object({ - count: z.number() -}); - -// File: JobListingLocationAggregateResult.schema.ts -export const JobListingLocationAggregateResultSchema = z.object({ _count: z.object({ - name: z.number(), - createdAt: z.number(), - jobListingId: z.number(), - jobListing: z.number() - }).optional(), - _min: z.object({ - name: z.string().nullable(), - createdAt: z.date().nullable(), - jobListingId: z.string().nullable() - }).nullable().optional(), - _max: z.object({ - name: z.string().nullable(), - createdAt: z.date().nullable(), - jobListingId: z.string().nullable() - }).nullable().optional()}); - -// File: JobListingLocationGroupByResult.schema.ts -export const JobListingLocationGroupByResultSchema = z.array(z.object({ - name: z.string(), - createdAt: z.date(), - jobListingId: z.string(), - _count: z.object({ - name: z.number(), - createdAt: z.number(), - jobListingId: z.number(), - jobListing: z.number() - }).optional(), - _min: z.object({ - name: z.string().nullable(), - createdAt: z.date().nullable(), - jobListingId: z.string().nullable() - }).nullable().optional(), - _max: z.object({ - name: z.string().nullable(), - createdAt: z.date().nullable(), - jobListingId: z.string().nullable() - }).nullable().optional() -})); - -// File: JobListingLocationCountResult.schema.ts -export const JobListingLocationCountResultSchema = z.number(); - -// File: OfflineFindUniqueResult.schema.ts -export const OfflineFindUniqueResultSchema = z.nullable(z.object({ - id: z.string(), - title: z.string(), - fileUrl: z.string().optional(), - imageUrl: z.string().optional(), - publishedAt: z.date(), - createdAt: z.date(), - updatedAt: z.date() -})); - -// File: OfflineFindFirstResult.schema.ts -export const OfflineFindFirstResultSchema = z.nullable(z.object({ - id: z.string(), - title: z.string(), - fileUrl: z.string().optional(), - imageUrl: z.string().optional(), - publishedAt: z.date(), - createdAt: z.date(), - updatedAt: z.date() -})); - -// File: OfflineFindManyResult.schema.ts -export const OfflineFindManyResultSchema = z.object({ - data: z.array(z.object({ - id: z.string(), - title: z.string(), - fileUrl: z.string().optional(), - imageUrl: z.string().optional(), - publishedAt: z.date(), - createdAt: z.date(), - updatedAt: z.date() -})), - pagination: z.object({ - page: z.number().int().min(1), - pageSize: z.number().int().min(1), - total: z.number().int().min(0), - totalPages: z.number().int().min(0), - hasNext: z.boolean(), - hasPrev: z.boolean() -}) -}); - -// File: OfflineCreateResult.schema.ts -export const OfflineCreateResultSchema = z.object({ - id: z.string(), - title: z.string(), - fileUrl: z.string().optional(), - imageUrl: z.string().optional(), - publishedAt: z.date(), - createdAt: z.date(), - updatedAt: z.date() -}); - -// File: OfflineCreateManyResult.schema.ts -export const OfflineCreateManyResultSchema = z.object({ - count: z.number() -}); - -// File: OfflineUpdateResult.schema.ts -export const OfflineUpdateResultSchema = z.nullable(z.object({ - id: z.string(), - title: z.string(), - fileUrl: z.string().optional(), - imageUrl: z.string().optional(), - publishedAt: z.date(), - createdAt: z.date(), - updatedAt: z.date() -})); - -// File: OfflineUpdateManyResult.schema.ts -export const OfflineUpdateManyResultSchema = z.object({ - count: z.number() -}); - -// File: OfflineUpsertResult.schema.ts -export const OfflineUpsertResultSchema = z.object({ - id: z.string(), - title: z.string(), - fileUrl: z.string().optional(), - imageUrl: z.string().optional(), - publishedAt: z.date(), - createdAt: z.date(), - updatedAt: z.date() -}); - -// File: OfflineDeleteResult.schema.ts -export const OfflineDeleteResultSchema = z.nullable(z.object({ - id: z.string(), - title: z.string(), - fileUrl: z.string().optional(), - imageUrl: z.string().optional(), - publishedAt: z.date(), - createdAt: z.date(), - updatedAt: z.date() -})); - -// File: OfflineDeleteManyResult.schema.ts -export const OfflineDeleteManyResultSchema = z.object({ - count: z.number() -}); - -// File: OfflineAggregateResult.schema.ts -export const OfflineAggregateResultSchema = z.object({ _count: z.object({ - id: z.number(), - title: z.number(), - fileUrl: z.number(), - imageUrl: z.number(), - publishedAt: z.number(), - createdAt: z.number(), - updatedAt: z.number() - }).optional(), - _min: z.object({ - id: z.string().nullable(), - title: z.string().nullable(), - fileUrl: z.string().nullable(), - imageUrl: z.string().nullable(), - publishedAt: z.date().nullable(), - createdAt: z.date().nullable(), - updatedAt: z.date().nullable() - }).nullable().optional(), - _max: z.object({ - id: z.string().nullable(), - title: z.string().nullable(), - fileUrl: z.string().nullable(), - imageUrl: z.string().nullable(), - publishedAt: z.date().nullable(), - createdAt: z.date().nullable(), - updatedAt: z.date().nullable() - }).nullable().optional()}); - -// File: OfflineGroupByResult.schema.ts -export const OfflineGroupByResultSchema = z.array(z.object({ - id: z.string(), - title: z.string(), - fileUrl: z.string(), - imageUrl: z.string(), - publishedAt: z.date(), - createdAt: z.date(), - updatedAt: z.date(), - _count: z.object({ - id: z.number(), - title: z.number(), - fileUrl: z.number(), - imageUrl: z.number(), - publishedAt: z.number(), - createdAt: z.number(), - updatedAt: z.number() - }).optional(), - _min: z.object({ - id: z.string().nullable(), - title: z.string().nullable(), - fileUrl: z.string().nullable(), - imageUrl: z.string().nullable(), - publishedAt: z.date().nullable(), - createdAt: z.date().nullable(), - updatedAt: z.date().nullable() - }).nullable().optional(), - _max: z.object({ - id: z.string().nullable(), - title: z.string().nullable(), - fileUrl: z.string().nullable(), - imageUrl: z.string().nullable(), - publishedAt: z.date().nullable(), - createdAt: z.date().nullable(), - updatedAt: z.date().nullable() - }).nullable().optional() -})); - -// File: OfflineCountResult.schema.ts -export const OfflineCountResultSchema = z.number(); - -// File: ArticleFindUniqueResult.schema.ts -export const ArticleFindUniqueResultSchema = z.nullable(z.object({ - id: z.string(), - slug: z.string(), - title: z.string(), - author: z.string(), - photographer: z.string(), - imageUrl: z.string(), - excerpt: z.string(), - content: z.string(), - isFeatured: z.boolean(), - vimeoId: z.string().optional(), - createdAt: z.date(), - updatedAt: z.date(), - tags: z.array(z.unknown()) -})); - -// File: ArticleFindFirstResult.schema.ts -export const ArticleFindFirstResultSchema = z.nullable(z.object({ - id: z.string(), - slug: z.string(), - title: z.string(), - author: z.string(), - photographer: z.string(), - imageUrl: z.string(), - excerpt: z.string(), - content: z.string(), - isFeatured: z.boolean(), - vimeoId: z.string().optional(), - createdAt: z.date(), - updatedAt: z.date(), - tags: z.array(z.unknown()) -})); - -// File: ArticleFindManyResult.schema.ts -export const ArticleFindManyResultSchema = z.object({ - data: z.array(z.object({ - id: z.string(), - slug: z.string(), - title: z.string(), - author: z.string(), - photographer: z.string(), - imageUrl: z.string(), - excerpt: z.string(), - content: z.string(), - isFeatured: z.boolean(), - vimeoId: z.string().optional(), - createdAt: z.date(), - updatedAt: z.date(), - tags: z.array(z.unknown()) -})), - pagination: z.object({ - page: z.number().int().min(1), - pageSize: z.number().int().min(1), - total: z.number().int().min(0), - totalPages: z.number().int().min(0), - hasNext: z.boolean(), - hasPrev: z.boolean() -}) -}); - -// File: ArticleCreateResult.schema.ts -export const ArticleCreateResultSchema = z.object({ - id: z.string(), - slug: z.string(), - title: z.string(), - author: z.string(), - photographer: z.string(), - imageUrl: z.string(), - excerpt: z.string(), - content: z.string(), - isFeatured: z.boolean(), - vimeoId: z.string().optional(), - createdAt: z.date(), - updatedAt: z.date(), - tags: z.array(z.unknown()) -}); - -// File: ArticleCreateManyResult.schema.ts -export const ArticleCreateManyResultSchema = z.object({ - count: z.number() -}); - -// File: ArticleUpdateResult.schema.ts -export const ArticleUpdateResultSchema = z.nullable(z.object({ - id: z.string(), - slug: z.string(), - title: z.string(), - author: z.string(), - photographer: z.string(), - imageUrl: z.string(), - excerpt: z.string(), - content: z.string(), - isFeatured: z.boolean(), - vimeoId: z.string().optional(), - createdAt: z.date(), - updatedAt: z.date(), - tags: z.array(z.unknown()) -})); - -// File: ArticleUpdateManyResult.schema.ts -export const ArticleUpdateManyResultSchema = z.object({ - count: z.number() -}); - -// File: ArticleUpsertResult.schema.ts -export const ArticleUpsertResultSchema = z.object({ - id: z.string(), - slug: z.string(), - title: z.string(), - author: z.string(), - photographer: z.string(), - imageUrl: z.string(), - excerpt: z.string(), - content: z.string(), - isFeatured: z.boolean(), - vimeoId: z.string().optional(), - createdAt: z.date(), - updatedAt: z.date(), - tags: z.array(z.unknown()) -}); - -// File: ArticleDeleteResult.schema.ts -export const ArticleDeleteResultSchema = z.nullable(z.object({ - id: z.string(), - slug: z.string(), - title: z.string(), - author: z.string(), - photographer: z.string(), - imageUrl: z.string(), - excerpt: z.string(), - content: z.string(), - isFeatured: z.boolean(), - vimeoId: z.string().optional(), - createdAt: z.date(), - updatedAt: z.date(), - tags: z.array(z.unknown()) -})); - -// File: ArticleDeleteManyResult.schema.ts -export const ArticleDeleteManyResultSchema = z.object({ - count: z.number() -}); - -// File: ArticleAggregateResult.schema.ts -export const ArticleAggregateResultSchema = z.object({ _count: z.object({ - id: z.number(), - slug: z.number(), - title: z.number(), - author: z.number(), - photographer: z.number(), - imageUrl: z.number(), - excerpt: z.number(), - content: z.number(), - isFeatured: z.number(), - vimeoId: z.number(), - createdAt: z.number(), - updatedAt: z.number(), - tags: z.number() - }).optional(), - _min: z.object({ - id: z.string().nullable(), - slug: z.string().nullable(), - title: z.string().nullable(), - author: z.string().nullable(), - photographer: z.string().nullable(), - imageUrl: z.string().nullable(), - excerpt: z.string().nullable(), - content: z.string().nullable(), - vimeoId: z.string().nullable(), - createdAt: z.date().nullable(), - updatedAt: z.date().nullable() - }).nullable().optional(), - _max: z.object({ - id: z.string().nullable(), - slug: z.string().nullable(), - title: z.string().nullable(), - author: z.string().nullable(), - photographer: z.string().nullable(), - imageUrl: z.string().nullable(), - excerpt: z.string().nullable(), - content: z.string().nullable(), - vimeoId: z.string().nullable(), - createdAt: z.date().nullable(), - updatedAt: z.date().nullable() - }).nullable().optional()}); - -// File: ArticleGroupByResult.schema.ts -export const ArticleGroupByResultSchema = z.array(z.object({ - id: z.string(), - slug: z.string(), - title: z.string(), - author: z.string(), - photographer: z.string(), - imageUrl: z.string(), - excerpt: z.string(), - content: z.string(), - isFeatured: z.boolean(), - vimeoId: z.string(), - createdAt: z.date(), - updatedAt: z.date(), - _count: z.object({ - id: z.number(), - slug: z.number(), - title: z.number(), - author: z.number(), - photographer: z.number(), - imageUrl: z.number(), - excerpt: z.number(), - content: z.number(), - isFeatured: z.number(), - vimeoId: z.number(), - createdAt: z.number(), - updatedAt: z.number(), - tags: z.number() - }).optional(), - _min: z.object({ - id: z.string().nullable(), - slug: z.string().nullable(), - title: z.string().nullable(), - author: z.string().nullable(), - photographer: z.string().nullable(), - imageUrl: z.string().nullable(), - excerpt: z.string().nullable(), - content: z.string().nullable(), - vimeoId: z.string().nullable(), - createdAt: z.date().nullable(), - updatedAt: z.date().nullable() - }).nullable().optional(), - _max: z.object({ - id: z.string().nullable(), - slug: z.string().nullable(), - title: z.string().nullable(), - author: z.string().nullable(), - photographer: z.string().nullable(), - imageUrl: z.string().nullable(), - excerpt: z.string().nullable(), - content: z.string().nullable(), - vimeoId: z.string().nullable(), - createdAt: z.date().nullable(), - updatedAt: z.date().nullable() - }).nullable().optional() -})); - -// File: ArticleCountResult.schema.ts -export const ArticleCountResultSchema = z.number(); - -// File: ArticleTagFindUniqueResult.schema.ts -export const ArticleTagFindUniqueResultSchema = z.nullable(z.object({ - name: z.string(), - articles: z.array(z.unknown()) -})); - -// File: ArticleTagFindFirstResult.schema.ts -export const ArticleTagFindFirstResultSchema = z.nullable(z.object({ - name: z.string(), - articles: z.array(z.unknown()) -})); - -// File: ArticleTagFindManyResult.schema.ts -export const ArticleTagFindManyResultSchema = z.object({ - data: z.array(z.object({ - name: z.string(), - articles: z.array(z.unknown()) -})), - pagination: z.object({ - page: z.number().int().min(1), - pageSize: z.number().int().min(1), - total: z.number().int().min(0), - totalPages: z.number().int().min(0), - hasNext: z.boolean(), - hasPrev: z.boolean() -}) -}); - -// File: ArticleTagCreateResult.schema.ts -export const ArticleTagCreateResultSchema = z.object({ - name: z.string(), - articles: z.array(z.unknown()) -}); - -// File: ArticleTagCreateManyResult.schema.ts -export const ArticleTagCreateManyResultSchema = z.object({ - count: z.number() -}); - -// File: ArticleTagUpdateResult.schema.ts -export const ArticleTagUpdateResultSchema = z.nullable(z.object({ - name: z.string(), - articles: z.array(z.unknown()) -})); - -// File: ArticleTagUpdateManyResult.schema.ts -export const ArticleTagUpdateManyResultSchema = z.object({ - count: z.number() -}); - -// File: ArticleTagUpsertResult.schema.ts -export const ArticleTagUpsertResultSchema = z.object({ - name: z.string(), - articles: z.array(z.unknown()) -}); - -// File: ArticleTagDeleteResult.schema.ts -export const ArticleTagDeleteResultSchema = z.nullable(z.object({ - name: z.string(), - articles: z.array(z.unknown()) -})); - -// File: ArticleTagDeleteManyResult.schema.ts -export const ArticleTagDeleteManyResultSchema = z.object({ - count: z.number() -}); - -// File: ArticleTagAggregateResult.schema.ts -export const ArticleTagAggregateResultSchema = z.object({ _count: z.object({ - name: z.number(), - articles: z.number() - }).optional(), - _min: z.object({ - name: z.string().nullable() - }).nullable().optional(), - _max: z.object({ - name: z.string().nullable() - }).nullable().optional()}); - -// File: ArticleTagGroupByResult.schema.ts -export const ArticleTagGroupByResultSchema = z.array(z.object({ - name: z.string(), - _count: z.object({ - name: z.number(), - articles: z.number() - }).optional(), - _min: z.object({ - name: z.string().nullable() - }).nullable().optional(), - _max: z.object({ - name: z.string().nullable() - }).nullable().optional() -})); - -// File: ArticleTagCountResult.schema.ts -export const ArticleTagCountResultSchema = z.number(); - -// File: ArticleTagLinkFindUniqueResult.schema.ts -export const ArticleTagLinkFindUniqueResultSchema = z.nullable(z.object({ - articleId: z.string(), - tagName: z.string(), - article: z.unknown(), - tag: z.unknown() -})); - -// File: ArticleTagLinkFindFirstResult.schema.ts -export const ArticleTagLinkFindFirstResultSchema = z.nullable(z.object({ - articleId: z.string(), - tagName: z.string(), - article: z.unknown(), - tag: z.unknown() -})); - -// File: ArticleTagLinkFindManyResult.schema.ts -export const ArticleTagLinkFindManyResultSchema = z.object({ - data: z.array(z.object({ - articleId: z.string(), - tagName: z.string(), - article: z.unknown(), - tag: z.unknown() -})), - pagination: z.object({ - page: z.number().int().min(1), - pageSize: z.number().int().min(1), - total: z.number().int().min(0), - totalPages: z.number().int().min(0), - hasNext: z.boolean(), - hasPrev: z.boolean() -}) -}); - -// File: ArticleTagLinkCreateResult.schema.ts -export const ArticleTagLinkCreateResultSchema = z.object({ - articleId: z.string(), - tagName: z.string(), - article: z.unknown(), - tag: z.unknown() -}); - -// File: ArticleTagLinkCreateManyResult.schema.ts -export const ArticleTagLinkCreateManyResultSchema = z.object({ - count: z.number() -}); - -// File: ArticleTagLinkUpdateResult.schema.ts -export const ArticleTagLinkUpdateResultSchema = z.nullable(z.object({ - articleId: z.string(), - tagName: z.string(), - article: z.unknown(), - tag: z.unknown() -})); - -// File: ArticleTagLinkUpdateManyResult.schema.ts -export const ArticleTagLinkUpdateManyResultSchema = z.object({ - count: z.number() -}); - -// File: ArticleTagLinkUpsertResult.schema.ts -export const ArticleTagLinkUpsertResultSchema = z.object({ - articleId: z.string(), - tagName: z.string(), - article: z.unknown(), - tag: z.unknown() -}); - -// File: ArticleTagLinkDeleteResult.schema.ts -export const ArticleTagLinkDeleteResultSchema = z.nullable(z.object({ - articleId: z.string(), - tagName: z.string(), - article: z.unknown(), - tag: z.unknown() -})); - -// File: ArticleTagLinkDeleteManyResult.schema.ts -export const ArticleTagLinkDeleteManyResultSchema = z.object({ - count: z.number() -}); - -// File: ArticleTagLinkAggregateResult.schema.ts -export const ArticleTagLinkAggregateResultSchema = z.object({ _count: z.object({ - articleId: z.number(), - tagName: z.number(), - article: z.number(), - tag: z.number() - }).optional(), - _min: z.object({ - articleId: z.string().nullable(), - tagName: z.string().nullable() - }).nullable().optional(), - _max: z.object({ - articleId: z.string().nullable(), - tagName: z.string().nullable() - }).nullable().optional()}); - -// File: ArticleTagLinkGroupByResult.schema.ts -export const ArticleTagLinkGroupByResultSchema = z.array(z.object({ - articleId: z.string(), - tagName: z.string(), - _count: z.object({ - articleId: z.number(), - tagName: z.number(), - article: z.number(), - tag: z.number() - }).optional(), - _min: z.object({ - articleId: z.string().nullable(), - tagName: z.string().nullable() - }).nullable().optional(), - _max: z.object({ - articleId: z.string().nullable(), - tagName: z.string().nullable() - }).nullable().optional() -})); - -// File: ArticleTagLinkCountResult.schema.ts -export const ArticleTagLinkCountResultSchema = z.number(); - -// File: TaskFindUniqueResult.schema.ts -export const TaskFindUniqueResultSchema = z.nullable(z.object({ - id: z.string(), - type: z.unknown(), - status: z.unknown(), - payload: z.unknown(), - createdAt: z.date(), - scheduledAt: z.date(), - processedAt: z.date().optional(), - recurringTaskId: z.string().optional(), - recurringTask: z.unknown().optional(), - attendancePools: z.array(z.unknown()), - notifications: z.array(z.unknown()) -})); - -// File: TaskFindFirstResult.schema.ts -export const TaskFindFirstResultSchema = z.nullable(z.object({ - id: z.string(), - type: z.unknown(), - status: z.unknown(), - payload: z.unknown(), - createdAt: z.date(), - scheduledAt: z.date(), - processedAt: z.date().optional(), - recurringTaskId: z.string().optional(), - recurringTask: z.unknown().optional(), - attendancePools: z.array(z.unknown()), - notifications: z.array(z.unknown()) -})); - -// File: TaskFindManyResult.schema.ts -export const TaskFindManyResultSchema = z.object({ - data: z.array(z.object({ - id: z.string(), - type: z.unknown(), - status: z.unknown(), - payload: z.unknown(), - createdAt: z.date(), - scheduledAt: z.date(), - processedAt: z.date().optional(), - recurringTaskId: z.string().optional(), - recurringTask: z.unknown().optional(), - attendancePools: z.array(z.unknown()), - notifications: z.array(z.unknown()) -})), - pagination: z.object({ - page: z.number().int().min(1), - pageSize: z.number().int().min(1), - total: z.number().int().min(0), - totalPages: z.number().int().min(0), - hasNext: z.boolean(), - hasPrev: z.boolean() -}) -}); - -// File: TaskCreateResult.schema.ts -export const TaskCreateResultSchema = z.object({ - id: z.string(), - type: z.unknown(), - status: z.unknown(), - payload: z.unknown(), - createdAt: z.date(), - scheduledAt: z.date(), - processedAt: z.date().optional(), - recurringTaskId: z.string().optional(), - recurringTask: z.unknown().optional(), - attendancePools: z.array(z.unknown()), - notifications: z.array(z.unknown()) -}); - -// File: TaskCreateManyResult.schema.ts -export const TaskCreateManyResultSchema = z.object({ - count: z.number() -}); - -// File: TaskUpdateResult.schema.ts -export const TaskUpdateResultSchema = z.nullable(z.object({ - id: z.string(), - type: z.unknown(), - status: z.unknown(), - payload: z.unknown(), - createdAt: z.date(), - scheduledAt: z.date(), - processedAt: z.date().optional(), - recurringTaskId: z.string().optional(), - recurringTask: z.unknown().optional(), - attendancePools: z.array(z.unknown()), - notifications: z.array(z.unknown()) -})); - -// File: TaskUpdateManyResult.schema.ts -export const TaskUpdateManyResultSchema = z.object({ - count: z.number() -}); - -// File: TaskUpsertResult.schema.ts -export const TaskUpsertResultSchema = z.object({ - id: z.string(), - type: z.unknown(), - status: z.unknown(), - payload: z.unknown(), - createdAt: z.date(), - scheduledAt: z.date(), - processedAt: z.date().optional(), - recurringTaskId: z.string().optional(), - recurringTask: z.unknown().optional(), - attendancePools: z.array(z.unknown()), - notifications: z.array(z.unknown()) -}); - -// File: TaskDeleteResult.schema.ts -export const TaskDeleteResultSchema = z.nullable(z.object({ - id: z.string(), - type: z.unknown(), - status: z.unknown(), - payload: z.unknown(), - createdAt: z.date(), - scheduledAt: z.date(), - processedAt: z.date().optional(), - recurringTaskId: z.string().optional(), - recurringTask: z.unknown().optional(), - attendancePools: z.array(z.unknown()), - notifications: z.array(z.unknown()) -})); - -// File: TaskDeleteManyResult.schema.ts -export const TaskDeleteManyResultSchema = z.object({ - count: z.number() -}); - -// File: TaskAggregateResult.schema.ts -export const TaskAggregateResultSchema = z.object({ _count: z.object({ - id: z.number(), - type: z.number(), - status: z.number(), - payload: z.number(), - createdAt: z.number(), - scheduledAt: z.number(), - processedAt: z.number(), - recurringTaskId: z.number(), - recurringTask: z.number(), - attendancePools: z.number(), - notifications: z.number() - }).optional(), - _min: z.object({ - id: z.string().nullable(), - createdAt: z.date().nullable(), - scheduledAt: z.date().nullable(), - processedAt: z.date().nullable(), - recurringTaskId: z.string().nullable() - }).nullable().optional(), - _max: z.object({ - id: z.string().nullable(), - createdAt: z.date().nullable(), - scheduledAt: z.date().nullable(), - processedAt: z.date().nullable(), - recurringTaskId: z.string().nullable() - }).nullable().optional()}); - -// File: TaskGroupByResult.schema.ts -export const TaskGroupByResultSchema = z.array(z.object({ - id: z.string(), - payload: z.unknown(), - createdAt: z.date(), - scheduledAt: z.date(), - processedAt: z.date(), - recurringTaskId: z.string(), - _count: z.object({ - id: z.number(), - type: z.number(), - status: z.number(), - payload: z.number(), - createdAt: z.number(), - scheduledAt: z.number(), - processedAt: z.number(), - recurringTaskId: z.number(), - recurringTask: z.number(), - attendancePools: z.number(), - notifications: z.number() - }).optional(), - _min: z.object({ - id: z.string().nullable(), - createdAt: z.date().nullable(), - scheduledAt: z.date().nullable(), - processedAt: z.date().nullable(), - recurringTaskId: z.string().nullable() - }).nullable().optional(), - _max: z.object({ - id: z.string().nullable(), - createdAt: z.date().nullable(), - scheduledAt: z.date().nullable(), - processedAt: z.date().nullable(), - recurringTaskId: z.string().nullable() - }).nullable().optional() -})); - -// File: TaskCountResult.schema.ts -export const TaskCountResultSchema = z.number(); - -// File: RecurringTaskFindUniqueResult.schema.ts -export const RecurringTaskFindUniqueResultSchema = z.nullable(z.object({ - id: z.string(), - type: z.unknown(), - payload: z.unknown(), - createdAt: z.date(), - schedule: z.string(), - lastRunAt: z.date().optional(), - nextRunAt: z.date(), - tasks: z.array(z.unknown()) -})); - -// File: RecurringTaskFindFirstResult.schema.ts -export const RecurringTaskFindFirstResultSchema = z.nullable(z.object({ - id: z.string(), - type: z.unknown(), - payload: z.unknown(), - createdAt: z.date(), - schedule: z.string(), - lastRunAt: z.date().optional(), - nextRunAt: z.date(), - tasks: z.array(z.unknown()) -})); - -// File: RecurringTaskFindManyResult.schema.ts -export const RecurringTaskFindManyResultSchema = z.object({ - data: z.array(z.object({ - id: z.string(), - type: z.unknown(), - payload: z.unknown(), - createdAt: z.date(), - schedule: z.string(), - lastRunAt: z.date().optional(), - nextRunAt: z.date(), - tasks: z.array(z.unknown()) -})), - pagination: z.object({ - page: z.number().int().min(1), - pageSize: z.number().int().min(1), - total: z.number().int().min(0), - totalPages: z.number().int().min(0), - hasNext: z.boolean(), - hasPrev: z.boolean() -}) -}); - -// File: RecurringTaskCreateResult.schema.ts -export const RecurringTaskCreateResultSchema = z.object({ - id: z.string(), - type: z.unknown(), - payload: z.unknown(), - createdAt: z.date(), - schedule: z.string(), - lastRunAt: z.date().optional(), - nextRunAt: z.date(), - tasks: z.array(z.unknown()) -}); - -// File: RecurringTaskCreateManyResult.schema.ts -export const RecurringTaskCreateManyResultSchema = z.object({ - count: z.number() -}); - -// File: RecurringTaskUpdateResult.schema.ts -export const RecurringTaskUpdateResultSchema = z.nullable(z.object({ - id: z.string(), - type: z.unknown(), - payload: z.unknown(), - createdAt: z.date(), - schedule: z.string(), - lastRunAt: z.date().optional(), - nextRunAt: z.date(), - tasks: z.array(z.unknown()) -})); - -// File: RecurringTaskUpdateManyResult.schema.ts -export const RecurringTaskUpdateManyResultSchema = z.object({ - count: z.number() -}); - -// File: RecurringTaskUpsertResult.schema.ts -export const RecurringTaskUpsertResultSchema = z.object({ - id: z.string(), - type: z.unknown(), - payload: z.unknown(), - createdAt: z.date(), - schedule: z.string(), - lastRunAt: z.date().optional(), - nextRunAt: z.date(), - tasks: z.array(z.unknown()) -}); - -// File: RecurringTaskDeleteResult.schema.ts -export const RecurringTaskDeleteResultSchema = z.nullable(z.object({ - id: z.string(), - type: z.unknown(), - payload: z.unknown(), - createdAt: z.date(), - schedule: z.string(), - lastRunAt: z.date().optional(), - nextRunAt: z.date(), - tasks: z.array(z.unknown()) -})); - -// File: RecurringTaskDeleteManyResult.schema.ts -export const RecurringTaskDeleteManyResultSchema = z.object({ - count: z.number() -}); - -// File: RecurringTaskAggregateResult.schema.ts -export const RecurringTaskAggregateResultSchema = z.object({ _count: z.object({ - id: z.number(), - type: z.number(), - payload: z.number(), - createdAt: z.number(), - schedule: z.number(), - lastRunAt: z.number(), - nextRunAt: z.number(), - tasks: z.number() - }).optional(), - _min: z.object({ - id: z.string().nullable(), - createdAt: z.date().nullable(), - schedule: z.string().nullable(), - lastRunAt: z.date().nullable(), - nextRunAt: z.date().nullable() - }).nullable().optional(), - _max: z.object({ - id: z.string().nullable(), - createdAt: z.date().nullable(), - schedule: z.string().nullable(), - lastRunAt: z.date().nullable(), - nextRunAt: z.date().nullable() - }).nullable().optional()}); - -// File: RecurringTaskGroupByResult.schema.ts -export const RecurringTaskGroupByResultSchema = z.array(z.object({ - id: z.string(), - payload: z.unknown(), - createdAt: z.date(), - schedule: z.string(), - lastRunAt: z.date(), - nextRunAt: z.date(), - _count: z.object({ - id: z.number(), - type: z.number(), - payload: z.number(), - createdAt: z.number(), - schedule: z.number(), - lastRunAt: z.number(), - nextRunAt: z.number(), - tasks: z.number() - }).optional(), - _min: z.object({ - id: z.string().nullable(), - createdAt: z.date().nullable(), - schedule: z.string().nullable(), - lastRunAt: z.date().nullable(), - nextRunAt: z.date().nullable() - }).nullable().optional(), - _max: z.object({ - id: z.string().nullable(), - createdAt: z.date().nullable(), - schedule: z.string().nullable(), - lastRunAt: z.date().nullable(), - nextRunAt: z.date().nullable() - }).nullable().optional() -})); - -// File: RecurringTaskCountResult.schema.ts -export const RecurringTaskCountResultSchema = z.number(); - -// File: FeedbackFormFindUniqueResult.schema.ts -export const FeedbackFormFindUniqueResultSchema = z.nullable(z.object({ - id: z.string(), - publicResultsToken: z.string(), - createdAt: z.date(), - updatedAt: z.date(), - answerDeadline: z.date(), - eventId: z.string(), - event: z.unknown(), - questions: z.array(z.unknown()), - answers: z.array(z.unknown()) -})); - -// File: FeedbackFormFindFirstResult.schema.ts -export const FeedbackFormFindFirstResultSchema = z.nullable(z.object({ - id: z.string(), - publicResultsToken: z.string(), - createdAt: z.date(), - updatedAt: z.date(), - answerDeadline: z.date(), - eventId: z.string(), - event: z.unknown(), - questions: z.array(z.unknown()), - answers: z.array(z.unknown()) -})); - -// File: FeedbackFormFindManyResult.schema.ts -export const FeedbackFormFindManyResultSchema = z.object({ - data: z.array(z.object({ - id: z.string(), - publicResultsToken: z.string(), - createdAt: z.date(), - updatedAt: z.date(), - answerDeadline: z.date(), - eventId: z.string(), - event: z.unknown(), - questions: z.array(z.unknown()), - answers: z.array(z.unknown()) -})), - pagination: z.object({ - page: z.number().int().min(1), - pageSize: z.number().int().min(1), - total: z.number().int().min(0), - totalPages: z.number().int().min(0), - hasNext: z.boolean(), - hasPrev: z.boolean() -}) -}); - -// File: FeedbackFormCreateResult.schema.ts -export const FeedbackFormCreateResultSchema = z.object({ - id: z.string(), - publicResultsToken: z.string(), - createdAt: z.date(), - updatedAt: z.date(), - answerDeadline: z.date(), - eventId: z.string(), - event: z.unknown(), - questions: z.array(z.unknown()), - answers: z.array(z.unknown()) -}); - -// File: FeedbackFormCreateManyResult.schema.ts -export const FeedbackFormCreateManyResultSchema = z.object({ - count: z.number() -}); - -// File: FeedbackFormUpdateResult.schema.ts -export const FeedbackFormUpdateResultSchema = z.nullable(z.object({ - id: z.string(), - publicResultsToken: z.string(), - createdAt: z.date(), - updatedAt: z.date(), - answerDeadline: z.date(), - eventId: z.string(), - event: z.unknown(), - questions: z.array(z.unknown()), - answers: z.array(z.unknown()) -})); - -// File: FeedbackFormUpdateManyResult.schema.ts -export const FeedbackFormUpdateManyResultSchema = z.object({ - count: z.number() -}); - -// File: FeedbackFormUpsertResult.schema.ts -export const FeedbackFormUpsertResultSchema = z.object({ - id: z.string(), - publicResultsToken: z.string(), - createdAt: z.date(), - updatedAt: z.date(), - answerDeadline: z.date(), - eventId: z.string(), - event: z.unknown(), - questions: z.array(z.unknown()), - answers: z.array(z.unknown()) -}); - -// File: FeedbackFormDeleteResult.schema.ts -export const FeedbackFormDeleteResultSchema = z.nullable(z.object({ - id: z.string(), - publicResultsToken: z.string(), - createdAt: z.date(), - updatedAt: z.date(), - answerDeadline: z.date(), - eventId: z.string(), - event: z.unknown(), - questions: z.array(z.unknown()), - answers: z.array(z.unknown()) -})); - -// File: FeedbackFormDeleteManyResult.schema.ts -export const FeedbackFormDeleteManyResultSchema = z.object({ - count: z.number() -}); - -// File: FeedbackFormAggregateResult.schema.ts -export const FeedbackFormAggregateResultSchema = z.object({ _count: z.object({ - id: z.number(), - publicResultsToken: z.number(), - createdAt: z.number(), - updatedAt: z.number(), - answerDeadline: z.number(), - eventId: z.number(), - event: z.number(), - questions: z.number(), - answers: z.number() - }).optional(), - _min: z.object({ - id: z.string().nullable(), - publicResultsToken: z.string().nullable(), - createdAt: z.date().nullable(), - updatedAt: z.date().nullable(), - answerDeadline: z.date().nullable(), - eventId: z.string().nullable() - }).nullable().optional(), - _max: z.object({ - id: z.string().nullable(), - publicResultsToken: z.string().nullable(), - createdAt: z.date().nullable(), - updatedAt: z.date().nullable(), - answerDeadline: z.date().nullable(), - eventId: z.string().nullable() - }).nullable().optional()}); - -// File: FeedbackFormGroupByResult.schema.ts -export const FeedbackFormGroupByResultSchema = z.array(z.object({ - id: z.string(), - publicResultsToken: z.string(), - createdAt: z.date(), - updatedAt: z.date(), - answerDeadline: z.date(), - eventId: z.string(), - _count: z.object({ - id: z.number(), - publicResultsToken: z.number(), - createdAt: z.number(), - updatedAt: z.number(), - answerDeadline: z.number(), - eventId: z.number(), - event: z.number(), - questions: z.number(), - answers: z.number() - }).optional(), - _min: z.object({ - id: z.string().nullable(), - publicResultsToken: z.string().nullable(), - createdAt: z.date().nullable(), - updatedAt: z.date().nullable(), - answerDeadline: z.date().nullable(), - eventId: z.string().nullable() - }).nullable().optional(), - _max: z.object({ - id: z.string().nullable(), - publicResultsToken: z.string().nullable(), - createdAt: z.date().nullable(), - updatedAt: z.date().nullable(), - answerDeadline: z.date().nullable(), - eventId: z.string().nullable() - }).nullable().optional() -})); - -// File: FeedbackFormCountResult.schema.ts -export const FeedbackFormCountResultSchema = z.number(); - -// File: FeedbackQuestionFindUniqueResult.schema.ts -export const FeedbackQuestionFindUniqueResultSchema = z.nullable(z.object({ - id: z.string(), - label: z.string(), - required: z.boolean(), - showInPublicResults: z.boolean(), - type: z.unknown(), - order: z.number().int(), - createdAt: z.date(), - updatedAt: z.date(), - feedbackFormId: z.string(), - feedbackForm: z.unknown(), - options: z.array(z.unknown()), - answers: z.array(z.unknown()) -})); - -// File: FeedbackQuestionFindFirstResult.schema.ts -export const FeedbackQuestionFindFirstResultSchema = z.nullable(z.object({ - id: z.string(), - label: z.string(), - required: z.boolean(), - showInPublicResults: z.boolean(), - type: z.unknown(), - order: z.number().int(), - createdAt: z.date(), - updatedAt: z.date(), - feedbackFormId: z.string(), - feedbackForm: z.unknown(), - options: z.array(z.unknown()), - answers: z.array(z.unknown()) -})); - -// File: FeedbackQuestionFindManyResult.schema.ts -export const FeedbackQuestionFindManyResultSchema = z.object({ - data: z.array(z.object({ - id: z.string(), - label: z.string(), - required: z.boolean(), - showInPublicResults: z.boolean(), - type: z.unknown(), - order: z.number().int(), - createdAt: z.date(), - updatedAt: z.date(), - feedbackFormId: z.string(), - feedbackForm: z.unknown(), - options: z.array(z.unknown()), - answers: z.array(z.unknown()) -})), - pagination: z.object({ - page: z.number().int().min(1), - pageSize: z.number().int().min(1), - total: z.number().int().min(0), - totalPages: z.number().int().min(0), - hasNext: z.boolean(), - hasPrev: z.boolean() -}) -}); - -// File: FeedbackQuestionCreateResult.schema.ts -export const FeedbackQuestionCreateResultSchema = z.object({ - id: z.string(), - label: z.string(), - required: z.boolean(), - showInPublicResults: z.boolean(), - type: z.unknown(), - order: z.number().int(), - createdAt: z.date(), - updatedAt: z.date(), - feedbackFormId: z.string(), - feedbackForm: z.unknown(), - options: z.array(z.unknown()), - answers: z.array(z.unknown()) -}); - -// File: FeedbackQuestionCreateManyResult.schema.ts -export const FeedbackQuestionCreateManyResultSchema = z.object({ - count: z.number() -}); - -// File: FeedbackQuestionUpdateResult.schema.ts -export const FeedbackQuestionUpdateResultSchema = z.nullable(z.object({ - id: z.string(), - label: z.string(), - required: z.boolean(), - showInPublicResults: z.boolean(), - type: z.unknown(), - order: z.number().int(), - createdAt: z.date(), - updatedAt: z.date(), - feedbackFormId: z.string(), - feedbackForm: z.unknown(), - options: z.array(z.unknown()), - answers: z.array(z.unknown()) -})); - -// File: FeedbackQuestionUpdateManyResult.schema.ts -export const FeedbackQuestionUpdateManyResultSchema = z.object({ - count: z.number() -}); - -// File: FeedbackQuestionUpsertResult.schema.ts -export const FeedbackQuestionUpsertResultSchema = z.object({ - id: z.string(), - label: z.string(), - required: z.boolean(), - showInPublicResults: z.boolean(), - type: z.unknown(), - order: z.number().int(), - createdAt: z.date(), - updatedAt: z.date(), - feedbackFormId: z.string(), - feedbackForm: z.unknown(), - options: z.array(z.unknown()), - answers: z.array(z.unknown()) -}); - -// File: FeedbackQuestionDeleteResult.schema.ts -export const FeedbackQuestionDeleteResultSchema = z.nullable(z.object({ - id: z.string(), - label: z.string(), - required: z.boolean(), - showInPublicResults: z.boolean(), - type: z.unknown(), - order: z.number().int(), - createdAt: z.date(), - updatedAt: z.date(), - feedbackFormId: z.string(), - feedbackForm: z.unknown(), - options: z.array(z.unknown()), - answers: z.array(z.unknown()) -})); - -// File: FeedbackQuestionDeleteManyResult.schema.ts -export const FeedbackQuestionDeleteManyResultSchema = z.object({ - count: z.number() -}); - -// File: FeedbackQuestionAggregateResult.schema.ts -export const FeedbackQuestionAggregateResultSchema = z.object({ _count: z.object({ - id: z.number(), - label: z.number(), - required: z.number(), - showInPublicResults: z.number(), - type: z.number(), - order: z.number(), - createdAt: z.number(), - updatedAt: z.number(), - feedbackFormId: z.number(), - feedbackForm: z.number(), - options: z.number(), - answers: z.number() - }).optional(), - _sum: z.object({ - order: z.number().nullable() - }).nullable().optional(), - _avg: z.object({ - order: z.number().nullable() - }).nullable().optional(), - _min: z.object({ - id: z.string().nullable(), - label: z.string().nullable(), - order: z.number().int().nullable(), - createdAt: z.date().nullable(), - updatedAt: z.date().nullable(), - feedbackFormId: z.string().nullable() - }).nullable().optional(), - _max: z.object({ - id: z.string().nullable(), - label: z.string().nullable(), - order: z.number().int().nullable(), - createdAt: z.date().nullable(), - updatedAt: z.date().nullable(), - feedbackFormId: z.string().nullable() - }).nullable().optional()}); - -// File: FeedbackQuestionGroupByResult.schema.ts -export const FeedbackQuestionGroupByResultSchema = z.array(z.object({ - id: z.string(), - label: z.string(), - required: z.boolean(), - showInPublicResults: z.boolean(), - order: z.number().int(), - createdAt: z.date(), - updatedAt: z.date(), - feedbackFormId: z.string(), - _count: z.object({ - id: z.number(), - label: z.number(), - required: z.number(), - showInPublicResults: z.number(), - type: z.number(), - order: z.number(), - createdAt: z.number(), - updatedAt: z.number(), - feedbackFormId: z.number(), - feedbackForm: z.number(), - options: z.number(), - answers: z.number() - }).optional(), - _sum: z.object({ - order: z.number().nullable() - }).nullable().optional(), - _avg: z.object({ - order: z.number().nullable() - }).nullable().optional(), - _min: z.object({ - id: z.string().nullable(), - label: z.string().nullable(), - order: z.number().int().nullable(), - createdAt: z.date().nullable(), - updatedAt: z.date().nullable(), - feedbackFormId: z.string().nullable() - }).nullable().optional(), - _max: z.object({ - id: z.string().nullable(), - label: z.string().nullable(), - order: z.number().int().nullable(), - createdAt: z.date().nullable(), - updatedAt: z.date().nullable(), - feedbackFormId: z.string().nullable() - }).nullable().optional() -})); - -// File: FeedbackQuestionCountResult.schema.ts -export const FeedbackQuestionCountResultSchema = z.number(); - -// File: FeedbackQuestionOptionFindUniqueResult.schema.ts -export const FeedbackQuestionOptionFindUniqueResultSchema = z.nullable(z.object({ - id: z.string(), - name: z.string(), - questionId: z.string(), - question: z.unknown(), - selectedInAnswers: z.array(z.unknown()) -})); - -// File: FeedbackQuestionOptionFindFirstResult.schema.ts -export const FeedbackQuestionOptionFindFirstResultSchema = z.nullable(z.object({ - id: z.string(), - name: z.string(), - questionId: z.string(), - question: z.unknown(), - selectedInAnswers: z.array(z.unknown()) -})); - -// File: FeedbackQuestionOptionFindManyResult.schema.ts -export const FeedbackQuestionOptionFindManyResultSchema = z.object({ - data: z.array(z.object({ - id: z.string(), - name: z.string(), - questionId: z.string(), - question: z.unknown(), - selectedInAnswers: z.array(z.unknown()) -})), - pagination: z.object({ - page: z.number().int().min(1), - pageSize: z.number().int().min(1), - total: z.number().int().min(0), - totalPages: z.number().int().min(0), - hasNext: z.boolean(), - hasPrev: z.boolean() -}) -}); - -// File: FeedbackQuestionOptionCreateResult.schema.ts -export const FeedbackQuestionOptionCreateResultSchema = z.object({ - id: z.string(), - name: z.string(), - questionId: z.string(), - question: z.unknown(), - selectedInAnswers: z.array(z.unknown()) -}); - -// File: FeedbackQuestionOptionCreateManyResult.schema.ts -export const FeedbackQuestionOptionCreateManyResultSchema = z.object({ - count: z.number() -}); - -// File: FeedbackQuestionOptionUpdateResult.schema.ts -export const FeedbackQuestionOptionUpdateResultSchema = z.nullable(z.object({ - id: z.string(), - name: z.string(), - questionId: z.string(), - question: z.unknown(), - selectedInAnswers: z.array(z.unknown()) -})); - -// File: FeedbackQuestionOptionUpdateManyResult.schema.ts -export const FeedbackQuestionOptionUpdateManyResultSchema = z.object({ - count: z.number() -}); - -// File: FeedbackQuestionOptionUpsertResult.schema.ts -export const FeedbackQuestionOptionUpsertResultSchema = z.object({ - id: z.string(), - name: z.string(), - questionId: z.string(), - question: z.unknown(), - selectedInAnswers: z.array(z.unknown()) -}); - -// File: FeedbackQuestionOptionDeleteResult.schema.ts -export const FeedbackQuestionOptionDeleteResultSchema = z.nullable(z.object({ - id: z.string(), - name: z.string(), - questionId: z.string(), - question: z.unknown(), - selectedInAnswers: z.array(z.unknown()) -})); - -// File: FeedbackQuestionOptionDeleteManyResult.schema.ts -export const FeedbackQuestionOptionDeleteManyResultSchema = z.object({ - count: z.number() -}); - -// File: FeedbackQuestionOptionAggregateResult.schema.ts -export const FeedbackQuestionOptionAggregateResultSchema = z.object({ _count: z.object({ - id: z.number(), - name: z.number(), - questionId: z.number(), - question: z.number(), - selectedInAnswers: z.number() - }).optional(), - _min: z.object({ - id: z.string().nullable(), - name: z.string().nullable(), - questionId: z.string().nullable() - }).nullable().optional(), - _max: z.object({ - id: z.string().nullable(), - name: z.string().nullable(), - questionId: z.string().nullable() - }).nullable().optional()}); - -// File: FeedbackQuestionOptionGroupByResult.schema.ts -export const FeedbackQuestionOptionGroupByResultSchema = z.array(z.object({ - id: z.string(), - name: z.string(), - questionId: z.string(), - _count: z.object({ - id: z.number(), - name: z.number(), - questionId: z.number(), - question: z.number(), - selectedInAnswers: z.number() - }).optional(), - _min: z.object({ - id: z.string().nullable(), - name: z.string().nullable(), - questionId: z.string().nullable() - }).nullable().optional(), - _max: z.object({ - id: z.string().nullable(), - name: z.string().nullable(), - questionId: z.string().nullable() - }).nullable().optional() -})); - -// File: FeedbackQuestionOptionCountResult.schema.ts -export const FeedbackQuestionOptionCountResultSchema = z.number(); - -// File: FeedbackQuestionAnswerFindUniqueResult.schema.ts -export const FeedbackQuestionAnswerFindUniqueResultSchema = z.nullable(z.object({ - id: z.string(), - value: z.unknown().optional(), - questionId: z.string(), - formAnswerId: z.string(), - question: z.unknown(), - formAnswer: z.unknown(), - selectedOptions: z.array(z.unknown()) -})); - -// File: FeedbackQuestionAnswerFindFirstResult.schema.ts -export const FeedbackQuestionAnswerFindFirstResultSchema = z.nullable(z.object({ - id: z.string(), - value: z.unknown().optional(), - questionId: z.string(), - formAnswerId: z.string(), - question: z.unknown(), - formAnswer: z.unknown(), - selectedOptions: z.array(z.unknown()) -})); - -// File: FeedbackQuestionAnswerFindManyResult.schema.ts -export const FeedbackQuestionAnswerFindManyResultSchema = z.object({ - data: z.array(z.object({ - id: z.string(), - value: z.unknown().optional(), - questionId: z.string(), - formAnswerId: z.string(), - question: z.unknown(), - formAnswer: z.unknown(), - selectedOptions: z.array(z.unknown()) -})), - pagination: z.object({ - page: z.number().int().min(1), - pageSize: z.number().int().min(1), - total: z.number().int().min(0), - totalPages: z.number().int().min(0), - hasNext: z.boolean(), - hasPrev: z.boolean() -}) -}); - -// File: FeedbackQuestionAnswerCreateResult.schema.ts -export const FeedbackQuestionAnswerCreateResultSchema = z.object({ - id: z.string(), - value: z.unknown().optional(), - questionId: z.string(), - formAnswerId: z.string(), - question: z.unknown(), - formAnswer: z.unknown(), - selectedOptions: z.array(z.unknown()) -}); - -// File: FeedbackQuestionAnswerCreateManyResult.schema.ts -export const FeedbackQuestionAnswerCreateManyResultSchema = z.object({ - count: z.number() -}); - -// File: FeedbackQuestionAnswerUpdateResult.schema.ts -export const FeedbackQuestionAnswerUpdateResultSchema = z.nullable(z.object({ - id: z.string(), - value: z.unknown().optional(), - questionId: z.string(), - formAnswerId: z.string(), - question: z.unknown(), - formAnswer: z.unknown(), - selectedOptions: z.array(z.unknown()) -})); - -// File: FeedbackQuestionAnswerUpdateManyResult.schema.ts -export const FeedbackQuestionAnswerUpdateManyResultSchema = z.object({ - count: z.number() -}); - -// File: FeedbackQuestionAnswerUpsertResult.schema.ts -export const FeedbackQuestionAnswerUpsertResultSchema = z.object({ - id: z.string(), - value: z.unknown().optional(), - questionId: z.string(), - formAnswerId: z.string(), - question: z.unknown(), - formAnswer: z.unknown(), - selectedOptions: z.array(z.unknown()) -}); - -// File: FeedbackQuestionAnswerDeleteResult.schema.ts -export const FeedbackQuestionAnswerDeleteResultSchema = z.nullable(z.object({ - id: z.string(), - value: z.unknown().optional(), - questionId: z.string(), - formAnswerId: z.string(), - question: z.unknown(), - formAnswer: z.unknown(), - selectedOptions: z.array(z.unknown()) -})); - -// File: FeedbackQuestionAnswerDeleteManyResult.schema.ts -export const FeedbackQuestionAnswerDeleteManyResultSchema = z.object({ - count: z.number() -}); - -// File: FeedbackQuestionAnswerAggregateResult.schema.ts -export const FeedbackQuestionAnswerAggregateResultSchema = z.object({ _count: z.object({ - id: z.number(), - value: z.number(), - questionId: z.number(), - formAnswerId: z.number(), - question: z.number(), - formAnswer: z.number(), - selectedOptions: z.number() - }).optional(), - _min: z.object({ - id: z.string().nullable(), - questionId: z.string().nullable(), - formAnswerId: z.string().nullable() - }).nullable().optional(), - _max: z.object({ - id: z.string().nullable(), - questionId: z.string().nullable(), - formAnswerId: z.string().nullable() - }).nullable().optional()}); - -// File: FeedbackQuestionAnswerGroupByResult.schema.ts -export const FeedbackQuestionAnswerGroupByResultSchema = z.array(z.object({ - id: z.string(), - value: z.unknown(), - questionId: z.string(), - formAnswerId: z.string(), - _count: z.object({ - id: z.number(), - value: z.number(), - questionId: z.number(), - formAnswerId: z.number(), - question: z.number(), - formAnswer: z.number(), - selectedOptions: z.number() - }).optional(), - _min: z.object({ - id: z.string().nullable(), - questionId: z.string().nullable(), - formAnswerId: z.string().nullable() - }).nullable().optional(), - _max: z.object({ - id: z.string().nullable(), - questionId: z.string().nullable(), - formAnswerId: z.string().nullable() - }).nullable().optional() -})); - -// File: FeedbackQuestionAnswerCountResult.schema.ts -export const FeedbackQuestionAnswerCountResultSchema = z.number(); - -// File: FeedbackQuestionAnswerOptionLinkFindUniqueResult.schema.ts -export const FeedbackQuestionAnswerOptionLinkFindUniqueResultSchema = z.nullable(z.object({ - feedbackQuestionOptionId: z.string(), - feedbackQuestionAnswerId: z.string(), - feedbackQuestionOption: z.unknown(), - feedbackQuestionAnswer: z.unknown() -})); - -// File: FeedbackQuestionAnswerOptionLinkFindFirstResult.schema.ts -export const FeedbackQuestionAnswerOptionLinkFindFirstResultSchema = z.nullable(z.object({ - feedbackQuestionOptionId: z.string(), - feedbackQuestionAnswerId: z.string(), - feedbackQuestionOption: z.unknown(), - feedbackQuestionAnswer: z.unknown() -})); - -// File: FeedbackQuestionAnswerOptionLinkFindManyResult.schema.ts -export const FeedbackQuestionAnswerOptionLinkFindManyResultSchema = z.object({ - data: z.array(z.object({ - feedbackQuestionOptionId: z.string(), - feedbackQuestionAnswerId: z.string(), - feedbackQuestionOption: z.unknown(), - feedbackQuestionAnswer: z.unknown() -})), - pagination: z.object({ - page: z.number().int().min(1), - pageSize: z.number().int().min(1), - total: z.number().int().min(0), - totalPages: z.number().int().min(0), - hasNext: z.boolean(), - hasPrev: z.boolean() -}) -}); - -// File: FeedbackQuestionAnswerOptionLinkCreateResult.schema.ts -export const FeedbackQuestionAnswerOptionLinkCreateResultSchema = z.object({ - feedbackQuestionOptionId: z.string(), - feedbackQuestionAnswerId: z.string(), - feedbackQuestionOption: z.unknown(), - feedbackQuestionAnswer: z.unknown() -}); - -// File: FeedbackQuestionAnswerOptionLinkCreateManyResult.schema.ts -export const FeedbackQuestionAnswerOptionLinkCreateManyResultSchema = z.object({ - count: z.number() -}); - -// File: FeedbackQuestionAnswerOptionLinkUpdateResult.schema.ts -export const FeedbackQuestionAnswerOptionLinkUpdateResultSchema = z.nullable(z.object({ - feedbackQuestionOptionId: z.string(), - feedbackQuestionAnswerId: z.string(), - feedbackQuestionOption: z.unknown(), - feedbackQuestionAnswer: z.unknown() -})); - -// File: FeedbackQuestionAnswerOptionLinkUpdateManyResult.schema.ts -export const FeedbackQuestionAnswerOptionLinkUpdateManyResultSchema = z.object({ - count: z.number() -}); - -// File: FeedbackQuestionAnswerOptionLinkUpsertResult.schema.ts -export const FeedbackQuestionAnswerOptionLinkUpsertResultSchema = z.object({ - feedbackQuestionOptionId: z.string(), - feedbackQuestionAnswerId: z.string(), - feedbackQuestionOption: z.unknown(), - feedbackQuestionAnswer: z.unknown() -}); - -// File: FeedbackQuestionAnswerOptionLinkDeleteResult.schema.ts -export const FeedbackQuestionAnswerOptionLinkDeleteResultSchema = z.nullable(z.object({ - feedbackQuestionOptionId: z.string(), - feedbackQuestionAnswerId: z.string(), - feedbackQuestionOption: z.unknown(), - feedbackQuestionAnswer: z.unknown() -})); - -// File: FeedbackQuestionAnswerOptionLinkDeleteManyResult.schema.ts -export const FeedbackQuestionAnswerOptionLinkDeleteManyResultSchema = z.object({ - count: z.number() -}); - -// File: FeedbackQuestionAnswerOptionLinkAggregateResult.schema.ts -export const FeedbackQuestionAnswerOptionLinkAggregateResultSchema = z.object({ _count: z.object({ - feedbackQuestionOptionId: z.number(), - feedbackQuestionAnswerId: z.number(), - feedbackQuestionOption: z.number(), - feedbackQuestionAnswer: z.number() - }).optional(), - _min: z.object({ - feedbackQuestionOptionId: z.string().nullable(), - feedbackQuestionAnswerId: z.string().nullable() - }).nullable().optional(), - _max: z.object({ - feedbackQuestionOptionId: z.string().nullable(), - feedbackQuestionAnswerId: z.string().nullable() - }).nullable().optional()}); - -// File: FeedbackQuestionAnswerOptionLinkGroupByResult.schema.ts -export const FeedbackQuestionAnswerOptionLinkGroupByResultSchema = z.array(z.object({ - feedbackQuestionOptionId: z.string(), - feedbackQuestionAnswerId: z.string(), - _count: z.object({ - feedbackQuestionOptionId: z.number(), - feedbackQuestionAnswerId: z.number(), - feedbackQuestionOption: z.number(), - feedbackQuestionAnswer: z.number() - }).optional(), - _min: z.object({ - feedbackQuestionOptionId: z.string().nullable(), - feedbackQuestionAnswerId: z.string().nullable() - }).nullable().optional(), - _max: z.object({ - feedbackQuestionOptionId: z.string().nullable(), - feedbackQuestionAnswerId: z.string().nullable() - }).nullable().optional() -})); - -// File: FeedbackQuestionAnswerOptionLinkCountResult.schema.ts -export const FeedbackQuestionAnswerOptionLinkCountResultSchema = z.number(); - -// File: FeedbackFormAnswerFindUniqueResult.schema.ts -export const FeedbackFormAnswerFindUniqueResultSchema = z.nullable(z.object({ - id: z.string(), - createdAt: z.date(), - updatedAt: z.date(), - feedbackFormId: z.string(), - attendeeId: z.string(), - feedbackForm: z.unknown(), - attendee: z.unknown(), - answers: z.array(z.unknown()) -})); - -// File: FeedbackFormAnswerFindFirstResult.schema.ts -export const FeedbackFormAnswerFindFirstResultSchema = z.nullable(z.object({ - id: z.string(), - createdAt: z.date(), - updatedAt: z.date(), - feedbackFormId: z.string(), - attendeeId: z.string(), - feedbackForm: z.unknown(), - attendee: z.unknown(), - answers: z.array(z.unknown()) -})); - -// File: FeedbackFormAnswerFindManyResult.schema.ts -export const FeedbackFormAnswerFindManyResultSchema = z.object({ - data: z.array(z.object({ - id: z.string(), - createdAt: z.date(), - updatedAt: z.date(), - feedbackFormId: z.string(), - attendeeId: z.string(), - feedbackForm: z.unknown(), - attendee: z.unknown(), - answers: z.array(z.unknown()) -})), - pagination: z.object({ - page: z.number().int().min(1), - pageSize: z.number().int().min(1), - total: z.number().int().min(0), - totalPages: z.number().int().min(0), - hasNext: z.boolean(), - hasPrev: z.boolean() -}) -}); - -// File: FeedbackFormAnswerCreateResult.schema.ts -export const FeedbackFormAnswerCreateResultSchema = z.object({ - id: z.string(), - createdAt: z.date(), - updatedAt: z.date(), - feedbackFormId: z.string(), - attendeeId: z.string(), - feedbackForm: z.unknown(), - attendee: z.unknown(), - answers: z.array(z.unknown()) -}); - -// File: FeedbackFormAnswerCreateManyResult.schema.ts -export const FeedbackFormAnswerCreateManyResultSchema = z.object({ - count: z.number() -}); - -// File: FeedbackFormAnswerUpdateResult.schema.ts -export const FeedbackFormAnswerUpdateResultSchema = z.nullable(z.object({ - id: z.string(), - createdAt: z.date(), - updatedAt: z.date(), - feedbackFormId: z.string(), - attendeeId: z.string(), - feedbackForm: z.unknown(), - attendee: z.unknown(), - answers: z.array(z.unknown()) -})); - -// File: FeedbackFormAnswerUpdateManyResult.schema.ts -export const FeedbackFormAnswerUpdateManyResultSchema = z.object({ - count: z.number() -}); - -// File: FeedbackFormAnswerUpsertResult.schema.ts -export const FeedbackFormAnswerUpsertResultSchema = z.object({ - id: z.string(), - createdAt: z.date(), - updatedAt: z.date(), - feedbackFormId: z.string(), - attendeeId: z.string(), - feedbackForm: z.unknown(), - attendee: z.unknown(), - answers: z.array(z.unknown()) -}); - -// File: FeedbackFormAnswerDeleteResult.schema.ts -export const FeedbackFormAnswerDeleteResultSchema = z.nullable(z.object({ - id: z.string(), - createdAt: z.date(), - updatedAt: z.date(), - feedbackFormId: z.string(), - attendeeId: z.string(), - feedbackForm: z.unknown(), - attendee: z.unknown(), - answers: z.array(z.unknown()) -})); - -// File: FeedbackFormAnswerDeleteManyResult.schema.ts -export const FeedbackFormAnswerDeleteManyResultSchema = z.object({ - count: z.number() -}); - -// File: FeedbackFormAnswerAggregateResult.schema.ts -export const FeedbackFormAnswerAggregateResultSchema = z.object({ _count: z.object({ - id: z.number(), - createdAt: z.number(), - updatedAt: z.number(), - feedbackFormId: z.number(), - attendeeId: z.number(), - feedbackForm: z.number(), - attendee: z.number(), - answers: z.number() - }).optional(), - _min: z.object({ - id: z.string().nullable(), - createdAt: z.date().nullable(), - updatedAt: z.date().nullable(), - feedbackFormId: z.string().nullable(), - attendeeId: z.string().nullable() - }).nullable().optional(), - _max: z.object({ - id: z.string().nullable(), - createdAt: z.date().nullable(), - updatedAt: z.date().nullable(), - feedbackFormId: z.string().nullable(), - attendeeId: z.string().nullable() - }).nullable().optional()}); - -// File: FeedbackFormAnswerGroupByResult.schema.ts -export const FeedbackFormAnswerGroupByResultSchema = z.array(z.object({ - id: z.string(), - createdAt: z.date(), - updatedAt: z.date(), - feedbackFormId: z.string(), - attendeeId: z.string(), - _count: z.object({ - id: z.number(), - createdAt: z.number(), - updatedAt: z.number(), - feedbackFormId: z.number(), - attendeeId: z.number(), - feedbackForm: z.number(), - attendee: z.number(), - answers: z.number() - }).optional(), - _min: z.object({ - id: z.string().nullable(), - createdAt: z.date().nullable(), - updatedAt: z.date().nullable(), - feedbackFormId: z.string().nullable(), - attendeeId: z.string().nullable() - }).nullable().optional(), - _max: z.object({ - id: z.string().nullable(), - createdAt: z.date().nullable(), - updatedAt: z.date().nullable(), - feedbackFormId: z.string().nullable(), - attendeeId: z.string().nullable() - }).nullable().optional() -})); - -// File: FeedbackFormAnswerCountResult.schema.ts -export const FeedbackFormAnswerCountResultSchema = z.number(); - -// File: AuditLogFindUniqueResult.schema.ts -export const AuditLogFindUniqueResultSchema = z.nullable(z.object({ - id: z.string(), - tableName: z.string(), - rowId: z.string().optional(), - createdAt: z.date(), - operation: z.string(), - rowData: z.unknown(), - transactionId: z.bigint(), - user: z.unknown().optional(), - userId: z.string().optional() -})); - -// File: AuditLogFindFirstResult.schema.ts -export const AuditLogFindFirstResultSchema = z.nullable(z.object({ - id: z.string(), - tableName: z.string(), - rowId: z.string().optional(), - createdAt: z.date(), - operation: z.string(), - rowData: z.unknown(), - transactionId: z.bigint(), - user: z.unknown().optional(), - userId: z.string().optional() -})); - -// File: AuditLogFindManyResult.schema.ts -export const AuditLogFindManyResultSchema = z.object({ - data: z.array(z.object({ - id: z.string(), - tableName: z.string(), - rowId: z.string().optional(), - createdAt: z.date(), - operation: z.string(), - rowData: z.unknown(), - transactionId: z.bigint(), - user: z.unknown().optional(), - userId: z.string().optional() -})), - pagination: z.object({ - page: z.number().int().min(1), - pageSize: z.number().int().min(1), - total: z.number().int().min(0), - totalPages: z.number().int().min(0), - hasNext: z.boolean(), - hasPrev: z.boolean() -}) -}); - -// File: AuditLogCreateResult.schema.ts -export const AuditLogCreateResultSchema = z.object({ - id: z.string(), - tableName: z.string(), - rowId: z.string().optional(), - createdAt: z.date(), - operation: z.string(), - rowData: z.unknown(), - transactionId: z.bigint(), - user: z.unknown().optional(), - userId: z.string().optional() -}); - -// File: AuditLogCreateManyResult.schema.ts -export const AuditLogCreateManyResultSchema = z.object({ - count: z.number() -}); - -// File: AuditLogUpdateResult.schema.ts -export const AuditLogUpdateResultSchema = z.nullable(z.object({ - id: z.string(), - tableName: z.string(), - rowId: z.string().optional(), - createdAt: z.date(), - operation: z.string(), - rowData: z.unknown(), - transactionId: z.bigint(), - user: z.unknown().optional(), - userId: z.string().optional() -})); - -// File: AuditLogUpdateManyResult.schema.ts -export const AuditLogUpdateManyResultSchema = z.object({ - count: z.number() -}); - -// File: AuditLogUpsertResult.schema.ts -export const AuditLogUpsertResultSchema = z.object({ - id: z.string(), - tableName: z.string(), - rowId: z.string().optional(), - createdAt: z.date(), - operation: z.string(), - rowData: z.unknown(), - transactionId: z.bigint(), - user: z.unknown().optional(), - userId: z.string().optional() -}); - -// File: AuditLogDeleteResult.schema.ts -export const AuditLogDeleteResultSchema = z.nullable(z.object({ - id: z.string(), - tableName: z.string(), - rowId: z.string().optional(), - createdAt: z.date(), - operation: z.string(), - rowData: z.unknown(), - transactionId: z.bigint(), - user: z.unknown().optional(), - userId: z.string().optional() -})); - -// File: AuditLogDeleteManyResult.schema.ts -export const AuditLogDeleteManyResultSchema = z.object({ - count: z.number() -}); - -// File: AuditLogAggregateResult.schema.ts -export const AuditLogAggregateResultSchema = z.object({ _count: z.object({ - id: z.number(), - tableName: z.number(), - rowId: z.number(), - createdAt: z.number(), - operation: z.number(), - rowData: z.number(), - transactionId: z.number(), - user: z.number(), - userId: z.number() - }).optional(), - _sum: z.object({ - transactionId: z.bigint().nullable() - }).nullable().optional(), - _avg: z.object({ - transactionId: z.number().nullable() - }).nullable().optional(), - _min: z.object({ - id: z.string().nullable(), - tableName: z.string().nullable(), - rowId: z.string().nullable(), - createdAt: z.date().nullable(), - operation: z.string().nullable(), - transactionId: z.bigint().nullable(), - userId: z.string().nullable() - }).nullable().optional(), - _max: z.object({ - id: z.string().nullable(), - tableName: z.string().nullable(), - rowId: z.string().nullable(), - createdAt: z.date().nullable(), - operation: z.string().nullable(), - transactionId: z.bigint().nullable(), - userId: z.string().nullable() - }).nullable().optional()}); - -// File: AuditLogGroupByResult.schema.ts -export const AuditLogGroupByResultSchema = z.array(z.object({ - id: z.string(), - tableName: z.string(), - rowId: z.string(), - createdAt: z.date(), - operation: z.string(), - rowData: z.unknown(), - transactionId: z.bigint(), - userId: z.string(), - _count: z.object({ - id: z.number(), - tableName: z.number(), - rowId: z.number(), - createdAt: z.number(), - operation: z.number(), - rowData: z.number(), - transactionId: z.number(), - user: z.number(), - userId: z.number() - }).optional(), - _sum: z.object({ - transactionId: z.bigint().nullable() - }).nullable().optional(), - _avg: z.object({ - transactionId: z.number().nullable() - }).nullable().optional(), - _min: z.object({ - id: z.string().nullable(), - tableName: z.string().nullable(), - rowId: z.string().nullable(), - createdAt: z.date().nullable(), - operation: z.string().nullable(), - transactionId: z.bigint().nullable(), - userId: z.string().nullable() - }).nullable().optional(), - _max: z.object({ - id: z.string().nullable(), - tableName: z.string().nullable(), - rowId: z.string().nullable(), - createdAt: z.date().nullable(), - operation: z.string().nullable(), - transactionId: z.bigint().nullable(), - userId: z.string().nullable() - }).nullable().optional() -})); - -// File: AuditLogCountResult.schema.ts -export const AuditLogCountResultSchema = z.number(); - -// File: DeregisterReasonFindUniqueResult.schema.ts -export const DeregisterReasonFindUniqueResultSchema = z.nullable(z.object({ - id: z.string(), - createdAt: z.date(), - registeredAt: z.date(), - type: z.unknown(), - details: z.string().optional(), - userGrade: z.number().int().optional(), - userId: z.string(), - eventId: z.string(), - user: z.unknown(), - event: z.unknown() -})); - -// File: DeregisterReasonFindFirstResult.schema.ts -export const DeregisterReasonFindFirstResultSchema = z.nullable(z.object({ - id: z.string(), - createdAt: z.date(), - registeredAt: z.date(), - type: z.unknown(), - details: z.string().optional(), - userGrade: z.number().int().optional(), - userId: z.string(), - eventId: z.string(), - user: z.unknown(), - event: z.unknown() -})); - -// File: DeregisterReasonFindManyResult.schema.ts -export const DeregisterReasonFindManyResultSchema = z.object({ - data: z.array(z.object({ - id: z.string(), - createdAt: z.date(), - registeredAt: z.date(), - type: z.unknown(), - details: z.string().optional(), - userGrade: z.number().int().optional(), - userId: z.string(), - eventId: z.string(), - user: z.unknown(), - event: z.unknown() -})), - pagination: z.object({ - page: z.number().int().min(1), - pageSize: z.number().int().min(1), - total: z.number().int().min(0), - totalPages: z.number().int().min(0), - hasNext: z.boolean(), - hasPrev: z.boolean() -}) -}); - -// File: DeregisterReasonCreateResult.schema.ts -export const DeregisterReasonCreateResultSchema = z.object({ - id: z.string(), - createdAt: z.date(), - registeredAt: z.date(), - type: z.unknown(), - details: z.string().optional(), - userGrade: z.number().int().optional(), - userId: z.string(), - eventId: z.string(), - user: z.unknown(), - event: z.unknown() -}); - -// File: DeregisterReasonCreateManyResult.schema.ts -export const DeregisterReasonCreateManyResultSchema = z.object({ - count: z.number() -}); - -// File: DeregisterReasonUpdateResult.schema.ts -export const DeregisterReasonUpdateResultSchema = z.nullable(z.object({ - id: z.string(), - createdAt: z.date(), - registeredAt: z.date(), - type: z.unknown(), - details: z.string().optional(), - userGrade: z.number().int().optional(), - userId: z.string(), - eventId: z.string(), - user: z.unknown(), - event: z.unknown() -})); - -// File: DeregisterReasonUpdateManyResult.schema.ts -export const DeregisterReasonUpdateManyResultSchema = z.object({ - count: z.number() -}); - -// File: DeregisterReasonUpsertResult.schema.ts -export const DeregisterReasonUpsertResultSchema = z.object({ - id: z.string(), - createdAt: z.date(), - registeredAt: z.date(), - type: z.unknown(), - details: z.string().optional(), - userGrade: z.number().int().optional(), - userId: z.string(), - eventId: z.string(), - user: z.unknown(), - event: z.unknown() -}); - -// File: DeregisterReasonDeleteResult.schema.ts -export const DeregisterReasonDeleteResultSchema = z.nullable(z.object({ - id: z.string(), - createdAt: z.date(), - registeredAt: z.date(), - type: z.unknown(), - details: z.string().optional(), - userGrade: z.number().int().optional(), - userId: z.string(), - eventId: z.string(), - user: z.unknown(), - event: z.unknown() -})); - -// File: DeregisterReasonDeleteManyResult.schema.ts -export const DeregisterReasonDeleteManyResultSchema = z.object({ - count: z.number() -}); - -// File: DeregisterReasonAggregateResult.schema.ts -export const DeregisterReasonAggregateResultSchema = z.object({ _count: z.object({ - id: z.number(), - createdAt: z.number(), - registeredAt: z.number(), - type: z.number(), - details: z.number(), - userGrade: z.number(), - userId: z.number(), - eventId: z.number(), - user: z.number(), - event: z.number() - }).optional(), - _sum: z.object({ - userGrade: z.number().nullable() - }).nullable().optional(), - _avg: z.object({ - userGrade: z.number().nullable() - }).nullable().optional(), - _min: z.object({ - id: z.string().nullable(), - createdAt: z.date().nullable(), - registeredAt: z.date().nullable(), - details: z.string().nullable(), - userGrade: z.number().int().nullable(), - userId: z.string().nullable(), - eventId: z.string().nullable() - }).nullable().optional(), - _max: z.object({ - id: z.string().nullable(), - createdAt: z.date().nullable(), - registeredAt: z.date().nullable(), - details: z.string().nullable(), - userGrade: z.number().int().nullable(), - userId: z.string().nullable(), - eventId: z.string().nullable() - }).nullable().optional()}); - -// File: DeregisterReasonGroupByResult.schema.ts -export const DeregisterReasonGroupByResultSchema = z.array(z.object({ - id: z.string(), - createdAt: z.date(), - registeredAt: z.date(), - details: z.string(), - userGrade: z.number().int(), - userId: z.string(), - eventId: z.string(), - _count: z.object({ - id: z.number(), - createdAt: z.number(), - registeredAt: z.number(), - type: z.number(), - details: z.number(), - userGrade: z.number(), - userId: z.number(), - eventId: z.number(), - user: z.number(), - event: z.number() - }).optional(), - _sum: z.object({ - userGrade: z.number().nullable() - }).nullable().optional(), - _avg: z.object({ - userGrade: z.number().nullable() - }).nullable().optional(), - _min: z.object({ - id: z.string().nullable(), - createdAt: z.date().nullable(), - registeredAt: z.date().nullable(), - details: z.string().nullable(), - userGrade: z.number().int().nullable(), - userId: z.string().nullable(), - eventId: z.string().nullable() - }).nullable().optional(), - _max: z.object({ - id: z.string().nullable(), - createdAt: z.date().nullable(), - registeredAt: z.date().nullable(), - details: z.string().nullable(), - userGrade: z.number().int().nullable(), - userId: z.string().nullable(), - eventId: z.string().nullable() - }).nullable().optional() -})); - -// File: DeregisterReasonCountResult.schema.ts -export const DeregisterReasonCountResultSchema = z.number(); - -// File: NotificationRecipientFindUniqueResult.schema.ts -export const NotificationRecipientFindUniqueResultSchema = z.nullable(z.object({ - id: z.string(), - readAt: z.date(), - notificationId: z.string(), - notification: z.unknown(), - userId: z.string(), - user: z.unknown() -})); - -// File: NotificationRecipientFindFirstResult.schema.ts -export const NotificationRecipientFindFirstResultSchema = z.nullable(z.object({ - id: z.string(), - readAt: z.date(), - notificationId: z.string(), - notification: z.unknown(), - userId: z.string(), - user: z.unknown() -})); - -// File: NotificationRecipientFindManyResult.schema.ts -export const NotificationRecipientFindManyResultSchema = z.object({ - data: z.array(z.object({ - id: z.string(), - readAt: z.date(), - notificationId: z.string(), - notification: z.unknown(), - userId: z.string(), - user: z.unknown() -})), - pagination: z.object({ - page: z.number().int().min(1), - pageSize: z.number().int().min(1), - total: z.number().int().min(0), - totalPages: z.number().int().min(0), - hasNext: z.boolean(), - hasPrev: z.boolean() -}) -}); - -// File: NotificationRecipientCreateResult.schema.ts -export const NotificationRecipientCreateResultSchema = z.object({ - id: z.string(), - readAt: z.date(), - notificationId: z.string(), - notification: z.unknown(), - userId: z.string(), - user: z.unknown() -}); - -// File: NotificationRecipientCreateManyResult.schema.ts -export const NotificationRecipientCreateManyResultSchema = z.object({ - count: z.number() -}); - -// File: NotificationRecipientUpdateResult.schema.ts -export const NotificationRecipientUpdateResultSchema = z.nullable(z.object({ - id: z.string(), - readAt: z.date(), - notificationId: z.string(), - notification: z.unknown(), - userId: z.string(), - user: z.unknown() -})); - -// File: NotificationRecipientUpdateManyResult.schema.ts -export const NotificationRecipientUpdateManyResultSchema = z.object({ - count: z.number() -}); - -// File: NotificationRecipientUpsertResult.schema.ts -export const NotificationRecipientUpsertResultSchema = z.object({ - id: z.string(), - readAt: z.date(), - notificationId: z.string(), - notification: z.unknown(), - userId: z.string(), - user: z.unknown() -}); - -// File: NotificationRecipientDeleteResult.schema.ts -export const NotificationRecipientDeleteResultSchema = z.nullable(z.object({ - id: z.string(), - readAt: z.date(), - notificationId: z.string(), - notification: z.unknown(), - userId: z.string(), - user: z.unknown() -})); - -// File: NotificationRecipientDeleteManyResult.schema.ts -export const NotificationRecipientDeleteManyResultSchema = z.object({ - count: z.number() -}); - -// File: NotificationRecipientAggregateResult.schema.ts -export const NotificationRecipientAggregateResultSchema = z.object({ _count: z.object({ - id: z.number(), - readAt: z.number(), - notificationId: z.number(), - notification: z.number(), - userId: z.number(), - user: z.number() - }).optional(), - _min: z.object({ - id: z.string().nullable(), - readAt: z.date().nullable(), - notificationId: z.string().nullable(), - userId: z.string().nullable() - }).nullable().optional(), - _max: z.object({ - id: z.string().nullable(), - readAt: z.date().nullable(), - notificationId: z.string().nullable(), - userId: z.string().nullable() - }).nullable().optional()}); - -// File: NotificationRecipientGroupByResult.schema.ts -export const NotificationRecipientGroupByResultSchema = z.array(z.object({ - id: z.string(), - readAt: z.date(), - notificationId: z.string(), - userId: z.string(), - _count: z.object({ - id: z.number(), - readAt: z.number(), - notificationId: z.number(), - notification: z.number(), - userId: z.number(), - user: z.number() - }).optional(), - _min: z.object({ - id: z.string().nullable(), - readAt: z.date().nullable(), - notificationId: z.string().nullable(), - userId: z.string().nullable() - }).nullable().optional(), - _max: z.object({ - id: z.string().nullable(), - readAt: z.date().nullable(), - notificationId: z.string().nullable(), - userId: z.string().nullable() - }).nullable().optional() -})); - -// File: NotificationRecipientCountResult.schema.ts -export const NotificationRecipientCountResultSchema = z.number(); - -// File: NotificationFindUniqueResult.schema.ts -export const NotificationFindUniqueResultSchema = z.nullable(z.object({ - id: z.string(), - createdAt: z.date(), - updatedAt: z.date(), - title: z.string(), - shortDescription: z.string().optional(), - content: z.string(), - type: z.unknown(), - payload: z.string().optional(), - payloadType: z.unknown(), - actorGroupId: z.string(), - actorGroup: z.unknown(), - createdById: z.string().optional(), - createdBy: z.unknown().optional(), - lastUpdatedById: z.string().optional(), - lastUpdatedBy: z.unknown().optional(), - taskId: z.string().optional(), - task: z.unknown().optional(), - recipients: z.array(z.unknown()) -})); - -// File: NotificationFindFirstResult.schema.ts -export const NotificationFindFirstResultSchema = z.nullable(z.object({ - id: z.string(), - createdAt: z.date(), - updatedAt: z.date(), - title: z.string(), - shortDescription: z.string().optional(), - content: z.string(), - type: z.unknown(), - payload: z.string().optional(), - payloadType: z.unknown(), - actorGroupId: z.string(), - actorGroup: z.unknown(), - createdById: z.string().optional(), - createdBy: z.unknown().optional(), - lastUpdatedById: z.string().optional(), - lastUpdatedBy: z.unknown().optional(), - taskId: z.string().optional(), - task: z.unknown().optional(), - recipients: z.array(z.unknown()) -})); - -// File: NotificationFindManyResult.schema.ts -export const NotificationFindManyResultSchema = z.object({ - data: z.array(z.object({ - id: z.string(), - createdAt: z.date(), - updatedAt: z.date(), - title: z.string(), - shortDescription: z.string().optional(), - content: z.string(), - type: z.unknown(), - payload: z.string().optional(), - payloadType: z.unknown(), - actorGroupId: z.string(), - actorGroup: z.unknown(), - createdById: z.string().optional(), - createdBy: z.unknown().optional(), - lastUpdatedById: z.string().optional(), - lastUpdatedBy: z.unknown().optional(), - taskId: z.string().optional(), - task: z.unknown().optional(), - recipients: z.array(z.unknown()) -})), - pagination: z.object({ - page: z.number().int().min(1), - pageSize: z.number().int().min(1), - total: z.number().int().min(0), - totalPages: z.number().int().min(0), - hasNext: z.boolean(), - hasPrev: z.boolean() -}) -}); - -// File: NotificationCreateResult.schema.ts -export const NotificationCreateResultSchema = z.object({ - id: z.string(), - createdAt: z.date(), - updatedAt: z.date(), - title: z.string(), - shortDescription: z.string().optional(), - content: z.string(), - type: z.unknown(), - payload: z.string().optional(), - payloadType: z.unknown(), - actorGroupId: z.string(), - actorGroup: z.unknown(), - createdById: z.string().optional(), - createdBy: z.unknown().optional(), - lastUpdatedById: z.string().optional(), - lastUpdatedBy: z.unknown().optional(), - taskId: z.string().optional(), - task: z.unknown().optional(), - recipients: z.array(z.unknown()) -}); - -// File: NotificationCreateManyResult.schema.ts -export const NotificationCreateManyResultSchema = z.object({ - count: z.number() -}); - -// File: NotificationUpdateResult.schema.ts -export const NotificationUpdateResultSchema = z.nullable(z.object({ - id: z.string(), - createdAt: z.date(), - updatedAt: z.date(), - title: z.string(), - shortDescription: z.string().optional(), - content: z.string(), - type: z.unknown(), - payload: z.string().optional(), - payloadType: z.unknown(), - actorGroupId: z.string(), - actorGroup: z.unknown(), - createdById: z.string().optional(), - createdBy: z.unknown().optional(), - lastUpdatedById: z.string().optional(), - lastUpdatedBy: z.unknown().optional(), - taskId: z.string().optional(), - task: z.unknown().optional(), - recipients: z.array(z.unknown()) -})); - -// File: NotificationUpdateManyResult.schema.ts -export const NotificationUpdateManyResultSchema = z.object({ - count: z.number() -}); - -// File: NotificationUpsertResult.schema.ts -export const NotificationUpsertResultSchema = z.object({ - id: z.string(), - createdAt: z.date(), - updatedAt: z.date(), - title: z.string(), - shortDescription: z.string().optional(), - content: z.string(), - type: z.unknown(), - payload: z.string().optional(), - payloadType: z.unknown(), - actorGroupId: z.string(), - actorGroup: z.unknown(), - createdById: z.string().optional(), - createdBy: z.unknown().optional(), - lastUpdatedById: z.string().optional(), - lastUpdatedBy: z.unknown().optional(), - taskId: z.string().optional(), - task: z.unknown().optional(), - recipients: z.array(z.unknown()) -}); - -// File: NotificationDeleteResult.schema.ts -export const NotificationDeleteResultSchema = z.nullable(z.object({ - id: z.string(), - createdAt: z.date(), - updatedAt: z.date(), - title: z.string(), - shortDescription: z.string().optional(), - content: z.string(), - type: z.unknown(), - payload: z.string().optional(), - payloadType: z.unknown(), - actorGroupId: z.string(), - actorGroup: z.unknown(), - createdById: z.string().optional(), - createdBy: z.unknown().optional(), - lastUpdatedById: z.string().optional(), - lastUpdatedBy: z.unknown().optional(), - taskId: z.string().optional(), - task: z.unknown().optional(), - recipients: z.array(z.unknown()) -})); - -// File: NotificationDeleteManyResult.schema.ts -export const NotificationDeleteManyResultSchema = z.object({ - count: z.number() -}); - -// File: NotificationAggregateResult.schema.ts -export const NotificationAggregateResultSchema = z.object({ _count: z.object({ - id: z.number(), - createdAt: z.number(), - updatedAt: z.number(), - title: z.number(), - shortDescription: z.number(), - content: z.number(), - type: z.number(), - payload: z.number(), - payloadType: z.number(), - actorGroupId: z.number(), - actorGroup: z.number(), - createdById: z.number(), - createdBy: z.number(), - lastUpdatedById: z.number(), - lastUpdatedBy: z.number(), - taskId: z.number(), - task: z.number(), - recipients: z.number() - }).optional(), - _min: z.object({ - id: z.string().nullable(), - createdAt: z.date().nullable(), - updatedAt: z.date().nullable(), - title: z.string().nullable(), - shortDescription: z.string().nullable(), - content: z.string().nullable(), - payload: z.string().nullable(), - actorGroupId: z.string().nullable(), - createdById: z.string().nullable(), - lastUpdatedById: z.string().nullable(), - taskId: z.string().nullable() - }).nullable().optional(), - _max: z.object({ - id: z.string().nullable(), - createdAt: z.date().nullable(), - updatedAt: z.date().nullable(), - title: z.string().nullable(), - shortDescription: z.string().nullable(), - content: z.string().nullable(), - payload: z.string().nullable(), - actorGroupId: z.string().nullable(), - createdById: z.string().nullable(), - lastUpdatedById: z.string().nullable(), - taskId: z.string().nullable() - }).nullable().optional()}); - -// File: NotificationGroupByResult.schema.ts -export const NotificationGroupByResultSchema = z.array(z.object({ - id: z.string(), - createdAt: z.date(), - updatedAt: z.date(), - title: z.string(), - shortDescription: z.string(), - content: z.string(), - payload: z.string(), - actorGroupId: z.string(), - createdById: z.string(), - lastUpdatedById: z.string(), - taskId: z.string(), - _count: z.object({ - id: z.number(), - createdAt: z.number(), - updatedAt: z.number(), - title: z.number(), - shortDescription: z.number(), - content: z.number(), - type: z.number(), - payload: z.number(), - payloadType: z.number(), - actorGroupId: z.number(), - actorGroup: z.number(), - createdById: z.number(), - createdBy: z.number(), - lastUpdatedById: z.number(), - lastUpdatedBy: z.number(), - taskId: z.number(), - task: z.number(), - recipients: z.number() - }).optional(), - _min: z.object({ - id: z.string().nullable(), - createdAt: z.date().nullable(), - updatedAt: z.date().nullable(), - title: z.string().nullable(), - shortDescription: z.string().nullable(), - content: z.string().nullable(), - payload: z.string().nullable(), - actorGroupId: z.string().nullable(), - createdById: z.string().nullable(), - lastUpdatedById: z.string().nullable(), - taskId: z.string().nullable() - }).nullable().optional(), - _max: z.object({ - id: z.string().nullable(), - createdAt: z.date().nullable(), - updatedAt: z.date().nullable(), - title: z.string().nullable(), - shortDescription: z.string().nullable(), - content: z.string().nullable(), - payload: z.string().nullable(), - actorGroupId: z.string().nullable(), - createdById: z.string().nullable(), - lastUpdatedById: z.string().nullable(), - taskId: z.string().nullable() - }).nullable().optional() -})); - -// File: NotificationCountResult.schema.ts -export const NotificationCountResultSchema = z.number(); - -// File: ContestFindUniqueResult.schema.ts -export const ContestFindUniqueResultSchema = z.nullable(z.object({ - id: z.string(), - name: z.string(), - description: z.string().optional(), - startDate: z.date().optional(), - resultType: z.unknown(), - resultOrder: z.unknown(), - winnerContestantId: z.string().optional(), - winnerContestant: z.unknown().optional(), - contestants: z.array(z.unknown()), - groups: z.array(z.unknown()), - events: z.array(z.unknown()) -})); - -// File: ContestFindFirstResult.schema.ts -export const ContestFindFirstResultSchema = z.nullable(z.object({ - id: z.string(), - name: z.string(), - description: z.string().optional(), - startDate: z.date().optional(), - resultType: z.unknown(), - resultOrder: z.unknown(), - winnerContestantId: z.string().optional(), - winnerContestant: z.unknown().optional(), - contestants: z.array(z.unknown()), - groups: z.array(z.unknown()), - events: z.array(z.unknown()) -})); - -// File: ContestFindManyResult.schema.ts -export const ContestFindManyResultSchema = z.object({ - data: z.array(z.object({ - id: z.string(), - name: z.string(), - description: z.string().optional(), - startDate: z.date().optional(), - resultType: z.unknown(), - resultOrder: z.unknown(), - winnerContestantId: z.string().optional(), - winnerContestant: z.unknown().optional(), - contestants: z.array(z.unknown()), - groups: z.array(z.unknown()), - events: z.array(z.unknown()) -})), - pagination: z.object({ - page: z.number().int().min(1), - pageSize: z.number().int().min(1), - total: z.number().int().min(0), - totalPages: z.number().int().min(0), - hasNext: z.boolean(), - hasPrev: z.boolean() -}) -}); - -// File: ContestCreateResult.schema.ts -export const ContestCreateResultSchema = z.object({ - id: z.string(), - name: z.string(), - description: z.string().optional(), - startDate: z.date().optional(), - resultType: z.unknown(), - resultOrder: z.unknown(), - winnerContestantId: z.string().optional(), - winnerContestant: z.unknown().optional(), - contestants: z.array(z.unknown()), - groups: z.array(z.unknown()), - events: z.array(z.unknown()) -}); - -// File: ContestCreateManyResult.schema.ts -export const ContestCreateManyResultSchema = z.object({ - count: z.number() -}); - -// File: ContestUpdateResult.schema.ts -export const ContestUpdateResultSchema = z.nullable(z.object({ - id: z.string(), - name: z.string(), - description: z.string().optional(), - startDate: z.date().optional(), - resultType: z.unknown(), - resultOrder: z.unknown(), - winnerContestantId: z.string().optional(), - winnerContestant: z.unknown().optional(), - contestants: z.array(z.unknown()), - groups: z.array(z.unknown()), - events: z.array(z.unknown()) -})); - -// File: ContestUpdateManyResult.schema.ts -export const ContestUpdateManyResultSchema = z.object({ - count: z.number() -}); - -// File: ContestUpsertResult.schema.ts -export const ContestUpsertResultSchema = z.object({ - id: z.string(), - name: z.string(), - description: z.string().optional(), - startDate: z.date().optional(), - resultType: z.unknown(), - resultOrder: z.unknown(), - winnerContestantId: z.string().optional(), - winnerContestant: z.unknown().optional(), - contestants: z.array(z.unknown()), - groups: z.array(z.unknown()), - events: z.array(z.unknown()) -}); - -// File: ContestDeleteResult.schema.ts -export const ContestDeleteResultSchema = z.nullable(z.object({ - id: z.string(), - name: z.string(), - description: z.string().optional(), - startDate: z.date().optional(), - resultType: z.unknown(), - resultOrder: z.unknown(), - winnerContestantId: z.string().optional(), - winnerContestant: z.unknown().optional(), - contestants: z.array(z.unknown()), - groups: z.array(z.unknown()), - events: z.array(z.unknown()) -})); - -// File: ContestDeleteManyResult.schema.ts -export const ContestDeleteManyResultSchema = z.object({ - count: z.number() -}); - -// File: ContestAggregateResult.schema.ts -export const ContestAggregateResultSchema = z.object({ _count: z.object({ - id: z.number(), - name: z.number(), - description: z.number(), - startDate: z.number(), - resultType: z.number(), - resultOrder: z.number(), - winnerContestantId: z.number(), - winnerContestant: z.number(), - contestants: z.number(), - groups: z.number(), - events: z.number() - }).optional(), - _min: z.object({ - id: z.string().nullable(), - name: z.string().nullable(), - description: z.string().nullable(), - startDate: z.date().nullable(), - winnerContestantId: z.string().nullable() - }).nullable().optional(), - _max: z.object({ - id: z.string().nullable(), - name: z.string().nullable(), - description: z.string().nullable(), - startDate: z.date().nullable(), - winnerContestantId: z.string().nullable() - }).nullable().optional()}); - -// File: ContestGroupByResult.schema.ts -export const ContestGroupByResultSchema = z.array(z.object({ - id: z.string(), - name: z.string(), - description: z.string(), - startDate: z.date(), - winnerContestantId: z.string(), - _count: z.object({ - id: z.number(), - name: z.number(), - description: z.number(), - startDate: z.number(), - resultType: z.number(), - resultOrder: z.number(), - winnerContestantId: z.number(), - winnerContestant: z.number(), - contestants: z.number(), - groups: z.number(), - events: z.number() - }).optional(), - _min: z.object({ - id: z.string().nullable(), - name: z.string().nullable(), - description: z.string().nullable(), - startDate: z.date().nullable(), - winnerContestantId: z.string().nullable() - }).nullable().optional(), - _max: z.object({ - id: z.string().nullable(), - name: z.string().nullable(), - description: z.string().nullable(), - startDate: z.date().nullable(), - winnerContestantId: z.string().nullable() - }).nullable().optional() -})); - -// File: ContestCountResult.schema.ts -export const ContestCountResultSchema = z.number(); - -// File: FadderukeFindUniqueResult.schema.ts -export const FadderukeFindUniqueResultSchema = z.nullable(z.object({ - id: z.string(), - year: z.number().int(), - eventId: z.string(), - event: z.unknown(), - createdAt: z.date(), - updatedAt: z.date() -})); - -// File: FadderukeFindFirstResult.schema.ts -export const FadderukeFindFirstResultSchema = z.nullable(z.object({ - id: z.string(), - year: z.number().int(), - eventId: z.string(), - event: z.unknown(), - createdAt: z.date(), - updatedAt: z.date() -})); - -// File: FadderukeFindManyResult.schema.ts -export const FadderukeFindManyResultSchema = z.object({ - data: z.array(z.object({ - id: z.string(), - year: z.number().int(), - eventId: z.string(), - event: z.unknown(), - createdAt: z.date(), - updatedAt: z.date() -})), - pagination: z.object({ - page: z.number().int().min(1), - pageSize: z.number().int().min(1), - total: z.number().int().min(0), - totalPages: z.number().int().min(0), - hasNext: z.boolean(), - hasPrev: z.boolean() -}) -}); - -// File: FadderukeCreateResult.schema.ts -export const FadderukeCreateResultSchema = z.object({ - id: z.string(), - year: z.number().int(), - eventId: z.string(), - event: z.unknown(), - createdAt: z.date(), - updatedAt: z.date() -}); - -// File: FadderukeCreateManyResult.schema.ts -export const FadderukeCreateManyResultSchema = z.object({ - count: z.number() -}); - -// File: FadderukeUpdateResult.schema.ts -export const FadderukeUpdateResultSchema = z.nullable(z.object({ - id: z.string(), - year: z.number().int(), - eventId: z.string(), - event: z.unknown(), - createdAt: z.date(), - updatedAt: z.date() -})); - -// File: FadderukeUpdateManyResult.schema.ts -export const FadderukeUpdateManyResultSchema = z.object({ - count: z.number() -}); - -// File: FadderukeUpsertResult.schema.ts -export const FadderukeUpsertResultSchema = z.object({ - id: z.string(), - year: z.number().int(), - eventId: z.string(), - event: z.unknown(), - createdAt: z.date(), - updatedAt: z.date() -}); - -// File: FadderukeDeleteResult.schema.ts -export const FadderukeDeleteResultSchema = z.nullable(z.object({ - id: z.string(), - year: z.number().int(), - eventId: z.string(), - event: z.unknown(), - createdAt: z.date(), - updatedAt: z.date() -})); - -// File: FadderukeDeleteManyResult.schema.ts -export const FadderukeDeleteManyResultSchema = z.object({ - count: z.number() -}); - -// File: FadderukeAggregateResult.schema.ts -export const FadderukeAggregateResultSchema = z.object({ _count: z.object({ - id: z.number(), - year: z.number(), - eventId: z.number(), - event: z.number(), - createdAt: z.number(), - updatedAt: z.number() - }).optional(), - _sum: z.object({ - year: z.number().nullable() - }).nullable().optional(), - _avg: z.object({ - year: z.number().nullable() - }).nullable().optional(), - _min: z.object({ - id: z.string().nullable(), - year: z.number().int().nullable(), - eventId: z.string().nullable(), - createdAt: z.date().nullable(), - updatedAt: z.date().nullable() - }).nullable().optional(), - _max: z.object({ - id: z.string().nullable(), - year: z.number().int().nullable(), - eventId: z.string().nullable(), - createdAt: z.date().nullable(), - updatedAt: z.date().nullable() - }).nullable().optional()}); - -// File: FadderukeGroupByResult.schema.ts -export const FadderukeGroupByResultSchema = z.array(z.object({ - id: z.string(), - year: z.number().int(), - eventId: z.string(), - createdAt: z.date(), - updatedAt: z.date(), - _count: z.object({ - id: z.number(), - year: z.number(), - eventId: z.number(), - event: z.number(), - createdAt: z.number(), - updatedAt: z.number() - }).optional(), - _sum: z.object({ - year: z.number().nullable() - }).nullable().optional(), - _avg: z.object({ - year: z.number().nullable() - }).nullable().optional(), - _min: z.object({ - id: z.string().nullable(), - year: z.number().int().nullable(), - eventId: z.string().nullable(), - createdAt: z.date().nullable(), - updatedAt: z.date().nullable() - }).nullable().optional(), - _max: z.object({ - id: z.string().nullable(), - year: z.number().int().nullable(), - eventId: z.string().nullable(), - createdAt: z.date().nullable(), - updatedAt: z.date().nullable() - }).nullable().optional() -})); - -// File: FadderukeCountResult.schema.ts -export const FadderukeCountResultSchema = z.number(); - -// File: ContestantFindUniqueResult.schema.ts -export const ContestantFindUniqueResultSchema = z.nullable(z.object({ - id: z.string(), - resultValue: z.number().int().optional(), - contestId: z.string(), - userId: z.string().optional(), - contest: z.unknown(), - user: z.unknown().optional(), - team: z.unknown().optional(), - wonContest: z.unknown().optional() -})); - -// File: ContestantFindFirstResult.schema.ts -export const ContestantFindFirstResultSchema = z.nullable(z.object({ - id: z.string(), - resultValue: z.number().int().optional(), - contestId: z.string(), - userId: z.string().optional(), - contest: z.unknown(), - user: z.unknown().optional(), - team: z.unknown().optional(), - wonContest: z.unknown().optional() -})); - -// File: ContestantFindManyResult.schema.ts -export const ContestantFindManyResultSchema = z.object({ - data: z.array(z.object({ - id: z.string(), - resultValue: z.number().int().optional(), - contestId: z.string(), - userId: z.string().optional(), - contest: z.unknown(), - user: z.unknown().optional(), - team: z.unknown().optional(), - wonContest: z.unknown().optional() -})), - pagination: z.object({ - page: z.number().int().min(1), - pageSize: z.number().int().min(1), - total: z.number().int().min(0), - totalPages: z.number().int().min(0), - hasNext: z.boolean(), - hasPrev: z.boolean() -}) -}); - -// File: ContestantCreateResult.schema.ts -export const ContestantCreateResultSchema = z.object({ - id: z.string(), - resultValue: z.number().int().optional(), - contestId: z.string(), - userId: z.string().optional(), - contest: z.unknown(), - user: z.unknown().optional(), - team: z.unknown().optional(), - wonContest: z.unknown().optional() -}); - -// File: ContestantCreateManyResult.schema.ts -export const ContestantCreateManyResultSchema = z.object({ - count: z.number() -}); - -// File: ContestantUpdateResult.schema.ts -export const ContestantUpdateResultSchema = z.nullable(z.object({ - id: z.string(), - resultValue: z.number().int().optional(), - contestId: z.string(), - userId: z.string().optional(), - contest: z.unknown(), - user: z.unknown().optional(), - team: z.unknown().optional(), - wonContest: z.unknown().optional() -})); - -// File: ContestantUpdateManyResult.schema.ts -export const ContestantUpdateManyResultSchema = z.object({ - count: z.number() -}); - -// File: ContestantUpsertResult.schema.ts -export const ContestantUpsertResultSchema = z.object({ - id: z.string(), - resultValue: z.number().int().optional(), - contestId: z.string(), - userId: z.string().optional(), - contest: z.unknown(), - user: z.unknown().optional(), - team: z.unknown().optional(), - wonContest: z.unknown().optional() -}); - -// File: ContestantDeleteResult.schema.ts -export const ContestantDeleteResultSchema = z.nullable(z.object({ - id: z.string(), - resultValue: z.number().int().optional(), - contestId: z.string(), - userId: z.string().optional(), - contest: z.unknown(), - user: z.unknown().optional(), - team: z.unknown().optional(), - wonContest: z.unknown().optional() -})); - -// File: ContestantDeleteManyResult.schema.ts -export const ContestantDeleteManyResultSchema = z.object({ - count: z.number() -}); - -// File: ContestantAggregateResult.schema.ts -export const ContestantAggregateResultSchema = z.object({ _count: z.object({ - id: z.number(), - resultValue: z.number(), - contestId: z.number(), - userId: z.number(), - contest: z.number(), - user: z.number(), - team: z.number(), - wonContest: z.number() - }).optional(), - _sum: z.object({ - resultValue: z.number().nullable() - }).nullable().optional(), - _avg: z.object({ - resultValue: z.number().nullable() - }).nullable().optional(), - _min: z.object({ - id: z.string().nullable(), - resultValue: z.number().int().nullable(), - contestId: z.string().nullable(), - userId: z.string().nullable() - }).nullable().optional(), - _max: z.object({ - id: z.string().nullable(), - resultValue: z.number().int().nullable(), - contestId: z.string().nullable(), - userId: z.string().nullable() - }).nullable().optional()}); - -// File: ContestantGroupByResult.schema.ts -export const ContestantGroupByResultSchema = z.array(z.object({ - id: z.string(), - resultValue: z.number().int(), - contestId: z.string(), - userId: z.string(), - _count: z.object({ - id: z.number(), - resultValue: z.number(), - contestId: z.number(), - userId: z.number(), - contest: z.number(), - user: z.number(), - team: z.number(), - wonContest: z.number() - }).optional(), - _sum: z.object({ - resultValue: z.number().nullable() - }).nullable().optional(), - _avg: z.object({ - resultValue: z.number().nullable() - }).nullable().optional(), - _min: z.object({ - id: z.string().nullable(), - resultValue: z.number().int().nullable(), - contestId: z.string().nullable(), - userId: z.string().nullable() - }).nullable().optional(), - _max: z.object({ - id: z.string().nullable(), - resultValue: z.number().int().nullable(), - contestId: z.string().nullable(), - userId: z.string().nullable() - }).nullable().optional() -})); - -// File: ContestantCountResult.schema.ts -export const ContestantCountResultSchema = z.number(); - -// File: ContestTeamFindUniqueResult.schema.ts -export const ContestTeamFindUniqueResultSchema = z.nullable(z.object({ - id: z.string(), - name: z.string(), - contestantId: z.string(), - contestant: z.unknown(), - members: z.array(z.unknown()) -})); - -// File: ContestTeamFindFirstResult.schema.ts -export const ContestTeamFindFirstResultSchema = z.nullable(z.object({ - id: z.string(), - name: z.string(), - contestantId: z.string(), - contestant: z.unknown(), - members: z.array(z.unknown()) -})); - -// File: ContestTeamFindManyResult.schema.ts -export const ContestTeamFindManyResultSchema = z.object({ - data: z.array(z.object({ - id: z.string(), - name: z.string(), - contestantId: z.string(), - contestant: z.unknown(), - members: z.array(z.unknown()) -})), - pagination: z.object({ - page: z.number().int().min(1), - pageSize: z.number().int().min(1), - total: z.number().int().min(0), - totalPages: z.number().int().min(0), - hasNext: z.boolean(), - hasPrev: z.boolean() -}) -}); - -// File: ContestTeamCreateResult.schema.ts -export const ContestTeamCreateResultSchema = z.object({ - id: z.string(), - name: z.string(), - contestantId: z.string(), - contestant: z.unknown(), - members: z.array(z.unknown()) -}); - -// File: ContestTeamCreateManyResult.schema.ts -export const ContestTeamCreateManyResultSchema = z.object({ - count: z.number() -}); - -// File: ContestTeamUpdateResult.schema.ts -export const ContestTeamUpdateResultSchema = z.nullable(z.object({ - id: z.string(), - name: z.string(), - contestantId: z.string(), - contestant: z.unknown(), - members: z.array(z.unknown()) -})); - -// File: ContestTeamUpdateManyResult.schema.ts -export const ContestTeamUpdateManyResultSchema = z.object({ - count: z.number() -}); - -// File: ContestTeamUpsertResult.schema.ts -export const ContestTeamUpsertResultSchema = z.object({ - id: z.string(), - name: z.string(), - contestantId: z.string(), - contestant: z.unknown(), - members: z.array(z.unknown()) -}); - -// File: ContestTeamDeleteResult.schema.ts -export const ContestTeamDeleteResultSchema = z.nullable(z.object({ - id: z.string(), - name: z.string(), - contestantId: z.string(), - contestant: z.unknown(), - members: z.array(z.unknown()) -})); - -// File: ContestTeamDeleteManyResult.schema.ts -export const ContestTeamDeleteManyResultSchema = z.object({ - count: z.number() -}); - -// File: ContestTeamAggregateResult.schema.ts -export const ContestTeamAggregateResultSchema = z.object({ _count: z.object({ - id: z.number(), - name: z.number(), - contestantId: z.number(), - contestant: z.number(), - members: z.number() - }).optional(), - _min: z.object({ - id: z.string().nullable(), - name: z.string().nullable(), - contestantId: z.string().nullable() - }).nullable().optional(), - _max: z.object({ - id: z.string().nullable(), - name: z.string().nullable(), - contestantId: z.string().nullable() - }).nullable().optional()}); - -// File: ContestTeamGroupByResult.schema.ts -export const ContestTeamGroupByResultSchema = z.array(z.object({ - id: z.string(), - name: z.string(), - contestantId: z.string(), - _count: z.object({ - id: z.number(), - name: z.number(), - contestantId: z.number(), - contestant: z.number(), - members: z.number() - }).optional(), - _min: z.object({ - id: z.string().nullable(), - name: z.string().nullable(), - contestantId: z.string().nullable() - }).nullable().optional(), - _max: z.object({ - id: z.string().nullable(), - name: z.string().nullable(), - contestantId: z.string().nullable() - }).nullable().optional() -})); - -// File: ContestTeamCountResult.schema.ts -export const ContestTeamCountResultSchema = z.number(); - -// File: index.ts - - -// File: index.ts - - -// File: Membership.schema.ts - -export const Membership = z.object({ - id: z.string(), - type: MembershipTypeSchema, - specialization: MembershipSpecializationSchema.default("UNKNOWN").nullable(), - start: z.date(), - end: z.date().nullable(), - semester: z.number().int().nullable(), - userId: z.string(), -}); - -export type Membership = z.infer; - -// Legacy aliases -export const MembershipSchema = Membership; -export type MembershipModel = z.infer; - -// File: User.schema.ts - -export const User = z.object({ - id: z.string(), - username: z.string(), - name: z.string().nullable(), - email: z.string().nullable(), - imageUrl: z.string().nullable(), - biography: z.string().nullable(), - phone: z.string().nullable(), - gender: GenderSchema.default("UNKNOWN"), - dietaryRestrictions: z.string().nullable(), - ntnuUsername: z.string().nullable(), - flags: z.array(z.string()), - workspaceUserId: z.string().nullable(), - createdAt: z.date(), - updatedAt: z.date(), - privacyPermissionsId: z.string().nullable(), - notificationPermissionsId: z.string().nullable(), -}); - -export type User = z.infer; - -// Legacy aliases -export const UserSchema = User; -export type UserType = z.infer; - -// File: Company.schema.ts - -export const Company = z.object({ - id: z.string(), - name: z.string(), - slug: z.string(), - description: z.string().nullable(), - phone: z.string().nullable(), - email: z.string().nullable(), - website: z.string(), - location: z.string().nullable(), - imageUrl: z.string().nullable(), - createdAt: z.date(), - updatedAt: z.date(), -}); - -export type Company = z.infer; - -// Legacy aliases -export const CompanySchema = Company; -export type CompanyType = z.infer; - -// File: Group.schema.ts - -export const Group = z.object({ - slug: z.string(), - abbreviation: z.string(), - name: z.string().nullable(), - shortDescription: z.string().nullable(), - description: z.string(), - imageUrl: z.string().nullable(), - email: z.string().nullable(), - contactUrl: z.string().nullable(), - slackUrl: z.string().nullable(), - showLeaderAsContact: z.boolean(), - createdAt: z.date(), - deactivatedAt: z.date().nullable(), - workspaceGroupId: z.string().nullable(), - memberVisibility: GroupMemberVisibilitySchema.default("ALL_MEMBERS"), - recruitmentMethod: GroupRecruitmentMethodSchema.default("NONE"), - type: GroupTypeSchema, -}); - -export type Group = z.infer; - -// Legacy aliases -export const GroupSchema = Group; -export type GroupModel = z.infer; - -// File: GroupMembership.schema.ts - -export const GroupMembership = z.object({ - id: z.string(), - start: z.date(), - end: z.date().nullable(), - createdAt: z.date(), - updatedAt: z.date(), - groupId: z.string(), - userId: z.string(), -}); - -export type GroupMembership = z.infer; - -// Legacy aliases -export const GroupMembershipSchema = GroupMembership; -export type GroupMembershipType = z.infer; - -// File: GroupMembershipRole.schema.ts - -export const GroupMembershipRole = z.object({ - membershipId: z.string(), - roleId: z.string(), -}); - -export type GroupMembershipRole = z.infer; - -// Legacy aliases -export const GroupMembershipRoleSchema = GroupMembershipRole; -export type GroupMembershipRoleType = z.infer; - -// File: GroupRole.schema.ts - -export const GroupRole = z.object({ - id: z.string(), - name: z.string(), - type: GroupRoleTypeSchema.default("COSMETIC"), - groupId: z.string(), -}); - -export type GroupRole = z.infer; - -// Legacy aliases -export const GroupRoleSchema = GroupRole; -export type GroupRoleModel = z.infer; - -// File: Attendance.schema.ts - -export const Attendance = z.object({ - id: z.string(), - registerStart: z.date(), - registerEnd: z.date(), - deregisterDeadline: z.date(), - selections: z.unknown().refine((val) => { const getDepth = (obj: unknown, depth: number = 0): number => { if (depth > 10) return depth; if (obj === null || typeof obj !== 'object') return depth; const values = Object.values(obj as Record); if (values.length === 0) return depth; return Math.max(...values.map(v => getDepth(v, depth + 1))); }; return getDepth(val) <= 10; }, "JSON nesting depth exceeds maximum of 10").default("[]"), - createdAt: z.date(), - updatedAt: z.date(), - attendancePrice: z.number().int().nullable(), -}); - -export type Attendance = z.infer; - -// Legacy aliases -export const AttendanceSchema = Attendance; -export type AttendanceType = z.infer; - -// File: AttendancePool.schema.ts - -export const AttendancePool = z.object({ - id: z.string(), - title: z.string(), - mergeDelayHours: z.number().int().nullable(), - yearCriteria: z.unknown().refine((val) => { const getDepth = (obj: unknown, depth: number = 0): number => { if (depth > 10) return depth; if (obj === null || typeof obj !== 'object') return depth; const values = Object.values(obj as Record); if (values.length === 0) return depth; return Math.max(...values.map(v => getDepth(v, depth + 1))); }; return getDepth(val) <= 10; }, "JSON nesting depth exceeds maximum of 10"), - capacity: z.number().int(), - createdAt: z.date(), - updatedAt: z.date(), - attendanceId: z.string(), - taskId: z.string().nullable(), -}); - -export type AttendancePool = z.infer; - -// Legacy aliases -export const AttendancePoolSchema = AttendancePool; -export type AttendancePoolType = z.infer; - -// File: Attendee.schema.ts - -export const Attendee = z.object({ - id: z.string(), - userGrade: z.number().int().nullable(), - selections: z.unknown().refine((val) => { const getDepth = (obj: unknown, depth: number = 0): number => { if (depth > 10) return depth; if (obj === null || typeof obj !== 'object') return depth; const values = Object.values(obj as Record); if (values.length === 0) return depth; return Math.max(...values.map(v => getDepth(v, depth + 1))); }; return getDepth(val) <= 10; }, "JSON nesting depth exceeds maximum of 10").default("[]"), - reserved: z.boolean(), - earliestReservationAt: z.date(), - attendedAt: z.date().nullable(), - createdAt: z.date(), - updatedAt: z.date(), - paymentDeadline: z.date().nullable(), - paymentLink: z.string().nullable(), - paymentId: z.string().nullable(), - paymentReservedAt: z.date().nullable(), - paymentChargeDeadline: z.date().nullable(), - paymentChargedAt: z.date().nullable(), - paymentRefundedAt: z.date().nullable(), - paymentCheckoutUrl: z.string().nullable(), - attendanceId: z.string(), - userId: z.string(), - attendancePoolId: z.string(), - paymentRefundedById: z.string().nullable(), -}); - -export type Attendee = z.infer; - -// Legacy aliases -export const AttendeeSchema = Attendee; -export type AttendeeType = z.infer; - -// File: Event.schema.ts - -export const Event = z.object({ - id: z.string(), - title: z.string(), - start: z.date(), - end: z.date(), - status: EventStatusSchema, - description: z.string(), - shortDescription: z.string().nullable(), - imageUrl: z.string().nullable(), - locationTitle: z.string().nullable(), - locationAddress: z.string().nullable(), - locationLink: z.string().nullable(), - type: EventTypeSchema, - markForMissedAttendance: z.boolean().default(true), - createdAt: z.date(), - updatedAt: z.date(), - attendanceId: z.string().nullable(), - parentId: z.string().nullable(), - contestId: z.string().nullable(), - metadataImportId: z.number().int().nullable(), -}); - -export type Event = z.infer; - -// Legacy aliases -export const EventSchema = Event; -export type EventModel = z.infer; - -// File: EventCompany.schema.ts - -export const EventCompany = z.object({ - eventId: z.string(), - companyId: z.string(), -}); - -export type EventCompany = z.infer; - -// Legacy aliases -export const EventCompanySchema = EventCompany; -export type EventCompanyType = z.infer; - -// File: Mark.schema.ts - -export const Mark = z.object({ - id: z.string(), - title: z.string(), - details: z.string().nullable(), - duration: z.number().int(), - weight: z.number().int(), - type: MarkTypeSchema.default("MANUAL"), - createdAt: z.date(), - updatedAt: z.date(), -}); - -export type Mark = z.infer; - -// Legacy aliases -export const MarkSchema = Mark; -export type MarkModel = z.infer; - -// File: MarkGroup.schema.ts - -export const MarkGroup = z.object({ - markId: z.string(), - groupId: z.string(), -}); - -export type MarkGroup = z.infer; - -// Legacy aliases -export const MarkGroupSchema = MarkGroup; -export type MarkGroupType = z.infer; - -// File: PersonalMark.schema.ts - -export const PersonalMark = z.object({ - createdAt: z.date(), - markId: z.string(), - userId: z.string(), - givenById: z.string().nullable(), -}); - -export type PersonalMark = z.infer; - -// Legacy aliases -export const PersonalMarkSchema = PersonalMark; -export type PersonalMarkType = z.infer; - -// File: PrivacyPermissions.schema.ts - -export const PrivacyPermissions = z.object({ - id: z.string(), - userId: z.string(), - profileVisible: z.boolean().default(true), - usernameVisible: z.boolean().default(true), - emailVisible: z.boolean(), - phoneVisible: z.boolean(), - addressVisible: z.boolean(), - attendanceVisible: z.boolean(), - createdAt: z.date(), - updatedAt: z.date(), -}); - -export type PrivacyPermissions = z.infer; - -// Legacy aliases -export const PrivacyPermissionsSchema = PrivacyPermissions; -export type PrivacyPermissionsType = z.infer; - -// File: NotificationPermissions.schema.ts - -export const NotificationPermissions = z.object({ - id: z.string(), - userId: z.string(), - applications: z.boolean().default(true), - newArticles: z.boolean().default(true), - standardNotifications: z.boolean().default(true), - groupMessages: z.boolean().default(true), - markRulesUpdates: z.boolean().default(true), - receipts: z.boolean().default(true), - registrationByAdministrator: z.boolean().default(true), - registrationStart: z.boolean().default(true), - createdAt: z.date(), - updatedAt: z.date(), -}); - -export type NotificationPermissions = z.infer; - -// Legacy aliases -export const NotificationPermissionsSchema = NotificationPermissions; -export type NotificationPermissionsType = z.infer; - -// File: EventHostingGroup.schema.ts - -export const EventHostingGroup = z.object({ - groupId: z.string(), - eventId: z.string(), -}); - -export type EventHostingGroup = z.infer; - -// Legacy aliases -export const EventHostingGroupSchema = EventHostingGroup; -export type EventHostingGroupType = z.infer; - -// File: JobListing.schema.ts - -export const JobListing = z.object({ - id: z.string(), - title: z.string(), - description: z.string(), - shortDescription: z.string().nullable(), - start: z.date(), - end: z.date(), - featured: z.boolean(), - hidden: z.boolean(), - deadline: z.date().nullable(), - employment: EmploymentTypeSchema, - applicationLink: z.string().nullable(), - applicationEmail: z.string().nullable(), - rollingAdmission: z.boolean(), - createdAt: z.date(), - updatedAt: z.date(), - companyId: z.string(), -}); - -export type JobListing = z.infer; - -// Legacy aliases -export const JobListingSchema = JobListing; -export type JobListingType = z.infer; - -// File: JobListingLocation.schema.ts - -export const JobListingLocation = z.object({ - name: z.string(), - createdAt: z.date(), - jobListingId: z.string(), -}); - -export type JobListingLocation = z.infer; - -// Legacy aliases -export const JobListingLocationSchema = JobListingLocation; -export type JobListingLocationType = z.infer; - -// File: Offline.schema.ts - -export const Offline = z.object({ - id: z.string(), - title: z.string(), - fileUrl: z.string().nullable(), - imageUrl: z.string().nullable(), - publishedAt: z.date(), - createdAt: z.date(), - updatedAt: z.date(), -}); - -export type Offline = z.infer; - -// Legacy aliases -export const OfflineSchema = Offline; -export type OfflineType = z.infer; - -// File: Article.schema.ts - -export const Article = z.object({ - id: z.string(), - slug: z.string(), - title: z.string(), - author: z.string(), - photographer: z.string(), - imageUrl: z.string(), - excerpt: z.string(), - content: z.string(), - isFeatured: z.boolean(), - vimeoId: z.string().nullable(), - createdAt: z.date(), - updatedAt: z.date(), -}); - -export type Article = z.infer; - -// Legacy aliases -export const ArticleSchema = Article; -export type ArticleType = z.infer; - -// File: ArticleTag.schema.ts - -export const ArticleTag = z.object({ - name: z.string(), -}); - -export type ArticleTag = z.infer; - -// Legacy aliases -export const ArticleTagSchema = ArticleTag; -export type ArticleTagType = z.infer; - -// File: ArticleTagLink.schema.ts - -export const ArticleTagLink = z.object({ - articleId: z.string(), - tagName: z.string(), -}); - -export type ArticleTagLink = z.infer; - -// Legacy aliases -export const ArticleTagLinkSchema = ArticleTagLink; -export type ArticleTagLinkType = z.infer; - -// File: Task.schema.ts - -export const Task = z.object({ - id: z.string(), - type: TaskTypeSchema, - status: TaskStatusSchema.default("PENDING"), - payload: z.unknown().refine((val) => { const getDepth = (obj: unknown, depth: number = 0): number => { if (depth > 10) return depth; if (obj === null || typeof obj !== 'object') return depth; const values = Object.values(obj as Record); if (values.length === 0) return depth; return Math.max(...values.map(v => getDepth(v, depth + 1))); }; return getDepth(val) <= 10; }, "JSON nesting depth exceeds maximum of 10").default("{}"), - createdAt: z.date(), - scheduledAt: z.date(), - processedAt: z.date().nullable(), - recurringTaskId: z.string().nullable(), -}); - -export type Task = z.infer; - -// Legacy aliases -export const TaskSchema = Task; -export type TaskModel = z.infer; - -// File: RecurringTask.schema.ts - -export const RecurringTask = z.object({ - id: z.string(), - type: TaskTypeSchema, - payload: z.unknown().refine((val) => { const getDepth = (obj: unknown, depth: number = 0): number => { if (depth > 10) return depth; if (obj === null || typeof obj !== 'object') return depth; const values = Object.values(obj as Record); if (values.length === 0) return depth; return Math.max(...values.map(v => getDepth(v, depth + 1))); }; return getDepth(val) <= 10; }, "JSON nesting depth exceeds maximum of 10").default("{}"), - createdAt: z.date(), - schedule: z.string(), - lastRunAt: z.date().nullable(), - nextRunAt: z.date(), -}); - -export type RecurringTask = z.infer; - -// Legacy aliases -export const RecurringTaskSchema = RecurringTask; -export type RecurringTaskType = z.infer; - -// File: FeedbackForm.schema.ts - -export const FeedbackForm = z.object({ - id: z.string(), - publicResultsToken: z.string(), - createdAt: z.date(), - updatedAt: z.date(), - answerDeadline: z.date(), - eventId: z.string(), -}); - -export type FeedbackForm = z.infer; - -// Legacy aliases -export const FeedbackFormSchema = FeedbackForm; -export type FeedbackFormType = z.infer; - -// File: FeedbackQuestion.schema.ts - -export const FeedbackQuestion = z.object({ - id: z.string(), - label: z.string(), - required: z.boolean(), - showInPublicResults: z.boolean().default(true), - type: FeedbackQuestionTypeSchema, - order: z.number().int(), - createdAt: z.date(), - updatedAt: z.date(), - feedbackFormId: z.string(), -}); - -export type FeedbackQuestion = z.infer; - -// Legacy aliases -export const FeedbackQuestionSchema = FeedbackQuestion; -export type FeedbackQuestionModel = z.infer; - -// File: FeedbackQuestionOption.schema.ts - -export const FeedbackQuestionOption = z.object({ - id: z.string(), - name: z.string(), - questionId: z.string(), -}); - -export type FeedbackQuestionOption = z.infer; - -// Legacy aliases -export const FeedbackQuestionOptionSchema = FeedbackQuestionOption; -export type FeedbackQuestionOptionType = z.infer; - -// File: FeedbackQuestionAnswer.schema.ts - -export const FeedbackQuestionAnswer = z.object({ - id: z.string(), - value: z.unknown().refine((val) => { const getDepth = (obj: unknown, depth: number = 0): number => { if (depth > 10) return depth; if (obj === null || typeof obj !== 'object') return depth; const values = Object.values(obj as Record); if (values.length === 0) return depth; return Math.max(...values.map(v => getDepth(v, depth + 1))); }; return getDepth(val) <= 10; }, "JSON nesting depth exceeds maximum of 10").nullable(), - questionId: z.string(), - formAnswerId: z.string(), -}); - -export type FeedbackQuestionAnswer = z.infer; - -// Legacy aliases -export const FeedbackQuestionAnswerSchema = FeedbackQuestionAnswer; -export type FeedbackQuestionAnswerType = z.infer; - -// File: FeedbackQuestionAnswerOptionLink.schema.ts - -export const FeedbackQuestionAnswerOptionLink = z.object({ - feedbackQuestionOptionId: z.string(), - feedbackQuestionAnswerId: z.string(), -}); - -export type FeedbackQuestionAnswerOptionLink = z.infer; - -// Legacy aliases -export const FeedbackQuestionAnswerOptionLinkSchema = FeedbackQuestionAnswerOptionLink; -export type FeedbackQuestionAnswerOptionLinkType = z.infer; - -// File: FeedbackFormAnswer.schema.ts - -export const FeedbackFormAnswer = z.object({ - id: z.string(), - createdAt: z.date(), - updatedAt: z.date(), - feedbackFormId: z.string(), - attendeeId: z.string(), -}); - -export type FeedbackFormAnswer = z.infer; - -// Legacy aliases -export const FeedbackFormAnswerSchema = FeedbackFormAnswer; -export type FeedbackFormAnswerType = z.infer; - -// File: AuditLog.schema.ts - -export const AuditLog = z.object({ - id: z.string(), - tableName: z.string(), - rowId: z.string().nullable(), - createdAt: z.date(), - operation: z.string(), - rowData: z.unknown().refine((val) => { const getDepth = (obj: unknown, depth: number = 0): number => { if (depth > 10) return depth; if (obj === null || typeof obj !== 'object') return depth; const values = Object.values(obj as Record); if (values.length === 0) return depth; return Math.max(...values.map(v => getDepth(v, depth + 1))); }; return getDepth(val) <= 10; }, "JSON nesting depth exceeds maximum of 10"), - transactionId: z.bigint(), - userId: z.string().nullable(), -}); - -export type AuditLog = z.infer; - -// Legacy aliases -export const AuditLogSchema = AuditLog; -export type AuditLogType = z.infer; - -// File: DeregisterReason.schema.ts - -export const DeregisterReason = z.object({ - id: z.string(), - createdAt: z.date(), - registeredAt: z.date(), - type: DeregisterReasonTypeSchema, - details: z.string().nullable(), - userGrade: z.number().int().nullable(), - userId: z.string(), - eventId: z.string(), -}); - -export type DeregisterReason = z.infer; - -// Legacy aliases -export const DeregisterReasonSchema = DeregisterReason; -export type DeregisterReasonModel = z.infer; - -// File: NotificationRecipient.schema.ts - -export const NotificationRecipient = z.object({ - id: z.string(), - readAt: z.date(), - notificationId: z.string(), - userId: z.string(), -}); - -export type NotificationRecipient = z.infer; - -// Legacy aliases -export const NotificationRecipientSchema = NotificationRecipient; -export type NotificationRecipientType = z.infer; - -// File: Notification.schema.ts - -export const Notification = z.object({ - id: z.string(), - createdAt: z.date(), - updatedAt: z.date(), - title: z.string(), - shortDescription: z.string().nullable(), - content: z.string(), - type: NotificationTypeSchema, - payload: z.string().nullable(), - payloadType: NotificationPayloadTypeSchema, - actorGroupId: z.string(), - createdById: z.string().nullable(), - lastUpdatedById: z.string().nullable(), - taskId: z.string().nullable(), -}); - -export type Notification = z.infer; - -// Legacy aliases -export const NotificationSchema = Notification; -export type NotificationModel = z.infer; - -// File: Contest.schema.ts - -export const Contest = z.object({ - id: z.string(), - name: z.string(), - description: z.string().nullable(), - startDate: z.date().nullable(), - resultType: ContestResultTypeSchema, - resultOrder: ContestResultOrderSchema, - winnerContestantId: z.string().nullable(), -}); - -export type Contest = z.infer; - -// Legacy aliases -export const ContestSchema = Contest; -export type ContestType = z.infer; - -// File: Fadderuke.schema.ts - -export const Fadderuke = z.object({ - id: z.string(), - year: z.number().int(), - eventId: z.string(), - createdAt: z.date(), - updatedAt: z.date(), -}); - -export type Fadderuke = z.infer; - -// Legacy aliases -export const FadderukeSchema = Fadderuke; -export type FadderukeType = z.infer; - -// File: Contestant.schema.ts - -export const Contestant = z.object({ - id: z.string(), - resultValue: z.number().int().nullable(), - contestId: z.string(), - userId: z.string().nullable(), -}); - -export type Contestant = z.infer; - -// Legacy aliases -export const ContestantSchema = Contestant; -export type ContestantType = z.infer; - -// File: ContestTeam.schema.ts - -export const ContestTeam = z.object({ - id: z.string(), - name: z.string(), - contestantId: z.string(), -}); - -export type ContestTeam = z.infer; - -// Legacy aliases -export const ContestTeamSchema = ContestTeam; -export type ContestTeamType = z.infer; diff --git a/packages/db/package.json b/packages/db/package.json index ebfcec0334..d0d6f9b6fc 100644 --- a/packages/db/package.json +++ b/packages/db/package.json @@ -8,10 +8,6 @@ "import": "./src/index.ts", "types": "./src/index.ts" }, - "./schemas": { - "import": "./src/schemas.ts", - "types": "./src/schemas.ts" - }, "./test-harness": { "import": "./src/test-harness.ts", "types": "./src/test-harness.ts" @@ -23,7 +19,7 @@ "type-check": "tsc --noEmit", "prisma": "prisma", "migrate": "prisma migrate dev", - "generate": "prisma generate --sql && node ../../scripts/fix-generated-zod-schema.mjs", + "generate": "prisma generate --sql", "apply-fixtures": "tsx src/fixtures.ts", "vinstraff:user-db-sync": "tsx src/vinstraff-user-db-sync.ts" }, @@ -35,7 +31,6 @@ "@testcontainers/postgresql": "^11.5.1", "date-fns": "^4.1.0", "pg": "^8.16.0", - "prisma-zod-generator": "^2.1.4", "zod": "^4.4.3" }, "devDependencies": { diff --git a/packages/db/prisma/schema.prisma b/packages/db/prisma/schema.prisma index 0e96cf494c..848fc92c45 100644 --- a/packages/db/prisma/schema.prisma +++ b/packages/db/prisma/schema.prisma @@ -5,12 +5,6 @@ generator client { previewFeatures = ["relationJoins", "typedSql"] } -generator zod { - provider = "prisma-zod-generator" - output = "../generated/schema" - config = "../zod-generator.config.json" -} - datasource db { provider = "postgresql" } diff --git a/packages/db/src/fixtures/contest.ts b/packages/db/src/fixtures/contest.ts index 800e37a1c3..5a5f37c2ac 100644 --- a/packages/db/src/fixtures/contest.ts +++ b/packages/db/src/fixtures/contest.ts @@ -1,5 +1,4 @@ -import type { Prisma } from "../" -import { ContestResultOrderSchema, ContestResultTypeSchema } from "../../generated/schema/index" +import { ContestResultOrder, ContestResultType, type Prisma } from "../" import { getFadderukeInterval } from "./event" export const FADDERUKE_CONTEST_ID = "e368a124-4394-40ea-8354-928a97902e51" @@ -10,8 +9,8 @@ export const getContestFixture = (): Prisma.ContestCreateInput => ({ description: "Konkurransen under fadderukene. Samle poeng på arrangementer og aktiviteter gjennom uken, og se hvem som topper pallen!", startDate: getFadderukeInterval().start, - resultType: ContestResultTypeSchema.enum.SCORE, - resultOrder: ContestResultOrderSchema.enum.DESC, + resultType: ContestResultType.SCORE, + resultOrder: ContestResultOrder.DESC, groups: { connect: [{ slug: "velkom" }], }, diff --git a/packages/db/src/fixtures/group-membership-role.ts b/packages/db/src/fixtures/group-membership-role.ts index 6010b59a04..70dba9377d 100644 --- a/packages/db/src/fixtures/group-membership-role.ts +++ b/packages/db/src/fixtures/group-membership-role.ts @@ -1,5 +1,4 @@ -import type { GroupRoleType, Prisma } from "../" -import { GroupRoleTypeSchema } from "../../generated/schema/index" +import { GroupRoleType, type Prisma } from "../" export type GroupRoleIds = ReadonlyMap<`${string}:${GroupRoleType}`, string> @@ -23,167 +22,167 @@ const membershipRoleAssignments = [ { membershipId: "5cd0e7bd-4d33-45f0-9e59-93a0be187bbd", groupId: "appkom", - roleTypes: [GroupRoleTypeSchema.enum.LEADER], + roleTypes: [GroupRoleType.LEADER], }, { membershipId: "65b705cc-f580-4542-8af3-ae6e6c03ff95", groupId: "velkom", - roleTypes: [GroupRoleTypeSchema.enum.COSMETIC], + roleTypes: [GroupRoleType.COSMETIC], }, { membershipId: "a0870d07-ab9d-44ca-8ffe-7c1c0bd78a4d", groupId: "mineline", - roleTypes: [GroupRoleTypeSchema.enum.PUNISHER, GroupRoleTypeSchema.enum.TRUSTEE], + roleTypes: [GroupRoleType.PUNISHER, GroupRoleType.TRUSTEE], }, { membershipId: "743740b7-41f5-4932-ad7e-b79e72ed1adc", groupId: "hs", - roleTypes: [GroupRoleTypeSchema.enum.LEADER], + roleTypes: [GroupRoleType.LEADER], }, { membershipId: "fda6a358-ccd9-41a1-a685-362ca84297d1", groupId: "jubkom", - roleTypes: [GroupRoleTypeSchema.enum.DEPUTY_LEADER], + roleTypes: [GroupRoleType.DEPUTY_LEADER], }, { membershipId: "dfef1e7b-9a0c-42e1-a2da-66c38ece6417", groupId: "folk-som-er-glad-i-jul", - roleTypes: [GroupRoleTypeSchema.enum.COSMETIC], + roleTypes: [GroupRoleType.COSMETIC], }, { membershipId: "1528a81c-fce1-4bd6-bc7d-7e7d1a13324f", groupId: "dotkom", - roleTypes: [GroupRoleTypeSchema.enum.LEADER], + roleTypes: [GroupRoleType.LEADER], }, { membershipId: "cbb3566b-9581-4bd2-af8f-28a343b50cd9", groupId: "ekskom", - roleTypes: [GroupRoleTypeSchema.enum.TREASURER], + roleTypes: [GroupRoleType.TREASURER], }, { membershipId: "ea0d59da-e609-45bc-a2ae-aab4b7a6ad3a", groupId: "racingline", - roleTypes: [GroupRoleTypeSchema.enum.COSMETIC], + roleTypes: [GroupRoleType.COSMETIC], }, { membershipId: "3f775955-9f34-4bd8-b331-20acd67e7798", groupId: "arrkom", - roleTypes: [GroupRoleTypeSchema.enum.DEPUTY_LEADER, GroupRoleTypeSchema.enum.TRUSTEE], + roleTypes: [GroupRoleType.DEPUTY_LEADER, GroupRoleType.TRUSTEE], }, { membershipId: "45e34ec2-2be6-41cf-9bdb-3e6d3620f100", groupId: "x-sport", - roleTypes: [GroupRoleTypeSchema.enum.LEADER], + roleTypes: [GroupRoleType.LEADER], }, { membershipId: "d1bdea09-e736-458b-8206-dda3ea93d4fd", groupId: "mineline", - roleTypes: [GroupRoleTypeSchema.enum.COSMETIC], + roleTypes: [GroupRoleType.COSMETIC], }, { membershipId: "eabaca16-3955-46b3-9205-5daf3bbc759a", groupId: "bedkom", - roleTypes: [GroupRoleTypeSchema.enum.TREASURER, GroupRoleTypeSchema.enum.EMAIL_ONLY], + roleTypes: [GroupRoleType.TREASURER, GroupRoleType.EMAIL_ONLY], }, { membershipId: "1de2fb65-769c-448b-99e5-a0117073ed83", groupId: "velkom", - roleTypes: [GroupRoleTypeSchema.enum.COSMETIC], + roleTypes: [GroupRoleType.COSMETIC], }, { membershipId: "ee4f5616-a9af-45fc-aba7-470fa14c9801", groupId: "racingline", - roleTypes: [GroupRoleTypeSchema.enum.PUNISHER], + roleTypes: [GroupRoleType.PUNISHER], }, { membershipId: "073830f8-13c1-4d2e-b0fd-d5c6ac285921", groupId: "feminit", - roleTypes: [GroupRoleTypeSchema.enum.LEADER], + roleTypes: [GroupRoleType.LEADER], }, { membershipId: "6124b8ea-ba15-4aa7-9153-3342543f2fe2", groupId: "jubkom", - roleTypes: [GroupRoleTypeSchema.enum.COSMETIC], + roleTypes: [GroupRoleType.COSMETIC], }, { membershipId: "a53626d4-ee6a-4879-8efc-3dd3c11f8eb1", groupId: "folk-som-er-glad-i-jul", - roleTypes: [GroupRoleTypeSchema.enum.TRUSTEE], + roleTypes: [GroupRoleType.TRUSTEE], }, { membershipId: "1e54a43b-096d-4619-a1a7-1c3c88bbf0e5", groupId: "ekskom", - roleTypes: [GroupRoleTypeSchema.enum.COSMETIC], + roleTypes: [GroupRoleType.COSMETIC], }, { membershipId: "61d8e82c-c815-481e-adad-1cdba0abacca", groupId: "x-sport", - roleTypes: [GroupRoleTypeSchema.enum.DEPUTY_LEADER], + roleTypes: [GroupRoleType.DEPUTY_LEADER], }, { membershipId: "952d8da0-5c6b-4be9-aeb0-5126a59b4852", groupId: "vodka-i-skogen", - roleTypes: [GroupRoleTypeSchema.enum.COSMETIC], + roleTypes: [GroupRoleType.COSMETIC], }, { membershipId: "75c85ee8-f4f1-4b0f-9e8a-c45de1006630", groupId: "prokom", - roleTypes: [GroupRoleTypeSchema.enum.LEADER], + roleTypes: [GroupRoleType.LEADER], }, { membershipId: "fcd5e4cf-11b8-4b30-9fb9-d751fedff2e9", groupId: "mineline", - roleTypes: [GroupRoleTypeSchema.enum.COSMETIC], + roleTypes: [GroupRoleType.COSMETIC], }, { membershipId: "72ec3f11-65b3-4d1d-8a68-4890b23ffe80", groupId: "faxe-ordenen", - roleTypes: [GroupRoleTypeSchema.enum.PUNISHER, GroupRoleTypeSchema.enum.TREASURER], + roleTypes: [GroupRoleType.PUNISHER, GroupRoleType.TREASURER], }, { membershipId: "53cd75d8-f193-41d4-9d66-534b83293de8", groupId: "trikom", - roleTypes: [GroupRoleTypeSchema.enum.DEPUTY_LEADER], + roleTypes: [GroupRoleType.DEPUTY_LEADER], }, { membershipId: "8f5c0dd1-5414-4b44-a174-61c39b4a64f0", groupId: "velkom", - roleTypes: [GroupRoleTypeSchema.enum.COSMETIC], + roleTypes: [GroupRoleType.COSMETIC], }, { membershipId: "26931600-6682-477c-a9b3-dafb9eec3425", groupId: "racingline", - roleTypes: [GroupRoleTypeSchema.enum.COSMETIC], + roleTypes: [GroupRoleType.COSMETIC], }, { membershipId: "c0d5f992-bdb0-400c-8a0e-6ec9c0fa53cb", groupId: "oil", - roleTypes: [GroupRoleTypeSchema.enum.LEADER], + roleTypes: [GroupRoleType.LEADER], }, { membershipId: "e03d2901-c8c7-4a89-99dc-73bb296fb8cc", groupId: "jubkom", - roleTypes: [GroupRoleTypeSchema.enum.COSMETIC], + roleTypes: [GroupRoleType.COSMETIC], }, { membershipId: "eb09df8d-7e22-4557-a9e3-eb1c6e40abb4", groupId: "x-sport", - roleTypes: [GroupRoleTypeSchema.enum.TRUSTEE], + roleTypes: [GroupRoleType.TRUSTEE], }, { membershipId: "c799e2b9-a5e6-4ce5-b36a-7d40c05c7e36", groupId: "velkom", - roleTypes: [GroupRoleTypeSchema.enum.LEADER], + roleTypes: [GroupRoleType.LEADER], }, { membershipId: "73696cd1-6724-400b-aa53-d17481ea99e8", groupId: "mineline", - roleTypes: [GroupRoleTypeSchema.enum.COSMETIC], + roleTypes: [GroupRoleType.COSMETIC], }, { membershipId: "0264e869-a8f2-455e-b3d4-0b994a4a59ab", groupId: "faxe-ordenen", - roleTypes: [GroupRoleTypeSchema.enum.TEMPORARILY_LEAVE], + roleTypes: [GroupRoleType.TEMPORARILY_LEAVE], }, ] as const satisfies readonly MembershipRoleAssignment[] diff --git a/packages/db/src/fixtures/group.ts b/packages/db/src/fixtures/group.ts index 3fb7066d52..efa1f10caf 100644 --- a/packages/db/src/fixtures/group.ts +++ b/packages/db/src/fixtures/group.ts @@ -1,5 +1,4 @@ -import type { Prisma } from "../" -import { GroupRoleTypeSchema } from "../../generated/schema/index" +import { GroupRoleType, type Prisma } from "../" export const getGroupFixtures = () => [ @@ -333,41 +332,41 @@ export const getGroupRoleFixtures = (groupInput: Prisma.GroupCreateInput) => { groupId: groupInput.slug, name: "Leder", - type: GroupRoleTypeSchema.enum.LEADER, + type: GroupRoleType.LEADER, }, { groupId: groupInput.slug, name: "Vinstraffansvarlig", - type: GroupRoleTypeSchema.enum.PUNISHER, + type: GroupRoleType.PUNISHER, }, { groupId: groupInput.slug, name: "Nestleder", - type: GroupRoleTypeSchema.enum.DEPUTY_LEADER, + type: GroupRoleType.DEPUTY_LEADER, }, { groupId: groupInput.slug, name: "Tillitsvalgt", - type: GroupRoleTypeSchema.enum.TRUSTEE, + type: GroupRoleType.TRUSTEE, }, { groupId: groupInput.slug, name: "Økonomiansvarlig", - type: GroupRoleTypeSchema.enum.TREASURER, + type: GroupRoleType.TREASURER, }, { groupId: groupInput.slug, name: "Medlem", - type: GroupRoleTypeSchema.enum.COSMETIC, + type: GroupRoleType.COSMETIC, }, { groupId: groupInput.slug, name: "E-postbruker", - type: GroupRoleTypeSchema.enum.EMAIL_ONLY, + type: GroupRoleType.EMAIL_ONLY, }, { groupId: groupInput.slug, name: "Permitert", - type: GroupRoleTypeSchema.enum.TEMPORARILY_LEAVE, + type: GroupRoleType.TEMPORARILY_LEAVE, }, ] as const satisfies Prisma.GroupRoleCreateManyInput[] diff --git a/packages/db/src/fixtures/user.ts b/packages/db/src/fixtures/user.ts index 6a8948e782..ae713084eb 100644 --- a/packages/db/src/fixtures/user.ts +++ b/packages/db/src/fixtures/user.ts @@ -1,5 +1,4 @@ -import type { Prisma } from "../" -import { GenderSchema } from "../../generated/schema/index" +import { Gender, type Prisma } from "../" export const getUserFixtures = () => [ @@ -11,7 +10,7 @@ export const getUserFixtures = () => imageUrl: null, biography: "Anders And er en and som liker å bade i penger og spise maiskolber.", phone: null, - gender: GenderSchema.enum.MALE, + gender: Gender.MALE, dietaryRestrictions: "Vegetarianer", ntnuUsername: null, flags: [], @@ -26,7 +25,7 @@ export const getUserFixtures = () => imageUrl: null, biography: null, phone: null, - gender: GenderSchema.enum.FEMALE, + gender: Gender.FEMALE, dietaryRestrictions: null, ntnuUsername: null, flags: [], @@ -41,7 +40,7 @@ export const getUserFixtures = () => imageUrl: null, biography: "Help me I'm under da water", phone: null, - gender: GenderSchema.enum.UNKNOWN, + gender: Gender.UNKNOWN, dietaryRestrictions: "Har dårlig reaksjon mot gluten", ntnuUsername: null, flags: [], @@ -56,7 +55,7 @@ export const getUserFixtures = () => imageUrl: null, biography: "Dina samler på gamle tastaturer og kan lage pannekaker uten oppskrift.", phone: null, - gender: GenderSchema.enum.FEMALE, + gender: Gender.FEMALE, dietaryRestrictions: null, ntnuUsername: "dinadrag", flags: [], @@ -71,7 +70,7 @@ export const getUserFixtures = () => imageUrl: null, biography: null, phone: null, - gender: GenderSchema.enum.MALE, + gender: Gender.MALE, dietaryRestrictions: "Laktoseintolerant", ntnuUsername: "eirelg", flags: [], @@ -86,7 +85,7 @@ export const getUserFixtures = () => imageUrl: null, biography: "Frida hopper alltid over dokumentasjonen først, men leser den til slutt.", phone: null, - gender: GenderSchema.enum.NON_BINARY, + gender: Gender.NON_BINARY, dietaryRestrictions: null, ntnuUsername: null, flags: [], @@ -101,7 +100,7 @@ export const getUserFixtures = () => imageUrl: null, biography: null, phone: null, - gender: GenderSchema.enum.MALE, + gender: Gender.MALE, dietaryRestrictions: "Nøtteallergi", ntnuUsername: "gungas", flags: [], @@ -116,7 +115,7 @@ export const getUserFixtures = () => imageUrl: null, biography: "Helle liker fjellturer, kaffe og alt som kan automatiseres.", phone: null, - gender: GenderSchema.enum.FEMALE, + gender: Gender.FEMALE, dietaryRestrictions: null, ntnuUsername: "hellehummer", flags: [], @@ -131,7 +130,7 @@ export const getUserFixtures = () => imageUrl: null, biography: null, phone: null, - gender: GenderSchema.enum.OTHER, + gender: Gender.OTHER, dietaryRestrictions: "Spiser ikke svin", ntnuUsername: null, flags: [], @@ -146,7 +145,7 @@ export const getUserFixtures = () => imageUrl: null, biography: "Jenny fikser bugs raskere enn hun finner navnet på branches.", phone: null, - gender: GenderSchema.enum.FEMALE, + gender: Gender.FEMALE, dietaryRestrictions: "Glutenfri", ntnuUsername: "jenjerv", flags: [], @@ -161,7 +160,7 @@ export const getUserFixtures = () => imageUrl: null, biography: null, phone: null, - gender: GenderSchema.enum.UNKNOWN, + gender: Gender.UNKNOWN, dietaryRestrictions: null, ntnuUsername: "kaskrab", flags: [], diff --git a/packages/db/src/schemas.ts b/packages/db/src/schemas.ts deleted file mode 100644 index f355c90935..0000000000 --- a/packages/db/src/schemas.ts +++ /dev/null @@ -1,2 +0,0 @@ -// biome-ignore lint/performance/noBarrelFile: this is an index -export * as schemas from "../generated/schema/index" diff --git a/packages/db/zod-generator.config.json b/packages/db/zod-generator.config.json deleted file mode 100644 index 6387989359..0000000000 --- a/packages/db/zod-generator.config.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "mode": "full", - "useMultipleFiles": false, - "singleFileName": "index.ts", - "optionalFieldBehavior": "nullable", - "naming": { - "preset": "zod-prisma-types" - }, - "pureModels": true, - "zodImportTarget": "v4" -} diff --git a/packages/grades-db/.gitignore b/packages/grades-db/.gitignore index f98bf57aea..3a254f0548 100644 --- a/packages/grades-db/.gitignore +++ b/packages/grades-db/.gitignore @@ -1,5 +1,3 @@ node_modules # Keep environment variables out of version control -.env - -generated/schema/.prisma-zod-generator-manifest.json \ No newline at end of file +.env \ No newline at end of file diff --git a/packages/grades-db/generated/prisma/internal/class.ts b/packages/grades-db/generated/prisma/internal/class.ts index 94e5042a58..3f42dade3c 100644 --- a/packages/grades-db/generated/prisma/internal/class.ts +++ b/packages/grades-db/generated/prisma/internal/class.ts @@ -24,7 +24,7 @@ const config: runtime.GetPrismaClientConfig = { "clientVersion": "7.8.0", "engineVersion": "3c6e192761c0362d496ed980de936e2f3cebcd3a", "activeProvider": "postgresql", - "inlineSchema": "generator client {\n provider = \"prisma-client\"\n output = \"../generated/prisma\"\n\n previewFeatures = [\"relationJoins\", \"postgresqlExtensions\", \"typedSql\"]\n}\n\ngenerator zod {\n provider = \"prisma-zod-generator\"\n output = \"../generated/schema\"\n config = \"../zod-generator.config.json\"\n}\n\ndatasource db {\n provider = \"postgresql\"\n extensions = [pg_trgm]\n}\n\nenum Semester {\n SPRING\n SUMMER\n AUTUMN\n\n @@map(\"semester\")\n}\n\nenum StudyLevel {\n FOUNDATION\n INTERMEDIATE\n BACHELOR_ADVANCED\n MASTER\n PHD\n CONTINUING_EDUCATION\n UNKNOWN\n\n @@map(\"study_level\")\n}\n\nenum GradeType {\n PASS_FAIL\n LETTER\n\n @@map(\"grade_type\")\n}\n\nenum Campus {\n TRONDHEIM\n GJOVIK\n ALESUND\n\n @@map(\"campus\")\n}\n\nenum TeachingLanguage {\n NORWEGIAN\n ENGLISH\n\n @@map(\"teaching_language\")\n}\n\nmodel Course {\n id String @id @default(uuid())\n code String @unique\n nameNo String @map(\"name_no\")\n nameEn String? @map(\"name_en\")\n credits Float?\n studyLevel StudyLevel @map(\"study_level\")\n gradeType GradeType @map(\"grade_type\")\n firstYearTaught Int @map(\"first_year_taught\")\n lastYearTaught Int? @map(\"last_year_taught\")\n\n contentNo String? @map(\"content_no\")\n contentEn String? @map(\"content_en\")\n teachingMethodsNo String? @map(\"teaching_methods_no\")\n teachingMethodsEn String? @map(\"teaching_methods_en\")\n learningOutcomesNo String? @map(\"learning_outcomes_no\")\n learningOutcomesEn String? @map(\"learning_outcomes_en\")\n examTypeNo String? @map(\"exam_type_no\")\n examTypeEn String? @map(\"exam_type_en\")\n\n candidateCount Int @map(\"candidate_count\")\n averageGrade Float @map(\"average_grade\")\n passRate Float @map(\"pass_rate\")\n\n createdAt DateTime @default(now()) @map(\"created_at\") @db.Timestamptz(3)\n updatedAt DateTime @default(now()) @updatedAt @map(\"updated_at\") @db.Timestamptz(3)\n\n taughtSemesters Semester[] @default([]) @map(\"taught_semesters\")\n teachingLanguages TeachingLanguage[] @default([]) @map(\"teaching_languages\")\n campuses Campus[] @default([])\n grades Grade[]\n\n facultyId String? @map(\"faculty_id\")\n faculty Faculty? @relation(fields: [facultyId], references: [id])\n\n departmentId String? @map(\"department_id\")\n department Department? @relation(fields: [departmentId], references: [id])\n\n /// Metadata used to speed up sync by limiting how far back the scraper has to check for changes\n latestYearCheckedForNtnuData Int? @map(\"latest_year_checked_for_ntnu_data\")\n\n @@index(fields: [nameNo(ops: raw(\"gin_trgm_ops\"))], type: Gin)\n @@index(fields: [nameEn(ops: raw(\"gin_trgm_ops\"))], type: Gin)\n @@index(fields: [code(ops: raw(\"gin_trgm_ops\"))], type: Gin)\n @@map(\"course\")\n}\n\nmodel Grade {\n id String @id @default(uuid())\n\n // For letter-graded courses\n gradeACount Int\n gradeBCount Int\n gradeCCount Int\n gradeDCount Int\n gradeECount Int\n gradeFCount Int\n\n // For pass/fail courses\n passedCount Int\n failedCount Int\n\n courseId String @map(\"course_id\")\n course Course @relation(fields: [courseId], references: [id], onDelete: Cascade)\n\n semester Semester\n year Int\n\n createdAt DateTime @default(now()) @map(\"created_at\") @db.Timestamptz(3)\n updatedAt DateTime @default(now()) @updatedAt @map(\"updated_at\") @db.Timestamptz(3)\n\n @@unique([courseId, semester, year])\n @@index([courseId])\n @@map(\"grade\")\n}\n\nmodel Faculty {\n id String @id @default(uuid())\n nameNo String @map(\"name_no\")\n nameEn String @map(\"name_en\")\n\n /// DBH code for faculty, for example \"230000\"\n code Int @unique\n\n courses Course[]\n departments Department[]\n\n @@map(\"faculty\")\n}\n\nmodel Department {\n id String @id @default(uuid())\n nameNo String @map(\"name_no\")\n nameEn String @map(\"name_en\")\n\n /// DBH code for department, for example \"230240\"\n code Int @unique\n\n courses Course[]\n\n facultyId String @map(\"faculty_id\")\n faculty Faculty @relation(fields: [facultyId], references: [id])\n\n @@map(\"department\")\n}\n", + "inlineSchema": "generator client {\n provider = \"prisma-client\"\n output = \"../generated/prisma\"\n\n previewFeatures = [\"relationJoins\", \"postgresqlExtensions\", \"typedSql\"]\n}\n\ndatasource db {\n provider = \"postgresql\"\n extensions = [pg_trgm]\n}\n\nenum Semester {\n SPRING\n SUMMER\n AUTUMN\n\n @@map(\"semester\")\n}\n\nenum StudyLevel {\n FOUNDATION\n INTERMEDIATE\n BACHELOR_ADVANCED\n MASTER\n PHD\n CONTINUING_EDUCATION\n UNKNOWN\n\n @@map(\"study_level\")\n}\n\nenum GradeType {\n PASS_FAIL\n LETTER\n\n @@map(\"grade_type\")\n}\n\nenum Campus {\n TRONDHEIM\n GJOVIK\n ALESUND\n\n @@map(\"campus\")\n}\n\nenum TeachingLanguage {\n NORWEGIAN\n ENGLISH\n\n @@map(\"teaching_language\")\n}\n\nmodel Course {\n id String @id @default(uuid())\n code String @unique\n nameNo String @map(\"name_no\")\n nameEn String? @map(\"name_en\")\n credits Float?\n studyLevel StudyLevel @map(\"study_level\")\n gradeType GradeType @map(\"grade_type\")\n firstYearTaught Int @map(\"first_year_taught\")\n lastYearTaught Int? @map(\"last_year_taught\")\n\n contentNo String? @map(\"content_no\")\n contentEn String? @map(\"content_en\")\n teachingMethodsNo String? @map(\"teaching_methods_no\")\n teachingMethodsEn String? @map(\"teaching_methods_en\")\n learningOutcomesNo String? @map(\"learning_outcomes_no\")\n learningOutcomesEn String? @map(\"learning_outcomes_en\")\n examTypeNo String? @map(\"exam_type_no\")\n examTypeEn String? @map(\"exam_type_en\")\n\n candidateCount Int @map(\"candidate_count\")\n averageGrade Float @map(\"average_grade\")\n passRate Float @map(\"pass_rate\")\n\n createdAt DateTime @default(now()) @map(\"created_at\") @db.Timestamptz(3)\n updatedAt DateTime @default(now()) @updatedAt @map(\"updated_at\") @db.Timestamptz(3)\n\n taughtSemesters Semester[] @default([]) @map(\"taught_semesters\")\n teachingLanguages TeachingLanguage[] @default([]) @map(\"teaching_languages\")\n campuses Campus[] @default([])\n grades Grade[]\n\n facultyId String? @map(\"faculty_id\")\n faculty Faculty? @relation(fields: [facultyId], references: [id])\n\n departmentId String? @map(\"department_id\")\n department Department? @relation(fields: [departmentId], references: [id])\n\n /// Metadata used to speed up sync by limiting how far back the scraper has to check for changes\n latestYearCheckedForNtnuData Int? @map(\"latest_year_checked_for_ntnu_data\")\n\n @@index(fields: [nameNo(ops: raw(\"gin_trgm_ops\"))], type: Gin)\n @@index(fields: [nameEn(ops: raw(\"gin_trgm_ops\"))], type: Gin)\n @@index(fields: [code(ops: raw(\"gin_trgm_ops\"))], type: Gin)\n @@map(\"course\")\n}\n\nmodel Grade {\n id String @id @default(uuid())\n\n // For letter-graded courses\n gradeACount Int\n gradeBCount Int\n gradeCCount Int\n gradeDCount Int\n gradeECount Int\n gradeFCount Int\n\n // For pass/fail courses\n passedCount Int\n failedCount Int\n\n courseId String @map(\"course_id\")\n course Course @relation(fields: [courseId], references: [id], onDelete: Cascade)\n\n semester Semester\n year Int\n\n createdAt DateTime @default(now()) @map(\"created_at\") @db.Timestamptz(3)\n updatedAt DateTime @default(now()) @updatedAt @map(\"updated_at\") @db.Timestamptz(3)\n\n @@unique([courseId, semester, year])\n @@index([courseId])\n @@map(\"grade\")\n}\n\nmodel Faculty {\n id String @id @default(uuid())\n nameNo String @map(\"name_no\")\n nameEn String @map(\"name_en\")\n\n /// DBH code for faculty, for example \"230000\"\n code Int @unique\n\n courses Course[]\n departments Department[]\n\n @@map(\"faculty\")\n}\n\nmodel Department {\n id String @id @default(uuid())\n nameNo String @map(\"name_no\")\n nameEn String @map(\"name_en\")\n\n /// DBH code for department, for example \"230240\"\n code Int @unique\n\n courses Course[]\n\n facultyId String @map(\"faculty_id\")\n faculty Faculty @relation(fields: [facultyId], references: [id])\n\n @@map(\"department\")\n}\n", "runtimeDataModel": { "models": {}, "enums": {}, diff --git a/packages/grades-db/generated/schema/index.ts b/packages/grades-db/generated/schema/index.ts deleted file mode 100644 index 470837ae9b..0000000000 --- a/packages/grades-db/generated/schema/index.ts +++ /dev/null @@ -1,6640 +0,0 @@ -// @ts-nocheck -/** - * Prisma Zod Generator - Single File (inlined) - * Auto-generated. Do not edit. - */ - -import * as z from 'zod/v4'; -import type { Prisma } from '../prisma/client'; -// File: TransactionIsolationLevel.schema.ts - -export const TransactionIsolationLevelSchema = z.enum(['ReadUncommitted', 'ReadCommitted', 'RepeatableRead', 'Serializable']) - -export type TransactionIsolationLevel = z.infer; - -// File: CourseScalarFieldEnum.schema.ts - -export const CourseScalarFieldEnumSchema = z.enum(['id', 'code', 'nameNo', 'nameEn', 'credits', 'studyLevel', 'gradeType', 'firstYearTaught', 'lastYearTaught', 'contentNo', 'contentEn', 'teachingMethodsNo', 'teachingMethodsEn', 'learningOutcomesNo', 'learningOutcomesEn', 'examTypeNo', 'examTypeEn', 'candidateCount', 'averageGrade', 'passRate', 'createdAt', 'updatedAt', 'taughtSemesters', 'teachingLanguages', 'campuses', 'facultyId', 'departmentId', 'latestYearCheckedForNtnuData']) - -export type CourseScalarFieldEnum = z.infer; - -// File: RelationLoadStrategy.schema.ts - -export const RelationLoadStrategySchema = z.enum(['query', 'join']) - -export type RelationLoadStrategy = z.infer; - -// File: GradeScalarFieldEnum.schema.ts - -export const GradeScalarFieldEnumSchema = z.enum(['id', 'gradeACount', 'gradeBCount', 'gradeCCount', 'gradeDCount', 'gradeECount', 'gradeFCount', 'passedCount', 'failedCount', 'courseId', 'semester', 'year', 'createdAt', 'updatedAt']) - -export type GradeScalarFieldEnum = z.infer; - -// File: FacultyScalarFieldEnum.schema.ts - -export const FacultyScalarFieldEnumSchema = z.enum(['id', 'nameNo', 'nameEn', 'code']) - -export type FacultyScalarFieldEnum = z.infer; - -// File: DepartmentScalarFieldEnum.schema.ts - -export const DepartmentScalarFieldEnumSchema = z.enum(['id', 'nameNo', 'nameEn', 'code', 'facultyId']) - -export type DepartmentScalarFieldEnum = z.infer; - -// File: SortOrder.schema.ts - -export const SortOrderSchema = z.enum(['asc', 'desc']) - -export type SortOrder = z.infer; - -// File: QueryMode.schema.ts - -export const QueryModeSchema = z.enum(['default', 'insensitive']) - -export type QueryMode = z.infer; - -// File: NullsOrder.schema.ts - -export const NullsOrderSchema = z.enum(['first', 'last']) - -export type NullsOrder = z.infer; - -// File: StudyLevel.schema.ts - -export const StudyLevelSchema = z.enum(['FOUNDATION', 'INTERMEDIATE', 'BACHELOR_ADVANCED', 'MASTER', 'PHD', 'CONTINUING_EDUCATION', 'UNKNOWN']) - -export type StudyLevel = z.infer; - -// File: GradeType.schema.ts - -export const GradeTypeSchema = z.enum(['PASS_FAIL', 'LETTER']) - -export type GradeType = z.infer; - -// File: Semester.schema.ts - -export const SemesterSchema = z.enum(['SPRING', 'SUMMER', 'AUTUMN']) - -export type Semester = z.infer; - -// File: TeachingLanguage.schema.ts - -export const TeachingLanguageSchema = z.enum(['NORWEGIAN', 'ENGLISH']) - -export type TeachingLanguage = z.infer; - -// File: Campus.schema.ts - -export const CampusSchema = z.enum(['TRONDHEIM', 'GJOVIK', 'ALESUND']) - -export type Campus = z.infer; - -// File: CourseWhereInput.schema.ts -const __makeSchema_CourseWhereInput_schema = () => z.object({ - AND: z.union([CourseWhereInputObjectSchema, CourseWhereInputObjectSchema.array()]).optional(), - get OR(){ return CourseWhereInputObjectSchema.array().optional(); }, - NOT: z.union([CourseWhereInputObjectSchema, CourseWhereInputObjectSchema.array()]).optional(), - id: z.union([StringFilterObjectSchema, z.string()]).optional(), - code: z.union([StringFilterObjectSchema, z.string()]).optional(), - nameNo: z.union([StringFilterObjectSchema, z.string()]).optional(), - nameEn: z.union([StringNullableFilterObjectSchema, z.string()]).optional().nullable(), - credits: z.union([FloatNullableFilterObjectSchema, z.number()]).optional().nullable(), - studyLevel: z.union([EnumStudyLevelFilterObjectSchema, StudyLevelSchema]).optional(), - gradeType: z.union([EnumGradeTypeFilterObjectSchema, GradeTypeSchema]).optional(), - firstYearTaught: z.union([IntFilterObjectSchema, z.number().int()]).optional(), - lastYearTaught: z.union([IntNullableFilterObjectSchema, z.number().int()]).optional().nullable(), - contentNo: z.union([StringNullableFilterObjectSchema, z.string()]).optional().nullable(), - contentEn: z.union([StringNullableFilterObjectSchema, z.string()]).optional().nullable(), - teachingMethodsNo: z.union([StringNullableFilterObjectSchema, z.string()]).optional().nullable(), - teachingMethodsEn: z.union([StringNullableFilterObjectSchema, z.string()]).optional().nullable(), - learningOutcomesNo: z.union([StringNullableFilterObjectSchema, z.string()]).optional().nullable(), - learningOutcomesEn: z.union([StringNullableFilterObjectSchema, z.string()]).optional().nullable(), - examTypeNo: z.union([StringNullableFilterObjectSchema, z.string()]).optional().nullable(), - examTypeEn: z.union([StringNullableFilterObjectSchema, z.string()]).optional().nullable(), - candidateCount: z.union([IntFilterObjectSchema, z.number().int()]).optional(), - averageGrade: z.union([FloatFilterObjectSchema, z.number()]).optional(), - passRate: z.union([FloatFilterObjectSchema, z.number()]).optional(), - createdAt: z.union([DateTimeFilterObjectSchema, z.coerce.date()]).optional(), - updatedAt: z.union([DateTimeFilterObjectSchema, z.coerce.date()]).optional(), - get taughtSemesters(){ return EnumSemesterNullableListFilterObjectSchema.optional(); }, - get teachingLanguages(){ return EnumTeachingLanguageNullableListFilterObjectSchema.optional(); }, - get campuses(){ return EnumCampusNullableListFilterObjectSchema.optional(); }, - facultyId: z.union([StringNullableFilterObjectSchema, z.string()]).optional().nullable(), - departmentId: z.union([StringNullableFilterObjectSchema, z.string()]).optional().nullable(), - latestYearCheckedForNtnuData: z.union([IntNullableFilterObjectSchema, z.number().int()]).optional().nullable(), - get grades(){ return GradeListRelationFilterObjectSchema.optional(); }, - faculty: z.union([FacultyNullableScalarRelationFilterObjectSchema, FacultyWhereInputObjectSchema]).optional(), - department: z.union([DepartmentNullableScalarRelationFilterObjectSchema, DepartmentWhereInputObjectSchema]).optional() -}).strict(); -export const CourseWhereInputObjectSchema: z.ZodType = z.lazy(__makeSchema_CourseWhereInput_schema) as unknown as z.ZodType; -export const CourseWhereInputObjectZodSchema = z.lazy(__makeSchema_CourseWhereInput_schema); - - -// File: CourseOrderByWithRelationInput.schema.ts -const __makeSchema_CourseOrderByWithRelationInput_schema = () => z.object({ - id: SortOrderSchema.optional(), - code: SortOrderSchema.optional(), - nameNo: SortOrderSchema.optional(), - nameEn: z.union([SortOrderSchema, SortOrderInputObjectSchema]).optional(), - credits: z.union([SortOrderSchema, SortOrderInputObjectSchema]).optional(), - studyLevel: SortOrderSchema.optional(), - gradeType: SortOrderSchema.optional(), - firstYearTaught: SortOrderSchema.optional(), - lastYearTaught: z.union([SortOrderSchema, SortOrderInputObjectSchema]).optional(), - contentNo: z.union([SortOrderSchema, SortOrderInputObjectSchema]).optional(), - contentEn: z.union([SortOrderSchema, SortOrderInputObjectSchema]).optional(), - teachingMethodsNo: z.union([SortOrderSchema, SortOrderInputObjectSchema]).optional(), - teachingMethodsEn: z.union([SortOrderSchema, SortOrderInputObjectSchema]).optional(), - learningOutcomesNo: z.union([SortOrderSchema, SortOrderInputObjectSchema]).optional(), - learningOutcomesEn: z.union([SortOrderSchema, SortOrderInputObjectSchema]).optional(), - examTypeNo: z.union([SortOrderSchema, SortOrderInputObjectSchema]).optional(), - examTypeEn: z.union([SortOrderSchema, SortOrderInputObjectSchema]).optional(), - candidateCount: SortOrderSchema.optional(), - averageGrade: SortOrderSchema.optional(), - passRate: SortOrderSchema.optional(), - createdAt: SortOrderSchema.optional(), - updatedAt: SortOrderSchema.optional(), - taughtSemesters: SortOrderSchema.optional(), - teachingLanguages: SortOrderSchema.optional(), - campuses: SortOrderSchema.optional(), - facultyId: z.union([SortOrderSchema, SortOrderInputObjectSchema]).optional(), - departmentId: z.union([SortOrderSchema, SortOrderInputObjectSchema]).optional(), - latestYearCheckedForNtnuData: z.union([SortOrderSchema, SortOrderInputObjectSchema]).optional(), - get grades(){ return GradeOrderByRelationAggregateInputObjectSchema.optional(); }, - get faculty(){ return FacultyOrderByWithRelationInputObjectSchema.optional(); }, - get department(){ return DepartmentOrderByWithRelationInputObjectSchema.optional(); } -}).strict(); -export const CourseOrderByWithRelationInputObjectSchema: z.ZodType = z.lazy(__makeSchema_CourseOrderByWithRelationInput_schema) as unknown as z.ZodType; -export const CourseOrderByWithRelationInputObjectZodSchema = z.lazy(__makeSchema_CourseOrderByWithRelationInput_schema); - - -// File: CourseWhereUniqueInput.schema.ts -const __makeSchema_CourseWhereUniqueInput_schema = () => z.object({ - id: z.string().optional(), - code: z.string().optional() -}).strict(); -export const CourseWhereUniqueInputObjectSchema: z.ZodType = z.lazy(__makeSchema_CourseWhereUniqueInput_schema) as unknown as z.ZodType; -export const CourseWhereUniqueInputObjectZodSchema = z.lazy(__makeSchema_CourseWhereUniqueInput_schema); - - -// File: CourseOrderByWithAggregationInput.schema.ts -const __makeSchema_CourseOrderByWithAggregationInput_schema = () => z.object({ - id: SortOrderSchema.optional(), - code: SortOrderSchema.optional(), - nameNo: SortOrderSchema.optional(), - nameEn: z.union([SortOrderSchema, SortOrderInputObjectSchema]).optional(), - credits: z.union([SortOrderSchema, SortOrderInputObjectSchema]).optional(), - studyLevel: SortOrderSchema.optional(), - gradeType: SortOrderSchema.optional(), - firstYearTaught: SortOrderSchema.optional(), - lastYearTaught: z.union([SortOrderSchema, SortOrderInputObjectSchema]).optional(), - contentNo: z.union([SortOrderSchema, SortOrderInputObjectSchema]).optional(), - contentEn: z.union([SortOrderSchema, SortOrderInputObjectSchema]).optional(), - teachingMethodsNo: z.union([SortOrderSchema, SortOrderInputObjectSchema]).optional(), - teachingMethodsEn: z.union([SortOrderSchema, SortOrderInputObjectSchema]).optional(), - learningOutcomesNo: z.union([SortOrderSchema, SortOrderInputObjectSchema]).optional(), - learningOutcomesEn: z.union([SortOrderSchema, SortOrderInputObjectSchema]).optional(), - examTypeNo: z.union([SortOrderSchema, SortOrderInputObjectSchema]).optional(), - examTypeEn: z.union([SortOrderSchema, SortOrderInputObjectSchema]).optional(), - candidateCount: SortOrderSchema.optional(), - averageGrade: SortOrderSchema.optional(), - passRate: SortOrderSchema.optional(), - createdAt: SortOrderSchema.optional(), - updatedAt: SortOrderSchema.optional(), - taughtSemesters: SortOrderSchema.optional(), - teachingLanguages: SortOrderSchema.optional(), - campuses: SortOrderSchema.optional(), - facultyId: z.union([SortOrderSchema, SortOrderInputObjectSchema]).optional(), - departmentId: z.union([SortOrderSchema, SortOrderInputObjectSchema]).optional(), - latestYearCheckedForNtnuData: z.union([SortOrderSchema, SortOrderInputObjectSchema]).optional(), - get _count(){ return CourseCountOrderByAggregateInputObjectSchema.optional(); }, - get _avg(){ return CourseAvgOrderByAggregateInputObjectSchema.optional(); }, - get _max(){ return CourseMaxOrderByAggregateInputObjectSchema.optional(); }, - get _min(){ return CourseMinOrderByAggregateInputObjectSchema.optional(); }, - get _sum(){ return CourseSumOrderByAggregateInputObjectSchema.optional(); } -}).strict(); -export const CourseOrderByWithAggregationInputObjectSchema: z.ZodType = z.lazy(__makeSchema_CourseOrderByWithAggregationInput_schema) as unknown as z.ZodType; -export const CourseOrderByWithAggregationInputObjectZodSchema = z.lazy(__makeSchema_CourseOrderByWithAggregationInput_schema); - - -// File: CourseScalarWhereWithAggregatesInput.schema.ts -const __makeSchema_CourseScalarWhereWithAggregatesInput_schema = () => z.object({ - AND: z.union([CourseScalarWhereWithAggregatesInputObjectSchema, CourseScalarWhereWithAggregatesInputObjectSchema.array()]).optional(), - get OR(){ return CourseScalarWhereWithAggregatesInputObjectSchema.array().optional(); }, - NOT: z.union([CourseScalarWhereWithAggregatesInputObjectSchema, CourseScalarWhereWithAggregatesInputObjectSchema.array()]).optional(), - id: z.union([StringWithAggregatesFilterObjectSchema, z.string()]).optional(), - code: z.union([StringWithAggregatesFilterObjectSchema, z.string()]).optional(), - nameNo: z.union([StringWithAggregatesFilterObjectSchema, z.string()]).optional(), - nameEn: z.union([StringNullableWithAggregatesFilterObjectSchema, z.string()]).optional().nullable(), - credits: z.union([FloatNullableWithAggregatesFilterObjectSchema, z.number()]).optional().nullable(), - studyLevel: z.union([EnumStudyLevelWithAggregatesFilterObjectSchema, StudyLevelSchema]).optional(), - gradeType: z.union([EnumGradeTypeWithAggregatesFilterObjectSchema, GradeTypeSchema]).optional(), - firstYearTaught: z.union([IntWithAggregatesFilterObjectSchema, z.number().int()]).optional(), - lastYearTaught: z.union([IntNullableWithAggregatesFilterObjectSchema, z.number().int()]).optional().nullable(), - contentNo: z.union([StringNullableWithAggregatesFilterObjectSchema, z.string()]).optional().nullable(), - contentEn: z.union([StringNullableWithAggregatesFilterObjectSchema, z.string()]).optional().nullable(), - teachingMethodsNo: z.union([StringNullableWithAggregatesFilterObjectSchema, z.string()]).optional().nullable(), - teachingMethodsEn: z.union([StringNullableWithAggregatesFilterObjectSchema, z.string()]).optional().nullable(), - learningOutcomesNo: z.union([StringNullableWithAggregatesFilterObjectSchema, z.string()]).optional().nullable(), - learningOutcomesEn: z.union([StringNullableWithAggregatesFilterObjectSchema, z.string()]).optional().nullable(), - examTypeNo: z.union([StringNullableWithAggregatesFilterObjectSchema, z.string()]).optional().nullable(), - examTypeEn: z.union([StringNullableWithAggregatesFilterObjectSchema, z.string()]).optional().nullable(), - candidateCount: z.union([IntWithAggregatesFilterObjectSchema, z.number().int()]).optional(), - averageGrade: z.union([FloatWithAggregatesFilterObjectSchema, z.number()]).optional(), - passRate: z.union([FloatWithAggregatesFilterObjectSchema, z.number()]).optional(), - createdAt: z.union([DateTimeWithAggregatesFilterObjectSchema, z.coerce.date()]).optional(), - updatedAt: z.union([DateTimeWithAggregatesFilterObjectSchema, z.coerce.date()]).optional(), - get taughtSemesters(){ return EnumSemesterNullableListFilterObjectSchema.optional(); }, - get teachingLanguages(){ return EnumTeachingLanguageNullableListFilterObjectSchema.optional(); }, - get campuses(){ return EnumCampusNullableListFilterObjectSchema.optional(); }, - facultyId: z.union([StringNullableWithAggregatesFilterObjectSchema, z.string()]).optional().nullable(), - departmentId: z.union([StringNullableWithAggregatesFilterObjectSchema, z.string()]).optional().nullable(), - latestYearCheckedForNtnuData: z.union([IntNullableWithAggregatesFilterObjectSchema, z.number().int()]).optional().nullable() -}).strict(); -export const CourseScalarWhereWithAggregatesInputObjectSchema: z.ZodType = z.lazy(__makeSchema_CourseScalarWhereWithAggregatesInput_schema) as unknown as z.ZodType; -export const CourseScalarWhereWithAggregatesInputObjectZodSchema = z.lazy(__makeSchema_CourseScalarWhereWithAggregatesInput_schema); - - -// File: GradeWhereInput.schema.ts -const __makeSchema_GradeWhereInput_schema = () => z.object({ - AND: z.union([GradeWhereInputObjectSchema, GradeWhereInputObjectSchema.array()]).optional(), - get OR(){ return GradeWhereInputObjectSchema.array().optional(); }, - NOT: z.union([GradeWhereInputObjectSchema, GradeWhereInputObjectSchema.array()]).optional(), - id: z.union([StringFilterObjectSchema, z.string()]).optional(), - gradeACount: z.union([IntFilterObjectSchema, z.number().int()]).optional(), - gradeBCount: z.union([IntFilterObjectSchema, z.number().int()]).optional(), - gradeCCount: z.union([IntFilterObjectSchema, z.number().int()]).optional(), - gradeDCount: z.union([IntFilterObjectSchema, z.number().int()]).optional(), - gradeECount: z.union([IntFilterObjectSchema, z.number().int()]).optional(), - gradeFCount: z.union([IntFilterObjectSchema, z.number().int()]).optional(), - passedCount: z.union([IntFilterObjectSchema, z.number().int()]).optional(), - failedCount: z.union([IntFilterObjectSchema, z.number().int()]).optional(), - courseId: z.union([StringFilterObjectSchema, z.string()]).optional(), - semester: z.union([EnumSemesterFilterObjectSchema, SemesterSchema]).optional(), - year: z.union([IntFilterObjectSchema, z.number().int()]).optional(), - createdAt: z.union([DateTimeFilterObjectSchema, z.coerce.date()]).optional(), - updatedAt: z.union([DateTimeFilterObjectSchema, z.coerce.date()]).optional(), - course: z.union([CourseScalarRelationFilterObjectSchema, CourseWhereInputObjectSchema]).optional() -}).strict(); -export const GradeWhereInputObjectSchema: z.ZodType = z.lazy(__makeSchema_GradeWhereInput_schema) as unknown as z.ZodType; -export const GradeWhereInputObjectZodSchema = z.lazy(__makeSchema_GradeWhereInput_schema); - - -// File: GradeOrderByWithRelationInput.schema.ts -const __makeSchema_GradeOrderByWithRelationInput_schema = () => z.object({ - id: SortOrderSchema.optional(), - gradeACount: SortOrderSchema.optional(), - gradeBCount: SortOrderSchema.optional(), - gradeCCount: SortOrderSchema.optional(), - gradeDCount: SortOrderSchema.optional(), - gradeECount: SortOrderSchema.optional(), - gradeFCount: SortOrderSchema.optional(), - passedCount: SortOrderSchema.optional(), - failedCount: SortOrderSchema.optional(), - courseId: SortOrderSchema.optional(), - semester: SortOrderSchema.optional(), - year: SortOrderSchema.optional(), - createdAt: SortOrderSchema.optional(), - updatedAt: SortOrderSchema.optional(), - get course(){ return CourseOrderByWithRelationInputObjectSchema.optional(); } -}).strict(); -export const GradeOrderByWithRelationInputObjectSchema: z.ZodType = z.lazy(__makeSchema_GradeOrderByWithRelationInput_schema) as unknown as z.ZodType; -export const GradeOrderByWithRelationInputObjectZodSchema = z.lazy(__makeSchema_GradeOrderByWithRelationInput_schema); - - -// File: GradeWhereUniqueInput.schema.ts -const __makeSchema_GradeWhereUniqueInput_schema = () => z.object({ - id: z.string().optional(), - get courseId_semester_year(){ return GradeCourseIdSemesterYearCompoundUniqueInputObjectSchema.optional(); } -}).strict(); -export const GradeWhereUniqueInputObjectSchema: z.ZodType = z.lazy(__makeSchema_GradeWhereUniqueInput_schema) as unknown as z.ZodType; -export const GradeWhereUniqueInputObjectZodSchema = z.lazy(__makeSchema_GradeWhereUniqueInput_schema); - - -// File: GradeOrderByWithAggregationInput.schema.ts -const __makeSchema_GradeOrderByWithAggregationInput_schema = () => z.object({ - id: SortOrderSchema.optional(), - gradeACount: SortOrderSchema.optional(), - gradeBCount: SortOrderSchema.optional(), - gradeCCount: SortOrderSchema.optional(), - gradeDCount: SortOrderSchema.optional(), - gradeECount: SortOrderSchema.optional(), - gradeFCount: SortOrderSchema.optional(), - passedCount: SortOrderSchema.optional(), - failedCount: SortOrderSchema.optional(), - courseId: SortOrderSchema.optional(), - semester: SortOrderSchema.optional(), - year: SortOrderSchema.optional(), - createdAt: SortOrderSchema.optional(), - updatedAt: SortOrderSchema.optional(), - get _count(){ return GradeCountOrderByAggregateInputObjectSchema.optional(); }, - get _avg(){ return GradeAvgOrderByAggregateInputObjectSchema.optional(); }, - get _max(){ return GradeMaxOrderByAggregateInputObjectSchema.optional(); }, - get _min(){ return GradeMinOrderByAggregateInputObjectSchema.optional(); }, - get _sum(){ return GradeSumOrderByAggregateInputObjectSchema.optional(); } -}).strict(); -export const GradeOrderByWithAggregationInputObjectSchema: z.ZodType = z.lazy(__makeSchema_GradeOrderByWithAggregationInput_schema) as unknown as z.ZodType; -export const GradeOrderByWithAggregationInputObjectZodSchema = z.lazy(__makeSchema_GradeOrderByWithAggregationInput_schema); - - -// File: GradeScalarWhereWithAggregatesInput.schema.ts -const __makeSchema_GradeScalarWhereWithAggregatesInput_schema = () => z.object({ - AND: z.union([GradeScalarWhereWithAggregatesInputObjectSchema, GradeScalarWhereWithAggregatesInputObjectSchema.array()]).optional(), - get OR(){ return GradeScalarWhereWithAggregatesInputObjectSchema.array().optional(); }, - NOT: z.union([GradeScalarWhereWithAggregatesInputObjectSchema, GradeScalarWhereWithAggregatesInputObjectSchema.array()]).optional(), - id: z.union([StringWithAggregatesFilterObjectSchema, z.string()]).optional(), - gradeACount: z.union([IntWithAggregatesFilterObjectSchema, z.number().int()]).optional(), - gradeBCount: z.union([IntWithAggregatesFilterObjectSchema, z.number().int()]).optional(), - gradeCCount: z.union([IntWithAggregatesFilterObjectSchema, z.number().int()]).optional(), - gradeDCount: z.union([IntWithAggregatesFilterObjectSchema, z.number().int()]).optional(), - gradeECount: z.union([IntWithAggregatesFilterObjectSchema, z.number().int()]).optional(), - gradeFCount: z.union([IntWithAggregatesFilterObjectSchema, z.number().int()]).optional(), - passedCount: z.union([IntWithAggregatesFilterObjectSchema, z.number().int()]).optional(), - failedCount: z.union([IntWithAggregatesFilterObjectSchema, z.number().int()]).optional(), - courseId: z.union([StringWithAggregatesFilterObjectSchema, z.string()]).optional(), - semester: z.union([EnumSemesterWithAggregatesFilterObjectSchema, SemesterSchema]).optional(), - year: z.union([IntWithAggregatesFilterObjectSchema, z.number().int()]).optional(), - createdAt: z.union([DateTimeWithAggregatesFilterObjectSchema, z.coerce.date()]).optional(), - updatedAt: z.union([DateTimeWithAggregatesFilterObjectSchema, z.coerce.date()]).optional() -}).strict(); -export const GradeScalarWhereWithAggregatesInputObjectSchema: z.ZodType = z.lazy(__makeSchema_GradeScalarWhereWithAggregatesInput_schema) as unknown as z.ZodType; -export const GradeScalarWhereWithAggregatesInputObjectZodSchema = z.lazy(__makeSchema_GradeScalarWhereWithAggregatesInput_schema); - - -// File: FacultyWhereInput.schema.ts -const __makeSchema_FacultyWhereInput_schema = () => z.object({ - AND: z.union([FacultyWhereInputObjectSchema, FacultyWhereInputObjectSchema.array()]).optional(), - get OR(){ return FacultyWhereInputObjectSchema.array().optional(); }, - NOT: z.union([FacultyWhereInputObjectSchema, FacultyWhereInputObjectSchema.array()]).optional(), - id: z.union([StringFilterObjectSchema, z.string()]).optional(), - nameNo: z.union([StringFilterObjectSchema, z.string()]).optional(), - nameEn: z.union([StringFilterObjectSchema, z.string()]).optional(), - code: z.union([IntFilterObjectSchema, z.number().int()]).optional(), - get courses(){ return CourseListRelationFilterObjectSchema.optional(); }, - get departments(){ return DepartmentListRelationFilterObjectSchema.optional(); } -}).strict(); -export const FacultyWhereInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FacultyWhereInput_schema) as unknown as z.ZodType; -export const FacultyWhereInputObjectZodSchema = z.lazy(__makeSchema_FacultyWhereInput_schema); - - -// File: FacultyOrderByWithRelationInput.schema.ts -const __makeSchema_FacultyOrderByWithRelationInput_schema = () => z.object({ - id: SortOrderSchema.optional(), - nameNo: SortOrderSchema.optional(), - nameEn: SortOrderSchema.optional(), - code: SortOrderSchema.optional(), - get courses(){ return CourseOrderByRelationAggregateInputObjectSchema.optional(); }, - get departments(){ return DepartmentOrderByRelationAggregateInputObjectSchema.optional(); } -}).strict(); -export const FacultyOrderByWithRelationInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FacultyOrderByWithRelationInput_schema) as unknown as z.ZodType; -export const FacultyOrderByWithRelationInputObjectZodSchema = z.lazy(__makeSchema_FacultyOrderByWithRelationInput_schema); - - -// File: FacultyWhereUniqueInput.schema.ts -const __makeSchema_FacultyWhereUniqueInput_schema = () => z.object({ - id: z.string().optional(), - code: z.number().int().optional() -}).strict(); -export const FacultyWhereUniqueInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FacultyWhereUniqueInput_schema) as unknown as z.ZodType; -export const FacultyWhereUniqueInputObjectZodSchema = z.lazy(__makeSchema_FacultyWhereUniqueInput_schema); - - -// File: FacultyOrderByWithAggregationInput.schema.ts -const __makeSchema_FacultyOrderByWithAggregationInput_schema = () => z.object({ - id: SortOrderSchema.optional(), - nameNo: SortOrderSchema.optional(), - nameEn: SortOrderSchema.optional(), - code: SortOrderSchema.optional(), - get _count(){ return FacultyCountOrderByAggregateInputObjectSchema.optional(); }, - get _avg(){ return FacultyAvgOrderByAggregateInputObjectSchema.optional(); }, - get _max(){ return FacultyMaxOrderByAggregateInputObjectSchema.optional(); }, - get _min(){ return FacultyMinOrderByAggregateInputObjectSchema.optional(); }, - get _sum(){ return FacultySumOrderByAggregateInputObjectSchema.optional(); } -}).strict(); -export const FacultyOrderByWithAggregationInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FacultyOrderByWithAggregationInput_schema) as unknown as z.ZodType; -export const FacultyOrderByWithAggregationInputObjectZodSchema = z.lazy(__makeSchema_FacultyOrderByWithAggregationInput_schema); - - -// File: FacultyScalarWhereWithAggregatesInput.schema.ts -const __makeSchema_FacultyScalarWhereWithAggregatesInput_schema = () => z.object({ - AND: z.union([FacultyScalarWhereWithAggregatesInputObjectSchema, FacultyScalarWhereWithAggregatesInputObjectSchema.array()]).optional(), - get OR(){ return FacultyScalarWhereWithAggregatesInputObjectSchema.array().optional(); }, - NOT: z.union([FacultyScalarWhereWithAggregatesInputObjectSchema, FacultyScalarWhereWithAggregatesInputObjectSchema.array()]).optional(), - id: z.union([StringWithAggregatesFilterObjectSchema, z.string()]).optional(), - nameNo: z.union([StringWithAggregatesFilterObjectSchema, z.string()]).optional(), - nameEn: z.union([StringWithAggregatesFilterObjectSchema, z.string()]).optional(), - code: z.union([IntWithAggregatesFilterObjectSchema, z.number().int()]).optional() -}).strict(); -export const FacultyScalarWhereWithAggregatesInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FacultyScalarWhereWithAggregatesInput_schema) as unknown as z.ZodType; -export const FacultyScalarWhereWithAggregatesInputObjectZodSchema = z.lazy(__makeSchema_FacultyScalarWhereWithAggregatesInput_schema); - - -// File: DepartmentWhereInput.schema.ts -const __makeSchema_DepartmentWhereInput_schema = () => z.object({ - AND: z.union([DepartmentWhereInputObjectSchema, DepartmentWhereInputObjectSchema.array()]).optional(), - get OR(){ return DepartmentWhereInputObjectSchema.array().optional(); }, - NOT: z.union([DepartmentWhereInputObjectSchema, DepartmentWhereInputObjectSchema.array()]).optional(), - id: z.union([StringFilterObjectSchema, z.string()]).optional(), - nameNo: z.union([StringFilterObjectSchema, z.string()]).optional(), - nameEn: z.union([StringFilterObjectSchema, z.string()]).optional(), - code: z.union([IntFilterObjectSchema, z.number().int()]).optional(), - facultyId: z.union([StringFilterObjectSchema, z.string()]).optional(), - get courses(){ return CourseListRelationFilterObjectSchema.optional(); }, - faculty: z.union([FacultyScalarRelationFilterObjectSchema, FacultyWhereInputObjectSchema]).optional() -}).strict(); -export const DepartmentWhereInputObjectSchema: z.ZodType = z.lazy(__makeSchema_DepartmentWhereInput_schema) as unknown as z.ZodType; -export const DepartmentWhereInputObjectZodSchema = z.lazy(__makeSchema_DepartmentWhereInput_schema); - - -// File: DepartmentOrderByWithRelationInput.schema.ts -const __makeSchema_DepartmentOrderByWithRelationInput_schema = () => z.object({ - id: SortOrderSchema.optional(), - nameNo: SortOrderSchema.optional(), - nameEn: SortOrderSchema.optional(), - code: SortOrderSchema.optional(), - facultyId: SortOrderSchema.optional(), - get courses(){ return CourseOrderByRelationAggregateInputObjectSchema.optional(); }, - get faculty(){ return FacultyOrderByWithRelationInputObjectSchema.optional(); } -}).strict(); -export const DepartmentOrderByWithRelationInputObjectSchema: z.ZodType = z.lazy(__makeSchema_DepartmentOrderByWithRelationInput_schema) as unknown as z.ZodType; -export const DepartmentOrderByWithRelationInputObjectZodSchema = z.lazy(__makeSchema_DepartmentOrderByWithRelationInput_schema); - - -// File: DepartmentWhereUniqueInput.schema.ts -const __makeSchema_DepartmentWhereUniqueInput_schema = () => z.object({ - id: z.string().optional(), - code: z.number().int().optional() -}).strict(); -export const DepartmentWhereUniqueInputObjectSchema: z.ZodType = z.lazy(__makeSchema_DepartmentWhereUniqueInput_schema) as unknown as z.ZodType; -export const DepartmentWhereUniqueInputObjectZodSchema = z.lazy(__makeSchema_DepartmentWhereUniqueInput_schema); - - -// File: DepartmentOrderByWithAggregationInput.schema.ts -const __makeSchema_DepartmentOrderByWithAggregationInput_schema = () => z.object({ - id: SortOrderSchema.optional(), - nameNo: SortOrderSchema.optional(), - nameEn: SortOrderSchema.optional(), - code: SortOrderSchema.optional(), - facultyId: SortOrderSchema.optional(), - get _count(){ return DepartmentCountOrderByAggregateInputObjectSchema.optional(); }, - get _avg(){ return DepartmentAvgOrderByAggregateInputObjectSchema.optional(); }, - get _max(){ return DepartmentMaxOrderByAggregateInputObjectSchema.optional(); }, - get _min(){ return DepartmentMinOrderByAggregateInputObjectSchema.optional(); }, - get _sum(){ return DepartmentSumOrderByAggregateInputObjectSchema.optional(); } -}).strict(); -export const DepartmentOrderByWithAggregationInputObjectSchema: z.ZodType = z.lazy(__makeSchema_DepartmentOrderByWithAggregationInput_schema) as unknown as z.ZodType; -export const DepartmentOrderByWithAggregationInputObjectZodSchema = z.lazy(__makeSchema_DepartmentOrderByWithAggregationInput_schema); - - -// File: DepartmentScalarWhereWithAggregatesInput.schema.ts -const __makeSchema_DepartmentScalarWhereWithAggregatesInput_schema = () => z.object({ - AND: z.union([DepartmentScalarWhereWithAggregatesInputObjectSchema, DepartmentScalarWhereWithAggregatesInputObjectSchema.array()]).optional(), - get OR(){ return DepartmentScalarWhereWithAggregatesInputObjectSchema.array().optional(); }, - NOT: z.union([DepartmentScalarWhereWithAggregatesInputObjectSchema, DepartmentScalarWhereWithAggregatesInputObjectSchema.array()]).optional(), - id: z.union([StringWithAggregatesFilterObjectSchema, z.string()]).optional(), - nameNo: z.union([StringWithAggregatesFilterObjectSchema, z.string()]).optional(), - nameEn: z.union([StringWithAggregatesFilterObjectSchema, z.string()]).optional(), - code: z.union([IntWithAggregatesFilterObjectSchema, z.number().int()]).optional(), - facultyId: z.union([StringWithAggregatesFilterObjectSchema, z.string()]).optional() -}).strict(); -export const DepartmentScalarWhereWithAggregatesInputObjectSchema: z.ZodType = z.lazy(__makeSchema_DepartmentScalarWhereWithAggregatesInput_schema) as unknown as z.ZodType; -export const DepartmentScalarWhereWithAggregatesInputObjectZodSchema = z.lazy(__makeSchema_DepartmentScalarWhereWithAggregatesInput_schema); - - -// File: CourseCreateInput.schema.ts -const __makeSchema_CourseCreateInput_schema = () => z.object({ - id: z.string().optional(), - code: z.string(), - nameNo: z.string(), - nameEn: z.string().optional().nullable(), - credits: z.number().optional().nullable(), - studyLevel: StudyLevelSchema, - gradeType: GradeTypeSchema, - firstYearTaught: z.number().int(), - lastYearTaught: z.number().int().optional().nullable(), - contentNo: z.string().optional().nullable(), - contentEn: z.string().optional().nullable(), - teachingMethodsNo: z.string().optional().nullable(), - teachingMethodsEn: z.string().optional().nullable(), - learningOutcomesNo: z.string().optional().nullable(), - learningOutcomesEn: z.string().optional().nullable(), - examTypeNo: z.string().optional().nullable(), - examTypeEn: z.string().optional().nullable(), - candidateCount: z.number().int(), - averageGrade: z.number(), - passRate: z.number(), - createdAt: z.coerce.date().optional(), - taughtSemesters: z.union([CourseCreatetaughtSemestersInputObjectSchema, SemesterSchema.array()]).optional(), - teachingLanguages: z.union([CourseCreateteachingLanguagesInputObjectSchema, TeachingLanguageSchema.array()]).optional(), - campuses: z.union([CourseCreatecampusesInputObjectSchema, CampusSchema.array()]).optional(), - latestYearCheckedForNtnuData: z.number().int().optional().nullable(), - get grades(){ return GradeCreateNestedManyWithoutCourseInputObjectSchema.optional(); }, - get faculty(){ return FacultyCreateNestedOneWithoutCoursesInputObjectSchema.optional(); }, - get department(){ return DepartmentCreateNestedOneWithoutCoursesInputObjectSchema.optional(); } -}).strict(); -export const CourseCreateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_CourseCreateInput_schema) as unknown as z.ZodType; -export const CourseCreateInputObjectZodSchema = z.lazy(__makeSchema_CourseCreateInput_schema); - - -// File: CourseUncheckedCreateInput.schema.ts -const __makeSchema_CourseUncheckedCreateInput_schema = () => z.object({ - id: z.string().optional(), - code: z.string(), - nameNo: z.string(), - nameEn: z.string().optional().nullable(), - credits: z.number().optional().nullable(), - studyLevel: StudyLevelSchema, - gradeType: GradeTypeSchema, - firstYearTaught: z.number().int(), - lastYearTaught: z.number().int().optional().nullable(), - contentNo: z.string().optional().nullable(), - contentEn: z.string().optional().nullable(), - teachingMethodsNo: z.string().optional().nullable(), - teachingMethodsEn: z.string().optional().nullable(), - learningOutcomesNo: z.string().optional().nullable(), - learningOutcomesEn: z.string().optional().nullable(), - examTypeNo: z.string().optional().nullable(), - examTypeEn: z.string().optional().nullable(), - candidateCount: z.number().int(), - averageGrade: z.number(), - passRate: z.number(), - createdAt: z.coerce.date().optional(), - taughtSemesters: z.union([CourseCreatetaughtSemestersInputObjectSchema, SemesterSchema.array()]).optional(), - teachingLanguages: z.union([CourseCreateteachingLanguagesInputObjectSchema, TeachingLanguageSchema.array()]).optional(), - campuses: z.union([CourseCreatecampusesInputObjectSchema, CampusSchema.array()]).optional(), - facultyId: z.string().optional().nullable(), - departmentId: z.string().optional().nullable(), - latestYearCheckedForNtnuData: z.number().int().optional().nullable(), - get grades(){ return GradeUncheckedCreateNestedManyWithoutCourseInputObjectSchema.optional(); } -}).strict(); -export const CourseUncheckedCreateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_CourseUncheckedCreateInput_schema) as unknown as z.ZodType; -export const CourseUncheckedCreateInputObjectZodSchema = z.lazy(__makeSchema_CourseUncheckedCreateInput_schema); - - -// File: CourseUpdateInput.schema.ts -const __makeSchema_CourseUpdateInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - code: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - nameNo: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - nameEn: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - credits: z.union([z.number(), NullableFloatFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - studyLevel: z.union([StudyLevelSchema, EnumStudyLevelFieldUpdateOperationsInputObjectSchema]).optional(), - gradeType: z.union([GradeTypeSchema, EnumGradeTypeFieldUpdateOperationsInputObjectSchema]).optional(), - firstYearTaught: z.union([z.number().int(), IntFieldUpdateOperationsInputObjectSchema]).optional(), - lastYearTaught: z.union([z.number().int(), NullableIntFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - contentNo: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - contentEn: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - teachingMethodsNo: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - teachingMethodsEn: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - learningOutcomesNo: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - learningOutcomesEn: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - examTypeNo: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - examTypeEn: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - candidateCount: z.union([z.number().int(), IntFieldUpdateOperationsInputObjectSchema]).optional(), - averageGrade: z.union([z.number(), FloatFieldUpdateOperationsInputObjectSchema]).optional(), - passRate: z.union([z.number(), FloatFieldUpdateOperationsInputObjectSchema]).optional(), - createdAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - updatedAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - taughtSemesters: z.union([CourseUpdatetaughtSemestersInputObjectSchema, SemesterSchema.array()]).optional(), - teachingLanguages: z.union([CourseUpdateteachingLanguagesInputObjectSchema, TeachingLanguageSchema.array()]).optional(), - campuses: z.union([CourseUpdatecampusesInputObjectSchema, CampusSchema.array()]).optional(), - latestYearCheckedForNtnuData: z.union([z.number().int(), NullableIntFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - get grades(){ return GradeUpdateManyWithoutCourseNestedInputObjectSchema.optional(); }, - get faculty(){ return FacultyUpdateOneWithoutCoursesNestedInputObjectSchema.optional(); }, - get department(){ return DepartmentUpdateOneWithoutCoursesNestedInputObjectSchema.optional(); } -}).strict(); -export const CourseUpdateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_CourseUpdateInput_schema) as unknown as z.ZodType; -export const CourseUpdateInputObjectZodSchema = z.lazy(__makeSchema_CourseUpdateInput_schema); - - -// File: CourseUncheckedUpdateInput.schema.ts -const __makeSchema_CourseUncheckedUpdateInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - code: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - nameNo: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - nameEn: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - credits: z.union([z.number(), NullableFloatFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - studyLevel: z.union([StudyLevelSchema, EnumStudyLevelFieldUpdateOperationsInputObjectSchema]).optional(), - gradeType: z.union([GradeTypeSchema, EnumGradeTypeFieldUpdateOperationsInputObjectSchema]).optional(), - firstYearTaught: z.union([z.number().int(), IntFieldUpdateOperationsInputObjectSchema]).optional(), - lastYearTaught: z.union([z.number().int(), NullableIntFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - contentNo: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - contentEn: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - teachingMethodsNo: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - teachingMethodsEn: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - learningOutcomesNo: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - learningOutcomesEn: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - examTypeNo: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - examTypeEn: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - candidateCount: z.union([z.number().int(), IntFieldUpdateOperationsInputObjectSchema]).optional(), - averageGrade: z.union([z.number(), FloatFieldUpdateOperationsInputObjectSchema]).optional(), - passRate: z.union([z.number(), FloatFieldUpdateOperationsInputObjectSchema]).optional(), - createdAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - updatedAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - taughtSemesters: z.union([CourseUpdatetaughtSemestersInputObjectSchema, SemesterSchema.array()]).optional(), - teachingLanguages: z.union([CourseUpdateteachingLanguagesInputObjectSchema, TeachingLanguageSchema.array()]).optional(), - campuses: z.union([CourseUpdatecampusesInputObjectSchema, CampusSchema.array()]).optional(), - facultyId: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - departmentId: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - latestYearCheckedForNtnuData: z.union([z.number().int(), NullableIntFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - get grades(){ return GradeUncheckedUpdateManyWithoutCourseNestedInputObjectSchema.optional(); } -}).strict(); -export const CourseUncheckedUpdateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_CourseUncheckedUpdateInput_schema) as unknown as z.ZodType; -export const CourseUncheckedUpdateInputObjectZodSchema = z.lazy(__makeSchema_CourseUncheckedUpdateInput_schema); - - -// File: CourseCreateManyInput.schema.ts -const __makeSchema_CourseCreateManyInput_schema = () => z.object({ - id: z.string().optional(), - code: z.string(), - nameNo: z.string(), - nameEn: z.string().optional().nullable(), - credits: z.number().optional().nullable(), - studyLevel: StudyLevelSchema, - gradeType: GradeTypeSchema, - firstYearTaught: z.number().int(), - lastYearTaught: z.number().int().optional().nullable(), - contentNo: z.string().optional().nullable(), - contentEn: z.string().optional().nullable(), - teachingMethodsNo: z.string().optional().nullable(), - teachingMethodsEn: z.string().optional().nullable(), - learningOutcomesNo: z.string().optional().nullable(), - learningOutcomesEn: z.string().optional().nullable(), - examTypeNo: z.string().optional().nullable(), - examTypeEn: z.string().optional().nullable(), - candidateCount: z.number().int(), - averageGrade: z.number(), - passRate: z.number(), - createdAt: z.coerce.date().optional(), - updatedAt: z.coerce.date().optional(), - taughtSemesters: z.union([CourseCreatetaughtSemestersInputObjectSchema, SemesterSchema.array()]).optional(), - teachingLanguages: z.union([CourseCreateteachingLanguagesInputObjectSchema, TeachingLanguageSchema.array()]).optional(), - campuses: z.union([CourseCreatecampusesInputObjectSchema, CampusSchema.array()]).optional(), - facultyId: z.string().optional().nullable(), - departmentId: z.string().optional().nullable(), - latestYearCheckedForNtnuData: z.number().int().optional().nullable() -}).strict(); -export const CourseCreateManyInputObjectSchema: z.ZodType = z.lazy(__makeSchema_CourseCreateManyInput_schema) as unknown as z.ZodType; -export const CourseCreateManyInputObjectZodSchema = z.lazy(__makeSchema_CourseCreateManyInput_schema); - - -// File: CourseUpdateManyMutationInput.schema.ts -const __makeSchema_CourseUpdateManyMutationInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - code: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - nameNo: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - nameEn: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - credits: z.union([z.number(), NullableFloatFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - studyLevel: z.union([StudyLevelSchema, EnumStudyLevelFieldUpdateOperationsInputObjectSchema]).optional(), - gradeType: z.union([GradeTypeSchema, EnumGradeTypeFieldUpdateOperationsInputObjectSchema]).optional(), - firstYearTaught: z.union([z.number().int(), IntFieldUpdateOperationsInputObjectSchema]).optional(), - lastYearTaught: z.union([z.number().int(), NullableIntFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - contentNo: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - contentEn: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - teachingMethodsNo: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - teachingMethodsEn: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - learningOutcomesNo: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - learningOutcomesEn: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - examTypeNo: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - examTypeEn: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - candidateCount: z.union([z.number().int(), IntFieldUpdateOperationsInputObjectSchema]).optional(), - averageGrade: z.union([z.number(), FloatFieldUpdateOperationsInputObjectSchema]).optional(), - passRate: z.union([z.number(), FloatFieldUpdateOperationsInputObjectSchema]).optional(), - createdAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - updatedAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - taughtSemesters: z.union([CourseUpdatetaughtSemestersInputObjectSchema, SemesterSchema.array()]).optional(), - teachingLanguages: z.union([CourseUpdateteachingLanguagesInputObjectSchema, TeachingLanguageSchema.array()]).optional(), - campuses: z.union([CourseUpdatecampusesInputObjectSchema, CampusSchema.array()]).optional(), - latestYearCheckedForNtnuData: z.union([z.number().int(), NullableIntFieldUpdateOperationsInputObjectSchema]).optional().nullable() -}).strict(); -export const CourseUpdateManyMutationInputObjectSchema: z.ZodType = z.lazy(__makeSchema_CourseUpdateManyMutationInput_schema) as unknown as z.ZodType; -export const CourseUpdateManyMutationInputObjectZodSchema = z.lazy(__makeSchema_CourseUpdateManyMutationInput_schema); - - -// File: CourseUncheckedUpdateManyInput.schema.ts -const __makeSchema_CourseUncheckedUpdateManyInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - code: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - nameNo: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - nameEn: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - credits: z.union([z.number(), NullableFloatFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - studyLevel: z.union([StudyLevelSchema, EnumStudyLevelFieldUpdateOperationsInputObjectSchema]).optional(), - gradeType: z.union([GradeTypeSchema, EnumGradeTypeFieldUpdateOperationsInputObjectSchema]).optional(), - firstYearTaught: z.union([z.number().int(), IntFieldUpdateOperationsInputObjectSchema]).optional(), - lastYearTaught: z.union([z.number().int(), NullableIntFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - contentNo: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - contentEn: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - teachingMethodsNo: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - teachingMethodsEn: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - learningOutcomesNo: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - learningOutcomesEn: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - examTypeNo: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - examTypeEn: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - candidateCount: z.union([z.number().int(), IntFieldUpdateOperationsInputObjectSchema]).optional(), - averageGrade: z.union([z.number(), FloatFieldUpdateOperationsInputObjectSchema]).optional(), - passRate: z.union([z.number(), FloatFieldUpdateOperationsInputObjectSchema]).optional(), - createdAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - updatedAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - taughtSemesters: z.union([CourseUpdatetaughtSemestersInputObjectSchema, SemesterSchema.array()]).optional(), - teachingLanguages: z.union([CourseUpdateteachingLanguagesInputObjectSchema, TeachingLanguageSchema.array()]).optional(), - campuses: z.union([CourseUpdatecampusesInputObjectSchema, CampusSchema.array()]).optional(), - facultyId: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - departmentId: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - latestYearCheckedForNtnuData: z.union([z.number().int(), NullableIntFieldUpdateOperationsInputObjectSchema]).optional().nullable() -}).strict(); -export const CourseUncheckedUpdateManyInputObjectSchema: z.ZodType = z.lazy(__makeSchema_CourseUncheckedUpdateManyInput_schema) as unknown as z.ZodType; -export const CourseUncheckedUpdateManyInputObjectZodSchema = z.lazy(__makeSchema_CourseUncheckedUpdateManyInput_schema); - - -// File: GradeCreateInput.schema.ts -const __makeSchema_GradeCreateInput_schema = () => z.object({ - id: z.string().optional(), - gradeACount: z.number().int(), - gradeBCount: z.number().int(), - gradeCCount: z.number().int(), - gradeDCount: z.number().int(), - gradeECount: z.number().int(), - gradeFCount: z.number().int(), - passedCount: z.number().int(), - failedCount: z.number().int(), - semester: SemesterSchema, - year: z.number().int(), - createdAt: z.coerce.date().optional(), - get course(){ return CourseCreateNestedOneWithoutGradesInputObjectSchema; } -}).strict(); -export const GradeCreateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_GradeCreateInput_schema) as unknown as z.ZodType; -export const GradeCreateInputObjectZodSchema = z.lazy(__makeSchema_GradeCreateInput_schema); - - -// File: GradeUncheckedCreateInput.schema.ts -const __makeSchema_GradeUncheckedCreateInput_schema = () => z.object({ - id: z.string().optional(), - gradeACount: z.number().int(), - gradeBCount: z.number().int(), - gradeCCount: z.number().int(), - gradeDCount: z.number().int(), - gradeECount: z.number().int(), - gradeFCount: z.number().int(), - passedCount: z.number().int(), - failedCount: z.number().int(), - courseId: z.string(), - semester: SemesterSchema, - year: z.number().int(), - createdAt: z.coerce.date().optional() -}).strict(); -export const GradeUncheckedCreateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_GradeUncheckedCreateInput_schema) as unknown as z.ZodType; -export const GradeUncheckedCreateInputObjectZodSchema = z.lazy(__makeSchema_GradeUncheckedCreateInput_schema); - - -// File: GradeUpdateInput.schema.ts -const __makeSchema_GradeUpdateInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - gradeACount: z.union([z.number().int(), IntFieldUpdateOperationsInputObjectSchema]).optional(), - gradeBCount: z.union([z.number().int(), IntFieldUpdateOperationsInputObjectSchema]).optional(), - gradeCCount: z.union([z.number().int(), IntFieldUpdateOperationsInputObjectSchema]).optional(), - gradeDCount: z.union([z.number().int(), IntFieldUpdateOperationsInputObjectSchema]).optional(), - gradeECount: z.union([z.number().int(), IntFieldUpdateOperationsInputObjectSchema]).optional(), - gradeFCount: z.union([z.number().int(), IntFieldUpdateOperationsInputObjectSchema]).optional(), - passedCount: z.union([z.number().int(), IntFieldUpdateOperationsInputObjectSchema]).optional(), - failedCount: z.union([z.number().int(), IntFieldUpdateOperationsInputObjectSchema]).optional(), - semester: z.union([SemesterSchema, EnumSemesterFieldUpdateOperationsInputObjectSchema]).optional(), - year: z.union([z.number().int(), IntFieldUpdateOperationsInputObjectSchema]).optional(), - createdAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - updatedAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - get course(){ return CourseUpdateOneRequiredWithoutGradesNestedInputObjectSchema.optional(); } -}).strict(); -export const GradeUpdateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_GradeUpdateInput_schema) as unknown as z.ZodType; -export const GradeUpdateInputObjectZodSchema = z.lazy(__makeSchema_GradeUpdateInput_schema); - - -// File: GradeUncheckedUpdateInput.schema.ts -const __makeSchema_GradeUncheckedUpdateInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - gradeACount: z.union([z.number().int(), IntFieldUpdateOperationsInputObjectSchema]).optional(), - gradeBCount: z.union([z.number().int(), IntFieldUpdateOperationsInputObjectSchema]).optional(), - gradeCCount: z.union([z.number().int(), IntFieldUpdateOperationsInputObjectSchema]).optional(), - gradeDCount: z.union([z.number().int(), IntFieldUpdateOperationsInputObjectSchema]).optional(), - gradeECount: z.union([z.number().int(), IntFieldUpdateOperationsInputObjectSchema]).optional(), - gradeFCount: z.union([z.number().int(), IntFieldUpdateOperationsInputObjectSchema]).optional(), - passedCount: z.union([z.number().int(), IntFieldUpdateOperationsInputObjectSchema]).optional(), - failedCount: z.union([z.number().int(), IntFieldUpdateOperationsInputObjectSchema]).optional(), - courseId: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - semester: z.union([SemesterSchema, EnumSemesterFieldUpdateOperationsInputObjectSchema]).optional(), - year: z.union([z.number().int(), IntFieldUpdateOperationsInputObjectSchema]).optional(), - createdAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - updatedAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional() -}).strict(); -export const GradeUncheckedUpdateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_GradeUncheckedUpdateInput_schema) as unknown as z.ZodType; -export const GradeUncheckedUpdateInputObjectZodSchema = z.lazy(__makeSchema_GradeUncheckedUpdateInput_schema); - - -// File: GradeCreateManyInput.schema.ts -const __makeSchema_GradeCreateManyInput_schema = () => z.object({ - id: z.string().optional(), - gradeACount: z.number().int(), - gradeBCount: z.number().int(), - gradeCCount: z.number().int(), - gradeDCount: z.number().int(), - gradeECount: z.number().int(), - gradeFCount: z.number().int(), - passedCount: z.number().int(), - failedCount: z.number().int(), - courseId: z.string(), - semester: SemesterSchema, - year: z.number().int(), - createdAt: z.coerce.date().optional(), - updatedAt: z.coerce.date().optional() -}).strict(); -export const GradeCreateManyInputObjectSchema: z.ZodType = z.lazy(__makeSchema_GradeCreateManyInput_schema) as unknown as z.ZodType; -export const GradeCreateManyInputObjectZodSchema = z.lazy(__makeSchema_GradeCreateManyInput_schema); - - -// File: GradeUpdateManyMutationInput.schema.ts -const __makeSchema_GradeUpdateManyMutationInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - gradeACount: z.union([z.number().int(), IntFieldUpdateOperationsInputObjectSchema]).optional(), - gradeBCount: z.union([z.number().int(), IntFieldUpdateOperationsInputObjectSchema]).optional(), - gradeCCount: z.union([z.number().int(), IntFieldUpdateOperationsInputObjectSchema]).optional(), - gradeDCount: z.union([z.number().int(), IntFieldUpdateOperationsInputObjectSchema]).optional(), - gradeECount: z.union([z.number().int(), IntFieldUpdateOperationsInputObjectSchema]).optional(), - gradeFCount: z.union([z.number().int(), IntFieldUpdateOperationsInputObjectSchema]).optional(), - passedCount: z.union([z.number().int(), IntFieldUpdateOperationsInputObjectSchema]).optional(), - failedCount: z.union([z.number().int(), IntFieldUpdateOperationsInputObjectSchema]).optional(), - semester: z.union([SemesterSchema, EnumSemesterFieldUpdateOperationsInputObjectSchema]).optional(), - year: z.union([z.number().int(), IntFieldUpdateOperationsInputObjectSchema]).optional(), - createdAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - updatedAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional() -}).strict(); -export const GradeUpdateManyMutationInputObjectSchema: z.ZodType = z.lazy(__makeSchema_GradeUpdateManyMutationInput_schema) as unknown as z.ZodType; -export const GradeUpdateManyMutationInputObjectZodSchema = z.lazy(__makeSchema_GradeUpdateManyMutationInput_schema); - - -// File: GradeUncheckedUpdateManyInput.schema.ts -const __makeSchema_GradeUncheckedUpdateManyInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - gradeACount: z.union([z.number().int(), IntFieldUpdateOperationsInputObjectSchema]).optional(), - gradeBCount: z.union([z.number().int(), IntFieldUpdateOperationsInputObjectSchema]).optional(), - gradeCCount: z.union([z.number().int(), IntFieldUpdateOperationsInputObjectSchema]).optional(), - gradeDCount: z.union([z.number().int(), IntFieldUpdateOperationsInputObjectSchema]).optional(), - gradeECount: z.union([z.number().int(), IntFieldUpdateOperationsInputObjectSchema]).optional(), - gradeFCount: z.union([z.number().int(), IntFieldUpdateOperationsInputObjectSchema]).optional(), - passedCount: z.union([z.number().int(), IntFieldUpdateOperationsInputObjectSchema]).optional(), - failedCount: z.union([z.number().int(), IntFieldUpdateOperationsInputObjectSchema]).optional(), - courseId: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - semester: z.union([SemesterSchema, EnumSemesterFieldUpdateOperationsInputObjectSchema]).optional(), - year: z.union([z.number().int(), IntFieldUpdateOperationsInputObjectSchema]).optional(), - createdAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - updatedAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional() -}).strict(); -export const GradeUncheckedUpdateManyInputObjectSchema: z.ZodType = z.lazy(__makeSchema_GradeUncheckedUpdateManyInput_schema) as unknown as z.ZodType; -export const GradeUncheckedUpdateManyInputObjectZodSchema = z.lazy(__makeSchema_GradeUncheckedUpdateManyInput_schema); - - -// File: FacultyCreateInput.schema.ts -const __makeSchema_FacultyCreateInput_schema = () => z.object({ - id: z.string().optional(), - nameNo: z.string(), - nameEn: z.string(), - code: z.number().int(), - get courses(){ return CourseCreateNestedManyWithoutFacultyInputObjectSchema.optional(); }, - get departments(){ return DepartmentCreateNestedManyWithoutFacultyInputObjectSchema.optional(); } -}).strict(); -export const FacultyCreateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FacultyCreateInput_schema) as unknown as z.ZodType; -export const FacultyCreateInputObjectZodSchema = z.lazy(__makeSchema_FacultyCreateInput_schema); - - -// File: FacultyUncheckedCreateInput.schema.ts -const __makeSchema_FacultyUncheckedCreateInput_schema = () => z.object({ - id: z.string().optional(), - nameNo: z.string(), - nameEn: z.string(), - code: z.number().int(), - get courses(){ return CourseUncheckedCreateNestedManyWithoutFacultyInputObjectSchema.optional(); }, - get departments(){ return DepartmentUncheckedCreateNestedManyWithoutFacultyInputObjectSchema.optional(); } -}).strict(); -export const FacultyUncheckedCreateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FacultyUncheckedCreateInput_schema) as unknown as z.ZodType; -export const FacultyUncheckedCreateInputObjectZodSchema = z.lazy(__makeSchema_FacultyUncheckedCreateInput_schema); - - -// File: FacultyUpdateInput.schema.ts -const __makeSchema_FacultyUpdateInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - nameNo: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - nameEn: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - code: z.union([z.number().int(), IntFieldUpdateOperationsInputObjectSchema]).optional(), - get courses(){ return CourseUpdateManyWithoutFacultyNestedInputObjectSchema.optional(); }, - get departments(){ return DepartmentUpdateManyWithoutFacultyNestedInputObjectSchema.optional(); } -}).strict(); -export const FacultyUpdateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FacultyUpdateInput_schema) as unknown as z.ZodType; -export const FacultyUpdateInputObjectZodSchema = z.lazy(__makeSchema_FacultyUpdateInput_schema); - - -// File: FacultyUncheckedUpdateInput.schema.ts -const __makeSchema_FacultyUncheckedUpdateInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - nameNo: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - nameEn: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - code: z.union([z.number().int(), IntFieldUpdateOperationsInputObjectSchema]).optional(), - get courses(){ return CourseUncheckedUpdateManyWithoutFacultyNestedInputObjectSchema.optional(); }, - get departments(){ return DepartmentUncheckedUpdateManyWithoutFacultyNestedInputObjectSchema.optional(); } -}).strict(); -export const FacultyUncheckedUpdateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FacultyUncheckedUpdateInput_schema) as unknown as z.ZodType; -export const FacultyUncheckedUpdateInputObjectZodSchema = z.lazy(__makeSchema_FacultyUncheckedUpdateInput_schema); - - -// File: FacultyCreateManyInput.schema.ts -const __makeSchema_FacultyCreateManyInput_schema = () => z.object({ - id: z.string().optional(), - nameNo: z.string(), - nameEn: z.string(), - code: z.number().int() -}).strict(); -export const FacultyCreateManyInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FacultyCreateManyInput_schema) as unknown as z.ZodType; -export const FacultyCreateManyInputObjectZodSchema = z.lazy(__makeSchema_FacultyCreateManyInput_schema); - - -// File: FacultyUpdateManyMutationInput.schema.ts -const __makeSchema_FacultyUpdateManyMutationInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - nameNo: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - nameEn: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - code: z.union([z.number().int(), IntFieldUpdateOperationsInputObjectSchema]).optional() -}).strict(); -export const FacultyUpdateManyMutationInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FacultyUpdateManyMutationInput_schema) as unknown as z.ZodType; -export const FacultyUpdateManyMutationInputObjectZodSchema = z.lazy(__makeSchema_FacultyUpdateManyMutationInput_schema); - - -// File: FacultyUncheckedUpdateManyInput.schema.ts -const __makeSchema_FacultyUncheckedUpdateManyInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - nameNo: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - nameEn: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - code: z.union([z.number().int(), IntFieldUpdateOperationsInputObjectSchema]).optional() -}).strict(); -export const FacultyUncheckedUpdateManyInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FacultyUncheckedUpdateManyInput_schema) as unknown as z.ZodType; -export const FacultyUncheckedUpdateManyInputObjectZodSchema = z.lazy(__makeSchema_FacultyUncheckedUpdateManyInput_schema); - - -// File: DepartmentCreateInput.schema.ts -const __makeSchema_DepartmentCreateInput_schema = () => z.object({ - id: z.string().optional(), - nameNo: z.string(), - nameEn: z.string(), - code: z.number().int(), - get courses(){ return CourseCreateNestedManyWithoutDepartmentInputObjectSchema.optional(); }, - get faculty(){ return FacultyCreateNestedOneWithoutDepartmentsInputObjectSchema; } -}).strict(); -export const DepartmentCreateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_DepartmentCreateInput_schema) as unknown as z.ZodType; -export const DepartmentCreateInputObjectZodSchema = z.lazy(__makeSchema_DepartmentCreateInput_schema); - - -// File: DepartmentUncheckedCreateInput.schema.ts -const __makeSchema_DepartmentUncheckedCreateInput_schema = () => z.object({ - id: z.string().optional(), - nameNo: z.string(), - nameEn: z.string(), - code: z.number().int(), - facultyId: z.string(), - get courses(){ return CourseUncheckedCreateNestedManyWithoutDepartmentInputObjectSchema.optional(); } -}).strict(); -export const DepartmentUncheckedCreateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_DepartmentUncheckedCreateInput_schema) as unknown as z.ZodType; -export const DepartmentUncheckedCreateInputObjectZodSchema = z.lazy(__makeSchema_DepartmentUncheckedCreateInput_schema); - - -// File: DepartmentUpdateInput.schema.ts -const __makeSchema_DepartmentUpdateInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - nameNo: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - nameEn: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - code: z.union([z.number().int(), IntFieldUpdateOperationsInputObjectSchema]).optional(), - get courses(){ return CourseUpdateManyWithoutDepartmentNestedInputObjectSchema.optional(); }, - get faculty(){ return FacultyUpdateOneRequiredWithoutDepartmentsNestedInputObjectSchema.optional(); } -}).strict(); -export const DepartmentUpdateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_DepartmentUpdateInput_schema) as unknown as z.ZodType; -export const DepartmentUpdateInputObjectZodSchema = z.lazy(__makeSchema_DepartmentUpdateInput_schema); - - -// File: DepartmentUncheckedUpdateInput.schema.ts -const __makeSchema_DepartmentUncheckedUpdateInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - nameNo: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - nameEn: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - code: z.union([z.number().int(), IntFieldUpdateOperationsInputObjectSchema]).optional(), - facultyId: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - get courses(){ return CourseUncheckedUpdateManyWithoutDepartmentNestedInputObjectSchema.optional(); } -}).strict(); -export const DepartmentUncheckedUpdateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_DepartmentUncheckedUpdateInput_schema) as unknown as z.ZodType; -export const DepartmentUncheckedUpdateInputObjectZodSchema = z.lazy(__makeSchema_DepartmentUncheckedUpdateInput_schema); - - -// File: DepartmentCreateManyInput.schema.ts -const __makeSchema_DepartmentCreateManyInput_schema = () => z.object({ - id: z.string().optional(), - nameNo: z.string(), - nameEn: z.string(), - code: z.number().int(), - facultyId: z.string() -}).strict(); -export const DepartmentCreateManyInputObjectSchema: z.ZodType = z.lazy(__makeSchema_DepartmentCreateManyInput_schema) as unknown as z.ZodType; -export const DepartmentCreateManyInputObjectZodSchema = z.lazy(__makeSchema_DepartmentCreateManyInput_schema); - - -// File: DepartmentUpdateManyMutationInput.schema.ts -const __makeSchema_DepartmentUpdateManyMutationInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - nameNo: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - nameEn: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - code: z.union([z.number().int(), IntFieldUpdateOperationsInputObjectSchema]).optional() -}).strict(); -export const DepartmentUpdateManyMutationInputObjectSchema: z.ZodType = z.lazy(__makeSchema_DepartmentUpdateManyMutationInput_schema) as unknown as z.ZodType; -export const DepartmentUpdateManyMutationInputObjectZodSchema = z.lazy(__makeSchema_DepartmentUpdateManyMutationInput_schema); - - -// File: DepartmentUncheckedUpdateManyInput.schema.ts -const __makeSchema_DepartmentUncheckedUpdateManyInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - nameNo: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - nameEn: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - code: z.union([z.number().int(), IntFieldUpdateOperationsInputObjectSchema]).optional(), - facultyId: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional() -}).strict(); -export const DepartmentUncheckedUpdateManyInputObjectSchema: z.ZodType = z.lazy(__makeSchema_DepartmentUncheckedUpdateManyInput_schema) as unknown as z.ZodType; -export const DepartmentUncheckedUpdateManyInputObjectZodSchema = z.lazy(__makeSchema_DepartmentUncheckedUpdateManyInput_schema); - - -// File: StringFilter.schema.ts -const __makeSchema_StringFilter_schema = () => z.object({ - equals: z.string().optional(), - in: z.string().array().optional(), - notIn: z.string().array().optional(), - lt: z.string().optional(), - lte: z.string().optional(), - gt: z.string().optional(), - gte: z.string().optional(), - contains: z.string().optional(), - startsWith: z.string().optional(), - endsWith: z.string().optional(), - mode: QueryModeSchema.optional(), - not: z.union([z.string(), NestedStringFilterObjectSchema]).optional() -}).strict(); -export const StringFilterObjectSchema: z.ZodType = z.lazy(__makeSchema_StringFilter_schema) as unknown as z.ZodType; -export const StringFilterObjectZodSchema = z.lazy(__makeSchema_StringFilter_schema); - - -// File: StringNullableFilter.schema.ts -const __makeSchema_StringNullableFilter_schema = () => z.object({ - equals: z.string().optional().nullable(), - in: z.string().array().optional().nullable(), - notIn: z.string().array().optional().nullable(), - lt: z.string().optional(), - lte: z.string().optional(), - gt: z.string().optional(), - gte: z.string().optional(), - contains: z.string().optional(), - startsWith: z.string().optional(), - endsWith: z.string().optional(), - mode: QueryModeSchema.optional(), - not: z.union([z.string(), NestedStringNullableFilterObjectSchema]).optional().nullable() -}).strict(); -export const StringNullableFilterObjectSchema: z.ZodType = z.lazy(__makeSchema_StringNullableFilter_schema) as unknown as z.ZodType; -export const StringNullableFilterObjectZodSchema = z.lazy(__makeSchema_StringNullableFilter_schema); - - -// File: FloatNullableFilter.schema.ts -const __makeSchema_FloatNullableFilter_schema = () => z.object({ - equals: z.number().optional().nullable(), - in: z.number().array().optional().nullable(), - notIn: z.number().array().optional().nullable(), - lt: z.number().optional(), - lte: z.number().optional(), - gt: z.number().optional(), - gte: z.number().optional(), - not: z.union([z.number(), NestedFloatNullableFilterObjectSchema]).optional().nullable() -}).strict(); -export const FloatNullableFilterObjectSchema: z.ZodType = z.lazy(__makeSchema_FloatNullableFilter_schema) as unknown as z.ZodType; -export const FloatNullableFilterObjectZodSchema = z.lazy(__makeSchema_FloatNullableFilter_schema); - - -// File: EnumStudyLevelFilter.schema.ts -const __makeSchema_EnumStudyLevelFilter_schema = () => z.object({ - equals: StudyLevelSchema.optional(), - in: StudyLevelSchema.array().optional(), - notIn: StudyLevelSchema.array().optional(), - not: z.union([StudyLevelSchema, NestedEnumStudyLevelFilterObjectSchema]).optional() -}).strict(); -export const EnumStudyLevelFilterObjectSchema: z.ZodType = z.lazy(__makeSchema_EnumStudyLevelFilter_schema) as unknown as z.ZodType; -export const EnumStudyLevelFilterObjectZodSchema = z.lazy(__makeSchema_EnumStudyLevelFilter_schema); - - -// File: EnumGradeTypeFilter.schema.ts -const __makeSchema_EnumGradeTypeFilter_schema = () => z.object({ - equals: GradeTypeSchema.optional(), - in: GradeTypeSchema.array().optional(), - notIn: GradeTypeSchema.array().optional(), - not: z.union([GradeTypeSchema, NestedEnumGradeTypeFilterObjectSchema]).optional() -}).strict(); -export const EnumGradeTypeFilterObjectSchema: z.ZodType = z.lazy(__makeSchema_EnumGradeTypeFilter_schema) as unknown as z.ZodType; -export const EnumGradeTypeFilterObjectZodSchema = z.lazy(__makeSchema_EnumGradeTypeFilter_schema); - - -// File: IntFilter.schema.ts -const __makeSchema_IntFilter_schema = () => z.object({ - equals: z.number().int().optional(), - in: z.number().int().array().optional(), - notIn: z.number().int().array().optional(), - lt: z.number().int().optional(), - lte: z.number().int().optional(), - gt: z.number().int().optional(), - gte: z.number().int().optional(), - not: z.union([z.number().int(), NestedIntFilterObjectSchema]).optional() -}).strict(); -export const IntFilterObjectSchema: z.ZodType = z.lazy(__makeSchema_IntFilter_schema) as unknown as z.ZodType; -export const IntFilterObjectZodSchema = z.lazy(__makeSchema_IntFilter_schema); - - -// File: IntNullableFilter.schema.ts -const __makeSchema_IntNullableFilter_schema = () => z.object({ - equals: z.number().int().optional().nullable(), - in: z.number().int().array().optional().nullable(), - notIn: z.number().int().array().optional().nullable(), - lt: z.number().int().optional(), - lte: z.number().int().optional(), - gt: z.number().int().optional(), - gte: z.number().int().optional(), - not: z.union([z.number().int(), NestedIntNullableFilterObjectSchema]).optional().nullable() -}).strict(); -export const IntNullableFilterObjectSchema: z.ZodType = z.lazy(__makeSchema_IntNullableFilter_schema) as unknown as z.ZodType; -export const IntNullableFilterObjectZodSchema = z.lazy(__makeSchema_IntNullableFilter_schema); - - -// File: FloatFilter.schema.ts -const __makeSchema_FloatFilter_schema = () => z.object({ - equals: z.number().optional(), - in: z.number().array().optional(), - notIn: z.number().array().optional(), - lt: z.number().optional(), - lte: z.number().optional(), - gt: z.number().optional(), - gte: z.number().optional(), - not: z.union([z.number(), NestedFloatFilterObjectSchema]).optional() -}).strict(); -export const FloatFilterObjectSchema: z.ZodType = z.lazy(__makeSchema_FloatFilter_schema) as unknown as z.ZodType; -export const FloatFilterObjectZodSchema = z.lazy(__makeSchema_FloatFilter_schema); - - -// File: DateTimeFilter.schema.ts -const __makeSchema_DateTimeFilter_schema = () => z.object({ - equals: z.date().optional(), - in: z.union([z.date().array(), z.iso.datetime().array()]).optional(), - notIn: z.union([z.date().array(), z.iso.datetime().array()]).optional(), - lt: z.date().optional(), - lte: z.date().optional(), - gt: z.date().optional(), - gte: z.date().optional(), - not: z.union([z.date(), NestedDateTimeFilterObjectSchema]).optional() -}).strict(); -export const DateTimeFilterObjectSchema: z.ZodType = z.lazy(__makeSchema_DateTimeFilter_schema) as unknown as z.ZodType; -export const DateTimeFilterObjectZodSchema = z.lazy(__makeSchema_DateTimeFilter_schema); - - -// File: EnumSemesterNullableListFilter.schema.ts -const __makeSchema_EnumSemesterNullableListFilter_schema = () => z.object({ - equals: SemesterSchema.array().optional().nullable(), - has: SemesterSchema.optional().nullable(), - hasEvery: SemesterSchema.array().optional(), - hasSome: SemesterSchema.array().optional(), - isEmpty: z.boolean().optional() -}).strict(); -export const EnumSemesterNullableListFilterObjectSchema: z.ZodType = z.lazy(__makeSchema_EnumSemesterNullableListFilter_schema) as unknown as z.ZodType; -export const EnumSemesterNullableListFilterObjectZodSchema = z.lazy(__makeSchema_EnumSemesterNullableListFilter_schema); - - -// File: EnumTeachingLanguageNullableListFilter.schema.ts -const __makeSchema_EnumTeachingLanguageNullableListFilter_schema = () => z.object({ - equals: TeachingLanguageSchema.array().optional().nullable(), - has: TeachingLanguageSchema.optional().nullable(), - hasEvery: TeachingLanguageSchema.array().optional(), - hasSome: TeachingLanguageSchema.array().optional(), - isEmpty: z.boolean().optional() -}).strict(); -export const EnumTeachingLanguageNullableListFilterObjectSchema: z.ZodType = z.lazy(__makeSchema_EnumTeachingLanguageNullableListFilter_schema) as unknown as z.ZodType; -export const EnumTeachingLanguageNullableListFilterObjectZodSchema = z.lazy(__makeSchema_EnumTeachingLanguageNullableListFilter_schema); - - -// File: EnumCampusNullableListFilter.schema.ts -const __makeSchema_EnumCampusNullableListFilter_schema = () => z.object({ - equals: CampusSchema.array().optional().nullable(), - has: CampusSchema.optional().nullable(), - hasEvery: CampusSchema.array().optional(), - hasSome: CampusSchema.array().optional(), - isEmpty: z.boolean().optional() -}).strict(); -export const EnumCampusNullableListFilterObjectSchema: z.ZodType = z.lazy(__makeSchema_EnumCampusNullableListFilter_schema) as unknown as z.ZodType; -export const EnumCampusNullableListFilterObjectZodSchema = z.lazy(__makeSchema_EnumCampusNullableListFilter_schema); - - -// File: GradeListRelationFilter.schema.ts -const __makeSchema_GradeListRelationFilter_schema = () => z.object({ - get every(){ return GradeWhereInputObjectSchema.optional(); }, - get some(){ return GradeWhereInputObjectSchema.optional(); }, - get none(){ return GradeWhereInputObjectSchema.optional(); } -}).strict(); -export const GradeListRelationFilterObjectSchema: z.ZodType = z.lazy(__makeSchema_GradeListRelationFilter_schema) as unknown as z.ZodType; -export const GradeListRelationFilterObjectZodSchema = z.lazy(__makeSchema_GradeListRelationFilter_schema); - - -// File: FacultyNullableScalarRelationFilter.schema.ts -const __makeSchema_FacultyNullableScalarRelationFilter_schema = () => z.object({ - is: FacultyWhereInputObjectSchema.optional().nullable(), - isNot: FacultyWhereInputObjectSchema.optional().nullable() -}).strict(); -export const FacultyNullableScalarRelationFilterObjectSchema: z.ZodType = z.lazy(__makeSchema_FacultyNullableScalarRelationFilter_schema) as unknown as z.ZodType; -export const FacultyNullableScalarRelationFilterObjectZodSchema = z.lazy(__makeSchema_FacultyNullableScalarRelationFilter_schema); - - -// File: DepartmentNullableScalarRelationFilter.schema.ts -const __makeSchema_DepartmentNullableScalarRelationFilter_schema = () => z.object({ - is: DepartmentWhereInputObjectSchema.optional().nullable(), - isNot: DepartmentWhereInputObjectSchema.optional().nullable() -}).strict(); -export const DepartmentNullableScalarRelationFilterObjectSchema: z.ZodType = z.lazy(__makeSchema_DepartmentNullableScalarRelationFilter_schema) as unknown as z.ZodType; -export const DepartmentNullableScalarRelationFilterObjectZodSchema = z.lazy(__makeSchema_DepartmentNullableScalarRelationFilter_schema); - - -// File: SortOrderInput.schema.ts -const __makeSchema_SortOrderInput_schema = () => z.object({ - sort: SortOrderSchema, - nulls: NullsOrderSchema.optional() -}).strict(); -export const SortOrderInputObjectSchema: z.ZodType = z.lazy(__makeSchema_SortOrderInput_schema) as unknown as z.ZodType; -export const SortOrderInputObjectZodSchema = z.lazy(__makeSchema_SortOrderInput_schema); - - -// File: GradeOrderByRelationAggregateInput.schema.ts -const __makeSchema_GradeOrderByRelationAggregateInput_schema = () => z.object({ - _count: SortOrderSchema.optional() -}).strict(); -export const GradeOrderByRelationAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_GradeOrderByRelationAggregateInput_schema) as unknown as z.ZodType; -export const GradeOrderByRelationAggregateInputObjectZodSchema = z.lazy(__makeSchema_GradeOrderByRelationAggregateInput_schema); - - -// File: CourseCountOrderByAggregateInput.schema.ts -const __makeSchema_CourseCountOrderByAggregateInput_schema = () => z.object({ - id: SortOrderSchema.optional(), - code: SortOrderSchema.optional(), - nameNo: SortOrderSchema.optional(), - nameEn: SortOrderSchema.optional(), - credits: SortOrderSchema.optional(), - studyLevel: SortOrderSchema.optional(), - gradeType: SortOrderSchema.optional(), - firstYearTaught: SortOrderSchema.optional(), - lastYearTaught: SortOrderSchema.optional(), - contentNo: SortOrderSchema.optional(), - contentEn: SortOrderSchema.optional(), - teachingMethodsNo: SortOrderSchema.optional(), - teachingMethodsEn: SortOrderSchema.optional(), - learningOutcomesNo: SortOrderSchema.optional(), - learningOutcomesEn: SortOrderSchema.optional(), - examTypeNo: SortOrderSchema.optional(), - examTypeEn: SortOrderSchema.optional(), - candidateCount: SortOrderSchema.optional(), - averageGrade: SortOrderSchema.optional(), - passRate: SortOrderSchema.optional(), - createdAt: SortOrderSchema.optional(), - updatedAt: SortOrderSchema.optional(), - taughtSemesters: SortOrderSchema.optional(), - teachingLanguages: SortOrderSchema.optional(), - campuses: SortOrderSchema.optional(), - facultyId: SortOrderSchema.optional(), - departmentId: SortOrderSchema.optional(), - latestYearCheckedForNtnuData: SortOrderSchema.optional() -}).strict(); -export const CourseCountOrderByAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_CourseCountOrderByAggregateInput_schema) as unknown as z.ZodType; -export const CourseCountOrderByAggregateInputObjectZodSchema = z.lazy(__makeSchema_CourseCountOrderByAggregateInput_schema); - - -// File: CourseAvgOrderByAggregateInput.schema.ts -const __makeSchema_CourseAvgOrderByAggregateInput_schema = () => z.object({ - credits: SortOrderSchema.optional(), - firstYearTaught: SortOrderSchema.optional(), - lastYearTaught: SortOrderSchema.optional(), - candidateCount: SortOrderSchema.optional(), - averageGrade: SortOrderSchema.optional(), - passRate: SortOrderSchema.optional(), - latestYearCheckedForNtnuData: SortOrderSchema.optional() -}).strict(); -export const CourseAvgOrderByAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_CourseAvgOrderByAggregateInput_schema) as unknown as z.ZodType; -export const CourseAvgOrderByAggregateInputObjectZodSchema = z.lazy(__makeSchema_CourseAvgOrderByAggregateInput_schema); - - -// File: CourseMaxOrderByAggregateInput.schema.ts -const __makeSchema_CourseMaxOrderByAggregateInput_schema = () => z.object({ - id: SortOrderSchema.optional(), - code: SortOrderSchema.optional(), - nameNo: SortOrderSchema.optional(), - nameEn: SortOrderSchema.optional(), - credits: SortOrderSchema.optional(), - studyLevel: SortOrderSchema.optional(), - gradeType: SortOrderSchema.optional(), - firstYearTaught: SortOrderSchema.optional(), - lastYearTaught: SortOrderSchema.optional(), - contentNo: SortOrderSchema.optional(), - contentEn: SortOrderSchema.optional(), - teachingMethodsNo: SortOrderSchema.optional(), - teachingMethodsEn: SortOrderSchema.optional(), - learningOutcomesNo: SortOrderSchema.optional(), - learningOutcomesEn: SortOrderSchema.optional(), - examTypeNo: SortOrderSchema.optional(), - examTypeEn: SortOrderSchema.optional(), - candidateCount: SortOrderSchema.optional(), - averageGrade: SortOrderSchema.optional(), - passRate: SortOrderSchema.optional(), - createdAt: SortOrderSchema.optional(), - updatedAt: SortOrderSchema.optional(), - facultyId: SortOrderSchema.optional(), - departmentId: SortOrderSchema.optional(), - latestYearCheckedForNtnuData: SortOrderSchema.optional() -}).strict(); -export const CourseMaxOrderByAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_CourseMaxOrderByAggregateInput_schema) as unknown as z.ZodType; -export const CourseMaxOrderByAggregateInputObjectZodSchema = z.lazy(__makeSchema_CourseMaxOrderByAggregateInput_schema); - - -// File: CourseMinOrderByAggregateInput.schema.ts -const __makeSchema_CourseMinOrderByAggregateInput_schema = () => z.object({ - id: SortOrderSchema.optional(), - code: SortOrderSchema.optional(), - nameNo: SortOrderSchema.optional(), - nameEn: SortOrderSchema.optional(), - credits: SortOrderSchema.optional(), - studyLevel: SortOrderSchema.optional(), - gradeType: SortOrderSchema.optional(), - firstYearTaught: SortOrderSchema.optional(), - lastYearTaught: SortOrderSchema.optional(), - contentNo: SortOrderSchema.optional(), - contentEn: SortOrderSchema.optional(), - teachingMethodsNo: SortOrderSchema.optional(), - teachingMethodsEn: SortOrderSchema.optional(), - learningOutcomesNo: SortOrderSchema.optional(), - learningOutcomesEn: SortOrderSchema.optional(), - examTypeNo: SortOrderSchema.optional(), - examTypeEn: SortOrderSchema.optional(), - candidateCount: SortOrderSchema.optional(), - averageGrade: SortOrderSchema.optional(), - passRate: SortOrderSchema.optional(), - createdAt: SortOrderSchema.optional(), - updatedAt: SortOrderSchema.optional(), - facultyId: SortOrderSchema.optional(), - departmentId: SortOrderSchema.optional(), - latestYearCheckedForNtnuData: SortOrderSchema.optional() -}).strict(); -export const CourseMinOrderByAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_CourseMinOrderByAggregateInput_schema) as unknown as z.ZodType; -export const CourseMinOrderByAggregateInputObjectZodSchema = z.lazy(__makeSchema_CourseMinOrderByAggregateInput_schema); - - -// File: CourseSumOrderByAggregateInput.schema.ts -const __makeSchema_CourseSumOrderByAggregateInput_schema = () => z.object({ - credits: SortOrderSchema.optional(), - firstYearTaught: SortOrderSchema.optional(), - lastYearTaught: SortOrderSchema.optional(), - candidateCount: SortOrderSchema.optional(), - averageGrade: SortOrderSchema.optional(), - passRate: SortOrderSchema.optional(), - latestYearCheckedForNtnuData: SortOrderSchema.optional() -}).strict(); -export const CourseSumOrderByAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_CourseSumOrderByAggregateInput_schema) as unknown as z.ZodType; -export const CourseSumOrderByAggregateInputObjectZodSchema = z.lazy(__makeSchema_CourseSumOrderByAggregateInput_schema); - - -// File: StringWithAggregatesFilter.schema.ts -const __makeSchema_StringWithAggregatesFilter_schema = () => z.object({ - equals: z.string().optional(), - in: z.string().array().optional(), - notIn: z.string().array().optional(), - lt: z.string().optional(), - lte: z.string().optional(), - gt: z.string().optional(), - gte: z.string().optional(), - contains: z.string().optional(), - startsWith: z.string().optional(), - endsWith: z.string().optional(), - mode: QueryModeSchema.optional(), - not: z.union([z.string(), NestedStringWithAggregatesFilterObjectSchema]).optional(), - get _count(){ return NestedIntFilterObjectSchema.optional(); }, - get _min(){ return NestedStringFilterObjectSchema.optional(); }, - get _max(){ return NestedStringFilterObjectSchema.optional(); } -}).strict(); -export const StringWithAggregatesFilterObjectSchema: z.ZodType = z.lazy(__makeSchema_StringWithAggregatesFilter_schema) as unknown as z.ZodType; -export const StringWithAggregatesFilterObjectZodSchema = z.lazy(__makeSchema_StringWithAggregatesFilter_schema); - - -// File: StringNullableWithAggregatesFilter.schema.ts -const __makeSchema_StringNullableWithAggregatesFilter_schema = () => z.object({ - equals: z.string().optional().nullable(), - in: z.string().array().optional().nullable(), - notIn: z.string().array().optional().nullable(), - lt: z.string().optional(), - lte: z.string().optional(), - gt: z.string().optional(), - gte: z.string().optional(), - contains: z.string().optional(), - startsWith: z.string().optional(), - endsWith: z.string().optional(), - mode: QueryModeSchema.optional(), - not: z.union([z.string(), NestedStringNullableWithAggregatesFilterObjectSchema]).optional().nullable(), - get _count(){ return NestedIntNullableFilterObjectSchema.optional(); }, - get _min(){ return NestedStringNullableFilterObjectSchema.optional(); }, - get _max(){ return NestedStringNullableFilterObjectSchema.optional(); } -}).strict(); -export const StringNullableWithAggregatesFilterObjectSchema: z.ZodType = z.lazy(__makeSchema_StringNullableWithAggregatesFilter_schema) as unknown as z.ZodType; -export const StringNullableWithAggregatesFilterObjectZodSchema = z.lazy(__makeSchema_StringNullableWithAggregatesFilter_schema); - - -// File: FloatNullableWithAggregatesFilter.schema.ts -const __makeSchema_FloatNullableWithAggregatesFilter_schema = () => z.object({ - equals: z.number().optional().nullable(), - in: z.number().array().optional().nullable(), - notIn: z.number().array().optional().nullable(), - lt: z.number().optional(), - lte: z.number().optional(), - gt: z.number().optional(), - gte: z.number().optional(), - not: z.union([z.number(), NestedFloatNullableWithAggregatesFilterObjectSchema]).optional().nullable(), - get _count(){ return NestedIntNullableFilterObjectSchema.optional(); }, - get _avg(){ return NestedFloatNullableFilterObjectSchema.optional(); }, - get _sum(){ return NestedFloatNullableFilterObjectSchema.optional(); }, - get _min(){ return NestedFloatNullableFilterObjectSchema.optional(); }, - get _max(){ return NestedFloatNullableFilterObjectSchema.optional(); } -}).strict(); -export const FloatNullableWithAggregatesFilterObjectSchema: z.ZodType = z.lazy(__makeSchema_FloatNullableWithAggregatesFilter_schema) as unknown as z.ZodType; -export const FloatNullableWithAggregatesFilterObjectZodSchema = z.lazy(__makeSchema_FloatNullableWithAggregatesFilter_schema); - - -// File: EnumStudyLevelWithAggregatesFilter.schema.ts -const __makeSchema_EnumStudyLevelWithAggregatesFilter_schema = () => z.object({ - equals: StudyLevelSchema.optional(), - in: StudyLevelSchema.array().optional(), - notIn: StudyLevelSchema.array().optional(), - not: z.union([StudyLevelSchema, NestedEnumStudyLevelWithAggregatesFilterObjectSchema]).optional(), - get _count(){ return NestedIntFilterObjectSchema.optional(); }, - get _min(){ return NestedEnumStudyLevelFilterObjectSchema.optional(); }, - get _max(){ return NestedEnumStudyLevelFilterObjectSchema.optional(); } -}).strict(); -export const EnumStudyLevelWithAggregatesFilterObjectSchema: z.ZodType = z.lazy(__makeSchema_EnumStudyLevelWithAggregatesFilter_schema) as unknown as z.ZodType; -export const EnumStudyLevelWithAggregatesFilterObjectZodSchema = z.lazy(__makeSchema_EnumStudyLevelWithAggregatesFilter_schema); - - -// File: EnumGradeTypeWithAggregatesFilter.schema.ts -const __makeSchema_EnumGradeTypeWithAggregatesFilter_schema = () => z.object({ - equals: GradeTypeSchema.optional(), - in: GradeTypeSchema.array().optional(), - notIn: GradeTypeSchema.array().optional(), - not: z.union([GradeTypeSchema, NestedEnumGradeTypeWithAggregatesFilterObjectSchema]).optional(), - get _count(){ return NestedIntFilterObjectSchema.optional(); }, - get _min(){ return NestedEnumGradeTypeFilterObjectSchema.optional(); }, - get _max(){ return NestedEnumGradeTypeFilterObjectSchema.optional(); } -}).strict(); -export const EnumGradeTypeWithAggregatesFilterObjectSchema: z.ZodType = z.lazy(__makeSchema_EnumGradeTypeWithAggregatesFilter_schema) as unknown as z.ZodType; -export const EnumGradeTypeWithAggregatesFilterObjectZodSchema = z.lazy(__makeSchema_EnumGradeTypeWithAggregatesFilter_schema); - - -// File: IntWithAggregatesFilter.schema.ts -const __makeSchema_IntWithAggregatesFilter_schema = () => z.object({ - equals: z.number().int().optional(), - in: z.number().int().array().optional(), - notIn: z.number().int().array().optional(), - lt: z.number().int().optional(), - lte: z.number().int().optional(), - gt: z.number().int().optional(), - gte: z.number().int().optional(), - not: z.union([z.number().int(), NestedIntWithAggregatesFilterObjectSchema]).optional(), - get _count(){ return NestedIntFilterObjectSchema.optional(); }, - get _avg(){ return NestedFloatFilterObjectSchema.optional(); }, - get _sum(){ return NestedIntFilterObjectSchema.optional(); }, - get _min(){ return NestedIntFilterObjectSchema.optional(); }, - get _max(){ return NestedIntFilterObjectSchema.optional(); } -}).strict(); -export const IntWithAggregatesFilterObjectSchema: z.ZodType = z.lazy(__makeSchema_IntWithAggregatesFilter_schema) as unknown as z.ZodType; -export const IntWithAggregatesFilterObjectZodSchema = z.lazy(__makeSchema_IntWithAggregatesFilter_schema); - - -// File: IntNullableWithAggregatesFilter.schema.ts -const __makeSchema_IntNullableWithAggregatesFilter_schema = () => z.object({ - equals: z.number().int().optional().nullable(), - in: z.number().int().array().optional().nullable(), - notIn: z.number().int().array().optional().nullable(), - lt: z.number().int().optional(), - lte: z.number().int().optional(), - gt: z.number().int().optional(), - gte: z.number().int().optional(), - not: z.union([z.number().int(), NestedIntNullableWithAggregatesFilterObjectSchema]).optional().nullable(), - get _count(){ return NestedIntNullableFilterObjectSchema.optional(); }, - get _avg(){ return NestedFloatNullableFilterObjectSchema.optional(); }, - get _sum(){ return NestedIntNullableFilterObjectSchema.optional(); }, - get _min(){ return NestedIntNullableFilterObjectSchema.optional(); }, - get _max(){ return NestedIntNullableFilterObjectSchema.optional(); } -}).strict(); -export const IntNullableWithAggregatesFilterObjectSchema: z.ZodType = z.lazy(__makeSchema_IntNullableWithAggregatesFilter_schema) as unknown as z.ZodType; -export const IntNullableWithAggregatesFilterObjectZodSchema = z.lazy(__makeSchema_IntNullableWithAggregatesFilter_schema); - - -// File: FloatWithAggregatesFilter.schema.ts -const __makeSchema_FloatWithAggregatesFilter_schema = () => z.object({ - equals: z.number().optional(), - in: z.number().array().optional(), - notIn: z.number().array().optional(), - lt: z.number().optional(), - lte: z.number().optional(), - gt: z.number().optional(), - gte: z.number().optional(), - not: z.union([z.number(), NestedFloatWithAggregatesFilterObjectSchema]).optional(), - get _count(){ return NestedIntFilterObjectSchema.optional(); }, - get _avg(){ return NestedFloatFilterObjectSchema.optional(); }, - get _sum(){ return NestedFloatFilterObjectSchema.optional(); }, - get _min(){ return NestedFloatFilterObjectSchema.optional(); }, - get _max(){ return NestedFloatFilterObjectSchema.optional(); } -}).strict(); -export const FloatWithAggregatesFilterObjectSchema: z.ZodType = z.lazy(__makeSchema_FloatWithAggregatesFilter_schema) as unknown as z.ZodType; -export const FloatWithAggregatesFilterObjectZodSchema = z.lazy(__makeSchema_FloatWithAggregatesFilter_schema); - - -// File: DateTimeWithAggregatesFilter.schema.ts -const __makeSchema_DateTimeWithAggregatesFilter_schema = () => z.object({ - equals: z.date().optional(), - in: z.union([z.date().array(), z.iso.datetime().array()]).optional(), - notIn: z.union([z.date().array(), z.iso.datetime().array()]).optional(), - lt: z.date().optional(), - lte: z.date().optional(), - gt: z.date().optional(), - gte: z.date().optional(), - not: z.union([z.date(), NestedDateTimeWithAggregatesFilterObjectSchema]).optional(), - get _count(){ return NestedIntFilterObjectSchema.optional(); }, - get _min(){ return NestedDateTimeFilterObjectSchema.optional(); }, - get _max(){ return NestedDateTimeFilterObjectSchema.optional(); } -}).strict(); -export const DateTimeWithAggregatesFilterObjectSchema: z.ZodType = z.lazy(__makeSchema_DateTimeWithAggregatesFilter_schema) as unknown as z.ZodType; -export const DateTimeWithAggregatesFilterObjectZodSchema = z.lazy(__makeSchema_DateTimeWithAggregatesFilter_schema); - - -// File: EnumSemesterFilter.schema.ts -const __makeSchema_EnumSemesterFilter_schema = () => z.object({ - equals: SemesterSchema.optional(), - in: SemesterSchema.array().optional(), - notIn: SemesterSchema.array().optional(), - not: z.union([SemesterSchema, NestedEnumSemesterFilterObjectSchema]).optional() -}).strict(); -export const EnumSemesterFilterObjectSchema: z.ZodType = z.lazy(__makeSchema_EnumSemesterFilter_schema) as unknown as z.ZodType; -export const EnumSemesterFilterObjectZodSchema = z.lazy(__makeSchema_EnumSemesterFilter_schema); - - -// File: CourseScalarRelationFilter.schema.ts -const __makeSchema_CourseScalarRelationFilter_schema = () => z.object({ - get is(){ return CourseWhereInputObjectSchema.optional(); }, - get isNot(){ return CourseWhereInputObjectSchema.optional(); } -}).strict(); -export const CourseScalarRelationFilterObjectSchema: z.ZodType = z.lazy(__makeSchema_CourseScalarRelationFilter_schema) as unknown as z.ZodType; -export const CourseScalarRelationFilterObjectZodSchema = z.lazy(__makeSchema_CourseScalarRelationFilter_schema); - - -// File: GradeCourseIdSemesterYearCompoundUniqueInput.schema.ts -const __makeSchema_GradeCourseIdSemesterYearCompoundUniqueInput_schema = () => z.object({ - courseId: z.string(), - semester: SemesterSchema, - year: z.number().int() -}).strict(); -export const GradeCourseIdSemesterYearCompoundUniqueInputObjectSchema: z.ZodType = z.lazy(__makeSchema_GradeCourseIdSemesterYearCompoundUniqueInput_schema) as unknown as z.ZodType; -export const GradeCourseIdSemesterYearCompoundUniqueInputObjectZodSchema = z.lazy(__makeSchema_GradeCourseIdSemesterYearCompoundUniqueInput_schema); - - -// File: GradeCountOrderByAggregateInput.schema.ts -const __makeSchema_GradeCountOrderByAggregateInput_schema = () => z.object({ - id: SortOrderSchema.optional(), - gradeACount: SortOrderSchema.optional(), - gradeBCount: SortOrderSchema.optional(), - gradeCCount: SortOrderSchema.optional(), - gradeDCount: SortOrderSchema.optional(), - gradeECount: SortOrderSchema.optional(), - gradeFCount: SortOrderSchema.optional(), - passedCount: SortOrderSchema.optional(), - failedCount: SortOrderSchema.optional(), - courseId: SortOrderSchema.optional(), - semester: SortOrderSchema.optional(), - year: SortOrderSchema.optional(), - createdAt: SortOrderSchema.optional(), - updatedAt: SortOrderSchema.optional() -}).strict(); -export const GradeCountOrderByAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_GradeCountOrderByAggregateInput_schema) as unknown as z.ZodType; -export const GradeCountOrderByAggregateInputObjectZodSchema = z.lazy(__makeSchema_GradeCountOrderByAggregateInput_schema); - - -// File: GradeAvgOrderByAggregateInput.schema.ts -const __makeSchema_GradeAvgOrderByAggregateInput_schema = () => z.object({ - gradeACount: SortOrderSchema.optional(), - gradeBCount: SortOrderSchema.optional(), - gradeCCount: SortOrderSchema.optional(), - gradeDCount: SortOrderSchema.optional(), - gradeECount: SortOrderSchema.optional(), - gradeFCount: SortOrderSchema.optional(), - passedCount: SortOrderSchema.optional(), - failedCount: SortOrderSchema.optional(), - year: SortOrderSchema.optional() -}).strict(); -export const GradeAvgOrderByAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_GradeAvgOrderByAggregateInput_schema) as unknown as z.ZodType; -export const GradeAvgOrderByAggregateInputObjectZodSchema = z.lazy(__makeSchema_GradeAvgOrderByAggregateInput_schema); - - -// File: GradeMaxOrderByAggregateInput.schema.ts -const __makeSchema_GradeMaxOrderByAggregateInput_schema = () => z.object({ - id: SortOrderSchema.optional(), - gradeACount: SortOrderSchema.optional(), - gradeBCount: SortOrderSchema.optional(), - gradeCCount: SortOrderSchema.optional(), - gradeDCount: SortOrderSchema.optional(), - gradeECount: SortOrderSchema.optional(), - gradeFCount: SortOrderSchema.optional(), - passedCount: SortOrderSchema.optional(), - failedCount: SortOrderSchema.optional(), - courseId: SortOrderSchema.optional(), - semester: SortOrderSchema.optional(), - year: SortOrderSchema.optional(), - createdAt: SortOrderSchema.optional(), - updatedAt: SortOrderSchema.optional() -}).strict(); -export const GradeMaxOrderByAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_GradeMaxOrderByAggregateInput_schema) as unknown as z.ZodType; -export const GradeMaxOrderByAggregateInputObjectZodSchema = z.lazy(__makeSchema_GradeMaxOrderByAggregateInput_schema); - - -// File: GradeMinOrderByAggregateInput.schema.ts -const __makeSchema_GradeMinOrderByAggregateInput_schema = () => z.object({ - id: SortOrderSchema.optional(), - gradeACount: SortOrderSchema.optional(), - gradeBCount: SortOrderSchema.optional(), - gradeCCount: SortOrderSchema.optional(), - gradeDCount: SortOrderSchema.optional(), - gradeECount: SortOrderSchema.optional(), - gradeFCount: SortOrderSchema.optional(), - passedCount: SortOrderSchema.optional(), - failedCount: SortOrderSchema.optional(), - courseId: SortOrderSchema.optional(), - semester: SortOrderSchema.optional(), - year: SortOrderSchema.optional(), - createdAt: SortOrderSchema.optional(), - updatedAt: SortOrderSchema.optional() -}).strict(); -export const GradeMinOrderByAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_GradeMinOrderByAggregateInput_schema) as unknown as z.ZodType; -export const GradeMinOrderByAggregateInputObjectZodSchema = z.lazy(__makeSchema_GradeMinOrderByAggregateInput_schema); - - -// File: GradeSumOrderByAggregateInput.schema.ts -const __makeSchema_GradeSumOrderByAggregateInput_schema = () => z.object({ - gradeACount: SortOrderSchema.optional(), - gradeBCount: SortOrderSchema.optional(), - gradeCCount: SortOrderSchema.optional(), - gradeDCount: SortOrderSchema.optional(), - gradeECount: SortOrderSchema.optional(), - gradeFCount: SortOrderSchema.optional(), - passedCount: SortOrderSchema.optional(), - failedCount: SortOrderSchema.optional(), - year: SortOrderSchema.optional() -}).strict(); -export const GradeSumOrderByAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_GradeSumOrderByAggregateInput_schema) as unknown as z.ZodType; -export const GradeSumOrderByAggregateInputObjectZodSchema = z.lazy(__makeSchema_GradeSumOrderByAggregateInput_schema); - - -// File: EnumSemesterWithAggregatesFilter.schema.ts -const __makeSchema_EnumSemesterWithAggregatesFilter_schema = () => z.object({ - equals: SemesterSchema.optional(), - in: SemesterSchema.array().optional(), - notIn: SemesterSchema.array().optional(), - not: z.union([SemesterSchema, NestedEnumSemesterWithAggregatesFilterObjectSchema]).optional(), - get _count(){ return NestedIntFilterObjectSchema.optional(); }, - get _min(){ return NestedEnumSemesterFilterObjectSchema.optional(); }, - get _max(){ return NestedEnumSemesterFilterObjectSchema.optional(); } -}).strict(); -export const EnumSemesterWithAggregatesFilterObjectSchema: z.ZodType = z.lazy(__makeSchema_EnumSemesterWithAggregatesFilter_schema) as unknown as z.ZodType; -export const EnumSemesterWithAggregatesFilterObjectZodSchema = z.lazy(__makeSchema_EnumSemesterWithAggregatesFilter_schema); - - -// File: CourseListRelationFilter.schema.ts -const __makeSchema_CourseListRelationFilter_schema = () => z.object({ - get every(){ return CourseWhereInputObjectSchema.optional(); }, - get some(){ return CourseWhereInputObjectSchema.optional(); }, - get none(){ return CourseWhereInputObjectSchema.optional(); } -}).strict(); -export const CourseListRelationFilterObjectSchema: z.ZodType = z.lazy(__makeSchema_CourseListRelationFilter_schema) as unknown as z.ZodType; -export const CourseListRelationFilterObjectZodSchema = z.lazy(__makeSchema_CourseListRelationFilter_schema); - - -// File: DepartmentListRelationFilter.schema.ts -const __makeSchema_DepartmentListRelationFilter_schema = () => z.object({ - get every(){ return DepartmentWhereInputObjectSchema.optional(); }, - get some(){ return DepartmentWhereInputObjectSchema.optional(); }, - get none(){ return DepartmentWhereInputObjectSchema.optional(); } -}).strict(); -export const DepartmentListRelationFilterObjectSchema: z.ZodType = z.lazy(__makeSchema_DepartmentListRelationFilter_schema) as unknown as z.ZodType; -export const DepartmentListRelationFilterObjectZodSchema = z.lazy(__makeSchema_DepartmentListRelationFilter_schema); - - -// File: CourseOrderByRelationAggregateInput.schema.ts -const __makeSchema_CourseOrderByRelationAggregateInput_schema = () => z.object({ - _count: SortOrderSchema.optional() -}).strict(); -export const CourseOrderByRelationAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_CourseOrderByRelationAggregateInput_schema) as unknown as z.ZodType; -export const CourseOrderByRelationAggregateInputObjectZodSchema = z.lazy(__makeSchema_CourseOrderByRelationAggregateInput_schema); - - -// File: DepartmentOrderByRelationAggregateInput.schema.ts -const __makeSchema_DepartmentOrderByRelationAggregateInput_schema = () => z.object({ - _count: SortOrderSchema.optional() -}).strict(); -export const DepartmentOrderByRelationAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_DepartmentOrderByRelationAggregateInput_schema) as unknown as z.ZodType; -export const DepartmentOrderByRelationAggregateInputObjectZodSchema = z.lazy(__makeSchema_DepartmentOrderByRelationAggregateInput_schema); - - -// File: FacultyCountOrderByAggregateInput.schema.ts -const __makeSchema_FacultyCountOrderByAggregateInput_schema = () => z.object({ - id: SortOrderSchema.optional(), - nameNo: SortOrderSchema.optional(), - nameEn: SortOrderSchema.optional(), - code: SortOrderSchema.optional() -}).strict(); -export const FacultyCountOrderByAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FacultyCountOrderByAggregateInput_schema) as unknown as z.ZodType; -export const FacultyCountOrderByAggregateInputObjectZodSchema = z.lazy(__makeSchema_FacultyCountOrderByAggregateInput_schema); - - -// File: FacultyAvgOrderByAggregateInput.schema.ts -const __makeSchema_FacultyAvgOrderByAggregateInput_schema = () => z.object({ - code: SortOrderSchema.optional() -}).strict(); -export const FacultyAvgOrderByAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FacultyAvgOrderByAggregateInput_schema) as unknown as z.ZodType; -export const FacultyAvgOrderByAggregateInputObjectZodSchema = z.lazy(__makeSchema_FacultyAvgOrderByAggregateInput_schema); - - -// File: FacultyMaxOrderByAggregateInput.schema.ts -const __makeSchema_FacultyMaxOrderByAggregateInput_schema = () => z.object({ - id: SortOrderSchema.optional(), - nameNo: SortOrderSchema.optional(), - nameEn: SortOrderSchema.optional(), - code: SortOrderSchema.optional() -}).strict(); -export const FacultyMaxOrderByAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FacultyMaxOrderByAggregateInput_schema) as unknown as z.ZodType; -export const FacultyMaxOrderByAggregateInputObjectZodSchema = z.lazy(__makeSchema_FacultyMaxOrderByAggregateInput_schema); - - -// File: FacultyMinOrderByAggregateInput.schema.ts -const __makeSchema_FacultyMinOrderByAggregateInput_schema = () => z.object({ - id: SortOrderSchema.optional(), - nameNo: SortOrderSchema.optional(), - nameEn: SortOrderSchema.optional(), - code: SortOrderSchema.optional() -}).strict(); -export const FacultyMinOrderByAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FacultyMinOrderByAggregateInput_schema) as unknown as z.ZodType; -export const FacultyMinOrderByAggregateInputObjectZodSchema = z.lazy(__makeSchema_FacultyMinOrderByAggregateInput_schema); - - -// File: FacultySumOrderByAggregateInput.schema.ts -const __makeSchema_FacultySumOrderByAggregateInput_schema = () => z.object({ - code: SortOrderSchema.optional() -}).strict(); -export const FacultySumOrderByAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FacultySumOrderByAggregateInput_schema) as unknown as z.ZodType; -export const FacultySumOrderByAggregateInputObjectZodSchema = z.lazy(__makeSchema_FacultySumOrderByAggregateInput_schema); - - -// File: FacultyScalarRelationFilter.schema.ts -const __makeSchema_FacultyScalarRelationFilter_schema = () => z.object({ - get is(){ return FacultyWhereInputObjectSchema.optional(); }, - get isNot(){ return FacultyWhereInputObjectSchema.optional(); } -}).strict(); -export const FacultyScalarRelationFilterObjectSchema: z.ZodType = z.lazy(__makeSchema_FacultyScalarRelationFilter_schema) as unknown as z.ZodType; -export const FacultyScalarRelationFilterObjectZodSchema = z.lazy(__makeSchema_FacultyScalarRelationFilter_schema); - - -// File: DepartmentCountOrderByAggregateInput.schema.ts -const __makeSchema_DepartmentCountOrderByAggregateInput_schema = () => z.object({ - id: SortOrderSchema.optional(), - nameNo: SortOrderSchema.optional(), - nameEn: SortOrderSchema.optional(), - code: SortOrderSchema.optional(), - facultyId: SortOrderSchema.optional() -}).strict(); -export const DepartmentCountOrderByAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_DepartmentCountOrderByAggregateInput_schema) as unknown as z.ZodType; -export const DepartmentCountOrderByAggregateInputObjectZodSchema = z.lazy(__makeSchema_DepartmentCountOrderByAggregateInput_schema); - - -// File: DepartmentAvgOrderByAggregateInput.schema.ts -const __makeSchema_DepartmentAvgOrderByAggregateInput_schema = () => z.object({ - code: SortOrderSchema.optional() -}).strict(); -export const DepartmentAvgOrderByAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_DepartmentAvgOrderByAggregateInput_schema) as unknown as z.ZodType; -export const DepartmentAvgOrderByAggregateInputObjectZodSchema = z.lazy(__makeSchema_DepartmentAvgOrderByAggregateInput_schema); - - -// File: DepartmentMaxOrderByAggregateInput.schema.ts -const __makeSchema_DepartmentMaxOrderByAggregateInput_schema = () => z.object({ - id: SortOrderSchema.optional(), - nameNo: SortOrderSchema.optional(), - nameEn: SortOrderSchema.optional(), - code: SortOrderSchema.optional(), - facultyId: SortOrderSchema.optional() -}).strict(); -export const DepartmentMaxOrderByAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_DepartmentMaxOrderByAggregateInput_schema) as unknown as z.ZodType; -export const DepartmentMaxOrderByAggregateInputObjectZodSchema = z.lazy(__makeSchema_DepartmentMaxOrderByAggregateInput_schema); - - -// File: DepartmentMinOrderByAggregateInput.schema.ts -const __makeSchema_DepartmentMinOrderByAggregateInput_schema = () => z.object({ - id: SortOrderSchema.optional(), - nameNo: SortOrderSchema.optional(), - nameEn: SortOrderSchema.optional(), - code: SortOrderSchema.optional(), - facultyId: SortOrderSchema.optional() -}).strict(); -export const DepartmentMinOrderByAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_DepartmentMinOrderByAggregateInput_schema) as unknown as z.ZodType; -export const DepartmentMinOrderByAggregateInputObjectZodSchema = z.lazy(__makeSchema_DepartmentMinOrderByAggregateInput_schema); - - -// File: DepartmentSumOrderByAggregateInput.schema.ts -const __makeSchema_DepartmentSumOrderByAggregateInput_schema = () => z.object({ - code: SortOrderSchema.optional() -}).strict(); -export const DepartmentSumOrderByAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_DepartmentSumOrderByAggregateInput_schema) as unknown as z.ZodType; -export const DepartmentSumOrderByAggregateInputObjectZodSchema = z.lazy(__makeSchema_DepartmentSumOrderByAggregateInput_schema); - - -// File: CourseCreatetaughtSemestersInput.schema.ts -const __makeSchema_CourseCreatetaughtSemestersInput_schema = () => z.object({ - set: SemesterSchema.array() -}).strict(); -export const CourseCreatetaughtSemestersInputObjectSchema: z.ZodType = z.lazy(__makeSchema_CourseCreatetaughtSemestersInput_schema) as unknown as z.ZodType; -export const CourseCreatetaughtSemestersInputObjectZodSchema = z.lazy(__makeSchema_CourseCreatetaughtSemestersInput_schema); - - -// File: CourseCreateteachingLanguagesInput.schema.ts -const __makeSchema_CourseCreateteachingLanguagesInput_schema = () => z.object({ - set: TeachingLanguageSchema.array() -}).strict(); -export const CourseCreateteachingLanguagesInputObjectSchema: z.ZodType = z.lazy(__makeSchema_CourseCreateteachingLanguagesInput_schema) as unknown as z.ZodType; -export const CourseCreateteachingLanguagesInputObjectZodSchema = z.lazy(__makeSchema_CourseCreateteachingLanguagesInput_schema); - - -// File: CourseCreatecampusesInput.schema.ts -const __makeSchema_CourseCreatecampusesInput_schema = () => z.object({ - set: CampusSchema.array() -}).strict(); -export const CourseCreatecampusesInputObjectSchema: z.ZodType = z.lazy(__makeSchema_CourseCreatecampusesInput_schema) as unknown as z.ZodType; -export const CourseCreatecampusesInputObjectZodSchema = z.lazy(__makeSchema_CourseCreatecampusesInput_schema); - - -// File: GradeCreateNestedManyWithoutCourseInput.schema.ts -const __makeSchema_GradeCreateNestedManyWithoutCourseInput_schema = () => z.object({ - create: z.union([GradeCreateWithoutCourseInputObjectSchema, GradeCreateWithoutCourseInputObjectSchema.array(), GradeUncheckedCreateWithoutCourseInputObjectSchema, GradeUncheckedCreateWithoutCourseInputObjectSchema.array()]).optional(), - connectOrCreate: z.union([GradeCreateOrConnectWithoutCourseInputObjectSchema, GradeCreateOrConnectWithoutCourseInputObjectSchema.array()]).optional(), - get createMany(){ return GradeCreateManyCourseInputEnvelopeObjectSchema.optional(); }, - connect: z.union([GradeWhereUniqueInputObjectSchema, GradeWhereUniqueInputObjectSchema.array()]).optional() -}).strict(); -export const GradeCreateNestedManyWithoutCourseInputObjectSchema: z.ZodType = z.lazy(__makeSchema_GradeCreateNestedManyWithoutCourseInput_schema) as unknown as z.ZodType; -export const GradeCreateNestedManyWithoutCourseInputObjectZodSchema = z.lazy(__makeSchema_GradeCreateNestedManyWithoutCourseInput_schema); - - -// File: FacultyCreateNestedOneWithoutCoursesInput.schema.ts -const __makeSchema_FacultyCreateNestedOneWithoutCoursesInput_schema = () => z.object({ - create: z.union([FacultyCreateWithoutCoursesInputObjectSchema, FacultyUncheckedCreateWithoutCoursesInputObjectSchema]).optional(), - get connectOrCreate(){ return FacultyCreateOrConnectWithoutCoursesInputObjectSchema.optional(); }, - get connect(){ return FacultyWhereUniqueInputObjectSchema.optional(); } -}).strict(); -export const FacultyCreateNestedOneWithoutCoursesInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FacultyCreateNestedOneWithoutCoursesInput_schema) as unknown as z.ZodType; -export const FacultyCreateNestedOneWithoutCoursesInputObjectZodSchema = z.lazy(__makeSchema_FacultyCreateNestedOneWithoutCoursesInput_schema); - - -// File: DepartmentCreateNestedOneWithoutCoursesInput.schema.ts -const __makeSchema_DepartmentCreateNestedOneWithoutCoursesInput_schema = () => z.object({ - create: z.union([DepartmentCreateWithoutCoursesInputObjectSchema, DepartmentUncheckedCreateWithoutCoursesInputObjectSchema]).optional(), - get connectOrCreate(){ return DepartmentCreateOrConnectWithoutCoursesInputObjectSchema.optional(); }, - get connect(){ return DepartmentWhereUniqueInputObjectSchema.optional(); } -}).strict(); -export const DepartmentCreateNestedOneWithoutCoursesInputObjectSchema: z.ZodType = z.lazy(__makeSchema_DepartmentCreateNestedOneWithoutCoursesInput_schema) as unknown as z.ZodType; -export const DepartmentCreateNestedOneWithoutCoursesInputObjectZodSchema = z.lazy(__makeSchema_DepartmentCreateNestedOneWithoutCoursesInput_schema); - - -// File: GradeUncheckedCreateNestedManyWithoutCourseInput.schema.ts -const __makeSchema_GradeUncheckedCreateNestedManyWithoutCourseInput_schema = () => z.object({ - create: z.union([GradeCreateWithoutCourseInputObjectSchema, GradeCreateWithoutCourseInputObjectSchema.array(), GradeUncheckedCreateWithoutCourseInputObjectSchema, GradeUncheckedCreateWithoutCourseInputObjectSchema.array()]).optional(), - connectOrCreate: z.union([GradeCreateOrConnectWithoutCourseInputObjectSchema, GradeCreateOrConnectWithoutCourseInputObjectSchema.array()]).optional(), - get createMany(){ return GradeCreateManyCourseInputEnvelopeObjectSchema.optional(); }, - connect: z.union([GradeWhereUniqueInputObjectSchema, GradeWhereUniqueInputObjectSchema.array()]).optional() -}).strict(); -export const GradeUncheckedCreateNestedManyWithoutCourseInputObjectSchema: z.ZodType = z.lazy(__makeSchema_GradeUncheckedCreateNestedManyWithoutCourseInput_schema) as unknown as z.ZodType; -export const GradeUncheckedCreateNestedManyWithoutCourseInputObjectZodSchema = z.lazy(__makeSchema_GradeUncheckedCreateNestedManyWithoutCourseInput_schema); - - -// File: StringFieldUpdateOperationsInput.schema.ts -const __makeSchema_StringFieldUpdateOperationsInput_schema = () => z.object({ - set: z.string().optional() -}).strict(); -export const StringFieldUpdateOperationsInputObjectSchema: z.ZodType = z.lazy(__makeSchema_StringFieldUpdateOperationsInput_schema) as unknown as z.ZodType; -export const StringFieldUpdateOperationsInputObjectZodSchema = z.lazy(__makeSchema_StringFieldUpdateOperationsInput_schema); - - -// File: NullableStringFieldUpdateOperationsInput.schema.ts -const __makeSchema_NullableStringFieldUpdateOperationsInput_schema = () => z.object({ - set: z.string().optional() -}).strict(); -export const NullableStringFieldUpdateOperationsInputObjectSchema: z.ZodType = z.lazy(__makeSchema_NullableStringFieldUpdateOperationsInput_schema) as unknown as z.ZodType; -export const NullableStringFieldUpdateOperationsInputObjectZodSchema = z.lazy(__makeSchema_NullableStringFieldUpdateOperationsInput_schema); - - -// File: NullableFloatFieldUpdateOperationsInput.schema.ts -const __makeSchema_NullableFloatFieldUpdateOperationsInput_schema = () => z.object({ - set: z.number().optional(), - increment: z.number().optional(), - decrement: z.number().optional(), - multiply: z.number().optional(), - divide: z.number().optional() -}).strict(); -export const NullableFloatFieldUpdateOperationsInputObjectSchema: z.ZodType = z.lazy(__makeSchema_NullableFloatFieldUpdateOperationsInput_schema) as unknown as z.ZodType; -export const NullableFloatFieldUpdateOperationsInputObjectZodSchema = z.lazy(__makeSchema_NullableFloatFieldUpdateOperationsInput_schema); - - -// File: EnumStudyLevelFieldUpdateOperationsInput.schema.ts -const __makeSchema_EnumStudyLevelFieldUpdateOperationsInput_schema = () => z.object({ - set: StudyLevelSchema.optional() -}).strict(); -export const EnumStudyLevelFieldUpdateOperationsInputObjectSchema: z.ZodType = z.lazy(__makeSchema_EnumStudyLevelFieldUpdateOperationsInput_schema) as unknown as z.ZodType; -export const EnumStudyLevelFieldUpdateOperationsInputObjectZodSchema = z.lazy(__makeSchema_EnumStudyLevelFieldUpdateOperationsInput_schema); - - -// File: EnumGradeTypeFieldUpdateOperationsInput.schema.ts -const __makeSchema_EnumGradeTypeFieldUpdateOperationsInput_schema = () => z.object({ - set: GradeTypeSchema.optional() -}).strict(); -export const EnumGradeTypeFieldUpdateOperationsInputObjectSchema: z.ZodType = z.lazy(__makeSchema_EnumGradeTypeFieldUpdateOperationsInput_schema) as unknown as z.ZodType; -export const EnumGradeTypeFieldUpdateOperationsInputObjectZodSchema = z.lazy(__makeSchema_EnumGradeTypeFieldUpdateOperationsInput_schema); - - -// File: IntFieldUpdateOperationsInput.schema.ts -const __makeSchema_IntFieldUpdateOperationsInput_schema = () => z.object({ - set: z.number().int().optional(), - increment: z.number().int().optional(), - decrement: z.number().int().optional(), - multiply: z.number().int().optional(), - divide: z.number().int().optional() -}).strict(); -export const IntFieldUpdateOperationsInputObjectSchema: z.ZodType = z.lazy(__makeSchema_IntFieldUpdateOperationsInput_schema) as unknown as z.ZodType; -export const IntFieldUpdateOperationsInputObjectZodSchema = z.lazy(__makeSchema_IntFieldUpdateOperationsInput_schema); - - -// File: NullableIntFieldUpdateOperationsInput.schema.ts -const __makeSchema_NullableIntFieldUpdateOperationsInput_schema = () => z.object({ - set: z.number().int().optional(), - increment: z.number().int().optional(), - decrement: z.number().int().optional(), - multiply: z.number().int().optional(), - divide: z.number().int().optional() -}).strict(); -export const NullableIntFieldUpdateOperationsInputObjectSchema: z.ZodType = z.lazy(__makeSchema_NullableIntFieldUpdateOperationsInput_schema) as unknown as z.ZodType; -export const NullableIntFieldUpdateOperationsInputObjectZodSchema = z.lazy(__makeSchema_NullableIntFieldUpdateOperationsInput_schema); - - -// File: FloatFieldUpdateOperationsInput.schema.ts -const __makeSchema_FloatFieldUpdateOperationsInput_schema = () => z.object({ - set: z.number().optional(), - increment: z.number().optional(), - decrement: z.number().optional(), - multiply: z.number().optional(), - divide: z.number().optional() -}).strict(); -export const FloatFieldUpdateOperationsInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FloatFieldUpdateOperationsInput_schema) as unknown as z.ZodType; -export const FloatFieldUpdateOperationsInputObjectZodSchema = z.lazy(__makeSchema_FloatFieldUpdateOperationsInput_schema); - - -// File: DateTimeFieldUpdateOperationsInput.schema.ts -const __makeSchema_DateTimeFieldUpdateOperationsInput_schema = () => z.object({ - set: z.coerce.date().optional() -}).strict(); -export const DateTimeFieldUpdateOperationsInputObjectSchema: z.ZodType = z.lazy(__makeSchema_DateTimeFieldUpdateOperationsInput_schema) as unknown as z.ZodType; -export const DateTimeFieldUpdateOperationsInputObjectZodSchema = z.lazy(__makeSchema_DateTimeFieldUpdateOperationsInput_schema); - - -// File: CourseUpdatetaughtSemestersInput.schema.ts -const __makeSchema_CourseUpdatetaughtSemestersInput_schema = () => z.object({ - set: SemesterSchema.array().optional(), - push: z.union([SemesterSchema, SemesterSchema.array()]).optional() -}).strict(); -export const CourseUpdatetaughtSemestersInputObjectSchema: z.ZodType = z.lazy(__makeSchema_CourseUpdatetaughtSemestersInput_schema) as unknown as z.ZodType; -export const CourseUpdatetaughtSemestersInputObjectZodSchema = z.lazy(__makeSchema_CourseUpdatetaughtSemestersInput_schema); - - -// File: CourseUpdateteachingLanguagesInput.schema.ts -const __makeSchema_CourseUpdateteachingLanguagesInput_schema = () => z.object({ - set: TeachingLanguageSchema.array().optional(), - push: z.union([TeachingLanguageSchema, TeachingLanguageSchema.array()]).optional() -}).strict(); -export const CourseUpdateteachingLanguagesInputObjectSchema: z.ZodType = z.lazy(__makeSchema_CourseUpdateteachingLanguagesInput_schema) as unknown as z.ZodType; -export const CourseUpdateteachingLanguagesInputObjectZodSchema = z.lazy(__makeSchema_CourseUpdateteachingLanguagesInput_schema); - - -// File: CourseUpdatecampusesInput.schema.ts -const __makeSchema_CourseUpdatecampusesInput_schema = () => z.object({ - set: CampusSchema.array().optional(), - push: z.union([CampusSchema, CampusSchema.array()]).optional() -}).strict(); -export const CourseUpdatecampusesInputObjectSchema: z.ZodType = z.lazy(__makeSchema_CourseUpdatecampusesInput_schema) as unknown as z.ZodType; -export const CourseUpdatecampusesInputObjectZodSchema = z.lazy(__makeSchema_CourseUpdatecampusesInput_schema); - - -// File: GradeUpdateManyWithoutCourseNestedInput.schema.ts -const __makeSchema_GradeUpdateManyWithoutCourseNestedInput_schema = () => z.object({ - create: z.union([GradeCreateWithoutCourseInputObjectSchema, GradeCreateWithoutCourseInputObjectSchema.array(), GradeUncheckedCreateWithoutCourseInputObjectSchema, GradeUncheckedCreateWithoutCourseInputObjectSchema.array()]).optional(), - connectOrCreate: z.union([GradeCreateOrConnectWithoutCourseInputObjectSchema, GradeCreateOrConnectWithoutCourseInputObjectSchema.array()]).optional(), - upsert: z.union([GradeUpsertWithWhereUniqueWithoutCourseInputObjectSchema, GradeUpsertWithWhereUniqueWithoutCourseInputObjectSchema.array()]).optional(), - get createMany(){ return GradeCreateManyCourseInputEnvelopeObjectSchema.optional(); }, - set: z.union([GradeWhereUniqueInputObjectSchema, GradeWhereUniqueInputObjectSchema.array()]).optional(), - disconnect: z.union([GradeWhereUniqueInputObjectSchema, GradeWhereUniqueInputObjectSchema.array()]).optional(), - delete: z.union([GradeWhereUniqueInputObjectSchema, GradeWhereUniqueInputObjectSchema.array()]).optional(), - connect: z.union([GradeWhereUniqueInputObjectSchema, GradeWhereUniqueInputObjectSchema.array()]).optional(), - update: z.union([GradeUpdateWithWhereUniqueWithoutCourseInputObjectSchema, GradeUpdateWithWhereUniqueWithoutCourseInputObjectSchema.array()]).optional(), - updateMany: z.union([GradeUpdateManyWithWhereWithoutCourseInputObjectSchema, GradeUpdateManyWithWhereWithoutCourseInputObjectSchema.array()]).optional(), - deleteMany: z.union([GradeScalarWhereInputObjectSchema, GradeScalarWhereInputObjectSchema.array()]).optional() -}).strict(); -export const GradeUpdateManyWithoutCourseNestedInputObjectSchema: z.ZodType = z.lazy(__makeSchema_GradeUpdateManyWithoutCourseNestedInput_schema) as unknown as z.ZodType; -export const GradeUpdateManyWithoutCourseNestedInputObjectZodSchema = z.lazy(__makeSchema_GradeUpdateManyWithoutCourseNestedInput_schema); - - -// File: FacultyUpdateOneWithoutCoursesNestedInput.schema.ts -const __makeSchema_FacultyUpdateOneWithoutCoursesNestedInput_schema = () => z.object({ - create: z.union([FacultyCreateWithoutCoursesInputObjectSchema, FacultyUncheckedCreateWithoutCoursesInputObjectSchema]).optional(), - get connectOrCreate(){ return FacultyCreateOrConnectWithoutCoursesInputObjectSchema.optional(); }, - get upsert(){ return FacultyUpsertWithoutCoursesInputObjectSchema.optional(); }, - disconnect: z.union([z.boolean(), FacultyWhereInputObjectSchema]).optional(), - delete: z.union([z.boolean(), FacultyWhereInputObjectSchema]).optional(), - get connect(){ return FacultyWhereUniqueInputObjectSchema.optional(); }, - update: z.union([FacultyUpdateToOneWithWhereWithoutCoursesInputObjectSchema, FacultyUpdateWithoutCoursesInputObjectSchema, FacultyUncheckedUpdateWithoutCoursesInputObjectSchema]).optional() -}).strict(); -export const FacultyUpdateOneWithoutCoursesNestedInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FacultyUpdateOneWithoutCoursesNestedInput_schema) as unknown as z.ZodType; -export const FacultyUpdateOneWithoutCoursesNestedInputObjectZodSchema = z.lazy(__makeSchema_FacultyUpdateOneWithoutCoursesNestedInput_schema); - - -// File: DepartmentUpdateOneWithoutCoursesNestedInput.schema.ts -const __makeSchema_DepartmentUpdateOneWithoutCoursesNestedInput_schema = () => z.object({ - create: z.union([DepartmentCreateWithoutCoursesInputObjectSchema, DepartmentUncheckedCreateWithoutCoursesInputObjectSchema]).optional(), - get connectOrCreate(){ return DepartmentCreateOrConnectWithoutCoursesInputObjectSchema.optional(); }, - get upsert(){ return DepartmentUpsertWithoutCoursesInputObjectSchema.optional(); }, - disconnect: z.union([z.boolean(), DepartmentWhereInputObjectSchema]).optional(), - delete: z.union([z.boolean(), DepartmentWhereInputObjectSchema]).optional(), - get connect(){ return DepartmentWhereUniqueInputObjectSchema.optional(); }, - update: z.union([DepartmentUpdateToOneWithWhereWithoutCoursesInputObjectSchema, DepartmentUpdateWithoutCoursesInputObjectSchema, DepartmentUncheckedUpdateWithoutCoursesInputObjectSchema]).optional() -}).strict(); -export const DepartmentUpdateOneWithoutCoursesNestedInputObjectSchema: z.ZodType = z.lazy(__makeSchema_DepartmentUpdateOneWithoutCoursesNestedInput_schema) as unknown as z.ZodType; -export const DepartmentUpdateOneWithoutCoursesNestedInputObjectZodSchema = z.lazy(__makeSchema_DepartmentUpdateOneWithoutCoursesNestedInput_schema); - - -// File: GradeUncheckedUpdateManyWithoutCourseNestedInput.schema.ts -const __makeSchema_GradeUncheckedUpdateManyWithoutCourseNestedInput_schema = () => z.object({ - create: z.union([GradeCreateWithoutCourseInputObjectSchema, GradeCreateWithoutCourseInputObjectSchema.array(), GradeUncheckedCreateWithoutCourseInputObjectSchema, GradeUncheckedCreateWithoutCourseInputObjectSchema.array()]).optional(), - connectOrCreate: z.union([GradeCreateOrConnectWithoutCourseInputObjectSchema, GradeCreateOrConnectWithoutCourseInputObjectSchema.array()]).optional(), - upsert: z.union([GradeUpsertWithWhereUniqueWithoutCourseInputObjectSchema, GradeUpsertWithWhereUniqueWithoutCourseInputObjectSchema.array()]).optional(), - get createMany(){ return GradeCreateManyCourseInputEnvelopeObjectSchema.optional(); }, - set: z.union([GradeWhereUniqueInputObjectSchema, GradeWhereUniqueInputObjectSchema.array()]).optional(), - disconnect: z.union([GradeWhereUniqueInputObjectSchema, GradeWhereUniqueInputObjectSchema.array()]).optional(), - delete: z.union([GradeWhereUniqueInputObjectSchema, GradeWhereUniqueInputObjectSchema.array()]).optional(), - connect: z.union([GradeWhereUniqueInputObjectSchema, GradeWhereUniqueInputObjectSchema.array()]).optional(), - update: z.union([GradeUpdateWithWhereUniqueWithoutCourseInputObjectSchema, GradeUpdateWithWhereUniqueWithoutCourseInputObjectSchema.array()]).optional(), - updateMany: z.union([GradeUpdateManyWithWhereWithoutCourseInputObjectSchema, GradeUpdateManyWithWhereWithoutCourseInputObjectSchema.array()]).optional(), - deleteMany: z.union([GradeScalarWhereInputObjectSchema, GradeScalarWhereInputObjectSchema.array()]).optional() -}).strict(); -export const GradeUncheckedUpdateManyWithoutCourseNestedInputObjectSchema: z.ZodType = z.lazy(__makeSchema_GradeUncheckedUpdateManyWithoutCourseNestedInput_schema) as unknown as z.ZodType; -export const GradeUncheckedUpdateManyWithoutCourseNestedInputObjectZodSchema = z.lazy(__makeSchema_GradeUncheckedUpdateManyWithoutCourseNestedInput_schema); - - -// File: CourseCreateNestedOneWithoutGradesInput.schema.ts -const __makeSchema_CourseCreateNestedOneWithoutGradesInput_schema = () => z.object({ - create: z.union([CourseCreateWithoutGradesInputObjectSchema, CourseUncheckedCreateWithoutGradesInputObjectSchema]).optional(), - get connectOrCreate(){ return CourseCreateOrConnectWithoutGradesInputObjectSchema.optional(); }, - get connect(){ return CourseWhereUniqueInputObjectSchema.optional(); } -}).strict(); -export const CourseCreateNestedOneWithoutGradesInputObjectSchema: z.ZodType = z.lazy(__makeSchema_CourseCreateNestedOneWithoutGradesInput_schema) as unknown as z.ZodType; -export const CourseCreateNestedOneWithoutGradesInputObjectZodSchema = z.lazy(__makeSchema_CourseCreateNestedOneWithoutGradesInput_schema); - - -// File: EnumSemesterFieldUpdateOperationsInput.schema.ts -const __makeSchema_EnumSemesterFieldUpdateOperationsInput_schema = () => z.object({ - set: SemesterSchema.optional() -}).strict(); -export const EnumSemesterFieldUpdateOperationsInputObjectSchema: z.ZodType = z.lazy(__makeSchema_EnumSemesterFieldUpdateOperationsInput_schema) as unknown as z.ZodType; -export const EnumSemesterFieldUpdateOperationsInputObjectZodSchema = z.lazy(__makeSchema_EnumSemesterFieldUpdateOperationsInput_schema); - - -// File: CourseUpdateOneRequiredWithoutGradesNestedInput.schema.ts -const __makeSchema_CourseUpdateOneRequiredWithoutGradesNestedInput_schema = () => z.object({ - create: z.union([CourseCreateWithoutGradesInputObjectSchema, CourseUncheckedCreateWithoutGradesInputObjectSchema]).optional(), - get connectOrCreate(){ return CourseCreateOrConnectWithoutGradesInputObjectSchema.optional(); }, - get upsert(){ return CourseUpsertWithoutGradesInputObjectSchema.optional(); }, - get connect(){ return CourseWhereUniqueInputObjectSchema.optional(); }, - update: z.union([CourseUpdateToOneWithWhereWithoutGradesInputObjectSchema, CourseUpdateWithoutGradesInputObjectSchema, CourseUncheckedUpdateWithoutGradesInputObjectSchema]).optional() -}).strict(); -export const CourseUpdateOneRequiredWithoutGradesNestedInputObjectSchema: z.ZodType = z.lazy(__makeSchema_CourseUpdateOneRequiredWithoutGradesNestedInput_schema) as unknown as z.ZodType; -export const CourseUpdateOneRequiredWithoutGradesNestedInputObjectZodSchema = z.lazy(__makeSchema_CourseUpdateOneRequiredWithoutGradesNestedInput_schema); - - -// File: CourseCreateNestedManyWithoutFacultyInput.schema.ts -const __makeSchema_CourseCreateNestedManyWithoutFacultyInput_schema = () => z.object({ - create: z.union([CourseCreateWithoutFacultyInputObjectSchema, CourseCreateWithoutFacultyInputObjectSchema.array(), CourseUncheckedCreateWithoutFacultyInputObjectSchema, CourseUncheckedCreateWithoutFacultyInputObjectSchema.array()]).optional(), - connectOrCreate: z.union([CourseCreateOrConnectWithoutFacultyInputObjectSchema, CourseCreateOrConnectWithoutFacultyInputObjectSchema.array()]).optional(), - get createMany(){ return CourseCreateManyFacultyInputEnvelopeObjectSchema.optional(); }, - connect: z.union([CourseWhereUniqueInputObjectSchema, CourseWhereUniqueInputObjectSchema.array()]).optional() -}).strict(); -export const CourseCreateNestedManyWithoutFacultyInputObjectSchema: z.ZodType = z.lazy(__makeSchema_CourseCreateNestedManyWithoutFacultyInput_schema) as unknown as z.ZodType; -export const CourseCreateNestedManyWithoutFacultyInputObjectZodSchema = z.lazy(__makeSchema_CourseCreateNestedManyWithoutFacultyInput_schema); - - -// File: DepartmentCreateNestedManyWithoutFacultyInput.schema.ts -const __makeSchema_DepartmentCreateNestedManyWithoutFacultyInput_schema = () => z.object({ - create: z.union([DepartmentCreateWithoutFacultyInputObjectSchema, DepartmentCreateWithoutFacultyInputObjectSchema.array(), DepartmentUncheckedCreateWithoutFacultyInputObjectSchema, DepartmentUncheckedCreateWithoutFacultyInputObjectSchema.array()]).optional(), - connectOrCreate: z.union([DepartmentCreateOrConnectWithoutFacultyInputObjectSchema, DepartmentCreateOrConnectWithoutFacultyInputObjectSchema.array()]).optional(), - get createMany(){ return DepartmentCreateManyFacultyInputEnvelopeObjectSchema.optional(); }, - connect: z.union([DepartmentWhereUniqueInputObjectSchema, DepartmentWhereUniqueInputObjectSchema.array()]).optional() -}).strict(); -export const DepartmentCreateNestedManyWithoutFacultyInputObjectSchema: z.ZodType = z.lazy(__makeSchema_DepartmentCreateNestedManyWithoutFacultyInput_schema) as unknown as z.ZodType; -export const DepartmentCreateNestedManyWithoutFacultyInputObjectZodSchema = z.lazy(__makeSchema_DepartmentCreateNestedManyWithoutFacultyInput_schema); - - -// File: CourseUncheckedCreateNestedManyWithoutFacultyInput.schema.ts -const __makeSchema_CourseUncheckedCreateNestedManyWithoutFacultyInput_schema = () => z.object({ - create: z.union([CourseCreateWithoutFacultyInputObjectSchema, CourseCreateWithoutFacultyInputObjectSchema.array(), CourseUncheckedCreateWithoutFacultyInputObjectSchema, CourseUncheckedCreateWithoutFacultyInputObjectSchema.array()]).optional(), - connectOrCreate: z.union([CourseCreateOrConnectWithoutFacultyInputObjectSchema, CourseCreateOrConnectWithoutFacultyInputObjectSchema.array()]).optional(), - get createMany(){ return CourseCreateManyFacultyInputEnvelopeObjectSchema.optional(); }, - connect: z.union([CourseWhereUniqueInputObjectSchema, CourseWhereUniqueInputObjectSchema.array()]).optional() -}).strict(); -export const CourseUncheckedCreateNestedManyWithoutFacultyInputObjectSchema: z.ZodType = z.lazy(__makeSchema_CourseUncheckedCreateNestedManyWithoutFacultyInput_schema) as unknown as z.ZodType; -export const CourseUncheckedCreateNestedManyWithoutFacultyInputObjectZodSchema = z.lazy(__makeSchema_CourseUncheckedCreateNestedManyWithoutFacultyInput_schema); - - -// File: DepartmentUncheckedCreateNestedManyWithoutFacultyInput.schema.ts -const __makeSchema_DepartmentUncheckedCreateNestedManyWithoutFacultyInput_schema = () => z.object({ - create: z.union([DepartmentCreateWithoutFacultyInputObjectSchema, DepartmentCreateWithoutFacultyInputObjectSchema.array(), DepartmentUncheckedCreateWithoutFacultyInputObjectSchema, DepartmentUncheckedCreateWithoutFacultyInputObjectSchema.array()]).optional(), - connectOrCreate: z.union([DepartmentCreateOrConnectWithoutFacultyInputObjectSchema, DepartmentCreateOrConnectWithoutFacultyInputObjectSchema.array()]).optional(), - get createMany(){ return DepartmentCreateManyFacultyInputEnvelopeObjectSchema.optional(); }, - connect: z.union([DepartmentWhereUniqueInputObjectSchema, DepartmentWhereUniqueInputObjectSchema.array()]).optional() -}).strict(); -export const DepartmentUncheckedCreateNestedManyWithoutFacultyInputObjectSchema: z.ZodType = z.lazy(__makeSchema_DepartmentUncheckedCreateNestedManyWithoutFacultyInput_schema) as unknown as z.ZodType; -export const DepartmentUncheckedCreateNestedManyWithoutFacultyInputObjectZodSchema = z.lazy(__makeSchema_DepartmentUncheckedCreateNestedManyWithoutFacultyInput_schema); - - -// File: CourseUpdateManyWithoutFacultyNestedInput.schema.ts -const __makeSchema_CourseUpdateManyWithoutFacultyNestedInput_schema = () => z.object({ - create: z.union([CourseCreateWithoutFacultyInputObjectSchema, CourseCreateWithoutFacultyInputObjectSchema.array(), CourseUncheckedCreateWithoutFacultyInputObjectSchema, CourseUncheckedCreateWithoutFacultyInputObjectSchema.array()]).optional(), - connectOrCreate: z.union([CourseCreateOrConnectWithoutFacultyInputObjectSchema, CourseCreateOrConnectWithoutFacultyInputObjectSchema.array()]).optional(), - upsert: z.union([CourseUpsertWithWhereUniqueWithoutFacultyInputObjectSchema, CourseUpsertWithWhereUniqueWithoutFacultyInputObjectSchema.array()]).optional(), - get createMany(){ return CourseCreateManyFacultyInputEnvelopeObjectSchema.optional(); }, - set: z.union([CourseWhereUniqueInputObjectSchema, CourseWhereUniqueInputObjectSchema.array()]).optional(), - disconnect: z.union([CourseWhereUniqueInputObjectSchema, CourseWhereUniqueInputObjectSchema.array()]).optional(), - delete: z.union([CourseWhereUniqueInputObjectSchema, CourseWhereUniqueInputObjectSchema.array()]).optional(), - connect: z.union([CourseWhereUniqueInputObjectSchema, CourseWhereUniqueInputObjectSchema.array()]).optional(), - update: z.union([CourseUpdateWithWhereUniqueWithoutFacultyInputObjectSchema, CourseUpdateWithWhereUniqueWithoutFacultyInputObjectSchema.array()]).optional(), - updateMany: z.union([CourseUpdateManyWithWhereWithoutFacultyInputObjectSchema, CourseUpdateManyWithWhereWithoutFacultyInputObjectSchema.array()]).optional(), - deleteMany: z.union([CourseScalarWhereInputObjectSchema, CourseScalarWhereInputObjectSchema.array()]).optional() -}).strict(); -export const CourseUpdateManyWithoutFacultyNestedInputObjectSchema: z.ZodType = z.lazy(__makeSchema_CourseUpdateManyWithoutFacultyNestedInput_schema) as unknown as z.ZodType; -export const CourseUpdateManyWithoutFacultyNestedInputObjectZodSchema = z.lazy(__makeSchema_CourseUpdateManyWithoutFacultyNestedInput_schema); - - -// File: DepartmentUpdateManyWithoutFacultyNestedInput.schema.ts -const __makeSchema_DepartmentUpdateManyWithoutFacultyNestedInput_schema = () => z.object({ - create: z.union([DepartmentCreateWithoutFacultyInputObjectSchema, DepartmentCreateWithoutFacultyInputObjectSchema.array(), DepartmentUncheckedCreateWithoutFacultyInputObjectSchema, DepartmentUncheckedCreateWithoutFacultyInputObjectSchema.array()]).optional(), - connectOrCreate: z.union([DepartmentCreateOrConnectWithoutFacultyInputObjectSchema, DepartmentCreateOrConnectWithoutFacultyInputObjectSchema.array()]).optional(), - upsert: z.union([DepartmentUpsertWithWhereUniqueWithoutFacultyInputObjectSchema, DepartmentUpsertWithWhereUniqueWithoutFacultyInputObjectSchema.array()]).optional(), - get createMany(){ return DepartmentCreateManyFacultyInputEnvelopeObjectSchema.optional(); }, - set: z.union([DepartmentWhereUniqueInputObjectSchema, DepartmentWhereUniqueInputObjectSchema.array()]).optional(), - disconnect: z.union([DepartmentWhereUniqueInputObjectSchema, DepartmentWhereUniqueInputObjectSchema.array()]).optional(), - delete: z.union([DepartmentWhereUniqueInputObjectSchema, DepartmentWhereUniqueInputObjectSchema.array()]).optional(), - connect: z.union([DepartmentWhereUniqueInputObjectSchema, DepartmentWhereUniqueInputObjectSchema.array()]).optional(), - update: z.union([DepartmentUpdateWithWhereUniqueWithoutFacultyInputObjectSchema, DepartmentUpdateWithWhereUniqueWithoutFacultyInputObjectSchema.array()]).optional(), - updateMany: z.union([DepartmentUpdateManyWithWhereWithoutFacultyInputObjectSchema, DepartmentUpdateManyWithWhereWithoutFacultyInputObjectSchema.array()]).optional(), - deleteMany: z.union([DepartmentScalarWhereInputObjectSchema, DepartmentScalarWhereInputObjectSchema.array()]).optional() -}).strict(); -export const DepartmentUpdateManyWithoutFacultyNestedInputObjectSchema: z.ZodType = z.lazy(__makeSchema_DepartmentUpdateManyWithoutFacultyNestedInput_schema) as unknown as z.ZodType; -export const DepartmentUpdateManyWithoutFacultyNestedInputObjectZodSchema = z.lazy(__makeSchema_DepartmentUpdateManyWithoutFacultyNestedInput_schema); - - -// File: CourseUncheckedUpdateManyWithoutFacultyNestedInput.schema.ts -const __makeSchema_CourseUncheckedUpdateManyWithoutFacultyNestedInput_schema = () => z.object({ - create: z.union([CourseCreateWithoutFacultyInputObjectSchema, CourseCreateWithoutFacultyInputObjectSchema.array(), CourseUncheckedCreateWithoutFacultyInputObjectSchema, CourseUncheckedCreateWithoutFacultyInputObjectSchema.array()]).optional(), - connectOrCreate: z.union([CourseCreateOrConnectWithoutFacultyInputObjectSchema, CourseCreateOrConnectWithoutFacultyInputObjectSchema.array()]).optional(), - upsert: z.union([CourseUpsertWithWhereUniqueWithoutFacultyInputObjectSchema, CourseUpsertWithWhereUniqueWithoutFacultyInputObjectSchema.array()]).optional(), - get createMany(){ return CourseCreateManyFacultyInputEnvelopeObjectSchema.optional(); }, - set: z.union([CourseWhereUniqueInputObjectSchema, CourseWhereUniqueInputObjectSchema.array()]).optional(), - disconnect: z.union([CourseWhereUniqueInputObjectSchema, CourseWhereUniqueInputObjectSchema.array()]).optional(), - delete: z.union([CourseWhereUniqueInputObjectSchema, CourseWhereUniqueInputObjectSchema.array()]).optional(), - connect: z.union([CourseWhereUniqueInputObjectSchema, CourseWhereUniqueInputObjectSchema.array()]).optional(), - update: z.union([CourseUpdateWithWhereUniqueWithoutFacultyInputObjectSchema, CourseUpdateWithWhereUniqueWithoutFacultyInputObjectSchema.array()]).optional(), - updateMany: z.union([CourseUpdateManyWithWhereWithoutFacultyInputObjectSchema, CourseUpdateManyWithWhereWithoutFacultyInputObjectSchema.array()]).optional(), - deleteMany: z.union([CourseScalarWhereInputObjectSchema, CourseScalarWhereInputObjectSchema.array()]).optional() -}).strict(); -export const CourseUncheckedUpdateManyWithoutFacultyNestedInputObjectSchema: z.ZodType = z.lazy(__makeSchema_CourseUncheckedUpdateManyWithoutFacultyNestedInput_schema) as unknown as z.ZodType; -export const CourseUncheckedUpdateManyWithoutFacultyNestedInputObjectZodSchema = z.lazy(__makeSchema_CourseUncheckedUpdateManyWithoutFacultyNestedInput_schema); - - -// File: DepartmentUncheckedUpdateManyWithoutFacultyNestedInput.schema.ts -const __makeSchema_DepartmentUncheckedUpdateManyWithoutFacultyNestedInput_schema = () => z.object({ - create: z.union([DepartmentCreateWithoutFacultyInputObjectSchema, DepartmentCreateWithoutFacultyInputObjectSchema.array(), DepartmentUncheckedCreateWithoutFacultyInputObjectSchema, DepartmentUncheckedCreateWithoutFacultyInputObjectSchema.array()]).optional(), - connectOrCreate: z.union([DepartmentCreateOrConnectWithoutFacultyInputObjectSchema, DepartmentCreateOrConnectWithoutFacultyInputObjectSchema.array()]).optional(), - upsert: z.union([DepartmentUpsertWithWhereUniqueWithoutFacultyInputObjectSchema, DepartmentUpsertWithWhereUniqueWithoutFacultyInputObjectSchema.array()]).optional(), - get createMany(){ return DepartmentCreateManyFacultyInputEnvelopeObjectSchema.optional(); }, - set: z.union([DepartmentWhereUniqueInputObjectSchema, DepartmentWhereUniqueInputObjectSchema.array()]).optional(), - disconnect: z.union([DepartmentWhereUniqueInputObjectSchema, DepartmentWhereUniqueInputObjectSchema.array()]).optional(), - delete: z.union([DepartmentWhereUniqueInputObjectSchema, DepartmentWhereUniqueInputObjectSchema.array()]).optional(), - connect: z.union([DepartmentWhereUniqueInputObjectSchema, DepartmentWhereUniqueInputObjectSchema.array()]).optional(), - update: z.union([DepartmentUpdateWithWhereUniqueWithoutFacultyInputObjectSchema, DepartmentUpdateWithWhereUniqueWithoutFacultyInputObjectSchema.array()]).optional(), - updateMany: z.union([DepartmentUpdateManyWithWhereWithoutFacultyInputObjectSchema, DepartmentUpdateManyWithWhereWithoutFacultyInputObjectSchema.array()]).optional(), - deleteMany: z.union([DepartmentScalarWhereInputObjectSchema, DepartmentScalarWhereInputObjectSchema.array()]).optional() -}).strict(); -export const DepartmentUncheckedUpdateManyWithoutFacultyNestedInputObjectSchema: z.ZodType = z.lazy(__makeSchema_DepartmentUncheckedUpdateManyWithoutFacultyNestedInput_schema) as unknown as z.ZodType; -export const DepartmentUncheckedUpdateManyWithoutFacultyNestedInputObjectZodSchema = z.lazy(__makeSchema_DepartmentUncheckedUpdateManyWithoutFacultyNestedInput_schema); - - -// File: CourseCreateNestedManyWithoutDepartmentInput.schema.ts -const __makeSchema_CourseCreateNestedManyWithoutDepartmentInput_schema = () => z.object({ - create: z.union([CourseCreateWithoutDepartmentInputObjectSchema, CourseCreateWithoutDepartmentInputObjectSchema.array(), CourseUncheckedCreateWithoutDepartmentInputObjectSchema, CourseUncheckedCreateWithoutDepartmentInputObjectSchema.array()]).optional(), - connectOrCreate: z.union([CourseCreateOrConnectWithoutDepartmentInputObjectSchema, CourseCreateOrConnectWithoutDepartmentInputObjectSchema.array()]).optional(), - get createMany(){ return CourseCreateManyDepartmentInputEnvelopeObjectSchema.optional(); }, - connect: z.union([CourseWhereUniqueInputObjectSchema, CourseWhereUniqueInputObjectSchema.array()]).optional() -}).strict(); -export const CourseCreateNestedManyWithoutDepartmentInputObjectSchema: z.ZodType = z.lazy(__makeSchema_CourseCreateNestedManyWithoutDepartmentInput_schema) as unknown as z.ZodType; -export const CourseCreateNestedManyWithoutDepartmentInputObjectZodSchema = z.lazy(__makeSchema_CourseCreateNestedManyWithoutDepartmentInput_schema); - - -// File: FacultyCreateNestedOneWithoutDepartmentsInput.schema.ts -const __makeSchema_FacultyCreateNestedOneWithoutDepartmentsInput_schema = () => z.object({ - create: z.union([FacultyCreateWithoutDepartmentsInputObjectSchema, FacultyUncheckedCreateWithoutDepartmentsInputObjectSchema]).optional(), - get connectOrCreate(){ return FacultyCreateOrConnectWithoutDepartmentsInputObjectSchema.optional(); }, - get connect(){ return FacultyWhereUniqueInputObjectSchema.optional(); } -}).strict(); -export const FacultyCreateNestedOneWithoutDepartmentsInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FacultyCreateNestedOneWithoutDepartmentsInput_schema) as unknown as z.ZodType; -export const FacultyCreateNestedOneWithoutDepartmentsInputObjectZodSchema = z.lazy(__makeSchema_FacultyCreateNestedOneWithoutDepartmentsInput_schema); - - -// File: CourseUncheckedCreateNestedManyWithoutDepartmentInput.schema.ts -const __makeSchema_CourseUncheckedCreateNestedManyWithoutDepartmentInput_schema = () => z.object({ - create: z.union([CourseCreateWithoutDepartmentInputObjectSchema, CourseCreateWithoutDepartmentInputObjectSchema.array(), CourseUncheckedCreateWithoutDepartmentInputObjectSchema, CourseUncheckedCreateWithoutDepartmentInputObjectSchema.array()]).optional(), - connectOrCreate: z.union([CourseCreateOrConnectWithoutDepartmentInputObjectSchema, CourseCreateOrConnectWithoutDepartmentInputObjectSchema.array()]).optional(), - get createMany(){ return CourseCreateManyDepartmentInputEnvelopeObjectSchema.optional(); }, - connect: z.union([CourseWhereUniqueInputObjectSchema, CourseWhereUniqueInputObjectSchema.array()]).optional() -}).strict(); -export const CourseUncheckedCreateNestedManyWithoutDepartmentInputObjectSchema: z.ZodType = z.lazy(__makeSchema_CourseUncheckedCreateNestedManyWithoutDepartmentInput_schema) as unknown as z.ZodType; -export const CourseUncheckedCreateNestedManyWithoutDepartmentInputObjectZodSchema = z.lazy(__makeSchema_CourseUncheckedCreateNestedManyWithoutDepartmentInput_schema); - - -// File: CourseUpdateManyWithoutDepartmentNestedInput.schema.ts -const __makeSchema_CourseUpdateManyWithoutDepartmentNestedInput_schema = () => z.object({ - create: z.union([CourseCreateWithoutDepartmentInputObjectSchema, CourseCreateWithoutDepartmentInputObjectSchema.array(), CourseUncheckedCreateWithoutDepartmentInputObjectSchema, CourseUncheckedCreateWithoutDepartmentInputObjectSchema.array()]).optional(), - connectOrCreate: z.union([CourseCreateOrConnectWithoutDepartmentInputObjectSchema, CourseCreateOrConnectWithoutDepartmentInputObjectSchema.array()]).optional(), - upsert: z.union([CourseUpsertWithWhereUniqueWithoutDepartmentInputObjectSchema, CourseUpsertWithWhereUniqueWithoutDepartmentInputObjectSchema.array()]).optional(), - get createMany(){ return CourseCreateManyDepartmentInputEnvelopeObjectSchema.optional(); }, - set: z.union([CourseWhereUniqueInputObjectSchema, CourseWhereUniqueInputObjectSchema.array()]).optional(), - disconnect: z.union([CourseWhereUniqueInputObjectSchema, CourseWhereUniqueInputObjectSchema.array()]).optional(), - delete: z.union([CourseWhereUniqueInputObjectSchema, CourseWhereUniqueInputObjectSchema.array()]).optional(), - connect: z.union([CourseWhereUniqueInputObjectSchema, CourseWhereUniqueInputObjectSchema.array()]).optional(), - update: z.union([CourseUpdateWithWhereUniqueWithoutDepartmentInputObjectSchema, CourseUpdateWithWhereUniqueWithoutDepartmentInputObjectSchema.array()]).optional(), - updateMany: z.union([CourseUpdateManyWithWhereWithoutDepartmentInputObjectSchema, CourseUpdateManyWithWhereWithoutDepartmentInputObjectSchema.array()]).optional(), - deleteMany: z.union([CourseScalarWhereInputObjectSchema, CourseScalarWhereInputObjectSchema.array()]).optional() -}).strict(); -export const CourseUpdateManyWithoutDepartmentNestedInputObjectSchema: z.ZodType = z.lazy(__makeSchema_CourseUpdateManyWithoutDepartmentNestedInput_schema) as unknown as z.ZodType; -export const CourseUpdateManyWithoutDepartmentNestedInputObjectZodSchema = z.lazy(__makeSchema_CourseUpdateManyWithoutDepartmentNestedInput_schema); - - -// File: FacultyUpdateOneRequiredWithoutDepartmentsNestedInput.schema.ts -const __makeSchema_FacultyUpdateOneRequiredWithoutDepartmentsNestedInput_schema = () => z.object({ - create: z.union([FacultyCreateWithoutDepartmentsInputObjectSchema, FacultyUncheckedCreateWithoutDepartmentsInputObjectSchema]).optional(), - get connectOrCreate(){ return FacultyCreateOrConnectWithoutDepartmentsInputObjectSchema.optional(); }, - get upsert(){ return FacultyUpsertWithoutDepartmentsInputObjectSchema.optional(); }, - get connect(){ return FacultyWhereUniqueInputObjectSchema.optional(); }, - update: z.union([FacultyUpdateToOneWithWhereWithoutDepartmentsInputObjectSchema, FacultyUpdateWithoutDepartmentsInputObjectSchema, FacultyUncheckedUpdateWithoutDepartmentsInputObjectSchema]).optional() -}).strict(); -export const FacultyUpdateOneRequiredWithoutDepartmentsNestedInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FacultyUpdateOneRequiredWithoutDepartmentsNestedInput_schema) as unknown as z.ZodType; -export const FacultyUpdateOneRequiredWithoutDepartmentsNestedInputObjectZodSchema = z.lazy(__makeSchema_FacultyUpdateOneRequiredWithoutDepartmentsNestedInput_schema); - - -// File: CourseUncheckedUpdateManyWithoutDepartmentNestedInput.schema.ts -const __makeSchema_CourseUncheckedUpdateManyWithoutDepartmentNestedInput_schema = () => z.object({ - create: z.union([CourseCreateWithoutDepartmentInputObjectSchema, CourseCreateWithoutDepartmentInputObjectSchema.array(), CourseUncheckedCreateWithoutDepartmentInputObjectSchema, CourseUncheckedCreateWithoutDepartmentInputObjectSchema.array()]).optional(), - connectOrCreate: z.union([CourseCreateOrConnectWithoutDepartmentInputObjectSchema, CourseCreateOrConnectWithoutDepartmentInputObjectSchema.array()]).optional(), - upsert: z.union([CourseUpsertWithWhereUniqueWithoutDepartmentInputObjectSchema, CourseUpsertWithWhereUniqueWithoutDepartmentInputObjectSchema.array()]).optional(), - get createMany(){ return CourseCreateManyDepartmentInputEnvelopeObjectSchema.optional(); }, - set: z.union([CourseWhereUniqueInputObjectSchema, CourseWhereUniqueInputObjectSchema.array()]).optional(), - disconnect: z.union([CourseWhereUniqueInputObjectSchema, CourseWhereUniqueInputObjectSchema.array()]).optional(), - delete: z.union([CourseWhereUniqueInputObjectSchema, CourseWhereUniqueInputObjectSchema.array()]).optional(), - connect: z.union([CourseWhereUniqueInputObjectSchema, CourseWhereUniqueInputObjectSchema.array()]).optional(), - update: z.union([CourseUpdateWithWhereUniqueWithoutDepartmentInputObjectSchema, CourseUpdateWithWhereUniqueWithoutDepartmentInputObjectSchema.array()]).optional(), - updateMany: z.union([CourseUpdateManyWithWhereWithoutDepartmentInputObjectSchema, CourseUpdateManyWithWhereWithoutDepartmentInputObjectSchema.array()]).optional(), - deleteMany: z.union([CourseScalarWhereInputObjectSchema, CourseScalarWhereInputObjectSchema.array()]).optional() -}).strict(); -export const CourseUncheckedUpdateManyWithoutDepartmentNestedInputObjectSchema: z.ZodType = z.lazy(__makeSchema_CourseUncheckedUpdateManyWithoutDepartmentNestedInput_schema) as unknown as z.ZodType; -export const CourseUncheckedUpdateManyWithoutDepartmentNestedInputObjectZodSchema = z.lazy(__makeSchema_CourseUncheckedUpdateManyWithoutDepartmentNestedInput_schema); - - -// File: NestedStringFilter.schema.ts -const __makeSchema_NestedStringFilter_schema = () => z.object({ - equals: z.string().optional(), - in: z.string().array().optional(), - notIn: z.string().array().optional(), - lt: z.string().optional(), - lte: z.string().optional(), - gt: z.string().optional(), - gte: z.string().optional(), - contains: z.string().optional(), - startsWith: z.string().optional(), - endsWith: z.string().optional(), - not: z.union([z.string(), NestedStringFilterObjectSchema]).optional() -}).strict(); -export const NestedStringFilterObjectSchema: z.ZodType = z.lazy(__makeSchema_NestedStringFilter_schema) as unknown as z.ZodType; -export const NestedStringFilterObjectZodSchema = z.lazy(__makeSchema_NestedStringFilter_schema); - - -// File: NestedStringNullableFilter.schema.ts -const __makeSchema_NestedStringNullableFilter_schema = () => z.object({ - equals: z.string().optional().nullable(), - in: z.string().array().optional().nullable(), - notIn: z.string().array().optional().nullable(), - lt: z.string().optional(), - lte: z.string().optional(), - gt: z.string().optional(), - gte: z.string().optional(), - contains: z.string().optional(), - startsWith: z.string().optional(), - endsWith: z.string().optional(), - not: z.union([z.string(), NestedStringNullableFilterObjectSchema]).optional().nullable() -}).strict(); -export const NestedStringNullableFilterObjectSchema: z.ZodType = z.lazy(__makeSchema_NestedStringNullableFilter_schema) as unknown as z.ZodType; -export const NestedStringNullableFilterObjectZodSchema = z.lazy(__makeSchema_NestedStringNullableFilter_schema); - - -// File: NestedFloatNullableFilter.schema.ts -const __makeSchema_NestedFloatNullableFilter_schema = () => z.object({ - equals: z.number().optional().nullable(), - in: z.number().array().optional().nullable(), - notIn: z.number().array().optional().nullable(), - lt: z.number().optional(), - lte: z.number().optional(), - gt: z.number().optional(), - gte: z.number().optional(), - not: z.union([z.number(), NestedFloatNullableFilterObjectSchema]).optional().nullable() -}).strict(); -export const NestedFloatNullableFilterObjectSchema: z.ZodType = z.lazy(__makeSchema_NestedFloatNullableFilter_schema) as unknown as z.ZodType; -export const NestedFloatNullableFilterObjectZodSchema = z.lazy(__makeSchema_NestedFloatNullableFilter_schema); - - -// File: NestedEnumStudyLevelFilter.schema.ts -const __makeSchema_NestedEnumStudyLevelFilter_schema = () => z.object({ - equals: StudyLevelSchema.optional(), - in: StudyLevelSchema.array().optional(), - notIn: StudyLevelSchema.array().optional(), - not: z.union([StudyLevelSchema, NestedEnumStudyLevelFilterObjectSchema]).optional() -}).strict(); -export const NestedEnumStudyLevelFilterObjectSchema: z.ZodType = z.lazy(__makeSchema_NestedEnumStudyLevelFilter_schema) as unknown as z.ZodType; -export const NestedEnumStudyLevelFilterObjectZodSchema = z.lazy(__makeSchema_NestedEnumStudyLevelFilter_schema); - - -// File: NestedEnumGradeTypeFilter.schema.ts -const __makeSchema_NestedEnumGradeTypeFilter_schema = () => z.object({ - equals: GradeTypeSchema.optional(), - in: GradeTypeSchema.array().optional(), - notIn: GradeTypeSchema.array().optional(), - not: z.union([GradeTypeSchema, NestedEnumGradeTypeFilterObjectSchema]).optional() -}).strict(); -export const NestedEnumGradeTypeFilterObjectSchema: z.ZodType = z.lazy(__makeSchema_NestedEnumGradeTypeFilter_schema) as unknown as z.ZodType; -export const NestedEnumGradeTypeFilterObjectZodSchema = z.lazy(__makeSchema_NestedEnumGradeTypeFilter_schema); - - -// File: NestedIntFilter.schema.ts -const __makeSchema_NestedIntFilter_schema = () => z.object({ - equals: z.number().int().optional(), - in: z.number().int().array().optional(), - notIn: z.number().int().array().optional(), - lt: z.number().int().optional(), - lte: z.number().int().optional(), - gt: z.number().int().optional(), - gte: z.number().int().optional(), - not: z.union([z.number().int(), NestedIntFilterObjectSchema]).optional() -}).strict(); -export const NestedIntFilterObjectSchema: z.ZodType = z.lazy(__makeSchema_NestedIntFilter_schema) as unknown as z.ZodType; -export const NestedIntFilterObjectZodSchema = z.lazy(__makeSchema_NestedIntFilter_schema); - - -// File: NestedIntNullableFilter.schema.ts -const __makeSchema_NestedIntNullableFilter_schema = () => z.object({ - equals: z.number().int().optional().nullable(), - in: z.number().int().array().optional().nullable(), - notIn: z.number().int().array().optional().nullable(), - lt: z.number().int().optional(), - lte: z.number().int().optional(), - gt: z.number().int().optional(), - gte: z.number().int().optional(), - not: z.union([z.number().int(), NestedIntNullableFilterObjectSchema]).optional().nullable() -}).strict(); -export const NestedIntNullableFilterObjectSchema: z.ZodType = z.lazy(__makeSchema_NestedIntNullableFilter_schema) as unknown as z.ZodType; -export const NestedIntNullableFilterObjectZodSchema = z.lazy(__makeSchema_NestedIntNullableFilter_schema); - - -// File: NestedFloatFilter.schema.ts -const __makeSchema_NestedFloatFilter_schema = () => z.object({ - equals: z.number().optional(), - in: z.number().array().optional(), - notIn: z.number().array().optional(), - lt: z.number().optional(), - lte: z.number().optional(), - gt: z.number().optional(), - gte: z.number().optional(), - not: z.union([z.number(), NestedFloatFilterObjectSchema]).optional() -}).strict(); -export const NestedFloatFilterObjectSchema: z.ZodType = z.lazy(__makeSchema_NestedFloatFilter_schema) as unknown as z.ZodType; -export const NestedFloatFilterObjectZodSchema = z.lazy(__makeSchema_NestedFloatFilter_schema); - - -// File: NestedDateTimeFilter.schema.ts -const __makeSchema_NestedDateTimeFilter_schema = () => z.object({ - equals: z.date().optional(), - in: z.union([z.date().array(), z.iso.datetime().array()]).optional(), - notIn: z.union([z.date().array(), z.iso.datetime().array()]).optional(), - lt: z.date().optional(), - lte: z.date().optional(), - gt: z.date().optional(), - gte: z.date().optional(), - not: z.union([z.date(), NestedDateTimeFilterObjectSchema]).optional() -}).strict(); -export const NestedDateTimeFilterObjectSchema: z.ZodType = z.lazy(__makeSchema_NestedDateTimeFilter_schema) as unknown as z.ZodType; -export const NestedDateTimeFilterObjectZodSchema = z.lazy(__makeSchema_NestedDateTimeFilter_schema); - - -// File: NestedStringWithAggregatesFilter.schema.ts -const __makeSchema_NestedStringWithAggregatesFilter_schema = () => z.object({ - equals: z.string().optional(), - in: z.string().array().optional(), - notIn: z.string().array().optional(), - lt: z.string().optional(), - lte: z.string().optional(), - gt: z.string().optional(), - gte: z.string().optional(), - contains: z.string().optional(), - startsWith: z.string().optional(), - endsWith: z.string().optional(), - not: z.union([z.string(), NestedStringWithAggregatesFilterObjectSchema]).optional(), - get _count(){ return NestedIntFilterObjectSchema.optional(); }, - get _min(){ return NestedStringFilterObjectSchema.optional(); }, - get _max(){ return NestedStringFilterObjectSchema.optional(); } -}).strict(); -export const NestedStringWithAggregatesFilterObjectSchema: z.ZodType = z.lazy(__makeSchema_NestedStringWithAggregatesFilter_schema) as unknown as z.ZodType; -export const NestedStringWithAggregatesFilterObjectZodSchema = z.lazy(__makeSchema_NestedStringWithAggregatesFilter_schema); - - -// File: NestedStringNullableWithAggregatesFilter.schema.ts -const __makeSchema_NestedStringNullableWithAggregatesFilter_schema = () => z.object({ - equals: z.string().optional().nullable(), - in: z.string().array().optional().nullable(), - notIn: z.string().array().optional().nullable(), - lt: z.string().optional(), - lte: z.string().optional(), - gt: z.string().optional(), - gte: z.string().optional(), - contains: z.string().optional(), - startsWith: z.string().optional(), - endsWith: z.string().optional(), - not: z.union([z.string(), NestedStringNullableWithAggregatesFilterObjectSchema]).optional().nullable(), - get _count(){ return NestedIntNullableFilterObjectSchema.optional(); }, - get _min(){ return NestedStringNullableFilterObjectSchema.optional(); }, - get _max(){ return NestedStringNullableFilterObjectSchema.optional(); } -}).strict(); -export const NestedStringNullableWithAggregatesFilterObjectSchema: z.ZodType = z.lazy(__makeSchema_NestedStringNullableWithAggregatesFilter_schema) as unknown as z.ZodType; -export const NestedStringNullableWithAggregatesFilterObjectZodSchema = z.lazy(__makeSchema_NestedStringNullableWithAggregatesFilter_schema); - - -// File: NestedFloatNullableWithAggregatesFilter.schema.ts -const __makeSchema_NestedFloatNullableWithAggregatesFilter_schema = () => z.object({ - equals: z.number().optional().nullable(), - in: z.number().array().optional().nullable(), - notIn: z.number().array().optional().nullable(), - lt: z.number().optional(), - lte: z.number().optional(), - gt: z.number().optional(), - gte: z.number().optional(), - not: z.union([z.number(), NestedFloatNullableWithAggregatesFilterObjectSchema]).optional().nullable(), - get _count(){ return NestedIntNullableFilterObjectSchema.optional(); }, - get _avg(){ return NestedFloatNullableFilterObjectSchema.optional(); }, - get _sum(){ return NestedFloatNullableFilterObjectSchema.optional(); }, - get _min(){ return NestedFloatNullableFilterObjectSchema.optional(); }, - get _max(){ return NestedFloatNullableFilterObjectSchema.optional(); } -}).strict(); -export const NestedFloatNullableWithAggregatesFilterObjectSchema: z.ZodType = z.lazy(__makeSchema_NestedFloatNullableWithAggregatesFilter_schema) as unknown as z.ZodType; -export const NestedFloatNullableWithAggregatesFilterObjectZodSchema = z.lazy(__makeSchema_NestedFloatNullableWithAggregatesFilter_schema); - - -// File: NestedEnumStudyLevelWithAggregatesFilter.schema.ts -const __makeSchema_NestedEnumStudyLevelWithAggregatesFilter_schema = () => z.object({ - equals: StudyLevelSchema.optional(), - in: StudyLevelSchema.array().optional(), - notIn: StudyLevelSchema.array().optional(), - not: z.union([StudyLevelSchema, NestedEnumStudyLevelWithAggregatesFilterObjectSchema]).optional(), - get _count(){ return NestedIntFilterObjectSchema.optional(); }, - get _min(){ return NestedEnumStudyLevelFilterObjectSchema.optional(); }, - get _max(){ return NestedEnumStudyLevelFilterObjectSchema.optional(); } -}).strict(); -export const NestedEnumStudyLevelWithAggregatesFilterObjectSchema: z.ZodType = z.lazy(__makeSchema_NestedEnumStudyLevelWithAggregatesFilter_schema) as unknown as z.ZodType; -export const NestedEnumStudyLevelWithAggregatesFilterObjectZodSchema = z.lazy(__makeSchema_NestedEnumStudyLevelWithAggregatesFilter_schema); - - -// File: NestedEnumGradeTypeWithAggregatesFilter.schema.ts -const __makeSchema_NestedEnumGradeTypeWithAggregatesFilter_schema = () => z.object({ - equals: GradeTypeSchema.optional(), - in: GradeTypeSchema.array().optional(), - notIn: GradeTypeSchema.array().optional(), - not: z.union([GradeTypeSchema, NestedEnumGradeTypeWithAggregatesFilterObjectSchema]).optional(), - get _count(){ return NestedIntFilterObjectSchema.optional(); }, - get _min(){ return NestedEnumGradeTypeFilterObjectSchema.optional(); }, - get _max(){ return NestedEnumGradeTypeFilterObjectSchema.optional(); } -}).strict(); -export const NestedEnumGradeTypeWithAggregatesFilterObjectSchema: z.ZodType = z.lazy(__makeSchema_NestedEnumGradeTypeWithAggregatesFilter_schema) as unknown as z.ZodType; -export const NestedEnumGradeTypeWithAggregatesFilterObjectZodSchema = z.lazy(__makeSchema_NestedEnumGradeTypeWithAggregatesFilter_schema); - - -// File: NestedIntWithAggregatesFilter.schema.ts -const __makeSchema_NestedIntWithAggregatesFilter_schema = () => z.object({ - equals: z.number().int().optional(), - in: z.number().int().array().optional(), - notIn: z.number().int().array().optional(), - lt: z.number().int().optional(), - lte: z.number().int().optional(), - gt: z.number().int().optional(), - gte: z.number().int().optional(), - not: z.union([z.number().int(), NestedIntWithAggregatesFilterObjectSchema]).optional(), - get _count(){ return NestedIntFilterObjectSchema.optional(); }, - get _avg(){ return NestedFloatFilterObjectSchema.optional(); }, - get _sum(){ return NestedIntFilterObjectSchema.optional(); }, - get _min(){ return NestedIntFilterObjectSchema.optional(); }, - get _max(){ return NestedIntFilterObjectSchema.optional(); } -}).strict(); -export const NestedIntWithAggregatesFilterObjectSchema: z.ZodType = z.lazy(__makeSchema_NestedIntWithAggregatesFilter_schema) as unknown as z.ZodType; -export const NestedIntWithAggregatesFilterObjectZodSchema = z.lazy(__makeSchema_NestedIntWithAggregatesFilter_schema); - - -// File: NestedIntNullableWithAggregatesFilter.schema.ts -const __makeSchema_NestedIntNullableWithAggregatesFilter_schema = () => z.object({ - equals: z.number().int().optional().nullable(), - in: z.number().int().array().optional().nullable(), - notIn: z.number().int().array().optional().nullable(), - lt: z.number().int().optional(), - lte: z.number().int().optional(), - gt: z.number().int().optional(), - gte: z.number().int().optional(), - not: z.union([z.number().int(), NestedIntNullableWithAggregatesFilterObjectSchema]).optional().nullable(), - get _count(){ return NestedIntNullableFilterObjectSchema.optional(); }, - get _avg(){ return NestedFloatNullableFilterObjectSchema.optional(); }, - get _sum(){ return NestedIntNullableFilterObjectSchema.optional(); }, - get _min(){ return NestedIntNullableFilterObjectSchema.optional(); }, - get _max(){ return NestedIntNullableFilterObjectSchema.optional(); } -}).strict(); -export const NestedIntNullableWithAggregatesFilterObjectSchema: z.ZodType = z.lazy(__makeSchema_NestedIntNullableWithAggregatesFilter_schema) as unknown as z.ZodType; -export const NestedIntNullableWithAggregatesFilterObjectZodSchema = z.lazy(__makeSchema_NestedIntNullableWithAggregatesFilter_schema); - - -// File: NestedFloatWithAggregatesFilter.schema.ts -const __makeSchema_NestedFloatWithAggregatesFilter_schema = () => z.object({ - equals: z.number().optional(), - in: z.number().array().optional(), - notIn: z.number().array().optional(), - lt: z.number().optional(), - lte: z.number().optional(), - gt: z.number().optional(), - gte: z.number().optional(), - not: z.union([z.number(), NestedFloatWithAggregatesFilterObjectSchema]).optional(), - get _count(){ return NestedIntFilterObjectSchema.optional(); }, - get _avg(){ return NestedFloatFilterObjectSchema.optional(); }, - get _sum(){ return NestedFloatFilterObjectSchema.optional(); }, - get _min(){ return NestedFloatFilterObjectSchema.optional(); }, - get _max(){ return NestedFloatFilterObjectSchema.optional(); } -}).strict(); -export const NestedFloatWithAggregatesFilterObjectSchema: z.ZodType = z.lazy(__makeSchema_NestedFloatWithAggregatesFilter_schema) as unknown as z.ZodType; -export const NestedFloatWithAggregatesFilterObjectZodSchema = z.lazy(__makeSchema_NestedFloatWithAggregatesFilter_schema); - - -// File: NestedDateTimeWithAggregatesFilter.schema.ts -const __makeSchema_NestedDateTimeWithAggregatesFilter_schema = () => z.object({ - equals: z.date().optional(), - in: z.union([z.date().array(), z.iso.datetime().array()]).optional(), - notIn: z.union([z.date().array(), z.iso.datetime().array()]).optional(), - lt: z.date().optional(), - lte: z.date().optional(), - gt: z.date().optional(), - gte: z.date().optional(), - not: z.union([z.date(), NestedDateTimeWithAggregatesFilterObjectSchema]).optional(), - get _count(){ return NestedIntFilterObjectSchema.optional(); }, - get _min(){ return NestedDateTimeFilterObjectSchema.optional(); }, - get _max(){ return NestedDateTimeFilterObjectSchema.optional(); } -}).strict(); -export const NestedDateTimeWithAggregatesFilterObjectSchema: z.ZodType = z.lazy(__makeSchema_NestedDateTimeWithAggregatesFilter_schema) as unknown as z.ZodType; -export const NestedDateTimeWithAggregatesFilterObjectZodSchema = z.lazy(__makeSchema_NestedDateTimeWithAggregatesFilter_schema); - - -// File: NestedEnumSemesterFilter.schema.ts -const __makeSchema_NestedEnumSemesterFilter_schema = () => z.object({ - equals: SemesterSchema.optional(), - in: SemesterSchema.array().optional(), - notIn: SemesterSchema.array().optional(), - not: z.union([SemesterSchema, NestedEnumSemesterFilterObjectSchema]).optional() -}).strict(); -export const NestedEnumSemesterFilterObjectSchema: z.ZodType = z.lazy(__makeSchema_NestedEnumSemesterFilter_schema) as unknown as z.ZodType; -export const NestedEnumSemesterFilterObjectZodSchema = z.lazy(__makeSchema_NestedEnumSemesterFilter_schema); - - -// File: NestedEnumSemesterWithAggregatesFilter.schema.ts -const __makeSchema_NestedEnumSemesterWithAggregatesFilter_schema = () => z.object({ - equals: SemesterSchema.optional(), - in: SemesterSchema.array().optional(), - notIn: SemesterSchema.array().optional(), - not: z.union([SemesterSchema, NestedEnumSemesterWithAggregatesFilterObjectSchema]).optional(), - get _count(){ return NestedIntFilterObjectSchema.optional(); }, - get _min(){ return NestedEnumSemesterFilterObjectSchema.optional(); }, - get _max(){ return NestedEnumSemesterFilterObjectSchema.optional(); } -}).strict(); -export const NestedEnumSemesterWithAggregatesFilterObjectSchema: z.ZodType = z.lazy(__makeSchema_NestedEnumSemesterWithAggregatesFilter_schema) as unknown as z.ZodType; -export const NestedEnumSemesterWithAggregatesFilterObjectZodSchema = z.lazy(__makeSchema_NestedEnumSemesterWithAggregatesFilter_schema); - - -// File: GradeCreateWithoutCourseInput.schema.ts -const __makeSchema_GradeCreateWithoutCourseInput_schema = () => z.object({ - id: z.string().optional(), - gradeACount: z.number().int(), - gradeBCount: z.number().int(), - gradeCCount: z.number().int(), - gradeDCount: z.number().int(), - gradeECount: z.number().int(), - gradeFCount: z.number().int(), - passedCount: z.number().int(), - failedCount: z.number().int(), - semester: SemesterSchema, - year: z.number().int(), - createdAt: z.coerce.date().optional(), - updatedAt: z.coerce.date().optional() -}).strict(); -export const GradeCreateWithoutCourseInputObjectSchema: z.ZodType = z.lazy(__makeSchema_GradeCreateWithoutCourseInput_schema) as unknown as z.ZodType; -export const GradeCreateWithoutCourseInputObjectZodSchema = z.lazy(__makeSchema_GradeCreateWithoutCourseInput_schema); - - -// File: GradeUncheckedCreateWithoutCourseInput.schema.ts -const __makeSchema_GradeUncheckedCreateWithoutCourseInput_schema = () => z.object({ - id: z.string().optional(), - gradeACount: z.number().int(), - gradeBCount: z.number().int(), - gradeCCount: z.number().int(), - gradeDCount: z.number().int(), - gradeECount: z.number().int(), - gradeFCount: z.number().int(), - passedCount: z.number().int(), - failedCount: z.number().int(), - semester: SemesterSchema, - year: z.number().int(), - createdAt: z.coerce.date().optional(), - updatedAt: z.coerce.date().optional() -}).strict(); -export const GradeUncheckedCreateWithoutCourseInputObjectSchema: z.ZodType = z.lazy(__makeSchema_GradeUncheckedCreateWithoutCourseInput_schema) as unknown as z.ZodType; -export const GradeUncheckedCreateWithoutCourseInputObjectZodSchema = z.lazy(__makeSchema_GradeUncheckedCreateWithoutCourseInput_schema); - - -// File: GradeCreateOrConnectWithoutCourseInput.schema.ts -const __makeSchema_GradeCreateOrConnectWithoutCourseInput_schema = () => z.object({ - get where(){ return GradeWhereUniqueInputObjectSchema; }, - create: z.union([GradeCreateWithoutCourseInputObjectSchema, GradeUncheckedCreateWithoutCourseInputObjectSchema]) -}).strict(); -export const GradeCreateOrConnectWithoutCourseInputObjectSchema: z.ZodType = z.lazy(__makeSchema_GradeCreateOrConnectWithoutCourseInput_schema) as unknown as z.ZodType; -export const GradeCreateOrConnectWithoutCourseInputObjectZodSchema = z.lazy(__makeSchema_GradeCreateOrConnectWithoutCourseInput_schema); - - -// File: GradeCreateManyCourseInputEnvelope.schema.ts -const __makeSchema_GradeCreateManyCourseInputEnvelope_schema = () => z.object({ - data: z.union([GradeCreateManyCourseInputObjectSchema, GradeCreateManyCourseInputObjectSchema.array()]), - skipDuplicates: z.boolean().optional() -}).strict(); -export const GradeCreateManyCourseInputEnvelopeObjectSchema: z.ZodType = z.lazy(__makeSchema_GradeCreateManyCourseInputEnvelope_schema) as unknown as z.ZodType; -export const GradeCreateManyCourseInputEnvelopeObjectZodSchema = z.lazy(__makeSchema_GradeCreateManyCourseInputEnvelope_schema); - - -// File: FacultyCreateWithoutCoursesInput.schema.ts -const __makeSchema_FacultyCreateWithoutCoursesInput_schema = () => z.object({ - id: z.string().optional(), - nameNo: z.string(), - nameEn: z.string(), - code: z.number().int(), - get departments(){ return DepartmentCreateNestedManyWithoutFacultyInputObjectSchema.optional(); } -}).strict(); -export const FacultyCreateWithoutCoursesInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FacultyCreateWithoutCoursesInput_schema) as unknown as z.ZodType; -export const FacultyCreateWithoutCoursesInputObjectZodSchema = z.lazy(__makeSchema_FacultyCreateWithoutCoursesInput_schema); - - -// File: FacultyUncheckedCreateWithoutCoursesInput.schema.ts -const __makeSchema_FacultyUncheckedCreateWithoutCoursesInput_schema = () => z.object({ - id: z.string().optional(), - nameNo: z.string(), - nameEn: z.string(), - code: z.number().int(), - get departments(){ return DepartmentUncheckedCreateNestedManyWithoutFacultyInputObjectSchema.optional(); } -}).strict(); -export const FacultyUncheckedCreateWithoutCoursesInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FacultyUncheckedCreateWithoutCoursesInput_schema) as unknown as z.ZodType; -export const FacultyUncheckedCreateWithoutCoursesInputObjectZodSchema = z.lazy(__makeSchema_FacultyUncheckedCreateWithoutCoursesInput_schema); - - -// File: FacultyCreateOrConnectWithoutCoursesInput.schema.ts -const __makeSchema_FacultyCreateOrConnectWithoutCoursesInput_schema = () => z.object({ - get where(){ return FacultyWhereUniqueInputObjectSchema; }, - create: z.union([FacultyCreateWithoutCoursesInputObjectSchema, FacultyUncheckedCreateWithoutCoursesInputObjectSchema]) -}).strict(); -export const FacultyCreateOrConnectWithoutCoursesInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FacultyCreateOrConnectWithoutCoursesInput_schema) as unknown as z.ZodType; -export const FacultyCreateOrConnectWithoutCoursesInputObjectZodSchema = z.lazy(__makeSchema_FacultyCreateOrConnectWithoutCoursesInput_schema); - - -// File: DepartmentCreateWithoutCoursesInput.schema.ts -const __makeSchema_DepartmentCreateWithoutCoursesInput_schema = () => z.object({ - id: z.string().optional(), - nameNo: z.string(), - nameEn: z.string(), - code: z.number().int(), - get faculty(){ return FacultyCreateNestedOneWithoutDepartmentsInputObjectSchema; } -}).strict(); -export const DepartmentCreateWithoutCoursesInputObjectSchema: z.ZodType = z.lazy(__makeSchema_DepartmentCreateWithoutCoursesInput_schema) as unknown as z.ZodType; -export const DepartmentCreateWithoutCoursesInputObjectZodSchema = z.lazy(__makeSchema_DepartmentCreateWithoutCoursesInput_schema); - - -// File: DepartmentUncheckedCreateWithoutCoursesInput.schema.ts -const __makeSchema_DepartmentUncheckedCreateWithoutCoursesInput_schema = () => z.object({ - id: z.string().optional(), - nameNo: z.string(), - nameEn: z.string(), - code: z.number().int(), - facultyId: z.string() -}).strict(); -export const DepartmentUncheckedCreateWithoutCoursesInputObjectSchema: z.ZodType = z.lazy(__makeSchema_DepartmentUncheckedCreateWithoutCoursesInput_schema) as unknown as z.ZodType; -export const DepartmentUncheckedCreateWithoutCoursesInputObjectZodSchema = z.lazy(__makeSchema_DepartmentUncheckedCreateWithoutCoursesInput_schema); - - -// File: DepartmentCreateOrConnectWithoutCoursesInput.schema.ts -const __makeSchema_DepartmentCreateOrConnectWithoutCoursesInput_schema = () => z.object({ - get where(){ return DepartmentWhereUniqueInputObjectSchema; }, - create: z.union([DepartmentCreateWithoutCoursesInputObjectSchema, DepartmentUncheckedCreateWithoutCoursesInputObjectSchema]) -}).strict(); -export const DepartmentCreateOrConnectWithoutCoursesInputObjectSchema: z.ZodType = z.lazy(__makeSchema_DepartmentCreateOrConnectWithoutCoursesInput_schema) as unknown as z.ZodType; -export const DepartmentCreateOrConnectWithoutCoursesInputObjectZodSchema = z.lazy(__makeSchema_DepartmentCreateOrConnectWithoutCoursesInput_schema); - - -// File: GradeUpsertWithWhereUniqueWithoutCourseInput.schema.ts -const __makeSchema_GradeUpsertWithWhereUniqueWithoutCourseInput_schema = () => z.object({ - get where(){ return GradeWhereUniqueInputObjectSchema; }, - update: z.union([GradeUpdateWithoutCourseInputObjectSchema, GradeUncheckedUpdateWithoutCourseInputObjectSchema]), - create: z.union([GradeCreateWithoutCourseInputObjectSchema, GradeUncheckedCreateWithoutCourseInputObjectSchema]) -}).strict(); -export const GradeUpsertWithWhereUniqueWithoutCourseInputObjectSchema: z.ZodType = z.lazy(__makeSchema_GradeUpsertWithWhereUniqueWithoutCourseInput_schema) as unknown as z.ZodType; -export const GradeUpsertWithWhereUniqueWithoutCourseInputObjectZodSchema = z.lazy(__makeSchema_GradeUpsertWithWhereUniqueWithoutCourseInput_schema); - - -// File: GradeUpdateWithWhereUniqueWithoutCourseInput.schema.ts -const __makeSchema_GradeUpdateWithWhereUniqueWithoutCourseInput_schema = () => z.object({ - get where(){ return GradeWhereUniqueInputObjectSchema; }, - data: z.union([GradeUpdateWithoutCourseInputObjectSchema, GradeUncheckedUpdateWithoutCourseInputObjectSchema]) -}).strict(); -export const GradeUpdateWithWhereUniqueWithoutCourseInputObjectSchema: z.ZodType = z.lazy(__makeSchema_GradeUpdateWithWhereUniqueWithoutCourseInput_schema) as unknown as z.ZodType; -export const GradeUpdateWithWhereUniqueWithoutCourseInputObjectZodSchema = z.lazy(__makeSchema_GradeUpdateWithWhereUniqueWithoutCourseInput_schema); - - -// File: GradeUpdateManyWithWhereWithoutCourseInput.schema.ts -const __makeSchema_GradeUpdateManyWithWhereWithoutCourseInput_schema = () => z.object({ - get where(){ return GradeScalarWhereInputObjectSchema; }, - data: z.union([GradeUpdateManyMutationInputObjectSchema, GradeUncheckedUpdateManyWithoutCourseInputObjectSchema]) -}).strict(); -export const GradeUpdateManyWithWhereWithoutCourseInputObjectSchema: z.ZodType = z.lazy(__makeSchema_GradeUpdateManyWithWhereWithoutCourseInput_schema) as unknown as z.ZodType; -export const GradeUpdateManyWithWhereWithoutCourseInputObjectZodSchema = z.lazy(__makeSchema_GradeUpdateManyWithWhereWithoutCourseInput_schema); - - -// File: GradeScalarWhereInput.schema.ts -const __makeSchema_GradeScalarWhereInput_schema = () => z.object({ - AND: z.union([GradeScalarWhereInputObjectSchema, GradeScalarWhereInputObjectSchema.array()]).optional(), - get OR(){ return GradeScalarWhereInputObjectSchema.array().optional(); }, - NOT: z.union([GradeScalarWhereInputObjectSchema, GradeScalarWhereInputObjectSchema.array()]).optional(), - id: z.union([StringFilterObjectSchema, z.string()]).optional(), - gradeACount: z.union([IntFilterObjectSchema, z.number().int()]).optional(), - gradeBCount: z.union([IntFilterObjectSchema, z.number().int()]).optional(), - gradeCCount: z.union([IntFilterObjectSchema, z.number().int()]).optional(), - gradeDCount: z.union([IntFilterObjectSchema, z.number().int()]).optional(), - gradeECount: z.union([IntFilterObjectSchema, z.number().int()]).optional(), - gradeFCount: z.union([IntFilterObjectSchema, z.number().int()]).optional(), - passedCount: z.union([IntFilterObjectSchema, z.number().int()]).optional(), - failedCount: z.union([IntFilterObjectSchema, z.number().int()]).optional(), - courseId: z.union([StringFilterObjectSchema, z.string()]).optional(), - semester: z.union([EnumSemesterFilterObjectSchema, SemesterSchema]).optional(), - year: z.union([IntFilterObjectSchema, z.number().int()]).optional(), - createdAt: z.union([DateTimeFilterObjectSchema, z.coerce.date()]).optional(), - updatedAt: z.union([DateTimeFilterObjectSchema, z.coerce.date()]).optional() -}).strict(); -export const GradeScalarWhereInputObjectSchema: z.ZodType = z.lazy(__makeSchema_GradeScalarWhereInput_schema) as unknown as z.ZodType; -export const GradeScalarWhereInputObjectZodSchema = z.lazy(__makeSchema_GradeScalarWhereInput_schema); - - -// File: FacultyUpsertWithoutCoursesInput.schema.ts -const __makeSchema_FacultyUpsertWithoutCoursesInput_schema = () => z.object({ - update: z.union([FacultyUpdateWithoutCoursesInputObjectSchema, FacultyUncheckedUpdateWithoutCoursesInputObjectSchema]), - create: z.union([FacultyCreateWithoutCoursesInputObjectSchema, FacultyUncheckedCreateWithoutCoursesInputObjectSchema]), - get where(){ return FacultyWhereInputObjectSchema.optional(); } -}).strict(); -export const FacultyUpsertWithoutCoursesInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FacultyUpsertWithoutCoursesInput_schema) as unknown as z.ZodType; -export const FacultyUpsertWithoutCoursesInputObjectZodSchema = z.lazy(__makeSchema_FacultyUpsertWithoutCoursesInput_schema); - - -// File: FacultyUpdateToOneWithWhereWithoutCoursesInput.schema.ts -const __makeSchema_FacultyUpdateToOneWithWhereWithoutCoursesInput_schema = () => z.object({ - get where(){ return FacultyWhereInputObjectSchema.optional(); }, - data: z.union([FacultyUpdateWithoutCoursesInputObjectSchema, FacultyUncheckedUpdateWithoutCoursesInputObjectSchema]) -}).strict(); -export const FacultyUpdateToOneWithWhereWithoutCoursesInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FacultyUpdateToOneWithWhereWithoutCoursesInput_schema) as unknown as z.ZodType; -export const FacultyUpdateToOneWithWhereWithoutCoursesInputObjectZodSchema = z.lazy(__makeSchema_FacultyUpdateToOneWithWhereWithoutCoursesInput_schema); - - -// File: FacultyUpdateWithoutCoursesInput.schema.ts -const __makeSchema_FacultyUpdateWithoutCoursesInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - nameNo: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - nameEn: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - code: z.union([z.number().int(), IntFieldUpdateOperationsInputObjectSchema]).optional(), - get departments(){ return DepartmentUpdateManyWithoutFacultyNestedInputObjectSchema.optional(); } -}).strict(); -export const FacultyUpdateWithoutCoursesInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FacultyUpdateWithoutCoursesInput_schema) as unknown as z.ZodType; -export const FacultyUpdateWithoutCoursesInputObjectZodSchema = z.lazy(__makeSchema_FacultyUpdateWithoutCoursesInput_schema); - - -// File: FacultyUncheckedUpdateWithoutCoursesInput.schema.ts -const __makeSchema_FacultyUncheckedUpdateWithoutCoursesInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - nameNo: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - nameEn: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - code: z.union([z.number().int(), IntFieldUpdateOperationsInputObjectSchema]).optional(), - get departments(){ return DepartmentUncheckedUpdateManyWithoutFacultyNestedInputObjectSchema.optional(); } -}).strict(); -export const FacultyUncheckedUpdateWithoutCoursesInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FacultyUncheckedUpdateWithoutCoursesInput_schema) as unknown as z.ZodType; -export const FacultyUncheckedUpdateWithoutCoursesInputObjectZodSchema = z.lazy(__makeSchema_FacultyUncheckedUpdateWithoutCoursesInput_schema); - - -// File: DepartmentUpsertWithoutCoursesInput.schema.ts -const __makeSchema_DepartmentUpsertWithoutCoursesInput_schema = () => z.object({ - update: z.union([DepartmentUpdateWithoutCoursesInputObjectSchema, DepartmentUncheckedUpdateWithoutCoursesInputObjectSchema]), - create: z.union([DepartmentCreateWithoutCoursesInputObjectSchema, DepartmentUncheckedCreateWithoutCoursesInputObjectSchema]), - get where(){ return DepartmentWhereInputObjectSchema.optional(); } -}).strict(); -export const DepartmentUpsertWithoutCoursesInputObjectSchema: z.ZodType = z.lazy(__makeSchema_DepartmentUpsertWithoutCoursesInput_schema) as unknown as z.ZodType; -export const DepartmentUpsertWithoutCoursesInputObjectZodSchema = z.lazy(__makeSchema_DepartmentUpsertWithoutCoursesInput_schema); - - -// File: DepartmentUpdateToOneWithWhereWithoutCoursesInput.schema.ts -const __makeSchema_DepartmentUpdateToOneWithWhereWithoutCoursesInput_schema = () => z.object({ - get where(){ return DepartmentWhereInputObjectSchema.optional(); }, - data: z.union([DepartmentUpdateWithoutCoursesInputObjectSchema, DepartmentUncheckedUpdateWithoutCoursesInputObjectSchema]) -}).strict(); -export const DepartmentUpdateToOneWithWhereWithoutCoursesInputObjectSchema: z.ZodType = z.lazy(__makeSchema_DepartmentUpdateToOneWithWhereWithoutCoursesInput_schema) as unknown as z.ZodType; -export const DepartmentUpdateToOneWithWhereWithoutCoursesInputObjectZodSchema = z.lazy(__makeSchema_DepartmentUpdateToOneWithWhereWithoutCoursesInput_schema); - - -// File: DepartmentUpdateWithoutCoursesInput.schema.ts -const __makeSchema_DepartmentUpdateWithoutCoursesInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - nameNo: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - nameEn: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - code: z.union([z.number().int(), IntFieldUpdateOperationsInputObjectSchema]).optional(), - get faculty(){ return FacultyUpdateOneRequiredWithoutDepartmentsNestedInputObjectSchema.optional(); } -}).strict(); -export const DepartmentUpdateWithoutCoursesInputObjectSchema: z.ZodType = z.lazy(__makeSchema_DepartmentUpdateWithoutCoursesInput_schema) as unknown as z.ZodType; -export const DepartmentUpdateWithoutCoursesInputObjectZodSchema = z.lazy(__makeSchema_DepartmentUpdateWithoutCoursesInput_schema); - - -// File: DepartmentUncheckedUpdateWithoutCoursesInput.schema.ts -const __makeSchema_DepartmentUncheckedUpdateWithoutCoursesInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - nameNo: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - nameEn: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - code: z.union([z.number().int(), IntFieldUpdateOperationsInputObjectSchema]).optional(), - facultyId: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional() -}).strict(); -export const DepartmentUncheckedUpdateWithoutCoursesInputObjectSchema: z.ZodType = z.lazy(__makeSchema_DepartmentUncheckedUpdateWithoutCoursesInput_schema) as unknown as z.ZodType; -export const DepartmentUncheckedUpdateWithoutCoursesInputObjectZodSchema = z.lazy(__makeSchema_DepartmentUncheckedUpdateWithoutCoursesInput_schema); - - -// File: CourseCreateWithoutGradesInput.schema.ts -const __makeSchema_CourseCreateWithoutGradesInput_schema = () => z.object({ - id: z.string().optional(), - code: z.string(), - nameNo: z.string(), - nameEn: z.string().optional().nullable(), - credits: z.number().optional().nullable(), - studyLevel: StudyLevelSchema, - gradeType: GradeTypeSchema, - firstYearTaught: z.number().int(), - lastYearTaught: z.number().int().optional().nullable(), - contentNo: z.string().optional().nullable(), - contentEn: z.string().optional().nullable(), - teachingMethodsNo: z.string().optional().nullable(), - teachingMethodsEn: z.string().optional().nullable(), - learningOutcomesNo: z.string().optional().nullable(), - learningOutcomesEn: z.string().optional().nullable(), - examTypeNo: z.string().optional().nullable(), - examTypeEn: z.string().optional().nullable(), - candidateCount: z.number().int(), - averageGrade: z.number(), - passRate: z.number(), - createdAt: z.coerce.date().optional(), - updatedAt: z.coerce.date().optional(), - taughtSemesters: z.union([CourseCreatetaughtSemestersInputObjectSchema, SemesterSchema.array()]).optional(), - teachingLanguages: z.union([CourseCreateteachingLanguagesInputObjectSchema, TeachingLanguageSchema.array()]).optional(), - campuses: z.union([CourseCreatecampusesInputObjectSchema, CampusSchema.array()]).optional(), - latestYearCheckedForNtnuData: z.number().int().optional().nullable(), - get faculty(){ return FacultyCreateNestedOneWithoutCoursesInputObjectSchema.optional(); }, - get department(){ return DepartmentCreateNestedOneWithoutCoursesInputObjectSchema.optional(); } -}).strict(); -export const CourseCreateWithoutGradesInputObjectSchema: z.ZodType = z.lazy(__makeSchema_CourseCreateWithoutGradesInput_schema) as unknown as z.ZodType; -export const CourseCreateWithoutGradesInputObjectZodSchema = z.lazy(__makeSchema_CourseCreateWithoutGradesInput_schema); - - -// File: CourseUncheckedCreateWithoutGradesInput.schema.ts -const __makeSchema_CourseUncheckedCreateWithoutGradesInput_schema = () => z.object({ - id: z.string().optional(), - code: z.string(), - nameNo: z.string(), - nameEn: z.string().optional().nullable(), - credits: z.number().optional().nullable(), - studyLevel: StudyLevelSchema, - gradeType: GradeTypeSchema, - firstYearTaught: z.number().int(), - lastYearTaught: z.number().int().optional().nullable(), - contentNo: z.string().optional().nullable(), - contentEn: z.string().optional().nullable(), - teachingMethodsNo: z.string().optional().nullable(), - teachingMethodsEn: z.string().optional().nullable(), - learningOutcomesNo: z.string().optional().nullable(), - learningOutcomesEn: z.string().optional().nullable(), - examTypeNo: z.string().optional().nullable(), - examTypeEn: z.string().optional().nullable(), - candidateCount: z.number().int(), - averageGrade: z.number(), - passRate: z.number(), - createdAt: z.coerce.date().optional(), - updatedAt: z.coerce.date().optional(), - taughtSemesters: z.union([CourseCreatetaughtSemestersInputObjectSchema, SemesterSchema.array()]).optional(), - teachingLanguages: z.union([CourseCreateteachingLanguagesInputObjectSchema, TeachingLanguageSchema.array()]).optional(), - campuses: z.union([CourseCreatecampusesInputObjectSchema, CampusSchema.array()]).optional(), - facultyId: z.string().optional().nullable(), - departmentId: z.string().optional().nullable(), - latestYearCheckedForNtnuData: z.number().int().optional().nullable() -}).strict(); -export const CourseUncheckedCreateWithoutGradesInputObjectSchema: z.ZodType = z.lazy(__makeSchema_CourseUncheckedCreateWithoutGradesInput_schema) as unknown as z.ZodType; -export const CourseUncheckedCreateWithoutGradesInputObjectZodSchema = z.lazy(__makeSchema_CourseUncheckedCreateWithoutGradesInput_schema); - - -// File: CourseCreateOrConnectWithoutGradesInput.schema.ts -const __makeSchema_CourseCreateOrConnectWithoutGradesInput_schema = () => z.object({ - get where(){ return CourseWhereUniqueInputObjectSchema; }, - create: z.union([CourseCreateWithoutGradesInputObjectSchema, CourseUncheckedCreateWithoutGradesInputObjectSchema]) -}).strict(); -export const CourseCreateOrConnectWithoutGradesInputObjectSchema: z.ZodType = z.lazy(__makeSchema_CourseCreateOrConnectWithoutGradesInput_schema) as unknown as z.ZodType; -export const CourseCreateOrConnectWithoutGradesInputObjectZodSchema = z.lazy(__makeSchema_CourseCreateOrConnectWithoutGradesInput_schema); - - -// File: CourseUpsertWithoutGradesInput.schema.ts -const __makeSchema_CourseUpsertWithoutGradesInput_schema = () => z.object({ - update: z.union([CourseUpdateWithoutGradesInputObjectSchema, CourseUncheckedUpdateWithoutGradesInputObjectSchema]), - create: z.union([CourseCreateWithoutGradesInputObjectSchema, CourseUncheckedCreateWithoutGradesInputObjectSchema]), - get where(){ return CourseWhereInputObjectSchema.optional(); } -}).strict(); -export const CourseUpsertWithoutGradesInputObjectSchema: z.ZodType = z.lazy(__makeSchema_CourseUpsertWithoutGradesInput_schema) as unknown as z.ZodType; -export const CourseUpsertWithoutGradesInputObjectZodSchema = z.lazy(__makeSchema_CourseUpsertWithoutGradesInput_schema); - - -// File: CourseUpdateToOneWithWhereWithoutGradesInput.schema.ts -const __makeSchema_CourseUpdateToOneWithWhereWithoutGradesInput_schema = () => z.object({ - get where(){ return CourseWhereInputObjectSchema.optional(); }, - data: z.union([CourseUpdateWithoutGradesInputObjectSchema, CourseUncheckedUpdateWithoutGradesInputObjectSchema]) -}).strict(); -export const CourseUpdateToOneWithWhereWithoutGradesInputObjectSchema: z.ZodType = z.lazy(__makeSchema_CourseUpdateToOneWithWhereWithoutGradesInput_schema) as unknown as z.ZodType; -export const CourseUpdateToOneWithWhereWithoutGradesInputObjectZodSchema = z.lazy(__makeSchema_CourseUpdateToOneWithWhereWithoutGradesInput_schema); - - -// File: CourseUpdateWithoutGradesInput.schema.ts -const __makeSchema_CourseUpdateWithoutGradesInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - code: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - nameNo: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - nameEn: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - credits: z.union([z.number(), NullableFloatFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - studyLevel: z.union([StudyLevelSchema, EnumStudyLevelFieldUpdateOperationsInputObjectSchema]).optional(), - gradeType: z.union([GradeTypeSchema, EnumGradeTypeFieldUpdateOperationsInputObjectSchema]).optional(), - firstYearTaught: z.union([z.number().int(), IntFieldUpdateOperationsInputObjectSchema]).optional(), - lastYearTaught: z.union([z.number().int(), NullableIntFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - contentNo: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - contentEn: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - teachingMethodsNo: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - teachingMethodsEn: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - learningOutcomesNo: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - learningOutcomesEn: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - examTypeNo: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - examTypeEn: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - candidateCount: z.union([z.number().int(), IntFieldUpdateOperationsInputObjectSchema]).optional(), - averageGrade: z.union([z.number(), FloatFieldUpdateOperationsInputObjectSchema]).optional(), - passRate: z.union([z.number(), FloatFieldUpdateOperationsInputObjectSchema]).optional(), - createdAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - updatedAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - taughtSemesters: z.union([CourseUpdatetaughtSemestersInputObjectSchema, SemesterSchema.array()]).optional(), - teachingLanguages: z.union([CourseUpdateteachingLanguagesInputObjectSchema, TeachingLanguageSchema.array()]).optional(), - campuses: z.union([CourseUpdatecampusesInputObjectSchema, CampusSchema.array()]).optional(), - latestYearCheckedForNtnuData: z.union([z.number().int(), NullableIntFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - get faculty(){ return FacultyUpdateOneWithoutCoursesNestedInputObjectSchema.optional(); }, - get department(){ return DepartmentUpdateOneWithoutCoursesNestedInputObjectSchema.optional(); } -}).strict(); -export const CourseUpdateWithoutGradesInputObjectSchema: z.ZodType = z.lazy(__makeSchema_CourseUpdateWithoutGradesInput_schema) as unknown as z.ZodType; -export const CourseUpdateWithoutGradesInputObjectZodSchema = z.lazy(__makeSchema_CourseUpdateWithoutGradesInput_schema); - - -// File: CourseUncheckedUpdateWithoutGradesInput.schema.ts -const __makeSchema_CourseUncheckedUpdateWithoutGradesInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - code: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - nameNo: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - nameEn: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - credits: z.union([z.number(), NullableFloatFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - studyLevel: z.union([StudyLevelSchema, EnumStudyLevelFieldUpdateOperationsInputObjectSchema]).optional(), - gradeType: z.union([GradeTypeSchema, EnumGradeTypeFieldUpdateOperationsInputObjectSchema]).optional(), - firstYearTaught: z.union([z.number().int(), IntFieldUpdateOperationsInputObjectSchema]).optional(), - lastYearTaught: z.union([z.number().int(), NullableIntFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - contentNo: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - contentEn: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - teachingMethodsNo: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - teachingMethodsEn: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - learningOutcomesNo: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - learningOutcomesEn: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - examTypeNo: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - examTypeEn: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - candidateCount: z.union([z.number().int(), IntFieldUpdateOperationsInputObjectSchema]).optional(), - averageGrade: z.union([z.number(), FloatFieldUpdateOperationsInputObjectSchema]).optional(), - passRate: z.union([z.number(), FloatFieldUpdateOperationsInputObjectSchema]).optional(), - createdAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - updatedAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - taughtSemesters: z.union([CourseUpdatetaughtSemestersInputObjectSchema, SemesterSchema.array()]).optional(), - teachingLanguages: z.union([CourseUpdateteachingLanguagesInputObjectSchema, TeachingLanguageSchema.array()]).optional(), - campuses: z.union([CourseUpdatecampusesInputObjectSchema, CampusSchema.array()]).optional(), - facultyId: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - departmentId: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - latestYearCheckedForNtnuData: z.union([z.number().int(), NullableIntFieldUpdateOperationsInputObjectSchema]).optional().nullable() -}).strict(); -export const CourseUncheckedUpdateWithoutGradesInputObjectSchema: z.ZodType = z.lazy(__makeSchema_CourseUncheckedUpdateWithoutGradesInput_schema) as unknown as z.ZodType; -export const CourseUncheckedUpdateWithoutGradesInputObjectZodSchema = z.lazy(__makeSchema_CourseUncheckedUpdateWithoutGradesInput_schema); - - -// File: CourseCreateWithoutFacultyInput.schema.ts -const __makeSchema_CourseCreateWithoutFacultyInput_schema = () => z.object({ - id: z.string().optional(), - code: z.string(), - nameNo: z.string(), - nameEn: z.string().optional().nullable(), - credits: z.number().optional().nullable(), - studyLevel: StudyLevelSchema, - gradeType: GradeTypeSchema, - firstYearTaught: z.number().int(), - lastYearTaught: z.number().int().optional().nullable(), - contentNo: z.string().optional().nullable(), - contentEn: z.string().optional().nullable(), - teachingMethodsNo: z.string().optional().nullable(), - teachingMethodsEn: z.string().optional().nullable(), - learningOutcomesNo: z.string().optional().nullable(), - learningOutcomesEn: z.string().optional().nullable(), - examTypeNo: z.string().optional().nullable(), - examTypeEn: z.string().optional().nullable(), - candidateCount: z.number().int(), - averageGrade: z.number(), - passRate: z.number(), - createdAt: z.coerce.date().optional(), - updatedAt: z.coerce.date().optional(), - taughtSemesters: z.union([CourseCreatetaughtSemestersInputObjectSchema, SemesterSchema.array()]).optional(), - teachingLanguages: z.union([CourseCreateteachingLanguagesInputObjectSchema, TeachingLanguageSchema.array()]).optional(), - campuses: z.union([CourseCreatecampusesInputObjectSchema, CampusSchema.array()]).optional(), - latestYearCheckedForNtnuData: z.number().int().optional().nullable(), - get grades(){ return GradeCreateNestedManyWithoutCourseInputObjectSchema.optional(); }, - get department(){ return DepartmentCreateNestedOneWithoutCoursesInputObjectSchema.optional(); } -}).strict(); -export const CourseCreateWithoutFacultyInputObjectSchema: z.ZodType = z.lazy(__makeSchema_CourseCreateWithoutFacultyInput_schema) as unknown as z.ZodType; -export const CourseCreateWithoutFacultyInputObjectZodSchema = z.lazy(__makeSchema_CourseCreateWithoutFacultyInput_schema); - - -// File: CourseUncheckedCreateWithoutFacultyInput.schema.ts -const __makeSchema_CourseUncheckedCreateWithoutFacultyInput_schema = () => z.object({ - id: z.string().optional(), - code: z.string(), - nameNo: z.string(), - nameEn: z.string().optional().nullable(), - credits: z.number().optional().nullable(), - studyLevel: StudyLevelSchema, - gradeType: GradeTypeSchema, - firstYearTaught: z.number().int(), - lastYearTaught: z.number().int().optional().nullable(), - contentNo: z.string().optional().nullable(), - contentEn: z.string().optional().nullable(), - teachingMethodsNo: z.string().optional().nullable(), - teachingMethodsEn: z.string().optional().nullable(), - learningOutcomesNo: z.string().optional().nullable(), - learningOutcomesEn: z.string().optional().nullable(), - examTypeNo: z.string().optional().nullable(), - examTypeEn: z.string().optional().nullable(), - candidateCount: z.number().int(), - averageGrade: z.number(), - passRate: z.number(), - createdAt: z.coerce.date().optional(), - updatedAt: z.coerce.date().optional(), - taughtSemesters: z.union([CourseCreatetaughtSemestersInputObjectSchema, SemesterSchema.array()]).optional(), - teachingLanguages: z.union([CourseCreateteachingLanguagesInputObjectSchema, TeachingLanguageSchema.array()]).optional(), - campuses: z.union([CourseCreatecampusesInputObjectSchema, CampusSchema.array()]).optional(), - departmentId: z.string().optional().nullable(), - latestYearCheckedForNtnuData: z.number().int().optional().nullable(), - get grades(){ return GradeUncheckedCreateNestedManyWithoutCourseInputObjectSchema.optional(); } -}).strict(); -export const CourseUncheckedCreateWithoutFacultyInputObjectSchema: z.ZodType = z.lazy(__makeSchema_CourseUncheckedCreateWithoutFacultyInput_schema) as unknown as z.ZodType; -export const CourseUncheckedCreateWithoutFacultyInputObjectZodSchema = z.lazy(__makeSchema_CourseUncheckedCreateWithoutFacultyInput_schema); - - -// File: CourseCreateOrConnectWithoutFacultyInput.schema.ts -const __makeSchema_CourseCreateOrConnectWithoutFacultyInput_schema = () => z.object({ - get where(){ return CourseWhereUniqueInputObjectSchema; }, - create: z.union([CourseCreateWithoutFacultyInputObjectSchema, CourseUncheckedCreateWithoutFacultyInputObjectSchema]) -}).strict(); -export const CourseCreateOrConnectWithoutFacultyInputObjectSchema: z.ZodType = z.lazy(__makeSchema_CourseCreateOrConnectWithoutFacultyInput_schema) as unknown as z.ZodType; -export const CourseCreateOrConnectWithoutFacultyInputObjectZodSchema = z.lazy(__makeSchema_CourseCreateOrConnectWithoutFacultyInput_schema); - - -// File: CourseCreateManyFacultyInputEnvelope.schema.ts -const __makeSchema_CourseCreateManyFacultyInputEnvelope_schema = () => z.object({ - data: z.union([CourseCreateManyFacultyInputObjectSchema, CourseCreateManyFacultyInputObjectSchema.array()]), - skipDuplicates: z.boolean().optional() -}).strict(); -export const CourseCreateManyFacultyInputEnvelopeObjectSchema: z.ZodType = z.lazy(__makeSchema_CourseCreateManyFacultyInputEnvelope_schema) as unknown as z.ZodType; -export const CourseCreateManyFacultyInputEnvelopeObjectZodSchema = z.lazy(__makeSchema_CourseCreateManyFacultyInputEnvelope_schema); - - -// File: DepartmentCreateWithoutFacultyInput.schema.ts -const __makeSchema_DepartmentCreateWithoutFacultyInput_schema = () => z.object({ - id: z.string().optional(), - nameNo: z.string(), - nameEn: z.string(), - code: z.number().int(), - get courses(){ return CourseCreateNestedManyWithoutDepartmentInputObjectSchema.optional(); } -}).strict(); -export const DepartmentCreateWithoutFacultyInputObjectSchema: z.ZodType = z.lazy(__makeSchema_DepartmentCreateWithoutFacultyInput_schema) as unknown as z.ZodType; -export const DepartmentCreateWithoutFacultyInputObjectZodSchema = z.lazy(__makeSchema_DepartmentCreateWithoutFacultyInput_schema); - - -// File: DepartmentUncheckedCreateWithoutFacultyInput.schema.ts -const __makeSchema_DepartmentUncheckedCreateWithoutFacultyInput_schema = () => z.object({ - id: z.string().optional(), - nameNo: z.string(), - nameEn: z.string(), - code: z.number().int(), - get courses(){ return CourseUncheckedCreateNestedManyWithoutDepartmentInputObjectSchema.optional(); } -}).strict(); -export const DepartmentUncheckedCreateWithoutFacultyInputObjectSchema: z.ZodType = z.lazy(__makeSchema_DepartmentUncheckedCreateWithoutFacultyInput_schema) as unknown as z.ZodType; -export const DepartmentUncheckedCreateWithoutFacultyInputObjectZodSchema = z.lazy(__makeSchema_DepartmentUncheckedCreateWithoutFacultyInput_schema); - - -// File: DepartmentCreateOrConnectWithoutFacultyInput.schema.ts -const __makeSchema_DepartmentCreateOrConnectWithoutFacultyInput_schema = () => z.object({ - get where(){ return DepartmentWhereUniqueInputObjectSchema; }, - create: z.union([DepartmentCreateWithoutFacultyInputObjectSchema, DepartmentUncheckedCreateWithoutFacultyInputObjectSchema]) -}).strict(); -export const DepartmentCreateOrConnectWithoutFacultyInputObjectSchema: z.ZodType = z.lazy(__makeSchema_DepartmentCreateOrConnectWithoutFacultyInput_schema) as unknown as z.ZodType; -export const DepartmentCreateOrConnectWithoutFacultyInputObjectZodSchema = z.lazy(__makeSchema_DepartmentCreateOrConnectWithoutFacultyInput_schema); - - -// File: DepartmentCreateManyFacultyInputEnvelope.schema.ts -const __makeSchema_DepartmentCreateManyFacultyInputEnvelope_schema = () => z.object({ - data: z.union([DepartmentCreateManyFacultyInputObjectSchema, DepartmentCreateManyFacultyInputObjectSchema.array()]), - skipDuplicates: z.boolean().optional() -}).strict(); -export const DepartmentCreateManyFacultyInputEnvelopeObjectSchema: z.ZodType = z.lazy(__makeSchema_DepartmentCreateManyFacultyInputEnvelope_schema) as unknown as z.ZodType; -export const DepartmentCreateManyFacultyInputEnvelopeObjectZodSchema = z.lazy(__makeSchema_DepartmentCreateManyFacultyInputEnvelope_schema); - - -// File: CourseUpsertWithWhereUniqueWithoutFacultyInput.schema.ts -const __makeSchema_CourseUpsertWithWhereUniqueWithoutFacultyInput_schema = () => z.object({ - get where(){ return CourseWhereUniqueInputObjectSchema; }, - update: z.union([CourseUpdateWithoutFacultyInputObjectSchema, CourseUncheckedUpdateWithoutFacultyInputObjectSchema]), - create: z.union([CourseCreateWithoutFacultyInputObjectSchema, CourseUncheckedCreateWithoutFacultyInputObjectSchema]) -}).strict(); -export const CourseUpsertWithWhereUniqueWithoutFacultyInputObjectSchema: z.ZodType = z.lazy(__makeSchema_CourseUpsertWithWhereUniqueWithoutFacultyInput_schema) as unknown as z.ZodType; -export const CourseUpsertWithWhereUniqueWithoutFacultyInputObjectZodSchema = z.lazy(__makeSchema_CourseUpsertWithWhereUniqueWithoutFacultyInput_schema); - - -// File: CourseUpdateWithWhereUniqueWithoutFacultyInput.schema.ts -const __makeSchema_CourseUpdateWithWhereUniqueWithoutFacultyInput_schema = () => z.object({ - get where(){ return CourseWhereUniqueInputObjectSchema; }, - data: z.union([CourseUpdateWithoutFacultyInputObjectSchema, CourseUncheckedUpdateWithoutFacultyInputObjectSchema]) -}).strict(); -export const CourseUpdateWithWhereUniqueWithoutFacultyInputObjectSchema: z.ZodType = z.lazy(__makeSchema_CourseUpdateWithWhereUniqueWithoutFacultyInput_schema) as unknown as z.ZodType; -export const CourseUpdateWithWhereUniqueWithoutFacultyInputObjectZodSchema = z.lazy(__makeSchema_CourseUpdateWithWhereUniqueWithoutFacultyInput_schema); - - -// File: CourseUpdateManyWithWhereWithoutFacultyInput.schema.ts -const __makeSchema_CourseUpdateManyWithWhereWithoutFacultyInput_schema = () => z.object({ - get where(){ return CourseScalarWhereInputObjectSchema; }, - data: z.union([CourseUpdateManyMutationInputObjectSchema, CourseUncheckedUpdateManyWithoutFacultyInputObjectSchema]) -}).strict(); -export const CourseUpdateManyWithWhereWithoutFacultyInputObjectSchema: z.ZodType = z.lazy(__makeSchema_CourseUpdateManyWithWhereWithoutFacultyInput_schema) as unknown as z.ZodType; -export const CourseUpdateManyWithWhereWithoutFacultyInputObjectZodSchema = z.lazy(__makeSchema_CourseUpdateManyWithWhereWithoutFacultyInput_schema); - - -// File: CourseScalarWhereInput.schema.ts -const __makeSchema_CourseScalarWhereInput_schema = () => z.object({ - AND: z.union([CourseScalarWhereInputObjectSchema, CourseScalarWhereInputObjectSchema.array()]).optional(), - get OR(){ return CourseScalarWhereInputObjectSchema.array().optional(); }, - NOT: z.union([CourseScalarWhereInputObjectSchema, CourseScalarWhereInputObjectSchema.array()]).optional(), - id: z.union([StringFilterObjectSchema, z.string()]).optional(), - code: z.union([StringFilterObjectSchema, z.string()]).optional(), - nameNo: z.union([StringFilterObjectSchema, z.string()]).optional(), - nameEn: z.union([StringNullableFilterObjectSchema, z.string()]).optional().nullable(), - credits: z.union([FloatNullableFilterObjectSchema, z.number()]).optional().nullable(), - studyLevel: z.union([EnumStudyLevelFilterObjectSchema, StudyLevelSchema]).optional(), - gradeType: z.union([EnumGradeTypeFilterObjectSchema, GradeTypeSchema]).optional(), - firstYearTaught: z.union([IntFilterObjectSchema, z.number().int()]).optional(), - lastYearTaught: z.union([IntNullableFilterObjectSchema, z.number().int()]).optional().nullable(), - contentNo: z.union([StringNullableFilterObjectSchema, z.string()]).optional().nullable(), - contentEn: z.union([StringNullableFilterObjectSchema, z.string()]).optional().nullable(), - teachingMethodsNo: z.union([StringNullableFilterObjectSchema, z.string()]).optional().nullable(), - teachingMethodsEn: z.union([StringNullableFilterObjectSchema, z.string()]).optional().nullable(), - learningOutcomesNo: z.union([StringNullableFilterObjectSchema, z.string()]).optional().nullable(), - learningOutcomesEn: z.union([StringNullableFilterObjectSchema, z.string()]).optional().nullable(), - examTypeNo: z.union([StringNullableFilterObjectSchema, z.string()]).optional().nullable(), - examTypeEn: z.union([StringNullableFilterObjectSchema, z.string()]).optional().nullable(), - candidateCount: z.union([IntFilterObjectSchema, z.number().int()]).optional(), - averageGrade: z.union([FloatFilterObjectSchema, z.number()]).optional(), - passRate: z.union([FloatFilterObjectSchema, z.number()]).optional(), - createdAt: z.union([DateTimeFilterObjectSchema, z.coerce.date()]).optional(), - updatedAt: z.union([DateTimeFilterObjectSchema, z.coerce.date()]).optional(), - get taughtSemesters(){ return EnumSemesterNullableListFilterObjectSchema.optional(); }, - get teachingLanguages(){ return EnumTeachingLanguageNullableListFilterObjectSchema.optional(); }, - get campuses(){ return EnumCampusNullableListFilterObjectSchema.optional(); }, - facultyId: z.union([StringNullableFilterObjectSchema, z.string()]).optional().nullable(), - departmentId: z.union([StringNullableFilterObjectSchema, z.string()]).optional().nullable(), - latestYearCheckedForNtnuData: z.union([IntNullableFilterObjectSchema, z.number().int()]).optional().nullable() -}).strict(); -export const CourseScalarWhereInputObjectSchema: z.ZodType = z.lazy(__makeSchema_CourseScalarWhereInput_schema) as unknown as z.ZodType; -export const CourseScalarWhereInputObjectZodSchema = z.lazy(__makeSchema_CourseScalarWhereInput_schema); - - -// File: DepartmentUpsertWithWhereUniqueWithoutFacultyInput.schema.ts -const __makeSchema_DepartmentUpsertWithWhereUniqueWithoutFacultyInput_schema = () => z.object({ - get where(){ return DepartmentWhereUniqueInputObjectSchema; }, - update: z.union([DepartmentUpdateWithoutFacultyInputObjectSchema, DepartmentUncheckedUpdateWithoutFacultyInputObjectSchema]), - create: z.union([DepartmentCreateWithoutFacultyInputObjectSchema, DepartmentUncheckedCreateWithoutFacultyInputObjectSchema]) -}).strict(); -export const DepartmentUpsertWithWhereUniqueWithoutFacultyInputObjectSchema: z.ZodType = z.lazy(__makeSchema_DepartmentUpsertWithWhereUniqueWithoutFacultyInput_schema) as unknown as z.ZodType; -export const DepartmentUpsertWithWhereUniqueWithoutFacultyInputObjectZodSchema = z.lazy(__makeSchema_DepartmentUpsertWithWhereUniqueWithoutFacultyInput_schema); - - -// File: DepartmentUpdateWithWhereUniqueWithoutFacultyInput.schema.ts -const __makeSchema_DepartmentUpdateWithWhereUniqueWithoutFacultyInput_schema = () => z.object({ - get where(){ return DepartmentWhereUniqueInputObjectSchema; }, - data: z.union([DepartmentUpdateWithoutFacultyInputObjectSchema, DepartmentUncheckedUpdateWithoutFacultyInputObjectSchema]) -}).strict(); -export const DepartmentUpdateWithWhereUniqueWithoutFacultyInputObjectSchema: z.ZodType = z.lazy(__makeSchema_DepartmentUpdateWithWhereUniqueWithoutFacultyInput_schema) as unknown as z.ZodType; -export const DepartmentUpdateWithWhereUniqueWithoutFacultyInputObjectZodSchema = z.lazy(__makeSchema_DepartmentUpdateWithWhereUniqueWithoutFacultyInput_schema); - - -// File: DepartmentUpdateManyWithWhereWithoutFacultyInput.schema.ts -const __makeSchema_DepartmentUpdateManyWithWhereWithoutFacultyInput_schema = () => z.object({ - get where(){ return DepartmentScalarWhereInputObjectSchema; }, - data: z.union([DepartmentUpdateManyMutationInputObjectSchema, DepartmentUncheckedUpdateManyWithoutFacultyInputObjectSchema]) -}).strict(); -export const DepartmentUpdateManyWithWhereWithoutFacultyInputObjectSchema: z.ZodType = z.lazy(__makeSchema_DepartmentUpdateManyWithWhereWithoutFacultyInput_schema) as unknown as z.ZodType; -export const DepartmentUpdateManyWithWhereWithoutFacultyInputObjectZodSchema = z.lazy(__makeSchema_DepartmentUpdateManyWithWhereWithoutFacultyInput_schema); - - -// File: DepartmentScalarWhereInput.schema.ts -const __makeSchema_DepartmentScalarWhereInput_schema = () => z.object({ - AND: z.union([DepartmentScalarWhereInputObjectSchema, DepartmentScalarWhereInputObjectSchema.array()]).optional(), - get OR(){ return DepartmentScalarWhereInputObjectSchema.array().optional(); }, - NOT: z.union([DepartmentScalarWhereInputObjectSchema, DepartmentScalarWhereInputObjectSchema.array()]).optional(), - id: z.union([StringFilterObjectSchema, z.string()]).optional(), - nameNo: z.union([StringFilterObjectSchema, z.string()]).optional(), - nameEn: z.union([StringFilterObjectSchema, z.string()]).optional(), - code: z.union([IntFilterObjectSchema, z.number().int()]).optional(), - facultyId: z.union([StringFilterObjectSchema, z.string()]).optional() -}).strict(); -export const DepartmentScalarWhereInputObjectSchema: z.ZodType = z.lazy(__makeSchema_DepartmentScalarWhereInput_schema) as unknown as z.ZodType; -export const DepartmentScalarWhereInputObjectZodSchema = z.lazy(__makeSchema_DepartmentScalarWhereInput_schema); - - -// File: CourseCreateWithoutDepartmentInput.schema.ts -const __makeSchema_CourseCreateWithoutDepartmentInput_schema = () => z.object({ - id: z.string().optional(), - code: z.string(), - nameNo: z.string(), - nameEn: z.string().optional().nullable(), - credits: z.number().optional().nullable(), - studyLevel: StudyLevelSchema, - gradeType: GradeTypeSchema, - firstYearTaught: z.number().int(), - lastYearTaught: z.number().int().optional().nullable(), - contentNo: z.string().optional().nullable(), - contentEn: z.string().optional().nullable(), - teachingMethodsNo: z.string().optional().nullable(), - teachingMethodsEn: z.string().optional().nullable(), - learningOutcomesNo: z.string().optional().nullable(), - learningOutcomesEn: z.string().optional().nullable(), - examTypeNo: z.string().optional().nullable(), - examTypeEn: z.string().optional().nullable(), - candidateCount: z.number().int(), - averageGrade: z.number(), - passRate: z.number(), - createdAt: z.coerce.date().optional(), - updatedAt: z.coerce.date().optional(), - taughtSemesters: z.union([CourseCreatetaughtSemestersInputObjectSchema, SemesterSchema.array()]).optional(), - teachingLanguages: z.union([CourseCreateteachingLanguagesInputObjectSchema, TeachingLanguageSchema.array()]).optional(), - campuses: z.union([CourseCreatecampusesInputObjectSchema, CampusSchema.array()]).optional(), - latestYearCheckedForNtnuData: z.number().int().optional().nullable(), - get grades(){ return GradeCreateNestedManyWithoutCourseInputObjectSchema.optional(); }, - get faculty(){ return FacultyCreateNestedOneWithoutCoursesInputObjectSchema.optional(); } -}).strict(); -export const CourseCreateWithoutDepartmentInputObjectSchema: z.ZodType = z.lazy(__makeSchema_CourseCreateWithoutDepartmentInput_schema) as unknown as z.ZodType; -export const CourseCreateWithoutDepartmentInputObjectZodSchema = z.lazy(__makeSchema_CourseCreateWithoutDepartmentInput_schema); - - -// File: CourseUncheckedCreateWithoutDepartmentInput.schema.ts -const __makeSchema_CourseUncheckedCreateWithoutDepartmentInput_schema = () => z.object({ - id: z.string().optional(), - code: z.string(), - nameNo: z.string(), - nameEn: z.string().optional().nullable(), - credits: z.number().optional().nullable(), - studyLevel: StudyLevelSchema, - gradeType: GradeTypeSchema, - firstYearTaught: z.number().int(), - lastYearTaught: z.number().int().optional().nullable(), - contentNo: z.string().optional().nullable(), - contentEn: z.string().optional().nullable(), - teachingMethodsNo: z.string().optional().nullable(), - teachingMethodsEn: z.string().optional().nullable(), - learningOutcomesNo: z.string().optional().nullable(), - learningOutcomesEn: z.string().optional().nullable(), - examTypeNo: z.string().optional().nullable(), - examTypeEn: z.string().optional().nullable(), - candidateCount: z.number().int(), - averageGrade: z.number(), - passRate: z.number(), - createdAt: z.coerce.date().optional(), - updatedAt: z.coerce.date().optional(), - taughtSemesters: z.union([CourseCreatetaughtSemestersInputObjectSchema, SemesterSchema.array()]).optional(), - teachingLanguages: z.union([CourseCreateteachingLanguagesInputObjectSchema, TeachingLanguageSchema.array()]).optional(), - campuses: z.union([CourseCreatecampusesInputObjectSchema, CampusSchema.array()]).optional(), - facultyId: z.string().optional().nullable(), - latestYearCheckedForNtnuData: z.number().int().optional().nullable(), - get grades(){ return GradeUncheckedCreateNestedManyWithoutCourseInputObjectSchema.optional(); } -}).strict(); -export const CourseUncheckedCreateWithoutDepartmentInputObjectSchema: z.ZodType = z.lazy(__makeSchema_CourseUncheckedCreateWithoutDepartmentInput_schema) as unknown as z.ZodType; -export const CourseUncheckedCreateWithoutDepartmentInputObjectZodSchema = z.lazy(__makeSchema_CourseUncheckedCreateWithoutDepartmentInput_schema); - - -// File: CourseCreateOrConnectWithoutDepartmentInput.schema.ts -const __makeSchema_CourseCreateOrConnectWithoutDepartmentInput_schema = () => z.object({ - get where(){ return CourseWhereUniqueInputObjectSchema; }, - create: z.union([CourseCreateWithoutDepartmentInputObjectSchema, CourseUncheckedCreateWithoutDepartmentInputObjectSchema]) -}).strict(); -export const CourseCreateOrConnectWithoutDepartmentInputObjectSchema: z.ZodType = z.lazy(__makeSchema_CourseCreateOrConnectWithoutDepartmentInput_schema) as unknown as z.ZodType; -export const CourseCreateOrConnectWithoutDepartmentInputObjectZodSchema = z.lazy(__makeSchema_CourseCreateOrConnectWithoutDepartmentInput_schema); - - -// File: CourseCreateManyDepartmentInputEnvelope.schema.ts -const __makeSchema_CourseCreateManyDepartmentInputEnvelope_schema = () => z.object({ - data: z.union([CourseCreateManyDepartmentInputObjectSchema, CourseCreateManyDepartmentInputObjectSchema.array()]), - skipDuplicates: z.boolean().optional() -}).strict(); -export const CourseCreateManyDepartmentInputEnvelopeObjectSchema: z.ZodType = z.lazy(__makeSchema_CourseCreateManyDepartmentInputEnvelope_schema) as unknown as z.ZodType; -export const CourseCreateManyDepartmentInputEnvelopeObjectZodSchema = z.lazy(__makeSchema_CourseCreateManyDepartmentInputEnvelope_schema); - - -// File: FacultyCreateWithoutDepartmentsInput.schema.ts -const __makeSchema_FacultyCreateWithoutDepartmentsInput_schema = () => z.object({ - id: z.string().optional(), - nameNo: z.string(), - nameEn: z.string(), - code: z.number().int(), - get courses(){ return CourseCreateNestedManyWithoutFacultyInputObjectSchema.optional(); } -}).strict(); -export const FacultyCreateWithoutDepartmentsInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FacultyCreateWithoutDepartmentsInput_schema) as unknown as z.ZodType; -export const FacultyCreateWithoutDepartmentsInputObjectZodSchema = z.lazy(__makeSchema_FacultyCreateWithoutDepartmentsInput_schema); - - -// File: FacultyUncheckedCreateWithoutDepartmentsInput.schema.ts -const __makeSchema_FacultyUncheckedCreateWithoutDepartmentsInput_schema = () => z.object({ - id: z.string().optional(), - nameNo: z.string(), - nameEn: z.string(), - code: z.number().int(), - get courses(){ return CourseUncheckedCreateNestedManyWithoutFacultyInputObjectSchema.optional(); } -}).strict(); -export const FacultyUncheckedCreateWithoutDepartmentsInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FacultyUncheckedCreateWithoutDepartmentsInput_schema) as unknown as z.ZodType; -export const FacultyUncheckedCreateWithoutDepartmentsInputObjectZodSchema = z.lazy(__makeSchema_FacultyUncheckedCreateWithoutDepartmentsInput_schema); - - -// File: FacultyCreateOrConnectWithoutDepartmentsInput.schema.ts -const __makeSchema_FacultyCreateOrConnectWithoutDepartmentsInput_schema = () => z.object({ - get where(){ return FacultyWhereUniqueInputObjectSchema; }, - create: z.union([FacultyCreateWithoutDepartmentsInputObjectSchema, FacultyUncheckedCreateWithoutDepartmentsInputObjectSchema]) -}).strict(); -export const FacultyCreateOrConnectWithoutDepartmentsInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FacultyCreateOrConnectWithoutDepartmentsInput_schema) as unknown as z.ZodType; -export const FacultyCreateOrConnectWithoutDepartmentsInputObjectZodSchema = z.lazy(__makeSchema_FacultyCreateOrConnectWithoutDepartmentsInput_schema); - - -// File: CourseUpsertWithWhereUniqueWithoutDepartmentInput.schema.ts -const __makeSchema_CourseUpsertWithWhereUniqueWithoutDepartmentInput_schema = () => z.object({ - get where(){ return CourseWhereUniqueInputObjectSchema; }, - update: z.union([CourseUpdateWithoutDepartmentInputObjectSchema, CourseUncheckedUpdateWithoutDepartmentInputObjectSchema]), - create: z.union([CourseCreateWithoutDepartmentInputObjectSchema, CourseUncheckedCreateWithoutDepartmentInputObjectSchema]) -}).strict(); -export const CourseUpsertWithWhereUniqueWithoutDepartmentInputObjectSchema: z.ZodType = z.lazy(__makeSchema_CourseUpsertWithWhereUniqueWithoutDepartmentInput_schema) as unknown as z.ZodType; -export const CourseUpsertWithWhereUniqueWithoutDepartmentInputObjectZodSchema = z.lazy(__makeSchema_CourseUpsertWithWhereUniqueWithoutDepartmentInput_schema); - - -// File: CourseUpdateWithWhereUniqueWithoutDepartmentInput.schema.ts -const __makeSchema_CourseUpdateWithWhereUniqueWithoutDepartmentInput_schema = () => z.object({ - get where(){ return CourseWhereUniqueInputObjectSchema; }, - data: z.union([CourseUpdateWithoutDepartmentInputObjectSchema, CourseUncheckedUpdateWithoutDepartmentInputObjectSchema]) -}).strict(); -export const CourseUpdateWithWhereUniqueWithoutDepartmentInputObjectSchema: z.ZodType = z.lazy(__makeSchema_CourseUpdateWithWhereUniqueWithoutDepartmentInput_schema) as unknown as z.ZodType; -export const CourseUpdateWithWhereUniqueWithoutDepartmentInputObjectZodSchema = z.lazy(__makeSchema_CourseUpdateWithWhereUniqueWithoutDepartmentInput_schema); - - -// File: CourseUpdateManyWithWhereWithoutDepartmentInput.schema.ts -const __makeSchema_CourseUpdateManyWithWhereWithoutDepartmentInput_schema = () => z.object({ - get where(){ return CourseScalarWhereInputObjectSchema; }, - data: z.union([CourseUpdateManyMutationInputObjectSchema, CourseUncheckedUpdateManyWithoutDepartmentInputObjectSchema]) -}).strict(); -export const CourseUpdateManyWithWhereWithoutDepartmentInputObjectSchema: z.ZodType = z.lazy(__makeSchema_CourseUpdateManyWithWhereWithoutDepartmentInput_schema) as unknown as z.ZodType; -export const CourseUpdateManyWithWhereWithoutDepartmentInputObjectZodSchema = z.lazy(__makeSchema_CourseUpdateManyWithWhereWithoutDepartmentInput_schema); - - -// File: FacultyUpsertWithoutDepartmentsInput.schema.ts -const __makeSchema_FacultyUpsertWithoutDepartmentsInput_schema = () => z.object({ - update: z.union([FacultyUpdateWithoutDepartmentsInputObjectSchema, FacultyUncheckedUpdateWithoutDepartmentsInputObjectSchema]), - create: z.union([FacultyCreateWithoutDepartmentsInputObjectSchema, FacultyUncheckedCreateWithoutDepartmentsInputObjectSchema]), - get where(){ return FacultyWhereInputObjectSchema.optional(); } -}).strict(); -export const FacultyUpsertWithoutDepartmentsInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FacultyUpsertWithoutDepartmentsInput_schema) as unknown as z.ZodType; -export const FacultyUpsertWithoutDepartmentsInputObjectZodSchema = z.lazy(__makeSchema_FacultyUpsertWithoutDepartmentsInput_schema); - - -// File: FacultyUpdateToOneWithWhereWithoutDepartmentsInput.schema.ts -const __makeSchema_FacultyUpdateToOneWithWhereWithoutDepartmentsInput_schema = () => z.object({ - get where(){ return FacultyWhereInputObjectSchema.optional(); }, - data: z.union([FacultyUpdateWithoutDepartmentsInputObjectSchema, FacultyUncheckedUpdateWithoutDepartmentsInputObjectSchema]) -}).strict(); -export const FacultyUpdateToOneWithWhereWithoutDepartmentsInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FacultyUpdateToOneWithWhereWithoutDepartmentsInput_schema) as unknown as z.ZodType; -export const FacultyUpdateToOneWithWhereWithoutDepartmentsInputObjectZodSchema = z.lazy(__makeSchema_FacultyUpdateToOneWithWhereWithoutDepartmentsInput_schema); - - -// File: FacultyUpdateWithoutDepartmentsInput.schema.ts -const __makeSchema_FacultyUpdateWithoutDepartmentsInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - nameNo: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - nameEn: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - code: z.union([z.number().int(), IntFieldUpdateOperationsInputObjectSchema]).optional(), - get courses(){ return CourseUpdateManyWithoutFacultyNestedInputObjectSchema.optional(); } -}).strict(); -export const FacultyUpdateWithoutDepartmentsInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FacultyUpdateWithoutDepartmentsInput_schema) as unknown as z.ZodType; -export const FacultyUpdateWithoutDepartmentsInputObjectZodSchema = z.lazy(__makeSchema_FacultyUpdateWithoutDepartmentsInput_schema); - - -// File: FacultyUncheckedUpdateWithoutDepartmentsInput.schema.ts -const __makeSchema_FacultyUncheckedUpdateWithoutDepartmentsInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - nameNo: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - nameEn: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - code: z.union([z.number().int(), IntFieldUpdateOperationsInputObjectSchema]).optional(), - get courses(){ return CourseUncheckedUpdateManyWithoutFacultyNestedInputObjectSchema.optional(); } -}).strict(); -export const FacultyUncheckedUpdateWithoutDepartmentsInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FacultyUncheckedUpdateWithoutDepartmentsInput_schema) as unknown as z.ZodType; -export const FacultyUncheckedUpdateWithoutDepartmentsInputObjectZodSchema = z.lazy(__makeSchema_FacultyUncheckedUpdateWithoutDepartmentsInput_schema); - - -// File: GradeCreateManyCourseInput.schema.ts -const __makeSchema_GradeCreateManyCourseInput_schema = () => z.object({ - id: z.string().optional(), - gradeACount: z.number().int(), - gradeBCount: z.number().int(), - gradeCCount: z.number().int(), - gradeDCount: z.number().int(), - gradeECount: z.number().int(), - gradeFCount: z.number().int(), - passedCount: z.number().int(), - failedCount: z.number().int(), - semester: SemesterSchema, - year: z.number().int(), - createdAt: z.coerce.date().optional(), - updatedAt: z.coerce.date().optional() -}).strict(); -export const GradeCreateManyCourseInputObjectSchema: z.ZodType = z.lazy(__makeSchema_GradeCreateManyCourseInput_schema) as unknown as z.ZodType; -export const GradeCreateManyCourseInputObjectZodSchema = z.lazy(__makeSchema_GradeCreateManyCourseInput_schema); - - -// File: GradeUpdateWithoutCourseInput.schema.ts -const __makeSchema_GradeUpdateWithoutCourseInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - gradeACount: z.union([z.number().int(), IntFieldUpdateOperationsInputObjectSchema]).optional(), - gradeBCount: z.union([z.number().int(), IntFieldUpdateOperationsInputObjectSchema]).optional(), - gradeCCount: z.union([z.number().int(), IntFieldUpdateOperationsInputObjectSchema]).optional(), - gradeDCount: z.union([z.number().int(), IntFieldUpdateOperationsInputObjectSchema]).optional(), - gradeECount: z.union([z.number().int(), IntFieldUpdateOperationsInputObjectSchema]).optional(), - gradeFCount: z.union([z.number().int(), IntFieldUpdateOperationsInputObjectSchema]).optional(), - passedCount: z.union([z.number().int(), IntFieldUpdateOperationsInputObjectSchema]).optional(), - failedCount: z.union([z.number().int(), IntFieldUpdateOperationsInputObjectSchema]).optional(), - semester: z.union([SemesterSchema, EnumSemesterFieldUpdateOperationsInputObjectSchema]).optional(), - year: z.union([z.number().int(), IntFieldUpdateOperationsInputObjectSchema]).optional(), - createdAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - updatedAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional() -}).strict(); -export const GradeUpdateWithoutCourseInputObjectSchema: z.ZodType = z.lazy(__makeSchema_GradeUpdateWithoutCourseInput_schema) as unknown as z.ZodType; -export const GradeUpdateWithoutCourseInputObjectZodSchema = z.lazy(__makeSchema_GradeUpdateWithoutCourseInput_schema); - - -// File: GradeUncheckedUpdateWithoutCourseInput.schema.ts -const __makeSchema_GradeUncheckedUpdateWithoutCourseInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - gradeACount: z.union([z.number().int(), IntFieldUpdateOperationsInputObjectSchema]).optional(), - gradeBCount: z.union([z.number().int(), IntFieldUpdateOperationsInputObjectSchema]).optional(), - gradeCCount: z.union([z.number().int(), IntFieldUpdateOperationsInputObjectSchema]).optional(), - gradeDCount: z.union([z.number().int(), IntFieldUpdateOperationsInputObjectSchema]).optional(), - gradeECount: z.union([z.number().int(), IntFieldUpdateOperationsInputObjectSchema]).optional(), - gradeFCount: z.union([z.number().int(), IntFieldUpdateOperationsInputObjectSchema]).optional(), - passedCount: z.union([z.number().int(), IntFieldUpdateOperationsInputObjectSchema]).optional(), - failedCount: z.union([z.number().int(), IntFieldUpdateOperationsInputObjectSchema]).optional(), - semester: z.union([SemesterSchema, EnumSemesterFieldUpdateOperationsInputObjectSchema]).optional(), - year: z.union([z.number().int(), IntFieldUpdateOperationsInputObjectSchema]).optional(), - createdAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - updatedAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional() -}).strict(); -export const GradeUncheckedUpdateWithoutCourseInputObjectSchema: z.ZodType = z.lazy(__makeSchema_GradeUncheckedUpdateWithoutCourseInput_schema) as unknown as z.ZodType; -export const GradeUncheckedUpdateWithoutCourseInputObjectZodSchema = z.lazy(__makeSchema_GradeUncheckedUpdateWithoutCourseInput_schema); - - -// File: GradeUncheckedUpdateManyWithoutCourseInput.schema.ts -const __makeSchema_GradeUncheckedUpdateManyWithoutCourseInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - gradeACount: z.union([z.number().int(), IntFieldUpdateOperationsInputObjectSchema]).optional(), - gradeBCount: z.union([z.number().int(), IntFieldUpdateOperationsInputObjectSchema]).optional(), - gradeCCount: z.union([z.number().int(), IntFieldUpdateOperationsInputObjectSchema]).optional(), - gradeDCount: z.union([z.number().int(), IntFieldUpdateOperationsInputObjectSchema]).optional(), - gradeECount: z.union([z.number().int(), IntFieldUpdateOperationsInputObjectSchema]).optional(), - gradeFCount: z.union([z.number().int(), IntFieldUpdateOperationsInputObjectSchema]).optional(), - passedCount: z.union([z.number().int(), IntFieldUpdateOperationsInputObjectSchema]).optional(), - failedCount: z.union([z.number().int(), IntFieldUpdateOperationsInputObjectSchema]).optional(), - semester: z.union([SemesterSchema, EnumSemesterFieldUpdateOperationsInputObjectSchema]).optional(), - year: z.union([z.number().int(), IntFieldUpdateOperationsInputObjectSchema]).optional(), - createdAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - updatedAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional() -}).strict(); -export const GradeUncheckedUpdateManyWithoutCourseInputObjectSchema: z.ZodType = z.lazy(__makeSchema_GradeUncheckedUpdateManyWithoutCourseInput_schema) as unknown as z.ZodType; -export const GradeUncheckedUpdateManyWithoutCourseInputObjectZodSchema = z.lazy(__makeSchema_GradeUncheckedUpdateManyWithoutCourseInput_schema); - - -// File: CourseCreateManyFacultyInput.schema.ts -const __makeSchema_CourseCreateManyFacultyInput_schema = () => z.object({ - id: z.string().optional(), - code: z.string(), - nameNo: z.string(), - nameEn: z.string().optional().nullable(), - credits: z.number().optional().nullable(), - studyLevel: StudyLevelSchema, - gradeType: GradeTypeSchema, - firstYearTaught: z.number().int(), - lastYearTaught: z.number().int().optional().nullable(), - contentNo: z.string().optional().nullable(), - contentEn: z.string().optional().nullable(), - teachingMethodsNo: z.string().optional().nullable(), - teachingMethodsEn: z.string().optional().nullable(), - learningOutcomesNo: z.string().optional().nullable(), - learningOutcomesEn: z.string().optional().nullable(), - examTypeNo: z.string().optional().nullable(), - examTypeEn: z.string().optional().nullable(), - candidateCount: z.number().int(), - averageGrade: z.number(), - passRate: z.number(), - createdAt: z.coerce.date().optional(), - updatedAt: z.coerce.date().optional(), - taughtSemesters: z.union([CourseCreatetaughtSemestersInputObjectSchema, SemesterSchema.array()]).optional(), - teachingLanguages: z.union([CourseCreateteachingLanguagesInputObjectSchema, TeachingLanguageSchema.array()]).optional(), - campuses: z.union([CourseCreatecampusesInputObjectSchema, CampusSchema.array()]).optional(), - departmentId: z.string().optional().nullable(), - latestYearCheckedForNtnuData: z.number().int().optional().nullable() -}).strict(); -export const CourseCreateManyFacultyInputObjectSchema: z.ZodType = z.lazy(__makeSchema_CourseCreateManyFacultyInput_schema) as unknown as z.ZodType; -export const CourseCreateManyFacultyInputObjectZodSchema = z.lazy(__makeSchema_CourseCreateManyFacultyInput_schema); - - -// File: DepartmentCreateManyFacultyInput.schema.ts -const __makeSchema_DepartmentCreateManyFacultyInput_schema = () => z.object({ - id: z.string().optional(), - nameNo: z.string(), - nameEn: z.string(), - code: z.number().int() -}).strict(); -export const DepartmentCreateManyFacultyInputObjectSchema: z.ZodType = z.lazy(__makeSchema_DepartmentCreateManyFacultyInput_schema) as unknown as z.ZodType; -export const DepartmentCreateManyFacultyInputObjectZodSchema = z.lazy(__makeSchema_DepartmentCreateManyFacultyInput_schema); - - -// File: CourseUpdateWithoutFacultyInput.schema.ts -const __makeSchema_CourseUpdateWithoutFacultyInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - code: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - nameNo: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - nameEn: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - credits: z.union([z.number(), NullableFloatFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - studyLevel: z.union([StudyLevelSchema, EnumStudyLevelFieldUpdateOperationsInputObjectSchema]).optional(), - gradeType: z.union([GradeTypeSchema, EnumGradeTypeFieldUpdateOperationsInputObjectSchema]).optional(), - firstYearTaught: z.union([z.number().int(), IntFieldUpdateOperationsInputObjectSchema]).optional(), - lastYearTaught: z.union([z.number().int(), NullableIntFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - contentNo: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - contentEn: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - teachingMethodsNo: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - teachingMethodsEn: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - learningOutcomesNo: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - learningOutcomesEn: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - examTypeNo: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - examTypeEn: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - candidateCount: z.union([z.number().int(), IntFieldUpdateOperationsInputObjectSchema]).optional(), - averageGrade: z.union([z.number(), FloatFieldUpdateOperationsInputObjectSchema]).optional(), - passRate: z.union([z.number(), FloatFieldUpdateOperationsInputObjectSchema]).optional(), - createdAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - updatedAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - taughtSemesters: z.union([CourseUpdatetaughtSemestersInputObjectSchema, SemesterSchema.array()]).optional(), - teachingLanguages: z.union([CourseUpdateteachingLanguagesInputObjectSchema, TeachingLanguageSchema.array()]).optional(), - campuses: z.union([CourseUpdatecampusesInputObjectSchema, CampusSchema.array()]).optional(), - latestYearCheckedForNtnuData: z.union([z.number().int(), NullableIntFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - get grades(){ return GradeUpdateManyWithoutCourseNestedInputObjectSchema.optional(); }, - get department(){ return DepartmentUpdateOneWithoutCoursesNestedInputObjectSchema.optional(); } -}).strict(); -export const CourseUpdateWithoutFacultyInputObjectSchema: z.ZodType = z.lazy(__makeSchema_CourseUpdateWithoutFacultyInput_schema) as unknown as z.ZodType; -export const CourseUpdateWithoutFacultyInputObjectZodSchema = z.lazy(__makeSchema_CourseUpdateWithoutFacultyInput_schema); - - -// File: CourseUncheckedUpdateWithoutFacultyInput.schema.ts -const __makeSchema_CourseUncheckedUpdateWithoutFacultyInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - code: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - nameNo: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - nameEn: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - credits: z.union([z.number(), NullableFloatFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - studyLevel: z.union([StudyLevelSchema, EnumStudyLevelFieldUpdateOperationsInputObjectSchema]).optional(), - gradeType: z.union([GradeTypeSchema, EnumGradeTypeFieldUpdateOperationsInputObjectSchema]).optional(), - firstYearTaught: z.union([z.number().int(), IntFieldUpdateOperationsInputObjectSchema]).optional(), - lastYearTaught: z.union([z.number().int(), NullableIntFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - contentNo: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - contentEn: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - teachingMethodsNo: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - teachingMethodsEn: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - learningOutcomesNo: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - learningOutcomesEn: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - examTypeNo: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - examTypeEn: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - candidateCount: z.union([z.number().int(), IntFieldUpdateOperationsInputObjectSchema]).optional(), - averageGrade: z.union([z.number(), FloatFieldUpdateOperationsInputObjectSchema]).optional(), - passRate: z.union([z.number(), FloatFieldUpdateOperationsInputObjectSchema]).optional(), - createdAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - updatedAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - taughtSemesters: z.union([CourseUpdatetaughtSemestersInputObjectSchema, SemesterSchema.array()]).optional(), - teachingLanguages: z.union([CourseUpdateteachingLanguagesInputObjectSchema, TeachingLanguageSchema.array()]).optional(), - campuses: z.union([CourseUpdatecampusesInputObjectSchema, CampusSchema.array()]).optional(), - departmentId: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - latestYearCheckedForNtnuData: z.union([z.number().int(), NullableIntFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - get grades(){ return GradeUncheckedUpdateManyWithoutCourseNestedInputObjectSchema.optional(); } -}).strict(); -export const CourseUncheckedUpdateWithoutFacultyInputObjectSchema: z.ZodType = z.lazy(__makeSchema_CourseUncheckedUpdateWithoutFacultyInput_schema) as unknown as z.ZodType; -export const CourseUncheckedUpdateWithoutFacultyInputObjectZodSchema = z.lazy(__makeSchema_CourseUncheckedUpdateWithoutFacultyInput_schema); - - -// File: CourseUncheckedUpdateManyWithoutFacultyInput.schema.ts -const __makeSchema_CourseUncheckedUpdateManyWithoutFacultyInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - code: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - nameNo: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - nameEn: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - credits: z.union([z.number(), NullableFloatFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - studyLevel: z.union([StudyLevelSchema, EnumStudyLevelFieldUpdateOperationsInputObjectSchema]).optional(), - gradeType: z.union([GradeTypeSchema, EnumGradeTypeFieldUpdateOperationsInputObjectSchema]).optional(), - firstYearTaught: z.union([z.number().int(), IntFieldUpdateOperationsInputObjectSchema]).optional(), - lastYearTaught: z.union([z.number().int(), NullableIntFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - contentNo: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - contentEn: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - teachingMethodsNo: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - teachingMethodsEn: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - learningOutcomesNo: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - learningOutcomesEn: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - examTypeNo: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - examTypeEn: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - candidateCount: z.union([z.number().int(), IntFieldUpdateOperationsInputObjectSchema]).optional(), - averageGrade: z.union([z.number(), FloatFieldUpdateOperationsInputObjectSchema]).optional(), - passRate: z.union([z.number(), FloatFieldUpdateOperationsInputObjectSchema]).optional(), - createdAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - updatedAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - taughtSemesters: z.union([CourseUpdatetaughtSemestersInputObjectSchema, SemesterSchema.array()]).optional(), - teachingLanguages: z.union([CourseUpdateteachingLanguagesInputObjectSchema, TeachingLanguageSchema.array()]).optional(), - campuses: z.union([CourseUpdatecampusesInputObjectSchema, CampusSchema.array()]).optional(), - departmentId: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - latestYearCheckedForNtnuData: z.union([z.number().int(), NullableIntFieldUpdateOperationsInputObjectSchema]).optional().nullable() -}).strict(); -export const CourseUncheckedUpdateManyWithoutFacultyInputObjectSchema: z.ZodType = z.lazy(__makeSchema_CourseUncheckedUpdateManyWithoutFacultyInput_schema) as unknown as z.ZodType; -export const CourseUncheckedUpdateManyWithoutFacultyInputObjectZodSchema = z.lazy(__makeSchema_CourseUncheckedUpdateManyWithoutFacultyInput_schema); - - -// File: DepartmentUpdateWithoutFacultyInput.schema.ts -const __makeSchema_DepartmentUpdateWithoutFacultyInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - nameNo: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - nameEn: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - code: z.union([z.number().int(), IntFieldUpdateOperationsInputObjectSchema]).optional(), - get courses(){ return CourseUpdateManyWithoutDepartmentNestedInputObjectSchema.optional(); } -}).strict(); -export const DepartmentUpdateWithoutFacultyInputObjectSchema: z.ZodType = z.lazy(__makeSchema_DepartmentUpdateWithoutFacultyInput_schema) as unknown as z.ZodType; -export const DepartmentUpdateWithoutFacultyInputObjectZodSchema = z.lazy(__makeSchema_DepartmentUpdateWithoutFacultyInput_schema); - - -// File: DepartmentUncheckedUpdateWithoutFacultyInput.schema.ts -const __makeSchema_DepartmentUncheckedUpdateWithoutFacultyInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - nameNo: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - nameEn: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - code: z.union([z.number().int(), IntFieldUpdateOperationsInputObjectSchema]).optional(), - get courses(){ return CourseUncheckedUpdateManyWithoutDepartmentNestedInputObjectSchema.optional(); } -}).strict(); -export const DepartmentUncheckedUpdateWithoutFacultyInputObjectSchema: z.ZodType = z.lazy(__makeSchema_DepartmentUncheckedUpdateWithoutFacultyInput_schema) as unknown as z.ZodType; -export const DepartmentUncheckedUpdateWithoutFacultyInputObjectZodSchema = z.lazy(__makeSchema_DepartmentUncheckedUpdateWithoutFacultyInput_schema); - - -// File: DepartmentUncheckedUpdateManyWithoutFacultyInput.schema.ts -const __makeSchema_DepartmentUncheckedUpdateManyWithoutFacultyInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - nameNo: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - nameEn: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - code: z.union([z.number().int(), IntFieldUpdateOperationsInputObjectSchema]).optional() -}).strict(); -export const DepartmentUncheckedUpdateManyWithoutFacultyInputObjectSchema: z.ZodType = z.lazy(__makeSchema_DepartmentUncheckedUpdateManyWithoutFacultyInput_schema) as unknown as z.ZodType; -export const DepartmentUncheckedUpdateManyWithoutFacultyInputObjectZodSchema = z.lazy(__makeSchema_DepartmentUncheckedUpdateManyWithoutFacultyInput_schema); - - -// File: CourseCreateManyDepartmentInput.schema.ts -const __makeSchema_CourseCreateManyDepartmentInput_schema = () => z.object({ - id: z.string().optional(), - code: z.string(), - nameNo: z.string(), - nameEn: z.string().optional().nullable(), - credits: z.number().optional().nullable(), - studyLevel: StudyLevelSchema, - gradeType: GradeTypeSchema, - firstYearTaught: z.number().int(), - lastYearTaught: z.number().int().optional().nullable(), - contentNo: z.string().optional().nullable(), - contentEn: z.string().optional().nullable(), - teachingMethodsNo: z.string().optional().nullable(), - teachingMethodsEn: z.string().optional().nullable(), - learningOutcomesNo: z.string().optional().nullable(), - learningOutcomesEn: z.string().optional().nullable(), - examTypeNo: z.string().optional().nullable(), - examTypeEn: z.string().optional().nullable(), - candidateCount: z.number().int(), - averageGrade: z.number(), - passRate: z.number(), - createdAt: z.coerce.date().optional(), - updatedAt: z.coerce.date().optional(), - taughtSemesters: z.union([CourseCreatetaughtSemestersInputObjectSchema, SemesterSchema.array()]).optional(), - teachingLanguages: z.union([CourseCreateteachingLanguagesInputObjectSchema, TeachingLanguageSchema.array()]).optional(), - campuses: z.union([CourseCreatecampusesInputObjectSchema, CampusSchema.array()]).optional(), - facultyId: z.string().optional().nullable(), - latestYearCheckedForNtnuData: z.number().int().optional().nullable() -}).strict(); -export const CourseCreateManyDepartmentInputObjectSchema: z.ZodType = z.lazy(__makeSchema_CourseCreateManyDepartmentInput_schema) as unknown as z.ZodType; -export const CourseCreateManyDepartmentInputObjectZodSchema = z.lazy(__makeSchema_CourseCreateManyDepartmentInput_schema); - - -// File: CourseUpdateWithoutDepartmentInput.schema.ts -const __makeSchema_CourseUpdateWithoutDepartmentInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - code: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - nameNo: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - nameEn: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - credits: z.union([z.number(), NullableFloatFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - studyLevel: z.union([StudyLevelSchema, EnumStudyLevelFieldUpdateOperationsInputObjectSchema]).optional(), - gradeType: z.union([GradeTypeSchema, EnumGradeTypeFieldUpdateOperationsInputObjectSchema]).optional(), - firstYearTaught: z.union([z.number().int(), IntFieldUpdateOperationsInputObjectSchema]).optional(), - lastYearTaught: z.union([z.number().int(), NullableIntFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - contentNo: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - contentEn: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - teachingMethodsNo: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - teachingMethodsEn: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - learningOutcomesNo: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - learningOutcomesEn: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - examTypeNo: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - examTypeEn: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - candidateCount: z.union([z.number().int(), IntFieldUpdateOperationsInputObjectSchema]).optional(), - averageGrade: z.union([z.number(), FloatFieldUpdateOperationsInputObjectSchema]).optional(), - passRate: z.union([z.number(), FloatFieldUpdateOperationsInputObjectSchema]).optional(), - createdAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - updatedAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - taughtSemesters: z.union([CourseUpdatetaughtSemestersInputObjectSchema, SemesterSchema.array()]).optional(), - teachingLanguages: z.union([CourseUpdateteachingLanguagesInputObjectSchema, TeachingLanguageSchema.array()]).optional(), - campuses: z.union([CourseUpdatecampusesInputObjectSchema, CampusSchema.array()]).optional(), - latestYearCheckedForNtnuData: z.union([z.number().int(), NullableIntFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - get grades(){ return GradeUpdateManyWithoutCourseNestedInputObjectSchema.optional(); }, - get faculty(){ return FacultyUpdateOneWithoutCoursesNestedInputObjectSchema.optional(); } -}).strict(); -export const CourseUpdateWithoutDepartmentInputObjectSchema: z.ZodType = z.lazy(__makeSchema_CourseUpdateWithoutDepartmentInput_schema) as unknown as z.ZodType; -export const CourseUpdateWithoutDepartmentInputObjectZodSchema = z.lazy(__makeSchema_CourseUpdateWithoutDepartmentInput_schema); - - -// File: CourseUncheckedUpdateWithoutDepartmentInput.schema.ts -const __makeSchema_CourseUncheckedUpdateWithoutDepartmentInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - code: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - nameNo: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - nameEn: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - credits: z.union([z.number(), NullableFloatFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - studyLevel: z.union([StudyLevelSchema, EnumStudyLevelFieldUpdateOperationsInputObjectSchema]).optional(), - gradeType: z.union([GradeTypeSchema, EnumGradeTypeFieldUpdateOperationsInputObjectSchema]).optional(), - firstYearTaught: z.union([z.number().int(), IntFieldUpdateOperationsInputObjectSchema]).optional(), - lastYearTaught: z.union([z.number().int(), NullableIntFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - contentNo: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - contentEn: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - teachingMethodsNo: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - teachingMethodsEn: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - learningOutcomesNo: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - learningOutcomesEn: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - examTypeNo: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - examTypeEn: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - candidateCount: z.union([z.number().int(), IntFieldUpdateOperationsInputObjectSchema]).optional(), - averageGrade: z.union([z.number(), FloatFieldUpdateOperationsInputObjectSchema]).optional(), - passRate: z.union([z.number(), FloatFieldUpdateOperationsInputObjectSchema]).optional(), - createdAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - updatedAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - taughtSemesters: z.union([CourseUpdatetaughtSemestersInputObjectSchema, SemesterSchema.array()]).optional(), - teachingLanguages: z.union([CourseUpdateteachingLanguagesInputObjectSchema, TeachingLanguageSchema.array()]).optional(), - campuses: z.union([CourseUpdatecampusesInputObjectSchema, CampusSchema.array()]).optional(), - facultyId: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - latestYearCheckedForNtnuData: z.union([z.number().int(), NullableIntFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - get grades(){ return GradeUncheckedUpdateManyWithoutCourseNestedInputObjectSchema.optional(); } -}).strict(); -export const CourseUncheckedUpdateWithoutDepartmentInputObjectSchema: z.ZodType = z.lazy(__makeSchema_CourseUncheckedUpdateWithoutDepartmentInput_schema) as unknown as z.ZodType; -export const CourseUncheckedUpdateWithoutDepartmentInputObjectZodSchema = z.lazy(__makeSchema_CourseUncheckedUpdateWithoutDepartmentInput_schema); - - -// File: CourseUncheckedUpdateManyWithoutDepartmentInput.schema.ts -const __makeSchema_CourseUncheckedUpdateManyWithoutDepartmentInput_schema = () => z.object({ - id: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - code: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - nameNo: z.union([z.string(), StringFieldUpdateOperationsInputObjectSchema]).optional(), - nameEn: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - credits: z.union([z.number(), NullableFloatFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - studyLevel: z.union([StudyLevelSchema, EnumStudyLevelFieldUpdateOperationsInputObjectSchema]).optional(), - gradeType: z.union([GradeTypeSchema, EnumGradeTypeFieldUpdateOperationsInputObjectSchema]).optional(), - firstYearTaught: z.union([z.number().int(), IntFieldUpdateOperationsInputObjectSchema]).optional(), - lastYearTaught: z.union([z.number().int(), NullableIntFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - contentNo: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - contentEn: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - teachingMethodsNo: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - teachingMethodsEn: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - learningOutcomesNo: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - learningOutcomesEn: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - examTypeNo: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - examTypeEn: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - candidateCount: z.union([z.number().int(), IntFieldUpdateOperationsInputObjectSchema]).optional(), - averageGrade: z.union([z.number(), FloatFieldUpdateOperationsInputObjectSchema]).optional(), - passRate: z.union([z.number(), FloatFieldUpdateOperationsInputObjectSchema]).optional(), - createdAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - updatedAt: z.union([z.coerce.date(), DateTimeFieldUpdateOperationsInputObjectSchema]).optional(), - taughtSemesters: z.union([CourseUpdatetaughtSemestersInputObjectSchema, SemesterSchema.array()]).optional(), - teachingLanguages: z.union([CourseUpdateteachingLanguagesInputObjectSchema, TeachingLanguageSchema.array()]).optional(), - campuses: z.union([CourseUpdatecampusesInputObjectSchema, CampusSchema.array()]).optional(), - facultyId: z.union([z.string(), NullableStringFieldUpdateOperationsInputObjectSchema]).optional().nullable(), - latestYearCheckedForNtnuData: z.union([z.number().int(), NullableIntFieldUpdateOperationsInputObjectSchema]).optional().nullable() -}).strict(); -export const CourseUncheckedUpdateManyWithoutDepartmentInputObjectSchema: z.ZodType = z.lazy(__makeSchema_CourseUncheckedUpdateManyWithoutDepartmentInput_schema) as unknown as z.ZodType; -export const CourseUncheckedUpdateManyWithoutDepartmentInputObjectZodSchema = z.lazy(__makeSchema_CourseUncheckedUpdateManyWithoutDepartmentInput_schema); - - -// File: CourseCountAggregateInput.schema.ts -const __makeSchema_CourseCountAggregateInput_schema = () => z.object({ - id: z.literal(true).optional(), - code: z.literal(true).optional(), - nameNo: z.literal(true).optional(), - nameEn: z.literal(true).optional(), - credits: z.literal(true).optional(), - studyLevel: z.literal(true).optional(), - gradeType: z.literal(true).optional(), - firstYearTaught: z.literal(true).optional(), - lastYearTaught: z.literal(true).optional(), - contentNo: z.literal(true).optional(), - contentEn: z.literal(true).optional(), - teachingMethodsNo: z.literal(true).optional(), - teachingMethodsEn: z.literal(true).optional(), - learningOutcomesNo: z.literal(true).optional(), - learningOutcomesEn: z.literal(true).optional(), - examTypeNo: z.literal(true).optional(), - examTypeEn: z.literal(true).optional(), - candidateCount: z.literal(true).optional(), - averageGrade: z.literal(true).optional(), - passRate: z.literal(true).optional(), - createdAt: z.literal(true).optional(), - updatedAt: z.literal(true).optional(), - taughtSemesters: z.literal(true).optional(), - teachingLanguages: z.literal(true).optional(), - campuses: z.literal(true).optional(), - facultyId: z.literal(true).optional(), - departmentId: z.literal(true).optional(), - latestYearCheckedForNtnuData: z.literal(true).optional(), - _all: z.literal(true).optional() -}).strict(); -export const CourseCountAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_CourseCountAggregateInput_schema) as unknown as z.ZodType; -export const CourseCountAggregateInputObjectZodSchema = z.lazy(__makeSchema_CourseCountAggregateInput_schema); - - -// File: CourseAvgAggregateInput.schema.ts -const __makeSchema_CourseAvgAggregateInput_schema = () => z.object({ - credits: z.literal(true).optional(), - firstYearTaught: z.literal(true).optional(), - lastYearTaught: z.literal(true).optional(), - candidateCount: z.literal(true).optional(), - averageGrade: z.literal(true).optional(), - passRate: z.literal(true).optional(), - latestYearCheckedForNtnuData: z.literal(true).optional() -}).strict(); -export const CourseAvgAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_CourseAvgAggregateInput_schema) as unknown as z.ZodType; -export const CourseAvgAggregateInputObjectZodSchema = z.lazy(__makeSchema_CourseAvgAggregateInput_schema); - - -// File: CourseSumAggregateInput.schema.ts -const __makeSchema_CourseSumAggregateInput_schema = () => z.object({ - credits: z.literal(true).optional(), - firstYearTaught: z.literal(true).optional(), - lastYearTaught: z.literal(true).optional(), - candidateCount: z.literal(true).optional(), - averageGrade: z.literal(true).optional(), - passRate: z.literal(true).optional(), - latestYearCheckedForNtnuData: z.literal(true).optional() -}).strict(); -export const CourseSumAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_CourseSumAggregateInput_schema) as unknown as z.ZodType; -export const CourseSumAggregateInputObjectZodSchema = z.lazy(__makeSchema_CourseSumAggregateInput_schema); - - -// File: CourseMinAggregateInput.schema.ts -const __makeSchema_CourseMinAggregateInput_schema = () => z.object({ - id: z.literal(true).optional(), - code: z.literal(true).optional(), - nameNo: z.literal(true).optional(), - nameEn: z.literal(true).optional(), - credits: z.literal(true).optional(), - studyLevel: z.literal(true).optional(), - gradeType: z.literal(true).optional(), - firstYearTaught: z.literal(true).optional(), - lastYearTaught: z.literal(true).optional(), - contentNo: z.literal(true).optional(), - contentEn: z.literal(true).optional(), - teachingMethodsNo: z.literal(true).optional(), - teachingMethodsEn: z.literal(true).optional(), - learningOutcomesNo: z.literal(true).optional(), - learningOutcomesEn: z.literal(true).optional(), - examTypeNo: z.literal(true).optional(), - examTypeEn: z.literal(true).optional(), - candidateCount: z.literal(true).optional(), - averageGrade: z.literal(true).optional(), - passRate: z.literal(true).optional(), - createdAt: z.literal(true).optional(), - updatedAt: z.literal(true).optional(), - facultyId: z.literal(true).optional(), - departmentId: z.literal(true).optional(), - latestYearCheckedForNtnuData: z.literal(true).optional() -}).strict(); -export const CourseMinAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_CourseMinAggregateInput_schema) as unknown as z.ZodType; -export const CourseMinAggregateInputObjectZodSchema = z.lazy(__makeSchema_CourseMinAggregateInput_schema); - - -// File: CourseMaxAggregateInput.schema.ts -const __makeSchema_CourseMaxAggregateInput_schema = () => z.object({ - id: z.literal(true).optional(), - code: z.literal(true).optional(), - nameNo: z.literal(true).optional(), - nameEn: z.literal(true).optional(), - credits: z.literal(true).optional(), - studyLevel: z.literal(true).optional(), - gradeType: z.literal(true).optional(), - firstYearTaught: z.literal(true).optional(), - lastYearTaught: z.literal(true).optional(), - contentNo: z.literal(true).optional(), - contentEn: z.literal(true).optional(), - teachingMethodsNo: z.literal(true).optional(), - teachingMethodsEn: z.literal(true).optional(), - learningOutcomesNo: z.literal(true).optional(), - learningOutcomesEn: z.literal(true).optional(), - examTypeNo: z.literal(true).optional(), - examTypeEn: z.literal(true).optional(), - candidateCount: z.literal(true).optional(), - averageGrade: z.literal(true).optional(), - passRate: z.literal(true).optional(), - createdAt: z.literal(true).optional(), - updatedAt: z.literal(true).optional(), - facultyId: z.literal(true).optional(), - departmentId: z.literal(true).optional(), - latestYearCheckedForNtnuData: z.literal(true).optional() -}).strict(); -export const CourseMaxAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_CourseMaxAggregateInput_schema) as unknown as z.ZodType; -export const CourseMaxAggregateInputObjectZodSchema = z.lazy(__makeSchema_CourseMaxAggregateInput_schema); - - -// File: GradeCountAggregateInput.schema.ts -const __makeSchema_GradeCountAggregateInput_schema = () => z.object({ - id: z.literal(true).optional(), - gradeACount: z.literal(true).optional(), - gradeBCount: z.literal(true).optional(), - gradeCCount: z.literal(true).optional(), - gradeDCount: z.literal(true).optional(), - gradeECount: z.literal(true).optional(), - gradeFCount: z.literal(true).optional(), - passedCount: z.literal(true).optional(), - failedCount: z.literal(true).optional(), - courseId: z.literal(true).optional(), - semester: z.literal(true).optional(), - year: z.literal(true).optional(), - createdAt: z.literal(true).optional(), - updatedAt: z.literal(true).optional(), - _all: z.literal(true).optional() -}).strict(); -export const GradeCountAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_GradeCountAggregateInput_schema) as unknown as z.ZodType; -export const GradeCountAggregateInputObjectZodSchema = z.lazy(__makeSchema_GradeCountAggregateInput_schema); - - -// File: GradeAvgAggregateInput.schema.ts -const __makeSchema_GradeAvgAggregateInput_schema = () => z.object({ - gradeACount: z.literal(true).optional(), - gradeBCount: z.literal(true).optional(), - gradeCCount: z.literal(true).optional(), - gradeDCount: z.literal(true).optional(), - gradeECount: z.literal(true).optional(), - gradeFCount: z.literal(true).optional(), - passedCount: z.literal(true).optional(), - failedCount: z.literal(true).optional(), - year: z.literal(true).optional() -}).strict(); -export const GradeAvgAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_GradeAvgAggregateInput_schema) as unknown as z.ZodType; -export const GradeAvgAggregateInputObjectZodSchema = z.lazy(__makeSchema_GradeAvgAggregateInput_schema); - - -// File: GradeSumAggregateInput.schema.ts -const __makeSchema_GradeSumAggregateInput_schema = () => z.object({ - gradeACount: z.literal(true).optional(), - gradeBCount: z.literal(true).optional(), - gradeCCount: z.literal(true).optional(), - gradeDCount: z.literal(true).optional(), - gradeECount: z.literal(true).optional(), - gradeFCount: z.literal(true).optional(), - passedCount: z.literal(true).optional(), - failedCount: z.literal(true).optional(), - year: z.literal(true).optional() -}).strict(); -export const GradeSumAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_GradeSumAggregateInput_schema) as unknown as z.ZodType; -export const GradeSumAggregateInputObjectZodSchema = z.lazy(__makeSchema_GradeSumAggregateInput_schema); - - -// File: GradeMinAggregateInput.schema.ts -const __makeSchema_GradeMinAggregateInput_schema = () => z.object({ - id: z.literal(true).optional(), - gradeACount: z.literal(true).optional(), - gradeBCount: z.literal(true).optional(), - gradeCCount: z.literal(true).optional(), - gradeDCount: z.literal(true).optional(), - gradeECount: z.literal(true).optional(), - gradeFCount: z.literal(true).optional(), - passedCount: z.literal(true).optional(), - failedCount: z.literal(true).optional(), - courseId: z.literal(true).optional(), - semester: z.literal(true).optional(), - year: z.literal(true).optional(), - createdAt: z.literal(true).optional(), - updatedAt: z.literal(true).optional() -}).strict(); -export const GradeMinAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_GradeMinAggregateInput_schema) as unknown as z.ZodType; -export const GradeMinAggregateInputObjectZodSchema = z.lazy(__makeSchema_GradeMinAggregateInput_schema); - - -// File: GradeMaxAggregateInput.schema.ts -const __makeSchema_GradeMaxAggregateInput_schema = () => z.object({ - id: z.literal(true).optional(), - gradeACount: z.literal(true).optional(), - gradeBCount: z.literal(true).optional(), - gradeCCount: z.literal(true).optional(), - gradeDCount: z.literal(true).optional(), - gradeECount: z.literal(true).optional(), - gradeFCount: z.literal(true).optional(), - passedCount: z.literal(true).optional(), - failedCount: z.literal(true).optional(), - courseId: z.literal(true).optional(), - semester: z.literal(true).optional(), - year: z.literal(true).optional(), - createdAt: z.literal(true).optional(), - updatedAt: z.literal(true).optional() -}).strict(); -export const GradeMaxAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_GradeMaxAggregateInput_schema) as unknown as z.ZodType; -export const GradeMaxAggregateInputObjectZodSchema = z.lazy(__makeSchema_GradeMaxAggregateInput_schema); - - -// File: FacultyCountAggregateInput.schema.ts -const __makeSchema_FacultyCountAggregateInput_schema = () => z.object({ - id: z.literal(true).optional(), - nameNo: z.literal(true).optional(), - nameEn: z.literal(true).optional(), - code: z.literal(true).optional(), - _all: z.literal(true).optional() -}).strict(); -export const FacultyCountAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FacultyCountAggregateInput_schema) as unknown as z.ZodType; -export const FacultyCountAggregateInputObjectZodSchema = z.lazy(__makeSchema_FacultyCountAggregateInput_schema); - - -// File: FacultyAvgAggregateInput.schema.ts -const __makeSchema_FacultyAvgAggregateInput_schema = () => z.object({ - code: z.literal(true).optional() -}).strict(); -export const FacultyAvgAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FacultyAvgAggregateInput_schema) as unknown as z.ZodType; -export const FacultyAvgAggregateInputObjectZodSchema = z.lazy(__makeSchema_FacultyAvgAggregateInput_schema); - - -// File: FacultySumAggregateInput.schema.ts -const __makeSchema_FacultySumAggregateInput_schema = () => z.object({ - code: z.literal(true).optional() -}).strict(); -export const FacultySumAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FacultySumAggregateInput_schema) as unknown as z.ZodType; -export const FacultySumAggregateInputObjectZodSchema = z.lazy(__makeSchema_FacultySumAggregateInput_schema); - - -// File: FacultyMinAggregateInput.schema.ts -const __makeSchema_FacultyMinAggregateInput_schema = () => z.object({ - id: z.literal(true).optional(), - nameNo: z.literal(true).optional(), - nameEn: z.literal(true).optional(), - code: z.literal(true).optional() -}).strict(); -export const FacultyMinAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FacultyMinAggregateInput_schema) as unknown as z.ZodType; -export const FacultyMinAggregateInputObjectZodSchema = z.lazy(__makeSchema_FacultyMinAggregateInput_schema); - - -// File: FacultyMaxAggregateInput.schema.ts -const __makeSchema_FacultyMaxAggregateInput_schema = () => z.object({ - id: z.literal(true).optional(), - nameNo: z.literal(true).optional(), - nameEn: z.literal(true).optional(), - code: z.literal(true).optional() -}).strict(); -export const FacultyMaxAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_FacultyMaxAggregateInput_schema) as unknown as z.ZodType; -export const FacultyMaxAggregateInputObjectZodSchema = z.lazy(__makeSchema_FacultyMaxAggregateInput_schema); - - -// File: DepartmentCountAggregateInput.schema.ts -const __makeSchema_DepartmentCountAggregateInput_schema = () => z.object({ - id: z.literal(true).optional(), - nameNo: z.literal(true).optional(), - nameEn: z.literal(true).optional(), - code: z.literal(true).optional(), - facultyId: z.literal(true).optional(), - _all: z.literal(true).optional() -}).strict(); -export const DepartmentCountAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_DepartmentCountAggregateInput_schema) as unknown as z.ZodType; -export const DepartmentCountAggregateInputObjectZodSchema = z.lazy(__makeSchema_DepartmentCountAggregateInput_schema); - - -// File: DepartmentAvgAggregateInput.schema.ts -const __makeSchema_DepartmentAvgAggregateInput_schema = () => z.object({ - code: z.literal(true).optional() -}).strict(); -export const DepartmentAvgAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_DepartmentAvgAggregateInput_schema) as unknown as z.ZodType; -export const DepartmentAvgAggregateInputObjectZodSchema = z.lazy(__makeSchema_DepartmentAvgAggregateInput_schema); - - -// File: DepartmentSumAggregateInput.schema.ts -const __makeSchema_DepartmentSumAggregateInput_schema = () => z.object({ - code: z.literal(true).optional() -}).strict(); -export const DepartmentSumAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_DepartmentSumAggregateInput_schema) as unknown as z.ZodType; -export const DepartmentSumAggregateInputObjectZodSchema = z.lazy(__makeSchema_DepartmentSumAggregateInput_schema); - - -// File: DepartmentMinAggregateInput.schema.ts -const __makeSchema_DepartmentMinAggregateInput_schema = () => z.object({ - id: z.literal(true).optional(), - nameNo: z.literal(true).optional(), - nameEn: z.literal(true).optional(), - code: z.literal(true).optional(), - facultyId: z.literal(true).optional() -}).strict(); -export const DepartmentMinAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_DepartmentMinAggregateInput_schema) as unknown as z.ZodType; -export const DepartmentMinAggregateInputObjectZodSchema = z.lazy(__makeSchema_DepartmentMinAggregateInput_schema); - - -// File: DepartmentMaxAggregateInput.schema.ts -const __makeSchema_DepartmentMaxAggregateInput_schema = () => z.object({ - id: z.literal(true).optional(), - nameNo: z.literal(true).optional(), - nameEn: z.literal(true).optional(), - code: z.literal(true).optional(), - facultyId: z.literal(true).optional() -}).strict(); -export const DepartmentMaxAggregateInputObjectSchema: z.ZodType = z.lazy(__makeSchema_DepartmentMaxAggregateInput_schema) as unknown as z.ZodType; -export const DepartmentMaxAggregateInputObjectZodSchema = z.lazy(__makeSchema_DepartmentMaxAggregateInput_schema); - - -// File: CourseCountOutputTypeSelect.schema.ts -const __makeSchema_CourseCountOutputTypeSelect_schema = () => z.object({ - grades: z.union([z.boolean(), CourseCountOutputTypeCountGradesArgsObjectSchema]).optional() -}).strict(); -export const CourseCountOutputTypeSelectObjectSchema: z.ZodType = z.lazy(__makeSchema_CourseCountOutputTypeSelect_schema) as unknown as z.ZodType; -export const CourseCountOutputTypeSelectObjectZodSchema = z.lazy(__makeSchema_CourseCountOutputTypeSelect_schema); - - -// File: FacultyCountOutputTypeSelect.schema.ts -const __makeSchema_FacultyCountOutputTypeSelect_schema = () => z.object({ - courses: z.union([z.boolean(), FacultyCountOutputTypeCountCoursesArgsObjectSchema]).optional(), - departments: z.union([z.boolean(), FacultyCountOutputTypeCountDepartmentsArgsObjectSchema]).optional() -}).strict(); -export const FacultyCountOutputTypeSelectObjectSchema: z.ZodType = z.lazy(__makeSchema_FacultyCountOutputTypeSelect_schema) as unknown as z.ZodType; -export const FacultyCountOutputTypeSelectObjectZodSchema = z.lazy(__makeSchema_FacultyCountOutputTypeSelect_schema); - - -// File: DepartmentCountOutputTypeSelect.schema.ts -const __makeSchema_DepartmentCountOutputTypeSelect_schema = () => z.object({ - courses: z.union([z.boolean(), DepartmentCountOutputTypeCountCoursesArgsObjectSchema]).optional() -}).strict(); -export const DepartmentCountOutputTypeSelectObjectSchema: z.ZodType = z.lazy(__makeSchema_DepartmentCountOutputTypeSelect_schema) as unknown as z.ZodType; -export const DepartmentCountOutputTypeSelectObjectZodSchema = z.lazy(__makeSchema_DepartmentCountOutputTypeSelect_schema); - - -// File: CourseCountOutputTypeArgs.schema.ts -const __makeSchema_CourseCountOutputTypeArgs_schema = () => z.object({ - get select(){ return CourseCountOutputTypeSelectObjectSchema.optional(); } -}).strict(); -export const CourseCountOutputTypeArgsObjectSchema = z.lazy(__makeSchema_CourseCountOutputTypeArgs_schema); -export const CourseCountOutputTypeArgsObjectZodSchema = z.lazy(__makeSchema_CourseCountOutputTypeArgs_schema); - - -// File: CourseCountOutputTypeCountGradesArgs.schema.ts -const __makeSchema_CourseCountOutputTypeCountGradesArgs_schema = () => z.object({ - get where(){ return GradeWhereInputObjectSchema.optional(); } -}).strict(); -export const CourseCountOutputTypeCountGradesArgsObjectSchema = z.lazy(__makeSchema_CourseCountOutputTypeCountGradesArgs_schema); -export const CourseCountOutputTypeCountGradesArgsObjectZodSchema = z.lazy(__makeSchema_CourseCountOutputTypeCountGradesArgs_schema); - - -// File: FacultyCountOutputTypeArgs.schema.ts -const __makeSchema_FacultyCountOutputTypeArgs_schema = () => z.object({ - get select(){ return FacultyCountOutputTypeSelectObjectSchema.optional(); } -}).strict(); -export const FacultyCountOutputTypeArgsObjectSchema = z.lazy(__makeSchema_FacultyCountOutputTypeArgs_schema); -export const FacultyCountOutputTypeArgsObjectZodSchema = z.lazy(__makeSchema_FacultyCountOutputTypeArgs_schema); - - -// File: FacultyCountOutputTypeCountCoursesArgs.schema.ts -const __makeSchema_FacultyCountOutputTypeCountCoursesArgs_schema = () => z.object({ - get where(){ return CourseWhereInputObjectSchema.optional(); } -}).strict(); -export const FacultyCountOutputTypeCountCoursesArgsObjectSchema = z.lazy(__makeSchema_FacultyCountOutputTypeCountCoursesArgs_schema); -export const FacultyCountOutputTypeCountCoursesArgsObjectZodSchema = z.lazy(__makeSchema_FacultyCountOutputTypeCountCoursesArgs_schema); - - -// File: FacultyCountOutputTypeCountDepartmentsArgs.schema.ts -const __makeSchema_FacultyCountOutputTypeCountDepartmentsArgs_schema = () => z.object({ - get where(){ return DepartmentWhereInputObjectSchema.optional(); } -}).strict(); -export const FacultyCountOutputTypeCountDepartmentsArgsObjectSchema = z.lazy(__makeSchema_FacultyCountOutputTypeCountDepartmentsArgs_schema); -export const FacultyCountOutputTypeCountDepartmentsArgsObjectZodSchema = z.lazy(__makeSchema_FacultyCountOutputTypeCountDepartmentsArgs_schema); - - -// File: DepartmentCountOutputTypeArgs.schema.ts -const __makeSchema_DepartmentCountOutputTypeArgs_schema = () => z.object({ - get select(){ return DepartmentCountOutputTypeSelectObjectSchema.optional(); } -}).strict(); -export const DepartmentCountOutputTypeArgsObjectSchema = z.lazy(__makeSchema_DepartmentCountOutputTypeArgs_schema); -export const DepartmentCountOutputTypeArgsObjectZodSchema = z.lazy(__makeSchema_DepartmentCountOutputTypeArgs_schema); - - -// File: DepartmentCountOutputTypeCountCoursesArgs.schema.ts -const __makeSchema_DepartmentCountOutputTypeCountCoursesArgs_schema = () => z.object({ - get where(){ return CourseWhereInputObjectSchema.optional(); } -}).strict(); -export const DepartmentCountOutputTypeCountCoursesArgsObjectSchema = z.lazy(__makeSchema_DepartmentCountOutputTypeCountCoursesArgs_schema); -export const DepartmentCountOutputTypeCountCoursesArgsObjectZodSchema = z.lazy(__makeSchema_DepartmentCountOutputTypeCountCoursesArgs_schema); - - -// File: CourseSelect.schema.ts -const __makeSchema_CourseSelect_schema = () => z.object({ - id: z.boolean().optional(), - code: z.boolean().optional(), - nameNo: z.boolean().optional(), - nameEn: z.boolean().optional(), - credits: z.boolean().optional(), - studyLevel: z.boolean().optional(), - gradeType: z.boolean().optional(), - firstYearTaught: z.boolean().optional(), - lastYearTaught: z.boolean().optional(), - contentNo: z.boolean().optional(), - contentEn: z.boolean().optional(), - teachingMethodsNo: z.boolean().optional(), - teachingMethodsEn: z.boolean().optional(), - learningOutcomesNo: z.boolean().optional(), - learningOutcomesEn: z.boolean().optional(), - examTypeNo: z.boolean().optional(), - examTypeEn: z.boolean().optional(), - candidateCount: z.boolean().optional(), - averageGrade: z.boolean().optional(), - passRate: z.boolean().optional(), - createdAt: z.boolean().optional(), - updatedAt: z.boolean().optional(), - taughtSemesters: z.boolean().optional(), - teachingLanguages: z.boolean().optional(), - campuses: z.boolean().optional(), - grades: z.union([z.boolean(), GradeFindManySchema]).optional(), - facultyId: z.boolean().optional(), - faculty: z.union([z.boolean(), FacultyArgsObjectSchema]).optional(), - departmentId: z.boolean().optional(), - department: z.union([z.boolean(), DepartmentArgsObjectSchema]).optional(), - latestYearCheckedForNtnuData: z.boolean().optional(), - _count: z.union([z.boolean(), CourseCountOutputTypeArgsObjectSchema]).optional() -}).strict(); -export const CourseSelectObjectSchema: z.ZodType = z.lazy(__makeSchema_CourseSelect_schema) as unknown as z.ZodType; -export const CourseSelectObjectZodSchema = z.lazy(__makeSchema_CourseSelect_schema); - - -// File: GradeSelect.schema.ts -const __makeSchema_GradeSelect_schema = () => z.object({ - id: z.boolean().optional(), - gradeACount: z.boolean().optional(), - gradeBCount: z.boolean().optional(), - gradeCCount: z.boolean().optional(), - gradeDCount: z.boolean().optional(), - gradeECount: z.boolean().optional(), - gradeFCount: z.boolean().optional(), - passedCount: z.boolean().optional(), - failedCount: z.boolean().optional(), - courseId: z.boolean().optional(), - course: z.union([z.boolean(), CourseArgsObjectSchema]).optional(), - semester: z.boolean().optional(), - year: z.boolean().optional(), - createdAt: z.boolean().optional(), - updatedAt: z.boolean().optional() -}).strict(); -export const GradeSelectObjectSchema: z.ZodType = z.lazy(__makeSchema_GradeSelect_schema) as unknown as z.ZodType; -export const GradeSelectObjectZodSchema = z.lazy(__makeSchema_GradeSelect_schema); - - -// File: FacultySelect.schema.ts -const __makeSchema_FacultySelect_schema = () => z.object({ - id: z.boolean().optional(), - nameNo: z.boolean().optional(), - nameEn: z.boolean().optional(), - code: z.boolean().optional(), - courses: z.union([z.boolean(), CourseFindManySchema]).optional(), - departments: z.union([z.boolean(), DepartmentFindManySchema]).optional(), - _count: z.union([z.boolean(), FacultyCountOutputTypeArgsObjectSchema]).optional() -}).strict(); -export const FacultySelectObjectSchema: z.ZodType = z.lazy(__makeSchema_FacultySelect_schema) as unknown as z.ZodType; -export const FacultySelectObjectZodSchema = z.lazy(__makeSchema_FacultySelect_schema); - - -// File: DepartmentSelect.schema.ts -const __makeSchema_DepartmentSelect_schema = () => z.object({ - id: z.boolean().optional(), - nameNo: z.boolean().optional(), - nameEn: z.boolean().optional(), - code: z.boolean().optional(), - courses: z.union([z.boolean(), CourseFindManySchema]).optional(), - facultyId: z.boolean().optional(), - faculty: z.union([z.boolean(), FacultyArgsObjectSchema]).optional(), - _count: z.union([z.boolean(), DepartmentCountOutputTypeArgsObjectSchema]).optional() -}).strict(); -export const DepartmentSelectObjectSchema: z.ZodType = z.lazy(__makeSchema_DepartmentSelect_schema) as unknown as z.ZodType; -export const DepartmentSelectObjectZodSchema = z.lazy(__makeSchema_DepartmentSelect_schema); - - -// File: CourseArgs.schema.ts -const __makeSchema_CourseArgs_schema = () => z.object({ - get select(){ return CourseSelectObjectSchema.optional(); }, - get include(){ return CourseIncludeObjectSchema.optional(); } -}).strict(); -export const CourseArgsObjectSchema = z.lazy(__makeSchema_CourseArgs_schema); -export const CourseArgsObjectZodSchema = z.lazy(__makeSchema_CourseArgs_schema); - - -// File: GradeArgs.schema.ts -const __makeSchema_GradeArgs_schema = () => z.object({ - get select(){ return GradeSelectObjectSchema.optional(); }, - get include(){ return GradeIncludeObjectSchema.optional(); } -}).strict(); -export const GradeArgsObjectSchema = z.lazy(__makeSchema_GradeArgs_schema); -export const GradeArgsObjectZodSchema = z.lazy(__makeSchema_GradeArgs_schema); - - -// File: FacultyArgs.schema.ts -const __makeSchema_FacultyArgs_schema = () => z.object({ - get select(){ return FacultySelectObjectSchema.optional(); }, - get include(){ return FacultyIncludeObjectSchema.optional(); } -}).strict(); -export const FacultyArgsObjectSchema = z.lazy(__makeSchema_FacultyArgs_schema); -export const FacultyArgsObjectZodSchema = z.lazy(__makeSchema_FacultyArgs_schema); - - -// File: DepartmentArgs.schema.ts -const __makeSchema_DepartmentArgs_schema = () => z.object({ - get select(){ return DepartmentSelectObjectSchema.optional(); }, - get include(){ return DepartmentIncludeObjectSchema.optional(); } -}).strict(); -export const DepartmentArgsObjectSchema = z.lazy(__makeSchema_DepartmentArgs_schema); -export const DepartmentArgsObjectZodSchema = z.lazy(__makeSchema_DepartmentArgs_schema); - - -// File: CourseInclude.schema.ts -const __makeSchema_CourseInclude_schema = () => z.object({ - grades: z.union([z.boolean(), GradeFindManySchema]).optional(), - faculty: z.union([z.boolean(), FacultyArgsObjectSchema]).optional(), - department: z.union([z.boolean(), DepartmentArgsObjectSchema]).optional(), - _count: z.union([z.boolean(), CourseCountOutputTypeArgsObjectSchema]).optional() -}).strict(); -export const CourseIncludeObjectSchema: z.ZodType = z.lazy(__makeSchema_CourseInclude_schema) as unknown as z.ZodType; -export const CourseIncludeObjectZodSchema = z.lazy(__makeSchema_CourseInclude_schema); - - -// File: GradeInclude.schema.ts -const __makeSchema_GradeInclude_schema = () => z.object({ - course: z.union([z.boolean(), CourseArgsObjectSchema]).optional() -}).strict(); -export const GradeIncludeObjectSchema: z.ZodType = z.lazy(__makeSchema_GradeInclude_schema) as unknown as z.ZodType; -export const GradeIncludeObjectZodSchema = z.lazy(__makeSchema_GradeInclude_schema); - - -// File: FacultyInclude.schema.ts -const __makeSchema_FacultyInclude_schema = () => z.object({ - courses: z.union([z.boolean(), CourseFindManySchema]).optional(), - departments: z.union([z.boolean(), DepartmentFindManySchema]).optional(), - _count: z.union([z.boolean(), FacultyCountOutputTypeArgsObjectSchema]).optional() -}).strict(); -export const FacultyIncludeObjectSchema: z.ZodType = z.lazy(__makeSchema_FacultyInclude_schema) as unknown as z.ZodType; -export const FacultyIncludeObjectZodSchema = z.lazy(__makeSchema_FacultyInclude_schema); - - -// File: DepartmentInclude.schema.ts -const __makeSchema_DepartmentInclude_schema = () => z.object({ - courses: z.union([z.boolean(), CourseFindManySchema]).optional(), - faculty: z.union([z.boolean(), FacultyArgsObjectSchema]).optional(), - _count: z.union([z.boolean(), DepartmentCountOutputTypeArgsObjectSchema]).optional() -}).strict(); -export const DepartmentIncludeObjectSchema: z.ZodType = z.lazy(__makeSchema_DepartmentInclude_schema) as unknown as z.ZodType; -export const DepartmentIncludeObjectZodSchema = z.lazy(__makeSchema_DepartmentInclude_schema); - - -// File: findUniqueCourse.schema.ts - -export const CourseFindUniqueSchema: z.ZodType = z.object({ get select(){ return CourseSelectObjectSchema.optional(); }, get include(){ return CourseIncludeObjectSchema.optional(); }, where: CourseWhereUniqueInputObjectSchema }).strict() as unknown as z.ZodType; - -export const CourseFindUniqueZodSchema = z.object({ get select(){ return CourseSelectObjectSchema.optional(); }, get include(){ return CourseIncludeObjectSchema.optional(); }, where: CourseWhereUniqueInputObjectSchema }).strict(); - -// File: findUniqueOrThrowCourse.schema.ts - -export const CourseFindUniqueOrThrowSchema: z.ZodType = z.object({ get select(){ return CourseSelectObjectSchema.optional(); }, get include(){ return CourseIncludeObjectSchema.optional(); }, where: CourseWhereUniqueInputObjectSchema }).strict() as unknown as z.ZodType; - -export const CourseFindUniqueOrThrowZodSchema = z.object({ get select(){ return CourseSelectObjectSchema.optional(); }, get include(){ return CourseIncludeObjectSchema.optional(); }, where: CourseWhereUniqueInputObjectSchema }).strict(); - -// File: findFirstCourse.schema.ts - -// Select schema needs to be in file to prevent circular imports -//------------------------------------------------------ - -export const CourseFindFirstSelectSchema__findFirstCourse_schema: z.ZodType = z.object({ - id: z.boolean().optional(), - code: z.boolean().optional(), - nameNo: z.boolean().optional(), - nameEn: z.boolean().optional(), - credits: z.boolean().optional(), - studyLevel: z.boolean().optional(), - gradeType: z.boolean().optional(), - firstYearTaught: z.boolean().optional(), - lastYearTaught: z.boolean().optional(), - contentNo: z.boolean().optional(), - contentEn: z.boolean().optional(), - teachingMethodsNo: z.boolean().optional(), - teachingMethodsEn: z.boolean().optional(), - learningOutcomesNo: z.boolean().optional(), - learningOutcomesEn: z.boolean().optional(), - examTypeNo: z.boolean().optional(), - examTypeEn: z.boolean().optional(), - candidateCount: z.boolean().optional(), - averageGrade: z.boolean().optional(), - passRate: z.boolean().optional(), - createdAt: z.boolean().optional(), - updatedAt: z.boolean().optional(), - taughtSemesters: z.boolean().optional(), - teachingLanguages: z.boolean().optional(), - campuses: z.boolean().optional(), - grades: z.boolean().optional(), - facultyId: z.boolean().optional(), - faculty: z.boolean().optional(), - departmentId: z.boolean().optional(), - department: z.boolean().optional(), - latestYearCheckedForNtnuData: z.boolean().optional(), - _count: z.boolean().optional() - }).strict() as unknown as z.ZodType; - -export const CourseFindFirstSelectZodSchema__findFirstCourse_schema = z.object({ - id: z.boolean().optional(), - code: z.boolean().optional(), - nameNo: z.boolean().optional(), - nameEn: z.boolean().optional(), - credits: z.boolean().optional(), - studyLevel: z.boolean().optional(), - gradeType: z.boolean().optional(), - firstYearTaught: z.boolean().optional(), - lastYearTaught: z.boolean().optional(), - contentNo: z.boolean().optional(), - contentEn: z.boolean().optional(), - teachingMethodsNo: z.boolean().optional(), - teachingMethodsEn: z.boolean().optional(), - learningOutcomesNo: z.boolean().optional(), - learningOutcomesEn: z.boolean().optional(), - examTypeNo: z.boolean().optional(), - examTypeEn: z.boolean().optional(), - candidateCount: z.boolean().optional(), - averageGrade: z.boolean().optional(), - passRate: z.boolean().optional(), - createdAt: z.boolean().optional(), - updatedAt: z.boolean().optional(), - taughtSemesters: z.boolean().optional(), - teachingLanguages: z.boolean().optional(), - campuses: z.boolean().optional(), - grades: z.boolean().optional(), - facultyId: z.boolean().optional(), - faculty: z.boolean().optional(), - departmentId: z.boolean().optional(), - department: z.boolean().optional(), - latestYearCheckedForNtnuData: z.boolean().optional(), - _count: z.boolean().optional() - }).strict(); - -export const CourseFindFirstSchema: z.ZodType = z.object({ get select(){ return CourseFindFirstSelectSchema__findFirstCourse_schema.optional(); }, get include(){ return CourseIncludeObjectSchema.optional(); }, orderBy: z.union([CourseOrderByWithRelationInputObjectSchema, CourseOrderByWithRelationInputObjectSchema.array()]).optional(), where: CourseWhereInputObjectSchema.optional(), cursor: CourseWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), distinct: z.union([CourseScalarFieldEnumSchema, CourseScalarFieldEnumSchema.array()]).optional() }).strict() as unknown as z.ZodType; - -export const CourseFindFirstZodSchema = z.object({ get select(){ return CourseFindFirstSelectSchema__findFirstCourse_schema.optional(); }, get include(){ return CourseIncludeObjectSchema.optional(); }, orderBy: z.union([CourseOrderByWithRelationInputObjectSchema, CourseOrderByWithRelationInputObjectSchema.array()]).optional(), where: CourseWhereInputObjectSchema.optional(), cursor: CourseWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), distinct: z.union([CourseScalarFieldEnumSchema, CourseScalarFieldEnumSchema.array()]).optional() }).strict(); - -// File: findFirstOrThrowCourse.schema.ts - -// Select schema needs to be in file to prevent circular imports -//------------------------------------------------------ - -export const CourseFindFirstOrThrowSelectSchema__findFirstOrThrowCourse_schema: z.ZodType = z.object({ - id: z.boolean().optional(), - code: z.boolean().optional(), - nameNo: z.boolean().optional(), - nameEn: z.boolean().optional(), - credits: z.boolean().optional(), - studyLevel: z.boolean().optional(), - gradeType: z.boolean().optional(), - firstYearTaught: z.boolean().optional(), - lastYearTaught: z.boolean().optional(), - contentNo: z.boolean().optional(), - contentEn: z.boolean().optional(), - teachingMethodsNo: z.boolean().optional(), - teachingMethodsEn: z.boolean().optional(), - learningOutcomesNo: z.boolean().optional(), - learningOutcomesEn: z.boolean().optional(), - examTypeNo: z.boolean().optional(), - examTypeEn: z.boolean().optional(), - candidateCount: z.boolean().optional(), - averageGrade: z.boolean().optional(), - passRate: z.boolean().optional(), - createdAt: z.boolean().optional(), - updatedAt: z.boolean().optional(), - taughtSemesters: z.boolean().optional(), - teachingLanguages: z.boolean().optional(), - campuses: z.boolean().optional(), - grades: z.boolean().optional(), - facultyId: z.boolean().optional(), - faculty: z.boolean().optional(), - departmentId: z.boolean().optional(), - department: z.boolean().optional(), - latestYearCheckedForNtnuData: z.boolean().optional(), - _count: z.boolean().optional() - }).strict() as unknown as z.ZodType; - -export const CourseFindFirstOrThrowSelectZodSchema__findFirstOrThrowCourse_schema = z.object({ - id: z.boolean().optional(), - code: z.boolean().optional(), - nameNo: z.boolean().optional(), - nameEn: z.boolean().optional(), - credits: z.boolean().optional(), - studyLevel: z.boolean().optional(), - gradeType: z.boolean().optional(), - firstYearTaught: z.boolean().optional(), - lastYearTaught: z.boolean().optional(), - contentNo: z.boolean().optional(), - contentEn: z.boolean().optional(), - teachingMethodsNo: z.boolean().optional(), - teachingMethodsEn: z.boolean().optional(), - learningOutcomesNo: z.boolean().optional(), - learningOutcomesEn: z.boolean().optional(), - examTypeNo: z.boolean().optional(), - examTypeEn: z.boolean().optional(), - candidateCount: z.boolean().optional(), - averageGrade: z.boolean().optional(), - passRate: z.boolean().optional(), - createdAt: z.boolean().optional(), - updatedAt: z.boolean().optional(), - taughtSemesters: z.boolean().optional(), - teachingLanguages: z.boolean().optional(), - campuses: z.boolean().optional(), - grades: z.boolean().optional(), - facultyId: z.boolean().optional(), - faculty: z.boolean().optional(), - departmentId: z.boolean().optional(), - department: z.boolean().optional(), - latestYearCheckedForNtnuData: z.boolean().optional(), - _count: z.boolean().optional() - }).strict(); - -export const CourseFindFirstOrThrowSchema: z.ZodType = z.object({ get select(){ return CourseFindFirstOrThrowSelectSchema__findFirstOrThrowCourse_schema.optional(); }, get include(){ return CourseIncludeObjectSchema.optional(); }, orderBy: z.union([CourseOrderByWithRelationInputObjectSchema, CourseOrderByWithRelationInputObjectSchema.array()]).optional(), where: CourseWhereInputObjectSchema.optional(), cursor: CourseWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), distinct: z.union([CourseScalarFieldEnumSchema, CourseScalarFieldEnumSchema.array()]).optional() }).strict() as unknown as z.ZodType; - -export const CourseFindFirstOrThrowZodSchema = z.object({ get select(){ return CourseFindFirstOrThrowSelectSchema__findFirstOrThrowCourse_schema.optional(); }, get include(){ return CourseIncludeObjectSchema.optional(); }, orderBy: z.union([CourseOrderByWithRelationInputObjectSchema, CourseOrderByWithRelationInputObjectSchema.array()]).optional(), where: CourseWhereInputObjectSchema.optional(), cursor: CourseWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), distinct: z.union([CourseScalarFieldEnumSchema, CourseScalarFieldEnumSchema.array()]).optional() }).strict(); - -// File: findManyCourse.schema.ts - -// Select schema needs to be in file to prevent circular imports -//------------------------------------------------------ - -export const CourseFindManySelectSchema__findManyCourse_schema: z.ZodType = z.object({ - id: z.boolean().optional(), - code: z.boolean().optional(), - nameNo: z.boolean().optional(), - nameEn: z.boolean().optional(), - credits: z.boolean().optional(), - studyLevel: z.boolean().optional(), - gradeType: z.boolean().optional(), - firstYearTaught: z.boolean().optional(), - lastYearTaught: z.boolean().optional(), - contentNo: z.boolean().optional(), - contentEn: z.boolean().optional(), - teachingMethodsNo: z.boolean().optional(), - teachingMethodsEn: z.boolean().optional(), - learningOutcomesNo: z.boolean().optional(), - learningOutcomesEn: z.boolean().optional(), - examTypeNo: z.boolean().optional(), - examTypeEn: z.boolean().optional(), - candidateCount: z.boolean().optional(), - averageGrade: z.boolean().optional(), - passRate: z.boolean().optional(), - createdAt: z.boolean().optional(), - updatedAt: z.boolean().optional(), - taughtSemesters: z.boolean().optional(), - teachingLanguages: z.boolean().optional(), - campuses: z.boolean().optional(), - grades: z.boolean().optional(), - facultyId: z.boolean().optional(), - faculty: z.boolean().optional(), - departmentId: z.boolean().optional(), - department: z.boolean().optional(), - latestYearCheckedForNtnuData: z.boolean().optional(), - _count: z.boolean().optional() - }).strict() as unknown as z.ZodType; - -export const CourseFindManySelectZodSchema__findManyCourse_schema = z.object({ - id: z.boolean().optional(), - code: z.boolean().optional(), - nameNo: z.boolean().optional(), - nameEn: z.boolean().optional(), - credits: z.boolean().optional(), - studyLevel: z.boolean().optional(), - gradeType: z.boolean().optional(), - firstYearTaught: z.boolean().optional(), - lastYearTaught: z.boolean().optional(), - contentNo: z.boolean().optional(), - contentEn: z.boolean().optional(), - teachingMethodsNo: z.boolean().optional(), - teachingMethodsEn: z.boolean().optional(), - learningOutcomesNo: z.boolean().optional(), - learningOutcomesEn: z.boolean().optional(), - examTypeNo: z.boolean().optional(), - examTypeEn: z.boolean().optional(), - candidateCount: z.boolean().optional(), - averageGrade: z.boolean().optional(), - passRate: z.boolean().optional(), - createdAt: z.boolean().optional(), - updatedAt: z.boolean().optional(), - taughtSemesters: z.boolean().optional(), - teachingLanguages: z.boolean().optional(), - campuses: z.boolean().optional(), - grades: z.boolean().optional(), - facultyId: z.boolean().optional(), - faculty: z.boolean().optional(), - departmentId: z.boolean().optional(), - department: z.boolean().optional(), - latestYearCheckedForNtnuData: z.boolean().optional(), - _count: z.boolean().optional() - }).strict(); - -export const CourseFindManySchema: z.ZodType = z.object({ get select(){ return CourseFindManySelectSchema__findManyCourse_schema.optional(); }, get include(){ return CourseIncludeObjectSchema.optional(); }, orderBy: z.union([CourseOrderByWithRelationInputObjectSchema, CourseOrderByWithRelationInputObjectSchema.array()]).optional(), where: CourseWhereInputObjectSchema.optional(), cursor: CourseWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), distinct: z.union([CourseScalarFieldEnumSchema, CourseScalarFieldEnumSchema.array()]).optional() }).strict() as unknown as z.ZodType; - -export const CourseFindManyZodSchema = z.object({ get select(){ return CourseFindManySelectSchema__findManyCourse_schema.optional(); }, get include(){ return CourseIncludeObjectSchema.optional(); }, orderBy: z.union([CourseOrderByWithRelationInputObjectSchema, CourseOrderByWithRelationInputObjectSchema.array()]).optional(), where: CourseWhereInputObjectSchema.optional(), cursor: CourseWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), distinct: z.union([CourseScalarFieldEnumSchema, CourseScalarFieldEnumSchema.array()]).optional() }).strict(); - -// File: countCourse.schema.ts - -export const CourseCountSchema: z.ZodType = z.object({ orderBy: z.union([CourseOrderByWithRelationInputObjectSchema, CourseOrderByWithRelationInputObjectSchema.array()]).optional(), where: CourseWhereInputObjectSchema.optional(), cursor: CourseWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), select: z.union([ z.literal(true), CourseCountAggregateInputObjectSchema ]).optional() }).strict() as unknown as z.ZodType; - -export const CourseCountZodSchema = z.object({ orderBy: z.union([CourseOrderByWithRelationInputObjectSchema, CourseOrderByWithRelationInputObjectSchema.array()]).optional(), where: CourseWhereInputObjectSchema.optional(), cursor: CourseWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), select: z.union([ z.literal(true), CourseCountAggregateInputObjectSchema ]).optional() }).strict(); - -// File: createOneCourse.schema.ts - -export const CourseCreateOneSchema: z.ZodType = z.object({ get select(){ return CourseSelectObjectSchema.optional(); }, get include(){ return CourseIncludeObjectSchema.optional(); }, data: z.union([CourseCreateInputObjectSchema, CourseUncheckedCreateInputObjectSchema]) }).strict() as unknown as z.ZodType; - -export const CourseCreateOneZodSchema = z.object({ get select(){ return CourseSelectObjectSchema.optional(); }, get include(){ return CourseIncludeObjectSchema.optional(); }, data: z.union([CourseCreateInputObjectSchema, CourseUncheckedCreateInputObjectSchema]) }).strict(); - -// File: createManyCourse.schema.ts - -export const CourseCreateManySchema: z.ZodType = z.object({ data: z.union([ CourseCreateManyInputObjectSchema, z.array(CourseCreateManyInputObjectSchema) ]), skipDuplicates: z.boolean().optional() }).strict() as unknown as z.ZodType; - -export const CourseCreateManyZodSchema = z.object({ data: z.union([ CourseCreateManyInputObjectSchema, z.array(CourseCreateManyInputObjectSchema) ]), skipDuplicates: z.boolean().optional() }).strict(); - -// File: createManyAndReturnCourse.schema.ts - -export const CourseCreateManyAndReturnSchema: z.ZodType = z.object({ get select(){ return CourseSelectObjectSchema.optional(); }, data: z.union([ CourseCreateManyInputObjectSchema, z.array(CourseCreateManyInputObjectSchema) ]), skipDuplicates: z.boolean().optional() }).strict() as unknown as z.ZodType; - -export const CourseCreateManyAndReturnZodSchema = z.object({ get select(){ return CourseSelectObjectSchema.optional(); }, data: z.union([ CourseCreateManyInputObjectSchema, z.array(CourseCreateManyInputObjectSchema) ]), skipDuplicates: z.boolean().optional() }).strict(); - -// File: deleteOneCourse.schema.ts - -export const CourseDeleteOneSchema: z.ZodType = z.object({ get select(){ return CourseSelectObjectSchema.optional(); }, get include(){ return CourseIncludeObjectSchema.optional(); }, where: CourseWhereUniqueInputObjectSchema }).strict() as unknown as z.ZodType; - -export const CourseDeleteOneZodSchema = z.object({ get select(){ return CourseSelectObjectSchema.optional(); }, get include(){ return CourseIncludeObjectSchema.optional(); }, where: CourseWhereUniqueInputObjectSchema }).strict(); - -// File: deleteManyCourse.schema.ts - -export const CourseDeleteManySchema: z.ZodType = z.object({ where: CourseWhereInputObjectSchema.optional() }).strict() as unknown as z.ZodType; - -export const CourseDeleteManyZodSchema = z.object({ where: CourseWhereInputObjectSchema.optional() }).strict(); - -// File: updateOneCourse.schema.ts - -export const CourseUpdateOneSchema: z.ZodType = z.object({ get select(){ return CourseSelectObjectSchema.optional(); }, get include(){ return CourseIncludeObjectSchema.optional(); }, data: z.union([CourseUpdateInputObjectSchema, CourseUncheckedUpdateInputObjectSchema]), where: CourseWhereUniqueInputObjectSchema }).strict() as unknown as z.ZodType; - -export const CourseUpdateOneZodSchema = z.object({ get select(){ return CourseSelectObjectSchema.optional(); }, get include(){ return CourseIncludeObjectSchema.optional(); }, data: z.union([CourseUpdateInputObjectSchema, CourseUncheckedUpdateInputObjectSchema]), where: CourseWhereUniqueInputObjectSchema }).strict(); - -// File: updateManyCourse.schema.ts - -export const CourseUpdateManySchema: z.ZodType = z.object({ data: CourseUpdateManyMutationInputObjectSchema, where: CourseWhereInputObjectSchema.optional() }).strict() as unknown as z.ZodType; - -export const CourseUpdateManyZodSchema = z.object({ data: CourseUpdateManyMutationInputObjectSchema, where: CourseWhereInputObjectSchema.optional() }).strict(); - -// File: updateManyAndReturnCourse.schema.ts - -export const CourseUpdateManyAndReturnSchema: z.ZodType = z.object({ get select(){ return CourseSelectObjectSchema.optional(); }, data: CourseUpdateManyMutationInputObjectSchema, where: CourseWhereInputObjectSchema.optional() }).strict() as unknown as z.ZodType; - -export const CourseUpdateManyAndReturnZodSchema = z.object({ get select(){ return CourseSelectObjectSchema.optional(); }, data: CourseUpdateManyMutationInputObjectSchema, where: CourseWhereInputObjectSchema.optional() }).strict(); - -// File: upsertOneCourse.schema.ts - -export const CourseUpsertOneSchema: z.ZodType = z.object({ get select(){ return CourseSelectObjectSchema.optional(); }, get include(){ return CourseIncludeObjectSchema.optional(); }, where: CourseWhereUniqueInputObjectSchema, create: z.union([ CourseCreateInputObjectSchema, CourseUncheckedCreateInputObjectSchema ]), update: z.union([ CourseUpdateInputObjectSchema, CourseUncheckedUpdateInputObjectSchema ]) }).strict() as unknown as z.ZodType; - -export const CourseUpsertOneZodSchema = z.object({ get select(){ return CourseSelectObjectSchema.optional(); }, get include(){ return CourseIncludeObjectSchema.optional(); }, where: CourseWhereUniqueInputObjectSchema, create: z.union([ CourseCreateInputObjectSchema, CourseUncheckedCreateInputObjectSchema ]), update: z.union([ CourseUpdateInputObjectSchema, CourseUncheckedUpdateInputObjectSchema ]) }).strict(); - -// File: aggregateCourse.schema.ts - -export const CourseAggregateSchema: z.ZodType = z.object({ orderBy: z.union([CourseOrderByWithRelationInputObjectSchema, CourseOrderByWithRelationInputObjectSchema.array()]).optional(), where: CourseWhereInputObjectSchema.optional(), cursor: CourseWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), _count: z.union([ z.literal(true), CourseCountAggregateInputObjectSchema ]).optional(), _min: CourseMinAggregateInputObjectSchema.optional(), _max: CourseMaxAggregateInputObjectSchema.optional(), _avg: CourseAvgAggregateInputObjectSchema.optional(), _sum: CourseSumAggregateInputObjectSchema.optional() }).strict() as unknown as z.ZodType; - -export const CourseAggregateZodSchema = z.object({ orderBy: z.union([CourseOrderByWithRelationInputObjectSchema, CourseOrderByWithRelationInputObjectSchema.array()]).optional(), where: CourseWhereInputObjectSchema.optional(), cursor: CourseWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), _count: z.union([ z.literal(true), CourseCountAggregateInputObjectSchema ]).optional(), _min: CourseMinAggregateInputObjectSchema.optional(), _max: CourseMaxAggregateInputObjectSchema.optional(), _avg: CourseAvgAggregateInputObjectSchema.optional(), _sum: CourseSumAggregateInputObjectSchema.optional() }).strict(); - -// File: groupByCourse.schema.ts - -export const CourseGroupBySchema: z.ZodType = z.object({ where: CourseWhereInputObjectSchema.optional(), orderBy: z.union([CourseOrderByWithAggregationInputObjectSchema, CourseOrderByWithAggregationInputObjectSchema.array()]).optional(), having: CourseScalarWhereWithAggregatesInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), by: z.array(CourseScalarFieldEnumSchema), _count: z.union([ z.literal(true), CourseCountAggregateInputObjectSchema ]).optional(), _min: CourseMinAggregateInputObjectSchema.optional(), _max: CourseMaxAggregateInputObjectSchema.optional(), _avg: CourseAvgAggregateInputObjectSchema.optional(), _sum: CourseSumAggregateInputObjectSchema.optional() }).strict() as unknown as z.ZodType; - -export const CourseGroupByZodSchema = z.object({ where: CourseWhereInputObjectSchema.optional(), orderBy: z.union([CourseOrderByWithAggregationInputObjectSchema, CourseOrderByWithAggregationInputObjectSchema.array()]).optional(), having: CourseScalarWhereWithAggregatesInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), by: z.array(CourseScalarFieldEnumSchema), _count: z.union([ z.literal(true), CourseCountAggregateInputObjectSchema ]).optional(), _min: CourseMinAggregateInputObjectSchema.optional(), _max: CourseMaxAggregateInputObjectSchema.optional(), _avg: CourseAvgAggregateInputObjectSchema.optional(), _sum: CourseSumAggregateInputObjectSchema.optional() }).strict(); - -// File: findUniqueGrade.schema.ts - -export const GradeFindUniqueSchema: z.ZodType = z.object({ get select(){ return GradeSelectObjectSchema.optional(); }, get include(){ return GradeIncludeObjectSchema.optional(); }, where: GradeWhereUniqueInputObjectSchema }).strict() as unknown as z.ZodType; - -export const GradeFindUniqueZodSchema = z.object({ get select(){ return GradeSelectObjectSchema.optional(); }, get include(){ return GradeIncludeObjectSchema.optional(); }, where: GradeWhereUniqueInputObjectSchema }).strict(); - -// File: findUniqueOrThrowGrade.schema.ts - -export const GradeFindUniqueOrThrowSchema: z.ZodType = z.object({ get select(){ return GradeSelectObjectSchema.optional(); }, get include(){ return GradeIncludeObjectSchema.optional(); }, where: GradeWhereUniqueInputObjectSchema }).strict() as unknown as z.ZodType; - -export const GradeFindUniqueOrThrowZodSchema = z.object({ get select(){ return GradeSelectObjectSchema.optional(); }, get include(){ return GradeIncludeObjectSchema.optional(); }, where: GradeWhereUniqueInputObjectSchema }).strict(); - -// File: findFirstGrade.schema.ts - -// Select schema needs to be in file to prevent circular imports -//------------------------------------------------------ - -export const GradeFindFirstSelectSchema__findFirstGrade_schema: z.ZodType = z.object({ - id: z.boolean().optional(), - gradeACount: z.boolean().optional(), - gradeBCount: z.boolean().optional(), - gradeCCount: z.boolean().optional(), - gradeDCount: z.boolean().optional(), - gradeECount: z.boolean().optional(), - gradeFCount: z.boolean().optional(), - passedCount: z.boolean().optional(), - failedCount: z.boolean().optional(), - courseId: z.boolean().optional(), - course: z.boolean().optional(), - semester: z.boolean().optional(), - year: z.boolean().optional(), - createdAt: z.boolean().optional(), - updatedAt: z.boolean().optional() - }).strict() as unknown as z.ZodType; - -export const GradeFindFirstSelectZodSchema__findFirstGrade_schema = z.object({ - id: z.boolean().optional(), - gradeACount: z.boolean().optional(), - gradeBCount: z.boolean().optional(), - gradeCCount: z.boolean().optional(), - gradeDCount: z.boolean().optional(), - gradeECount: z.boolean().optional(), - gradeFCount: z.boolean().optional(), - passedCount: z.boolean().optional(), - failedCount: z.boolean().optional(), - courseId: z.boolean().optional(), - course: z.boolean().optional(), - semester: z.boolean().optional(), - year: z.boolean().optional(), - createdAt: z.boolean().optional(), - updatedAt: z.boolean().optional() - }).strict(); - -export const GradeFindFirstSchema: z.ZodType = z.object({ get select(){ return GradeFindFirstSelectSchema__findFirstGrade_schema.optional(); }, get include(){ return GradeIncludeObjectSchema.optional(); }, orderBy: z.union([GradeOrderByWithRelationInputObjectSchema, GradeOrderByWithRelationInputObjectSchema.array()]).optional(), where: GradeWhereInputObjectSchema.optional(), cursor: GradeWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), distinct: z.union([GradeScalarFieldEnumSchema, GradeScalarFieldEnumSchema.array()]).optional() }).strict() as unknown as z.ZodType; - -export const GradeFindFirstZodSchema = z.object({ get select(){ return GradeFindFirstSelectSchema__findFirstGrade_schema.optional(); }, get include(){ return GradeIncludeObjectSchema.optional(); }, orderBy: z.union([GradeOrderByWithRelationInputObjectSchema, GradeOrderByWithRelationInputObjectSchema.array()]).optional(), where: GradeWhereInputObjectSchema.optional(), cursor: GradeWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), distinct: z.union([GradeScalarFieldEnumSchema, GradeScalarFieldEnumSchema.array()]).optional() }).strict(); - -// File: findFirstOrThrowGrade.schema.ts - -// Select schema needs to be in file to prevent circular imports -//------------------------------------------------------ - -export const GradeFindFirstOrThrowSelectSchema__findFirstOrThrowGrade_schema: z.ZodType = z.object({ - id: z.boolean().optional(), - gradeACount: z.boolean().optional(), - gradeBCount: z.boolean().optional(), - gradeCCount: z.boolean().optional(), - gradeDCount: z.boolean().optional(), - gradeECount: z.boolean().optional(), - gradeFCount: z.boolean().optional(), - passedCount: z.boolean().optional(), - failedCount: z.boolean().optional(), - courseId: z.boolean().optional(), - course: z.boolean().optional(), - semester: z.boolean().optional(), - year: z.boolean().optional(), - createdAt: z.boolean().optional(), - updatedAt: z.boolean().optional() - }).strict() as unknown as z.ZodType; - -export const GradeFindFirstOrThrowSelectZodSchema__findFirstOrThrowGrade_schema = z.object({ - id: z.boolean().optional(), - gradeACount: z.boolean().optional(), - gradeBCount: z.boolean().optional(), - gradeCCount: z.boolean().optional(), - gradeDCount: z.boolean().optional(), - gradeECount: z.boolean().optional(), - gradeFCount: z.boolean().optional(), - passedCount: z.boolean().optional(), - failedCount: z.boolean().optional(), - courseId: z.boolean().optional(), - course: z.boolean().optional(), - semester: z.boolean().optional(), - year: z.boolean().optional(), - createdAt: z.boolean().optional(), - updatedAt: z.boolean().optional() - }).strict(); - -export const GradeFindFirstOrThrowSchema: z.ZodType = z.object({ get select(){ return GradeFindFirstOrThrowSelectSchema__findFirstOrThrowGrade_schema.optional(); }, get include(){ return GradeIncludeObjectSchema.optional(); }, orderBy: z.union([GradeOrderByWithRelationInputObjectSchema, GradeOrderByWithRelationInputObjectSchema.array()]).optional(), where: GradeWhereInputObjectSchema.optional(), cursor: GradeWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), distinct: z.union([GradeScalarFieldEnumSchema, GradeScalarFieldEnumSchema.array()]).optional() }).strict() as unknown as z.ZodType; - -export const GradeFindFirstOrThrowZodSchema = z.object({ get select(){ return GradeFindFirstOrThrowSelectSchema__findFirstOrThrowGrade_schema.optional(); }, get include(){ return GradeIncludeObjectSchema.optional(); }, orderBy: z.union([GradeOrderByWithRelationInputObjectSchema, GradeOrderByWithRelationInputObjectSchema.array()]).optional(), where: GradeWhereInputObjectSchema.optional(), cursor: GradeWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), distinct: z.union([GradeScalarFieldEnumSchema, GradeScalarFieldEnumSchema.array()]).optional() }).strict(); - -// File: findManyGrade.schema.ts - -// Select schema needs to be in file to prevent circular imports -//------------------------------------------------------ - -export const GradeFindManySelectSchema__findManyGrade_schema: z.ZodType = z.object({ - id: z.boolean().optional(), - gradeACount: z.boolean().optional(), - gradeBCount: z.boolean().optional(), - gradeCCount: z.boolean().optional(), - gradeDCount: z.boolean().optional(), - gradeECount: z.boolean().optional(), - gradeFCount: z.boolean().optional(), - passedCount: z.boolean().optional(), - failedCount: z.boolean().optional(), - courseId: z.boolean().optional(), - course: z.boolean().optional(), - semester: z.boolean().optional(), - year: z.boolean().optional(), - createdAt: z.boolean().optional(), - updatedAt: z.boolean().optional() - }).strict() as unknown as z.ZodType; - -export const GradeFindManySelectZodSchema__findManyGrade_schema = z.object({ - id: z.boolean().optional(), - gradeACount: z.boolean().optional(), - gradeBCount: z.boolean().optional(), - gradeCCount: z.boolean().optional(), - gradeDCount: z.boolean().optional(), - gradeECount: z.boolean().optional(), - gradeFCount: z.boolean().optional(), - passedCount: z.boolean().optional(), - failedCount: z.boolean().optional(), - courseId: z.boolean().optional(), - course: z.boolean().optional(), - semester: z.boolean().optional(), - year: z.boolean().optional(), - createdAt: z.boolean().optional(), - updatedAt: z.boolean().optional() - }).strict(); - -export const GradeFindManySchema: z.ZodType = z.object({ get select(){ return GradeFindManySelectSchema__findManyGrade_schema.optional(); }, get include(){ return GradeIncludeObjectSchema.optional(); }, orderBy: z.union([GradeOrderByWithRelationInputObjectSchema, GradeOrderByWithRelationInputObjectSchema.array()]).optional(), where: GradeWhereInputObjectSchema.optional(), cursor: GradeWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), distinct: z.union([GradeScalarFieldEnumSchema, GradeScalarFieldEnumSchema.array()]).optional() }).strict() as unknown as z.ZodType; - -export const GradeFindManyZodSchema = z.object({ get select(){ return GradeFindManySelectSchema__findManyGrade_schema.optional(); }, get include(){ return GradeIncludeObjectSchema.optional(); }, orderBy: z.union([GradeOrderByWithRelationInputObjectSchema, GradeOrderByWithRelationInputObjectSchema.array()]).optional(), where: GradeWhereInputObjectSchema.optional(), cursor: GradeWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), distinct: z.union([GradeScalarFieldEnumSchema, GradeScalarFieldEnumSchema.array()]).optional() }).strict(); - -// File: countGrade.schema.ts - -export const GradeCountSchema: z.ZodType = z.object({ orderBy: z.union([GradeOrderByWithRelationInputObjectSchema, GradeOrderByWithRelationInputObjectSchema.array()]).optional(), where: GradeWhereInputObjectSchema.optional(), cursor: GradeWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), select: z.union([ z.literal(true), GradeCountAggregateInputObjectSchema ]).optional() }).strict() as unknown as z.ZodType; - -export const GradeCountZodSchema = z.object({ orderBy: z.union([GradeOrderByWithRelationInputObjectSchema, GradeOrderByWithRelationInputObjectSchema.array()]).optional(), where: GradeWhereInputObjectSchema.optional(), cursor: GradeWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), select: z.union([ z.literal(true), GradeCountAggregateInputObjectSchema ]).optional() }).strict(); - -// File: createOneGrade.schema.ts - -export const GradeCreateOneSchema: z.ZodType = z.object({ get select(){ return GradeSelectObjectSchema.optional(); }, get include(){ return GradeIncludeObjectSchema.optional(); }, data: z.union([GradeCreateInputObjectSchema, GradeUncheckedCreateInputObjectSchema]) }).strict() as unknown as z.ZodType; - -export const GradeCreateOneZodSchema = z.object({ get select(){ return GradeSelectObjectSchema.optional(); }, get include(){ return GradeIncludeObjectSchema.optional(); }, data: z.union([GradeCreateInputObjectSchema, GradeUncheckedCreateInputObjectSchema]) }).strict(); - -// File: createManyGrade.schema.ts - -export const GradeCreateManySchema: z.ZodType = z.object({ data: z.union([ GradeCreateManyInputObjectSchema, z.array(GradeCreateManyInputObjectSchema) ]), skipDuplicates: z.boolean().optional() }).strict() as unknown as z.ZodType; - -export const GradeCreateManyZodSchema = z.object({ data: z.union([ GradeCreateManyInputObjectSchema, z.array(GradeCreateManyInputObjectSchema) ]), skipDuplicates: z.boolean().optional() }).strict(); - -// File: createManyAndReturnGrade.schema.ts - -export const GradeCreateManyAndReturnSchema: z.ZodType = z.object({ get select(){ return GradeSelectObjectSchema.optional(); }, data: z.union([ GradeCreateManyInputObjectSchema, z.array(GradeCreateManyInputObjectSchema) ]), skipDuplicates: z.boolean().optional() }).strict() as unknown as z.ZodType; - -export const GradeCreateManyAndReturnZodSchema = z.object({ get select(){ return GradeSelectObjectSchema.optional(); }, data: z.union([ GradeCreateManyInputObjectSchema, z.array(GradeCreateManyInputObjectSchema) ]), skipDuplicates: z.boolean().optional() }).strict(); - -// File: deleteOneGrade.schema.ts - -export const GradeDeleteOneSchema: z.ZodType = z.object({ get select(){ return GradeSelectObjectSchema.optional(); }, get include(){ return GradeIncludeObjectSchema.optional(); }, where: GradeWhereUniqueInputObjectSchema }).strict() as unknown as z.ZodType; - -export const GradeDeleteOneZodSchema = z.object({ get select(){ return GradeSelectObjectSchema.optional(); }, get include(){ return GradeIncludeObjectSchema.optional(); }, where: GradeWhereUniqueInputObjectSchema }).strict(); - -// File: deleteManyGrade.schema.ts - -export const GradeDeleteManySchema: z.ZodType = z.object({ where: GradeWhereInputObjectSchema.optional() }).strict() as unknown as z.ZodType; - -export const GradeDeleteManyZodSchema = z.object({ where: GradeWhereInputObjectSchema.optional() }).strict(); - -// File: updateOneGrade.schema.ts - -export const GradeUpdateOneSchema: z.ZodType = z.object({ get select(){ return GradeSelectObjectSchema.optional(); }, get include(){ return GradeIncludeObjectSchema.optional(); }, data: z.union([GradeUpdateInputObjectSchema, GradeUncheckedUpdateInputObjectSchema]), where: GradeWhereUniqueInputObjectSchema }).strict() as unknown as z.ZodType; - -export const GradeUpdateOneZodSchema = z.object({ get select(){ return GradeSelectObjectSchema.optional(); }, get include(){ return GradeIncludeObjectSchema.optional(); }, data: z.union([GradeUpdateInputObjectSchema, GradeUncheckedUpdateInputObjectSchema]), where: GradeWhereUniqueInputObjectSchema }).strict(); - -// File: updateManyGrade.schema.ts - -export const GradeUpdateManySchema: z.ZodType = z.object({ data: GradeUpdateManyMutationInputObjectSchema, where: GradeWhereInputObjectSchema.optional() }).strict() as unknown as z.ZodType; - -export const GradeUpdateManyZodSchema = z.object({ data: GradeUpdateManyMutationInputObjectSchema, where: GradeWhereInputObjectSchema.optional() }).strict(); - -// File: updateManyAndReturnGrade.schema.ts - -export const GradeUpdateManyAndReturnSchema: z.ZodType = z.object({ get select(){ return GradeSelectObjectSchema.optional(); }, data: GradeUpdateManyMutationInputObjectSchema, where: GradeWhereInputObjectSchema.optional() }).strict() as unknown as z.ZodType; - -export const GradeUpdateManyAndReturnZodSchema = z.object({ get select(){ return GradeSelectObjectSchema.optional(); }, data: GradeUpdateManyMutationInputObjectSchema, where: GradeWhereInputObjectSchema.optional() }).strict(); - -// File: upsertOneGrade.schema.ts - -export const GradeUpsertOneSchema: z.ZodType = z.object({ get select(){ return GradeSelectObjectSchema.optional(); }, get include(){ return GradeIncludeObjectSchema.optional(); }, where: GradeWhereUniqueInputObjectSchema, create: z.union([ GradeCreateInputObjectSchema, GradeUncheckedCreateInputObjectSchema ]), update: z.union([ GradeUpdateInputObjectSchema, GradeUncheckedUpdateInputObjectSchema ]) }).strict() as unknown as z.ZodType; - -export const GradeUpsertOneZodSchema = z.object({ get select(){ return GradeSelectObjectSchema.optional(); }, get include(){ return GradeIncludeObjectSchema.optional(); }, where: GradeWhereUniqueInputObjectSchema, create: z.union([ GradeCreateInputObjectSchema, GradeUncheckedCreateInputObjectSchema ]), update: z.union([ GradeUpdateInputObjectSchema, GradeUncheckedUpdateInputObjectSchema ]) }).strict(); - -// File: aggregateGrade.schema.ts - -export const GradeAggregateSchema: z.ZodType = z.object({ orderBy: z.union([GradeOrderByWithRelationInputObjectSchema, GradeOrderByWithRelationInputObjectSchema.array()]).optional(), where: GradeWhereInputObjectSchema.optional(), cursor: GradeWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), _count: z.union([ z.literal(true), GradeCountAggregateInputObjectSchema ]).optional(), _min: GradeMinAggregateInputObjectSchema.optional(), _max: GradeMaxAggregateInputObjectSchema.optional(), _avg: GradeAvgAggregateInputObjectSchema.optional(), _sum: GradeSumAggregateInputObjectSchema.optional() }).strict() as unknown as z.ZodType; - -export const GradeAggregateZodSchema = z.object({ orderBy: z.union([GradeOrderByWithRelationInputObjectSchema, GradeOrderByWithRelationInputObjectSchema.array()]).optional(), where: GradeWhereInputObjectSchema.optional(), cursor: GradeWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), _count: z.union([ z.literal(true), GradeCountAggregateInputObjectSchema ]).optional(), _min: GradeMinAggregateInputObjectSchema.optional(), _max: GradeMaxAggregateInputObjectSchema.optional(), _avg: GradeAvgAggregateInputObjectSchema.optional(), _sum: GradeSumAggregateInputObjectSchema.optional() }).strict(); - -// File: groupByGrade.schema.ts - -export const GradeGroupBySchema: z.ZodType = z.object({ where: GradeWhereInputObjectSchema.optional(), orderBy: z.union([GradeOrderByWithAggregationInputObjectSchema, GradeOrderByWithAggregationInputObjectSchema.array()]).optional(), having: GradeScalarWhereWithAggregatesInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), by: z.array(GradeScalarFieldEnumSchema), _count: z.union([ z.literal(true), GradeCountAggregateInputObjectSchema ]).optional(), _min: GradeMinAggregateInputObjectSchema.optional(), _max: GradeMaxAggregateInputObjectSchema.optional(), _avg: GradeAvgAggregateInputObjectSchema.optional(), _sum: GradeSumAggregateInputObjectSchema.optional() }).strict() as unknown as z.ZodType; - -export const GradeGroupByZodSchema = z.object({ where: GradeWhereInputObjectSchema.optional(), orderBy: z.union([GradeOrderByWithAggregationInputObjectSchema, GradeOrderByWithAggregationInputObjectSchema.array()]).optional(), having: GradeScalarWhereWithAggregatesInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), by: z.array(GradeScalarFieldEnumSchema), _count: z.union([ z.literal(true), GradeCountAggregateInputObjectSchema ]).optional(), _min: GradeMinAggregateInputObjectSchema.optional(), _max: GradeMaxAggregateInputObjectSchema.optional(), _avg: GradeAvgAggregateInputObjectSchema.optional(), _sum: GradeSumAggregateInputObjectSchema.optional() }).strict(); - -// File: findUniqueFaculty.schema.ts - -export const FacultyFindUniqueSchema: z.ZodType = z.object({ get select(){ return FacultySelectObjectSchema.optional(); }, get include(){ return FacultyIncludeObjectSchema.optional(); }, where: FacultyWhereUniqueInputObjectSchema }).strict() as unknown as z.ZodType; - -export const FacultyFindUniqueZodSchema = z.object({ get select(){ return FacultySelectObjectSchema.optional(); }, get include(){ return FacultyIncludeObjectSchema.optional(); }, where: FacultyWhereUniqueInputObjectSchema }).strict(); - -// File: findUniqueOrThrowFaculty.schema.ts - -export const FacultyFindUniqueOrThrowSchema: z.ZodType = z.object({ get select(){ return FacultySelectObjectSchema.optional(); }, get include(){ return FacultyIncludeObjectSchema.optional(); }, where: FacultyWhereUniqueInputObjectSchema }).strict() as unknown as z.ZodType; - -export const FacultyFindUniqueOrThrowZodSchema = z.object({ get select(){ return FacultySelectObjectSchema.optional(); }, get include(){ return FacultyIncludeObjectSchema.optional(); }, where: FacultyWhereUniqueInputObjectSchema }).strict(); - -// File: findFirstFaculty.schema.ts - -// Select schema needs to be in file to prevent circular imports -//------------------------------------------------------ - -export const FacultyFindFirstSelectSchema__findFirstFaculty_schema: z.ZodType = z.object({ - id: z.boolean().optional(), - nameNo: z.boolean().optional(), - nameEn: z.boolean().optional(), - code: z.boolean().optional(), - courses: z.boolean().optional(), - departments: z.boolean().optional(), - _count: z.boolean().optional() - }).strict() as unknown as z.ZodType; - -export const FacultyFindFirstSelectZodSchema__findFirstFaculty_schema = z.object({ - id: z.boolean().optional(), - nameNo: z.boolean().optional(), - nameEn: z.boolean().optional(), - code: z.boolean().optional(), - courses: z.boolean().optional(), - departments: z.boolean().optional(), - _count: z.boolean().optional() - }).strict(); - -export const FacultyFindFirstSchema: z.ZodType = z.object({ get select(){ return FacultyFindFirstSelectSchema__findFirstFaculty_schema.optional(); }, get include(){ return FacultyIncludeObjectSchema.optional(); }, orderBy: z.union([FacultyOrderByWithRelationInputObjectSchema, FacultyOrderByWithRelationInputObjectSchema.array()]).optional(), where: FacultyWhereInputObjectSchema.optional(), cursor: FacultyWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), distinct: z.union([FacultyScalarFieldEnumSchema, FacultyScalarFieldEnumSchema.array()]).optional() }).strict() as unknown as z.ZodType; - -export const FacultyFindFirstZodSchema = z.object({ get select(){ return FacultyFindFirstSelectSchema__findFirstFaculty_schema.optional(); }, get include(){ return FacultyIncludeObjectSchema.optional(); }, orderBy: z.union([FacultyOrderByWithRelationInputObjectSchema, FacultyOrderByWithRelationInputObjectSchema.array()]).optional(), where: FacultyWhereInputObjectSchema.optional(), cursor: FacultyWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), distinct: z.union([FacultyScalarFieldEnumSchema, FacultyScalarFieldEnumSchema.array()]).optional() }).strict(); - -// File: findFirstOrThrowFaculty.schema.ts - -// Select schema needs to be in file to prevent circular imports -//------------------------------------------------------ - -export const FacultyFindFirstOrThrowSelectSchema__findFirstOrThrowFaculty_schema: z.ZodType = z.object({ - id: z.boolean().optional(), - nameNo: z.boolean().optional(), - nameEn: z.boolean().optional(), - code: z.boolean().optional(), - courses: z.boolean().optional(), - departments: z.boolean().optional(), - _count: z.boolean().optional() - }).strict() as unknown as z.ZodType; - -export const FacultyFindFirstOrThrowSelectZodSchema__findFirstOrThrowFaculty_schema = z.object({ - id: z.boolean().optional(), - nameNo: z.boolean().optional(), - nameEn: z.boolean().optional(), - code: z.boolean().optional(), - courses: z.boolean().optional(), - departments: z.boolean().optional(), - _count: z.boolean().optional() - }).strict(); - -export const FacultyFindFirstOrThrowSchema: z.ZodType = z.object({ get select(){ return FacultyFindFirstOrThrowSelectSchema__findFirstOrThrowFaculty_schema.optional(); }, get include(){ return FacultyIncludeObjectSchema.optional(); }, orderBy: z.union([FacultyOrderByWithRelationInputObjectSchema, FacultyOrderByWithRelationInputObjectSchema.array()]).optional(), where: FacultyWhereInputObjectSchema.optional(), cursor: FacultyWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), distinct: z.union([FacultyScalarFieldEnumSchema, FacultyScalarFieldEnumSchema.array()]).optional() }).strict() as unknown as z.ZodType; - -export const FacultyFindFirstOrThrowZodSchema = z.object({ get select(){ return FacultyFindFirstOrThrowSelectSchema__findFirstOrThrowFaculty_schema.optional(); }, get include(){ return FacultyIncludeObjectSchema.optional(); }, orderBy: z.union([FacultyOrderByWithRelationInputObjectSchema, FacultyOrderByWithRelationInputObjectSchema.array()]).optional(), where: FacultyWhereInputObjectSchema.optional(), cursor: FacultyWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), distinct: z.union([FacultyScalarFieldEnumSchema, FacultyScalarFieldEnumSchema.array()]).optional() }).strict(); - -// File: findManyFaculty.schema.ts - -// Select schema needs to be in file to prevent circular imports -//------------------------------------------------------ - -export const FacultyFindManySelectSchema__findManyFaculty_schema: z.ZodType = z.object({ - id: z.boolean().optional(), - nameNo: z.boolean().optional(), - nameEn: z.boolean().optional(), - code: z.boolean().optional(), - courses: z.boolean().optional(), - departments: z.boolean().optional(), - _count: z.boolean().optional() - }).strict() as unknown as z.ZodType; - -export const FacultyFindManySelectZodSchema__findManyFaculty_schema = z.object({ - id: z.boolean().optional(), - nameNo: z.boolean().optional(), - nameEn: z.boolean().optional(), - code: z.boolean().optional(), - courses: z.boolean().optional(), - departments: z.boolean().optional(), - _count: z.boolean().optional() - }).strict(); - -export const FacultyFindManySchema: z.ZodType = z.object({ get select(){ return FacultyFindManySelectSchema__findManyFaculty_schema.optional(); }, get include(){ return FacultyIncludeObjectSchema.optional(); }, orderBy: z.union([FacultyOrderByWithRelationInputObjectSchema, FacultyOrderByWithRelationInputObjectSchema.array()]).optional(), where: FacultyWhereInputObjectSchema.optional(), cursor: FacultyWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), distinct: z.union([FacultyScalarFieldEnumSchema, FacultyScalarFieldEnumSchema.array()]).optional() }).strict() as unknown as z.ZodType; - -export const FacultyFindManyZodSchema = z.object({ get select(){ return FacultyFindManySelectSchema__findManyFaculty_schema.optional(); }, get include(){ return FacultyIncludeObjectSchema.optional(); }, orderBy: z.union([FacultyOrderByWithRelationInputObjectSchema, FacultyOrderByWithRelationInputObjectSchema.array()]).optional(), where: FacultyWhereInputObjectSchema.optional(), cursor: FacultyWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), distinct: z.union([FacultyScalarFieldEnumSchema, FacultyScalarFieldEnumSchema.array()]).optional() }).strict(); - -// File: countFaculty.schema.ts - -export const FacultyCountSchema: z.ZodType = z.object({ orderBy: z.union([FacultyOrderByWithRelationInputObjectSchema, FacultyOrderByWithRelationInputObjectSchema.array()]).optional(), where: FacultyWhereInputObjectSchema.optional(), cursor: FacultyWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), select: z.union([ z.literal(true), FacultyCountAggregateInputObjectSchema ]).optional() }).strict() as unknown as z.ZodType; - -export const FacultyCountZodSchema = z.object({ orderBy: z.union([FacultyOrderByWithRelationInputObjectSchema, FacultyOrderByWithRelationInputObjectSchema.array()]).optional(), where: FacultyWhereInputObjectSchema.optional(), cursor: FacultyWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), select: z.union([ z.literal(true), FacultyCountAggregateInputObjectSchema ]).optional() }).strict(); - -// File: createOneFaculty.schema.ts - -export const FacultyCreateOneSchema: z.ZodType = z.object({ get select(){ return FacultySelectObjectSchema.optional(); }, get include(){ return FacultyIncludeObjectSchema.optional(); }, data: z.union([FacultyCreateInputObjectSchema, FacultyUncheckedCreateInputObjectSchema]) }).strict() as unknown as z.ZodType; - -export const FacultyCreateOneZodSchema = z.object({ get select(){ return FacultySelectObjectSchema.optional(); }, get include(){ return FacultyIncludeObjectSchema.optional(); }, data: z.union([FacultyCreateInputObjectSchema, FacultyUncheckedCreateInputObjectSchema]) }).strict(); - -// File: createManyFaculty.schema.ts - -export const FacultyCreateManySchema: z.ZodType = z.object({ data: z.union([ FacultyCreateManyInputObjectSchema, z.array(FacultyCreateManyInputObjectSchema) ]), skipDuplicates: z.boolean().optional() }).strict() as unknown as z.ZodType; - -export const FacultyCreateManyZodSchema = z.object({ data: z.union([ FacultyCreateManyInputObjectSchema, z.array(FacultyCreateManyInputObjectSchema) ]), skipDuplicates: z.boolean().optional() }).strict(); - -// File: createManyAndReturnFaculty.schema.ts - -export const FacultyCreateManyAndReturnSchema: z.ZodType = z.object({ get select(){ return FacultySelectObjectSchema.optional(); }, data: z.union([ FacultyCreateManyInputObjectSchema, z.array(FacultyCreateManyInputObjectSchema) ]), skipDuplicates: z.boolean().optional() }).strict() as unknown as z.ZodType; - -export const FacultyCreateManyAndReturnZodSchema = z.object({ get select(){ return FacultySelectObjectSchema.optional(); }, data: z.union([ FacultyCreateManyInputObjectSchema, z.array(FacultyCreateManyInputObjectSchema) ]), skipDuplicates: z.boolean().optional() }).strict(); - -// File: deleteOneFaculty.schema.ts - -export const FacultyDeleteOneSchema: z.ZodType = z.object({ get select(){ return FacultySelectObjectSchema.optional(); }, get include(){ return FacultyIncludeObjectSchema.optional(); }, where: FacultyWhereUniqueInputObjectSchema }).strict() as unknown as z.ZodType; - -export const FacultyDeleteOneZodSchema = z.object({ get select(){ return FacultySelectObjectSchema.optional(); }, get include(){ return FacultyIncludeObjectSchema.optional(); }, where: FacultyWhereUniqueInputObjectSchema }).strict(); - -// File: deleteManyFaculty.schema.ts - -export const FacultyDeleteManySchema: z.ZodType = z.object({ where: FacultyWhereInputObjectSchema.optional() }).strict() as unknown as z.ZodType; - -export const FacultyDeleteManyZodSchema = z.object({ where: FacultyWhereInputObjectSchema.optional() }).strict(); - -// File: updateOneFaculty.schema.ts - -export const FacultyUpdateOneSchema: z.ZodType = z.object({ get select(){ return FacultySelectObjectSchema.optional(); }, get include(){ return FacultyIncludeObjectSchema.optional(); }, data: z.union([FacultyUpdateInputObjectSchema, FacultyUncheckedUpdateInputObjectSchema]), where: FacultyWhereUniqueInputObjectSchema }).strict() as unknown as z.ZodType; - -export const FacultyUpdateOneZodSchema = z.object({ get select(){ return FacultySelectObjectSchema.optional(); }, get include(){ return FacultyIncludeObjectSchema.optional(); }, data: z.union([FacultyUpdateInputObjectSchema, FacultyUncheckedUpdateInputObjectSchema]), where: FacultyWhereUniqueInputObjectSchema }).strict(); - -// File: updateManyFaculty.schema.ts - -export const FacultyUpdateManySchema: z.ZodType = z.object({ data: FacultyUpdateManyMutationInputObjectSchema, where: FacultyWhereInputObjectSchema.optional() }).strict() as unknown as z.ZodType; - -export const FacultyUpdateManyZodSchema = z.object({ data: FacultyUpdateManyMutationInputObjectSchema, where: FacultyWhereInputObjectSchema.optional() }).strict(); - -// File: updateManyAndReturnFaculty.schema.ts - -export const FacultyUpdateManyAndReturnSchema: z.ZodType = z.object({ get select(){ return FacultySelectObjectSchema.optional(); }, data: FacultyUpdateManyMutationInputObjectSchema, where: FacultyWhereInputObjectSchema.optional() }).strict() as unknown as z.ZodType; - -export const FacultyUpdateManyAndReturnZodSchema = z.object({ get select(){ return FacultySelectObjectSchema.optional(); }, data: FacultyUpdateManyMutationInputObjectSchema, where: FacultyWhereInputObjectSchema.optional() }).strict(); - -// File: upsertOneFaculty.schema.ts - -export const FacultyUpsertOneSchema: z.ZodType = z.object({ get select(){ return FacultySelectObjectSchema.optional(); }, get include(){ return FacultyIncludeObjectSchema.optional(); }, where: FacultyWhereUniqueInputObjectSchema, create: z.union([ FacultyCreateInputObjectSchema, FacultyUncheckedCreateInputObjectSchema ]), update: z.union([ FacultyUpdateInputObjectSchema, FacultyUncheckedUpdateInputObjectSchema ]) }).strict() as unknown as z.ZodType; - -export const FacultyUpsertOneZodSchema = z.object({ get select(){ return FacultySelectObjectSchema.optional(); }, get include(){ return FacultyIncludeObjectSchema.optional(); }, where: FacultyWhereUniqueInputObjectSchema, create: z.union([ FacultyCreateInputObjectSchema, FacultyUncheckedCreateInputObjectSchema ]), update: z.union([ FacultyUpdateInputObjectSchema, FacultyUncheckedUpdateInputObjectSchema ]) }).strict(); - -// File: aggregateFaculty.schema.ts - -export const FacultyAggregateSchema: z.ZodType = z.object({ orderBy: z.union([FacultyOrderByWithRelationInputObjectSchema, FacultyOrderByWithRelationInputObjectSchema.array()]).optional(), where: FacultyWhereInputObjectSchema.optional(), cursor: FacultyWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), _count: z.union([ z.literal(true), FacultyCountAggregateInputObjectSchema ]).optional(), _min: FacultyMinAggregateInputObjectSchema.optional(), _max: FacultyMaxAggregateInputObjectSchema.optional(), _avg: FacultyAvgAggregateInputObjectSchema.optional(), _sum: FacultySumAggregateInputObjectSchema.optional() }).strict() as unknown as z.ZodType; - -export const FacultyAggregateZodSchema = z.object({ orderBy: z.union([FacultyOrderByWithRelationInputObjectSchema, FacultyOrderByWithRelationInputObjectSchema.array()]).optional(), where: FacultyWhereInputObjectSchema.optional(), cursor: FacultyWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), _count: z.union([ z.literal(true), FacultyCountAggregateInputObjectSchema ]).optional(), _min: FacultyMinAggregateInputObjectSchema.optional(), _max: FacultyMaxAggregateInputObjectSchema.optional(), _avg: FacultyAvgAggregateInputObjectSchema.optional(), _sum: FacultySumAggregateInputObjectSchema.optional() }).strict(); - -// File: groupByFaculty.schema.ts - -export const FacultyGroupBySchema: z.ZodType = z.object({ where: FacultyWhereInputObjectSchema.optional(), orderBy: z.union([FacultyOrderByWithAggregationInputObjectSchema, FacultyOrderByWithAggregationInputObjectSchema.array()]).optional(), having: FacultyScalarWhereWithAggregatesInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), by: z.array(FacultyScalarFieldEnumSchema), _count: z.union([ z.literal(true), FacultyCountAggregateInputObjectSchema ]).optional(), _min: FacultyMinAggregateInputObjectSchema.optional(), _max: FacultyMaxAggregateInputObjectSchema.optional(), _avg: FacultyAvgAggregateInputObjectSchema.optional(), _sum: FacultySumAggregateInputObjectSchema.optional() }).strict() as unknown as z.ZodType; - -export const FacultyGroupByZodSchema = z.object({ where: FacultyWhereInputObjectSchema.optional(), orderBy: z.union([FacultyOrderByWithAggregationInputObjectSchema, FacultyOrderByWithAggregationInputObjectSchema.array()]).optional(), having: FacultyScalarWhereWithAggregatesInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), by: z.array(FacultyScalarFieldEnumSchema), _count: z.union([ z.literal(true), FacultyCountAggregateInputObjectSchema ]).optional(), _min: FacultyMinAggregateInputObjectSchema.optional(), _max: FacultyMaxAggregateInputObjectSchema.optional(), _avg: FacultyAvgAggregateInputObjectSchema.optional(), _sum: FacultySumAggregateInputObjectSchema.optional() }).strict(); - -// File: findUniqueDepartment.schema.ts - -export const DepartmentFindUniqueSchema: z.ZodType = z.object({ get select(){ return DepartmentSelectObjectSchema.optional(); }, get include(){ return DepartmentIncludeObjectSchema.optional(); }, where: DepartmentWhereUniqueInputObjectSchema }).strict() as unknown as z.ZodType; - -export const DepartmentFindUniqueZodSchema = z.object({ get select(){ return DepartmentSelectObjectSchema.optional(); }, get include(){ return DepartmentIncludeObjectSchema.optional(); }, where: DepartmentWhereUniqueInputObjectSchema }).strict(); - -// File: findUniqueOrThrowDepartment.schema.ts - -export const DepartmentFindUniqueOrThrowSchema: z.ZodType = z.object({ get select(){ return DepartmentSelectObjectSchema.optional(); }, get include(){ return DepartmentIncludeObjectSchema.optional(); }, where: DepartmentWhereUniqueInputObjectSchema }).strict() as unknown as z.ZodType; - -export const DepartmentFindUniqueOrThrowZodSchema = z.object({ get select(){ return DepartmentSelectObjectSchema.optional(); }, get include(){ return DepartmentIncludeObjectSchema.optional(); }, where: DepartmentWhereUniqueInputObjectSchema }).strict(); - -// File: findFirstDepartment.schema.ts - -// Select schema needs to be in file to prevent circular imports -//------------------------------------------------------ - -export const DepartmentFindFirstSelectSchema__findFirstDepartment_schema: z.ZodType = z.object({ - id: z.boolean().optional(), - nameNo: z.boolean().optional(), - nameEn: z.boolean().optional(), - code: z.boolean().optional(), - courses: z.boolean().optional(), - facultyId: z.boolean().optional(), - faculty: z.boolean().optional(), - _count: z.boolean().optional() - }).strict() as unknown as z.ZodType; - -export const DepartmentFindFirstSelectZodSchema__findFirstDepartment_schema = z.object({ - id: z.boolean().optional(), - nameNo: z.boolean().optional(), - nameEn: z.boolean().optional(), - code: z.boolean().optional(), - courses: z.boolean().optional(), - facultyId: z.boolean().optional(), - faculty: z.boolean().optional(), - _count: z.boolean().optional() - }).strict(); - -export const DepartmentFindFirstSchema: z.ZodType = z.object({ get select(){ return DepartmentFindFirstSelectSchema__findFirstDepartment_schema.optional(); }, get include(){ return DepartmentIncludeObjectSchema.optional(); }, orderBy: z.union([DepartmentOrderByWithRelationInputObjectSchema, DepartmentOrderByWithRelationInputObjectSchema.array()]).optional(), where: DepartmentWhereInputObjectSchema.optional(), cursor: DepartmentWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), distinct: z.union([DepartmentScalarFieldEnumSchema, DepartmentScalarFieldEnumSchema.array()]).optional() }).strict() as unknown as z.ZodType; - -export const DepartmentFindFirstZodSchema = z.object({ get select(){ return DepartmentFindFirstSelectSchema__findFirstDepartment_schema.optional(); }, get include(){ return DepartmentIncludeObjectSchema.optional(); }, orderBy: z.union([DepartmentOrderByWithRelationInputObjectSchema, DepartmentOrderByWithRelationInputObjectSchema.array()]).optional(), where: DepartmentWhereInputObjectSchema.optional(), cursor: DepartmentWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), distinct: z.union([DepartmentScalarFieldEnumSchema, DepartmentScalarFieldEnumSchema.array()]).optional() }).strict(); - -// File: findFirstOrThrowDepartment.schema.ts - -// Select schema needs to be in file to prevent circular imports -//------------------------------------------------------ - -export const DepartmentFindFirstOrThrowSelectSchema__findFirstOrThrowDepartment_schema: z.ZodType = z.object({ - id: z.boolean().optional(), - nameNo: z.boolean().optional(), - nameEn: z.boolean().optional(), - code: z.boolean().optional(), - courses: z.boolean().optional(), - facultyId: z.boolean().optional(), - faculty: z.boolean().optional(), - _count: z.boolean().optional() - }).strict() as unknown as z.ZodType; - -export const DepartmentFindFirstOrThrowSelectZodSchema__findFirstOrThrowDepartment_schema = z.object({ - id: z.boolean().optional(), - nameNo: z.boolean().optional(), - nameEn: z.boolean().optional(), - code: z.boolean().optional(), - courses: z.boolean().optional(), - facultyId: z.boolean().optional(), - faculty: z.boolean().optional(), - _count: z.boolean().optional() - }).strict(); - -export const DepartmentFindFirstOrThrowSchema: z.ZodType = z.object({ get select(){ return DepartmentFindFirstOrThrowSelectSchema__findFirstOrThrowDepartment_schema.optional(); }, get include(){ return DepartmentIncludeObjectSchema.optional(); }, orderBy: z.union([DepartmentOrderByWithRelationInputObjectSchema, DepartmentOrderByWithRelationInputObjectSchema.array()]).optional(), where: DepartmentWhereInputObjectSchema.optional(), cursor: DepartmentWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), distinct: z.union([DepartmentScalarFieldEnumSchema, DepartmentScalarFieldEnumSchema.array()]).optional() }).strict() as unknown as z.ZodType; - -export const DepartmentFindFirstOrThrowZodSchema = z.object({ get select(){ return DepartmentFindFirstOrThrowSelectSchema__findFirstOrThrowDepartment_schema.optional(); }, get include(){ return DepartmentIncludeObjectSchema.optional(); }, orderBy: z.union([DepartmentOrderByWithRelationInputObjectSchema, DepartmentOrderByWithRelationInputObjectSchema.array()]).optional(), where: DepartmentWhereInputObjectSchema.optional(), cursor: DepartmentWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), distinct: z.union([DepartmentScalarFieldEnumSchema, DepartmentScalarFieldEnumSchema.array()]).optional() }).strict(); - -// File: findManyDepartment.schema.ts - -// Select schema needs to be in file to prevent circular imports -//------------------------------------------------------ - -export const DepartmentFindManySelectSchema__findManyDepartment_schema: z.ZodType = z.object({ - id: z.boolean().optional(), - nameNo: z.boolean().optional(), - nameEn: z.boolean().optional(), - code: z.boolean().optional(), - courses: z.boolean().optional(), - facultyId: z.boolean().optional(), - faculty: z.boolean().optional(), - _count: z.boolean().optional() - }).strict() as unknown as z.ZodType; - -export const DepartmentFindManySelectZodSchema__findManyDepartment_schema = z.object({ - id: z.boolean().optional(), - nameNo: z.boolean().optional(), - nameEn: z.boolean().optional(), - code: z.boolean().optional(), - courses: z.boolean().optional(), - facultyId: z.boolean().optional(), - faculty: z.boolean().optional(), - _count: z.boolean().optional() - }).strict(); - -export const DepartmentFindManySchema: z.ZodType = z.object({ get select(){ return DepartmentFindManySelectSchema__findManyDepartment_schema.optional(); }, get include(){ return DepartmentIncludeObjectSchema.optional(); }, orderBy: z.union([DepartmentOrderByWithRelationInputObjectSchema, DepartmentOrderByWithRelationInputObjectSchema.array()]).optional(), where: DepartmentWhereInputObjectSchema.optional(), cursor: DepartmentWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), distinct: z.union([DepartmentScalarFieldEnumSchema, DepartmentScalarFieldEnumSchema.array()]).optional() }).strict() as unknown as z.ZodType; - -export const DepartmentFindManyZodSchema = z.object({ get select(){ return DepartmentFindManySelectSchema__findManyDepartment_schema.optional(); }, get include(){ return DepartmentIncludeObjectSchema.optional(); }, orderBy: z.union([DepartmentOrderByWithRelationInputObjectSchema, DepartmentOrderByWithRelationInputObjectSchema.array()]).optional(), where: DepartmentWhereInputObjectSchema.optional(), cursor: DepartmentWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), distinct: z.union([DepartmentScalarFieldEnumSchema, DepartmentScalarFieldEnumSchema.array()]).optional() }).strict(); - -// File: countDepartment.schema.ts - -export const DepartmentCountSchema: z.ZodType = z.object({ orderBy: z.union([DepartmentOrderByWithRelationInputObjectSchema, DepartmentOrderByWithRelationInputObjectSchema.array()]).optional(), where: DepartmentWhereInputObjectSchema.optional(), cursor: DepartmentWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), select: z.union([ z.literal(true), DepartmentCountAggregateInputObjectSchema ]).optional() }).strict() as unknown as z.ZodType; - -export const DepartmentCountZodSchema = z.object({ orderBy: z.union([DepartmentOrderByWithRelationInputObjectSchema, DepartmentOrderByWithRelationInputObjectSchema.array()]).optional(), where: DepartmentWhereInputObjectSchema.optional(), cursor: DepartmentWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), select: z.union([ z.literal(true), DepartmentCountAggregateInputObjectSchema ]).optional() }).strict(); - -// File: createOneDepartment.schema.ts - -export const DepartmentCreateOneSchema: z.ZodType = z.object({ get select(){ return DepartmentSelectObjectSchema.optional(); }, get include(){ return DepartmentIncludeObjectSchema.optional(); }, data: z.union([DepartmentCreateInputObjectSchema, DepartmentUncheckedCreateInputObjectSchema]) }).strict() as unknown as z.ZodType; - -export const DepartmentCreateOneZodSchema = z.object({ get select(){ return DepartmentSelectObjectSchema.optional(); }, get include(){ return DepartmentIncludeObjectSchema.optional(); }, data: z.union([DepartmentCreateInputObjectSchema, DepartmentUncheckedCreateInputObjectSchema]) }).strict(); - -// File: createManyDepartment.schema.ts - -export const DepartmentCreateManySchema: z.ZodType = z.object({ data: z.union([ DepartmentCreateManyInputObjectSchema, z.array(DepartmentCreateManyInputObjectSchema) ]), skipDuplicates: z.boolean().optional() }).strict() as unknown as z.ZodType; - -export const DepartmentCreateManyZodSchema = z.object({ data: z.union([ DepartmentCreateManyInputObjectSchema, z.array(DepartmentCreateManyInputObjectSchema) ]), skipDuplicates: z.boolean().optional() }).strict(); - -// File: createManyAndReturnDepartment.schema.ts - -export const DepartmentCreateManyAndReturnSchema: z.ZodType = z.object({ get select(){ return DepartmentSelectObjectSchema.optional(); }, data: z.union([ DepartmentCreateManyInputObjectSchema, z.array(DepartmentCreateManyInputObjectSchema) ]), skipDuplicates: z.boolean().optional() }).strict() as unknown as z.ZodType; - -export const DepartmentCreateManyAndReturnZodSchema = z.object({ get select(){ return DepartmentSelectObjectSchema.optional(); }, data: z.union([ DepartmentCreateManyInputObjectSchema, z.array(DepartmentCreateManyInputObjectSchema) ]), skipDuplicates: z.boolean().optional() }).strict(); - -// File: deleteOneDepartment.schema.ts - -export const DepartmentDeleteOneSchema: z.ZodType = z.object({ get select(){ return DepartmentSelectObjectSchema.optional(); }, get include(){ return DepartmentIncludeObjectSchema.optional(); }, where: DepartmentWhereUniqueInputObjectSchema }).strict() as unknown as z.ZodType; - -export const DepartmentDeleteOneZodSchema = z.object({ get select(){ return DepartmentSelectObjectSchema.optional(); }, get include(){ return DepartmentIncludeObjectSchema.optional(); }, where: DepartmentWhereUniqueInputObjectSchema }).strict(); - -// File: deleteManyDepartment.schema.ts - -export const DepartmentDeleteManySchema: z.ZodType = z.object({ where: DepartmentWhereInputObjectSchema.optional() }).strict() as unknown as z.ZodType; - -export const DepartmentDeleteManyZodSchema = z.object({ where: DepartmentWhereInputObjectSchema.optional() }).strict(); - -// File: updateOneDepartment.schema.ts - -export const DepartmentUpdateOneSchema: z.ZodType = z.object({ get select(){ return DepartmentSelectObjectSchema.optional(); }, get include(){ return DepartmentIncludeObjectSchema.optional(); }, data: z.union([DepartmentUpdateInputObjectSchema, DepartmentUncheckedUpdateInputObjectSchema]), where: DepartmentWhereUniqueInputObjectSchema }).strict() as unknown as z.ZodType; - -export const DepartmentUpdateOneZodSchema = z.object({ get select(){ return DepartmentSelectObjectSchema.optional(); }, get include(){ return DepartmentIncludeObjectSchema.optional(); }, data: z.union([DepartmentUpdateInputObjectSchema, DepartmentUncheckedUpdateInputObjectSchema]), where: DepartmentWhereUniqueInputObjectSchema }).strict(); - -// File: updateManyDepartment.schema.ts - -export const DepartmentUpdateManySchema: z.ZodType = z.object({ data: DepartmentUpdateManyMutationInputObjectSchema, where: DepartmentWhereInputObjectSchema.optional() }).strict() as unknown as z.ZodType; - -export const DepartmentUpdateManyZodSchema = z.object({ data: DepartmentUpdateManyMutationInputObjectSchema, where: DepartmentWhereInputObjectSchema.optional() }).strict(); - -// File: updateManyAndReturnDepartment.schema.ts - -export const DepartmentUpdateManyAndReturnSchema: z.ZodType = z.object({ get select(){ return DepartmentSelectObjectSchema.optional(); }, data: DepartmentUpdateManyMutationInputObjectSchema, where: DepartmentWhereInputObjectSchema.optional() }).strict() as unknown as z.ZodType; - -export const DepartmentUpdateManyAndReturnZodSchema = z.object({ get select(){ return DepartmentSelectObjectSchema.optional(); }, data: DepartmentUpdateManyMutationInputObjectSchema, where: DepartmentWhereInputObjectSchema.optional() }).strict(); - -// File: upsertOneDepartment.schema.ts - -export const DepartmentUpsertOneSchema: z.ZodType = z.object({ get select(){ return DepartmentSelectObjectSchema.optional(); }, get include(){ return DepartmentIncludeObjectSchema.optional(); }, where: DepartmentWhereUniqueInputObjectSchema, create: z.union([ DepartmentCreateInputObjectSchema, DepartmentUncheckedCreateInputObjectSchema ]), update: z.union([ DepartmentUpdateInputObjectSchema, DepartmentUncheckedUpdateInputObjectSchema ]) }).strict() as unknown as z.ZodType; - -export const DepartmentUpsertOneZodSchema = z.object({ get select(){ return DepartmentSelectObjectSchema.optional(); }, get include(){ return DepartmentIncludeObjectSchema.optional(); }, where: DepartmentWhereUniqueInputObjectSchema, create: z.union([ DepartmentCreateInputObjectSchema, DepartmentUncheckedCreateInputObjectSchema ]), update: z.union([ DepartmentUpdateInputObjectSchema, DepartmentUncheckedUpdateInputObjectSchema ]) }).strict(); - -// File: aggregateDepartment.schema.ts - -export const DepartmentAggregateSchema: z.ZodType = z.object({ orderBy: z.union([DepartmentOrderByWithRelationInputObjectSchema, DepartmentOrderByWithRelationInputObjectSchema.array()]).optional(), where: DepartmentWhereInputObjectSchema.optional(), cursor: DepartmentWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), _count: z.union([ z.literal(true), DepartmentCountAggregateInputObjectSchema ]).optional(), _min: DepartmentMinAggregateInputObjectSchema.optional(), _max: DepartmentMaxAggregateInputObjectSchema.optional(), _avg: DepartmentAvgAggregateInputObjectSchema.optional(), _sum: DepartmentSumAggregateInputObjectSchema.optional() }).strict() as unknown as z.ZodType; - -export const DepartmentAggregateZodSchema = z.object({ orderBy: z.union([DepartmentOrderByWithRelationInputObjectSchema, DepartmentOrderByWithRelationInputObjectSchema.array()]).optional(), where: DepartmentWhereInputObjectSchema.optional(), cursor: DepartmentWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), _count: z.union([ z.literal(true), DepartmentCountAggregateInputObjectSchema ]).optional(), _min: DepartmentMinAggregateInputObjectSchema.optional(), _max: DepartmentMaxAggregateInputObjectSchema.optional(), _avg: DepartmentAvgAggregateInputObjectSchema.optional(), _sum: DepartmentSumAggregateInputObjectSchema.optional() }).strict(); - -// File: groupByDepartment.schema.ts - -export const DepartmentGroupBySchema: z.ZodType = z.object({ where: DepartmentWhereInputObjectSchema.optional(), orderBy: z.union([DepartmentOrderByWithAggregationInputObjectSchema, DepartmentOrderByWithAggregationInputObjectSchema.array()]).optional(), having: DepartmentScalarWhereWithAggregatesInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), by: z.array(DepartmentScalarFieldEnumSchema), _count: z.union([ z.literal(true), DepartmentCountAggregateInputObjectSchema ]).optional(), _min: DepartmentMinAggregateInputObjectSchema.optional(), _max: DepartmentMaxAggregateInputObjectSchema.optional(), _avg: DepartmentAvgAggregateInputObjectSchema.optional(), _sum: DepartmentSumAggregateInputObjectSchema.optional() }).strict() as unknown as z.ZodType; - -export const DepartmentGroupByZodSchema = z.object({ where: DepartmentWhereInputObjectSchema.optional(), orderBy: z.union([DepartmentOrderByWithAggregationInputObjectSchema, DepartmentOrderByWithAggregationInputObjectSchema.array()]).optional(), having: DepartmentScalarWhereWithAggregatesInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), by: z.array(DepartmentScalarFieldEnumSchema), _count: z.union([ z.literal(true), DepartmentCountAggregateInputObjectSchema ]).optional(), _min: DepartmentMinAggregateInputObjectSchema.optional(), _max: DepartmentMaxAggregateInputObjectSchema.optional(), _avg: DepartmentAvgAggregateInputObjectSchema.optional(), _sum: DepartmentSumAggregateInputObjectSchema.optional() }).strict(); - -// File: CourseFindUniqueResult.schema.ts -export const CourseFindUniqueResultSchema = z.nullable(z.object({ - id: z.string(), - code: z.string(), - nameNo: z.string(), - nameEn: z.string().optional(), - credits: z.number().optional(), - studyLevel: z.unknown(), - gradeType: z.unknown(), - firstYearTaught: z.number().int(), - lastYearTaught: z.number().int().optional(), - contentNo: z.string().optional(), - contentEn: z.string().optional(), - teachingMethodsNo: z.string().optional(), - teachingMethodsEn: z.string().optional(), - learningOutcomesNo: z.string().optional(), - learningOutcomesEn: z.string().optional(), - examTypeNo: z.string().optional(), - examTypeEn: z.string().optional(), - candidateCount: z.number().int(), - averageGrade: z.number(), - passRate: z.number(), - createdAt: z.date(), - updatedAt: z.date(), - taughtSemesters: z.array(z.unknown()), - teachingLanguages: z.array(z.unknown()), - campuses: z.array(z.unknown()), - grades: z.array(z.unknown()), - facultyId: z.string().optional(), - faculty: z.unknown().optional(), - departmentId: z.string().optional(), - department: z.unknown().optional(), - latestYearCheckedForNtnuData: z.number().int().optional() -})); - -// File: CourseFindFirstResult.schema.ts -export const CourseFindFirstResultSchema = z.nullable(z.object({ - id: z.string(), - code: z.string(), - nameNo: z.string(), - nameEn: z.string().optional(), - credits: z.number().optional(), - studyLevel: z.unknown(), - gradeType: z.unknown(), - firstYearTaught: z.number().int(), - lastYearTaught: z.number().int().optional(), - contentNo: z.string().optional(), - contentEn: z.string().optional(), - teachingMethodsNo: z.string().optional(), - teachingMethodsEn: z.string().optional(), - learningOutcomesNo: z.string().optional(), - learningOutcomesEn: z.string().optional(), - examTypeNo: z.string().optional(), - examTypeEn: z.string().optional(), - candidateCount: z.number().int(), - averageGrade: z.number(), - passRate: z.number(), - createdAt: z.date(), - updatedAt: z.date(), - taughtSemesters: z.array(z.unknown()), - teachingLanguages: z.array(z.unknown()), - campuses: z.array(z.unknown()), - grades: z.array(z.unknown()), - facultyId: z.string().optional(), - faculty: z.unknown().optional(), - departmentId: z.string().optional(), - department: z.unknown().optional(), - latestYearCheckedForNtnuData: z.number().int().optional() -})); - -// File: CourseFindManyResult.schema.ts -export const CourseFindManyResultSchema = z.object({ - data: z.array(z.object({ - id: z.string(), - code: z.string(), - nameNo: z.string(), - nameEn: z.string().optional(), - credits: z.number().optional(), - studyLevel: z.unknown(), - gradeType: z.unknown(), - firstYearTaught: z.number().int(), - lastYearTaught: z.number().int().optional(), - contentNo: z.string().optional(), - contentEn: z.string().optional(), - teachingMethodsNo: z.string().optional(), - teachingMethodsEn: z.string().optional(), - learningOutcomesNo: z.string().optional(), - learningOutcomesEn: z.string().optional(), - examTypeNo: z.string().optional(), - examTypeEn: z.string().optional(), - candidateCount: z.number().int(), - averageGrade: z.number(), - passRate: z.number(), - createdAt: z.date(), - updatedAt: z.date(), - taughtSemesters: z.array(z.unknown()), - teachingLanguages: z.array(z.unknown()), - campuses: z.array(z.unknown()), - grades: z.array(z.unknown()), - facultyId: z.string().optional(), - faculty: z.unknown().optional(), - departmentId: z.string().optional(), - department: z.unknown().optional(), - latestYearCheckedForNtnuData: z.number().int().optional() -})), - pagination: z.object({ - page: z.number().int().min(1), - pageSize: z.number().int().min(1), - total: z.number().int().min(0), - totalPages: z.number().int().min(0), - hasNext: z.boolean(), - hasPrev: z.boolean() -}) -}); - -// File: CourseCreateResult.schema.ts -export const CourseCreateResultSchema = z.object({ - id: z.string(), - code: z.string(), - nameNo: z.string(), - nameEn: z.string().optional(), - credits: z.number().optional(), - studyLevel: z.unknown(), - gradeType: z.unknown(), - firstYearTaught: z.number().int(), - lastYearTaught: z.number().int().optional(), - contentNo: z.string().optional(), - contentEn: z.string().optional(), - teachingMethodsNo: z.string().optional(), - teachingMethodsEn: z.string().optional(), - learningOutcomesNo: z.string().optional(), - learningOutcomesEn: z.string().optional(), - examTypeNo: z.string().optional(), - examTypeEn: z.string().optional(), - candidateCount: z.number().int(), - averageGrade: z.number(), - passRate: z.number(), - createdAt: z.date(), - updatedAt: z.date(), - taughtSemesters: z.array(z.unknown()), - teachingLanguages: z.array(z.unknown()), - campuses: z.array(z.unknown()), - grades: z.array(z.unknown()), - facultyId: z.string().optional(), - faculty: z.unknown().optional(), - departmentId: z.string().optional(), - department: z.unknown().optional(), - latestYearCheckedForNtnuData: z.number().int().optional() -}); - -// File: CourseCreateManyResult.schema.ts -export const CourseCreateManyResultSchema = z.object({ - count: z.number() -}); - -// File: CourseUpdateResult.schema.ts -export const CourseUpdateResultSchema = z.nullable(z.object({ - id: z.string(), - code: z.string(), - nameNo: z.string(), - nameEn: z.string().optional(), - credits: z.number().optional(), - studyLevel: z.unknown(), - gradeType: z.unknown(), - firstYearTaught: z.number().int(), - lastYearTaught: z.number().int().optional(), - contentNo: z.string().optional(), - contentEn: z.string().optional(), - teachingMethodsNo: z.string().optional(), - teachingMethodsEn: z.string().optional(), - learningOutcomesNo: z.string().optional(), - learningOutcomesEn: z.string().optional(), - examTypeNo: z.string().optional(), - examTypeEn: z.string().optional(), - candidateCount: z.number().int(), - averageGrade: z.number(), - passRate: z.number(), - createdAt: z.date(), - updatedAt: z.date(), - taughtSemesters: z.array(z.unknown()), - teachingLanguages: z.array(z.unknown()), - campuses: z.array(z.unknown()), - grades: z.array(z.unknown()), - facultyId: z.string().optional(), - faculty: z.unknown().optional(), - departmentId: z.string().optional(), - department: z.unknown().optional(), - latestYearCheckedForNtnuData: z.number().int().optional() -})); - -// File: CourseUpdateManyResult.schema.ts -export const CourseUpdateManyResultSchema = z.object({ - count: z.number() -}); - -// File: CourseUpsertResult.schema.ts -export const CourseUpsertResultSchema = z.object({ - id: z.string(), - code: z.string(), - nameNo: z.string(), - nameEn: z.string().optional(), - credits: z.number().optional(), - studyLevel: z.unknown(), - gradeType: z.unknown(), - firstYearTaught: z.number().int(), - lastYearTaught: z.number().int().optional(), - contentNo: z.string().optional(), - contentEn: z.string().optional(), - teachingMethodsNo: z.string().optional(), - teachingMethodsEn: z.string().optional(), - learningOutcomesNo: z.string().optional(), - learningOutcomesEn: z.string().optional(), - examTypeNo: z.string().optional(), - examTypeEn: z.string().optional(), - candidateCount: z.number().int(), - averageGrade: z.number(), - passRate: z.number(), - createdAt: z.date(), - updatedAt: z.date(), - taughtSemesters: z.array(z.unknown()), - teachingLanguages: z.array(z.unknown()), - campuses: z.array(z.unknown()), - grades: z.array(z.unknown()), - facultyId: z.string().optional(), - faculty: z.unknown().optional(), - departmentId: z.string().optional(), - department: z.unknown().optional(), - latestYearCheckedForNtnuData: z.number().int().optional() -}); - -// File: CourseDeleteResult.schema.ts -export const CourseDeleteResultSchema = z.nullable(z.object({ - id: z.string(), - code: z.string(), - nameNo: z.string(), - nameEn: z.string().optional(), - credits: z.number().optional(), - studyLevel: z.unknown(), - gradeType: z.unknown(), - firstYearTaught: z.number().int(), - lastYearTaught: z.number().int().optional(), - contentNo: z.string().optional(), - contentEn: z.string().optional(), - teachingMethodsNo: z.string().optional(), - teachingMethodsEn: z.string().optional(), - learningOutcomesNo: z.string().optional(), - learningOutcomesEn: z.string().optional(), - examTypeNo: z.string().optional(), - examTypeEn: z.string().optional(), - candidateCount: z.number().int(), - averageGrade: z.number(), - passRate: z.number(), - createdAt: z.date(), - updatedAt: z.date(), - taughtSemesters: z.array(z.unknown()), - teachingLanguages: z.array(z.unknown()), - campuses: z.array(z.unknown()), - grades: z.array(z.unknown()), - facultyId: z.string().optional(), - faculty: z.unknown().optional(), - departmentId: z.string().optional(), - department: z.unknown().optional(), - latestYearCheckedForNtnuData: z.number().int().optional() -})); - -// File: CourseDeleteManyResult.schema.ts -export const CourseDeleteManyResultSchema = z.object({ - count: z.number() -}); - -// File: CourseAggregateResult.schema.ts -export const CourseAggregateResultSchema = z.object({ _count: z.object({ - id: z.number(), - code: z.number(), - nameNo: z.number(), - nameEn: z.number(), - credits: z.number(), - studyLevel: z.number(), - gradeType: z.number(), - firstYearTaught: z.number(), - lastYearTaught: z.number(), - contentNo: z.number(), - contentEn: z.number(), - teachingMethodsNo: z.number(), - teachingMethodsEn: z.number(), - learningOutcomesNo: z.number(), - learningOutcomesEn: z.number(), - examTypeNo: z.number(), - examTypeEn: z.number(), - candidateCount: z.number(), - averageGrade: z.number(), - passRate: z.number(), - createdAt: z.number(), - updatedAt: z.number(), - taughtSemesters: z.number(), - teachingLanguages: z.number(), - campuses: z.number(), - grades: z.number(), - facultyId: z.number(), - faculty: z.number(), - departmentId: z.number(), - department: z.number(), - latestYearCheckedForNtnuData: z.number() - }).optional(), - _sum: z.object({ - credits: z.number().nullable(), - firstYearTaught: z.number().nullable(), - lastYearTaught: z.number().nullable(), - candidateCount: z.number().nullable(), - averageGrade: z.number().nullable(), - passRate: z.number().nullable(), - latestYearCheckedForNtnuData: z.number().nullable() - }).nullable().optional(), - _avg: z.object({ - credits: z.number().nullable(), - firstYearTaught: z.number().nullable(), - lastYearTaught: z.number().nullable(), - candidateCount: z.number().nullable(), - averageGrade: z.number().nullable(), - passRate: z.number().nullable(), - latestYearCheckedForNtnuData: z.number().nullable() - }).nullable().optional(), - _min: z.object({ - id: z.string().nullable(), - code: z.string().nullable(), - nameNo: z.string().nullable(), - nameEn: z.string().nullable(), - credits: z.number().nullable(), - firstYearTaught: z.number().int().nullable(), - lastYearTaught: z.number().int().nullable(), - contentNo: z.string().nullable(), - contentEn: z.string().nullable(), - teachingMethodsNo: z.string().nullable(), - teachingMethodsEn: z.string().nullable(), - learningOutcomesNo: z.string().nullable(), - learningOutcomesEn: z.string().nullable(), - examTypeNo: z.string().nullable(), - examTypeEn: z.string().nullable(), - candidateCount: z.number().int().nullable(), - averageGrade: z.number().nullable(), - passRate: z.number().nullable(), - createdAt: z.date().nullable(), - updatedAt: z.date().nullable(), - facultyId: z.string().nullable(), - departmentId: z.string().nullable(), - latestYearCheckedForNtnuData: z.number().int().nullable() - }).nullable().optional(), - _max: z.object({ - id: z.string().nullable(), - code: z.string().nullable(), - nameNo: z.string().nullable(), - nameEn: z.string().nullable(), - credits: z.number().nullable(), - firstYearTaught: z.number().int().nullable(), - lastYearTaught: z.number().int().nullable(), - contentNo: z.string().nullable(), - contentEn: z.string().nullable(), - teachingMethodsNo: z.string().nullable(), - teachingMethodsEn: z.string().nullable(), - learningOutcomesNo: z.string().nullable(), - learningOutcomesEn: z.string().nullable(), - examTypeNo: z.string().nullable(), - examTypeEn: z.string().nullable(), - candidateCount: z.number().int().nullable(), - averageGrade: z.number().nullable(), - passRate: z.number().nullable(), - createdAt: z.date().nullable(), - updatedAt: z.date().nullable(), - facultyId: z.string().nullable(), - departmentId: z.string().nullable(), - latestYearCheckedForNtnuData: z.number().int().nullable() - }).nullable().optional()}); - -// File: CourseGroupByResult.schema.ts -export const CourseGroupByResultSchema = z.array(z.object({ - id: z.string(), - code: z.string(), - nameNo: z.string(), - nameEn: z.string(), - credits: z.number(), - firstYearTaught: z.number().int(), - lastYearTaught: z.number().int(), - contentNo: z.string(), - contentEn: z.string(), - teachingMethodsNo: z.string(), - teachingMethodsEn: z.string(), - learningOutcomesNo: z.string(), - learningOutcomesEn: z.string(), - examTypeNo: z.string(), - examTypeEn: z.string(), - candidateCount: z.number().int(), - averageGrade: z.number(), - passRate: z.number(), - createdAt: z.date(), - updatedAt: z.date(), - facultyId: z.string(), - departmentId: z.string(), - latestYearCheckedForNtnuData: z.number().int(), - _count: z.object({ - id: z.number(), - code: z.number(), - nameNo: z.number(), - nameEn: z.number(), - credits: z.number(), - studyLevel: z.number(), - gradeType: z.number(), - firstYearTaught: z.number(), - lastYearTaught: z.number(), - contentNo: z.number(), - contentEn: z.number(), - teachingMethodsNo: z.number(), - teachingMethodsEn: z.number(), - learningOutcomesNo: z.number(), - learningOutcomesEn: z.number(), - examTypeNo: z.number(), - examTypeEn: z.number(), - candidateCount: z.number(), - averageGrade: z.number(), - passRate: z.number(), - createdAt: z.number(), - updatedAt: z.number(), - taughtSemesters: z.number(), - teachingLanguages: z.number(), - campuses: z.number(), - grades: z.number(), - facultyId: z.number(), - faculty: z.number(), - departmentId: z.number(), - department: z.number(), - latestYearCheckedForNtnuData: z.number() - }).optional(), - _sum: z.object({ - credits: z.number().nullable(), - firstYearTaught: z.number().nullable(), - lastYearTaught: z.number().nullable(), - candidateCount: z.number().nullable(), - averageGrade: z.number().nullable(), - passRate: z.number().nullable(), - latestYearCheckedForNtnuData: z.number().nullable() - }).nullable().optional(), - _avg: z.object({ - credits: z.number().nullable(), - firstYearTaught: z.number().nullable(), - lastYearTaught: z.number().nullable(), - candidateCount: z.number().nullable(), - averageGrade: z.number().nullable(), - passRate: z.number().nullable(), - latestYearCheckedForNtnuData: z.number().nullable() - }).nullable().optional(), - _min: z.object({ - id: z.string().nullable(), - code: z.string().nullable(), - nameNo: z.string().nullable(), - nameEn: z.string().nullable(), - credits: z.number().nullable(), - firstYearTaught: z.number().int().nullable(), - lastYearTaught: z.number().int().nullable(), - contentNo: z.string().nullable(), - contentEn: z.string().nullable(), - teachingMethodsNo: z.string().nullable(), - teachingMethodsEn: z.string().nullable(), - learningOutcomesNo: z.string().nullable(), - learningOutcomesEn: z.string().nullable(), - examTypeNo: z.string().nullable(), - examTypeEn: z.string().nullable(), - candidateCount: z.number().int().nullable(), - averageGrade: z.number().nullable(), - passRate: z.number().nullable(), - createdAt: z.date().nullable(), - updatedAt: z.date().nullable(), - facultyId: z.string().nullable(), - departmentId: z.string().nullable(), - latestYearCheckedForNtnuData: z.number().int().nullable() - }).nullable().optional(), - _max: z.object({ - id: z.string().nullable(), - code: z.string().nullable(), - nameNo: z.string().nullable(), - nameEn: z.string().nullable(), - credits: z.number().nullable(), - firstYearTaught: z.number().int().nullable(), - lastYearTaught: z.number().int().nullable(), - contentNo: z.string().nullable(), - contentEn: z.string().nullable(), - teachingMethodsNo: z.string().nullable(), - teachingMethodsEn: z.string().nullable(), - learningOutcomesNo: z.string().nullable(), - learningOutcomesEn: z.string().nullable(), - examTypeNo: z.string().nullable(), - examTypeEn: z.string().nullable(), - candidateCount: z.number().int().nullable(), - averageGrade: z.number().nullable(), - passRate: z.number().nullable(), - createdAt: z.date().nullable(), - updatedAt: z.date().nullable(), - facultyId: z.string().nullable(), - departmentId: z.string().nullable(), - latestYearCheckedForNtnuData: z.number().int().nullable() - }).nullable().optional() -})); - -// File: CourseCountResult.schema.ts -export const CourseCountResultSchema = z.number(); - -// File: GradeFindUniqueResult.schema.ts -export const GradeFindUniqueResultSchema = z.nullable(z.object({ - id: z.string(), - gradeACount: z.number().int(), - gradeBCount: z.number().int(), - gradeCCount: z.number().int(), - gradeDCount: z.number().int(), - gradeECount: z.number().int(), - gradeFCount: z.number().int(), - passedCount: z.number().int(), - failedCount: z.number().int(), - courseId: z.string(), - course: z.unknown(), - semester: z.unknown(), - year: z.number().int(), - createdAt: z.date(), - updatedAt: z.date() -})); - -// File: GradeFindFirstResult.schema.ts -export const GradeFindFirstResultSchema = z.nullable(z.object({ - id: z.string(), - gradeACount: z.number().int(), - gradeBCount: z.number().int(), - gradeCCount: z.number().int(), - gradeDCount: z.number().int(), - gradeECount: z.number().int(), - gradeFCount: z.number().int(), - passedCount: z.number().int(), - failedCount: z.number().int(), - courseId: z.string(), - course: z.unknown(), - semester: z.unknown(), - year: z.number().int(), - createdAt: z.date(), - updatedAt: z.date() -})); - -// File: GradeFindManyResult.schema.ts -export const GradeFindManyResultSchema = z.object({ - data: z.array(z.object({ - id: z.string(), - gradeACount: z.number().int(), - gradeBCount: z.number().int(), - gradeCCount: z.number().int(), - gradeDCount: z.number().int(), - gradeECount: z.number().int(), - gradeFCount: z.number().int(), - passedCount: z.number().int(), - failedCount: z.number().int(), - courseId: z.string(), - course: z.unknown(), - semester: z.unknown(), - year: z.number().int(), - createdAt: z.date(), - updatedAt: z.date() -})), - pagination: z.object({ - page: z.number().int().min(1), - pageSize: z.number().int().min(1), - total: z.number().int().min(0), - totalPages: z.number().int().min(0), - hasNext: z.boolean(), - hasPrev: z.boolean() -}) -}); - -// File: GradeCreateResult.schema.ts -export const GradeCreateResultSchema = z.object({ - id: z.string(), - gradeACount: z.number().int(), - gradeBCount: z.number().int(), - gradeCCount: z.number().int(), - gradeDCount: z.number().int(), - gradeECount: z.number().int(), - gradeFCount: z.number().int(), - passedCount: z.number().int(), - failedCount: z.number().int(), - courseId: z.string(), - course: z.unknown(), - semester: z.unknown(), - year: z.number().int(), - createdAt: z.date(), - updatedAt: z.date() -}); - -// File: GradeCreateManyResult.schema.ts -export const GradeCreateManyResultSchema = z.object({ - count: z.number() -}); - -// File: GradeUpdateResult.schema.ts -export const GradeUpdateResultSchema = z.nullable(z.object({ - id: z.string(), - gradeACount: z.number().int(), - gradeBCount: z.number().int(), - gradeCCount: z.number().int(), - gradeDCount: z.number().int(), - gradeECount: z.number().int(), - gradeFCount: z.number().int(), - passedCount: z.number().int(), - failedCount: z.number().int(), - courseId: z.string(), - course: z.unknown(), - semester: z.unknown(), - year: z.number().int(), - createdAt: z.date(), - updatedAt: z.date() -})); - -// File: GradeUpdateManyResult.schema.ts -export const GradeUpdateManyResultSchema = z.object({ - count: z.number() -}); - -// File: GradeUpsertResult.schema.ts -export const GradeUpsertResultSchema = z.object({ - id: z.string(), - gradeACount: z.number().int(), - gradeBCount: z.number().int(), - gradeCCount: z.number().int(), - gradeDCount: z.number().int(), - gradeECount: z.number().int(), - gradeFCount: z.number().int(), - passedCount: z.number().int(), - failedCount: z.number().int(), - courseId: z.string(), - course: z.unknown(), - semester: z.unknown(), - year: z.number().int(), - createdAt: z.date(), - updatedAt: z.date() -}); - -// File: GradeDeleteResult.schema.ts -export const GradeDeleteResultSchema = z.nullable(z.object({ - id: z.string(), - gradeACount: z.number().int(), - gradeBCount: z.number().int(), - gradeCCount: z.number().int(), - gradeDCount: z.number().int(), - gradeECount: z.number().int(), - gradeFCount: z.number().int(), - passedCount: z.number().int(), - failedCount: z.number().int(), - courseId: z.string(), - course: z.unknown(), - semester: z.unknown(), - year: z.number().int(), - createdAt: z.date(), - updatedAt: z.date() -})); - -// File: GradeDeleteManyResult.schema.ts -export const GradeDeleteManyResultSchema = z.object({ - count: z.number() -}); - -// File: GradeAggregateResult.schema.ts -export const GradeAggregateResultSchema = z.object({ _count: z.object({ - id: z.number(), - gradeACount: z.number(), - gradeBCount: z.number(), - gradeCCount: z.number(), - gradeDCount: z.number(), - gradeECount: z.number(), - gradeFCount: z.number(), - passedCount: z.number(), - failedCount: z.number(), - courseId: z.number(), - course: z.number(), - semester: z.number(), - year: z.number(), - createdAt: z.number(), - updatedAt: z.number() - }).optional(), - _sum: z.object({ - gradeACount: z.number().nullable(), - gradeBCount: z.number().nullable(), - gradeCCount: z.number().nullable(), - gradeDCount: z.number().nullable(), - gradeECount: z.number().nullable(), - gradeFCount: z.number().nullable(), - passedCount: z.number().nullable(), - failedCount: z.number().nullable(), - year: z.number().nullable() - }).nullable().optional(), - _avg: z.object({ - gradeACount: z.number().nullable(), - gradeBCount: z.number().nullable(), - gradeCCount: z.number().nullable(), - gradeDCount: z.number().nullable(), - gradeECount: z.number().nullable(), - gradeFCount: z.number().nullable(), - passedCount: z.number().nullable(), - failedCount: z.number().nullable(), - year: z.number().nullable() - }).nullable().optional(), - _min: z.object({ - id: z.string().nullable(), - gradeACount: z.number().int().nullable(), - gradeBCount: z.number().int().nullable(), - gradeCCount: z.number().int().nullable(), - gradeDCount: z.number().int().nullable(), - gradeECount: z.number().int().nullable(), - gradeFCount: z.number().int().nullable(), - passedCount: z.number().int().nullable(), - failedCount: z.number().int().nullable(), - courseId: z.string().nullable(), - year: z.number().int().nullable(), - createdAt: z.date().nullable(), - updatedAt: z.date().nullable() - }).nullable().optional(), - _max: z.object({ - id: z.string().nullable(), - gradeACount: z.number().int().nullable(), - gradeBCount: z.number().int().nullable(), - gradeCCount: z.number().int().nullable(), - gradeDCount: z.number().int().nullable(), - gradeECount: z.number().int().nullable(), - gradeFCount: z.number().int().nullable(), - passedCount: z.number().int().nullable(), - failedCount: z.number().int().nullable(), - courseId: z.string().nullable(), - year: z.number().int().nullable(), - createdAt: z.date().nullable(), - updatedAt: z.date().nullable() - }).nullable().optional()}); - -// File: GradeGroupByResult.schema.ts -export const GradeGroupByResultSchema = z.array(z.object({ - id: z.string(), - gradeACount: z.number().int(), - gradeBCount: z.number().int(), - gradeCCount: z.number().int(), - gradeDCount: z.number().int(), - gradeECount: z.number().int(), - gradeFCount: z.number().int(), - passedCount: z.number().int(), - failedCount: z.number().int(), - courseId: z.string(), - year: z.number().int(), - createdAt: z.date(), - updatedAt: z.date(), - _count: z.object({ - id: z.number(), - gradeACount: z.number(), - gradeBCount: z.number(), - gradeCCount: z.number(), - gradeDCount: z.number(), - gradeECount: z.number(), - gradeFCount: z.number(), - passedCount: z.number(), - failedCount: z.number(), - courseId: z.number(), - course: z.number(), - semester: z.number(), - year: z.number(), - createdAt: z.number(), - updatedAt: z.number() - }).optional(), - _sum: z.object({ - gradeACount: z.number().nullable(), - gradeBCount: z.number().nullable(), - gradeCCount: z.number().nullable(), - gradeDCount: z.number().nullable(), - gradeECount: z.number().nullable(), - gradeFCount: z.number().nullable(), - passedCount: z.number().nullable(), - failedCount: z.number().nullable(), - year: z.number().nullable() - }).nullable().optional(), - _avg: z.object({ - gradeACount: z.number().nullable(), - gradeBCount: z.number().nullable(), - gradeCCount: z.number().nullable(), - gradeDCount: z.number().nullable(), - gradeECount: z.number().nullable(), - gradeFCount: z.number().nullable(), - passedCount: z.number().nullable(), - failedCount: z.number().nullable(), - year: z.number().nullable() - }).nullable().optional(), - _min: z.object({ - id: z.string().nullable(), - gradeACount: z.number().int().nullable(), - gradeBCount: z.number().int().nullable(), - gradeCCount: z.number().int().nullable(), - gradeDCount: z.number().int().nullable(), - gradeECount: z.number().int().nullable(), - gradeFCount: z.number().int().nullable(), - passedCount: z.number().int().nullable(), - failedCount: z.number().int().nullable(), - courseId: z.string().nullable(), - year: z.number().int().nullable(), - createdAt: z.date().nullable(), - updatedAt: z.date().nullable() - }).nullable().optional(), - _max: z.object({ - id: z.string().nullable(), - gradeACount: z.number().int().nullable(), - gradeBCount: z.number().int().nullable(), - gradeCCount: z.number().int().nullable(), - gradeDCount: z.number().int().nullable(), - gradeECount: z.number().int().nullable(), - gradeFCount: z.number().int().nullable(), - passedCount: z.number().int().nullable(), - failedCount: z.number().int().nullable(), - courseId: z.string().nullable(), - year: z.number().int().nullable(), - createdAt: z.date().nullable(), - updatedAt: z.date().nullable() - }).nullable().optional() -})); - -// File: GradeCountResult.schema.ts -export const GradeCountResultSchema = z.number(); - -// File: FacultyFindUniqueResult.schema.ts -export const FacultyFindUniqueResultSchema = z.nullable(z.object({ - id: z.string(), - nameNo: z.string(), - nameEn: z.string(), - code: z.number().int(), - courses: z.array(z.unknown()), - departments: z.array(z.unknown()) -})); - -// File: FacultyFindFirstResult.schema.ts -export const FacultyFindFirstResultSchema = z.nullable(z.object({ - id: z.string(), - nameNo: z.string(), - nameEn: z.string(), - code: z.number().int(), - courses: z.array(z.unknown()), - departments: z.array(z.unknown()) -})); - -// File: FacultyFindManyResult.schema.ts -export const FacultyFindManyResultSchema = z.object({ - data: z.array(z.object({ - id: z.string(), - nameNo: z.string(), - nameEn: z.string(), - code: z.number().int(), - courses: z.array(z.unknown()), - departments: z.array(z.unknown()) -})), - pagination: z.object({ - page: z.number().int().min(1), - pageSize: z.number().int().min(1), - total: z.number().int().min(0), - totalPages: z.number().int().min(0), - hasNext: z.boolean(), - hasPrev: z.boolean() -}) -}); - -// File: FacultyCreateResult.schema.ts -export const FacultyCreateResultSchema = z.object({ - id: z.string(), - nameNo: z.string(), - nameEn: z.string(), - code: z.number().int(), - courses: z.array(z.unknown()), - departments: z.array(z.unknown()) -}); - -// File: FacultyCreateManyResult.schema.ts -export const FacultyCreateManyResultSchema = z.object({ - count: z.number() -}); - -// File: FacultyUpdateResult.schema.ts -export const FacultyUpdateResultSchema = z.nullable(z.object({ - id: z.string(), - nameNo: z.string(), - nameEn: z.string(), - code: z.number().int(), - courses: z.array(z.unknown()), - departments: z.array(z.unknown()) -})); - -// File: FacultyUpdateManyResult.schema.ts -export const FacultyUpdateManyResultSchema = z.object({ - count: z.number() -}); - -// File: FacultyUpsertResult.schema.ts -export const FacultyUpsertResultSchema = z.object({ - id: z.string(), - nameNo: z.string(), - nameEn: z.string(), - code: z.number().int(), - courses: z.array(z.unknown()), - departments: z.array(z.unknown()) -}); - -// File: FacultyDeleteResult.schema.ts -export const FacultyDeleteResultSchema = z.nullable(z.object({ - id: z.string(), - nameNo: z.string(), - nameEn: z.string(), - code: z.number().int(), - courses: z.array(z.unknown()), - departments: z.array(z.unknown()) -})); - -// File: FacultyDeleteManyResult.schema.ts -export const FacultyDeleteManyResultSchema = z.object({ - count: z.number() -}); - -// File: FacultyAggregateResult.schema.ts -export const FacultyAggregateResultSchema = z.object({ _count: z.object({ - id: z.number(), - nameNo: z.number(), - nameEn: z.number(), - code: z.number(), - courses: z.number(), - departments: z.number() - }).optional(), - _sum: z.object({ - code: z.number().nullable() - }).nullable().optional(), - _avg: z.object({ - code: z.number().nullable() - }).nullable().optional(), - _min: z.object({ - id: z.string().nullable(), - nameNo: z.string().nullable(), - nameEn: z.string().nullable(), - code: z.number().int().nullable() - }).nullable().optional(), - _max: z.object({ - id: z.string().nullable(), - nameNo: z.string().nullable(), - nameEn: z.string().nullable(), - code: z.number().int().nullable() - }).nullable().optional()}); - -// File: FacultyGroupByResult.schema.ts -export const FacultyGroupByResultSchema = z.array(z.object({ - id: z.string(), - nameNo: z.string(), - nameEn: z.string(), - code: z.number().int(), - _count: z.object({ - id: z.number(), - nameNo: z.number(), - nameEn: z.number(), - code: z.number(), - courses: z.number(), - departments: z.number() - }).optional(), - _sum: z.object({ - code: z.number().nullable() - }).nullable().optional(), - _avg: z.object({ - code: z.number().nullable() - }).nullable().optional(), - _min: z.object({ - id: z.string().nullable(), - nameNo: z.string().nullable(), - nameEn: z.string().nullable(), - code: z.number().int().nullable() - }).nullable().optional(), - _max: z.object({ - id: z.string().nullable(), - nameNo: z.string().nullable(), - nameEn: z.string().nullable(), - code: z.number().int().nullable() - }).nullable().optional() -})); - -// File: FacultyCountResult.schema.ts -export const FacultyCountResultSchema = z.number(); - -// File: DepartmentFindUniqueResult.schema.ts -export const DepartmentFindUniqueResultSchema = z.nullable(z.object({ - id: z.string(), - nameNo: z.string(), - nameEn: z.string(), - code: z.number().int(), - courses: z.array(z.unknown()), - facultyId: z.string(), - faculty: z.unknown() -})); - -// File: DepartmentFindFirstResult.schema.ts -export const DepartmentFindFirstResultSchema = z.nullable(z.object({ - id: z.string(), - nameNo: z.string(), - nameEn: z.string(), - code: z.number().int(), - courses: z.array(z.unknown()), - facultyId: z.string(), - faculty: z.unknown() -})); - -// File: DepartmentFindManyResult.schema.ts -export const DepartmentFindManyResultSchema = z.object({ - data: z.array(z.object({ - id: z.string(), - nameNo: z.string(), - nameEn: z.string(), - code: z.number().int(), - courses: z.array(z.unknown()), - facultyId: z.string(), - faculty: z.unknown() -})), - pagination: z.object({ - page: z.number().int().min(1), - pageSize: z.number().int().min(1), - total: z.number().int().min(0), - totalPages: z.number().int().min(0), - hasNext: z.boolean(), - hasPrev: z.boolean() -}) -}); - -// File: DepartmentCreateResult.schema.ts -export const DepartmentCreateResultSchema = z.object({ - id: z.string(), - nameNo: z.string(), - nameEn: z.string(), - code: z.number().int(), - courses: z.array(z.unknown()), - facultyId: z.string(), - faculty: z.unknown() -}); - -// File: DepartmentCreateManyResult.schema.ts -export const DepartmentCreateManyResultSchema = z.object({ - count: z.number() -}); - -// File: DepartmentUpdateResult.schema.ts -export const DepartmentUpdateResultSchema = z.nullable(z.object({ - id: z.string(), - nameNo: z.string(), - nameEn: z.string(), - code: z.number().int(), - courses: z.array(z.unknown()), - facultyId: z.string(), - faculty: z.unknown() -})); - -// File: DepartmentUpdateManyResult.schema.ts -export const DepartmentUpdateManyResultSchema = z.object({ - count: z.number() -}); - -// File: DepartmentUpsertResult.schema.ts -export const DepartmentUpsertResultSchema = z.object({ - id: z.string(), - nameNo: z.string(), - nameEn: z.string(), - code: z.number().int(), - courses: z.array(z.unknown()), - facultyId: z.string(), - faculty: z.unknown() -}); - -// File: DepartmentDeleteResult.schema.ts -export const DepartmentDeleteResultSchema = z.nullable(z.object({ - id: z.string(), - nameNo: z.string(), - nameEn: z.string(), - code: z.number().int(), - courses: z.array(z.unknown()), - facultyId: z.string(), - faculty: z.unknown() -})); - -// File: DepartmentDeleteManyResult.schema.ts -export const DepartmentDeleteManyResultSchema = z.object({ - count: z.number() -}); - -// File: DepartmentAggregateResult.schema.ts -export const DepartmentAggregateResultSchema = z.object({ _count: z.object({ - id: z.number(), - nameNo: z.number(), - nameEn: z.number(), - code: z.number(), - courses: z.number(), - facultyId: z.number(), - faculty: z.number() - }).optional(), - _sum: z.object({ - code: z.number().nullable() - }).nullable().optional(), - _avg: z.object({ - code: z.number().nullable() - }).nullable().optional(), - _min: z.object({ - id: z.string().nullable(), - nameNo: z.string().nullable(), - nameEn: z.string().nullable(), - code: z.number().int().nullable(), - facultyId: z.string().nullable() - }).nullable().optional(), - _max: z.object({ - id: z.string().nullable(), - nameNo: z.string().nullable(), - nameEn: z.string().nullable(), - code: z.number().int().nullable(), - facultyId: z.string().nullable() - }).nullable().optional()}); - -// File: DepartmentGroupByResult.schema.ts -export const DepartmentGroupByResultSchema = z.array(z.object({ - id: z.string(), - nameNo: z.string(), - nameEn: z.string(), - code: z.number().int(), - facultyId: z.string(), - _count: z.object({ - id: z.number(), - nameNo: z.number(), - nameEn: z.number(), - code: z.number(), - courses: z.number(), - facultyId: z.number(), - faculty: z.number() - }).optional(), - _sum: z.object({ - code: z.number().nullable() - }).nullable().optional(), - _avg: z.object({ - code: z.number().nullable() - }).nullable().optional(), - _min: z.object({ - id: z.string().nullable(), - nameNo: z.string().nullable(), - nameEn: z.string().nullable(), - code: z.number().int().nullable(), - facultyId: z.string().nullable() - }).nullable().optional(), - _max: z.object({ - id: z.string().nullable(), - nameNo: z.string().nullable(), - nameEn: z.string().nullable(), - code: z.number().int().nullable(), - facultyId: z.string().nullable() - }).nullable().optional() -})); - -// File: DepartmentCountResult.schema.ts -export const DepartmentCountResultSchema = z.number(); - -// File: index.ts - - -// File: index.ts - - -// File: Course.schema.ts - -export const Course = z.object({ - id: z.string(), - code: z.string(), - nameNo: z.string(), - nameEn: z.string().nullable(), - credits: z.number().nullable(), - studyLevel: StudyLevelSchema, - gradeType: GradeTypeSchema, - firstYearTaught: z.number().int(), - lastYearTaught: z.number().int().nullable(), - contentNo: z.string().nullable(), - contentEn: z.string().nullable(), - teachingMethodsNo: z.string().nullable(), - teachingMethodsEn: z.string().nullable(), - learningOutcomesNo: z.string().nullable(), - learningOutcomesEn: z.string().nullable(), - examTypeNo: z.string().nullable(), - examTypeEn: z.string().nullable(), - candidateCount: z.number().int(), - averageGrade: z.number(), - passRate: z.number(), - createdAt: z.date(), - updatedAt: z.date(), - taughtSemesters: z.array(SemesterSchema), - teachingLanguages: z.array(TeachingLanguageSchema), - campuses: z.array(CampusSchema), - facultyId: z.string().nullable(), - departmentId: z.string().nullable(), - latestYearCheckedForNtnuData: z.number().int().nullable(), -}); - -export type Course = z.infer; - -// Legacy aliases -export const CourseSchema = Course; -export type CourseType = z.infer; - -// File: Grade.schema.ts - -export const Grade = z.object({ - id: z.string(), - gradeACount: z.number().int(), - gradeBCount: z.number().int(), - gradeCCount: z.number().int(), - gradeDCount: z.number().int(), - gradeECount: z.number().int(), - gradeFCount: z.number().int(), - passedCount: z.number().int(), - failedCount: z.number().int(), - courseId: z.string(), - semester: SemesterSchema, - year: z.number().int(), - createdAt: z.date(), - updatedAt: z.date(), -}); - -export type Grade = z.infer; - -// Legacy aliases -export const GradeSchema = Grade; -export type GradeModel = z.infer; - -// File: Faculty.schema.ts - -export const Faculty = z.object({ - id: z.string(), - nameNo: z.string(), - nameEn: z.string(), - code: z.number().int(), -}); - -export type Faculty = z.infer; - -// Legacy aliases -export const FacultySchema = Faculty; -export type FacultyType = z.infer; - -// File: Department.schema.ts - -export const Department = z.object({ - id: z.string(), - nameNo: z.string(), - nameEn: z.string(), - code: z.number().int(), - facultyId: z.string(), -}); - -export type Department = z.infer; - -// Legacy aliases -export const DepartmentSchema = Department; -export type DepartmentType = z.infer; diff --git a/packages/grades-db/package.json b/packages/grades-db/package.json index b3b5f88663..cc13dcd911 100644 --- a/packages/grades-db/package.json +++ b/packages/grades-db/package.json @@ -8,10 +8,6 @@ "import": "./src/index.ts", "types": "./src/index.ts" }, - "./schemas": { - "import": "./src/schemas.ts", - "types": "./src/schemas.ts" - }, "./test-harness": { "import": "./src/test-harness.ts", "types": "./src/test-harness.ts" @@ -23,7 +19,7 @@ "type-check": "tsc --noEmit", "prisma": "prisma", "migrate": "prisma migrate dev", - "generate": "prisma generate --sql && node ../../scripts/fix-generated-zod-schema.mjs", + "generate": "prisma generate --sql", "apply-fixtures": "tsx src/fixtures.ts" }, "dependencies": { @@ -34,7 +30,6 @@ "@testcontainers/postgresql": "^11.5.1", "date-fns": "^4.1.0", "pg": "^8.16.0", - "prisma-zod-generator": "^2.1.4", "zod": "^4.4.3" }, "devDependencies": { diff --git a/packages/grades-db/prisma/schema.prisma b/packages/grades-db/prisma/schema.prisma index d305f396d3..a654463fd6 100644 --- a/packages/grades-db/prisma/schema.prisma +++ b/packages/grades-db/prisma/schema.prisma @@ -5,12 +5,6 @@ generator client { previewFeatures = ["relationJoins", "postgresqlExtensions", "typedSql"] } -generator zod { - provider = "prisma-zod-generator" - output = "../generated/schema" - config = "../zod-generator.config.json" -} - datasource db { provider = "postgresql" extensions = [pg_trgm] diff --git a/packages/grades-db/src/schemas.ts b/packages/grades-db/src/schemas.ts deleted file mode 100644 index f355c90935..0000000000 --- a/packages/grades-db/src/schemas.ts +++ /dev/null @@ -1,2 +0,0 @@ -// biome-ignore lint/performance/noBarrelFile: this is an index -export * as schemas from "../generated/schema/index" diff --git a/packages/grades-db/zod-generator.config.json b/packages/grades-db/zod-generator.config.json deleted file mode 100644 index 6387989359..0000000000 --- a/packages/grades-db/zod-generator.config.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "mode": "full", - "useMultipleFiles": false, - "singleFileName": "index.ts", - "optionalFieldBehavior": "nullable", - "naming": { - "preset": "zod-prisma-types" - }, - "pureModels": true, - "zodImportTarget": "v4" -} diff --git a/packages/types/biome.json b/packages/types/biome.json deleted file mode 100644 index 9071ac69e7..0000000000 --- a/packages/types/biome.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "root": false, - "$schema": "./node_modules/@biomejs/biome/configuration_schema.json", - "extends": "//" -} diff --git a/packages/types/package.json b/packages/types/package.json deleted file mode 100644 index 562a886ad0..0000000000 --- a/packages/types/package.json +++ /dev/null @@ -1,27 +0,0 @@ -{ - "name": "@dotkomonline/types", - "main": "./src/index.ts", - "exports": "./src/index.ts", - "types": "./src/index.ts", - "type": "module", - "scripts": { - "lint": "biome check . --write", - "lint-check": "biome check .", - "type-check": "tsc --noEmit" - }, - "dependencies": { - "@date-fns/tz": "^1.2.0", - "@dotkomonline/db": "workspace:*", - "@dotkomonline/utils": "workspace:*", - "date-fns": "^4.1.0", - "tiny-invariant": "^1.3.3", - "zod": "^4.4.3" - }, - "devDependencies": { - "@biomejs/biome": "2.4.16", - "@dotkomonline/config": "workspace:*", - "@googleapis/admin": "30.4.0", - "@types/node": "22.19.7", - "typescript": "5.9.3" - } -} diff --git a/packages/types/src/index.ts b/packages/types/src/index.ts deleted file mode 100644 index d703233ada..0000000000 --- a/packages/types/src/index.ts +++ /dev/null @@ -1,16 +0,0 @@ -export * from "./article" -export * from "./attendance" -export * from "./company" -export * from "./event" -export * from "./feedback-form" -export * from "./filters" -export * from "./group" -export * from "./job-listing" -export * from "./mark" -export * from "./notification-permissions" -export * from "./offline" -export * from "./privacy-permissions" -export * from "./task" -export * from "./user" -export * from "./audit-log" -export * from "./workspace-sync" diff --git a/packages/types/src/notification-permissions.ts b/packages/types/src/notification-permissions.ts deleted file mode 100644 index 34103fcd54..0000000000 --- a/packages/types/src/notification-permissions.ts +++ /dev/null @@ -1,15 +0,0 @@ -import type { z } from "zod" - -import { schemas } from "@dotkomonline/db/schemas" - -export const NotificationPermissionsSchema = schemas.NotificationPermissionsSchema.extend({}) - -export type NotificationPermissions = z.infer - -export const NotificationPermissionsWriteSchema = NotificationPermissionsSchema.omit({ - createdAt: true, - updatedAt: true, - userId: true, -}) - -export type NotificationPermissionsWrite = z.infer diff --git a/packages/types/src/privacy-permissions.ts b/packages/types/src/privacy-permissions.ts deleted file mode 100644 index 6307110ae4..0000000000 --- a/packages/types/src/privacy-permissions.ts +++ /dev/null @@ -1,14 +0,0 @@ -import { schemas } from "@dotkomonline/db/schemas" -import type { z } from "zod" - -export const PrivacyPermissionsSchema = schemas.PrivacyPermissionsSchema.extend({}) - -export type PrivacyPermissions = z.infer - -export const PrivacyPermissionsWriteSchema = PrivacyPermissionsSchema.omit({ - createdAt: true, - updatedAt: true, - userId: true, -}) - -export type PrivacyPermissionsWrite = z.infer diff --git a/packages/types/src/task.ts b/packages/types/src/task.ts deleted file mode 100644 index 958ba2ecf4..0000000000 --- a/packages/types/src/task.ts +++ /dev/null @@ -1,34 +0,0 @@ -import { schemas } from "@dotkomonline/db/schemas" -import type { z } from "zod" - -export const TaskSchema = schemas.TaskSchema.extend({}) -export const RecurringTaskSchema = schemas.RecurringTaskSchema.extend({}) - -export type Task = z.infer -export type TaskId = Task["id"] -export type TaskStatus = Task["status"] -export type TaskType = Task["type"] - -export type RecurringTask = z.infer -export type RecurringTaskId = RecurringTask["id"] - -export const TaskWriteSchema = TaskSchema.pick({ - scheduledAt: true, - processedAt: true, - status: true, - payload: true, - recurringTaskId: true, -}) - -export type TaskWrite = z.infer - -export const RecurringTaskWriteSchema = RecurringTaskSchema.pick({ - type: true, - schedule: true, - payload: true, - lastRunAt: true, -}).partial({ - lastRunAt: true, -}) - -export type RecurringTaskWrite = z.infer diff --git a/packages/types/src/user.ts b/packages/types/src/user.ts deleted file mode 100644 index b23e07d00b..0000000000 --- a/packages/types/src/user.ts +++ /dev/null @@ -1,179 +0,0 @@ -import type { TZDate } from "@date-fns/tz" -import { schemas } from "@dotkomonline/db/schemas" -import { getCurrentUTC, slugify } from "@dotkomonline/utils" -import { isAfter, isBefore } from "date-fns" -import { z } from "zod" -import { buildSearchFilter } from "./filters" - -export const MembershipSpecializationSchema = schemas.MembershipSpecializationSchema -export type MembershipSpecialization = z.infer - -export type MembershipType = z.infer -export const MembershipTypeSchema = schemas.MembershipTypeSchema - -export const MembershipSchema = schemas.MembershipSchema.extend({}) -export type MembershipId = Membership["id"] -export type Membership = z.infer - -export const MembershipWriteSchema = MembershipSchema.pick({ - type: true, - start: true, - end: true, - specialization: true, - semester: true, -}) -export type MembershipWrite = z.infer - -export const UserSchema = schemas.UserSchema.extend({ - memberships: z.array(MembershipSchema), -}) -export type User = z.infer -export type UserId = User["id"] -export type Username = User["username"] - -export const NAME_REGEX = /^[\p{L}\p{M}\s'-]+$/u -export const PHONE_REGEX = /^[0-9-+\s]*$/ -export const PROFILE_SLUG_REGEX = /^[a-z0-9-]+$/ - -export const GenderSchema = schemas.GenderSchema -export type Gender = z.infer - -// These max and min values are arbitrary -export const UserWriteSchema = UserSchema.pick({ - workspaceUserId: true, - gender: true, -}).extend({ - username: z - .string() - .min(2, "Brukernavnet må være minst 2 tegn lang") - .max(64, "Brukernavnet kan ikke være lengre enn 64 tegn") - .regex(PROFILE_SLUG_REGEX, "Brukernavnet kan bare inneholde små bokstaver, tall og bindestrek") - .refine((value) => slugify(value) === value, { - error: "Brukernavnet kan bare inneholde små bokstaver, tall og bindestrek", - }), - name: z - .string() - .min(2, "Du må skrive inn et navn") - .max(128, "Navnet kan ikke være lengre enn 128 tegn") - .regex(NAME_REGEX, "Du kan bare bruke bokstaver, bindestrek, apostrof og mellomrom i navnet") - .nullable(), - email: z - .email("Ugyldig e-post") - .min(1, "Du må skrive en e-post") - .max(128, "E-posten kan ikke være lengre enn 128 tegn") - .nullable(), - phone: z - .string() - .regex(PHONE_REGEX, "Ugyldig telefonnummer") - .max(32, "Telefonnummeret kan ikke være lengre enn 32 tegn") - .nullable(), - imageUrl: z.url("Ugyldig URL").max(500, "Bildelenken kan ikke være lengre enn 500 tegn").nullable(), - biography: z.string().max(2000, "Biografien kan ikke være lengre enn 2000 tegn").nullable(), - dietaryRestrictions: z.string().max(200, "Kostholdsrestriksjoner kan ikke være lengre enn 200 tegn").nullable(), -}) -export type UserWrite = z.infer - -export const PublicUserSchema = UserSchema.pick({ - id: true, - username: true, - name: true, - imageUrl: true, - biography: true, -}) -export type PublicUser = z.infer - -export const UserFilterQuerySchema = z - .object({ - byName: buildSearchFilter(), - byEmail: buildSearchFilter(), - }) - .partial() -export type UserFilterQuery = z.infer - -export function isMembershipActive( - membership: Membership | MembershipWrite, - now: TZDate | Date = getCurrentUTC() -): boolean { - if (isAfter(membership.start, now)) { - return false - } - - if (membership.end && isBefore(membership.end, now)) { - return false - } - - return true -} - -/** - * Get the most relevant active membership for a user. Most relevant is defined as the membership with the highest - * semester. - * - * This will always deprioritize KNIGHT (Ridder) memberships in favor of student or social memberships, because they are - * easier to work with for our attendance systems. - */ -export function findActiveMembership(user: User): Membership | null { - const now = getCurrentUTC() - - // This orders active memberships by semester descending with null values last - const orderedMemberships = user.memberships - .filter((membership) => isMembershipActive(membership, now)) - .toSorted((a, b) => { - if (a.semester === null && b.semester === null) { - return 0 - } - - if (a.semester !== null && b.semester !== null) { - return b.semester - a.semester - } - - return b.semester !== null ? 1 : -1 - }) - - return orderedMemberships.at(0) ?? null -} - -export function getMembershipTypeName(type: MembershipType) { - switch (type) { - case "BACHELOR_STUDENT": - return "Bachelor" - case "MASTER_STUDENT": - return "Master" - case "SOCIAL_MEMBER": - return "Sosialt medlem" - case "KNIGHT": - return "Ridder" - } -} - -export function getSpecializationName(specialization: MembershipSpecialization) { - switch (specialization) { - case "ARTIFICIAL_INTELLIGENCE": - return "Kunstig intelligens" - case "DATABASE_AND_SEARCH": - return "Database og søk" - case "INTERACTION_DESIGN": - return "Interaksjonsdesign" - case "SOFTWARE_ENGINEERING": - return "Programvareutvikling" - case "UNKNOWN": - return "Ukjent spesialisering" - } -} - -export function getGenderName(gender: Gender) { - switch (gender) { - case "MALE": - return "Mann" - case "FEMALE": - return "Kvinne" - case "NON_BINARY": - return "Ikke-binær" - case "OTHER": - return "Annet" - case "UNKNOWN": - return "Ikke oppgitt" - } -} - -export const USER_IMAGE_MAX_SIZE_KIB = 512 diff --git a/packages/types/tsconfig.json b/packages/types/tsconfig.json deleted file mode 100644 index 11b2ad3d4a..0000000000 --- a/packages/types/tsconfig.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "extends": "../../packages/config/tsconfig.json", - "compilerOptions": { - "outDir": "dist", - "declaration": true, - "types": ["node"], - "lib": ["es2023", "esnext"] - }, - "include": ["./**/*.ts", "./**/*.tsx"] -} diff --git a/packages/types/src/filters.ts b/packages/utils/src/filters.ts similarity index 100% rename from packages/types/src/filters.ts rename to packages/utils/src/filters.ts diff --git a/packages/utils/src/index.ts b/packages/utils/src/index.ts index 3716a344a6..f3f2231931 100644 --- a/packages/utils/src/index.ts +++ b/packages/utils/src/index.ts @@ -12,3 +12,5 @@ export * from "./semester-helpers" export * from "./query" export * from "./auth" export * from "./session-recovery-messages" +export * from "./filters" +export * from "./json" diff --git a/packages/utils/src/json.ts b/packages/utils/src/json.ts new file mode 100644 index 0000000000..a60904008e --- /dev/null +++ b/packages/utils/src/json.ts @@ -0,0 +1,31 @@ +import { z } from "zod" + +/** + * Builds a schema for an arbitrary JSON value that rejects values nested deeper than `maxDepth` levels. + * + * This mirrors the validation that used to be emitted by the Prisma zod generator for `Json` columns, and is used by + * the domain schemas when parsing rows that originate from `Json` database columns. + */ +export function buildLimitedDepthJsonSchema(maxDepth = 10) { + return z.unknown().refine((value) => { + const getDepth = (object: unknown, depth = 0): number => { + if (depth > maxDepth) { + return depth + } + + if (object === null || typeof object !== "object") { + return depth + } + + const values = Object.values(object as Record) + + if (values.length === 0) { + return depth + } + + return Math.max(...values.map((nested) => getDepth(nested, depth + 1))) + } + + return getDepth(value) <= maxDepth + }, `JSON nesting depth exceeds maximum of ${maxDepth}`) +} diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index b9e6813cee..a057476a17 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -38,9 +38,6 @@ importers: '@dotkomonline/rpc': specifier: workspace:* version: link:../rpc - '@dotkomonline/types': - specifier: workspace:* - version: link:../../packages/types '@dotkomonline/ui': specifier: workspace:* version: link:../../packages/ui @@ -231,9 +228,6 @@ importers: '@dotkomonline/logger': specifier: workspace:* version: link:../../packages/logger - '@dotkomonline/types': - specifier: workspace:* - version: link:../../packages/types '@dotkomonline/utils': specifier: workspace:* version: link:../../packages/utils @@ -322,9 +316,6 @@ importers: '@dotkomonline/logger': specifier: workspace:* version: link:../../packages/logger - '@dotkomonline/types': - specifier: workspace:* - version: link:../../packages/types '@dotkomonline/ui': specifier: workspace:* version: link:../../packages/ui @@ -488,9 +479,6 @@ importers: '@dotkomonline/logger': specifier: workspace:* version: link:../../packages/logger - '@dotkomonline/types': - specifier: workspace:* - version: link:../../packages/types '@dotkomonline/utils': specifier: workspace:* version: link:../../packages/utils @@ -636,9 +624,9 @@ importers: '@dotkomonline/logger': specifier: workspace:* version: link:../../packages/logger - '@dotkomonline/types': + '@dotkomonline/rpc': specifier: workspace:* - version: link:../../packages/types + version: link:../rpc '@dotkomonline/ui': specifier: workspace:* version: link:../../packages/ui @@ -790,9 +778,6 @@ importers: '@dotkomonline/config': specifier: workspace:* version: link:../../packages/config - '@dotkomonline/rpc': - specifier: workspace:* - version: link:../rpc '@fontsource-variable/figtree': specifier: ^5.2.10 version: 5.2.10 @@ -892,9 +877,6 @@ importers: pg: specifier: ^8.16.0 version: 8.17.2 - prisma-zod-generator: - specifier: ^2.1.4 - version: 2.1.4(magicast@0.3.5)(prisma@7.8.0(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(magicast@0.3.5)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)(typescript@5.9.3))(typescript@5.9.3)(zod@4.4.3) zod: specifier: ^4.4.3 version: 4.4.3 @@ -966,9 +948,6 @@ importers: pg: specifier: ^8.16.0 version: 8.17.2 - prisma-zod-generator: - specifier: ^2.1.4 - version: 2.1.4(magicast@0.3.5)(prisma@7.8.0(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(magicast@0.3.5)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)(typescript@5.9.3))(typescript@5.9.3)(zod@4.4.3) zod: specifier: ^4.4.3 version: 4.4.3 @@ -1065,43 +1044,6 @@ importers: specifier: 5.9.3 version: 5.9.3 - packages/types: - dependencies: - '@date-fns/tz': - specifier: ^1.2.0 - version: 1.5.0 - '@dotkomonline/db': - specifier: workspace:* - version: link:../db - '@dotkomonline/utils': - specifier: workspace:* - version: link:../utils - date-fns: - specifier: ^4.1.0 - version: 4.4.0 - tiny-invariant: - specifier: ^1.3.3 - version: 1.3.3 - zod: - specifier: ^4.4.3 - version: 4.4.3 - devDependencies: - '@biomejs/biome': - specifier: 2.4.16 - version: 2.4.16 - '@dotkomonline/config': - specifier: workspace:* - version: link:../config - '@googleapis/admin': - specifier: 30.4.0 - version: 30.4.0 - '@types/node': - specifier: 22.19.7 - version: 22.19.7 - typescript: - specifier: 5.9.3 - version: 5.9.3 - packages/ui: dependencies: '@base-ui/react': @@ -3174,63 +3116,33 @@ packages: typescript: optional: true - '@prisma/config@7.6.0': - resolution: {integrity: sha512-MuAz1MK4PeG5/03YzfzX3CnFVHQ6qePGwUpQRzPzX5tT0ffJ3Tzi9zJZbBc+VzEGFCM8ghW/gTVDR85Syjt+Yw==} - '@prisma/config@7.8.0': resolution: {integrity: sha512-HFESzd9rx2ZQxlK+TL7tu1HPvCqrHiL6LCxYykI2c34mvaUuIVVl3lYuicJD/MNnzgPnyeBEMlK4WTomJCV5jw==} '@prisma/debug@7.2.0': resolution: {integrity: sha512-YSGTiSlBAVJPzX4ONZmMotL+ozJwQjRmZweQNIq/ER0tQJKJynNkRB3kyvt37eOfsbMCXk3gnLF6J9OJ4QWftw==} - '@prisma/debug@7.6.0': - resolution: {integrity: sha512-LpHr3qos4lQZ6sxwjStf59YBht7m9/QF7NSQsMH6qGENWZu2w3UkQUGn1h5iRkDjnWRj3VHykOu9qFhps4ADvA==} - '@prisma/debug@7.8.0': resolution: {integrity: sha512-p+QZReysDUqXC+mk17q9a+Y/qzh4c2KYliDK30buYUyfrGeTGSyfmc0AIrJRhZJrLHhRiJa9Au/J72h3C+szvA==} '@prisma/dev@0.24.3': resolution: {integrity: sha512-ffHlQuKXZiaDt9Go0OnCTdJZrHxK0k7omJKNV86/VjpsXu5EIHZLK0T7JSWgvNlJwh56kW9JFu9v0qJciFzepg==} - '@prisma/dmmf@7.6.0': - resolution: {integrity: sha512-OZFEOEziUnJJMx2vu3twM5jEIsEyCRDPXq2Y/2XMBNPhnscKvbDWS3DAYyWmH8jqkDn4VqyE1UCvEFt30Pqbww==} - - '@prisma/driver-adapter-utils@7.6.0': - resolution: {integrity: sha512-D8j3p0RnhLuufMaRLX6QqtGgPC5Ao3l5oFP6Q5AL0rTHi4vna+NzGEipwCsfvcSvaGFCbsH3lsTMbb4WvY+ovA==} - '@prisma/driver-adapter-utils@7.8.0': resolution: {integrity: sha512-/Q13o0ZT0rjc1Xk0Q9KhZYwuq2EW/vSbWUBKfgEKkaCuB/Sg6bqnjmTZqC5cD4d6y1vfFAEwBRzfzoSMIVJ55A==} - '@prisma/engines-version@7.6.0-1.75cbdc1eb7150937890ad5465d861175c6624711': - resolution: {integrity: sha512-r51DLcJ8bDRSrBEJF3J4cinoWyGA7rfP2mG6lD90VqIbGNOkbfcLcXalSVjq5Y6brQS3vcjrq4GbyUb1Cb7vkw==} - '@prisma/engines-version@7.8.0-6.3c6e192761c0362d496ed980de936e2f3cebcd3a': resolution: {integrity: sha512-fJPQxCkLgA5EayWaW8eArgCvjJ+N+Kz3VyeNKMEeYiQC4alNkxRKFVAGxv/ZUzuJISKqdw+zGeDbS6mn6RCPOA==} - '@prisma/engines@7.6.0': - resolution: {integrity: sha512-Sn5edRzhHqgRV2M+A0eIbY442B4mReWWf3pKs/LKreYgW7oa/up8JtK/s4iv/EQA097cyboZ08mmkpbLp+tZ3w==} - '@prisma/engines@7.8.0': resolution: {integrity: sha512-jx3rCnNNrt5uzbkKlegtQ2GZHxSlihMCzutgT/BP6UIDF1r9tDI39hV/0T/cHZgzJ3ELbuQPXlVZy+Y1n0pcgw==} - '@prisma/fetch-engine@7.6.0': - resolution: {integrity: sha512-N575Ni95c3FkduWY/eKTHqNYgNbceZ1tQaSknVtJjpKmiiBXmniESn/GTxsDvICC4ZeiNrXxioGInzQrCdx16w==} - '@prisma/fetch-engine@7.8.0': resolution: {integrity: sha512-gwB0Euiz/DDRyxFRpLXYlK3RfaZUj1c5dAYMuhZYfApg7arknJlcb9bIsOHDppJmbqYaVA+yBIiFMDBfprsNPQ==} - '@prisma/generator-helper@7.6.0': - resolution: {integrity: sha512-Wnb7NypN2581AXsaDdfGM6Guvfg6ahs0ooWHhFwD+/mrE3rI122cNRWMV9W1hqyt5OITs+3TV2M6GZZ16NcwjQ==} - - '@prisma/generator@7.6.0': - resolution: {integrity: sha512-F09ZN/QVlKuvoAKEnHZB3LBbooKQTrio7NrKhI7tf0C9XZuCoALP/F7gADpTayXDmPaII1Klit3SJmJsfantEw==} - '@prisma/get-platform@7.2.0': resolution: {integrity: sha512-k1V0l0Td1732EHpAfi2eySTezyllok9dXb6UQanajkJQzPUGi3vO2z7jdkz67SypFTdmbnyGYxvEvYZdZsMAVA==} - '@prisma/get-platform@7.6.0': - resolution: {integrity: sha512-ohZDwXvtmnbzOcutR2D13lDWpZP1wQjmPyztmt0AwXLzQI7q95EE7NYCvS+M6N6SivT+BM0NOqLmTH3wms4L3A==} - '@prisma/get-platform@7.8.0': resolution: {integrity: sha512-WlxgRGnolL8VH2EmkH1R/DkKNr/mVdS3G2h42IZFFZ3eUrH9OT6t73kIOSlkkrv50wG123Iq8d96ufv5LlZktw==} @@ -3244,26 +3156,9 @@ packages: peerDependencies: '@opentelemetry/api': ^1.8 - '@prisma/internals@7.6.0': - resolution: {integrity: sha512-0Q5B32twK3csXNiu+frqsrRODQJxYdMxdYeLSKpjCwWkTZyHRkIv+/zhUxp85zAHOM56H1Q0eieIcK7hKqPhnA==} - peerDependencies: - typescript: '>=5.4.0' - peerDependenciesMeta: - typescript: - optional: true - - '@prisma/prisma-schema-wasm@7.6.0-1.75cbdc1eb7150937890ad5465d861175c6624711': - resolution: {integrity: sha512-sGWZsHVJlxX/lDZiwFg00kyZGwZo3vwN4v5jaMus+7j1763SsXjrW1MSykDUZoy8W1Ent9kCyPRpu9dy/ajnIg==} - '@prisma/query-plan-executor@7.2.0': resolution: {integrity: sha512-EOZmNzcV8uJ0mae3DhTsiHgoNCuu1J9mULQpGCh62zN3PxPTd+qI9tJvk5jOst8WHKQNwJWR3b39t0XvfBB0WQ==} - '@prisma/schema-engine-wasm@7.6.0-1.75cbdc1eb7150937890ad5465d861175c6624711': - resolution: {integrity: sha512-FNs45iHWzdmWL7NzZx2L1GUX1bIQuTjGBlLwDzlgwFx4jWZ3D3y7e5zDWq8MYY2GZzbRDfH2eTVzD0cKhLp5BQ==} - - '@prisma/schema-files-loader@7.6.0': - resolution: {integrity: sha512-D5JZLfDQyWPqit3lxNbGCxHSTQwJ2bB9lY6navoYYdL6lulPgsMj5+atAYaWF5hP4Akibr33CS3HZFZlUfH8IQ==} - '@prisma/streams-local@0.1.2': resolution: {integrity: sha512-l49yTxKKF2odFxaAXTmwmkBKL3+bVQ1tFOooGifu4xkdb9NMNLxHj27XAhTylWZod8I+ISGM5erU1xcl/oBCtg==} engines: {bun: '>=1.3.6', node: '>=22.0.0'} @@ -4174,9 +4069,6 @@ packages: '@standard-schema/utils@0.3.0': resolution: {integrity: sha512-e7Mew686owMaPJVNNLs55PUvgz371nKgwsc4vxE49zsODpJEnxgxRo2y/OKrqueavXgZNMDVj3DdHFlaSAeU8g==} - '@streamparser/json@0.0.22': - resolution: {integrity: sha512-b6gTSBjJ8G8SuO3Gbbj+zXbVx8NSs1EbpbMKpzGLWMdkR+98McH9bEjSz3+0mPJf68c5nxa3CrJHp5EQNXM6zQ==} - '@swc/core-darwin-arm64@1.15.33': resolution: {integrity: sha512-N+L0uXhuO7FIfzqwgxmzv0zIpV0qEp8wPX3QQs2p4atjMoywup2JTeDlXPw+z9pWJGCae3JjM+tZ6myclI+2gA==} engines: {node: '>=10'} @@ -4628,9 +4520,6 @@ packages: '@types/babel__traverse@7.28.0': resolution: {integrity: sha512-8PvcXf70gTDZBgt9ptxJ8elBeBjcLOAcOtoO/mPJjtji1+CdGbHgm77om1GrsPxsiE+uXIpNSK64UYaIwQXd4Q==} - '@types/body-parser@1.19.6': - resolution: {integrity: sha512-HLFeCYgz89uk22N5Qg3dvGvsv46B8GLvKKo1zKG4NybA8U2DiEO3w9lqGg29t/tfLRJpJ6iQxnVw4OnB7MoM9g==} - '@types/chai@5.2.3': resolution: {integrity: sha512-Mw558oeA9fFbv65/y4mHtXDs9bPnFMZAL/jxdPFUpOHHIXX91mcgEHbS5Lahr+pwZFR8A7GQleRWeI6cGFC2UA==} @@ -4697,21 +4586,12 @@ packages: '@types/estree@1.0.9': resolution: {integrity: sha512-GhdPgy1el4/ImP05X05Uw4cw2/M93BCUmnEvWZNStlCzEKME4Fkk+YpoA5OiHNQmoS7Cafb8Xa3Pya8m1Qrzeg==} - '@types/express-serve-static-core@5.1.1': - resolution: {integrity: sha512-v4zIMr/cX7/d2BpAEX3KNKL/JrT1s43s96lLvvdTmza1oEvDudCqK9aF/djc/SWgy8Yh0h30TZx5VpzqFCxk5A==} - - '@types/express@5.0.6': - resolution: {integrity: sha512-sKYVuV7Sv9fbPIt/442koC7+IIwK5olP1KWeD88e/idgoJqDm3JV/YUiPwkoKK92ylff2MGxSz1CSjsXelx0YA==} - '@types/hast@3.0.4': resolution: {integrity: sha512-WPs+bbQw5aCj+x6laNGWLH3wviHtoCv/P3+otBhbOhJgG8qtpdAMlTCxLtsTWA7LH1Oh/bFCHsBn0TPS5m30EQ==} '@types/html-to-text@9.0.4': resolution: {integrity: sha512-pUY3cKH/Nm2yYrEmDlPR1mR7yszjGx4DrwPjQ702C4/D5CwHuZTgZdIdwPkRbcuhs7BAh2L5rg3CL5cbRiGTCQ==} - '@types/http-errors@2.0.5': - resolution: {integrity: sha512-r8Tayk8HJnX0FztbZN7oVqGccWgw98T/0neJphO91KkmOzug1KkofZURD4UaD5uH8AqcFLfdPErnBod0u71/qg==} - '@types/json-schema@7.0.15': resolution: {integrity: sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==} @@ -4760,12 +4640,6 @@ packages: '@types/prismjs@1.26.5': resolution: {integrity: sha512-AUZTa7hQ2KY5L7AmtSiqxlhWxb4ina0yd8hNbl4TWuqnv/pFP0nDMb3YrfSBf4hJVGLh2YEIBfKaBW/9UEl6IQ==} - '@types/qs@6.15.0': - resolution: {integrity: sha512-JawvT8iBVWpzTrz3EGw9BTQFg3BQNmwERdKE22vlTxawwtbyUSlMppvZYKLZzB5zgACXdXxbD3m1bXaMqP/9ow==} - - '@types/range-parser@1.2.7': - resolution: {integrity: sha512-hKormJbkJqzQGhziax5PItDUTMAM9uE2XXQmM37dyd4hVM+5aVl7oVxMVUiVQn2oCQFN/LKCZdvSM0pFRqbSmQ==} - '@types/react-dom@19.2.3': resolution: {integrity: sha512-jp2L/eY6fn+KgVVQAOqYItbF0VY/YApe5Mz2F0aykSO8gx31bYCZyvSeYxCHKvzHG5eZjc+zyaS5BrBWya2+kQ==} peerDependencies: @@ -4777,12 +4651,6 @@ packages: '@types/sanitize-html@2.16.1': resolution: {integrity: sha512-n9wjs8bCOTyN/ynwD8s/nTcTreIHB1vf31vhLMGqUPNHaweKC4/fAl4Dj+hUlCTKYgm4P3k83fmiFfzkZ6sgMA==} - '@types/send@1.2.1': - resolution: {integrity: sha512-arsCikDvlU99zl1g69TcAB3mzZPpxgw0UQnaHeC1Nwb015xp8bknZv5rIfri9xTOcMuaVgvabfIRA7PSZVuZIQ==} - - '@types/serve-static@2.2.0': - resolution: {integrity: sha512-8mam4H1NHLtu7nmtalF7eyBH14QyOASmcxHhSfEoRyr0nP/YdoesEtU+uSRvMe96TW/HPTtkoKqQLl53N7UXMQ==} - '@types/ssh2-streams@0.1.13': resolution: {integrity: sha512-faHyY3brO9oLEA0QlcO8N2wT7R0+1sHWZvQ+y3rMLwdY1ZyS1z0W3t65j9PqT4HmQ6ALzNe7RZlNuCNE0wBSWA==} @@ -5037,9 +4905,6 @@ packages: resolution: {integrity: sha512-ZcbTaIqJOfCc03QwD468Unz/5Ir8ATtvAHsK+FdXbDIbGfihqh9mrvdcYunQzqn4HrvWWaFyaxJhGZagaJJpPQ==} engines: {node: '>= 14'} - arg@5.0.2: - resolution: {integrity: sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg==} - argparse@2.0.1: resolution: {integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==} @@ -5265,14 +5130,6 @@ packages: resolution: {integrity: sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==} engines: {node: '>= 0.8'} - c12@3.1.0: - resolution: {integrity: sha512-uWoS8OU1MEIsOv8p/5a82c3H31LsWVR5qiyXVfBNOzfffjUWtPnhAb4BYI2uG2HfGmZmFjCtui5XNWaps+iFuw==} - peerDependencies: - magicast: ^0.3.5 - peerDependenciesMeta: - magicast: - optional: true - c12@3.3.4: resolution: {integrity: sha512-cM0ApFQSBXuourJejzwv/AuPRvAxordTyParRVcHjjtXirtkzM0uK2L9TTn9s0cXZbG7E55jCivRQzoxYmRAlA==} peerDependencies: @@ -5371,12 +5228,6 @@ packages: resolution: {integrity: sha512-rNjApaLzuwaOTjCiT8lSDdGN1APCiqkChLMJxJPWLunPAt5fy8xgU9/jNOchV84wfIxrA0lRQB7oCT8jrn/wrQ==} engines: {node: '>=6.0'} - citty@0.1.6: - resolution: {integrity: sha512-tskPPKEs8D2KPafUypv2gxwJP8h/OaJmC82QQGGDQcHvXX43xF2VDACcJVmZ0EuSxkpO9Kc4MlrA3q0+FG58AQ==} - - citty@0.2.0: - resolution: {integrity: sha512-8csy5IBFI2ex2hTVpaHN2j+LNE199AgiI7y4dMintrr8i0lQiFn+0AWMZrWdHKIgMOer65f8IThysYhoReqjWA==} - cjs-module-lexer@2.2.0: resolution: {integrity: sha512-4bHTS2YuzUvtoLjdy+98ykbNB5jS0+07EvFNXerqZQJ89F7DI6ET7OQo/HJuW6K0aVsKA9hj9/RVb2kQVOrPDQ==} @@ -5482,10 +5333,6 @@ packages: confbox@0.2.4: resolution: {integrity: sha512-ysOGlgTFbN2/Y6Cg3Iye8YKulHw+R2fNXHrgSmXISQdMnomY6eNDprVdW9R5xBguEqI954+S6709UyiO7B+6OQ==} - consola@3.4.2: - resolution: {integrity: sha512-5IKcdX0nnYavi6G7TtOhwkYzyjfJlatbjMjuLSfE2kYT5pMDOilZ4OvMhi637CcDICTmz3wARPoyhqyX1Y+XvA==} - engines: {node: ^14.18.0 || >=16.10.0} - content-disposition@0.5.4: resolution: {integrity: sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==} engines: {node: '>= 0.6'} @@ -6201,10 +6048,6 @@ packages: fs-constants@1.0.0: resolution: {integrity: sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow==} - fs-extra@11.3.0: - resolution: {integrity: sha512-Z4XaCL6dUDHfP/jT25jJKMmtxvuwbkrD1vNSMFlo9lNLY2c5FHYSQgHPRZUjAB26TpDEoW9HCOgplrdbaPV/ew==} - engines: {node: '>=14.14'} - fs-extra@11.3.5: resolution: {integrity: sha512-eKpRKAovdpZtR1WopLHxlBWvAgPny3c4gX1G5Jhwmmw4XJj0ifSD5qB5TOo8hmA0wlRKDAOAhEE1yVPgs6Fgcg==} engines: {node: '>=14.14'} @@ -6285,10 +6128,6 @@ packages: get-tsconfig@4.13.0: resolution: {integrity: sha512-1VKTZJCwBrvbd+Wn3AOgQP/2Av+TfTCOlE4AcRJE72W1ksZXbAx8PPBR9RzgTeSPzlPMHrbANMH3LbltH73wxQ==} - giget@2.0.0: - resolution: {integrity: sha512-L5bGsVkxJbJgdnwyuheIunkGatUF/zssUoxxjACCseZYAVbaqdh9Tsmmlkl8vYan09H7sbvKt4pS8GqKLBrEzA==} - hasBin: true - giget@3.2.0: resolution: {integrity: sha512-GvHTWcykIR/fP8cj8dMpuMMkvaeJfPvYnhq0oW+chSeIr+ldX21ifU2Ms6KBoyKZQZmVaUAAhQ2EZ68KJF8a7A==} hasBin: true @@ -7363,9 +7202,6 @@ packages: engines: {node: '>=10.5.0'} deprecated: Use your platform's native DOMException instead - node-fetch-native@1.6.7: - resolution: {integrity: sha512-g9yhqoedzIUm0nTnTqAQvueMPVOuIY16bqgAJJC8XOOubYFNwz6IER9qs0Gq2Xd0+CecCKFjtdDTMA4u4xG06Q==} - node-fetch@2.7.0: resolution: {integrity: sha512-c4FRfUm/dbcWZ7U+1Wq0AwCyFL+3nt2bEw05wfxSz+DWpWsitgmSgYmy2dQdWyKC1694ELPqMs/YzUSNozLt8A==} engines: {node: 4.x || >=6.0.0} @@ -7426,11 +7262,6 @@ packages: react-router-dom: optional: true - nypm@0.6.4: - resolution: {integrity: sha512-1TvCKjZyyklN+JJj2TS3P4uSQEInrM/HkkuSXsEzm1ApPgBffOn8gFguNnZf07r/1X6vlryfIqMUkJKQMzlZiw==} - engines: {node: '>=18'} - hasBin: true - oauth4webapi@3.8.6: resolution: {integrity: sha512-iwemM91xz8nryHti2yTmg5fhyEMVOkOXwHNqbvcATjyajb5oQxCQzrNOA6uElRHuMhQQTKUyFKV9y/CNyg25BQ==} @@ -7609,9 +7440,6 @@ packages: peberminta@0.9.0: resolution: {integrity: sha512-XIxfHpEuSJbITd1H3EeQwpcZbTLHc+VVr8ANI9t5sit565tsI4/xK3KWTUFE2e6QiangUkh3B0jihzmGnNrRsQ==} - perfect-debounce@1.0.0: - resolution: {integrity: sha512-xCy9V055GLEqoFaHoC1SoLIaLmWctgCUaBaWxDZ7/Zx4CTyX7cJQLJOok/orfjZAh9kEYpjJa4d0KcJmCbctZA==} - perfect-debounce@2.1.0: resolution: {integrity: sha512-LjgdTytVFXeUgtHZr9WYViYSM/g8MkcTPYDlPa3cDqMirHjKiSZPYd6DoL7pK8AJQr+uWkQvCjHNdiMqsrJs+g==} @@ -7757,11 +7585,6 @@ packages: resolution: {integrity: sha512-dM0jVuXJPsDN6DvRpea484tCUaMiXWjuCn++HGTqUWzGDjv5tZkEZldAJ/UMlqRYGFrD/etByo4/xOuC/snX2A==} engines: {node: '>=20'} - prettier@3.8.1: - resolution: {integrity: sha512-UOnG6LftzbdaHZcKoPFtOcCKztrQ57WkHDeRD9t/PTQtmT0NHSeWWepj6pS0z/N7+08BHFDQVUrfmfMRcZwbMg==} - engines: {node: '>=14'} - hasBin: true - pretty-ms@9.3.0: resolution: {integrity: sha512-gjVS5hOP+M3wMm5nmNOucbIrqudzs9v/57bWRHQWLYklXqoXKrVfYW2W9+glfGsqtPgpiz5WwyEEB+ksXIx3gQ==} engines: {node: '>=18'} @@ -7771,13 +7594,6 @@ packages: peerDependencies: react: '>=16.0.0' - prisma-zod-generator@2.1.4: - resolution: {integrity: sha512-fiNUD4unEXZqfnE23IM3beCR6+hNXi8wZglF1yJG079LqTqdZXFntvqM+Mk/k/Yc7bc0aPeZLYwie3qDRotAHQ==} - engines: {node: '>=20.19.0'} - hasBin: true - peerDependencies: - zod: '>=3.25.0 <5' - prisma@7.8.0: resolution: {integrity: sha512-yfN4yrw7HV9kEJhoy1+jgah0jafEIQsf7uWouSsM8MvJtlubsk+kM7AIBWZ8+GJl74Yj3c+nbYqBkMOxtsZ3Lw==} engines: {node: ^20.19 || ^22.12 || >=24.0} @@ -7946,9 +7762,6 @@ packages: resolution: {integrity: sha512-K5zQjDllxWkf7Z5xJdV0/B0WTNqx6vxG70zJE4N0kBs4LovmEYWJzQGxC9bS9RAKu3bgM40lrd5zoLJ12MQ5BA==} engines: {node: '>= 0.10'} - rc9@2.1.2: - resolution: {integrity: sha512-btXCnMmRIBINM2LDZoEmOogIZU7Qe7zn4BpomSKZ/ykbLObuBdvG+mFq11DL6fjH1DRwHhrlgtYWG96bJiC7Cg==} - rc9@3.0.1: resolution: {integrity: sha512-gMDyleLWVE+i6Sgtc0QbbY6pEKqYs97NGi6isHQPqYlLemPoO8dxQ3uGi0f4NiP98c+jMW6cG1Kx9dDwfvqARQ==} @@ -8671,10 +8484,6 @@ packages: tinyexec@0.3.2: resolution: {integrity: sha512-KQQR9yN7R5+OSwaK0XQoj22pwHoTlgYqmUscPYoknOoWCWfj/5/ABTMRi69FrKU5ffPVh5QcFikpWJI/P1ocHA==} - tinyexec@1.0.2: - resolution: {integrity: sha512-W/KYk+NFhkmsYpuHq5JykngiOCnxeVL8v8dFnqxSD8qEEdRfXk1SDM6JzNqcERbcGYj9tMrDQBYV9cjgnunFIg==} - engines: {node: '>=18'} - tinyglobby@0.2.15: resolution: {integrity: sha512-j2Zq4NyQYG5XMST4cbs02Ak8iJUdxRM0XI5QyxXuZOzKOINmWurp3smXu3y5wDcJrptwpSjgXHzIQxR0omXljQ==} engines: {node: '>=12.0.0'} @@ -11377,15 +11186,6 @@ snapshots: prisma: 7.8.0(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(magicast@0.3.5)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)(typescript@5.9.3) typescript: 5.9.3 - '@prisma/config@7.6.0(magicast@0.3.5)': - dependencies: - c12: 3.1.0(magicast@0.3.5) - deepmerge-ts: 7.1.5 - effect: 3.20.0 - empathic: 2.0.0 - transitivePeerDependencies: - - magicast - '@prisma/config@7.8.0(magicast@0.3.5)': dependencies: c12: 3.3.4(magicast@0.3.5) @@ -11397,8 +11197,6 @@ snapshots: '@prisma/debug@7.2.0': {} - '@prisma/debug@7.6.0': {} - '@prisma/debug@7.8.0': {} '@prisma/dev@0.24.3(typescript@5.9.3)': @@ -11423,27 +11221,12 @@ snapshots: transitivePeerDependencies: - typescript - '@prisma/dmmf@7.6.0': {} - - '@prisma/driver-adapter-utils@7.6.0': - dependencies: - '@prisma/debug': 7.6.0 - '@prisma/driver-adapter-utils@7.8.0': dependencies: '@prisma/debug': 7.8.0 - '@prisma/engines-version@7.6.0-1.75cbdc1eb7150937890ad5465d861175c6624711': {} - '@prisma/engines-version@7.8.0-6.3c6e192761c0362d496ed980de936e2f3cebcd3a': {} - '@prisma/engines@7.6.0': - dependencies: - '@prisma/debug': 7.6.0 - '@prisma/engines-version': 7.6.0-1.75cbdc1eb7150937890ad5465d861175c6624711 - '@prisma/fetch-engine': 7.6.0 - '@prisma/get-platform': 7.6.0 - '@prisma/engines@7.8.0': dependencies: '@prisma/debug': 7.8.0 @@ -11451,34 +11234,16 @@ snapshots: '@prisma/fetch-engine': 7.8.0 '@prisma/get-platform': 7.8.0 - '@prisma/fetch-engine@7.6.0': - dependencies: - '@prisma/debug': 7.6.0 - '@prisma/engines-version': 7.6.0-1.75cbdc1eb7150937890ad5465d861175c6624711 - '@prisma/get-platform': 7.6.0 - '@prisma/fetch-engine@7.8.0': dependencies: '@prisma/debug': 7.8.0 '@prisma/engines-version': 7.8.0-6.3c6e192761c0362d496ed980de936e2f3cebcd3a '@prisma/get-platform': 7.8.0 - '@prisma/generator-helper@7.6.0': - dependencies: - '@prisma/debug': 7.6.0 - '@prisma/dmmf': 7.6.0 - '@prisma/generator': 7.6.0 - - '@prisma/generator@7.6.0': {} - '@prisma/get-platform@7.2.0': dependencies: '@prisma/debug': 7.2.0 - '@prisma/get-platform@7.6.0': - dependencies: - '@prisma/debug': 7.6.0 - '@prisma/get-platform@7.8.0': dependencies: '@prisma/debug': 7.8.0 @@ -11497,39 +11262,8 @@ snapshots: transitivePeerDependencies: - supports-color - '@prisma/internals@7.6.0(magicast@0.3.5)(typescript@5.9.3)': - dependencies: - '@prisma/config': 7.6.0(magicast@0.3.5) - '@prisma/debug': 7.6.0 - '@prisma/dmmf': 7.6.0 - '@prisma/driver-adapter-utils': 7.6.0 - '@prisma/engines': 7.6.0 - '@prisma/fetch-engine': 7.6.0 - '@prisma/generator': 7.6.0 - '@prisma/generator-helper': 7.6.0 - '@prisma/get-platform': 7.6.0 - '@prisma/prisma-schema-wasm': 7.6.0-1.75cbdc1eb7150937890ad5465d861175c6624711 - '@prisma/schema-engine-wasm': 7.6.0-1.75cbdc1eb7150937890ad5465d861175c6624711 - '@prisma/schema-files-loader': 7.6.0 - '@streamparser/json': 0.0.22 - arg: 5.0.2 - prompts: 2.4.2 - optionalDependencies: - typescript: 5.9.3 - transitivePeerDependencies: - - magicast - - '@prisma/prisma-schema-wasm@7.6.0-1.75cbdc1eb7150937890ad5465d861175c6624711': {} - '@prisma/query-plan-executor@7.2.0': {} - '@prisma/schema-engine-wasm@7.6.0-1.75cbdc1eb7150937890ad5465d861175c6624711': {} - - '@prisma/schema-files-loader@7.6.0': - dependencies: - '@prisma/prisma-schema-wasm': 7.6.0-1.75cbdc1eb7150937890ad5465d861175c6624711 - fs-extra: 11.3.0 - '@prisma/streams-local@0.1.2': dependencies: ajv: 8.20.0 @@ -12449,8 +12183,6 @@ snapshots: '@standard-schema/utils@0.3.0': {} - '@streamparser/json@0.0.22': {} - '@swc/core-darwin-arm64@1.15.33': optional: true @@ -12874,11 +12606,6 @@ snapshots: dependencies: '@babel/types': 7.29.7 - '@types/body-parser@1.19.6': - dependencies: - '@types/connect': 3.4.38 - '@types/node': 22.19.7 - '@types/chai@5.2.3': dependencies: '@types/deep-eql': 4.0.2 @@ -12953,27 +12680,12 @@ snapshots: '@types/estree@1.0.9': {} - '@types/express-serve-static-core@5.1.1': - dependencies: - '@types/node': 22.19.7 - '@types/qs': 6.15.0 - '@types/range-parser': 1.2.7 - '@types/send': 1.2.1 - - '@types/express@5.0.6': - dependencies: - '@types/body-parser': 1.19.6 - '@types/express-serve-static-core': 5.1.1 - '@types/serve-static': 2.2.0 - '@types/hast@3.0.4': dependencies: '@types/unist': 3.0.3 '@types/html-to-text@9.0.4': {} - '@types/http-errors@2.0.5': {} - '@types/json-schema@7.0.15': {} '@types/linkify-it@5.0.0': {} @@ -13029,10 +12741,6 @@ snapshots: '@types/prismjs@1.26.5': {} - '@types/qs@6.15.0': {} - - '@types/range-parser@1.2.7': {} - '@types/react-dom@19.2.3(@types/react@19.2.17)': dependencies: '@types/react': 19.2.17 @@ -13045,15 +12753,6 @@ snapshots: dependencies: htmlparser2: 10.1.0 - '@types/send@1.2.1': - dependencies: - '@types/node': 22.19.7 - - '@types/serve-static@2.2.0': - dependencies: - '@types/http-errors': 2.0.5 - '@types/node': 22.19.7 - '@types/ssh2-streams@0.1.13': dependencies: '@types/node': 22.19.7 @@ -13383,8 +13082,6 @@ snapshots: - bare-buffer - react-native-b4a - arg@5.0.2: {} - argparse@2.0.1: {} aria-hidden@1.2.6: @@ -13604,23 +13301,6 @@ snapshots: bytes@3.1.2: {} - c12@3.1.0(magicast@0.3.5): - dependencies: - chokidar: 4.0.3 - confbox: 0.2.4 - defu: 6.1.7 - dotenv: 16.6.1 - exsolve: 1.0.8 - giget: 2.0.0 - jiti: 2.6.1 - ohash: 2.0.11 - pathe: 2.0.3 - perfect-debounce: 1.0.0 - pkg-types: 2.3.0 - rc9: 2.1.2 - optionalDependencies: - magicast: 0.3.5 - c12@3.3.4(magicast@0.3.5): dependencies: chokidar: 5.0.0 @@ -13728,12 +13408,6 @@ snapshots: chrome-trace-event@1.0.4: {} - citty@0.1.6: - dependencies: - consola: 3.4.2 - - citty@0.2.0: {} - cjs-module-lexer@2.2.0: {} class-variance-authority@0.7.1: @@ -13817,8 +13491,6 @@ snapshots: confbox@0.2.4: {} - consola@3.4.2: {} - content-disposition@0.5.4: dependencies: safe-buffer: 5.2.1 @@ -14577,12 +14249,6 @@ snapshots: fs-constants@1.0.0: {} - fs-extra@11.3.0: - dependencies: - graceful-fs: 4.2.11 - jsonfile: 6.2.0 - universalify: 2.0.1 - fs-extra@11.3.5: dependencies: graceful-fs: 4.2.11 @@ -14670,15 +14336,6 @@ snapshots: dependencies: resolve-pkg-maps: 1.0.0 - giget@2.0.0: - dependencies: - citty: 0.1.6 - consola: 3.4.2 - defu: 6.1.7 - node-fetch-native: 1.6.7 - nypm: 0.6.4 - pathe: 2.0.3 - giget@3.2.0: {} glob-parent@5.1.2: @@ -16101,8 +15758,6 @@ snapshots: node-domexception@1.0.0: {} - node-fetch-native@1.6.7: {} - node-fetch@2.7.0: dependencies: whatwg-url: 5.0.0 @@ -16141,12 +15796,6 @@ snapshots: optionalDependencies: next: 15.5.19(@babel/core@7.28.6)(@opentelemetry/api@1.9.1)(react-dom@19.2.7(react@19.2.7))(react@19.2.7) - nypm@0.6.4: - dependencies: - citty: 0.2.0 - pathe: 2.0.3 - tinyexec: 1.0.2 - oauth4webapi@3.8.6: {} object-assign@4.1.1: {} @@ -16326,8 +15975,6 @@ snapshots: peberminta@0.9.0: {} - perfect-debounce@1.0.0: {} - perfect-debounce@2.1.0: {} pg-cloudflare@1.3.0: @@ -16472,8 +16119,6 @@ snapshots: powershell-utils@0.1.0: {} - prettier@3.8.1: {} - pretty-ms@9.3.0: dependencies: parse-ms: 4.0.0 @@ -16484,29 +16129,6 @@ snapshots: clsx: 2.1.1 react: 19.2.7 - prisma-zod-generator@2.1.4(magicast@0.3.5)(prisma@7.8.0(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(magicast@0.3.5)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)(typescript@5.9.3))(typescript@5.9.3)(zod@4.4.3): - dependencies: - '@prisma/client': 7.8.0(prisma@7.8.0(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(magicast@0.3.5)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)(typescript@5.9.3))(typescript@5.9.3) - '@prisma/generator-helper': 7.6.0 - '@prisma/internals': 7.6.0(magicast@0.3.5)(typescript@5.9.3) - '@types/cors': 2.8.19 - '@types/express': 5.0.6 - ajv: 8.20.0 - ajv-formats: 3.0.1(ajv@8.20.0) - cors: 2.8.6 - dotenv: 17.3.1 - express: 5.2.1 - js-yaml: 4.1.1 - node-fetch: 3.3.2 - prettier: 3.8.1 - tslib: 2.8.1 - zod: 4.4.3 - transitivePeerDependencies: - - magicast - - prisma - - supports-color - - typescript - prisma@7.8.0(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(magicast@0.3.5)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)(typescript@5.9.3): dependencies: '@prisma/config': 7.8.0(magicast@0.3.5) @@ -16742,11 +16364,6 @@ snapshots: iconv-lite: 0.7.2 unpipe: 1.0.0 - rc9@2.1.2: - dependencies: - defu: 6.1.7 - destr: 2.0.5 - rc9@3.0.1: dependencies: defu: 6.1.7 @@ -17637,8 +17254,6 @@ snapshots: tinyexec@0.3.2: {} - tinyexec@1.0.2: {} - tinyglobby@0.2.15: dependencies: fdir: 6.5.0(picomatch@4.0.4) diff --git a/scripts/fix-generated-zod-schema.mjs b/scripts/fix-generated-zod-schema.mjs deleted file mode 100644 index b5c29b0dda..0000000000 --- a/scripts/fix-generated-zod-schema.mjs +++ /dev/null @@ -1,47 +0,0 @@ -import { readFileSync, writeFileSync } from "node:fs" -import { resolve } from "node:path" - -// prisma-zod-generator (with `zodImportTarget: "v4"`) emits recursive input -// schemas through a factory that is invoked eagerly: -// -// const __makeSchema_FooWhereInput_schema = () => z.object({ -// AND: z.union([FooWhereInputObjectSchema, FooWhereInputObjectSchema.array()]).optional(), -// get OR(){ return FooWhereInputObjectSchema.array().optional(); }, -// bar: z.union([BarScalarRelationFilterObjectSchema, BarWhereInputObjectSchema]).optional(), -// ... -// }).strict(); -// export const FooWhereInputObjectSchema = __makeSchema_FooWhereInput_schema(); -// export const FooWhereInputObjectZodSchema = __makeSchema_FooWhereInput_schema(); -// -// The factory runs while `FooWhereInputObjectSchema` (and every other object -// schema declared later in the single-file output) is still in its temporal -// dead zone. The generator's own getters do not help here because the eagerly -// invoked `.strict()` reads the object shape immediately, which evaluates those -// getters during the dead zone. The result is -// "ReferenceError: Cannot access 'X' before initialization" at module load -// (see omar-dulaimi/prisma-zod-generator#377). -// -// Wrapping each eager factory call in `z.lazy(...)` defers the entire factory -// (including `.strict()` shape evaluation) until the schema is first used, by -// which point every referenced const has been initialized. `z.lazy` preserves -// the strict-object parsing behaviour. The transform is idempotent because the -// rewritten reference is no longer a call expression. - -const targetPath = resolve(process.argv[2] ?? "generated/schema/index.ts") -const source = readFileSync(targetPath, "utf8") -const lineEnding = source.includes("\r\n") ? "\r\n" : "\n" - -const eagerFactoryCallPattern = /\b(__makeSchema_\w+_schema)\(\)/g -let rewrittenCallCount = 0 - -const withLazyFactories = source.replace(eagerFactoryCallPattern, (_match, factoryName) => { - rewrittenCallCount += 1 - return `z.lazy(${factoryName})` -}) - -const alreadyHasHeader = withLazyFactories.startsWith("// @ts-nocheck") -const output = alreadyHasHeader ? withLazyFactories : `// @ts-nocheck${lineEnding}${withLazyFactories}` - -writeFileSync(targetPath, output) - -console.log(`Wrapped ${rewrittenCallCount} eager schema factory call(s) in z.lazy() in ${targetPath}`)