/* !!! This is code generated by Prisma. Do not edit directly. !!! */ /* eslint-disable */ // biome-ignore-all lint: generated file // @ts-nocheck /* * This file exports the `EventRegistration` model and its related types. * * 🟢 You can import this file directly. */ import type * as runtime from "@prisma/client/runtime/client" import type * as $Enums from "../enums" import type * as Prisma from "../internal/prismaNamespace" /** * Model EventRegistration * */ export type EventRegistrationModel = runtime.Types.Result.DefaultSelection export type AggregateEventRegistration = { _count: EventRegistrationCountAggregateOutputType | null _min: EventRegistrationMinAggregateOutputType | null _max: EventRegistrationMaxAggregateOutputType | null } export type EventRegistrationMinAggregateOutputType = { id: string | null userId: string | null eventId: string | null createdAt: Date | null } export type EventRegistrationMaxAggregateOutputType = { id: string | null userId: string | null eventId: string | null createdAt: Date | null } export type EventRegistrationCountAggregateOutputType = { id: number userId: number eventId: number createdAt: number _all: number } export type EventRegistrationMinAggregateInputType = { id?: true userId?: true eventId?: true createdAt?: true } export type EventRegistrationMaxAggregateInputType = { id?: true userId?: true eventId?: true createdAt?: true } export type EventRegistrationCountAggregateInputType = { id?: true userId?: true eventId?: true createdAt?: true _all?: true } export type EventRegistrationAggregateArgs = { /** * Filter which EventRegistration to aggregate. */ where?: Prisma.EventRegistrationWhereInput /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs} * * Determine the order of EventRegistrations to fetch. */ orderBy?: Prisma.EventRegistrationOrderByWithRelationInput | Prisma.EventRegistrationOrderByWithRelationInput[] /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs} * * Sets the start position */ cursor?: Prisma.EventRegistrationWhereUniqueInput /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs} * * Take `±n` EventRegistrations from the position of the cursor. */ take?: number /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs} * * Skip the first `n` EventRegistrations. */ skip?: number /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs} * * Count returned EventRegistrations **/ _count?: true | EventRegistrationCountAggregateInputType /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs} * * Select which fields to find the minimum value **/ _min?: EventRegistrationMinAggregateInputType /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs} * * Select which fields to find the maximum value **/ _max?: EventRegistrationMaxAggregateInputType } export type GetEventRegistrationAggregateType = { [P in keyof T & keyof AggregateEventRegistration]: P extends '_count' | 'count' ? T[P] extends true ? number : Prisma.GetScalarType : Prisma.GetScalarType } export type EventRegistrationGroupByArgs = { where?: Prisma.EventRegistrationWhereInput orderBy?: Prisma.EventRegistrationOrderByWithAggregationInput | Prisma.EventRegistrationOrderByWithAggregationInput[] by: Prisma.EventRegistrationScalarFieldEnum[] | Prisma.EventRegistrationScalarFieldEnum having?: Prisma.EventRegistrationScalarWhereWithAggregatesInput take?: number skip?: number _count?: EventRegistrationCountAggregateInputType | true _min?: EventRegistrationMinAggregateInputType _max?: EventRegistrationMaxAggregateInputType } export type EventRegistrationGroupByOutputType = { id: string userId: string eventId: string createdAt: Date _count: EventRegistrationCountAggregateOutputType | null _min: EventRegistrationMinAggregateOutputType | null _max: EventRegistrationMaxAggregateOutputType | null } type GetEventRegistrationGroupByPayload = Prisma.PrismaPromise< Array< Prisma.PickEnumerable & { [P in ((keyof T) & (keyof EventRegistrationGroupByOutputType))]: P extends '_count' ? T[P] extends boolean ? number : Prisma.GetScalarType : Prisma.GetScalarType } > > export type EventRegistrationWhereInput = { AND?: Prisma.EventRegistrationWhereInput | Prisma.EventRegistrationWhereInput[] OR?: Prisma.EventRegistrationWhereInput[] NOT?: Prisma.EventRegistrationWhereInput | Prisma.EventRegistrationWhereInput[] id?: Prisma.StringFilter<"EventRegistration"> | string userId?: Prisma.StringFilter<"EventRegistration"> | string eventId?: Prisma.StringFilter<"EventRegistration"> | string createdAt?: Prisma.DateTimeFilter<"EventRegistration"> | Date | string event?: Prisma.XOR user?: Prisma.XOR } export type EventRegistrationOrderByWithRelationInput = { id?: Prisma.SortOrder userId?: Prisma.SortOrder eventId?: Prisma.SortOrder createdAt?: Prisma.SortOrder event?: Prisma.EventOrderByWithRelationInput user?: Prisma.UserOrderByWithRelationInput } export type EventRegistrationWhereUniqueInput = Prisma.AtLeast<{ id?: string userId_eventId?: Prisma.EventRegistrationUserIdEventIdCompoundUniqueInput AND?: Prisma.EventRegistrationWhereInput | Prisma.EventRegistrationWhereInput[] OR?: Prisma.EventRegistrationWhereInput[] NOT?: Prisma.EventRegistrationWhereInput | Prisma.EventRegistrationWhereInput[] userId?: Prisma.StringFilter<"EventRegistration"> | string eventId?: Prisma.StringFilter<"EventRegistration"> | string createdAt?: Prisma.DateTimeFilter<"EventRegistration"> | Date | string event?: Prisma.XOR user?: Prisma.XOR }, "id" | "userId_eventId"> export type EventRegistrationOrderByWithAggregationInput = { id?: Prisma.SortOrder userId?: Prisma.SortOrder eventId?: Prisma.SortOrder createdAt?: Prisma.SortOrder _count?: Prisma.EventRegistrationCountOrderByAggregateInput _max?: Prisma.EventRegistrationMaxOrderByAggregateInput _min?: Prisma.EventRegistrationMinOrderByAggregateInput } export type EventRegistrationScalarWhereWithAggregatesInput = { AND?: Prisma.EventRegistrationScalarWhereWithAggregatesInput | Prisma.EventRegistrationScalarWhereWithAggregatesInput[] OR?: Prisma.EventRegistrationScalarWhereWithAggregatesInput[] NOT?: Prisma.EventRegistrationScalarWhereWithAggregatesInput | Prisma.EventRegistrationScalarWhereWithAggregatesInput[] id?: Prisma.StringWithAggregatesFilter<"EventRegistration"> | string userId?: Prisma.StringWithAggregatesFilter<"EventRegistration"> | string eventId?: Prisma.StringWithAggregatesFilter<"EventRegistration"> | string createdAt?: Prisma.DateTimeWithAggregatesFilter<"EventRegistration"> | Date | string } export type EventRegistrationCreateInput = { id?: string createdAt?: Date | string event: Prisma.EventCreateNestedOneWithoutRegistrationsInput user: Prisma.UserCreateNestedOneWithoutEventRegistrationsInput } export type EventRegistrationUncheckedCreateInput = { id?: string userId: string eventId: string createdAt?: Date | string } export type EventRegistrationUpdateInput = { id?: Prisma.StringFieldUpdateOperationsInput | string createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string event?: Prisma.EventUpdateOneRequiredWithoutRegistrationsNestedInput user?: Prisma.UserUpdateOneRequiredWithoutEventRegistrationsNestedInput } export type EventRegistrationUncheckedUpdateInput = { id?: Prisma.StringFieldUpdateOperationsInput | string userId?: Prisma.StringFieldUpdateOperationsInput | string eventId?: Prisma.StringFieldUpdateOperationsInput | string createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string } export type EventRegistrationCreateManyInput = { id?: string userId: string eventId: string createdAt?: Date | string } export type EventRegistrationUpdateManyMutationInput = { id?: Prisma.StringFieldUpdateOperationsInput | string createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string } export type EventRegistrationUncheckedUpdateManyInput = { id?: Prisma.StringFieldUpdateOperationsInput | string userId?: Prisma.StringFieldUpdateOperationsInput | string eventId?: Prisma.StringFieldUpdateOperationsInput | string createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string } export type EventRegistrationListRelationFilter = { every?: Prisma.EventRegistrationWhereInput some?: Prisma.EventRegistrationWhereInput none?: Prisma.EventRegistrationWhereInput } export type EventRegistrationOrderByRelationAggregateInput = { _count?: Prisma.SortOrder } export type EventRegistrationUserIdEventIdCompoundUniqueInput = { userId: string eventId: string } export type EventRegistrationCountOrderByAggregateInput = { id?: Prisma.SortOrder userId?: Prisma.SortOrder eventId?: Prisma.SortOrder createdAt?: Prisma.SortOrder } export type EventRegistrationMaxOrderByAggregateInput = { id?: Prisma.SortOrder userId?: Prisma.SortOrder eventId?: Prisma.SortOrder createdAt?: Prisma.SortOrder } export type EventRegistrationMinOrderByAggregateInput = { id?: Prisma.SortOrder userId?: Prisma.SortOrder eventId?: Prisma.SortOrder createdAt?: Prisma.SortOrder } export type EventRegistrationCreateNestedManyWithoutUserInput = { create?: Prisma.XOR | Prisma.EventRegistrationCreateWithoutUserInput[] | Prisma.EventRegistrationUncheckedCreateWithoutUserInput[] connectOrCreate?: Prisma.EventRegistrationCreateOrConnectWithoutUserInput | Prisma.EventRegistrationCreateOrConnectWithoutUserInput[] createMany?: Prisma.EventRegistrationCreateManyUserInputEnvelope connect?: Prisma.EventRegistrationWhereUniqueInput | Prisma.EventRegistrationWhereUniqueInput[] } export type EventRegistrationUncheckedCreateNestedManyWithoutUserInput = { create?: Prisma.XOR | Prisma.EventRegistrationCreateWithoutUserInput[] | Prisma.EventRegistrationUncheckedCreateWithoutUserInput[] connectOrCreate?: Prisma.EventRegistrationCreateOrConnectWithoutUserInput | Prisma.EventRegistrationCreateOrConnectWithoutUserInput[] createMany?: Prisma.EventRegistrationCreateManyUserInputEnvelope connect?: Prisma.EventRegistrationWhereUniqueInput | Prisma.EventRegistrationWhereUniqueInput[] } export type EventRegistrationUpdateManyWithoutUserNestedInput = { create?: Prisma.XOR | Prisma.EventRegistrationCreateWithoutUserInput[] | Prisma.EventRegistrationUncheckedCreateWithoutUserInput[] connectOrCreate?: Prisma.EventRegistrationCreateOrConnectWithoutUserInput | Prisma.EventRegistrationCreateOrConnectWithoutUserInput[] upsert?: Prisma.EventRegistrationUpsertWithWhereUniqueWithoutUserInput | Prisma.EventRegistrationUpsertWithWhereUniqueWithoutUserInput[] createMany?: Prisma.EventRegistrationCreateManyUserInputEnvelope set?: Prisma.EventRegistrationWhereUniqueInput | Prisma.EventRegistrationWhereUniqueInput[] disconnect?: Prisma.EventRegistrationWhereUniqueInput | Prisma.EventRegistrationWhereUniqueInput[] delete?: Prisma.EventRegistrationWhereUniqueInput | Prisma.EventRegistrationWhereUniqueInput[] connect?: Prisma.EventRegistrationWhereUniqueInput | Prisma.EventRegistrationWhereUniqueInput[] update?: Prisma.EventRegistrationUpdateWithWhereUniqueWithoutUserInput | Prisma.EventRegistrationUpdateWithWhereUniqueWithoutUserInput[] updateMany?: Prisma.EventRegistrationUpdateManyWithWhereWithoutUserInput | Prisma.EventRegistrationUpdateManyWithWhereWithoutUserInput[] deleteMany?: Prisma.EventRegistrationScalarWhereInput | Prisma.EventRegistrationScalarWhereInput[] } export type EventRegistrationUncheckedUpdateManyWithoutUserNestedInput = { create?: Prisma.XOR | Prisma.EventRegistrationCreateWithoutUserInput[] | Prisma.EventRegistrationUncheckedCreateWithoutUserInput[] connectOrCreate?: Prisma.EventRegistrationCreateOrConnectWithoutUserInput | Prisma.EventRegistrationCreateOrConnectWithoutUserInput[] upsert?: Prisma.EventRegistrationUpsertWithWhereUniqueWithoutUserInput | Prisma.EventRegistrationUpsertWithWhereUniqueWithoutUserInput[] createMany?: Prisma.EventRegistrationCreateManyUserInputEnvelope set?: Prisma.EventRegistrationWhereUniqueInput | Prisma.EventRegistrationWhereUniqueInput[] disconnect?: Prisma.EventRegistrationWhereUniqueInput | Prisma.EventRegistrationWhereUniqueInput[] delete?: Prisma.EventRegistrationWhereUniqueInput | Prisma.EventRegistrationWhereUniqueInput[] connect?: Prisma.EventRegistrationWhereUniqueInput | Prisma.EventRegistrationWhereUniqueInput[] update?: Prisma.EventRegistrationUpdateWithWhereUniqueWithoutUserInput | Prisma.EventRegistrationUpdateWithWhereUniqueWithoutUserInput[] updateMany?: Prisma.EventRegistrationUpdateManyWithWhereWithoutUserInput | Prisma.EventRegistrationUpdateManyWithWhereWithoutUserInput[] deleteMany?: Prisma.EventRegistrationScalarWhereInput | Prisma.EventRegistrationScalarWhereInput[] } export type EventRegistrationCreateNestedManyWithoutEventInput = { create?: Prisma.XOR | Prisma.EventRegistrationCreateWithoutEventInput[] | Prisma.EventRegistrationUncheckedCreateWithoutEventInput[] connectOrCreate?: Prisma.EventRegistrationCreateOrConnectWithoutEventInput | Prisma.EventRegistrationCreateOrConnectWithoutEventInput[] createMany?: Prisma.EventRegistrationCreateManyEventInputEnvelope connect?: Prisma.EventRegistrationWhereUniqueInput | Prisma.EventRegistrationWhereUniqueInput[] } export type EventRegistrationUncheckedCreateNestedManyWithoutEventInput = { create?: Prisma.XOR | Prisma.EventRegistrationCreateWithoutEventInput[] | Prisma.EventRegistrationUncheckedCreateWithoutEventInput[] connectOrCreate?: Prisma.EventRegistrationCreateOrConnectWithoutEventInput | Prisma.EventRegistrationCreateOrConnectWithoutEventInput[] createMany?: Prisma.EventRegistrationCreateManyEventInputEnvelope connect?: Prisma.EventRegistrationWhereUniqueInput | Prisma.EventRegistrationWhereUniqueInput[] } export type EventRegistrationUpdateManyWithoutEventNestedInput = { create?: Prisma.XOR | Prisma.EventRegistrationCreateWithoutEventInput[] | Prisma.EventRegistrationUncheckedCreateWithoutEventInput[] connectOrCreate?: Prisma.EventRegistrationCreateOrConnectWithoutEventInput | Prisma.EventRegistrationCreateOrConnectWithoutEventInput[] upsert?: Prisma.EventRegistrationUpsertWithWhereUniqueWithoutEventInput | Prisma.EventRegistrationUpsertWithWhereUniqueWithoutEventInput[] createMany?: Prisma.EventRegistrationCreateManyEventInputEnvelope set?: Prisma.EventRegistrationWhereUniqueInput | Prisma.EventRegistrationWhereUniqueInput[] disconnect?: Prisma.EventRegistrationWhereUniqueInput | Prisma.EventRegistrationWhereUniqueInput[] delete?: Prisma.EventRegistrationWhereUniqueInput | Prisma.EventRegistrationWhereUniqueInput[] connect?: Prisma.EventRegistrationWhereUniqueInput | Prisma.EventRegistrationWhereUniqueInput[] update?: Prisma.EventRegistrationUpdateWithWhereUniqueWithoutEventInput | Prisma.EventRegistrationUpdateWithWhereUniqueWithoutEventInput[] updateMany?: Prisma.EventRegistrationUpdateManyWithWhereWithoutEventInput | Prisma.EventRegistrationUpdateManyWithWhereWithoutEventInput[] deleteMany?: Prisma.EventRegistrationScalarWhereInput | Prisma.EventRegistrationScalarWhereInput[] } export type EventRegistrationUncheckedUpdateManyWithoutEventNestedInput = { create?: Prisma.XOR | Prisma.EventRegistrationCreateWithoutEventInput[] | Prisma.EventRegistrationUncheckedCreateWithoutEventInput[] connectOrCreate?: Prisma.EventRegistrationCreateOrConnectWithoutEventInput | Prisma.EventRegistrationCreateOrConnectWithoutEventInput[] upsert?: Prisma.EventRegistrationUpsertWithWhereUniqueWithoutEventInput | Prisma.EventRegistrationUpsertWithWhereUniqueWithoutEventInput[] createMany?: Prisma.EventRegistrationCreateManyEventInputEnvelope set?: Prisma.EventRegistrationWhereUniqueInput | Prisma.EventRegistrationWhereUniqueInput[] disconnect?: Prisma.EventRegistrationWhereUniqueInput | Prisma.EventRegistrationWhereUniqueInput[] delete?: Prisma.EventRegistrationWhereUniqueInput | Prisma.EventRegistrationWhereUniqueInput[] connect?: Prisma.EventRegistrationWhereUniqueInput | Prisma.EventRegistrationWhereUniqueInput[] update?: Prisma.EventRegistrationUpdateWithWhereUniqueWithoutEventInput | Prisma.EventRegistrationUpdateWithWhereUniqueWithoutEventInput[] updateMany?: Prisma.EventRegistrationUpdateManyWithWhereWithoutEventInput | Prisma.EventRegistrationUpdateManyWithWhereWithoutEventInput[] deleteMany?: Prisma.EventRegistrationScalarWhereInput | Prisma.EventRegistrationScalarWhereInput[] } export type EventRegistrationCreateWithoutUserInput = { id?: string createdAt?: Date | string event: Prisma.EventCreateNestedOneWithoutRegistrationsInput } export type EventRegistrationUncheckedCreateWithoutUserInput = { id?: string eventId: string createdAt?: Date | string } export type EventRegistrationCreateOrConnectWithoutUserInput = { where: Prisma.EventRegistrationWhereUniqueInput create: Prisma.XOR } export type EventRegistrationCreateManyUserInputEnvelope = { data: Prisma.EventRegistrationCreateManyUserInput | Prisma.EventRegistrationCreateManyUserInput[] skipDuplicates?: boolean } export type EventRegistrationUpsertWithWhereUniqueWithoutUserInput = { where: Prisma.EventRegistrationWhereUniqueInput update: Prisma.XOR create: Prisma.XOR } export type EventRegistrationUpdateWithWhereUniqueWithoutUserInput = { where: Prisma.EventRegistrationWhereUniqueInput data: Prisma.XOR } export type EventRegistrationUpdateManyWithWhereWithoutUserInput = { where: Prisma.EventRegistrationScalarWhereInput data: Prisma.XOR } export type EventRegistrationScalarWhereInput = { AND?: Prisma.EventRegistrationScalarWhereInput | Prisma.EventRegistrationScalarWhereInput[] OR?: Prisma.EventRegistrationScalarWhereInput[] NOT?: Prisma.EventRegistrationScalarWhereInput | Prisma.EventRegistrationScalarWhereInput[] id?: Prisma.StringFilter<"EventRegistration"> | string userId?: Prisma.StringFilter<"EventRegistration"> | string eventId?: Prisma.StringFilter<"EventRegistration"> | string createdAt?: Prisma.DateTimeFilter<"EventRegistration"> | Date | string } export type EventRegistrationCreateWithoutEventInput = { id?: string createdAt?: Date | string user: Prisma.UserCreateNestedOneWithoutEventRegistrationsInput } export type EventRegistrationUncheckedCreateWithoutEventInput = { id?: string userId: string createdAt?: Date | string } export type EventRegistrationCreateOrConnectWithoutEventInput = { where: Prisma.EventRegistrationWhereUniqueInput create: Prisma.XOR } export type EventRegistrationCreateManyEventInputEnvelope = { data: Prisma.EventRegistrationCreateManyEventInput | Prisma.EventRegistrationCreateManyEventInput[] skipDuplicates?: boolean } export type EventRegistrationUpsertWithWhereUniqueWithoutEventInput = { where: Prisma.EventRegistrationWhereUniqueInput update: Prisma.XOR create: Prisma.XOR } export type EventRegistrationUpdateWithWhereUniqueWithoutEventInput = { where: Prisma.EventRegistrationWhereUniqueInput data: Prisma.XOR } export type EventRegistrationUpdateManyWithWhereWithoutEventInput = { where: Prisma.EventRegistrationScalarWhereInput data: Prisma.XOR } export type EventRegistrationCreateManyUserInput = { id?: string eventId: string createdAt?: Date | string } export type EventRegistrationUpdateWithoutUserInput = { id?: Prisma.StringFieldUpdateOperationsInput | string createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string event?: Prisma.EventUpdateOneRequiredWithoutRegistrationsNestedInput } export type EventRegistrationUncheckedUpdateWithoutUserInput = { id?: Prisma.StringFieldUpdateOperationsInput | string eventId?: Prisma.StringFieldUpdateOperationsInput | string createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string } export type EventRegistrationUncheckedUpdateManyWithoutUserInput = { id?: Prisma.StringFieldUpdateOperationsInput | string eventId?: Prisma.StringFieldUpdateOperationsInput | string createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string } export type EventRegistrationCreateManyEventInput = { id?: string userId: string createdAt?: Date | string } export type EventRegistrationUpdateWithoutEventInput = { id?: Prisma.StringFieldUpdateOperationsInput | string createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string user?: Prisma.UserUpdateOneRequiredWithoutEventRegistrationsNestedInput } export type EventRegistrationUncheckedUpdateWithoutEventInput = { id?: Prisma.StringFieldUpdateOperationsInput | string userId?: Prisma.StringFieldUpdateOperationsInput | string createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string } export type EventRegistrationUncheckedUpdateManyWithoutEventInput = { id?: Prisma.StringFieldUpdateOperationsInput | string userId?: Prisma.StringFieldUpdateOperationsInput | string createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string } export type EventRegistrationSelect = runtime.Types.Extensions.GetSelect<{ id?: boolean userId?: boolean eventId?: boolean createdAt?: boolean event?: boolean | Prisma.EventDefaultArgs user?: boolean | Prisma.UserDefaultArgs }, ExtArgs["result"]["eventRegistration"]> export type EventRegistrationSelectCreateManyAndReturn = runtime.Types.Extensions.GetSelect<{ id?: boolean userId?: boolean eventId?: boolean createdAt?: boolean event?: boolean | Prisma.EventDefaultArgs user?: boolean | Prisma.UserDefaultArgs }, ExtArgs["result"]["eventRegistration"]> export type EventRegistrationSelectUpdateManyAndReturn = runtime.Types.Extensions.GetSelect<{ id?: boolean userId?: boolean eventId?: boolean createdAt?: boolean event?: boolean | Prisma.EventDefaultArgs user?: boolean | Prisma.UserDefaultArgs }, ExtArgs["result"]["eventRegistration"]> export type EventRegistrationSelectScalar = { id?: boolean userId?: boolean eventId?: boolean createdAt?: boolean } export type EventRegistrationOmit = runtime.Types.Extensions.GetOmit<"id" | "userId" | "eventId" | "createdAt", ExtArgs["result"]["eventRegistration"]> export type EventRegistrationInclude = { event?: boolean | Prisma.EventDefaultArgs user?: boolean | Prisma.UserDefaultArgs } export type EventRegistrationIncludeCreateManyAndReturn = { event?: boolean | Prisma.EventDefaultArgs user?: boolean | Prisma.UserDefaultArgs } export type EventRegistrationIncludeUpdateManyAndReturn = { event?: boolean | Prisma.EventDefaultArgs user?: boolean | Prisma.UserDefaultArgs } export type $EventRegistrationPayload = { name: "EventRegistration" objects: { event: Prisma.$EventPayload user: Prisma.$UserPayload } scalars: runtime.Types.Extensions.GetPayloadResult<{ id: string userId: string eventId: string createdAt: Date }, ExtArgs["result"]["eventRegistration"]> composites: {} } export type EventRegistrationGetPayload = runtime.Types.Result.GetResult export type EventRegistrationCountArgs = Omit & { select?: EventRegistrationCountAggregateInputType | true } export interface EventRegistrationDelegate { [K: symbol]: { types: Prisma.TypeMap['model']['EventRegistration'], meta: { name: 'EventRegistration' } } /** * Find zero or one EventRegistration that matches the filter. * @param {EventRegistrationFindUniqueArgs} args - Arguments to find a EventRegistration * @example * // Get one EventRegistration * const eventRegistration = await prisma.eventRegistration.findUnique({ * where: { * // ... provide filter here * } * }) */ findUnique(args: Prisma.SelectSubset>): Prisma.Prisma__EventRegistrationClient, T, "findUnique", GlobalOmitOptions> | null, null, ExtArgs, GlobalOmitOptions> /** * Find one EventRegistration that matches the filter or throw an error with `error.code='P2025'` * if no matches were found. * @param {EventRegistrationFindUniqueOrThrowArgs} args - Arguments to find a EventRegistration * @example * // Get one EventRegistration * const eventRegistration = await prisma.eventRegistration.findUniqueOrThrow({ * where: { * // ... provide filter here * } * }) */ findUniqueOrThrow(args: Prisma.SelectSubset>): Prisma.Prisma__EventRegistrationClient, T, "findUniqueOrThrow", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions> /** * Find the first EventRegistration that matches the filter. * Note, that providing `undefined` is treated as the value not being there. * Read more here: https://pris.ly/d/null-undefined * @param {EventRegistrationFindFirstArgs} args - Arguments to find a EventRegistration * @example * // Get one EventRegistration * const eventRegistration = await prisma.eventRegistration.findFirst({ * where: { * // ... provide filter here * } * }) */ findFirst(args?: Prisma.SelectSubset>): Prisma.Prisma__EventRegistrationClient, T, "findFirst", GlobalOmitOptions> | null, null, ExtArgs, GlobalOmitOptions> /** * Find the first EventRegistration that matches the filter or * throw `PrismaKnownClientError` with `P2025` code if no matches were found. * Note, that providing `undefined` is treated as the value not being there. * Read more here: https://pris.ly/d/null-undefined * @param {EventRegistrationFindFirstOrThrowArgs} args - Arguments to find a EventRegistration * @example * // Get one EventRegistration * const eventRegistration = await prisma.eventRegistration.findFirstOrThrow({ * where: { * // ... provide filter here * } * }) */ findFirstOrThrow(args?: Prisma.SelectSubset>): Prisma.Prisma__EventRegistrationClient, T, "findFirstOrThrow", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions> /** * Find zero or more EventRegistrations that matches the filter. * Note, that providing `undefined` is treated as the value not being there. * Read more here: https://pris.ly/d/null-undefined * @param {EventRegistrationFindManyArgs} args - Arguments to filter and select certain fields only. * @example * // Get all EventRegistrations * const eventRegistrations = await prisma.eventRegistration.findMany() * * // Get first 10 EventRegistrations * const eventRegistrations = await prisma.eventRegistration.findMany({ take: 10 }) * * // Only select the `id` * const eventRegistrationWithIdOnly = await prisma.eventRegistration.findMany({ select: { id: true } }) * */ findMany(args?: Prisma.SelectSubset>): Prisma.PrismaPromise, T, "findMany", GlobalOmitOptions>> /** * Create a EventRegistration. * @param {EventRegistrationCreateArgs} args - Arguments to create a EventRegistration. * @example * // Create one EventRegistration * const EventRegistration = await prisma.eventRegistration.create({ * data: { * // ... data to create a EventRegistration * } * }) * */ create(args: Prisma.SelectSubset>): Prisma.Prisma__EventRegistrationClient, T, "create", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions> /** * Create many EventRegistrations. * @param {EventRegistrationCreateManyArgs} args - Arguments to create many EventRegistrations. * @example * // Create many EventRegistrations * const eventRegistration = await prisma.eventRegistration.createMany({ * data: [ * // ... provide data here * ] * }) * */ createMany(args?: Prisma.SelectSubset>): Prisma.PrismaPromise /** * Create many EventRegistrations and returns the data saved in the database. * @param {EventRegistrationCreateManyAndReturnArgs} args - Arguments to create many EventRegistrations. * @example * // Create many EventRegistrations * const eventRegistration = await prisma.eventRegistration.createManyAndReturn({ * data: [ * // ... provide data here * ] * }) * * // Create many EventRegistrations and only return the `id` * const eventRegistrationWithIdOnly = await prisma.eventRegistration.createManyAndReturn({ * select: { id: true }, * data: [ * // ... provide data here * ] * }) * Note, that providing `undefined` is treated as the value not being there. * Read more here: https://pris.ly/d/null-undefined * */ createManyAndReturn(args?: Prisma.SelectSubset>): Prisma.PrismaPromise, T, "createManyAndReturn", GlobalOmitOptions>> /** * Delete a EventRegistration. * @param {EventRegistrationDeleteArgs} args - Arguments to delete one EventRegistration. * @example * // Delete one EventRegistration * const EventRegistration = await prisma.eventRegistration.delete({ * where: { * // ... filter to delete one EventRegistration * } * }) * */ delete(args: Prisma.SelectSubset>): Prisma.Prisma__EventRegistrationClient, T, "delete", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions> /** * Update one EventRegistration. * @param {EventRegistrationUpdateArgs} args - Arguments to update one EventRegistration. * @example * // Update one EventRegistration * const eventRegistration = await prisma.eventRegistration.update({ * where: { * // ... provide filter here * }, * data: { * // ... provide data here * } * }) * */ update(args: Prisma.SelectSubset>): Prisma.Prisma__EventRegistrationClient, T, "update", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions> /** * Delete zero or more EventRegistrations. * @param {EventRegistrationDeleteManyArgs} args - Arguments to filter EventRegistrations to delete. * @example * // Delete a few EventRegistrations * const { count } = await prisma.eventRegistration.deleteMany({ * where: { * // ... provide filter here * } * }) * */ deleteMany(args?: Prisma.SelectSubset>): Prisma.PrismaPromise /** * Update zero or more EventRegistrations. * Note, that providing `undefined` is treated as the value not being there. * Read more here: https://pris.ly/d/null-undefined * @param {EventRegistrationUpdateManyArgs} args - Arguments to update one or more rows. * @example * // Update many EventRegistrations * const eventRegistration = await prisma.eventRegistration.updateMany({ * where: { * // ... provide filter here * }, * data: { * // ... provide data here * } * }) * */ updateMany(args: Prisma.SelectSubset>): Prisma.PrismaPromise /** * Update zero or more EventRegistrations and returns the data updated in the database. * @param {EventRegistrationUpdateManyAndReturnArgs} args - Arguments to update many EventRegistrations. * @example * // Update many EventRegistrations * const eventRegistration = await prisma.eventRegistration.updateManyAndReturn({ * where: { * // ... provide filter here * }, * data: [ * // ... provide data here * ] * }) * * // Update zero or more EventRegistrations and only return the `id` * const eventRegistrationWithIdOnly = await prisma.eventRegistration.updateManyAndReturn({ * select: { id: true }, * where: { * // ... provide filter here * }, * data: [ * // ... provide data here * ] * }) * Note, that providing `undefined` is treated as the value not being there. * Read more here: https://pris.ly/d/null-undefined * */ updateManyAndReturn(args: Prisma.SelectSubset>): Prisma.PrismaPromise, T, "updateManyAndReturn", GlobalOmitOptions>> /** * Create or update one EventRegistration. * @param {EventRegistrationUpsertArgs} args - Arguments to update or create a EventRegistration. * @example * // Update or create a EventRegistration * const eventRegistration = await prisma.eventRegistration.upsert({ * create: { * // ... data to create a EventRegistration * }, * update: { * // ... in case it already exists, update * }, * where: { * // ... the filter for the EventRegistration we want to update * } * }) */ upsert(args: Prisma.SelectSubset>): Prisma.Prisma__EventRegistrationClient, T, "upsert", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions> /** * Count the number of EventRegistrations. * Note, that providing `undefined` is treated as the value not being there. * Read more here: https://pris.ly/d/null-undefined * @param {EventRegistrationCountArgs} args - Arguments to filter EventRegistrations to count. * @example * // Count the number of EventRegistrations * const count = await prisma.eventRegistration.count({ * where: { * // ... the filter for the EventRegistrations we want to count * } * }) **/ count( args?: Prisma.Subset, ): Prisma.PrismaPromise< T extends runtime.Types.Utils.Record<'select', any> ? T['select'] extends true ? number : Prisma.GetScalarType : number > /** * Allows you to perform aggregations operations on a EventRegistration. * Note, that providing `undefined` is treated as the value not being there. * Read more here: https://pris.ly/d/null-undefined * @param {EventRegistrationAggregateArgs} args - Select which aggregations you would like to apply and on what fields. * @example * // Ordered by age ascending * // Where email contains prisma.io * // Limited to the 10 users * const aggregations = await prisma.user.aggregate({ * _avg: { * age: true, * }, * where: { * email: { * contains: "prisma.io", * }, * }, * orderBy: { * age: "asc", * }, * take: 10, * }) **/ aggregate(args: Prisma.Subset): Prisma.PrismaPromise> /** * Group by EventRegistration. * Note, that providing `undefined` is treated as the value not being there. * Read more here: https://pris.ly/d/null-undefined * @param {EventRegistrationGroupByArgs} args - Group by arguments. * @example * // Group by city, order by createdAt, get count * const result = await prisma.user.groupBy({ * by: ['city', 'createdAt'], * orderBy: { * createdAt: true * }, * _count: { * _all: true * }, * }) * **/ groupBy< T extends EventRegistrationGroupByArgs, HasSelectOrTake extends Prisma.Or< Prisma.Extends<'skip', Prisma.Keys>, Prisma.Extends<'take', Prisma.Keys> >, OrderByArg extends Prisma.True extends HasSelectOrTake ? { orderBy: EventRegistrationGroupByArgs['orderBy'] } : { orderBy?: EventRegistrationGroupByArgs['orderBy'] }, OrderFields extends Prisma.ExcludeUnderscoreKeys>>, ByFields extends Prisma.MaybeTupleToUnion, ByValid extends Prisma.Has, HavingFields extends Prisma.GetHavingFields, HavingValid extends Prisma.Has, ByEmpty extends T['by'] extends never[] ? Prisma.True : Prisma.False, InputErrors extends ByEmpty extends Prisma.True ? `Error: "by" must not be empty.` : HavingValid extends Prisma.False ? { [P in HavingFields]: P extends ByFields ? never : P extends string ? `Error: Field "${P}" used in "having" needs to be provided in "by".` : [ Error, 'Field ', P, ` in "having" needs to be provided in "by"`, ] }[HavingFields] : 'take' extends Prisma.Keys ? 'orderBy' extends Prisma.Keys ? ByValid extends Prisma.True ? {} : { [P in OrderFields]: P extends ByFields ? never : `Error: Field "${P}" in "orderBy" needs to be provided in "by"` }[OrderFields] : 'Error: If you provide "take", you also need to provide "orderBy"' : 'skip' extends Prisma.Keys ? 'orderBy' extends Prisma.Keys ? ByValid extends Prisma.True ? {} : { [P in OrderFields]: P extends ByFields ? never : `Error: Field "${P}" in "orderBy" needs to be provided in "by"` }[OrderFields] : 'Error: If you provide "skip", you also need to provide "orderBy"' : ByValid extends Prisma.True ? {} : { [P in OrderFields]: P extends ByFields ? never : `Error: Field "${P}" in "orderBy" needs to be provided in "by"` }[OrderFields] >(args: Prisma.SubsetIntersection & InputErrors): {} extends InputErrors ? GetEventRegistrationGroupByPayload : Prisma.PrismaPromise /** * Fields of the EventRegistration model */ readonly fields: EventRegistrationFieldRefs; } /** * The delegate class that acts as a "Promise-like" for EventRegistration. * Why is this prefixed with `Prisma__`? * Because we want to prevent naming conflicts as mentioned in * https://github.com/prisma/prisma-client-js/issues/707 */ export interface Prisma__EventRegistrationClient extends Prisma.PrismaPromise { readonly [Symbol.toStringTag]: "PrismaPromise" event = {}>(args?: Prisma.Subset>): Prisma.Prisma__EventClient, T, "findUniqueOrThrow", GlobalOmitOptions> | Null, Null, ExtArgs, GlobalOmitOptions> user = {}>(args?: Prisma.Subset>): Prisma.Prisma__UserClient, T, "findUniqueOrThrow", GlobalOmitOptions> | Null, Null, ExtArgs, GlobalOmitOptions> /** * Attaches callbacks for the resolution and/or rejection of the Promise. * @param onfulfilled The callback to execute when the Promise is resolved. * @param onrejected The callback to execute when the Promise is rejected. * @returns A Promise for the completion of which ever callback is executed. */ then(onfulfilled?: ((value: T) => TResult1 | PromiseLike) | undefined | null, onrejected?: ((reason: any) => TResult2 | PromiseLike) | undefined | null): runtime.Types.Utils.JsPromise /** * Attaches a callback for only the rejection of the Promise. * @param onrejected The callback to execute when the Promise is rejected. * @returns A Promise for the completion of the callback. */ catch(onrejected?: ((reason: any) => TResult | PromiseLike) | undefined | null): runtime.Types.Utils.JsPromise /** * Attaches a callback that is invoked when the Promise is settled (fulfilled or rejected). The * resolved value cannot be modified from the callback. * @param onfinally The callback to execute when the Promise is settled (fulfilled or rejected). * @returns A Promise for the completion of the callback. */ finally(onfinally?: (() => void) | undefined | null): runtime.Types.Utils.JsPromise } /** * Fields of the EventRegistration model */ export interface EventRegistrationFieldRefs { readonly id: Prisma.FieldRef<"EventRegistration", 'String'> readonly userId: Prisma.FieldRef<"EventRegistration", 'String'> readonly eventId: Prisma.FieldRef<"EventRegistration", 'String'> readonly createdAt: Prisma.FieldRef<"EventRegistration", 'DateTime'> } // Custom InputTypes /** * EventRegistration findUnique */ export type EventRegistrationFindUniqueArgs = { /** * Select specific fields to fetch from the EventRegistration */ select?: Prisma.EventRegistrationSelect | null /** * Omit specific fields from the EventRegistration */ omit?: Prisma.EventRegistrationOmit | null /** * Choose, which related nodes to fetch as well */ include?: Prisma.EventRegistrationInclude | null /** * Filter, which EventRegistration to fetch. */ where: Prisma.EventRegistrationWhereUniqueInput } /** * EventRegistration findUniqueOrThrow */ export type EventRegistrationFindUniqueOrThrowArgs = { /** * Select specific fields to fetch from the EventRegistration */ select?: Prisma.EventRegistrationSelect | null /** * Omit specific fields from the EventRegistration */ omit?: Prisma.EventRegistrationOmit | null /** * Choose, which related nodes to fetch as well */ include?: Prisma.EventRegistrationInclude | null /** * Filter, which EventRegistration to fetch. */ where: Prisma.EventRegistrationWhereUniqueInput } /** * EventRegistration findFirst */ export type EventRegistrationFindFirstArgs = { /** * Select specific fields to fetch from the EventRegistration */ select?: Prisma.EventRegistrationSelect | null /** * Omit specific fields from the EventRegistration */ omit?: Prisma.EventRegistrationOmit | null /** * Choose, which related nodes to fetch as well */ include?: Prisma.EventRegistrationInclude | null /** * Filter, which EventRegistration to fetch. */ where?: Prisma.EventRegistrationWhereInput /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs} * * Determine the order of EventRegistrations to fetch. */ orderBy?: Prisma.EventRegistrationOrderByWithRelationInput | Prisma.EventRegistrationOrderByWithRelationInput[] /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs} * * Sets the position for searching for EventRegistrations. */ cursor?: Prisma.EventRegistrationWhereUniqueInput /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs} * * Take `±n` EventRegistrations from the position of the cursor. */ take?: number /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs} * * Skip the first `n` EventRegistrations. */ skip?: number /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/distinct Distinct Docs} * * Filter by unique combinations of EventRegistrations. */ distinct?: Prisma.EventRegistrationScalarFieldEnum | Prisma.EventRegistrationScalarFieldEnum[] } /** * EventRegistration findFirstOrThrow */ export type EventRegistrationFindFirstOrThrowArgs = { /** * Select specific fields to fetch from the EventRegistration */ select?: Prisma.EventRegistrationSelect | null /** * Omit specific fields from the EventRegistration */ omit?: Prisma.EventRegistrationOmit | null /** * Choose, which related nodes to fetch as well */ include?: Prisma.EventRegistrationInclude | null /** * Filter, which EventRegistration to fetch. */ where?: Prisma.EventRegistrationWhereInput /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs} * * Determine the order of EventRegistrations to fetch. */ orderBy?: Prisma.EventRegistrationOrderByWithRelationInput | Prisma.EventRegistrationOrderByWithRelationInput[] /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs} * * Sets the position for searching for EventRegistrations. */ cursor?: Prisma.EventRegistrationWhereUniqueInput /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs} * * Take `±n` EventRegistrations from the position of the cursor. */ take?: number /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs} * * Skip the first `n` EventRegistrations. */ skip?: number /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/distinct Distinct Docs} * * Filter by unique combinations of EventRegistrations. */ distinct?: Prisma.EventRegistrationScalarFieldEnum | Prisma.EventRegistrationScalarFieldEnum[] } /** * EventRegistration findMany */ export type EventRegistrationFindManyArgs = { /** * Select specific fields to fetch from the EventRegistration */ select?: Prisma.EventRegistrationSelect | null /** * Omit specific fields from the EventRegistration */ omit?: Prisma.EventRegistrationOmit | null /** * Choose, which related nodes to fetch as well */ include?: Prisma.EventRegistrationInclude | null /** * Filter, which EventRegistrations to fetch. */ where?: Prisma.EventRegistrationWhereInput /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs} * * Determine the order of EventRegistrations to fetch. */ orderBy?: Prisma.EventRegistrationOrderByWithRelationInput | Prisma.EventRegistrationOrderByWithRelationInput[] /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs} * * Sets the position for listing EventRegistrations. */ cursor?: Prisma.EventRegistrationWhereUniqueInput /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs} * * Take `±n` EventRegistrations from the position of the cursor. */ take?: number /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs} * * Skip the first `n` EventRegistrations. */ skip?: number distinct?: Prisma.EventRegistrationScalarFieldEnum | Prisma.EventRegistrationScalarFieldEnum[] } /** * EventRegistration create */ export type EventRegistrationCreateArgs = { /** * Select specific fields to fetch from the EventRegistration */ select?: Prisma.EventRegistrationSelect | null /** * Omit specific fields from the EventRegistration */ omit?: Prisma.EventRegistrationOmit | null /** * Choose, which related nodes to fetch as well */ include?: Prisma.EventRegistrationInclude | null /** * The data needed to create a EventRegistration. */ data: Prisma.XOR } /** * EventRegistration createMany */ export type EventRegistrationCreateManyArgs = { /** * The data used to create many EventRegistrations. */ data: Prisma.EventRegistrationCreateManyInput | Prisma.EventRegistrationCreateManyInput[] skipDuplicates?: boolean } /** * EventRegistration createManyAndReturn */ export type EventRegistrationCreateManyAndReturnArgs = { /** * Select specific fields to fetch from the EventRegistration */ select?: Prisma.EventRegistrationSelectCreateManyAndReturn | null /** * Omit specific fields from the EventRegistration */ omit?: Prisma.EventRegistrationOmit | null /** * The data used to create many EventRegistrations. */ data: Prisma.EventRegistrationCreateManyInput | Prisma.EventRegistrationCreateManyInput[] skipDuplicates?: boolean /** * Choose, which related nodes to fetch as well */ include?: Prisma.EventRegistrationIncludeCreateManyAndReturn | null } /** * EventRegistration update */ export type EventRegistrationUpdateArgs = { /** * Select specific fields to fetch from the EventRegistration */ select?: Prisma.EventRegistrationSelect | null /** * Omit specific fields from the EventRegistration */ omit?: Prisma.EventRegistrationOmit | null /** * Choose, which related nodes to fetch as well */ include?: Prisma.EventRegistrationInclude | null /** * The data needed to update a EventRegistration. */ data: Prisma.XOR /** * Choose, which EventRegistration to update. */ where: Prisma.EventRegistrationWhereUniqueInput } /** * EventRegistration updateMany */ export type EventRegistrationUpdateManyArgs = { /** * The data used to update EventRegistrations. */ data: Prisma.XOR /** * Filter which EventRegistrations to update */ where?: Prisma.EventRegistrationWhereInput /** * Limit how many EventRegistrations to update. */ limit?: number } /** * EventRegistration updateManyAndReturn */ export type EventRegistrationUpdateManyAndReturnArgs = { /** * Select specific fields to fetch from the EventRegistration */ select?: Prisma.EventRegistrationSelectUpdateManyAndReturn | null /** * Omit specific fields from the EventRegistration */ omit?: Prisma.EventRegistrationOmit | null /** * The data used to update EventRegistrations. */ data: Prisma.XOR /** * Filter which EventRegistrations to update */ where?: Prisma.EventRegistrationWhereInput /** * Limit how many EventRegistrations to update. */ limit?: number /** * Choose, which related nodes to fetch as well */ include?: Prisma.EventRegistrationIncludeUpdateManyAndReturn | null } /** * EventRegistration upsert */ export type EventRegistrationUpsertArgs = { /** * Select specific fields to fetch from the EventRegistration */ select?: Prisma.EventRegistrationSelect | null /** * Omit specific fields from the EventRegistration */ omit?: Prisma.EventRegistrationOmit | null /** * Choose, which related nodes to fetch as well */ include?: Prisma.EventRegistrationInclude | null /** * The filter to search for the EventRegistration to update in case it exists. */ where: Prisma.EventRegistrationWhereUniqueInput /** * In case the EventRegistration found by the `where` argument doesn't exist, create a new EventRegistration with this data. */ create: Prisma.XOR /** * In case the EventRegistration was found with the provided `where` argument, update it with this data. */ update: Prisma.XOR } /** * EventRegistration delete */ export type EventRegistrationDeleteArgs = { /** * Select specific fields to fetch from the EventRegistration */ select?: Prisma.EventRegistrationSelect | null /** * Omit specific fields from the EventRegistration */ omit?: Prisma.EventRegistrationOmit | null /** * Choose, which related nodes to fetch as well */ include?: Prisma.EventRegistrationInclude | null /** * Filter which EventRegistration to delete. */ where: Prisma.EventRegistrationWhereUniqueInput } /** * EventRegistration deleteMany */ export type EventRegistrationDeleteManyArgs = { /** * Filter which EventRegistrations to delete */ where?: Prisma.EventRegistrationWhereInput /** * Limit how many EventRegistrations to delete. */ limit?: number } /** * EventRegistration without action */ export type EventRegistrationDefaultArgs = { /** * Select specific fields to fetch from the EventRegistration */ select?: Prisma.EventRegistrationSelect | null /** * Omit specific fields from the EventRegistration */ omit?: Prisma.EventRegistrationOmit | null /** * Choose, which related nodes to fetch as well */ include?: Prisma.EventRegistrationInclude | null }