/* !!! This is code generated by Prisma. Do not edit directly. !!! */ /* eslint-disable */ // biome-ignore-all lint: generated file // @ts-nocheck /* * This file exports the `trips` 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 trips * */ export type tripsModel = runtime.Types.Result.DefaultSelection export type AggregateTrips = { _count: TripsCountAggregateOutputType | null _avg: TripsAvgAggregateOutputType | null _sum: TripsSumAggregateOutputType | null _min: TripsMinAggregateOutputType | null _max: TripsMaxAggregateOutputType | null } export type TripsAvgAggregateOutputType = { id: number | null user_id: number | null is_archived: number | null reminder_days: number | null } export type TripsSumAggregateOutputType = { id: number | null user_id: number | null is_archived: number | null reminder_days: number | null } export type TripsMinAggregateOutputType = { id: number | null user_id: number | null title: string | null description: string | null start_date: string | null end_date: string | null currency: string | null cover_image: string | null is_archived: number | null reminder_days: number | null created_at: Date | null updated_at: Date | null } export type TripsMaxAggregateOutputType = { id: number | null user_id: number | null title: string | null description: string | null start_date: string | null end_date: string | null currency: string | null cover_image: string | null is_archived: number | null reminder_days: number | null created_at: Date | null updated_at: Date | null } export type TripsCountAggregateOutputType = { id: number user_id: number title: number description: number start_date: number end_date: number currency: number cover_image: number is_archived: number reminder_days: number created_at: number updated_at: number _all: number } export type TripsAvgAggregateInputType = { id?: true user_id?: true is_archived?: true reminder_days?: true } export type TripsSumAggregateInputType = { id?: true user_id?: true is_archived?: true reminder_days?: true } export type TripsMinAggregateInputType = { id?: true user_id?: true title?: true description?: true start_date?: true end_date?: true currency?: true cover_image?: true is_archived?: true reminder_days?: true created_at?: true updated_at?: true } export type TripsMaxAggregateInputType = { id?: true user_id?: true title?: true description?: true start_date?: true end_date?: true currency?: true cover_image?: true is_archived?: true reminder_days?: true created_at?: true updated_at?: true } export type TripsCountAggregateInputType = { id?: true user_id?: true title?: true description?: true start_date?: true end_date?: true currency?: true cover_image?: true is_archived?: true reminder_days?: true created_at?: true updated_at?: true _all?: true } export type TripsAggregateArgs = { /** * Filter which trips to aggregate. */ where?: Prisma.tripsWhereInput /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs} * * Determine the order of trips to fetch. */ orderBy?: Prisma.tripsOrderByWithRelationInput | Prisma.tripsOrderByWithRelationInput[] /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs} * * Sets the start position */ cursor?: Prisma.tripsWhereUniqueInput /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs} * * Take `±n` trips 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` trips. */ skip?: number /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs} * * Count returned trips **/ _count?: true | TripsCountAggregateInputType /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs} * * Select which fields to average **/ _avg?: TripsAvgAggregateInputType /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs} * * Select which fields to sum **/ _sum?: TripsSumAggregateInputType /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs} * * Select which fields to find the minimum value **/ _min?: TripsMinAggregateInputType /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs} * * Select which fields to find the maximum value **/ _max?: TripsMaxAggregateInputType } export type GetTripsAggregateType = { [P in keyof T & keyof AggregateTrips]: P extends '_count' | 'count' ? T[P] extends true ? number : Prisma.GetScalarType : Prisma.GetScalarType } export type tripsGroupByArgs = { where?: Prisma.tripsWhereInput orderBy?: Prisma.tripsOrderByWithAggregationInput | Prisma.tripsOrderByWithAggregationInput[] by: Prisma.TripsScalarFieldEnum[] | Prisma.TripsScalarFieldEnum having?: Prisma.tripsScalarWhereWithAggregatesInput take?: number skip?: number _count?: TripsCountAggregateInputType | true _avg?: TripsAvgAggregateInputType _sum?: TripsSumAggregateInputType _min?: TripsMinAggregateInputType _max?: TripsMaxAggregateInputType } export type TripsGroupByOutputType = { id: number user_id: number title: string description: string | null start_date: string | null end_date: string | null currency: string | null cover_image: string | null is_archived: number | null reminder_days: number | null created_at: Date | null updated_at: Date | null _count: TripsCountAggregateOutputType | null _avg: TripsAvgAggregateOutputType | null _sum: TripsSumAggregateOutputType | null _min: TripsMinAggregateOutputType | null _max: TripsMaxAggregateOutputType | null } export type GetTripsGroupByPayload = Prisma.PrismaPromise< Array< Prisma.PickEnumerable & { [P in ((keyof T) & (keyof TripsGroupByOutputType))]: P extends '_count' ? T[P] extends boolean ? number : Prisma.GetScalarType : Prisma.GetScalarType } > > export type tripsWhereInput = { AND?: Prisma.tripsWhereInput | Prisma.tripsWhereInput[] OR?: Prisma.tripsWhereInput[] NOT?: Prisma.tripsWhereInput | Prisma.tripsWhereInput[] id?: Prisma.IntFilter<"trips"> | number user_id?: Prisma.IntFilter<"trips"> | number title?: Prisma.StringFilter<"trips"> | string description?: Prisma.StringNullableFilter<"trips"> | string | null start_date?: Prisma.StringNullableFilter<"trips"> | string | null end_date?: Prisma.StringNullableFilter<"trips"> | string | null currency?: Prisma.StringNullableFilter<"trips"> | string | null cover_image?: Prisma.StringNullableFilter<"trips"> | string | null is_archived?: Prisma.IntNullableFilter<"trips"> | number | null reminder_days?: Prisma.IntNullableFilter<"trips"> | number | null created_at?: Prisma.DateTimeNullableFilter<"trips"> | Date | string | null updated_at?: Prisma.DateTimeNullableFilter<"trips"> | Date | string | null budget_category_order?: Prisma.Budget_category_orderListRelationFilter budget_items?: Prisma.Budget_itemsListRelationFilter collab_messages?: Prisma.Collab_messagesListRelationFilter collab_notes?: Prisma.Collab_notesListRelationFilter collab_polls?: Prisma.Collab_pollsListRelationFilter day_accommodations?: Prisma.Day_accommodationsListRelationFilter day_notes?: Prisma.Day_notesListRelationFilter days?: Prisma.DaysListRelationFilter journey_entries?: Prisma.Journey_entriesListRelationFilter journey_trips?: Prisma.Journey_tripsListRelationFilter packing_bags?: Prisma.Packing_bagsListRelationFilter packing_category_assignees?: Prisma.Packing_category_assigneesListRelationFilter packing_items?: Prisma.Packing_itemsListRelationFilter photos?: Prisma.PhotosListRelationFilter places?: Prisma.PlacesListRelationFilter reservations?: Prisma.ReservationsListRelationFilter share_tokens?: Prisma.Share_tokensListRelationFilter todo_category_assignees?: Prisma.Todo_category_assigneesListRelationFilter todo_items?: Prisma.Todo_itemsListRelationFilter trip_album_links?: Prisma.Trip_album_linksListRelationFilter trip_files?: Prisma.Trip_filesListRelationFilter trip_members?: Prisma.Trip_membersListRelationFilter trip_photos?: Prisma.Trip_photosListRelationFilter users?: Prisma.XOR } export type tripsOrderByWithRelationInput = { id?: Prisma.SortOrder user_id?: Prisma.SortOrder title?: Prisma.SortOrder description?: Prisma.SortOrderInput | Prisma.SortOrder start_date?: Prisma.SortOrderInput | Prisma.SortOrder end_date?: Prisma.SortOrderInput | Prisma.SortOrder currency?: Prisma.SortOrderInput | Prisma.SortOrder cover_image?: Prisma.SortOrderInput | Prisma.SortOrder is_archived?: Prisma.SortOrderInput | Prisma.SortOrder reminder_days?: Prisma.SortOrderInput | Prisma.SortOrder created_at?: Prisma.SortOrderInput | Prisma.SortOrder updated_at?: Prisma.SortOrderInput | Prisma.SortOrder budget_category_order?: Prisma.budget_category_orderOrderByRelationAggregateInput budget_items?: Prisma.budget_itemsOrderByRelationAggregateInput collab_messages?: Prisma.collab_messagesOrderByRelationAggregateInput collab_notes?: Prisma.collab_notesOrderByRelationAggregateInput collab_polls?: Prisma.collab_pollsOrderByRelationAggregateInput day_accommodations?: Prisma.day_accommodationsOrderByRelationAggregateInput day_notes?: Prisma.day_notesOrderByRelationAggregateInput days?: Prisma.daysOrderByRelationAggregateInput journey_entries?: Prisma.journey_entriesOrderByRelationAggregateInput journey_trips?: Prisma.journey_tripsOrderByRelationAggregateInput packing_bags?: Prisma.packing_bagsOrderByRelationAggregateInput packing_category_assignees?: Prisma.packing_category_assigneesOrderByRelationAggregateInput packing_items?: Prisma.packing_itemsOrderByRelationAggregateInput photos?: Prisma.photosOrderByRelationAggregateInput places?: Prisma.placesOrderByRelationAggregateInput reservations?: Prisma.reservationsOrderByRelationAggregateInput share_tokens?: Prisma.share_tokensOrderByRelationAggregateInput todo_category_assignees?: Prisma.todo_category_assigneesOrderByRelationAggregateInput todo_items?: Prisma.todo_itemsOrderByRelationAggregateInput trip_album_links?: Prisma.trip_album_linksOrderByRelationAggregateInput trip_files?: Prisma.trip_filesOrderByRelationAggregateInput trip_members?: Prisma.trip_membersOrderByRelationAggregateInput trip_photos?: Prisma.trip_photosOrderByRelationAggregateInput users?: Prisma.usersOrderByWithRelationInput } export type tripsWhereUniqueInput = Prisma.AtLeast<{ id?: number AND?: Prisma.tripsWhereInput | Prisma.tripsWhereInput[] OR?: Prisma.tripsWhereInput[] NOT?: Prisma.tripsWhereInput | Prisma.tripsWhereInput[] user_id?: Prisma.IntFilter<"trips"> | number title?: Prisma.StringFilter<"trips"> | string description?: Prisma.StringNullableFilter<"trips"> | string | null start_date?: Prisma.StringNullableFilter<"trips"> | string | null end_date?: Prisma.StringNullableFilter<"trips"> | string | null currency?: Prisma.StringNullableFilter<"trips"> | string | null cover_image?: Prisma.StringNullableFilter<"trips"> | string | null is_archived?: Prisma.IntNullableFilter<"trips"> | number | null reminder_days?: Prisma.IntNullableFilter<"trips"> | number | null created_at?: Prisma.DateTimeNullableFilter<"trips"> | Date | string | null updated_at?: Prisma.DateTimeNullableFilter<"trips"> | Date | string | null budget_category_order?: Prisma.Budget_category_orderListRelationFilter budget_items?: Prisma.Budget_itemsListRelationFilter collab_messages?: Prisma.Collab_messagesListRelationFilter collab_notes?: Prisma.Collab_notesListRelationFilter collab_polls?: Prisma.Collab_pollsListRelationFilter day_accommodations?: Prisma.Day_accommodationsListRelationFilter day_notes?: Prisma.Day_notesListRelationFilter days?: Prisma.DaysListRelationFilter journey_entries?: Prisma.Journey_entriesListRelationFilter journey_trips?: Prisma.Journey_tripsListRelationFilter packing_bags?: Prisma.Packing_bagsListRelationFilter packing_category_assignees?: Prisma.Packing_category_assigneesListRelationFilter packing_items?: Prisma.Packing_itemsListRelationFilter photos?: Prisma.PhotosListRelationFilter places?: Prisma.PlacesListRelationFilter reservations?: Prisma.ReservationsListRelationFilter share_tokens?: Prisma.Share_tokensListRelationFilter todo_category_assignees?: Prisma.Todo_category_assigneesListRelationFilter todo_items?: Prisma.Todo_itemsListRelationFilter trip_album_links?: Prisma.Trip_album_linksListRelationFilter trip_files?: Prisma.Trip_filesListRelationFilter trip_members?: Prisma.Trip_membersListRelationFilter trip_photos?: Prisma.Trip_photosListRelationFilter users?: Prisma.XOR }, "id"> export type tripsOrderByWithAggregationInput = { id?: Prisma.SortOrder user_id?: Prisma.SortOrder title?: Prisma.SortOrder description?: Prisma.SortOrderInput | Prisma.SortOrder start_date?: Prisma.SortOrderInput | Prisma.SortOrder end_date?: Prisma.SortOrderInput | Prisma.SortOrder currency?: Prisma.SortOrderInput | Prisma.SortOrder cover_image?: Prisma.SortOrderInput | Prisma.SortOrder is_archived?: Prisma.SortOrderInput | Prisma.SortOrder reminder_days?: Prisma.SortOrderInput | Prisma.SortOrder created_at?: Prisma.SortOrderInput | Prisma.SortOrder updated_at?: Prisma.SortOrderInput | Prisma.SortOrder _count?: Prisma.tripsCountOrderByAggregateInput _avg?: Prisma.tripsAvgOrderByAggregateInput _max?: Prisma.tripsMaxOrderByAggregateInput _min?: Prisma.tripsMinOrderByAggregateInput _sum?: Prisma.tripsSumOrderByAggregateInput } export type tripsScalarWhereWithAggregatesInput = { AND?: Prisma.tripsScalarWhereWithAggregatesInput | Prisma.tripsScalarWhereWithAggregatesInput[] OR?: Prisma.tripsScalarWhereWithAggregatesInput[] NOT?: Prisma.tripsScalarWhereWithAggregatesInput | Prisma.tripsScalarWhereWithAggregatesInput[] id?: Prisma.IntWithAggregatesFilter<"trips"> | number user_id?: Prisma.IntWithAggregatesFilter<"trips"> | number title?: Prisma.StringWithAggregatesFilter<"trips"> | string description?: Prisma.StringNullableWithAggregatesFilter<"trips"> | string | null start_date?: Prisma.StringNullableWithAggregatesFilter<"trips"> | string | null end_date?: Prisma.StringNullableWithAggregatesFilter<"trips"> | string | null currency?: Prisma.StringNullableWithAggregatesFilter<"trips"> | string | null cover_image?: Prisma.StringNullableWithAggregatesFilter<"trips"> | string | null is_archived?: Prisma.IntNullableWithAggregatesFilter<"trips"> | number | null reminder_days?: Prisma.IntNullableWithAggregatesFilter<"trips"> | number | null created_at?: Prisma.DateTimeNullableWithAggregatesFilter<"trips"> | Date | string | null updated_at?: Prisma.DateTimeNullableWithAggregatesFilter<"trips"> | Date | string | null } export type tripsCreateInput = { title: string description?: string | null start_date?: string | null end_date?: string | null currency?: string | null cover_image?: string | null is_archived?: number | null reminder_days?: number | null created_at?: Date | string | null updated_at?: Date | string | null budget_category_order?: Prisma.budget_category_orderCreateNestedManyWithoutTripsInput budget_items?: Prisma.budget_itemsCreateNestedManyWithoutTripsInput collab_messages?: Prisma.collab_messagesCreateNestedManyWithoutTripsInput collab_notes?: Prisma.collab_notesCreateNestedManyWithoutTripsInput collab_polls?: Prisma.collab_pollsCreateNestedManyWithoutTripsInput day_accommodations?: Prisma.day_accommodationsCreateNestedManyWithoutTripsInput day_notes?: Prisma.day_notesCreateNestedManyWithoutTripsInput days?: Prisma.daysCreateNestedManyWithoutTripsInput journey_entries?: Prisma.journey_entriesCreateNestedManyWithoutTripsInput journey_trips?: Prisma.journey_tripsCreateNestedManyWithoutTripsInput packing_bags?: Prisma.packing_bagsCreateNestedManyWithoutTripsInput packing_category_assignees?: Prisma.packing_category_assigneesCreateNestedManyWithoutTripsInput packing_items?: Prisma.packing_itemsCreateNestedManyWithoutTripsInput photos?: Prisma.photosCreateNestedManyWithoutTripsInput places?: Prisma.placesCreateNestedManyWithoutTripsInput reservations?: Prisma.reservationsCreateNestedManyWithoutTripsInput share_tokens?: Prisma.share_tokensCreateNestedManyWithoutTripsInput todo_category_assignees?: Prisma.todo_category_assigneesCreateNestedManyWithoutTripsInput todo_items?: Prisma.todo_itemsCreateNestedManyWithoutTripsInput trip_album_links?: Prisma.trip_album_linksCreateNestedManyWithoutTripsInput trip_files?: Prisma.trip_filesCreateNestedManyWithoutTripsInput trip_members?: Prisma.trip_membersCreateNestedManyWithoutTripsInput trip_photos?: Prisma.trip_photosCreateNestedManyWithoutTripsInput users: Prisma.usersCreateNestedOneWithoutTripsInput } export type tripsUncheckedCreateInput = { id?: number user_id: number title: string description?: string | null start_date?: string | null end_date?: string | null currency?: string | null cover_image?: string | null is_archived?: number | null reminder_days?: number | null created_at?: Date | string | null updated_at?: Date | string | null budget_category_order?: Prisma.budget_category_orderUncheckedCreateNestedManyWithoutTripsInput budget_items?: Prisma.budget_itemsUncheckedCreateNestedManyWithoutTripsInput collab_messages?: Prisma.collab_messagesUncheckedCreateNestedManyWithoutTripsInput collab_notes?: Prisma.collab_notesUncheckedCreateNestedManyWithoutTripsInput collab_polls?: Prisma.collab_pollsUncheckedCreateNestedManyWithoutTripsInput day_accommodations?: Prisma.day_accommodationsUncheckedCreateNestedManyWithoutTripsInput day_notes?: Prisma.day_notesUncheckedCreateNestedManyWithoutTripsInput days?: Prisma.daysUncheckedCreateNestedManyWithoutTripsInput journey_entries?: Prisma.journey_entriesUncheckedCreateNestedManyWithoutTripsInput journey_trips?: Prisma.journey_tripsUncheckedCreateNestedManyWithoutTripsInput packing_bags?: Prisma.packing_bagsUncheckedCreateNestedManyWithoutTripsInput packing_category_assignees?: Prisma.packing_category_assigneesUncheckedCreateNestedManyWithoutTripsInput packing_items?: Prisma.packing_itemsUncheckedCreateNestedManyWithoutTripsInput photos?: Prisma.photosUncheckedCreateNestedManyWithoutTripsInput places?: Prisma.placesUncheckedCreateNestedManyWithoutTripsInput reservations?: Prisma.reservationsUncheckedCreateNestedManyWithoutTripsInput share_tokens?: Prisma.share_tokensUncheckedCreateNestedManyWithoutTripsInput todo_category_assignees?: Prisma.todo_category_assigneesUncheckedCreateNestedManyWithoutTripsInput todo_items?: Prisma.todo_itemsUncheckedCreateNestedManyWithoutTripsInput trip_album_links?: Prisma.trip_album_linksUncheckedCreateNestedManyWithoutTripsInput trip_files?: Prisma.trip_filesUncheckedCreateNestedManyWithoutTripsInput trip_members?: Prisma.trip_membersUncheckedCreateNestedManyWithoutTripsInput trip_photos?: Prisma.trip_photosUncheckedCreateNestedManyWithoutTripsInput } export type tripsUpdateInput = { title?: Prisma.StringFieldUpdateOperationsInput | string description?: Prisma.NullableStringFieldUpdateOperationsInput | string | null start_date?: Prisma.NullableStringFieldUpdateOperationsInput | string | null end_date?: Prisma.NullableStringFieldUpdateOperationsInput | string | null currency?: Prisma.NullableStringFieldUpdateOperationsInput | string | null cover_image?: Prisma.NullableStringFieldUpdateOperationsInput | string | null is_archived?: Prisma.NullableIntFieldUpdateOperationsInput | number | null reminder_days?: Prisma.NullableIntFieldUpdateOperationsInput | number | null created_at?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null updated_at?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null budget_category_order?: Prisma.budget_category_orderUpdateManyWithoutTripsNestedInput budget_items?: Prisma.budget_itemsUpdateManyWithoutTripsNestedInput collab_messages?: Prisma.collab_messagesUpdateManyWithoutTripsNestedInput collab_notes?: Prisma.collab_notesUpdateManyWithoutTripsNestedInput collab_polls?: Prisma.collab_pollsUpdateManyWithoutTripsNestedInput day_accommodations?: Prisma.day_accommodationsUpdateManyWithoutTripsNestedInput day_notes?: Prisma.day_notesUpdateManyWithoutTripsNestedInput days?: Prisma.daysUpdateManyWithoutTripsNestedInput journey_entries?: Prisma.journey_entriesUpdateManyWithoutTripsNestedInput journey_trips?: Prisma.journey_tripsUpdateManyWithoutTripsNestedInput packing_bags?: Prisma.packing_bagsUpdateManyWithoutTripsNestedInput packing_category_assignees?: Prisma.packing_category_assigneesUpdateManyWithoutTripsNestedInput packing_items?: Prisma.packing_itemsUpdateManyWithoutTripsNestedInput photos?: Prisma.photosUpdateManyWithoutTripsNestedInput places?: Prisma.placesUpdateManyWithoutTripsNestedInput reservations?: Prisma.reservationsUpdateManyWithoutTripsNestedInput share_tokens?: Prisma.share_tokensUpdateManyWithoutTripsNestedInput todo_category_assignees?: Prisma.todo_category_assigneesUpdateManyWithoutTripsNestedInput todo_items?: Prisma.todo_itemsUpdateManyWithoutTripsNestedInput trip_album_links?: Prisma.trip_album_linksUpdateManyWithoutTripsNestedInput trip_files?: Prisma.trip_filesUpdateManyWithoutTripsNestedInput trip_members?: Prisma.trip_membersUpdateManyWithoutTripsNestedInput trip_photos?: Prisma.trip_photosUpdateManyWithoutTripsNestedInput users?: Prisma.usersUpdateOneRequiredWithoutTripsNestedInput } export type tripsUncheckedUpdateInput = { id?: Prisma.IntFieldUpdateOperationsInput | number user_id?: Prisma.IntFieldUpdateOperationsInput | number title?: Prisma.StringFieldUpdateOperationsInput | string description?: Prisma.NullableStringFieldUpdateOperationsInput | string | null start_date?: Prisma.NullableStringFieldUpdateOperationsInput | string | null end_date?: Prisma.NullableStringFieldUpdateOperationsInput | string | null currency?: Prisma.NullableStringFieldUpdateOperationsInput | string | null cover_image?: Prisma.NullableStringFieldUpdateOperationsInput | string | null is_archived?: Prisma.NullableIntFieldUpdateOperationsInput | number | null reminder_days?: Prisma.NullableIntFieldUpdateOperationsInput | number | null created_at?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null updated_at?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null budget_category_order?: Prisma.budget_category_orderUncheckedUpdateManyWithoutTripsNestedInput budget_items?: Prisma.budget_itemsUncheckedUpdateManyWithoutTripsNestedInput collab_messages?: Prisma.collab_messagesUncheckedUpdateManyWithoutTripsNestedInput collab_notes?: Prisma.collab_notesUncheckedUpdateManyWithoutTripsNestedInput collab_polls?: Prisma.collab_pollsUncheckedUpdateManyWithoutTripsNestedInput day_accommodations?: Prisma.day_accommodationsUncheckedUpdateManyWithoutTripsNestedInput day_notes?: Prisma.day_notesUncheckedUpdateManyWithoutTripsNestedInput days?: Prisma.daysUncheckedUpdateManyWithoutTripsNestedInput journey_entries?: Prisma.journey_entriesUncheckedUpdateManyWithoutTripsNestedInput journey_trips?: Prisma.journey_tripsUncheckedUpdateManyWithoutTripsNestedInput packing_bags?: Prisma.packing_bagsUncheckedUpdateManyWithoutTripsNestedInput packing_category_assignees?: Prisma.packing_category_assigneesUncheckedUpdateManyWithoutTripsNestedInput packing_items?: Prisma.packing_itemsUncheckedUpdateManyWithoutTripsNestedInput photos?: Prisma.photosUncheckedUpdateManyWithoutTripsNestedInput places?: Prisma.placesUncheckedUpdateManyWithoutTripsNestedInput reservations?: Prisma.reservationsUncheckedUpdateManyWithoutTripsNestedInput share_tokens?: Prisma.share_tokensUncheckedUpdateManyWithoutTripsNestedInput todo_category_assignees?: Prisma.todo_category_assigneesUncheckedUpdateManyWithoutTripsNestedInput todo_items?: Prisma.todo_itemsUncheckedUpdateManyWithoutTripsNestedInput trip_album_links?: Prisma.trip_album_linksUncheckedUpdateManyWithoutTripsNestedInput trip_files?: Prisma.trip_filesUncheckedUpdateManyWithoutTripsNestedInput trip_members?: Prisma.trip_membersUncheckedUpdateManyWithoutTripsNestedInput trip_photos?: Prisma.trip_photosUncheckedUpdateManyWithoutTripsNestedInput } export type tripsCreateManyInput = { id?: number user_id: number title: string description?: string | null start_date?: string | null end_date?: string | null currency?: string | null cover_image?: string | null is_archived?: number | null reminder_days?: number | null created_at?: Date | string | null updated_at?: Date | string | null } export type tripsUpdateManyMutationInput = { title?: Prisma.StringFieldUpdateOperationsInput | string description?: Prisma.NullableStringFieldUpdateOperationsInput | string | null start_date?: Prisma.NullableStringFieldUpdateOperationsInput | string | null end_date?: Prisma.NullableStringFieldUpdateOperationsInput | string | null currency?: Prisma.NullableStringFieldUpdateOperationsInput | string | null cover_image?: Prisma.NullableStringFieldUpdateOperationsInput | string | null is_archived?: Prisma.NullableIntFieldUpdateOperationsInput | number | null reminder_days?: Prisma.NullableIntFieldUpdateOperationsInput | number | null created_at?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null updated_at?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null } export type tripsUncheckedUpdateManyInput = { id?: Prisma.IntFieldUpdateOperationsInput | number user_id?: Prisma.IntFieldUpdateOperationsInput | number title?: Prisma.StringFieldUpdateOperationsInput | string description?: Prisma.NullableStringFieldUpdateOperationsInput | string | null start_date?: Prisma.NullableStringFieldUpdateOperationsInput | string | null end_date?: Prisma.NullableStringFieldUpdateOperationsInput | string | null currency?: Prisma.NullableStringFieldUpdateOperationsInput | string | null cover_image?: Prisma.NullableStringFieldUpdateOperationsInput | string | null is_archived?: Prisma.NullableIntFieldUpdateOperationsInput | number | null reminder_days?: Prisma.NullableIntFieldUpdateOperationsInput | number | null created_at?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null updated_at?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null } export type TripsScalarRelationFilter = { is?: Prisma.tripsWhereInput isNot?: Prisma.tripsWhereInput } export type TripsNullableScalarRelationFilter = { is?: Prisma.tripsWhereInput | null isNot?: Prisma.tripsWhereInput | null } export type tripsCountOrderByAggregateInput = { id?: Prisma.SortOrder user_id?: Prisma.SortOrder title?: Prisma.SortOrder description?: Prisma.SortOrder start_date?: Prisma.SortOrder end_date?: Prisma.SortOrder currency?: Prisma.SortOrder cover_image?: Prisma.SortOrder is_archived?: Prisma.SortOrder reminder_days?: Prisma.SortOrder created_at?: Prisma.SortOrder updated_at?: Prisma.SortOrder } export type tripsAvgOrderByAggregateInput = { id?: Prisma.SortOrder user_id?: Prisma.SortOrder is_archived?: Prisma.SortOrder reminder_days?: Prisma.SortOrder } export type tripsMaxOrderByAggregateInput = { id?: Prisma.SortOrder user_id?: Prisma.SortOrder title?: Prisma.SortOrder description?: Prisma.SortOrder start_date?: Prisma.SortOrder end_date?: Prisma.SortOrder currency?: Prisma.SortOrder cover_image?: Prisma.SortOrder is_archived?: Prisma.SortOrder reminder_days?: Prisma.SortOrder created_at?: Prisma.SortOrder updated_at?: Prisma.SortOrder } export type tripsMinOrderByAggregateInput = { id?: Prisma.SortOrder user_id?: Prisma.SortOrder title?: Prisma.SortOrder description?: Prisma.SortOrder start_date?: Prisma.SortOrder end_date?: Prisma.SortOrder currency?: Prisma.SortOrder cover_image?: Prisma.SortOrder is_archived?: Prisma.SortOrder reminder_days?: Prisma.SortOrder created_at?: Prisma.SortOrder updated_at?: Prisma.SortOrder } export type tripsSumOrderByAggregateInput = { id?: Prisma.SortOrder user_id?: Prisma.SortOrder is_archived?: Prisma.SortOrder reminder_days?: Prisma.SortOrder } export type TripsListRelationFilter = { every?: Prisma.tripsWhereInput some?: Prisma.tripsWhereInput none?: Prisma.tripsWhereInput } export type tripsOrderByRelationAggregateInput = { _count?: Prisma.SortOrder } export type tripsCreateNestedOneWithoutBudget_category_orderInput = { create?: Prisma.XOR connectOrCreate?: Prisma.tripsCreateOrConnectWithoutBudget_category_orderInput connect?: Prisma.tripsWhereUniqueInput } export type tripsUpdateOneRequiredWithoutBudget_category_orderNestedInput = { create?: Prisma.XOR connectOrCreate?: Prisma.tripsCreateOrConnectWithoutBudget_category_orderInput upsert?: Prisma.tripsUpsertWithoutBudget_category_orderInput connect?: Prisma.tripsWhereUniqueInput update?: Prisma.XOR, Prisma.tripsUncheckedUpdateWithoutBudget_category_orderInput> } export type tripsCreateNestedOneWithoutBudget_itemsInput = { create?: Prisma.XOR connectOrCreate?: Prisma.tripsCreateOrConnectWithoutBudget_itemsInput connect?: Prisma.tripsWhereUniqueInput } export type tripsUpdateOneRequiredWithoutBudget_itemsNestedInput = { create?: Prisma.XOR connectOrCreate?: Prisma.tripsCreateOrConnectWithoutBudget_itemsInput upsert?: Prisma.tripsUpsertWithoutBudget_itemsInput connect?: Prisma.tripsWhereUniqueInput update?: Prisma.XOR, Prisma.tripsUncheckedUpdateWithoutBudget_itemsInput> } export type tripsCreateNestedOneWithoutCollab_messagesInput = { create?: Prisma.XOR connectOrCreate?: Prisma.tripsCreateOrConnectWithoutCollab_messagesInput connect?: Prisma.tripsWhereUniqueInput } export type tripsUpdateOneRequiredWithoutCollab_messagesNestedInput = { create?: Prisma.XOR connectOrCreate?: Prisma.tripsCreateOrConnectWithoutCollab_messagesInput upsert?: Prisma.tripsUpsertWithoutCollab_messagesInput connect?: Prisma.tripsWhereUniqueInput update?: Prisma.XOR, Prisma.tripsUncheckedUpdateWithoutCollab_messagesInput> } export type tripsCreateNestedOneWithoutCollab_notesInput = { create?: Prisma.XOR connectOrCreate?: Prisma.tripsCreateOrConnectWithoutCollab_notesInput connect?: Prisma.tripsWhereUniqueInput } export type tripsUpdateOneRequiredWithoutCollab_notesNestedInput = { create?: Prisma.XOR connectOrCreate?: Prisma.tripsCreateOrConnectWithoutCollab_notesInput upsert?: Prisma.tripsUpsertWithoutCollab_notesInput connect?: Prisma.tripsWhereUniqueInput update?: Prisma.XOR, Prisma.tripsUncheckedUpdateWithoutCollab_notesInput> } export type tripsCreateNestedOneWithoutCollab_pollsInput = { create?: Prisma.XOR connectOrCreate?: Prisma.tripsCreateOrConnectWithoutCollab_pollsInput connect?: Prisma.tripsWhereUniqueInput } export type tripsUpdateOneRequiredWithoutCollab_pollsNestedInput = { create?: Prisma.XOR connectOrCreate?: Prisma.tripsCreateOrConnectWithoutCollab_pollsInput upsert?: Prisma.tripsUpsertWithoutCollab_pollsInput connect?: Prisma.tripsWhereUniqueInput update?: Prisma.XOR, Prisma.tripsUncheckedUpdateWithoutCollab_pollsInput> } export type tripsCreateNestedOneWithoutDay_accommodationsInput = { create?: Prisma.XOR connectOrCreate?: Prisma.tripsCreateOrConnectWithoutDay_accommodationsInput connect?: Prisma.tripsWhereUniqueInput } export type tripsUpdateOneRequiredWithoutDay_accommodationsNestedInput = { create?: Prisma.XOR connectOrCreate?: Prisma.tripsCreateOrConnectWithoutDay_accommodationsInput upsert?: Prisma.tripsUpsertWithoutDay_accommodationsInput connect?: Prisma.tripsWhereUniqueInput update?: Prisma.XOR, Prisma.tripsUncheckedUpdateWithoutDay_accommodationsInput> } export type tripsCreateNestedOneWithoutDay_notesInput = { create?: Prisma.XOR connectOrCreate?: Prisma.tripsCreateOrConnectWithoutDay_notesInput connect?: Prisma.tripsWhereUniqueInput } export type tripsUpdateOneRequiredWithoutDay_notesNestedInput = { create?: Prisma.XOR connectOrCreate?: Prisma.tripsCreateOrConnectWithoutDay_notesInput upsert?: Prisma.tripsUpsertWithoutDay_notesInput connect?: Prisma.tripsWhereUniqueInput update?: Prisma.XOR, Prisma.tripsUncheckedUpdateWithoutDay_notesInput> } export type tripsCreateNestedOneWithoutDaysInput = { create?: Prisma.XOR connectOrCreate?: Prisma.tripsCreateOrConnectWithoutDaysInput connect?: Prisma.tripsWhereUniqueInput } export type tripsUpdateOneRequiredWithoutDaysNestedInput = { create?: Prisma.XOR connectOrCreate?: Prisma.tripsCreateOrConnectWithoutDaysInput upsert?: Prisma.tripsUpsertWithoutDaysInput connect?: Prisma.tripsWhereUniqueInput update?: Prisma.XOR, Prisma.tripsUncheckedUpdateWithoutDaysInput> } export type tripsCreateNestedOneWithoutJourney_entriesInput = { create?: Prisma.XOR connectOrCreate?: Prisma.tripsCreateOrConnectWithoutJourney_entriesInput connect?: Prisma.tripsWhereUniqueInput } export type tripsUpdateOneWithoutJourney_entriesNestedInput = { create?: Prisma.XOR connectOrCreate?: Prisma.tripsCreateOrConnectWithoutJourney_entriesInput upsert?: Prisma.tripsUpsertWithoutJourney_entriesInput disconnect?: Prisma.tripsWhereInput | boolean delete?: Prisma.tripsWhereInput | boolean connect?: Prisma.tripsWhereUniqueInput update?: Prisma.XOR, Prisma.tripsUncheckedUpdateWithoutJourney_entriesInput> } export type tripsCreateNestedOneWithoutJourney_tripsInput = { create?: Prisma.XOR connectOrCreate?: Prisma.tripsCreateOrConnectWithoutJourney_tripsInput connect?: Prisma.tripsWhereUniqueInput } export type tripsUpdateOneRequiredWithoutJourney_tripsNestedInput = { create?: Prisma.XOR connectOrCreate?: Prisma.tripsCreateOrConnectWithoutJourney_tripsInput upsert?: Prisma.tripsUpsertWithoutJourney_tripsInput connect?: Prisma.tripsWhereUniqueInput update?: Prisma.XOR, Prisma.tripsUncheckedUpdateWithoutJourney_tripsInput> } export type tripsCreateNestedOneWithoutPacking_bagsInput = { create?: Prisma.XOR connectOrCreate?: Prisma.tripsCreateOrConnectWithoutPacking_bagsInput connect?: Prisma.tripsWhereUniqueInput } export type tripsUpdateOneRequiredWithoutPacking_bagsNestedInput = { create?: Prisma.XOR connectOrCreate?: Prisma.tripsCreateOrConnectWithoutPacking_bagsInput upsert?: Prisma.tripsUpsertWithoutPacking_bagsInput connect?: Prisma.tripsWhereUniqueInput update?: Prisma.XOR, Prisma.tripsUncheckedUpdateWithoutPacking_bagsInput> } export type tripsCreateNestedOneWithoutPacking_category_assigneesInput = { create?: Prisma.XOR connectOrCreate?: Prisma.tripsCreateOrConnectWithoutPacking_category_assigneesInput connect?: Prisma.tripsWhereUniqueInput } export type tripsUpdateOneRequiredWithoutPacking_category_assigneesNestedInput = { create?: Prisma.XOR connectOrCreate?: Prisma.tripsCreateOrConnectWithoutPacking_category_assigneesInput upsert?: Prisma.tripsUpsertWithoutPacking_category_assigneesInput connect?: Prisma.tripsWhereUniqueInput update?: Prisma.XOR, Prisma.tripsUncheckedUpdateWithoutPacking_category_assigneesInput> } export type tripsCreateNestedOneWithoutPacking_itemsInput = { create?: Prisma.XOR connectOrCreate?: Prisma.tripsCreateOrConnectWithoutPacking_itemsInput connect?: Prisma.tripsWhereUniqueInput } export type tripsUpdateOneRequiredWithoutPacking_itemsNestedInput = { create?: Prisma.XOR connectOrCreate?: Prisma.tripsCreateOrConnectWithoutPacking_itemsInput upsert?: Prisma.tripsUpsertWithoutPacking_itemsInput connect?: Prisma.tripsWhereUniqueInput update?: Prisma.XOR, Prisma.tripsUncheckedUpdateWithoutPacking_itemsInput> } export type tripsCreateNestedOneWithoutPhotosInput = { create?: Prisma.XOR connectOrCreate?: Prisma.tripsCreateOrConnectWithoutPhotosInput connect?: Prisma.tripsWhereUniqueInput } export type tripsUpdateOneRequiredWithoutPhotosNestedInput = { create?: Prisma.XOR connectOrCreate?: Prisma.tripsCreateOrConnectWithoutPhotosInput upsert?: Prisma.tripsUpsertWithoutPhotosInput connect?: Prisma.tripsWhereUniqueInput update?: Prisma.XOR, Prisma.tripsUncheckedUpdateWithoutPhotosInput> } export type tripsCreateNestedOneWithoutPlacesInput = { create?: Prisma.XOR connectOrCreate?: Prisma.tripsCreateOrConnectWithoutPlacesInput connect?: Prisma.tripsWhereUniqueInput } export type tripsUpdateOneRequiredWithoutPlacesNestedInput = { create?: Prisma.XOR connectOrCreate?: Prisma.tripsCreateOrConnectWithoutPlacesInput upsert?: Prisma.tripsUpsertWithoutPlacesInput connect?: Prisma.tripsWhereUniqueInput update?: Prisma.XOR, Prisma.tripsUncheckedUpdateWithoutPlacesInput> } export type tripsCreateNestedOneWithoutReservationsInput = { create?: Prisma.XOR connectOrCreate?: Prisma.tripsCreateOrConnectWithoutReservationsInput connect?: Prisma.tripsWhereUniqueInput } export type tripsUpdateOneRequiredWithoutReservationsNestedInput = { create?: Prisma.XOR connectOrCreate?: Prisma.tripsCreateOrConnectWithoutReservationsInput upsert?: Prisma.tripsUpsertWithoutReservationsInput connect?: Prisma.tripsWhereUniqueInput update?: Prisma.XOR, Prisma.tripsUncheckedUpdateWithoutReservationsInput> } export type tripsCreateNestedOneWithoutShare_tokensInput = { create?: Prisma.XOR connectOrCreate?: Prisma.tripsCreateOrConnectWithoutShare_tokensInput connect?: Prisma.tripsWhereUniqueInput } export type tripsUpdateOneRequiredWithoutShare_tokensNestedInput = { create?: Prisma.XOR connectOrCreate?: Prisma.tripsCreateOrConnectWithoutShare_tokensInput upsert?: Prisma.tripsUpsertWithoutShare_tokensInput connect?: Prisma.tripsWhereUniqueInput update?: Prisma.XOR, Prisma.tripsUncheckedUpdateWithoutShare_tokensInput> } export type tripsCreateNestedOneWithoutTodo_category_assigneesInput = { create?: Prisma.XOR connectOrCreate?: Prisma.tripsCreateOrConnectWithoutTodo_category_assigneesInput connect?: Prisma.tripsWhereUniqueInput } export type tripsUpdateOneRequiredWithoutTodo_category_assigneesNestedInput = { create?: Prisma.XOR connectOrCreate?: Prisma.tripsCreateOrConnectWithoutTodo_category_assigneesInput upsert?: Prisma.tripsUpsertWithoutTodo_category_assigneesInput connect?: Prisma.tripsWhereUniqueInput update?: Prisma.XOR, Prisma.tripsUncheckedUpdateWithoutTodo_category_assigneesInput> } export type tripsCreateNestedOneWithoutTodo_itemsInput = { create?: Prisma.XOR connectOrCreate?: Prisma.tripsCreateOrConnectWithoutTodo_itemsInput connect?: Prisma.tripsWhereUniqueInput } export type tripsUpdateOneRequiredWithoutTodo_itemsNestedInput = { create?: Prisma.XOR connectOrCreate?: Prisma.tripsCreateOrConnectWithoutTodo_itemsInput upsert?: Prisma.tripsUpsertWithoutTodo_itemsInput connect?: Prisma.tripsWhereUniqueInput update?: Prisma.XOR, Prisma.tripsUncheckedUpdateWithoutTodo_itemsInput> } export type tripsCreateNestedOneWithoutTrip_album_linksInput = { create?: Prisma.XOR connectOrCreate?: Prisma.tripsCreateOrConnectWithoutTrip_album_linksInput connect?: Prisma.tripsWhereUniqueInput } export type tripsUpdateOneRequiredWithoutTrip_album_linksNestedInput = { create?: Prisma.XOR connectOrCreate?: Prisma.tripsCreateOrConnectWithoutTrip_album_linksInput upsert?: Prisma.tripsUpsertWithoutTrip_album_linksInput connect?: Prisma.tripsWhereUniqueInput update?: Prisma.XOR, Prisma.tripsUncheckedUpdateWithoutTrip_album_linksInput> } export type tripsCreateNestedOneWithoutTrip_filesInput = { create?: Prisma.XOR connectOrCreate?: Prisma.tripsCreateOrConnectWithoutTrip_filesInput connect?: Prisma.tripsWhereUniqueInput } export type tripsUpdateOneRequiredWithoutTrip_filesNestedInput = { create?: Prisma.XOR connectOrCreate?: Prisma.tripsCreateOrConnectWithoutTrip_filesInput upsert?: Prisma.tripsUpsertWithoutTrip_filesInput connect?: Prisma.tripsWhereUniqueInput update?: Prisma.XOR, Prisma.tripsUncheckedUpdateWithoutTrip_filesInput> } export type tripsCreateNestedOneWithoutTrip_membersInput = { create?: Prisma.XOR connectOrCreate?: Prisma.tripsCreateOrConnectWithoutTrip_membersInput connect?: Prisma.tripsWhereUniqueInput } export type tripsUpdateOneRequiredWithoutTrip_membersNestedInput = { create?: Prisma.XOR connectOrCreate?: Prisma.tripsCreateOrConnectWithoutTrip_membersInput upsert?: Prisma.tripsUpsertWithoutTrip_membersInput connect?: Prisma.tripsWhereUniqueInput update?: Prisma.XOR, Prisma.tripsUncheckedUpdateWithoutTrip_membersInput> } export type tripsCreateNestedOneWithoutTrip_photosInput = { create?: Prisma.XOR connectOrCreate?: Prisma.tripsCreateOrConnectWithoutTrip_photosInput connect?: Prisma.tripsWhereUniqueInput } export type tripsUpdateOneRequiredWithoutTrip_photosNestedInput = { create?: Prisma.XOR connectOrCreate?: Prisma.tripsCreateOrConnectWithoutTrip_photosInput upsert?: Prisma.tripsUpsertWithoutTrip_photosInput connect?: Prisma.tripsWhereUniqueInput update?: Prisma.XOR, Prisma.tripsUncheckedUpdateWithoutTrip_photosInput> } export type tripsCreateNestedManyWithoutUsersInput = { create?: Prisma.XOR | Prisma.tripsCreateWithoutUsersInput[] | Prisma.tripsUncheckedCreateWithoutUsersInput[] connectOrCreate?: Prisma.tripsCreateOrConnectWithoutUsersInput | Prisma.tripsCreateOrConnectWithoutUsersInput[] createMany?: Prisma.tripsCreateManyUsersInputEnvelope connect?: Prisma.tripsWhereUniqueInput | Prisma.tripsWhereUniqueInput[] } export type tripsUncheckedCreateNestedManyWithoutUsersInput = { create?: Prisma.XOR | Prisma.tripsCreateWithoutUsersInput[] | Prisma.tripsUncheckedCreateWithoutUsersInput[] connectOrCreate?: Prisma.tripsCreateOrConnectWithoutUsersInput | Prisma.tripsCreateOrConnectWithoutUsersInput[] createMany?: Prisma.tripsCreateManyUsersInputEnvelope connect?: Prisma.tripsWhereUniqueInput | Prisma.tripsWhereUniqueInput[] } export type tripsUpdateManyWithoutUsersNestedInput = { create?: Prisma.XOR | Prisma.tripsCreateWithoutUsersInput[] | Prisma.tripsUncheckedCreateWithoutUsersInput[] connectOrCreate?: Prisma.tripsCreateOrConnectWithoutUsersInput | Prisma.tripsCreateOrConnectWithoutUsersInput[] upsert?: Prisma.tripsUpsertWithWhereUniqueWithoutUsersInput | Prisma.tripsUpsertWithWhereUniqueWithoutUsersInput[] createMany?: Prisma.tripsCreateManyUsersInputEnvelope set?: Prisma.tripsWhereUniqueInput | Prisma.tripsWhereUniqueInput[] disconnect?: Prisma.tripsWhereUniqueInput | Prisma.tripsWhereUniqueInput[] delete?: Prisma.tripsWhereUniqueInput | Prisma.tripsWhereUniqueInput[] connect?: Prisma.tripsWhereUniqueInput | Prisma.tripsWhereUniqueInput[] update?: Prisma.tripsUpdateWithWhereUniqueWithoutUsersInput | Prisma.tripsUpdateWithWhereUniqueWithoutUsersInput[] updateMany?: Prisma.tripsUpdateManyWithWhereWithoutUsersInput | Prisma.tripsUpdateManyWithWhereWithoutUsersInput[] deleteMany?: Prisma.tripsScalarWhereInput | Prisma.tripsScalarWhereInput[] } export type tripsUncheckedUpdateManyWithoutUsersNestedInput = { create?: Prisma.XOR | Prisma.tripsCreateWithoutUsersInput[] | Prisma.tripsUncheckedCreateWithoutUsersInput[] connectOrCreate?: Prisma.tripsCreateOrConnectWithoutUsersInput | Prisma.tripsCreateOrConnectWithoutUsersInput[] upsert?: Prisma.tripsUpsertWithWhereUniqueWithoutUsersInput | Prisma.tripsUpsertWithWhereUniqueWithoutUsersInput[] createMany?: Prisma.tripsCreateManyUsersInputEnvelope set?: Prisma.tripsWhereUniqueInput | Prisma.tripsWhereUniqueInput[] disconnect?: Prisma.tripsWhereUniqueInput | Prisma.tripsWhereUniqueInput[] delete?: Prisma.tripsWhereUniqueInput | Prisma.tripsWhereUniqueInput[] connect?: Prisma.tripsWhereUniqueInput | Prisma.tripsWhereUniqueInput[] update?: Prisma.tripsUpdateWithWhereUniqueWithoutUsersInput | Prisma.tripsUpdateWithWhereUniqueWithoutUsersInput[] updateMany?: Prisma.tripsUpdateManyWithWhereWithoutUsersInput | Prisma.tripsUpdateManyWithWhereWithoutUsersInput[] deleteMany?: Prisma.tripsScalarWhereInput | Prisma.tripsScalarWhereInput[] } export type tripsCreateWithoutBudget_category_orderInput = { title: string description?: string | null start_date?: string | null end_date?: string | null currency?: string | null cover_image?: string | null is_archived?: number | null reminder_days?: number | null created_at?: Date | string | null updated_at?: Date | string | null budget_items?: Prisma.budget_itemsCreateNestedManyWithoutTripsInput collab_messages?: Prisma.collab_messagesCreateNestedManyWithoutTripsInput collab_notes?: Prisma.collab_notesCreateNestedManyWithoutTripsInput collab_polls?: Prisma.collab_pollsCreateNestedManyWithoutTripsInput day_accommodations?: Prisma.day_accommodationsCreateNestedManyWithoutTripsInput day_notes?: Prisma.day_notesCreateNestedManyWithoutTripsInput days?: Prisma.daysCreateNestedManyWithoutTripsInput journey_entries?: Prisma.journey_entriesCreateNestedManyWithoutTripsInput journey_trips?: Prisma.journey_tripsCreateNestedManyWithoutTripsInput packing_bags?: Prisma.packing_bagsCreateNestedManyWithoutTripsInput packing_category_assignees?: Prisma.packing_category_assigneesCreateNestedManyWithoutTripsInput packing_items?: Prisma.packing_itemsCreateNestedManyWithoutTripsInput photos?: Prisma.photosCreateNestedManyWithoutTripsInput places?: Prisma.placesCreateNestedManyWithoutTripsInput reservations?: Prisma.reservationsCreateNestedManyWithoutTripsInput share_tokens?: Prisma.share_tokensCreateNestedManyWithoutTripsInput todo_category_assignees?: Prisma.todo_category_assigneesCreateNestedManyWithoutTripsInput todo_items?: Prisma.todo_itemsCreateNestedManyWithoutTripsInput trip_album_links?: Prisma.trip_album_linksCreateNestedManyWithoutTripsInput trip_files?: Prisma.trip_filesCreateNestedManyWithoutTripsInput trip_members?: Prisma.trip_membersCreateNestedManyWithoutTripsInput trip_photos?: Prisma.trip_photosCreateNestedManyWithoutTripsInput users: Prisma.usersCreateNestedOneWithoutTripsInput } export type tripsUncheckedCreateWithoutBudget_category_orderInput = { id?: number user_id: number title: string description?: string | null start_date?: string | null end_date?: string | null currency?: string | null cover_image?: string | null is_archived?: number | null reminder_days?: number | null created_at?: Date | string | null updated_at?: Date | string | null budget_items?: Prisma.budget_itemsUncheckedCreateNestedManyWithoutTripsInput collab_messages?: Prisma.collab_messagesUncheckedCreateNestedManyWithoutTripsInput collab_notes?: Prisma.collab_notesUncheckedCreateNestedManyWithoutTripsInput collab_polls?: Prisma.collab_pollsUncheckedCreateNestedManyWithoutTripsInput day_accommodations?: Prisma.day_accommodationsUncheckedCreateNestedManyWithoutTripsInput day_notes?: Prisma.day_notesUncheckedCreateNestedManyWithoutTripsInput days?: Prisma.daysUncheckedCreateNestedManyWithoutTripsInput journey_entries?: Prisma.journey_entriesUncheckedCreateNestedManyWithoutTripsInput journey_trips?: Prisma.journey_tripsUncheckedCreateNestedManyWithoutTripsInput packing_bags?: Prisma.packing_bagsUncheckedCreateNestedManyWithoutTripsInput packing_category_assignees?: Prisma.packing_category_assigneesUncheckedCreateNestedManyWithoutTripsInput packing_items?: Prisma.packing_itemsUncheckedCreateNestedManyWithoutTripsInput photos?: Prisma.photosUncheckedCreateNestedManyWithoutTripsInput places?: Prisma.placesUncheckedCreateNestedManyWithoutTripsInput reservations?: Prisma.reservationsUncheckedCreateNestedManyWithoutTripsInput share_tokens?: Prisma.share_tokensUncheckedCreateNestedManyWithoutTripsInput todo_category_assignees?: Prisma.todo_category_assigneesUncheckedCreateNestedManyWithoutTripsInput todo_items?: Prisma.todo_itemsUncheckedCreateNestedManyWithoutTripsInput trip_album_links?: Prisma.trip_album_linksUncheckedCreateNestedManyWithoutTripsInput trip_files?: Prisma.trip_filesUncheckedCreateNestedManyWithoutTripsInput trip_members?: Prisma.trip_membersUncheckedCreateNestedManyWithoutTripsInput trip_photos?: Prisma.trip_photosUncheckedCreateNestedManyWithoutTripsInput } export type tripsCreateOrConnectWithoutBudget_category_orderInput = { where: Prisma.tripsWhereUniqueInput create: Prisma.XOR } export type tripsUpsertWithoutBudget_category_orderInput = { update: Prisma.XOR create: Prisma.XOR where?: Prisma.tripsWhereInput } export type tripsUpdateToOneWithWhereWithoutBudget_category_orderInput = { where?: Prisma.tripsWhereInput data: Prisma.XOR } export type tripsUpdateWithoutBudget_category_orderInput = { title?: Prisma.StringFieldUpdateOperationsInput | string description?: Prisma.NullableStringFieldUpdateOperationsInput | string | null start_date?: Prisma.NullableStringFieldUpdateOperationsInput | string | null end_date?: Prisma.NullableStringFieldUpdateOperationsInput | string | null currency?: Prisma.NullableStringFieldUpdateOperationsInput | string | null cover_image?: Prisma.NullableStringFieldUpdateOperationsInput | string | null is_archived?: Prisma.NullableIntFieldUpdateOperationsInput | number | null reminder_days?: Prisma.NullableIntFieldUpdateOperationsInput | number | null created_at?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null updated_at?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null budget_items?: Prisma.budget_itemsUpdateManyWithoutTripsNestedInput collab_messages?: Prisma.collab_messagesUpdateManyWithoutTripsNestedInput collab_notes?: Prisma.collab_notesUpdateManyWithoutTripsNestedInput collab_polls?: Prisma.collab_pollsUpdateManyWithoutTripsNestedInput day_accommodations?: Prisma.day_accommodationsUpdateManyWithoutTripsNestedInput day_notes?: Prisma.day_notesUpdateManyWithoutTripsNestedInput days?: Prisma.daysUpdateManyWithoutTripsNestedInput journey_entries?: Prisma.journey_entriesUpdateManyWithoutTripsNestedInput journey_trips?: Prisma.journey_tripsUpdateManyWithoutTripsNestedInput packing_bags?: Prisma.packing_bagsUpdateManyWithoutTripsNestedInput packing_category_assignees?: Prisma.packing_category_assigneesUpdateManyWithoutTripsNestedInput packing_items?: Prisma.packing_itemsUpdateManyWithoutTripsNestedInput photos?: Prisma.photosUpdateManyWithoutTripsNestedInput places?: Prisma.placesUpdateManyWithoutTripsNestedInput reservations?: Prisma.reservationsUpdateManyWithoutTripsNestedInput share_tokens?: Prisma.share_tokensUpdateManyWithoutTripsNestedInput todo_category_assignees?: Prisma.todo_category_assigneesUpdateManyWithoutTripsNestedInput todo_items?: Prisma.todo_itemsUpdateManyWithoutTripsNestedInput trip_album_links?: Prisma.trip_album_linksUpdateManyWithoutTripsNestedInput trip_files?: Prisma.trip_filesUpdateManyWithoutTripsNestedInput trip_members?: Prisma.trip_membersUpdateManyWithoutTripsNestedInput trip_photos?: Prisma.trip_photosUpdateManyWithoutTripsNestedInput users?: Prisma.usersUpdateOneRequiredWithoutTripsNestedInput } export type tripsUncheckedUpdateWithoutBudget_category_orderInput = { id?: Prisma.IntFieldUpdateOperationsInput | number user_id?: Prisma.IntFieldUpdateOperationsInput | number title?: Prisma.StringFieldUpdateOperationsInput | string description?: Prisma.NullableStringFieldUpdateOperationsInput | string | null start_date?: Prisma.NullableStringFieldUpdateOperationsInput | string | null end_date?: Prisma.NullableStringFieldUpdateOperationsInput | string | null currency?: Prisma.NullableStringFieldUpdateOperationsInput | string | null cover_image?: Prisma.NullableStringFieldUpdateOperationsInput | string | null is_archived?: Prisma.NullableIntFieldUpdateOperationsInput | number | null reminder_days?: Prisma.NullableIntFieldUpdateOperationsInput | number | null created_at?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null updated_at?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null budget_items?: Prisma.budget_itemsUncheckedUpdateManyWithoutTripsNestedInput collab_messages?: Prisma.collab_messagesUncheckedUpdateManyWithoutTripsNestedInput collab_notes?: Prisma.collab_notesUncheckedUpdateManyWithoutTripsNestedInput collab_polls?: Prisma.collab_pollsUncheckedUpdateManyWithoutTripsNestedInput day_accommodations?: Prisma.day_accommodationsUncheckedUpdateManyWithoutTripsNestedInput day_notes?: Prisma.day_notesUncheckedUpdateManyWithoutTripsNestedInput days?: Prisma.daysUncheckedUpdateManyWithoutTripsNestedInput journey_entries?: Prisma.journey_entriesUncheckedUpdateManyWithoutTripsNestedInput journey_trips?: Prisma.journey_tripsUncheckedUpdateManyWithoutTripsNestedInput packing_bags?: Prisma.packing_bagsUncheckedUpdateManyWithoutTripsNestedInput packing_category_assignees?: Prisma.packing_category_assigneesUncheckedUpdateManyWithoutTripsNestedInput packing_items?: Prisma.packing_itemsUncheckedUpdateManyWithoutTripsNestedInput photos?: Prisma.photosUncheckedUpdateManyWithoutTripsNestedInput places?: Prisma.placesUncheckedUpdateManyWithoutTripsNestedInput reservations?: Prisma.reservationsUncheckedUpdateManyWithoutTripsNestedInput share_tokens?: Prisma.share_tokensUncheckedUpdateManyWithoutTripsNestedInput todo_category_assignees?: Prisma.todo_category_assigneesUncheckedUpdateManyWithoutTripsNestedInput todo_items?: Prisma.todo_itemsUncheckedUpdateManyWithoutTripsNestedInput trip_album_links?: Prisma.trip_album_linksUncheckedUpdateManyWithoutTripsNestedInput trip_files?: Prisma.trip_filesUncheckedUpdateManyWithoutTripsNestedInput trip_members?: Prisma.trip_membersUncheckedUpdateManyWithoutTripsNestedInput trip_photos?: Prisma.trip_photosUncheckedUpdateManyWithoutTripsNestedInput } export type tripsCreateWithoutBudget_itemsInput = { title: string description?: string | null start_date?: string | null end_date?: string | null currency?: string | null cover_image?: string | null is_archived?: number | null reminder_days?: number | null created_at?: Date | string | null updated_at?: Date | string | null budget_category_order?: Prisma.budget_category_orderCreateNestedManyWithoutTripsInput collab_messages?: Prisma.collab_messagesCreateNestedManyWithoutTripsInput collab_notes?: Prisma.collab_notesCreateNestedManyWithoutTripsInput collab_polls?: Prisma.collab_pollsCreateNestedManyWithoutTripsInput day_accommodations?: Prisma.day_accommodationsCreateNestedManyWithoutTripsInput day_notes?: Prisma.day_notesCreateNestedManyWithoutTripsInput days?: Prisma.daysCreateNestedManyWithoutTripsInput journey_entries?: Prisma.journey_entriesCreateNestedManyWithoutTripsInput journey_trips?: Prisma.journey_tripsCreateNestedManyWithoutTripsInput packing_bags?: Prisma.packing_bagsCreateNestedManyWithoutTripsInput packing_category_assignees?: Prisma.packing_category_assigneesCreateNestedManyWithoutTripsInput packing_items?: Prisma.packing_itemsCreateNestedManyWithoutTripsInput photos?: Prisma.photosCreateNestedManyWithoutTripsInput places?: Prisma.placesCreateNestedManyWithoutTripsInput reservations?: Prisma.reservationsCreateNestedManyWithoutTripsInput share_tokens?: Prisma.share_tokensCreateNestedManyWithoutTripsInput todo_category_assignees?: Prisma.todo_category_assigneesCreateNestedManyWithoutTripsInput todo_items?: Prisma.todo_itemsCreateNestedManyWithoutTripsInput trip_album_links?: Prisma.trip_album_linksCreateNestedManyWithoutTripsInput trip_files?: Prisma.trip_filesCreateNestedManyWithoutTripsInput trip_members?: Prisma.trip_membersCreateNestedManyWithoutTripsInput trip_photos?: Prisma.trip_photosCreateNestedManyWithoutTripsInput users: Prisma.usersCreateNestedOneWithoutTripsInput } export type tripsUncheckedCreateWithoutBudget_itemsInput = { id?: number user_id: number title: string description?: string | null start_date?: string | null end_date?: string | null currency?: string | null cover_image?: string | null is_archived?: number | null reminder_days?: number | null created_at?: Date | string | null updated_at?: Date | string | null budget_category_order?: Prisma.budget_category_orderUncheckedCreateNestedManyWithoutTripsInput collab_messages?: Prisma.collab_messagesUncheckedCreateNestedManyWithoutTripsInput collab_notes?: Prisma.collab_notesUncheckedCreateNestedManyWithoutTripsInput collab_polls?: Prisma.collab_pollsUncheckedCreateNestedManyWithoutTripsInput day_accommodations?: Prisma.day_accommodationsUncheckedCreateNestedManyWithoutTripsInput day_notes?: Prisma.day_notesUncheckedCreateNestedManyWithoutTripsInput days?: Prisma.daysUncheckedCreateNestedManyWithoutTripsInput journey_entries?: Prisma.journey_entriesUncheckedCreateNestedManyWithoutTripsInput journey_trips?: Prisma.journey_tripsUncheckedCreateNestedManyWithoutTripsInput packing_bags?: Prisma.packing_bagsUncheckedCreateNestedManyWithoutTripsInput packing_category_assignees?: Prisma.packing_category_assigneesUncheckedCreateNestedManyWithoutTripsInput packing_items?: Prisma.packing_itemsUncheckedCreateNestedManyWithoutTripsInput photos?: Prisma.photosUncheckedCreateNestedManyWithoutTripsInput places?: Prisma.placesUncheckedCreateNestedManyWithoutTripsInput reservations?: Prisma.reservationsUncheckedCreateNestedManyWithoutTripsInput share_tokens?: Prisma.share_tokensUncheckedCreateNestedManyWithoutTripsInput todo_category_assignees?: Prisma.todo_category_assigneesUncheckedCreateNestedManyWithoutTripsInput todo_items?: Prisma.todo_itemsUncheckedCreateNestedManyWithoutTripsInput trip_album_links?: Prisma.trip_album_linksUncheckedCreateNestedManyWithoutTripsInput trip_files?: Prisma.trip_filesUncheckedCreateNestedManyWithoutTripsInput trip_members?: Prisma.trip_membersUncheckedCreateNestedManyWithoutTripsInput trip_photos?: Prisma.trip_photosUncheckedCreateNestedManyWithoutTripsInput } export type tripsCreateOrConnectWithoutBudget_itemsInput = { where: Prisma.tripsWhereUniqueInput create: Prisma.XOR } export type tripsUpsertWithoutBudget_itemsInput = { update: Prisma.XOR create: Prisma.XOR where?: Prisma.tripsWhereInput } export type tripsUpdateToOneWithWhereWithoutBudget_itemsInput = { where?: Prisma.tripsWhereInput data: Prisma.XOR } export type tripsUpdateWithoutBudget_itemsInput = { title?: Prisma.StringFieldUpdateOperationsInput | string description?: Prisma.NullableStringFieldUpdateOperationsInput | string | null start_date?: Prisma.NullableStringFieldUpdateOperationsInput | string | null end_date?: Prisma.NullableStringFieldUpdateOperationsInput | string | null currency?: Prisma.NullableStringFieldUpdateOperationsInput | string | null cover_image?: Prisma.NullableStringFieldUpdateOperationsInput | string | null is_archived?: Prisma.NullableIntFieldUpdateOperationsInput | number | null reminder_days?: Prisma.NullableIntFieldUpdateOperationsInput | number | null created_at?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null updated_at?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null budget_category_order?: Prisma.budget_category_orderUpdateManyWithoutTripsNestedInput collab_messages?: Prisma.collab_messagesUpdateManyWithoutTripsNestedInput collab_notes?: Prisma.collab_notesUpdateManyWithoutTripsNestedInput collab_polls?: Prisma.collab_pollsUpdateManyWithoutTripsNestedInput day_accommodations?: Prisma.day_accommodationsUpdateManyWithoutTripsNestedInput day_notes?: Prisma.day_notesUpdateManyWithoutTripsNestedInput days?: Prisma.daysUpdateManyWithoutTripsNestedInput journey_entries?: Prisma.journey_entriesUpdateManyWithoutTripsNestedInput journey_trips?: Prisma.journey_tripsUpdateManyWithoutTripsNestedInput packing_bags?: Prisma.packing_bagsUpdateManyWithoutTripsNestedInput packing_category_assignees?: Prisma.packing_category_assigneesUpdateManyWithoutTripsNestedInput packing_items?: Prisma.packing_itemsUpdateManyWithoutTripsNestedInput photos?: Prisma.photosUpdateManyWithoutTripsNestedInput places?: Prisma.placesUpdateManyWithoutTripsNestedInput reservations?: Prisma.reservationsUpdateManyWithoutTripsNestedInput share_tokens?: Prisma.share_tokensUpdateManyWithoutTripsNestedInput todo_category_assignees?: Prisma.todo_category_assigneesUpdateManyWithoutTripsNestedInput todo_items?: Prisma.todo_itemsUpdateManyWithoutTripsNestedInput trip_album_links?: Prisma.trip_album_linksUpdateManyWithoutTripsNestedInput trip_files?: Prisma.trip_filesUpdateManyWithoutTripsNestedInput trip_members?: Prisma.trip_membersUpdateManyWithoutTripsNestedInput trip_photos?: Prisma.trip_photosUpdateManyWithoutTripsNestedInput users?: Prisma.usersUpdateOneRequiredWithoutTripsNestedInput } export type tripsUncheckedUpdateWithoutBudget_itemsInput = { id?: Prisma.IntFieldUpdateOperationsInput | number user_id?: Prisma.IntFieldUpdateOperationsInput | number title?: Prisma.StringFieldUpdateOperationsInput | string description?: Prisma.NullableStringFieldUpdateOperationsInput | string | null start_date?: Prisma.NullableStringFieldUpdateOperationsInput | string | null end_date?: Prisma.NullableStringFieldUpdateOperationsInput | string | null currency?: Prisma.NullableStringFieldUpdateOperationsInput | string | null cover_image?: Prisma.NullableStringFieldUpdateOperationsInput | string | null is_archived?: Prisma.NullableIntFieldUpdateOperationsInput | number | null reminder_days?: Prisma.NullableIntFieldUpdateOperationsInput | number | null created_at?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null updated_at?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null budget_category_order?: Prisma.budget_category_orderUncheckedUpdateManyWithoutTripsNestedInput collab_messages?: Prisma.collab_messagesUncheckedUpdateManyWithoutTripsNestedInput collab_notes?: Prisma.collab_notesUncheckedUpdateManyWithoutTripsNestedInput collab_polls?: Prisma.collab_pollsUncheckedUpdateManyWithoutTripsNestedInput day_accommodations?: Prisma.day_accommodationsUncheckedUpdateManyWithoutTripsNestedInput day_notes?: Prisma.day_notesUncheckedUpdateManyWithoutTripsNestedInput days?: Prisma.daysUncheckedUpdateManyWithoutTripsNestedInput journey_entries?: Prisma.journey_entriesUncheckedUpdateManyWithoutTripsNestedInput journey_trips?: Prisma.journey_tripsUncheckedUpdateManyWithoutTripsNestedInput packing_bags?: Prisma.packing_bagsUncheckedUpdateManyWithoutTripsNestedInput packing_category_assignees?: Prisma.packing_category_assigneesUncheckedUpdateManyWithoutTripsNestedInput packing_items?: Prisma.packing_itemsUncheckedUpdateManyWithoutTripsNestedInput photos?: Prisma.photosUncheckedUpdateManyWithoutTripsNestedInput places?: Prisma.placesUncheckedUpdateManyWithoutTripsNestedInput reservations?: Prisma.reservationsUncheckedUpdateManyWithoutTripsNestedInput share_tokens?: Prisma.share_tokensUncheckedUpdateManyWithoutTripsNestedInput todo_category_assignees?: Prisma.todo_category_assigneesUncheckedUpdateManyWithoutTripsNestedInput todo_items?: Prisma.todo_itemsUncheckedUpdateManyWithoutTripsNestedInput trip_album_links?: Prisma.trip_album_linksUncheckedUpdateManyWithoutTripsNestedInput trip_files?: Prisma.trip_filesUncheckedUpdateManyWithoutTripsNestedInput trip_members?: Prisma.trip_membersUncheckedUpdateManyWithoutTripsNestedInput trip_photos?: Prisma.trip_photosUncheckedUpdateManyWithoutTripsNestedInput } export type tripsCreateWithoutCollab_messagesInput = { title: string description?: string | null start_date?: string | null end_date?: string | null currency?: string | null cover_image?: string | null is_archived?: number | null reminder_days?: number | null created_at?: Date | string | null updated_at?: Date | string | null budget_category_order?: Prisma.budget_category_orderCreateNestedManyWithoutTripsInput budget_items?: Prisma.budget_itemsCreateNestedManyWithoutTripsInput collab_notes?: Prisma.collab_notesCreateNestedManyWithoutTripsInput collab_polls?: Prisma.collab_pollsCreateNestedManyWithoutTripsInput day_accommodations?: Prisma.day_accommodationsCreateNestedManyWithoutTripsInput day_notes?: Prisma.day_notesCreateNestedManyWithoutTripsInput days?: Prisma.daysCreateNestedManyWithoutTripsInput journey_entries?: Prisma.journey_entriesCreateNestedManyWithoutTripsInput journey_trips?: Prisma.journey_tripsCreateNestedManyWithoutTripsInput packing_bags?: Prisma.packing_bagsCreateNestedManyWithoutTripsInput packing_category_assignees?: Prisma.packing_category_assigneesCreateNestedManyWithoutTripsInput packing_items?: Prisma.packing_itemsCreateNestedManyWithoutTripsInput photos?: Prisma.photosCreateNestedManyWithoutTripsInput places?: Prisma.placesCreateNestedManyWithoutTripsInput reservations?: Prisma.reservationsCreateNestedManyWithoutTripsInput share_tokens?: Prisma.share_tokensCreateNestedManyWithoutTripsInput todo_category_assignees?: Prisma.todo_category_assigneesCreateNestedManyWithoutTripsInput todo_items?: Prisma.todo_itemsCreateNestedManyWithoutTripsInput trip_album_links?: Prisma.trip_album_linksCreateNestedManyWithoutTripsInput trip_files?: Prisma.trip_filesCreateNestedManyWithoutTripsInput trip_members?: Prisma.trip_membersCreateNestedManyWithoutTripsInput trip_photos?: Prisma.trip_photosCreateNestedManyWithoutTripsInput users: Prisma.usersCreateNestedOneWithoutTripsInput } export type tripsUncheckedCreateWithoutCollab_messagesInput = { id?: number user_id: number title: string description?: string | null start_date?: string | null end_date?: string | null currency?: string | null cover_image?: string | null is_archived?: number | null reminder_days?: number | null created_at?: Date | string | null updated_at?: Date | string | null budget_category_order?: Prisma.budget_category_orderUncheckedCreateNestedManyWithoutTripsInput budget_items?: Prisma.budget_itemsUncheckedCreateNestedManyWithoutTripsInput collab_notes?: Prisma.collab_notesUncheckedCreateNestedManyWithoutTripsInput collab_polls?: Prisma.collab_pollsUncheckedCreateNestedManyWithoutTripsInput day_accommodations?: Prisma.day_accommodationsUncheckedCreateNestedManyWithoutTripsInput day_notes?: Prisma.day_notesUncheckedCreateNestedManyWithoutTripsInput days?: Prisma.daysUncheckedCreateNestedManyWithoutTripsInput journey_entries?: Prisma.journey_entriesUncheckedCreateNestedManyWithoutTripsInput journey_trips?: Prisma.journey_tripsUncheckedCreateNestedManyWithoutTripsInput packing_bags?: Prisma.packing_bagsUncheckedCreateNestedManyWithoutTripsInput packing_category_assignees?: Prisma.packing_category_assigneesUncheckedCreateNestedManyWithoutTripsInput packing_items?: Prisma.packing_itemsUncheckedCreateNestedManyWithoutTripsInput photos?: Prisma.photosUncheckedCreateNestedManyWithoutTripsInput places?: Prisma.placesUncheckedCreateNestedManyWithoutTripsInput reservations?: Prisma.reservationsUncheckedCreateNestedManyWithoutTripsInput share_tokens?: Prisma.share_tokensUncheckedCreateNestedManyWithoutTripsInput todo_category_assignees?: Prisma.todo_category_assigneesUncheckedCreateNestedManyWithoutTripsInput todo_items?: Prisma.todo_itemsUncheckedCreateNestedManyWithoutTripsInput trip_album_links?: Prisma.trip_album_linksUncheckedCreateNestedManyWithoutTripsInput trip_files?: Prisma.trip_filesUncheckedCreateNestedManyWithoutTripsInput trip_members?: Prisma.trip_membersUncheckedCreateNestedManyWithoutTripsInput trip_photos?: Prisma.trip_photosUncheckedCreateNestedManyWithoutTripsInput } export type tripsCreateOrConnectWithoutCollab_messagesInput = { where: Prisma.tripsWhereUniqueInput create: Prisma.XOR } export type tripsUpsertWithoutCollab_messagesInput = { update: Prisma.XOR create: Prisma.XOR where?: Prisma.tripsWhereInput } export type tripsUpdateToOneWithWhereWithoutCollab_messagesInput = { where?: Prisma.tripsWhereInput data: Prisma.XOR } export type tripsUpdateWithoutCollab_messagesInput = { title?: Prisma.StringFieldUpdateOperationsInput | string description?: Prisma.NullableStringFieldUpdateOperationsInput | string | null start_date?: Prisma.NullableStringFieldUpdateOperationsInput | string | null end_date?: Prisma.NullableStringFieldUpdateOperationsInput | string | null currency?: Prisma.NullableStringFieldUpdateOperationsInput | string | null cover_image?: Prisma.NullableStringFieldUpdateOperationsInput | string | null is_archived?: Prisma.NullableIntFieldUpdateOperationsInput | number | null reminder_days?: Prisma.NullableIntFieldUpdateOperationsInput | number | null created_at?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null updated_at?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null budget_category_order?: Prisma.budget_category_orderUpdateManyWithoutTripsNestedInput budget_items?: Prisma.budget_itemsUpdateManyWithoutTripsNestedInput collab_notes?: Prisma.collab_notesUpdateManyWithoutTripsNestedInput collab_polls?: Prisma.collab_pollsUpdateManyWithoutTripsNestedInput day_accommodations?: Prisma.day_accommodationsUpdateManyWithoutTripsNestedInput day_notes?: Prisma.day_notesUpdateManyWithoutTripsNestedInput days?: Prisma.daysUpdateManyWithoutTripsNestedInput journey_entries?: Prisma.journey_entriesUpdateManyWithoutTripsNestedInput journey_trips?: Prisma.journey_tripsUpdateManyWithoutTripsNestedInput packing_bags?: Prisma.packing_bagsUpdateManyWithoutTripsNestedInput packing_category_assignees?: Prisma.packing_category_assigneesUpdateManyWithoutTripsNestedInput packing_items?: Prisma.packing_itemsUpdateManyWithoutTripsNestedInput photos?: Prisma.photosUpdateManyWithoutTripsNestedInput places?: Prisma.placesUpdateManyWithoutTripsNestedInput reservations?: Prisma.reservationsUpdateManyWithoutTripsNestedInput share_tokens?: Prisma.share_tokensUpdateManyWithoutTripsNestedInput todo_category_assignees?: Prisma.todo_category_assigneesUpdateManyWithoutTripsNestedInput todo_items?: Prisma.todo_itemsUpdateManyWithoutTripsNestedInput trip_album_links?: Prisma.trip_album_linksUpdateManyWithoutTripsNestedInput trip_files?: Prisma.trip_filesUpdateManyWithoutTripsNestedInput trip_members?: Prisma.trip_membersUpdateManyWithoutTripsNestedInput trip_photos?: Prisma.trip_photosUpdateManyWithoutTripsNestedInput users?: Prisma.usersUpdateOneRequiredWithoutTripsNestedInput } export type tripsUncheckedUpdateWithoutCollab_messagesInput = { id?: Prisma.IntFieldUpdateOperationsInput | number user_id?: Prisma.IntFieldUpdateOperationsInput | number title?: Prisma.StringFieldUpdateOperationsInput | string description?: Prisma.NullableStringFieldUpdateOperationsInput | string | null start_date?: Prisma.NullableStringFieldUpdateOperationsInput | string | null end_date?: Prisma.NullableStringFieldUpdateOperationsInput | string | null currency?: Prisma.NullableStringFieldUpdateOperationsInput | string | null cover_image?: Prisma.NullableStringFieldUpdateOperationsInput | string | null is_archived?: Prisma.NullableIntFieldUpdateOperationsInput | number | null reminder_days?: Prisma.NullableIntFieldUpdateOperationsInput | number | null created_at?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null updated_at?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null budget_category_order?: Prisma.budget_category_orderUncheckedUpdateManyWithoutTripsNestedInput budget_items?: Prisma.budget_itemsUncheckedUpdateManyWithoutTripsNestedInput collab_notes?: Prisma.collab_notesUncheckedUpdateManyWithoutTripsNestedInput collab_polls?: Prisma.collab_pollsUncheckedUpdateManyWithoutTripsNestedInput day_accommodations?: Prisma.day_accommodationsUncheckedUpdateManyWithoutTripsNestedInput day_notes?: Prisma.day_notesUncheckedUpdateManyWithoutTripsNestedInput days?: Prisma.daysUncheckedUpdateManyWithoutTripsNestedInput journey_entries?: Prisma.journey_entriesUncheckedUpdateManyWithoutTripsNestedInput journey_trips?: Prisma.journey_tripsUncheckedUpdateManyWithoutTripsNestedInput packing_bags?: Prisma.packing_bagsUncheckedUpdateManyWithoutTripsNestedInput packing_category_assignees?: Prisma.packing_category_assigneesUncheckedUpdateManyWithoutTripsNestedInput packing_items?: Prisma.packing_itemsUncheckedUpdateManyWithoutTripsNestedInput photos?: Prisma.photosUncheckedUpdateManyWithoutTripsNestedInput places?: Prisma.placesUncheckedUpdateManyWithoutTripsNestedInput reservations?: Prisma.reservationsUncheckedUpdateManyWithoutTripsNestedInput share_tokens?: Prisma.share_tokensUncheckedUpdateManyWithoutTripsNestedInput todo_category_assignees?: Prisma.todo_category_assigneesUncheckedUpdateManyWithoutTripsNestedInput todo_items?: Prisma.todo_itemsUncheckedUpdateManyWithoutTripsNestedInput trip_album_links?: Prisma.trip_album_linksUncheckedUpdateManyWithoutTripsNestedInput trip_files?: Prisma.trip_filesUncheckedUpdateManyWithoutTripsNestedInput trip_members?: Prisma.trip_membersUncheckedUpdateManyWithoutTripsNestedInput trip_photos?: Prisma.trip_photosUncheckedUpdateManyWithoutTripsNestedInput } export type tripsCreateWithoutCollab_notesInput = { title: string description?: string | null start_date?: string | null end_date?: string | null currency?: string | null cover_image?: string | null is_archived?: number | null reminder_days?: number | null created_at?: Date | string | null updated_at?: Date | string | null budget_category_order?: Prisma.budget_category_orderCreateNestedManyWithoutTripsInput budget_items?: Prisma.budget_itemsCreateNestedManyWithoutTripsInput collab_messages?: Prisma.collab_messagesCreateNestedManyWithoutTripsInput collab_polls?: Prisma.collab_pollsCreateNestedManyWithoutTripsInput day_accommodations?: Prisma.day_accommodationsCreateNestedManyWithoutTripsInput day_notes?: Prisma.day_notesCreateNestedManyWithoutTripsInput days?: Prisma.daysCreateNestedManyWithoutTripsInput journey_entries?: Prisma.journey_entriesCreateNestedManyWithoutTripsInput journey_trips?: Prisma.journey_tripsCreateNestedManyWithoutTripsInput packing_bags?: Prisma.packing_bagsCreateNestedManyWithoutTripsInput packing_category_assignees?: Prisma.packing_category_assigneesCreateNestedManyWithoutTripsInput packing_items?: Prisma.packing_itemsCreateNestedManyWithoutTripsInput photos?: Prisma.photosCreateNestedManyWithoutTripsInput places?: Prisma.placesCreateNestedManyWithoutTripsInput reservations?: Prisma.reservationsCreateNestedManyWithoutTripsInput share_tokens?: Prisma.share_tokensCreateNestedManyWithoutTripsInput todo_category_assignees?: Prisma.todo_category_assigneesCreateNestedManyWithoutTripsInput todo_items?: Prisma.todo_itemsCreateNestedManyWithoutTripsInput trip_album_links?: Prisma.trip_album_linksCreateNestedManyWithoutTripsInput trip_files?: Prisma.trip_filesCreateNestedManyWithoutTripsInput trip_members?: Prisma.trip_membersCreateNestedManyWithoutTripsInput trip_photos?: Prisma.trip_photosCreateNestedManyWithoutTripsInput users: Prisma.usersCreateNestedOneWithoutTripsInput } export type tripsUncheckedCreateWithoutCollab_notesInput = { id?: number user_id: number title: string description?: string | null start_date?: string | null end_date?: string | null currency?: string | null cover_image?: string | null is_archived?: number | null reminder_days?: number | null created_at?: Date | string | null updated_at?: Date | string | null budget_category_order?: Prisma.budget_category_orderUncheckedCreateNestedManyWithoutTripsInput budget_items?: Prisma.budget_itemsUncheckedCreateNestedManyWithoutTripsInput collab_messages?: Prisma.collab_messagesUncheckedCreateNestedManyWithoutTripsInput collab_polls?: Prisma.collab_pollsUncheckedCreateNestedManyWithoutTripsInput day_accommodations?: Prisma.day_accommodationsUncheckedCreateNestedManyWithoutTripsInput day_notes?: Prisma.day_notesUncheckedCreateNestedManyWithoutTripsInput days?: Prisma.daysUncheckedCreateNestedManyWithoutTripsInput journey_entries?: Prisma.journey_entriesUncheckedCreateNestedManyWithoutTripsInput journey_trips?: Prisma.journey_tripsUncheckedCreateNestedManyWithoutTripsInput packing_bags?: Prisma.packing_bagsUncheckedCreateNestedManyWithoutTripsInput packing_category_assignees?: Prisma.packing_category_assigneesUncheckedCreateNestedManyWithoutTripsInput packing_items?: Prisma.packing_itemsUncheckedCreateNestedManyWithoutTripsInput photos?: Prisma.photosUncheckedCreateNestedManyWithoutTripsInput places?: Prisma.placesUncheckedCreateNestedManyWithoutTripsInput reservations?: Prisma.reservationsUncheckedCreateNestedManyWithoutTripsInput share_tokens?: Prisma.share_tokensUncheckedCreateNestedManyWithoutTripsInput todo_category_assignees?: Prisma.todo_category_assigneesUncheckedCreateNestedManyWithoutTripsInput todo_items?: Prisma.todo_itemsUncheckedCreateNestedManyWithoutTripsInput trip_album_links?: Prisma.trip_album_linksUncheckedCreateNestedManyWithoutTripsInput trip_files?: Prisma.trip_filesUncheckedCreateNestedManyWithoutTripsInput trip_members?: Prisma.trip_membersUncheckedCreateNestedManyWithoutTripsInput trip_photos?: Prisma.trip_photosUncheckedCreateNestedManyWithoutTripsInput } export type tripsCreateOrConnectWithoutCollab_notesInput = { where: Prisma.tripsWhereUniqueInput create: Prisma.XOR } export type tripsUpsertWithoutCollab_notesInput = { update: Prisma.XOR create: Prisma.XOR where?: Prisma.tripsWhereInput } export type tripsUpdateToOneWithWhereWithoutCollab_notesInput = { where?: Prisma.tripsWhereInput data: Prisma.XOR } export type tripsUpdateWithoutCollab_notesInput = { title?: Prisma.StringFieldUpdateOperationsInput | string description?: Prisma.NullableStringFieldUpdateOperationsInput | string | null start_date?: Prisma.NullableStringFieldUpdateOperationsInput | string | null end_date?: Prisma.NullableStringFieldUpdateOperationsInput | string | null currency?: Prisma.NullableStringFieldUpdateOperationsInput | string | null cover_image?: Prisma.NullableStringFieldUpdateOperationsInput | string | null is_archived?: Prisma.NullableIntFieldUpdateOperationsInput | number | null reminder_days?: Prisma.NullableIntFieldUpdateOperationsInput | number | null created_at?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null updated_at?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null budget_category_order?: Prisma.budget_category_orderUpdateManyWithoutTripsNestedInput budget_items?: Prisma.budget_itemsUpdateManyWithoutTripsNestedInput collab_messages?: Prisma.collab_messagesUpdateManyWithoutTripsNestedInput collab_polls?: Prisma.collab_pollsUpdateManyWithoutTripsNestedInput day_accommodations?: Prisma.day_accommodationsUpdateManyWithoutTripsNestedInput day_notes?: Prisma.day_notesUpdateManyWithoutTripsNestedInput days?: Prisma.daysUpdateManyWithoutTripsNestedInput journey_entries?: Prisma.journey_entriesUpdateManyWithoutTripsNestedInput journey_trips?: Prisma.journey_tripsUpdateManyWithoutTripsNestedInput packing_bags?: Prisma.packing_bagsUpdateManyWithoutTripsNestedInput packing_category_assignees?: Prisma.packing_category_assigneesUpdateManyWithoutTripsNestedInput packing_items?: Prisma.packing_itemsUpdateManyWithoutTripsNestedInput photos?: Prisma.photosUpdateManyWithoutTripsNestedInput places?: Prisma.placesUpdateManyWithoutTripsNestedInput reservations?: Prisma.reservationsUpdateManyWithoutTripsNestedInput share_tokens?: Prisma.share_tokensUpdateManyWithoutTripsNestedInput todo_category_assignees?: Prisma.todo_category_assigneesUpdateManyWithoutTripsNestedInput todo_items?: Prisma.todo_itemsUpdateManyWithoutTripsNestedInput trip_album_links?: Prisma.trip_album_linksUpdateManyWithoutTripsNestedInput trip_files?: Prisma.trip_filesUpdateManyWithoutTripsNestedInput trip_members?: Prisma.trip_membersUpdateManyWithoutTripsNestedInput trip_photos?: Prisma.trip_photosUpdateManyWithoutTripsNestedInput users?: Prisma.usersUpdateOneRequiredWithoutTripsNestedInput } export type tripsUncheckedUpdateWithoutCollab_notesInput = { id?: Prisma.IntFieldUpdateOperationsInput | number user_id?: Prisma.IntFieldUpdateOperationsInput | number title?: Prisma.StringFieldUpdateOperationsInput | string description?: Prisma.NullableStringFieldUpdateOperationsInput | string | null start_date?: Prisma.NullableStringFieldUpdateOperationsInput | string | null end_date?: Prisma.NullableStringFieldUpdateOperationsInput | string | null currency?: Prisma.NullableStringFieldUpdateOperationsInput | string | null cover_image?: Prisma.NullableStringFieldUpdateOperationsInput | string | null is_archived?: Prisma.NullableIntFieldUpdateOperationsInput | number | null reminder_days?: Prisma.NullableIntFieldUpdateOperationsInput | number | null created_at?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null updated_at?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null budget_category_order?: Prisma.budget_category_orderUncheckedUpdateManyWithoutTripsNestedInput budget_items?: Prisma.budget_itemsUncheckedUpdateManyWithoutTripsNestedInput collab_messages?: Prisma.collab_messagesUncheckedUpdateManyWithoutTripsNestedInput collab_polls?: Prisma.collab_pollsUncheckedUpdateManyWithoutTripsNestedInput day_accommodations?: Prisma.day_accommodationsUncheckedUpdateManyWithoutTripsNestedInput day_notes?: Prisma.day_notesUncheckedUpdateManyWithoutTripsNestedInput days?: Prisma.daysUncheckedUpdateManyWithoutTripsNestedInput journey_entries?: Prisma.journey_entriesUncheckedUpdateManyWithoutTripsNestedInput journey_trips?: Prisma.journey_tripsUncheckedUpdateManyWithoutTripsNestedInput packing_bags?: Prisma.packing_bagsUncheckedUpdateManyWithoutTripsNestedInput packing_category_assignees?: Prisma.packing_category_assigneesUncheckedUpdateManyWithoutTripsNestedInput packing_items?: Prisma.packing_itemsUncheckedUpdateManyWithoutTripsNestedInput photos?: Prisma.photosUncheckedUpdateManyWithoutTripsNestedInput places?: Prisma.placesUncheckedUpdateManyWithoutTripsNestedInput reservations?: Prisma.reservationsUncheckedUpdateManyWithoutTripsNestedInput share_tokens?: Prisma.share_tokensUncheckedUpdateManyWithoutTripsNestedInput todo_category_assignees?: Prisma.todo_category_assigneesUncheckedUpdateManyWithoutTripsNestedInput todo_items?: Prisma.todo_itemsUncheckedUpdateManyWithoutTripsNestedInput trip_album_links?: Prisma.trip_album_linksUncheckedUpdateManyWithoutTripsNestedInput trip_files?: Prisma.trip_filesUncheckedUpdateManyWithoutTripsNestedInput trip_members?: Prisma.trip_membersUncheckedUpdateManyWithoutTripsNestedInput trip_photos?: Prisma.trip_photosUncheckedUpdateManyWithoutTripsNestedInput } export type tripsCreateWithoutCollab_pollsInput = { title: string description?: string | null start_date?: string | null end_date?: string | null currency?: string | null cover_image?: string | null is_archived?: number | null reminder_days?: number | null created_at?: Date | string | null updated_at?: Date | string | null budget_category_order?: Prisma.budget_category_orderCreateNestedManyWithoutTripsInput budget_items?: Prisma.budget_itemsCreateNestedManyWithoutTripsInput collab_messages?: Prisma.collab_messagesCreateNestedManyWithoutTripsInput collab_notes?: Prisma.collab_notesCreateNestedManyWithoutTripsInput day_accommodations?: Prisma.day_accommodationsCreateNestedManyWithoutTripsInput day_notes?: Prisma.day_notesCreateNestedManyWithoutTripsInput days?: Prisma.daysCreateNestedManyWithoutTripsInput journey_entries?: Prisma.journey_entriesCreateNestedManyWithoutTripsInput journey_trips?: Prisma.journey_tripsCreateNestedManyWithoutTripsInput packing_bags?: Prisma.packing_bagsCreateNestedManyWithoutTripsInput packing_category_assignees?: Prisma.packing_category_assigneesCreateNestedManyWithoutTripsInput packing_items?: Prisma.packing_itemsCreateNestedManyWithoutTripsInput photos?: Prisma.photosCreateNestedManyWithoutTripsInput places?: Prisma.placesCreateNestedManyWithoutTripsInput reservations?: Prisma.reservationsCreateNestedManyWithoutTripsInput share_tokens?: Prisma.share_tokensCreateNestedManyWithoutTripsInput todo_category_assignees?: Prisma.todo_category_assigneesCreateNestedManyWithoutTripsInput todo_items?: Prisma.todo_itemsCreateNestedManyWithoutTripsInput trip_album_links?: Prisma.trip_album_linksCreateNestedManyWithoutTripsInput trip_files?: Prisma.trip_filesCreateNestedManyWithoutTripsInput trip_members?: Prisma.trip_membersCreateNestedManyWithoutTripsInput trip_photos?: Prisma.trip_photosCreateNestedManyWithoutTripsInput users: Prisma.usersCreateNestedOneWithoutTripsInput } export type tripsUncheckedCreateWithoutCollab_pollsInput = { id?: number user_id: number title: string description?: string | null start_date?: string | null end_date?: string | null currency?: string | null cover_image?: string | null is_archived?: number | null reminder_days?: number | null created_at?: Date | string | null updated_at?: Date | string | null budget_category_order?: Prisma.budget_category_orderUncheckedCreateNestedManyWithoutTripsInput budget_items?: Prisma.budget_itemsUncheckedCreateNestedManyWithoutTripsInput collab_messages?: Prisma.collab_messagesUncheckedCreateNestedManyWithoutTripsInput collab_notes?: Prisma.collab_notesUncheckedCreateNestedManyWithoutTripsInput day_accommodations?: Prisma.day_accommodationsUncheckedCreateNestedManyWithoutTripsInput day_notes?: Prisma.day_notesUncheckedCreateNestedManyWithoutTripsInput days?: Prisma.daysUncheckedCreateNestedManyWithoutTripsInput journey_entries?: Prisma.journey_entriesUncheckedCreateNestedManyWithoutTripsInput journey_trips?: Prisma.journey_tripsUncheckedCreateNestedManyWithoutTripsInput packing_bags?: Prisma.packing_bagsUncheckedCreateNestedManyWithoutTripsInput packing_category_assignees?: Prisma.packing_category_assigneesUncheckedCreateNestedManyWithoutTripsInput packing_items?: Prisma.packing_itemsUncheckedCreateNestedManyWithoutTripsInput photos?: Prisma.photosUncheckedCreateNestedManyWithoutTripsInput places?: Prisma.placesUncheckedCreateNestedManyWithoutTripsInput reservations?: Prisma.reservationsUncheckedCreateNestedManyWithoutTripsInput share_tokens?: Prisma.share_tokensUncheckedCreateNestedManyWithoutTripsInput todo_category_assignees?: Prisma.todo_category_assigneesUncheckedCreateNestedManyWithoutTripsInput todo_items?: Prisma.todo_itemsUncheckedCreateNestedManyWithoutTripsInput trip_album_links?: Prisma.trip_album_linksUncheckedCreateNestedManyWithoutTripsInput trip_files?: Prisma.trip_filesUncheckedCreateNestedManyWithoutTripsInput trip_members?: Prisma.trip_membersUncheckedCreateNestedManyWithoutTripsInput trip_photos?: Prisma.trip_photosUncheckedCreateNestedManyWithoutTripsInput } export type tripsCreateOrConnectWithoutCollab_pollsInput = { where: Prisma.tripsWhereUniqueInput create: Prisma.XOR } export type tripsUpsertWithoutCollab_pollsInput = { update: Prisma.XOR create: Prisma.XOR where?: Prisma.tripsWhereInput } export type tripsUpdateToOneWithWhereWithoutCollab_pollsInput = { where?: Prisma.tripsWhereInput data: Prisma.XOR } export type tripsUpdateWithoutCollab_pollsInput = { title?: Prisma.StringFieldUpdateOperationsInput | string description?: Prisma.NullableStringFieldUpdateOperationsInput | string | null start_date?: Prisma.NullableStringFieldUpdateOperationsInput | string | null end_date?: Prisma.NullableStringFieldUpdateOperationsInput | string | null currency?: Prisma.NullableStringFieldUpdateOperationsInput | string | null cover_image?: Prisma.NullableStringFieldUpdateOperationsInput | string | null is_archived?: Prisma.NullableIntFieldUpdateOperationsInput | number | null reminder_days?: Prisma.NullableIntFieldUpdateOperationsInput | number | null created_at?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null updated_at?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null budget_category_order?: Prisma.budget_category_orderUpdateManyWithoutTripsNestedInput budget_items?: Prisma.budget_itemsUpdateManyWithoutTripsNestedInput collab_messages?: Prisma.collab_messagesUpdateManyWithoutTripsNestedInput collab_notes?: Prisma.collab_notesUpdateManyWithoutTripsNestedInput day_accommodations?: Prisma.day_accommodationsUpdateManyWithoutTripsNestedInput day_notes?: Prisma.day_notesUpdateManyWithoutTripsNestedInput days?: Prisma.daysUpdateManyWithoutTripsNestedInput journey_entries?: Prisma.journey_entriesUpdateManyWithoutTripsNestedInput journey_trips?: Prisma.journey_tripsUpdateManyWithoutTripsNestedInput packing_bags?: Prisma.packing_bagsUpdateManyWithoutTripsNestedInput packing_category_assignees?: Prisma.packing_category_assigneesUpdateManyWithoutTripsNestedInput packing_items?: Prisma.packing_itemsUpdateManyWithoutTripsNestedInput photos?: Prisma.photosUpdateManyWithoutTripsNestedInput places?: Prisma.placesUpdateManyWithoutTripsNestedInput reservations?: Prisma.reservationsUpdateManyWithoutTripsNestedInput share_tokens?: Prisma.share_tokensUpdateManyWithoutTripsNestedInput todo_category_assignees?: Prisma.todo_category_assigneesUpdateManyWithoutTripsNestedInput todo_items?: Prisma.todo_itemsUpdateManyWithoutTripsNestedInput trip_album_links?: Prisma.trip_album_linksUpdateManyWithoutTripsNestedInput trip_files?: Prisma.trip_filesUpdateManyWithoutTripsNestedInput trip_members?: Prisma.trip_membersUpdateManyWithoutTripsNestedInput trip_photos?: Prisma.trip_photosUpdateManyWithoutTripsNestedInput users?: Prisma.usersUpdateOneRequiredWithoutTripsNestedInput } export type tripsUncheckedUpdateWithoutCollab_pollsInput = { id?: Prisma.IntFieldUpdateOperationsInput | number user_id?: Prisma.IntFieldUpdateOperationsInput | number title?: Prisma.StringFieldUpdateOperationsInput | string description?: Prisma.NullableStringFieldUpdateOperationsInput | string | null start_date?: Prisma.NullableStringFieldUpdateOperationsInput | string | null end_date?: Prisma.NullableStringFieldUpdateOperationsInput | string | null currency?: Prisma.NullableStringFieldUpdateOperationsInput | string | null cover_image?: Prisma.NullableStringFieldUpdateOperationsInput | string | null is_archived?: Prisma.NullableIntFieldUpdateOperationsInput | number | null reminder_days?: Prisma.NullableIntFieldUpdateOperationsInput | number | null created_at?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null updated_at?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null budget_category_order?: Prisma.budget_category_orderUncheckedUpdateManyWithoutTripsNestedInput budget_items?: Prisma.budget_itemsUncheckedUpdateManyWithoutTripsNestedInput collab_messages?: Prisma.collab_messagesUncheckedUpdateManyWithoutTripsNestedInput collab_notes?: Prisma.collab_notesUncheckedUpdateManyWithoutTripsNestedInput day_accommodations?: Prisma.day_accommodationsUncheckedUpdateManyWithoutTripsNestedInput day_notes?: Prisma.day_notesUncheckedUpdateManyWithoutTripsNestedInput days?: Prisma.daysUncheckedUpdateManyWithoutTripsNestedInput journey_entries?: Prisma.journey_entriesUncheckedUpdateManyWithoutTripsNestedInput journey_trips?: Prisma.journey_tripsUncheckedUpdateManyWithoutTripsNestedInput packing_bags?: Prisma.packing_bagsUncheckedUpdateManyWithoutTripsNestedInput packing_category_assignees?: Prisma.packing_category_assigneesUncheckedUpdateManyWithoutTripsNestedInput packing_items?: Prisma.packing_itemsUncheckedUpdateManyWithoutTripsNestedInput photos?: Prisma.photosUncheckedUpdateManyWithoutTripsNestedInput places?: Prisma.placesUncheckedUpdateManyWithoutTripsNestedInput reservations?: Prisma.reservationsUncheckedUpdateManyWithoutTripsNestedInput share_tokens?: Prisma.share_tokensUncheckedUpdateManyWithoutTripsNestedInput todo_category_assignees?: Prisma.todo_category_assigneesUncheckedUpdateManyWithoutTripsNestedInput todo_items?: Prisma.todo_itemsUncheckedUpdateManyWithoutTripsNestedInput trip_album_links?: Prisma.trip_album_linksUncheckedUpdateManyWithoutTripsNestedInput trip_files?: Prisma.trip_filesUncheckedUpdateManyWithoutTripsNestedInput trip_members?: Prisma.trip_membersUncheckedUpdateManyWithoutTripsNestedInput trip_photos?: Prisma.trip_photosUncheckedUpdateManyWithoutTripsNestedInput } export type tripsCreateWithoutDay_accommodationsInput = { title: string description?: string | null start_date?: string | null end_date?: string | null currency?: string | null cover_image?: string | null is_archived?: number | null reminder_days?: number | null created_at?: Date | string | null updated_at?: Date | string | null budget_category_order?: Prisma.budget_category_orderCreateNestedManyWithoutTripsInput budget_items?: Prisma.budget_itemsCreateNestedManyWithoutTripsInput collab_messages?: Prisma.collab_messagesCreateNestedManyWithoutTripsInput collab_notes?: Prisma.collab_notesCreateNestedManyWithoutTripsInput collab_polls?: Prisma.collab_pollsCreateNestedManyWithoutTripsInput day_notes?: Prisma.day_notesCreateNestedManyWithoutTripsInput days?: Prisma.daysCreateNestedManyWithoutTripsInput journey_entries?: Prisma.journey_entriesCreateNestedManyWithoutTripsInput journey_trips?: Prisma.journey_tripsCreateNestedManyWithoutTripsInput packing_bags?: Prisma.packing_bagsCreateNestedManyWithoutTripsInput packing_category_assignees?: Prisma.packing_category_assigneesCreateNestedManyWithoutTripsInput packing_items?: Prisma.packing_itemsCreateNestedManyWithoutTripsInput photos?: Prisma.photosCreateNestedManyWithoutTripsInput places?: Prisma.placesCreateNestedManyWithoutTripsInput reservations?: Prisma.reservationsCreateNestedManyWithoutTripsInput share_tokens?: Prisma.share_tokensCreateNestedManyWithoutTripsInput todo_category_assignees?: Prisma.todo_category_assigneesCreateNestedManyWithoutTripsInput todo_items?: Prisma.todo_itemsCreateNestedManyWithoutTripsInput trip_album_links?: Prisma.trip_album_linksCreateNestedManyWithoutTripsInput trip_files?: Prisma.trip_filesCreateNestedManyWithoutTripsInput trip_members?: Prisma.trip_membersCreateNestedManyWithoutTripsInput trip_photos?: Prisma.trip_photosCreateNestedManyWithoutTripsInput users: Prisma.usersCreateNestedOneWithoutTripsInput } export type tripsUncheckedCreateWithoutDay_accommodationsInput = { id?: number user_id: number title: string description?: string | null start_date?: string | null end_date?: string | null currency?: string | null cover_image?: string | null is_archived?: number | null reminder_days?: number | null created_at?: Date | string | null updated_at?: Date | string | null budget_category_order?: Prisma.budget_category_orderUncheckedCreateNestedManyWithoutTripsInput budget_items?: Prisma.budget_itemsUncheckedCreateNestedManyWithoutTripsInput collab_messages?: Prisma.collab_messagesUncheckedCreateNestedManyWithoutTripsInput collab_notes?: Prisma.collab_notesUncheckedCreateNestedManyWithoutTripsInput collab_polls?: Prisma.collab_pollsUncheckedCreateNestedManyWithoutTripsInput day_notes?: Prisma.day_notesUncheckedCreateNestedManyWithoutTripsInput days?: Prisma.daysUncheckedCreateNestedManyWithoutTripsInput journey_entries?: Prisma.journey_entriesUncheckedCreateNestedManyWithoutTripsInput journey_trips?: Prisma.journey_tripsUncheckedCreateNestedManyWithoutTripsInput packing_bags?: Prisma.packing_bagsUncheckedCreateNestedManyWithoutTripsInput packing_category_assignees?: Prisma.packing_category_assigneesUncheckedCreateNestedManyWithoutTripsInput packing_items?: Prisma.packing_itemsUncheckedCreateNestedManyWithoutTripsInput photos?: Prisma.photosUncheckedCreateNestedManyWithoutTripsInput places?: Prisma.placesUncheckedCreateNestedManyWithoutTripsInput reservations?: Prisma.reservationsUncheckedCreateNestedManyWithoutTripsInput share_tokens?: Prisma.share_tokensUncheckedCreateNestedManyWithoutTripsInput todo_category_assignees?: Prisma.todo_category_assigneesUncheckedCreateNestedManyWithoutTripsInput todo_items?: Prisma.todo_itemsUncheckedCreateNestedManyWithoutTripsInput trip_album_links?: Prisma.trip_album_linksUncheckedCreateNestedManyWithoutTripsInput trip_files?: Prisma.trip_filesUncheckedCreateNestedManyWithoutTripsInput trip_members?: Prisma.trip_membersUncheckedCreateNestedManyWithoutTripsInput trip_photos?: Prisma.trip_photosUncheckedCreateNestedManyWithoutTripsInput } export type tripsCreateOrConnectWithoutDay_accommodationsInput = { where: Prisma.tripsWhereUniqueInput create: Prisma.XOR } export type tripsUpsertWithoutDay_accommodationsInput = { update: Prisma.XOR create: Prisma.XOR where?: Prisma.tripsWhereInput } export type tripsUpdateToOneWithWhereWithoutDay_accommodationsInput = { where?: Prisma.tripsWhereInput data: Prisma.XOR } export type tripsUpdateWithoutDay_accommodationsInput = { title?: Prisma.StringFieldUpdateOperationsInput | string description?: Prisma.NullableStringFieldUpdateOperationsInput | string | null start_date?: Prisma.NullableStringFieldUpdateOperationsInput | string | null end_date?: Prisma.NullableStringFieldUpdateOperationsInput | string | null currency?: Prisma.NullableStringFieldUpdateOperationsInput | string | null cover_image?: Prisma.NullableStringFieldUpdateOperationsInput | string | null is_archived?: Prisma.NullableIntFieldUpdateOperationsInput | number | null reminder_days?: Prisma.NullableIntFieldUpdateOperationsInput | number | null created_at?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null updated_at?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null budget_category_order?: Prisma.budget_category_orderUpdateManyWithoutTripsNestedInput budget_items?: Prisma.budget_itemsUpdateManyWithoutTripsNestedInput collab_messages?: Prisma.collab_messagesUpdateManyWithoutTripsNestedInput collab_notes?: Prisma.collab_notesUpdateManyWithoutTripsNestedInput collab_polls?: Prisma.collab_pollsUpdateManyWithoutTripsNestedInput day_notes?: Prisma.day_notesUpdateManyWithoutTripsNestedInput days?: Prisma.daysUpdateManyWithoutTripsNestedInput journey_entries?: Prisma.journey_entriesUpdateManyWithoutTripsNestedInput journey_trips?: Prisma.journey_tripsUpdateManyWithoutTripsNestedInput packing_bags?: Prisma.packing_bagsUpdateManyWithoutTripsNestedInput packing_category_assignees?: Prisma.packing_category_assigneesUpdateManyWithoutTripsNestedInput packing_items?: Prisma.packing_itemsUpdateManyWithoutTripsNestedInput photos?: Prisma.photosUpdateManyWithoutTripsNestedInput places?: Prisma.placesUpdateManyWithoutTripsNestedInput reservations?: Prisma.reservationsUpdateManyWithoutTripsNestedInput share_tokens?: Prisma.share_tokensUpdateManyWithoutTripsNestedInput todo_category_assignees?: Prisma.todo_category_assigneesUpdateManyWithoutTripsNestedInput todo_items?: Prisma.todo_itemsUpdateManyWithoutTripsNestedInput trip_album_links?: Prisma.trip_album_linksUpdateManyWithoutTripsNestedInput trip_files?: Prisma.trip_filesUpdateManyWithoutTripsNestedInput trip_members?: Prisma.trip_membersUpdateManyWithoutTripsNestedInput trip_photos?: Prisma.trip_photosUpdateManyWithoutTripsNestedInput users?: Prisma.usersUpdateOneRequiredWithoutTripsNestedInput } export type tripsUncheckedUpdateWithoutDay_accommodationsInput = { id?: Prisma.IntFieldUpdateOperationsInput | number user_id?: Prisma.IntFieldUpdateOperationsInput | number title?: Prisma.StringFieldUpdateOperationsInput | string description?: Prisma.NullableStringFieldUpdateOperationsInput | string | null start_date?: Prisma.NullableStringFieldUpdateOperationsInput | string | null end_date?: Prisma.NullableStringFieldUpdateOperationsInput | string | null currency?: Prisma.NullableStringFieldUpdateOperationsInput | string | null cover_image?: Prisma.NullableStringFieldUpdateOperationsInput | string | null is_archived?: Prisma.NullableIntFieldUpdateOperationsInput | number | null reminder_days?: Prisma.NullableIntFieldUpdateOperationsInput | number | null created_at?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null updated_at?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null budget_category_order?: Prisma.budget_category_orderUncheckedUpdateManyWithoutTripsNestedInput budget_items?: Prisma.budget_itemsUncheckedUpdateManyWithoutTripsNestedInput collab_messages?: Prisma.collab_messagesUncheckedUpdateManyWithoutTripsNestedInput collab_notes?: Prisma.collab_notesUncheckedUpdateManyWithoutTripsNestedInput collab_polls?: Prisma.collab_pollsUncheckedUpdateManyWithoutTripsNestedInput day_notes?: Prisma.day_notesUncheckedUpdateManyWithoutTripsNestedInput days?: Prisma.daysUncheckedUpdateManyWithoutTripsNestedInput journey_entries?: Prisma.journey_entriesUncheckedUpdateManyWithoutTripsNestedInput journey_trips?: Prisma.journey_tripsUncheckedUpdateManyWithoutTripsNestedInput packing_bags?: Prisma.packing_bagsUncheckedUpdateManyWithoutTripsNestedInput packing_category_assignees?: Prisma.packing_category_assigneesUncheckedUpdateManyWithoutTripsNestedInput packing_items?: Prisma.packing_itemsUncheckedUpdateManyWithoutTripsNestedInput photos?: Prisma.photosUncheckedUpdateManyWithoutTripsNestedInput places?: Prisma.placesUncheckedUpdateManyWithoutTripsNestedInput reservations?: Prisma.reservationsUncheckedUpdateManyWithoutTripsNestedInput share_tokens?: Prisma.share_tokensUncheckedUpdateManyWithoutTripsNestedInput todo_category_assignees?: Prisma.todo_category_assigneesUncheckedUpdateManyWithoutTripsNestedInput todo_items?: Prisma.todo_itemsUncheckedUpdateManyWithoutTripsNestedInput trip_album_links?: Prisma.trip_album_linksUncheckedUpdateManyWithoutTripsNestedInput trip_files?: Prisma.trip_filesUncheckedUpdateManyWithoutTripsNestedInput trip_members?: Prisma.trip_membersUncheckedUpdateManyWithoutTripsNestedInput trip_photos?: Prisma.trip_photosUncheckedUpdateManyWithoutTripsNestedInput } export type tripsCreateWithoutDay_notesInput = { title: string description?: string | null start_date?: string | null end_date?: string | null currency?: string | null cover_image?: string | null is_archived?: number | null reminder_days?: number | null created_at?: Date | string | null updated_at?: Date | string | null budget_category_order?: Prisma.budget_category_orderCreateNestedManyWithoutTripsInput budget_items?: Prisma.budget_itemsCreateNestedManyWithoutTripsInput collab_messages?: Prisma.collab_messagesCreateNestedManyWithoutTripsInput collab_notes?: Prisma.collab_notesCreateNestedManyWithoutTripsInput collab_polls?: Prisma.collab_pollsCreateNestedManyWithoutTripsInput day_accommodations?: Prisma.day_accommodationsCreateNestedManyWithoutTripsInput days?: Prisma.daysCreateNestedManyWithoutTripsInput journey_entries?: Prisma.journey_entriesCreateNestedManyWithoutTripsInput journey_trips?: Prisma.journey_tripsCreateNestedManyWithoutTripsInput packing_bags?: Prisma.packing_bagsCreateNestedManyWithoutTripsInput packing_category_assignees?: Prisma.packing_category_assigneesCreateNestedManyWithoutTripsInput packing_items?: Prisma.packing_itemsCreateNestedManyWithoutTripsInput photos?: Prisma.photosCreateNestedManyWithoutTripsInput places?: Prisma.placesCreateNestedManyWithoutTripsInput reservations?: Prisma.reservationsCreateNestedManyWithoutTripsInput share_tokens?: Prisma.share_tokensCreateNestedManyWithoutTripsInput todo_category_assignees?: Prisma.todo_category_assigneesCreateNestedManyWithoutTripsInput todo_items?: Prisma.todo_itemsCreateNestedManyWithoutTripsInput trip_album_links?: Prisma.trip_album_linksCreateNestedManyWithoutTripsInput trip_files?: Prisma.trip_filesCreateNestedManyWithoutTripsInput trip_members?: Prisma.trip_membersCreateNestedManyWithoutTripsInput trip_photos?: Prisma.trip_photosCreateNestedManyWithoutTripsInput users: Prisma.usersCreateNestedOneWithoutTripsInput } export type tripsUncheckedCreateWithoutDay_notesInput = { id?: number user_id: number title: string description?: string | null start_date?: string | null end_date?: string | null currency?: string | null cover_image?: string | null is_archived?: number | null reminder_days?: number | null created_at?: Date | string | null updated_at?: Date | string | null budget_category_order?: Prisma.budget_category_orderUncheckedCreateNestedManyWithoutTripsInput budget_items?: Prisma.budget_itemsUncheckedCreateNestedManyWithoutTripsInput collab_messages?: Prisma.collab_messagesUncheckedCreateNestedManyWithoutTripsInput collab_notes?: Prisma.collab_notesUncheckedCreateNestedManyWithoutTripsInput collab_polls?: Prisma.collab_pollsUncheckedCreateNestedManyWithoutTripsInput day_accommodations?: Prisma.day_accommodationsUncheckedCreateNestedManyWithoutTripsInput days?: Prisma.daysUncheckedCreateNestedManyWithoutTripsInput journey_entries?: Prisma.journey_entriesUncheckedCreateNestedManyWithoutTripsInput journey_trips?: Prisma.journey_tripsUncheckedCreateNestedManyWithoutTripsInput packing_bags?: Prisma.packing_bagsUncheckedCreateNestedManyWithoutTripsInput packing_category_assignees?: Prisma.packing_category_assigneesUncheckedCreateNestedManyWithoutTripsInput packing_items?: Prisma.packing_itemsUncheckedCreateNestedManyWithoutTripsInput photos?: Prisma.photosUncheckedCreateNestedManyWithoutTripsInput places?: Prisma.placesUncheckedCreateNestedManyWithoutTripsInput reservations?: Prisma.reservationsUncheckedCreateNestedManyWithoutTripsInput share_tokens?: Prisma.share_tokensUncheckedCreateNestedManyWithoutTripsInput todo_category_assignees?: Prisma.todo_category_assigneesUncheckedCreateNestedManyWithoutTripsInput todo_items?: Prisma.todo_itemsUncheckedCreateNestedManyWithoutTripsInput trip_album_links?: Prisma.trip_album_linksUncheckedCreateNestedManyWithoutTripsInput trip_files?: Prisma.trip_filesUncheckedCreateNestedManyWithoutTripsInput trip_members?: Prisma.trip_membersUncheckedCreateNestedManyWithoutTripsInput trip_photos?: Prisma.trip_photosUncheckedCreateNestedManyWithoutTripsInput } export type tripsCreateOrConnectWithoutDay_notesInput = { where: Prisma.tripsWhereUniqueInput create: Prisma.XOR } export type tripsUpsertWithoutDay_notesInput = { update: Prisma.XOR create: Prisma.XOR where?: Prisma.tripsWhereInput } export type tripsUpdateToOneWithWhereWithoutDay_notesInput = { where?: Prisma.tripsWhereInput data: Prisma.XOR } export type tripsUpdateWithoutDay_notesInput = { title?: Prisma.StringFieldUpdateOperationsInput | string description?: Prisma.NullableStringFieldUpdateOperationsInput | string | null start_date?: Prisma.NullableStringFieldUpdateOperationsInput | string | null end_date?: Prisma.NullableStringFieldUpdateOperationsInput | string | null currency?: Prisma.NullableStringFieldUpdateOperationsInput | string | null cover_image?: Prisma.NullableStringFieldUpdateOperationsInput | string | null is_archived?: Prisma.NullableIntFieldUpdateOperationsInput | number | null reminder_days?: Prisma.NullableIntFieldUpdateOperationsInput | number | null created_at?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null updated_at?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null budget_category_order?: Prisma.budget_category_orderUpdateManyWithoutTripsNestedInput budget_items?: Prisma.budget_itemsUpdateManyWithoutTripsNestedInput collab_messages?: Prisma.collab_messagesUpdateManyWithoutTripsNestedInput collab_notes?: Prisma.collab_notesUpdateManyWithoutTripsNestedInput collab_polls?: Prisma.collab_pollsUpdateManyWithoutTripsNestedInput day_accommodations?: Prisma.day_accommodationsUpdateManyWithoutTripsNestedInput days?: Prisma.daysUpdateManyWithoutTripsNestedInput journey_entries?: Prisma.journey_entriesUpdateManyWithoutTripsNestedInput journey_trips?: Prisma.journey_tripsUpdateManyWithoutTripsNestedInput packing_bags?: Prisma.packing_bagsUpdateManyWithoutTripsNestedInput packing_category_assignees?: Prisma.packing_category_assigneesUpdateManyWithoutTripsNestedInput packing_items?: Prisma.packing_itemsUpdateManyWithoutTripsNestedInput photos?: Prisma.photosUpdateManyWithoutTripsNestedInput places?: Prisma.placesUpdateManyWithoutTripsNestedInput reservations?: Prisma.reservationsUpdateManyWithoutTripsNestedInput share_tokens?: Prisma.share_tokensUpdateManyWithoutTripsNestedInput todo_category_assignees?: Prisma.todo_category_assigneesUpdateManyWithoutTripsNestedInput todo_items?: Prisma.todo_itemsUpdateManyWithoutTripsNestedInput trip_album_links?: Prisma.trip_album_linksUpdateManyWithoutTripsNestedInput trip_files?: Prisma.trip_filesUpdateManyWithoutTripsNestedInput trip_members?: Prisma.trip_membersUpdateManyWithoutTripsNestedInput trip_photos?: Prisma.trip_photosUpdateManyWithoutTripsNestedInput users?: Prisma.usersUpdateOneRequiredWithoutTripsNestedInput } export type tripsUncheckedUpdateWithoutDay_notesInput = { id?: Prisma.IntFieldUpdateOperationsInput | number user_id?: Prisma.IntFieldUpdateOperationsInput | number title?: Prisma.StringFieldUpdateOperationsInput | string description?: Prisma.NullableStringFieldUpdateOperationsInput | string | null start_date?: Prisma.NullableStringFieldUpdateOperationsInput | string | null end_date?: Prisma.NullableStringFieldUpdateOperationsInput | string | null currency?: Prisma.NullableStringFieldUpdateOperationsInput | string | null cover_image?: Prisma.NullableStringFieldUpdateOperationsInput | string | null is_archived?: Prisma.NullableIntFieldUpdateOperationsInput | number | null reminder_days?: Prisma.NullableIntFieldUpdateOperationsInput | number | null created_at?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null updated_at?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null budget_category_order?: Prisma.budget_category_orderUncheckedUpdateManyWithoutTripsNestedInput budget_items?: Prisma.budget_itemsUncheckedUpdateManyWithoutTripsNestedInput collab_messages?: Prisma.collab_messagesUncheckedUpdateManyWithoutTripsNestedInput collab_notes?: Prisma.collab_notesUncheckedUpdateManyWithoutTripsNestedInput collab_polls?: Prisma.collab_pollsUncheckedUpdateManyWithoutTripsNestedInput day_accommodations?: Prisma.day_accommodationsUncheckedUpdateManyWithoutTripsNestedInput days?: Prisma.daysUncheckedUpdateManyWithoutTripsNestedInput journey_entries?: Prisma.journey_entriesUncheckedUpdateManyWithoutTripsNestedInput journey_trips?: Prisma.journey_tripsUncheckedUpdateManyWithoutTripsNestedInput packing_bags?: Prisma.packing_bagsUncheckedUpdateManyWithoutTripsNestedInput packing_category_assignees?: Prisma.packing_category_assigneesUncheckedUpdateManyWithoutTripsNestedInput packing_items?: Prisma.packing_itemsUncheckedUpdateManyWithoutTripsNestedInput photos?: Prisma.photosUncheckedUpdateManyWithoutTripsNestedInput places?: Prisma.placesUncheckedUpdateManyWithoutTripsNestedInput reservations?: Prisma.reservationsUncheckedUpdateManyWithoutTripsNestedInput share_tokens?: Prisma.share_tokensUncheckedUpdateManyWithoutTripsNestedInput todo_category_assignees?: Prisma.todo_category_assigneesUncheckedUpdateManyWithoutTripsNestedInput todo_items?: Prisma.todo_itemsUncheckedUpdateManyWithoutTripsNestedInput trip_album_links?: Prisma.trip_album_linksUncheckedUpdateManyWithoutTripsNestedInput trip_files?: Prisma.trip_filesUncheckedUpdateManyWithoutTripsNestedInput trip_members?: Prisma.trip_membersUncheckedUpdateManyWithoutTripsNestedInput trip_photos?: Prisma.trip_photosUncheckedUpdateManyWithoutTripsNestedInput } export type tripsCreateWithoutDaysInput = { title: string description?: string | null start_date?: string | null end_date?: string | null currency?: string | null cover_image?: string | null is_archived?: number | null reminder_days?: number | null created_at?: Date | string | null updated_at?: Date | string | null budget_category_order?: Prisma.budget_category_orderCreateNestedManyWithoutTripsInput budget_items?: Prisma.budget_itemsCreateNestedManyWithoutTripsInput collab_messages?: Prisma.collab_messagesCreateNestedManyWithoutTripsInput collab_notes?: Prisma.collab_notesCreateNestedManyWithoutTripsInput collab_polls?: Prisma.collab_pollsCreateNestedManyWithoutTripsInput day_accommodations?: Prisma.day_accommodationsCreateNestedManyWithoutTripsInput day_notes?: Prisma.day_notesCreateNestedManyWithoutTripsInput journey_entries?: Prisma.journey_entriesCreateNestedManyWithoutTripsInput journey_trips?: Prisma.journey_tripsCreateNestedManyWithoutTripsInput packing_bags?: Prisma.packing_bagsCreateNestedManyWithoutTripsInput packing_category_assignees?: Prisma.packing_category_assigneesCreateNestedManyWithoutTripsInput packing_items?: Prisma.packing_itemsCreateNestedManyWithoutTripsInput photos?: Prisma.photosCreateNestedManyWithoutTripsInput places?: Prisma.placesCreateNestedManyWithoutTripsInput reservations?: Prisma.reservationsCreateNestedManyWithoutTripsInput share_tokens?: Prisma.share_tokensCreateNestedManyWithoutTripsInput todo_category_assignees?: Prisma.todo_category_assigneesCreateNestedManyWithoutTripsInput todo_items?: Prisma.todo_itemsCreateNestedManyWithoutTripsInput trip_album_links?: Prisma.trip_album_linksCreateNestedManyWithoutTripsInput trip_files?: Prisma.trip_filesCreateNestedManyWithoutTripsInput trip_members?: Prisma.trip_membersCreateNestedManyWithoutTripsInput trip_photos?: Prisma.trip_photosCreateNestedManyWithoutTripsInput users: Prisma.usersCreateNestedOneWithoutTripsInput } export type tripsUncheckedCreateWithoutDaysInput = { id?: number user_id: number title: string description?: string | null start_date?: string | null end_date?: string | null currency?: string | null cover_image?: string | null is_archived?: number | null reminder_days?: number | null created_at?: Date | string | null updated_at?: Date | string | null budget_category_order?: Prisma.budget_category_orderUncheckedCreateNestedManyWithoutTripsInput budget_items?: Prisma.budget_itemsUncheckedCreateNestedManyWithoutTripsInput collab_messages?: Prisma.collab_messagesUncheckedCreateNestedManyWithoutTripsInput collab_notes?: Prisma.collab_notesUncheckedCreateNestedManyWithoutTripsInput collab_polls?: Prisma.collab_pollsUncheckedCreateNestedManyWithoutTripsInput day_accommodations?: Prisma.day_accommodationsUncheckedCreateNestedManyWithoutTripsInput day_notes?: Prisma.day_notesUncheckedCreateNestedManyWithoutTripsInput journey_entries?: Prisma.journey_entriesUncheckedCreateNestedManyWithoutTripsInput journey_trips?: Prisma.journey_tripsUncheckedCreateNestedManyWithoutTripsInput packing_bags?: Prisma.packing_bagsUncheckedCreateNestedManyWithoutTripsInput packing_category_assignees?: Prisma.packing_category_assigneesUncheckedCreateNestedManyWithoutTripsInput packing_items?: Prisma.packing_itemsUncheckedCreateNestedManyWithoutTripsInput photos?: Prisma.photosUncheckedCreateNestedManyWithoutTripsInput places?: Prisma.placesUncheckedCreateNestedManyWithoutTripsInput reservations?: Prisma.reservationsUncheckedCreateNestedManyWithoutTripsInput share_tokens?: Prisma.share_tokensUncheckedCreateNestedManyWithoutTripsInput todo_category_assignees?: Prisma.todo_category_assigneesUncheckedCreateNestedManyWithoutTripsInput todo_items?: Prisma.todo_itemsUncheckedCreateNestedManyWithoutTripsInput trip_album_links?: Prisma.trip_album_linksUncheckedCreateNestedManyWithoutTripsInput trip_files?: Prisma.trip_filesUncheckedCreateNestedManyWithoutTripsInput trip_members?: Prisma.trip_membersUncheckedCreateNestedManyWithoutTripsInput trip_photos?: Prisma.trip_photosUncheckedCreateNestedManyWithoutTripsInput } export type tripsCreateOrConnectWithoutDaysInput = { where: Prisma.tripsWhereUniqueInput create: Prisma.XOR } export type tripsUpsertWithoutDaysInput = { update: Prisma.XOR create: Prisma.XOR where?: Prisma.tripsWhereInput } export type tripsUpdateToOneWithWhereWithoutDaysInput = { where?: Prisma.tripsWhereInput data: Prisma.XOR } export type tripsUpdateWithoutDaysInput = { title?: Prisma.StringFieldUpdateOperationsInput | string description?: Prisma.NullableStringFieldUpdateOperationsInput | string | null start_date?: Prisma.NullableStringFieldUpdateOperationsInput | string | null end_date?: Prisma.NullableStringFieldUpdateOperationsInput | string | null currency?: Prisma.NullableStringFieldUpdateOperationsInput | string | null cover_image?: Prisma.NullableStringFieldUpdateOperationsInput | string | null is_archived?: Prisma.NullableIntFieldUpdateOperationsInput | number | null reminder_days?: Prisma.NullableIntFieldUpdateOperationsInput | number | null created_at?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null updated_at?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null budget_category_order?: Prisma.budget_category_orderUpdateManyWithoutTripsNestedInput budget_items?: Prisma.budget_itemsUpdateManyWithoutTripsNestedInput collab_messages?: Prisma.collab_messagesUpdateManyWithoutTripsNestedInput collab_notes?: Prisma.collab_notesUpdateManyWithoutTripsNestedInput collab_polls?: Prisma.collab_pollsUpdateManyWithoutTripsNestedInput day_accommodations?: Prisma.day_accommodationsUpdateManyWithoutTripsNestedInput day_notes?: Prisma.day_notesUpdateManyWithoutTripsNestedInput journey_entries?: Prisma.journey_entriesUpdateManyWithoutTripsNestedInput journey_trips?: Prisma.journey_tripsUpdateManyWithoutTripsNestedInput packing_bags?: Prisma.packing_bagsUpdateManyWithoutTripsNestedInput packing_category_assignees?: Prisma.packing_category_assigneesUpdateManyWithoutTripsNestedInput packing_items?: Prisma.packing_itemsUpdateManyWithoutTripsNestedInput photos?: Prisma.photosUpdateManyWithoutTripsNestedInput places?: Prisma.placesUpdateManyWithoutTripsNestedInput reservations?: Prisma.reservationsUpdateManyWithoutTripsNestedInput share_tokens?: Prisma.share_tokensUpdateManyWithoutTripsNestedInput todo_category_assignees?: Prisma.todo_category_assigneesUpdateManyWithoutTripsNestedInput todo_items?: Prisma.todo_itemsUpdateManyWithoutTripsNestedInput trip_album_links?: Prisma.trip_album_linksUpdateManyWithoutTripsNestedInput trip_files?: Prisma.trip_filesUpdateManyWithoutTripsNestedInput trip_members?: Prisma.trip_membersUpdateManyWithoutTripsNestedInput trip_photos?: Prisma.trip_photosUpdateManyWithoutTripsNestedInput users?: Prisma.usersUpdateOneRequiredWithoutTripsNestedInput } export type tripsUncheckedUpdateWithoutDaysInput = { id?: Prisma.IntFieldUpdateOperationsInput | number user_id?: Prisma.IntFieldUpdateOperationsInput | number title?: Prisma.StringFieldUpdateOperationsInput | string description?: Prisma.NullableStringFieldUpdateOperationsInput | string | null start_date?: Prisma.NullableStringFieldUpdateOperationsInput | string | null end_date?: Prisma.NullableStringFieldUpdateOperationsInput | string | null currency?: Prisma.NullableStringFieldUpdateOperationsInput | string | null cover_image?: Prisma.NullableStringFieldUpdateOperationsInput | string | null is_archived?: Prisma.NullableIntFieldUpdateOperationsInput | number | null reminder_days?: Prisma.NullableIntFieldUpdateOperationsInput | number | null created_at?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null updated_at?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null budget_category_order?: Prisma.budget_category_orderUncheckedUpdateManyWithoutTripsNestedInput budget_items?: Prisma.budget_itemsUncheckedUpdateManyWithoutTripsNestedInput collab_messages?: Prisma.collab_messagesUncheckedUpdateManyWithoutTripsNestedInput collab_notes?: Prisma.collab_notesUncheckedUpdateManyWithoutTripsNestedInput collab_polls?: Prisma.collab_pollsUncheckedUpdateManyWithoutTripsNestedInput day_accommodations?: Prisma.day_accommodationsUncheckedUpdateManyWithoutTripsNestedInput day_notes?: Prisma.day_notesUncheckedUpdateManyWithoutTripsNestedInput journey_entries?: Prisma.journey_entriesUncheckedUpdateManyWithoutTripsNestedInput journey_trips?: Prisma.journey_tripsUncheckedUpdateManyWithoutTripsNestedInput packing_bags?: Prisma.packing_bagsUncheckedUpdateManyWithoutTripsNestedInput packing_category_assignees?: Prisma.packing_category_assigneesUncheckedUpdateManyWithoutTripsNestedInput packing_items?: Prisma.packing_itemsUncheckedUpdateManyWithoutTripsNestedInput photos?: Prisma.photosUncheckedUpdateManyWithoutTripsNestedInput places?: Prisma.placesUncheckedUpdateManyWithoutTripsNestedInput reservations?: Prisma.reservationsUncheckedUpdateManyWithoutTripsNestedInput share_tokens?: Prisma.share_tokensUncheckedUpdateManyWithoutTripsNestedInput todo_category_assignees?: Prisma.todo_category_assigneesUncheckedUpdateManyWithoutTripsNestedInput todo_items?: Prisma.todo_itemsUncheckedUpdateManyWithoutTripsNestedInput trip_album_links?: Prisma.trip_album_linksUncheckedUpdateManyWithoutTripsNestedInput trip_files?: Prisma.trip_filesUncheckedUpdateManyWithoutTripsNestedInput trip_members?: Prisma.trip_membersUncheckedUpdateManyWithoutTripsNestedInput trip_photos?: Prisma.trip_photosUncheckedUpdateManyWithoutTripsNestedInput } export type tripsCreateWithoutJourney_entriesInput = { title: string description?: string | null start_date?: string | null end_date?: string | null currency?: string | null cover_image?: string | null is_archived?: number | null reminder_days?: number | null created_at?: Date | string | null updated_at?: Date | string | null budget_category_order?: Prisma.budget_category_orderCreateNestedManyWithoutTripsInput budget_items?: Prisma.budget_itemsCreateNestedManyWithoutTripsInput collab_messages?: Prisma.collab_messagesCreateNestedManyWithoutTripsInput collab_notes?: Prisma.collab_notesCreateNestedManyWithoutTripsInput collab_polls?: Prisma.collab_pollsCreateNestedManyWithoutTripsInput day_accommodations?: Prisma.day_accommodationsCreateNestedManyWithoutTripsInput day_notes?: Prisma.day_notesCreateNestedManyWithoutTripsInput days?: Prisma.daysCreateNestedManyWithoutTripsInput journey_trips?: Prisma.journey_tripsCreateNestedManyWithoutTripsInput packing_bags?: Prisma.packing_bagsCreateNestedManyWithoutTripsInput packing_category_assignees?: Prisma.packing_category_assigneesCreateNestedManyWithoutTripsInput packing_items?: Prisma.packing_itemsCreateNestedManyWithoutTripsInput photos?: Prisma.photosCreateNestedManyWithoutTripsInput places?: Prisma.placesCreateNestedManyWithoutTripsInput reservations?: Prisma.reservationsCreateNestedManyWithoutTripsInput share_tokens?: Prisma.share_tokensCreateNestedManyWithoutTripsInput todo_category_assignees?: Prisma.todo_category_assigneesCreateNestedManyWithoutTripsInput todo_items?: Prisma.todo_itemsCreateNestedManyWithoutTripsInput trip_album_links?: Prisma.trip_album_linksCreateNestedManyWithoutTripsInput trip_files?: Prisma.trip_filesCreateNestedManyWithoutTripsInput trip_members?: Prisma.trip_membersCreateNestedManyWithoutTripsInput trip_photos?: Prisma.trip_photosCreateNestedManyWithoutTripsInput users: Prisma.usersCreateNestedOneWithoutTripsInput } export type tripsUncheckedCreateWithoutJourney_entriesInput = { id?: number user_id: number title: string description?: string | null start_date?: string | null end_date?: string | null currency?: string | null cover_image?: string | null is_archived?: number | null reminder_days?: number | null created_at?: Date | string | null updated_at?: Date | string | null budget_category_order?: Prisma.budget_category_orderUncheckedCreateNestedManyWithoutTripsInput budget_items?: Prisma.budget_itemsUncheckedCreateNestedManyWithoutTripsInput collab_messages?: Prisma.collab_messagesUncheckedCreateNestedManyWithoutTripsInput collab_notes?: Prisma.collab_notesUncheckedCreateNestedManyWithoutTripsInput collab_polls?: Prisma.collab_pollsUncheckedCreateNestedManyWithoutTripsInput day_accommodations?: Prisma.day_accommodationsUncheckedCreateNestedManyWithoutTripsInput day_notes?: Prisma.day_notesUncheckedCreateNestedManyWithoutTripsInput days?: Prisma.daysUncheckedCreateNestedManyWithoutTripsInput journey_trips?: Prisma.journey_tripsUncheckedCreateNestedManyWithoutTripsInput packing_bags?: Prisma.packing_bagsUncheckedCreateNestedManyWithoutTripsInput packing_category_assignees?: Prisma.packing_category_assigneesUncheckedCreateNestedManyWithoutTripsInput packing_items?: Prisma.packing_itemsUncheckedCreateNestedManyWithoutTripsInput photos?: Prisma.photosUncheckedCreateNestedManyWithoutTripsInput places?: Prisma.placesUncheckedCreateNestedManyWithoutTripsInput reservations?: Prisma.reservationsUncheckedCreateNestedManyWithoutTripsInput share_tokens?: Prisma.share_tokensUncheckedCreateNestedManyWithoutTripsInput todo_category_assignees?: Prisma.todo_category_assigneesUncheckedCreateNestedManyWithoutTripsInput todo_items?: Prisma.todo_itemsUncheckedCreateNestedManyWithoutTripsInput trip_album_links?: Prisma.trip_album_linksUncheckedCreateNestedManyWithoutTripsInput trip_files?: Prisma.trip_filesUncheckedCreateNestedManyWithoutTripsInput trip_members?: Prisma.trip_membersUncheckedCreateNestedManyWithoutTripsInput trip_photos?: Prisma.trip_photosUncheckedCreateNestedManyWithoutTripsInput } export type tripsCreateOrConnectWithoutJourney_entriesInput = { where: Prisma.tripsWhereUniqueInput create: Prisma.XOR } export type tripsUpsertWithoutJourney_entriesInput = { update: Prisma.XOR create: Prisma.XOR where?: Prisma.tripsWhereInput } export type tripsUpdateToOneWithWhereWithoutJourney_entriesInput = { where?: Prisma.tripsWhereInput data: Prisma.XOR } export type tripsUpdateWithoutJourney_entriesInput = { title?: Prisma.StringFieldUpdateOperationsInput | string description?: Prisma.NullableStringFieldUpdateOperationsInput | string | null start_date?: Prisma.NullableStringFieldUpdateOperationsInput | string | null end_date?: Prisma.NullableStringFieldUpdateOperationsInput | string | null currency?: Prisma.NullableStringFieldUpdateOperationsInput | string | null cover_image?: Prisma.NullableStringFieldUpdateOperationsInput | string | null is_archived?: Prisma.NullableIntFieldUpdateOperationsInput | number | null reminder_days?: Prisma.NullableIntFieldUpdateOperationsInput | number | null created_at?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null updated_at?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null budget_category_order?: Prisma.budget_category_orderUpdateManyWithoutTripsNestedInput budget_items?: Prisma.budget_itemsUpdateManyWithoutTripsNestedInput collab_messages?: Prisma.collab_messagesUpdateManyWithoutTripsNestedInput collab_notes?: Prisma.collab_notesUpdateManyWithoutTripsNestedInput collab_polls?: Prisma.collab_pollsUpdateManyWithoutTripsNestedInput day_accommodations?: Prisma.day_accommodationsUpdateManyWithoutTripsNestedInput day_notes?: Prisma.day_notesUpdateManyWithoutTripsNestedInput days?: Prisma.daysUpdateManyWithoutTripsNestedInput journey_trips?: Prisma.journey_tripsUpdateManyWithoutTripsNestedInput packing_bags?: Prisma.packing_bagsUpdateManyWithoutTripsNestedInput packing_category_assignees?: Prisma.packing_category_assigneesUpdateManyWithoutTripsNestedInput packing_items?: Prisma.packing_itemsUpdateManyWithoutTripsNestedInput photos?: Prisma.photosUpdateManyWithoutTripsNestedInput places?: Prisma.placesUpdateManyWithoutTripsNestedInput reservations?: Prisma.reservationsUpdateManyWithoutTripsNestedInput share_tokens?: Prisma.share_tokensUpdateManyWithoutTripsNestedInput todo_category_assignees?: Prisma.todo_category_assigneesUpdateManyWithoutTripsNestedInput todo_items?: Prisma.todo_itemsUpdateManyWithoutTripsNestedInput trip_album_links?: Prisma.trip_album_linksUpdateManyWithoutTripsNestedInput trip_files?: Prisma.trip_filesUpdateManyWithoutTripsNestedInput trip_members?: Prisma.trip_membersUpdateManyWithoutTripsNestedInput trip_photos?: Prisma.trip_photosUpdateManyWithoutTripsNestedInput users?: Prisma.usersUpdateOneRequiredWithoutTripsNestedInput } export type tripsUncheckedUpdateWithoutJourney_entriesInput = { id?: Prisma.IntFieldUpdateOperationsInput | number user_id?: Prisma.IntFieldUpdateOperationsInput | number title?: Prisma.StringFieldUpdateOperationsInput | string description?: Prisma.NullableStringFieldUpdateOperationsInput | string | null start_date?: Prisma.NullableStringFieldUpdateOperationsInput | string | null end_date?: Prisma.NullableStringFieldUpdateOperationsInput | string | null currency?: Prisma.NullableStringFieldUpdateOperationsInput | string | null cover_image?: Prisma.NullableStringFieldUpdateOperationsInput | string | null is_archived?: Prisma.NullableIntFieldUpdateOperationsInput | number | null reminder_days?: Prisma.NullableIntFieldUpdateOperationsInput | number | null created_at?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null updated_at?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null budget_category_order?: Prisma.budget_category_orderUncheckedUpdateManyWithoutTripsNestedInput budget_items?: Prisma.budget_itemsUncheckedUpdateManyWithoutTripsNestedInput collab_messages?: Prisma.collab_messagesUncheckedUpdateManyWithoutTripsNestedInput collab_notes?: Prisma.collab_notesUncheckedUpdateManyWithoutTripsNestedInput collab_polls?: Prisma.collab_pollsUncheckedUpdateManyWithoutTripsNestedInput day_accommodations?: Prisma.day_accommodationsUncheckedUpdateManyWithoutTripsNestedInput day_notes?: Prisma.day_notesUncheckedUpdateManyWithoutTripsNestedInput days?: Prisma.daysUncheckedUpdateManyWithoutTripsNestedInput journey_trips?: Prisma.journey_tripsUncheckedUpdateManyWithoutTripsNestedInput packing_bags?: Prisma.packing_bagsUncheckedUpdateManyWithoutTripsNestedInput packing_category_assignees?: Prisma.packing_category_assigneesUncheckedUpdateManyWithoutTripsNestedInput packing_items?: Prisma.packing_itemsUncheckedUpdateManyWithoutTripsNestedInput photos?: Prisma.photosUncheckedUpdateManyWithoutTripsNestedInput places?: Prisma.placesUncheckedUpdateManyWithoutTripsNestedInput reservations?: Prisma.reservationsUncheckedUpdateManyWithoutTripsNestedInput share_tokens?: Prisma.share_tokensUncheckedUpdateManyWithoutTripsNestedInput todo_category_assignees?: Prisma.todo_category_assigneesUncheckedUpdateManyWithoutTripsNestedInput todo_items?: Prisma.todo_itemsUncheckedUpdateManyWithoutTripsNestedInput trip_album_links?: Prisma.trip_album_linksUncheckedUpdateManyWithoutTripsNestedInput trip_files?: Prisma.trip_filesUncheckedUpdateManyWithoutTripsNestedInput trip_members?: Prisma.trip_membersUncheckedUpdateManyWithoutTripsNestedInput trip_photos?: Prisma.trip_photosUncheckedUpdateManyWithoutTripsNestedInput } export type tripsCreateWithoutJourney_tripsInput = { title: string description?: string | null start_date?: string | null end_date?: string | null currency?: string | null cover_image?: string | null is_archived?: number | null reminder_days?: number | null created_at?: Date | string | null updated_at?: Date | string | null budget_category_order?: Prisma.budget_category_orderCreateNestedManyWithoutTripsInput budget_items?: Prisma.budget_itemsCreateNestedManyWithoutTripsInput collab_messages?: Prisma.collab_messagesCreateNestedManyWithoutTripsInput collab_notes?: Prisma.collab_notesCreateNestedManyWithoutTripsInput collab_polls?: Prisma.collab_pollsCreateNestedManyWithoutTripsInput day_accommodations?: Prisma.day_accommodationsCreateNestedManyWithoutTripsInput day_notes?: Prisma.day_notesCreateNestedManyWithoutTripsInput days?: Prisma.daysCreateNestedManyWithoutTripsInput journey_entries?: Prisma.journey_entriesCreateNestedManyWithoutTripsInput packing_bags?: Prisma.packing_bagsCreateNestedManyWithoutTripsInput packing_category_assignees?: Prisma.packing_category_assigneesCreateNestedManyWithoutTripsInput packing_items?: Prisma.packing_itemsCreateNestedManyWithoutTripsInput photos?: Prisma.photosCreateNestedManyWithoutTripsInput places?: Prisma.placesCreateNestedManyWithoutTripsInput reservations?: Prisma.reservationsCreateNestedManyWithoutTripsInput share_tokens?: Prisma.share_tokensCreateNestedManyWithoutTripsInput todo_category_assignees?: Prisma.todo_category_assigneesCreateNestedManyWithoutTripsInput todo_items?: Prisma.todo_itemsCreateNestedManyWithoutTripsInput trip_album_links?: Prisma.trip_album_linksCreateNestedManyWithoutTripsInput trip_files?: Prisma.trip_filesCreateNestedManyWithoutTripsInput trip_members?: Prisma.trip_membersCreateNestedManyWithoutTripsInput trip_photos?: Prisma.trip_photosCreateNestedManyWithoutTripsInput users: Prisma.usersCreateNestedOneWithoutTripsInput } export type tripsUncheckedCreateWithoutJourney_tripsInput = { id?: number user_id: number title: string description?: string | null start_date?: string | null end_date?: string | null currency?: string | null cover_image?: string | null is_archived?: number | null reminder_days?: number | null created_at?: Date | string | null updated_at?: Date | string | null budget_category_order?: Prisma.budget_category_orderUncheckedCreateNestedManyWithoutTripsInput budget_items?: Prisma.budget_itemsUncheckedCreateNestedManyWithoutTripsInput collab_messages?: Prisma.collab_messagesUncheckedCreateNestedManyWithoutTripsInput collab_notes?: Prisma.collab_notesUncheckedCreateNestedManyWithoutTripsInput collab_polls?: Prisma.collab_pollsUncheckedCreateNestedManyWithoutTripsInput day_accommodations?: Prisma.day_accommodationsUncheckedCreateNestedManyWithoutTripsInput day_notes?: Prisma.day_notesUncheckedCreateNestedManyWithoutTripsInput days?: Prisma.daysUncheckedCreateNestedManyWithoutTripsInput journey_entries?: Prisma.journey_entriesUncheckedCreateNestedManyWithoutTripsInput packing_bags?: Prisma.packing_bagsUncheckedCreateNestedManyWithoutTripsInput packing_category_assignees?: Prisma.packing_category_assigneesUncheckedCreateNestedManyWithoutTripsInput packing_items?: Prisma.packing_itemsUncheckedCreateNestedManyWithoutTripsInput photos?: Prisma.photosUncheckedCreateNestedManyWithoutTripsInput places?: Prisma.placesUncheckedCreateNestedManyWithoutTripsInput reservations?: Prisma.reservationsUncheckedCreateNestedManyWithoutTripsInput share_tokens?: Prisma.share_tokensUncheckedCreateNestedManyWithoutTripsInput todo_category_assignees?: Prisma.todo_category_assigneesUncheckedCreateNestedManyWithoutTripsInput todo_items?: Prisma.todo_itemsUncheckedCreateNestedManyWithoutTripsInput trip_album_links?: Prisma.trip_album_linksUncheckedCreateNestedManyWithoutTripsInput trip_files?: Prisma.trip_filesUncheckedCreateNestedManyWithoutTripsInput trip_members?: Prisma.trip_membersUncheckedCreateNestedManyWithoutTripsInput trip_photos?: Prisma.trip_photosUncheckedCreateNestedManyWithoutTripsInput } export type tripsCreateOrConnectWithoutJourney_tripsInput = { where: Prisma.tripsWhereUniqueInput create: Prisma.XOR } export type tripsUpsertWithoutJourney_tripsInput = { update: Prisma.XOR create: Prisma.XOR where?: Prisma.tripsWhereInput } export type tripsUpdateToOneWithWhereWithoutJourney_tripsInput = { where?: Prisma.tripsWhereInput data: Prisma.XOR } export type tripsUpdateWithoutJourney_tripsInput = { title?: Prisma.StringFieldUpdateOperationsInput | string description?: Prisma.NullableStringFieldUpdateOperationsInput | string | null start_date?: Prisma.NullableStringFieldUpdateOperationsInput | string | null end_date?: Prisma.NullableStringFieldUpdateOperationsInput | string | null currency?: Prisma.NullableStringFieldUpdateOperationsInput | string | null cover_image?: Prisma.NullableStringFieldUpdateOperationsInput | string | null is_archived?: Prisma.NullableIntFieldUpdateOperationsInput | number | null reminder_days?: Prisma.NullableIntFieldUpdateOperationsInput | number | null created_at?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null updated_at?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null budget_category_order?: Prisma.budget_category_orderUpdateManyWithoutTripsNestedInput budget_items?: Prisma.budget_itemsUpdateManyWithoutTripsNestedInput collab_messages?: Prisma.collab_messagesUpdateManyWithoutTripsNestedInput collab_notes?: Prisma.collab_notesUpdateManyWithoutTripsNestedInput collab_polls?: Prisma.collab_pollsUpdateManyWithoutTripsNestedInput day_accommodations?: Prisma.day_accommodationsUpdateManyWithoutTripsNestedInput day_notes?: Prisma.day_notesUpdateManyWithoutTripsNestedInput days?: Prisma.daysUpdateManyWithoutTripsNestedInput journey_entries?: Prisma.journey_entriesUpdateManyWithoutTripsNestedInput packing_bags?: Prisma.packing_bagsUpdateManyWithoutTripsNestedInput packing_category_assignees?: Prisma.packing_category_assigneesUpdateManyWithoutTripsNestedInput packing_items?: Prisma.packing_itemsUpdateManyWithoutTripsNestedInput photos?: Prisma.photosUpdateManyWithoutTripsNestedInput places?: Prisma.placesUpdateManyWithoutTripsNestedInput reservations?: Prisma.reservationsUpdateManyWithoutTripsNestedInput share_tokens?: Prisma.share_tokensUpdateManyWithoutTripsNestedInput todo_category_assignees?: Prisma.todo_category_assigneesUpdateManyWithoutTripsNestedInput todo_items?: Prisma.todo_itemsUpdateManyWithoutTripsNestedInput trip_album_links?: Prisma.trip_album_linksUpdateManyWithoutTripsNestedInput trip_files?: Prisma.trip_filesUpdateManyWithoutTripsNestedInput trip_members?: Prisma.trip_membersUpdateManyWithoutTripsNestedInput trip_photos?: Prisma.trip_photosUpdateManyWithoutTripsNestedInput users?: Prisma.usersUpdateOneRequiredWithoutTripsNestedInput } export type tripsUncheckedUpdateWithoutJourney_tripsInput = { id?: Prisma.IntFieldUpdateOperationsInput | number user_id?: Prisma.IntFieldUpdateOperationsInput | number title?: Prisma.StringFieldUpdateOperationsInput | string description?: Prisma.NullableStringFieldUpdateOperationsInput | string | null start_date?: Prisma.NullableStringFieldUpdateOperationsInput | string | null end_date?: Prisma.NullableStringFieldUpdateOperationsInput | string | null currency?: Prisma.NullableStringFieldUpdateOperationsInput | string | null cover_image?: Prisma.NullableStringFieldUpdateOperationsInput | string | null is_archived?: Prisma.NullableIntFieldUpdateOperationsInput | number | null reminder_days?: Prisma.NullableIntFieldUpdateOperationsInput | number | null created_at?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null updated_at?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null budget_category_order?: Prisma.budget_category_orderUncheckedUpdateManyWithoutTripsNestedInput budget_items?: Prisma.budget_itemsUncheckedUpdateManyWithoutTripsNestedInput collab_messages?: Prisma.collab_messagesUncheckedUpdateManyWithoutTripsNestedInput collab_notes?: Prisma.collab_notesUncheckedUpdateManyWithoutTripsNestedInput collab_polls?: Prisma.collab_pollsUncheckedUpdateManyWithoutTripsNestedInput day_accommodations?: Prisma.day_accommodationsUncheckedUpdateManyWithoutTripsNestedInput day_notes?: Prisma.day_notesUncheckedUpdateManyWithoutTripsNestedInput days?: Prisma.daysUncheckedUpdateManyWithoutTripsNestedInput journey_entries?: Prisma.journey_entriesUncheckedUpdateManyWithoutTripsNestedInput packing_bags?: Prisma.packing_bagsUncheckedUpdateManyWithoutTripsNestedInput packing_category_assignees?: Prisma.packing_category_assigneesUncheckedUpdateManyWithoutTripsNestedInput packing_items?: Prisma.packing_itemsUncheckedUpdateManyWithoutTripsNestedInput photos?: Prisma.photosUncheckedUpdateManyWithoutTripsNestedInput places?: Prisma.placesUncheckedUpdateManyWithoutTripsNestedInput reservations?: Prisma.reservationsUncheckedUpdateManyWithoutTripsNestedInput share_tokens?: Prisma.share_tokensUncheckedUpdateManyWithoutTripsNestedInput todo_category_assignees?: Prisma.todo_category_assigneesUncheckedUpdateManyWithoutTripsNestedInput todo_items?: Prisma.todo_itemsUncheckedUpdateManyWithoutTripsNestedInput trip_album_links?: Prisma.trip_album_linksUncheckedUpdateManyWithoutTripsNestedInput trip_files?: Prisma.trip_filesUncheckedUpdateManyWithoutTripsNestedInput trip_members?: Prisma.trip_membersUncheckedUpdateManyWithoutTripsNestedInput trip_photos?: Prisma.trip_photosUncheckedUpdateManyWithoutTripsNestedInput } export type tripsCreateWithoutPacking_bagsInput = { title: string description?: string | null start_date?: string | null end_date?: string | null currency?: string | null cover_image?: string | null is_archived?: number | null reminder_days?: number | null created_at?: Date | string | null updated_at?: Date | string | null budget_category_order?: Prisma.budget_category_orderCreateNestedManyWithoutTripsInput budget_items?: Prisma.budget_itemsCreateNestedManyWithoutTripsInput collab_messages?: Prisma.collab_messagesCreateNestedManyWithoutTripsInput collab_notes?: Prisma.collab_notesCreateNestedManyWithoutTripsInput collab_polls?: Prisma.collab_pollsCreateNestedManyWithoutTripsInput day_accommodations?: Prisma.day_accommodationsCreateNestedManyWithoutTripsInput day_notes?: Prisma.day_notesCreateNestedManyWithoutTripsInput days?: Prisma.daysCreateNestedManyWithoutTripsInput journey_entries?: Prisma.journey_entriesCreateNestedManyWithoutTripsInput journey_trips?: Prisma.journey_tripsCreateNestedManyWithoutTripsInput packing_category_assignees?: Prisma.packing_category_assigneesCreateNestedManyWithoutTripsInput packing_items?: Prisma.packing_itemsCreateNestedManyWithoutTripsInput photos?: Prisma.photosCreateNestedManyWithoutTripsInput places?: Prisma.placesCreateNestedManyWithoutTripsInput reservations?: Prisma.reservationsCreateNestedManyWithoutTripsInput share_tokens?: Prisma.share_tokensCreateNestedManyWithoutTripsInput todo_category_assignees?: Prisma.todo_category_assigneesCreateNestedManyWithoutTripsInput todo_items?: Prisma.todo_itemsCreateNestedManyWithoutTripsInput trip_album_links?: Prisma.trip_album_linksCreateNestedManyWithoutTripsInput trip_files?: Prisma.trip_filesCreateNestedManyWithoutTripsInput trip_members?: Prisma.trip_membersCreateNestedManyWithoutTripsInput trip_photos?: Prisma.trip_photosCreateNestedManyWithoutTripsInput users: Prisma.usersCreateNestedOneWithoutTripsInput } export type tripsUncheckedCreateWithoutPacking_bagsInput = { id?: number user_id: number title: string description?: string | null start_date?: string | null end_date?: string | null currency?: string | null cover_image?: string | null is_archived?: number | null reminder_days?: number | null created_at?: Date | string | null updated_at?: Date | string | null budget_category_order?: Prisma.budget_category_orderUncheckedCreateNestedManyWithoutTripsInput budget_items?: Prisma.budget_itemsUncheckedCreateNestedManyWithoutTripsInput collab_messages?: Prisma.collab_messagesUncheckedCreateNestedManyWithoutTripsInput collab_notes?: Prisma.collab_notesUncheckedCreateNestedManyWithoutTripsInput collab_polls?: Prisma.collab_pollsUncheckedCreateNestedManyWithoutTripsInput day_accommodations?: Prisma.day_accommodationsUncheckedCreateNestedManyWithoutTripsInput day_notes?: Prisma.day_notesUncheckedCreateNestedManyWithoutTripsInput days?: Prisma.daysUncheckedCreateNestedManyWithoutTripsInput journey_entries?: Prisma.journey_entriesUncheckedCreateNestedManyWithoutTripsInput journey_trips?: Prisma.journey_tripsUncheckedCreateNestedManyWithoutTripsInput packing_category_assignees?: Prisma.packing_category_assigneesUncheckedCreateNestedManyWithoutTripsInput packing_items?: Prisma.packing_itemsUncheckedCreateNestedManyWithoutTripsInput photos?: Prisma.photosUncheckedCreateNestedManyWithoutTripsInput places?: Prisma.placesUncheckedCreateNestedManyWithoutTripsInput reservations?: Prisma.reservationsUncheckedCreateNestedManyWithoutTripsInput share_tokens?: Prisma.share_tokensUncheckedCreateNestedManyWithoutTripsInput todo_category_assignees?: Prisma.todo_category_assigneesUncheckedCreateNestedManyWithoutTripsInput todo_items?: Prisma.todo_itemsUncheckedCreateNestedManyWithoutTripsInput trip_album_links?: Prisma.trip_album_linksUncheckedCreateNestedManyWithoutTripsInput trip_files?: Prisma.trip_filesUncheckedCreateNestedManyWithoutTripsInput trip_members?: Prisma.trip_membersUncheckedCreateNestedManyWithoutTripsInput trip_photos?: Prisma.trip_photosUncheckedCreateNestedManyWithoutTripsInput } export type tripsCreateOrConnectWithoutPacking_bagsInput = { where: Prisma.tripsWhereUniqueInput create: Prisma.XOR } export type tripsUpsertWithoutPacking_bagsInput = { update: Prisma.XOR create: Prisma.XOR where?: Prisma.tripsWhereInput } export type tripsUpdateToOneWithWhereWithoutPacking_bagsInput = { where?: Prisma.tripsWhereInput data: Prisma.XOR } export type tripsUpdateWithoutPacking_bagsInput = { title?: Prisma.StringFieldUpdateOperationsInput | string description?: Prisma.NullableStringFieldUpdateOperationsInput | string | null start_date?: Prisma.NullableStringFieldUpdateOperationsInput | string | null end_date?: Prisma.NullableStringFieldUpdateOperationsInput | string | null currency?: Prisma.NullableStringFieldUpdateOperationsInput | string | null cover_image?: Prisma.NullableStringFieldUpdateOperationsInput | string | null is_archived?: Prisma.NullableIntFieldUpdateOperationsInput | number | null reminder_days?: Prisma.NullableIntFieldUpdateOperationsInput | number | null created_at?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null updated_at?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null budget_category_order?: Prisma.budget_category_orderUpdateManyWithoutTripsNestedInput budget_items?: Prisma.budget_itemsUpdateManyWithoutTripsNestedInput collab_messages?: Prisma.collab_messagesUpdateManyWithoutTripsNestedInput collab_notes?: Prisma.collab_notesUpdateManyWithoutTripsNestedInput collab_polls?: Prisma.collab_pollsUpdateManyWithoutTripsNestedInput day_accommodations?: Prisma.day_accommodationsUpdateManyWithoutTripsNestedInput day_notes?: Prisma.day_notesUpdateManyWithoutTripsNestedInput days?: Prisma.daysUpdateManyWithoutTripsNestedInput journey_entries?: Prisma.journey_entriesUpdateManyWithoutTripsNestedInput journey_trips?: Prisma.journey_tripsUpdateManyWithoutTripsNestedInput packing_category_assignees?: Prisma.packing_category_assigneesUpdateManyWithoutTripsNestedInput packing_items?: Prisma.packing_itemsUpdateManyWithoutTripsNestedInput photos?: Prisma.photosUpdateManyWithoutTripsNestedInput places?: Prisma.placesUpdateManyWithoutTripsNestedInput reservations?: Prisma.reservationsUpdateManyWithoutTripsNestedInput share_tokens?: Prisma.share_tokensUpdateManyWithoutTripsNestedInput todo_category_assignees?: Prisma.todo_category_assigneesUpdateManyWithoutTripsNestedInput todo_items?: Prisma.todo_itemsUpdateManyWithoutTripsNestedInput trip_album_links?: Prisma.trip_album_linksUpdateManyWithoutTripsNestedInput trip_files?: Prisma.trip_filesUpdateManyWithoutTripsNestedInput trip_members?: Prisma.trip_membersUpdateManyWithoutTripsNestedInput trip_photos?: Prisma.trip_photosUpdateManyWithoutTripsNestedInput users?: Prisma.usersUpdateOneRequiredWithoutTripsNestedInput } export type tripsUncheckedUpdateWithoutPacking_bagsInput = { id?: Prisma.IntFieldUpdateOperationsInput | number user_id?: Prisma.IntFieldUpdateOperationsInput | number title?: Prisma.StringFieldUpdateOperationsInput | string description?: Prisma.NullableStringFieldUpdateOperationsInput | string | null start_date?: Prisma.NullableStringFieldUpdateOperationsInput | string | null end_date?: Prisma.NullableStringFieldUpdateOperationsInput | string | null currency?: Prisma.NullableStringFieldUpdateOperationsInput | string | null cover_image?: Prisma.NullableStringFieldUpdateOperationsInput | string | null is_archived?: Prisma.NullableIntFieldUpdateOperationsInput | number | null reminder_days?: Prisma.NullableIntFieldUpdateOperationsInput | number | null created_at?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null updated_at?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null budget_category_order?: Prisma.budget_category_orderUncheckedUpdateManyWithoutTripsNestedInput budget_items?: Prisma.budget_itemsUncheckedUpdateManyWithoutTripsNestedInput collab_messages?: Prisma.collab_messagesUncheckedUpdateManyWithoutTripsNestedInput collab_notes?: Prisma.collab_notesUncheckedUpdateManyWithoutTripsNestedInput collab_polls?: Prisma.collab_pollsUncheckedUpdateManyWithoutTripsNestedInput day_accommodations?: Prisma.day_accommodationsUncheckedUpdateManyWithoutTripsNestedInput day_notes?: Prisma.day_notesUncheckedUpdateManyWithoutTripsNestedInput days?: Prisma.daysUncheckedUpdateManyWithoutTripsNestedInput journey_entries?: Prisma.journey_entriesUncheckedUpdateManyWithoutTripsNestedInput journey_trips?: Prisma.journey_tripsUncheckedUpdateManyWithoutTripsNestedInput packing_category_assignees?: Prisma.packing_category_assigneesUncheckedUpdateManyWithoutTripsNestedInput packing_items?: Prisma.packing_itemsUncheckedUpdateManyWithoutTripsNestedInput photos?: Prisma.photosUncheckedUpdateManyWithoutTripsNestedInput places?: Prisma.placesUncheckedUpdateManyWithoutTripsNestedInput reservations?: Prisma.reservationsUncheckedUpdateManyWithoutTripsNestedInput share_tokens?: Prisma.share_tokensUncheckedUpdateManyWithoutTripsNestedInput todo_category_assignees?: Prisma.todo_category_assigneesUncheckedUpdateManyWithoutTripsNestedInput todo_items?: Prisma.todo_itemsUncheckedUpdateManyWithoutTripsNestedInput trip_album_links?: Prisma.trip_album_linksUncheckedUpdateManyWithoutTripsNestedInput trip_files?: Prisma.trip_filesUncheckedUpdateManyWithoutTripsNestedInput trip_members?: Prisma.trip_membersUncheckedUpdateManyWithoutTripsNestedInput trip_photos?: Prisma.trip_photosUncheckedUpdateManyWithoutTripsNestedInput } export type tripsCreateWithoutPacking_category_assigneesInput = { title: string description?: string | null start_date?: string | null end_date?: string | null currency?: string | null cover_image?: string | null is_archived?: number | null reminder_days?: number | null created_at?: Date | string | null updated_at?: Date | string | null budget_category_order?: Prisma.budget_category_orderCreateNestedManyWithoutTripsInput budget_items?: Prisma.budget_itemsCreateNestedManyWithoutTripsInput collab_messages?: Prisma.collab_messagesCreateNestedManyWithoutTripsInput collab_notes?: Prisma.collab_notesCreateNestedManyWithoutTripsInput collab_polls?: Prisma.collab_pollsCreateNestedManyWithoutTripsInput day_accommodations?: Prisma.day_accommodationsCreateNestedManyWithoutTripsInput day_notes?: Prisma.day_notesCreateNestedManyWithoutTripsInput days?: Prisma.daysCreateNestedManyWithoutTripsInput journey_entries?: Prisma.journey_entriesCreateNestedManyWithoutTripsInput journey_trips?: Prisma.journey_tripsCreateNestedManyWithoutTripsInput packing_bags?: Prisma.packing_bagsCreateNestedManyWithoutTripsInput packing_items?: Prisma.packing_itemsCreateNestedManyWithoutTripsInput photos?: Prisma.photosCreateNestedManyWithoutTripsInput places?: Prisma.placesCreateNestedManyWithoutTripsInput reservations?: Prisma.reservationsCreateNestedManyWithoutTripsInput share_tokens?: Prisma.share_tokensCreateNestedManyWithoutTripsInput todo_category_assignees?: Prisma.todo_category_assigneesCreateNestedManyWithoutTripsInput todo_items?: Prisma.todo_itemsCreateNestedManyWithoutTripsInput trip_album_links?: Prisma.trip_album_linksCreateNestedManyWithoutTripsInput trip_files?: Prisma.trip_filesCreateNestedManyWithoutTripsInput trip_members?: Prisma.trip_membersCreateNestedManyWithoutTripsInput trip_photos?: Prisma.trip_photosCreateNestedManyWithoutTripsInput users: Prisma.usersCreateNestedOneWithoutTripsInput } export type tripsUncheckedCreateWithoutPacking_category_assigneesInput = { id?: number user_id: number title: string description?: string | null start_date?: string | null end_date?: string | null currency?: string | null cover_image?: string | null is_archived?: number | null reminder_days?: number | null created_at?: Date | string | null updated_at?: Date | string | null budget_category_order?: Prisma.budget_category_orderUncheckedCreateNestedManyWithoutTripsInput budget_items?: Prisma.budget_itemsUncheckedCreateNestedManyWithoutTripsInput collab_messages?: Prisma.collab_messagesUncheckedCreateNestedManyWithoutTripsInput collab_notes?: Prisma.collab_notesUncheckedCreateNestedManyWithoutTripsInput collab_polls?: Prisma.collab_pollsUncheckedCreateNestedManyWithoutTripsInput day_accommodations?: Prisma.day_accommodationsUncheckedCreateNestedManyWithoutTripsInput day_notes?: Prisma.day_notesUncheckedCreateNestedManyWithoutTripsInput days?: Prisma.daysUncheckedCreateNestedManyWithoutTripsInput journey_entries?: Prisma.journey_entriesUncheckedCreateNestedManyWithoutTripsInput journey_trips?: Prisma.journey_tripsUncheckedCreateNestedManyWithoutTripsInput packing_bags?: Prisma.packing_bagsUncheckedCreateNestedManyWithoutTripsInput packing_items?: Prisma.packing_itemsUncheckedCreateNestedManyWithoutTripsInput photos?: Prisma.photosUncheckedCreateNestedManyWithoutTripsInput places?: Prisma.placesUncheckedCreateNestedManyWithoutTripsInput reservations?: Prisma.reservationsUncheckedCreateNestedManyWithoutTripsInput share_tokens?: Prisma.share_tokensUncheckedCreateNestedManyWithoutTripsInput todo_category_assignees?: Prisma.todo_category_assigneesUncheckedCreateNestedManyWithoutTripsInput todo_items?: Prisma.todo_itemsUncheckedCreateNestedManyWithoutTripsInput trip_album_links?: Prisma.trip_album_linksUncheckedCreateNestedManyWithoutTripsInput trip_files?: Prisma.trip_filesUncheckedCreateNestedManyWithoutTripsInput trip_members?: Prisma.trip_membersUncheckedCreateNestedManyWithoutTripsInput trip_photos?: Prisma.trip_photosUncheckedCreateNestedManyWithoutTripsInput } export type tripsCreateOrConnectWithoutPacking_category_assigneesInput = { where: Prisma.tripsWhereUniqueInput create: Prisma.XOR } export type tripsUpsertWithoutPacking_category_assigneesInput = { update: Prisma.XOR create: Prisma.XOR where?: Prisma.tripsWhereInput } export type tripsUpdateToOneWithWhereWithoutPacking_category_assigneesInput = { where?: Prisma.tripsWhereInput data: Prisma.XOR } export type tripsUpdateWithoutPacking_category_assigneesInput = { title?: Prisma.StringFieldUpdateOperationsInput | string description?: Prisma.NullableStringFieldUpdateOperationsInput | string | null start_date?: Prisma.NullableStringFieldUpdateOperationsInput | string | null end_date?: Prisma.NullableStringFieldUpdateOperationsInput | string | null currency?: Prisma.NullableStringFieldUpdateOperationsInput | string | null cover_image?: Prisma.NullableStringFieldUpdateOperationsInput | string | null is_archived?: Prisma.NullableIntFieldUpdateOperationsInput | number | null reminder_days?: Prisma.NullableIntFieldUpdateOperationsInput | number | null created_at?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null updated_at?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null budget_category_order?: Prisma.budget_category_orderUpdateManyWithoutTripsNestedInput budget_items?: Prisma.budget_itemsUpdateManyWithoutTripsNestedInput collab_messages?: Prisma.collab_messagesUpdateManyWithoutTripsNestedInput collab_notes?: Prisma.collab_notesUpdateManyWithoutTripsNestedInput collab_polls?: Prisma.collab_pollsUpdateManyWithoutTripsNestedInput day_accommodations?: Prisma.day_accommodationsUpdateManyWithoutTripsNestedInput day_notes?: Prisma.day_notesUpdateManyWithoutTripsNestedInput days?: Prisma.daysUpdateManyWithoutTripsNestedInput journey_entries?: Prisma.journey_entriesUpdateManyWithoutTripsNestedInput journey_trips?: Prisma.journey_tripsUpdateManyWithoutTripsNestedInput packing_bags?: Prisma.packing_bagsUpdateManyWithoutTripsNestedInput packing_items?: Prisma.packing_itemsUpdateManyWithoutTripsNestedInput photos?: Prisma.photosUpdateManyWithoutTripsNestedInput places?: Prisma.placesUpdateManyWithoutTripsNestedInput reservations?: Prisma.reservationsUpdateManyWithoutTripsNestedInput share_tokens?: Prisma.share_tokensUpdateManyWithoutTripsNestedInput todo_category_assignees?: Prisma.todo_category_assigneesUpdateManyWithoutTripsNestedInput todo_items?: Prisma.todo_itemsUpdateManyWithoutTripsNestedInput trip_album_links?: Prisma.trip_album_linksUpdateManyWithoutTripsNestedInput trip_files?: Prisma.trip_filesUpdateManyWithoutTripsNestedInput trip_members?: Prisma.trip_membersUpdateManyWithoutTripsNestedInput trip_photos?: Prisma.trip_photosUpdateManyWithoutTripsNestedInput users?: Prisma.usersUpdateOneRequiredWithoutTripsNestedInput } export type tripsUncheckedUpdateWithoutPacking_category_assigneesInput = { id?: Prisma.IntFieldUpdateOperationsInput | number user_id?: Prisma.IntFieldUpdateOperationsInput | number title?: Prisma.StringFieldUpdateOperationsInput | string description?: Prisma.NullableStringFieldUpdateOperationsInput | string | null start_date?: Prisma.NullableStringFieldUpdateOperationsInput | string | null end_date?: Prisma.NullableStringFieldUpdateOperationsInput | string | null currency?: Prisma.NullableStringFieldUpdateOperationsInput | string | null cover_image?: Prisma.NullableStringFieldUpdateOperationsInput | string | null is_archived?: Prisma.NullableIntFieldUpdateOperationsInput | number | null reminder_days?: Prisma.NullableIntFieldUpdateOperationsInput | number | null created_at?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null updated_at?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null budget_category_order?: Prisma.budget_category_orderUncheckedUpdateManyWithoutTripsNestedInput budget_items?: Prisma.budget_itemsUncheckedUpdateManyWithoutTripsNestedInput collab_messages?: Prisma.collab_messagesUncheckedUpdateManyWithoutTripsNestedInput collab_notes?: Prisma.collab_notesUncheckedUpdateManyWithoutTripsNestedInput collab_polls?: Prisma.collab_pollsUncheckedUpdateManyWithoutTripsNestedInput day_accommodations?: Prisma.day_accommodationsUncheckedUpdateManyWithoutTripsNestedInput day_notes?: Prisma.day_notesUncheckedUpdateManyWithoutTripsNestedInput days?: Prisma.daysUncheckedUpdateManyWithoutTripsNestedInput journey_entries?: Prisma.journey_entriesUncheckedUpdateManyWithoutTripsNestedInput journey_trips?: Prisma.journey_tripsUncheckedUpdateManyWithoutTripsNestedInput packing_bags?: Prisma.packing_bagsUncheckedUpdateManyWithoutTripsNestedInput packing_items?: Prisma.packing_itemsUncheckedUpdateManyWithoutTripsNestedInput photos?: Prisma.photosUncheckedUpdateManyWithoutTripsNestedInput places?: Prisma.placesUncheckedUpdateManyWithoutTripsNestedInput reservations?: Prisma.reservationsUncheckedUpdateManyWithoutTripsNestedInput share_tokens?: Prisma.share_tokensUncheckedUpdateManyWithoutTripsNestedInput todo_category_assignees?: Prisma.todo_category_assigneesUncheckedUpdateManyWithoutTripsNestedInput todo_items?: Prisma.todo_itemsUncheckedUpdateManyWithoutTripsNestedInput trip_album_links?: Prisma.trip_album_linksUncheckedUpdateManyWithoutTripsNestedInput trip_files?: Prisma.trip_filesUncheckedUpdateManyWithoutTripsNestedInput trip_members?: Prisma.trip_membersUncheckedUpdateManyWithoutTripsNestedInput trip_photos?: Prisma.trip_photosUncheckedUpdateManyWithoutTripsNestedInput } export type tripsCreateWithoutPacking_itemsInput = { title: string description?: string | null start_date?: string | null end_date?: string | null currency?: string | null cover_image?: string | null is_archived?: number | null reminder_days?: number | null created_at?: Date | string | null updated_at?: Date | string | null budget_category_order?: Prisma.budget_category_orderCreateNestedManyWithoutTripsInput budget_items?: Prisma.budget_itemsCreateNestedManyWithoutTripsInput collab_messages?: Prisma.collab_messagesCreateNestedManyWithoutTripsInput collab_notes?: Prisma.collab_notesCreateNestedManyWithoutTripsInput collab_polls?: Prisma.collab_pollsCreateNestedManyWithoutTripsInput day_accommodations?: Prisma.day_accommodationsCreateNestedManyWithoutTripsInput day_notes?: Prisma.day_notesCreateNestedManyWithoutTripsInput days?: Prisma.daysCreateNestedManyWithoutTripsInput journey_entries?: Prisma.journey_entriesCreateNestedManyWithoutTripsInput journey_trips?: Prisma.journey_tripsCreateNestedManyWithoutTripsInput packing_bags?: Prisma.packing_bagsCreateNestedManyWithoutTripsInput packing_category_assignees?: Prisma.packing_category_assigneesCreateNestedManyWithoutTripsInput photos?: Prisma.photosCreateNestedManyWithoutTripsInput places?: Prisma.placesCreateNestedManyWithoutTripsInput reservations?: Prisma.reservationsCreateNestedManyWithoutTripsInput share_tokens?: Prisma.share_tokensCreateNestedManyWithoutTripsInput todo_category_assignees?: Prisma.todo_category_assigneesCreateNestedManyWithoutTripsInput todo_items?: Prisma.todo_itemsCreateNestedManyWithoutTripsInput trip_album_links?: Prisma.trip_album_linksCreateNestedManyWithoutTripsInput trip_files?: Prisma.trip_filesCreateNestedManyWithoutTripsInput trip_members?: Prisma.trip_membersCreateNestedManyWithoutTripsInput trip_photos?: Prisma.trip_photosCreateNestedManyWithoutTripsInput users: Prisma.usersCreateNestedOneWithoutTripsInput } export type tripsUncheckedCreateWithoutPacking_itemsInput = { id?: number user_id: number title: string description?: string | null start_date?: string | null end_date?: string | null currency?: string | null cover_image?: string | null is_archived?: number | null reminder_days?: number | null created_at?: Date | string | null updated_at?: Date | string | null budget_category_order?: Prisma.budget_category_orderUncheckedCreateNestedManyWithoutTripsInput budget_items?: Prisma.budget_itemsUncheckedCreateNestedManyWithoutTripsInput collab_messages?: Prisma.collab_messagesUncheckedCreateNestedManyWithoutTripsInput collab_notes?: Prisma.collab_notesUncheckedCreateNestedManyWithoutTripsInput collab_polls?: Prisma.collab_pollsUncheckedCreateNestedManyWithoutTripsInput day_accommodations?: Prisma.day_accommodationsUncheckedCreateNestedManyWithoutTripsInput day_notes?: Prisma.day_notesUncheckedCreateNestedManyWithoutTripsInput days?: Prisma.daysUncheckedCreateNestedManyWithoutTripsInput journey_entries?: Prisma.journey_entriesUncheckedCreateNestedManyWithoutTripsInput journey_trips?: Prisma.journey_tripsUncheckedCreateNestedManyWithoutTripsInput packing_bags?: Prisma.packing_bagsUncheckedCreateNestedManyWithoutTripsInput packing_category_assignees?: Prisma.packing_category_assigneesUncheckedCreateNestedManyWithoutTripsInput photos?: Prisma.photosUncheckedCreateNestedManyWithoutTripsInput places?: Prisma.placesUncheckedCreateNestedManyWithoutTripsInput reservations?: Prisma.reservationsUncheckedCreateNestedManyWithoutTripsInput share_tokens?: Prisma.share_tokensUncheckedCreateNestedManyWithoutTripsInput todo_category_assignees?: Prisma.todo_category_assigneesUncheckedCreateNestedManyWithoutTripsInput todo_items?: Prisma.todo_itemsUncheckedCreateNestedManyWithoutTripsInput trip_album_links?: Prisma.trip_album_linksUncheckedCreateNestedManyWithoutTripsInput trip_files?: Prisma.trip_filesUncheckedCreateNestedManyWithoutTripsInput trip_members?: Prisma.trip_membersUncheckedCreateNestedManyWithoutTripsInput trip_photos?: Prisma.trip_photosUncheckedCreateNestedManyWithoutTripsInput } export type tripsCreateOrConnectWithoutPacking_itemsInput = { where: Prisma.tripsWhereUniqueInput create: Prisma.XOR } export type tripsUpsertWithoutPacking_itemsInput = { update: Prisma.XOR create: Prisma.XOR where?: Prisma.tripsWhereInput } export type tripsUpdateToOneWithWhereWithoutPacking_itemsInput = { where?: Prisma.tripsWhereInput data: Prisma.XOR } export type tripsUpdateWithoutPacking_itemsInput = { title?: Prisma.StringFieldUpdateOperationsInput | string description?: Prisma.NullableStringFieldUpdateOperationsInput | string | null start_date?: Prisma.NullableStringFieldUpdateOperationsInput | string | null end_date?: Prisma.NullableStringFieldUpdateOperationsInput | string | null currency?: Prisma.NullableStringFieldUpdateOperationsInput | string | null cover_image?: Prisma.NullableStringFieldUpdateOperationsInput | string | null is_archived?: Prisma.NullableIntFieldUpdateOperationsInput | number | null reminder_days?: Prisma.NullableIntFieldUpdateOperationsInput | number | null created_at?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null updated_at?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null budget_category_order?: Prisma.budget_category_orderUpdateManyWithoutTripsNestedInput budget_items?: Prisma.budget_itemsUpdateManyWithoutTripsNestedInput collab_messages?: Prisma.collab_messagesUpdateManyWithoutTripsNestedInput collab_notes?: Prisma.collab_notesUpdateManyWithoutTripsNestedInput collab_polls?: Prisma.collab_pollsUpdateManyWithoutTripsNestedInput day_accommodations?: Prisma.day_accommodationsUpdateManyWithoutTripsNestedInput day_notes?: Prisma.day_notesUpdateManyWithoutTripsNestedInput days?: Prisma.daysUpdateManyWithoutTripsNestedInput journey_entries?: Prisma.journey_entriesUpdateManyWithoutTripsNestedInput journey_trips?: Prisma.journey_tripsUpdateManyWithoutTripsNestedInput packing_bags?: Prisma.packing_bagsUpdateManyWithoutTripsNestedInput packing_category_assignees?: Prisma.packing_category_assigneesUpdateManyWithoutTripsNestedInput photos?: Prisma.photosUpdateManyWithoutTripsNestedInput places?: Prisma.placesUpdateManyWithoutTripsNestedInput reservations?: Prisma.reservationsUpdateManyWithoutTripsNestedInput share_tokens?: Prisma.share_tokensUpdateManyWithoutTripsNestedInput todo_category_assignees?: Prisma.todo_category_assigneesUpdateManyWithoutTripsNestedInput todo_items?: Prisma.todo_itemsUpdateManyWithoutTripsNestedInput trip_album_links?: Prisma.trip_album_linksUpdateManyWithoutTripsNestedInput trip_files?: Prisma.trip_filesUpdateManyWithoutTripsNestedInput trip_members?: Prisma.trip_membersUpdateManyWithoutTripsNestedInput trip_photos?: Prisma.trip_photosUpdateManyWithoutTripsNestedInput users?: Prisma.usersUpdateOneRequiredWithoutTripsNestedInput } export type tripsUncheckedUpdateWithoutPacking_itemsInput = { id?: Prisma.IntFieldUpdateOperationsInput | number user_id?: Prisma.IntFieldUpdateOperationsInput | number title?: Prisma.StringFieldUpdateOperationsInput | string description?: Prisma.NullableStringFieldUpdateOperationsInput | string | null start_date?: Prisma.NullableStringFieldUpdateOperationsInput | string | null end_date?: Prisma.NullableStringFieldUpdateOperationsInput | string | null currency?: Prisma.NullableStringFieldUpdateOperationsInput | string | null cover_image?: Prisma.NullableStringFieldUpdateOperationsInput | string | null is_archived?: Prisma.NullableIntFieldUpdateOperationsInput | number | null reminder_days?: Prisma.NullableIntFieldUpdateOperationsInput | number | null created_at?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null updated_at?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null budget_category_order?: Prisma.budget_category_orderUncheckedUpdateManyWithoutTripsNestedInput budget_items?: Prisma.budget_itemsUncheckedUpdateManyWithoutTripsNestedInput collab_messages?: Prisma.collab_messagesUncheckedUpdateManyWithoutTripsNestedInput collab_notes?: Prisma.collab_notesUncheckedUpdateManyWithoutTripsNestedInput collab_polls?: Prisma.collab_pollsUncheckedUpdateManyWithoutTripsNestedInput day_accommodations?: Prisma.day_accommodationsUncheckedUpdateManyWithoutTripsNestedInput day_notes?: Prisma.day_notesUncheckedUpdateManyWithoutTripsNestedInput days?: Prisma.daysUncheckedUpdateManyWithoutTripsNestedInput journey_entries?: Prisma.journey_entriesUncheckedUpdateManyWithoutTripsNestedInput journey_trips?: Prisma.journey_tripsUncheckedUpdateManyWithoutTripsNestedInput packing_bags?: Prisma.packing_bagsUncheckedUpdateManyWithoutTripsNestedInput packing_category_assignees?: Prisma.packing_category_assigneesUncheckedUpdateManyWithoutTripsNestedInput photos?: Prisma.photosUncheckedUpdateManyWithoutTripsNestedInput places?: Prisma.placesUncheckedUpdateManyWithoutTripsNestedInput reservations?: Prisma.reservationsUncheckedUpdateManyWithoutTripsNestedInput share_tokens?: Prisma.share_tokensUncheckedUpdateManyWithoutTripsNestedInput todo_category_assignees?: Prisma.todo_category_assigneesUncheckedUpdateManyWithoutTripsNestedInput todo_items?: Prisma.todo_itemsUncheckedUpdateManyWithoutTripsNestedInput trip_album_links?: Prisma.trip_album_linksUncheckedUpdateManyWithoutTripsNestedInput trip_files?: Prisma.trip_filesUncheckedUpdateManyWithoutTripsNestedInput trip_members?: Prisma.trip_membersUncheckedUpdateManyWithoutTripsNestedInput trip_photos?: Prisma.trip_photosUncheckedUpdateManyWithoutTripsNestedInput } export type tripsCreateWithoutPhotosInput = { title: string description?: string | null start_date?: string | null end_date?: string | null currency?: string | null cover_image?: string | null is_archived?: number | null reminder_days?: number | null created_at?: Date | string | null updated_at?: Date | string | null budget_category_order?: Prisma.budget_category_orderCreateNestedManyWithoutTripsInput budget_items?: Prisma.budget_itemsCreateNestedManyWithoutTripsInput collab_messages?: Prisma.collab_messagesCreateNestedManyWithoutTripsInput collab_notes?: Prisma.collab_notesCreateNestedManyWithoutTripsInput collab_polls?: Prisma.collab_pollsCreateNestedManyWithoutTripsInput day_accommodations?: Prisma.day_accommodationsCreateNestedManyWithoutTripsInput day_notes?: Prisma.day_notesCreateNestedManyWithoutTripsInput days?: Prisma.daysCreateNestedManyWithoutTripsInput journey_entries?: Prisma.journey_entriesCreateNestedManyWithoutTripsInput journey_trips?: Prisma.journey_tripsCreateNestedManyWithoutTripsInput packing_bags?: Prisma.packing_bagsCreateNestedManyWithoutTripsInput packing_category_assignees?: Prisma.packing_category_assigneesCreateNestedManyWithoutTripsInput packing_items?: Prisma.packing_itemsCreateNestedManyWithoutTripsInput places?: Prisma.placesCreateNestedManyWithoutTripsInput reservations?: Prisma.reservationsCreateNestedManyWithoutTripsInput share_tokens?: Prisma.share_tokensCreateNestedManyWithoutTripsInput todo_category_assignees?: Prisma.todo_category_assigneesCreateNestedManyWithoutTripsInput todo_items?: Prisma.todo_itemsCreateNestedManyWithoutTripsInput trip_album_links?: Prisma.trip_album_linksCreateNestedManyWithoutTripsInput trip_files?: Prisma.trip_filesCreateNestedManyWithoutTripsInput trip_members?: Prisma.trip_membersCreateNestedManyWithoutTripsInput trip_photos?: Prisma.trip_photosCreateNestedManyWithoutTripsInput users: Prisma.usersCreateNestedOneWithoutTripsInput } export type tripsUncheckedCreateWithoutPhotosInput = { id?: number user_id: number title: string description?: string | null start_date?: string | null end_date?: string | null currency?: string | null cover_image?: string | null is_archived?: number | null reminder_days?: number | null created_at?: Date | string | null updated_at?: Date | string | null budget_category_order?: Prisma.budget_category_orderUncheckedCreateNestedManyWithoutTripsInput budget_items?: Prisma.budget_itemsUncheckedCreateNestedManyWithoutTripsInput collab_messages?: Prisma.collab_messagesUncheckedCreateNestedManyWithoutTripsInput collab_notes?: Prisma.collab_notesUncheckedCreateNestedManyWithoutTripsInput collab_polls?: Prisma.collab_pollsUncheckedCreateNestedManyWithoutTripsInput day_accommodations?: Prisma.day_accommodationsUncheckedCreateNestedManyWithoutTripsInput day_notes?: Prisma.day_notesUncheckedCreateNestedManyWithoutTripsInput days?: Prisma.daysUncheckedCreateNestedManyWithoutTripsInput journey_entries?: Prisma.journey_entriesUncheckedCreateNestedManyWithoutTripsInput journey_trips?: Prisma.journey_tripsUncheckedCreateNestedManyWithoutTripsInput packing_bags?: Prisma.packing_bagsUncheckedCreateNestedManyWithoutTripsInput packing_category_assignees?: Prisma.packing_category_assigneesUncheckedCreateNestedManyWithoutTripsInput packing_items?: Prisma.packing_itemsUncheckedCreateNestedManyWithoutTripsInput places?: Prisma.placesUncheckedCreateNestedManyWithoutTripsInput reservations?: Prisma.reservationsUncheckedCreateNestedManyWithoutTripsInput share_tokens?: Prisma.share_tokensUncheckedCreateNestedManyWithoutTripsInput todo_category_assignees?: Prisma.todo_category_assigneesUncheckedCreateNestedManyWithoutTripsInput todo_items?: Prisma.todo_itemsUncheckedCreateNestedManyWithoutTripsInput trip_album_links?: Prisma.trip_album_linksUncheckedCreateNestedManyWithoutTripsInput trip_files?: Prisma.trip_filesUncheckedCreateNestedManyWithoutTripsInput trip_members?: Prisma.trip_membersUncheckedCreateNestedManyWithoutTripsInput trip_photos?: Prisma.trip_photosUncheckedCreateNestedManyWithoutTripsInput } export type tripsCreateOrConnectWithoutPhotosInput = { where: Prisma.tripsWhereUniqueInput create: Prisma.XOR } export type tripsUpsertWithoutPhotosInput = { update: Prisma.XOR create: Prisma.XOR where?: Prisma.tripsWhereInput } export type tripsUpdateToOneWithWhereWithoutPhotosInput = { where?: Prisma.tripsWhereInput data: Prisma.XOR } export type tripsUpdateWithoutPhotosInput = { title?: Prisma.StringFieldUpdateOperationsInput | string description?: Prisma.NullableStringFieldUpdateOperationsInput | string | null start_date?: Prisma.NullableStringFieldUpdateOperationsInput | string | null end_date?: Prisma.NullableStringFieldUpdateOperationsInput | string | null currency?: Prisma.NullableStringFieldUpdateOperationsInput | string | null cover_image?: Prisma.NullableStringFieldUpdateOperationsInput | string | null is_archived?: Prisma.NullableIntFieldUpdateOperationsInput | number | null reminder_days?: Prisma.NullableIntFieldUpdateOperationsInput | number | null created_at?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null updated_at?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null budget_category_order?: Prisma.budget_category_orderUpdateManyWithoutTripsNestedInput budget_items?: Prisma.budget_itemsUpdateManyWithoutTripsNestedInput collab_messages?: Prisma.collab_messagesUpdateManyWithoutTripsNestedInput collab_notes?: Prisma.collab_notesUpdateManyWithoutTripsNestedInput collab_polls?: Prisma.collab_pollsUpdateManyWithoutTripsNestedInput day_accommodations?: Prisma.day_accommodationsUpdateManyWithoutTripsNestedInput day_notes?: Prisma.day_notesUpdateManyWithoutTripsNestedInput days?: Prisma.daysUpdateManyWithoutTripsNestedInput journey_entries?: Prisma.journey_entriesUpdateManyWithoutTripsNestedInput journey_trips?: Prisma.journey_tripsUpdateManyWithoutTripsNestedInput packing_bags?: Prisma.packing_bagsUpdateManyWithoutTripsNestedInput packing_category_assignees?: Prisma.packing_category_assigneesUpdateManyWithoutTripsNestedInput packing_items?: Prisma.packing_itemsUpdateManyWithoutTripsNestedInput places?: Prisma.placesUpdateManyWithoutTripsNestedInput reservations?: Prisma.reservationsUpdateManyWithoutTripsNestedInput share_tokens?: Prisma.share_tokensUpdateManyWithoutTripsNestedInput todo_category_assignees?: Prisma.todo_category_assigneesUpdateManyWithoutTripsNestedInput todo_items?: Prisma.todo_itemsUpdateManyWithoutTripsNestedInput trip_album_links?: Prisma.trip_album_linksUpdateManyWithoutTripsNestedInput trip_files?: Prisma.trip_filesUpdateManyWithoutTripsNestedInput trip_members?: Prisma.trip_membersUpdateManyWithoutTripsNestedInput trip_photos?: Prisma.trip_photosUpdateManyWithoutTripsNestedInput users?: Prisma.usersUpdateOneRequiredWithoutTripsNestedInput } export type tripsUncheckedUpdateWithoutPhotosInput = { id?: Prisma.IntFieldUpdateOperationsInput | number user_id?: Prisma.IntFieldUpdateOperationsInput | number title?: Prisma.StringFieldUpdateOperationsInput | string description?: Prisma.NullableStringFieldUpdateOperationsInput | string | null start_date?: Prisma.NullableStringFieldUpdateOperationsInput | string | null end_date?: Prisma.NullableStringFieldUpdateOperationsInput | string | null currency?: Prisma.NullableStringFieldUpdateOperationsInput | string | null cover_image?: Prisma.NullableStringFieldUpdateOperationsInput | string | null is_archived?: Prisma.NullableIntFieldUpdateOperationsInput | number | null reminder_days?: Prisma.NullableIntFieldUpdateOperationsInput | number | null created_at?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null updated_at?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null budget_category_order?: Prisma.budget_category_orderUncheckedUpdateManyWithoutTripsNestedInput budget_items?: Prisma.budget_itemsUncheckedUpdateManyWithoutTripsNestedInput collab_messages?: Prisma.collab_messagesUncheckedUpdateManyWithoutTripsNestedInput collab_notes?: Prisma.collab_notesUncheckedUpdateManyWithoutTripsNestedInput collab_polls?: Prisma.collab_pollsUncheckedUpdateManyWithoutTripsNestedInput day_accommodations?: Prisma.day_accommodationsUncheckedUpdateManyWithoutTripsNestedInput day_notes?: Prisma.day_notesUncheckedUpdateManyWithoutTripsNestedInput days?: Prisma.daysUncheckedUpdateManyWithoutTripsNestedInput journey_entries?: Prisma.journey_entriesUncheckedUpdateManyWithoutTripsNestedInput journey_trips?: Prisma.journey_tripsUncheckedUpdateManyWithoutTripsNestedInput packing_bags?: Prisma.packing_bagsUncheckedUpdateManyWithoutTripsNestedInput packing_category_assignees?: Prisma.packing_category_assigneesUncheckedUpdateManyWithoutTripsNestedInput packing_items?: Prisma.packing_itemsUncheckedUpdateManyWithoutTripsNestedInput places?: Prisma.placesUncheckedUpdateManyWithoutTripsNestedInput reservations?: Prisma.reservationsUncheckedUpdateManyWithoutTripsNestedInput share_tokens?: Prisma.share_tokensUncheckedUpdateManyWithoutTripsNestedInput todo_category_assignees?: Prisma.todo_category_assigneesUncheckedUpdateManyWithoutTripsNestedInput todo_items?: Prisma.todo_itemsUncheckedUpdateManyWithoutTripsNestedInput trip_album_links?: Prisma.trip_album_linksUncheckedUpdateManyWithoutTripsNestedInput trip_files?: Prisma.trip_filesUncheckedUpdateManyWithoutTripsNestedInput trip_members?: Prisma.trip_membersUncheckedUpdateManyWithoutTripsNestedInput trip_photos?: Prisma.trip_photosUncheckedUpdateManyWithoutTripsNestedInput } export type tripsCreateWithoutPlacesInput = { title: string description?: string | null start_date?: string | null end_date?: string | null currency?: string | null cover_image?: string | null is_archived?: number | null reminder_days?: number | null created_at?: Date | string | null updated_at?: Date | string | null budget_category_order?: Prisma.budget_category_orderCreateNestedManyWithoutTripsInput budget_items?: Prisma.budget_itemsCreateNestedManyWithoutTripsInput collab_messages?: Prisma.collab_messagesCreateNestedManyWithoutTripsInput collab_notes?: Prisma.collab_notesCreateNestedManyWithoutTripsInput collab_polls?: Prisma.collab_pollsCreateNestedManyWithoutTripsInput day_accommodations?: Prisma.day_accommodationsCreateNestedManyWithoutTripsInput day_notes?: Prisma.day_notesCreateNestedManyWithoutTripsInput days?: Prisma.daysCreateNestedManyWithoutTripsInput journey_entries?: Prisma.journey_entriesCreateNestedManyWithoutTripsInput journey_trips?: Prisma.journey_tripsCreateNestedManyWithoutTripsInput packing_bags?: Prisma.packing_bagsCreateNestedManyWithoutTripsInput packing_category_assignees?: Prisma.packing_category_assigneesCreateNestedManyWithoutTripsInput packing_items?: Prisma.packing_itemsCreateNestedManyWithoutTripsInput photos?: Prisma.photosCreateNestedManyWithoutTripsInput reservations?: Prisma.reservationsCreateNestedManyWithoutTripsInput share_tokens?: Prisma.share_tokensCreateNestedManyWithoutTripsInput todo_category_assignees?: Prisma.todo_category_assigneesCreateNestedManyWithoutTripsInput todo_items?: Prisma.todo_itemsCreateNestedManyWithoutTripsInput trip_album_links?: Prisma.trip_album_linksCreateNestedManyWithoutTripsInput trip_files?: Prisma.trip_filesCreateNestedManyWithoutTripsInput trip_members?: Prisma.trip_membersCreateNestedManyWithoutTripsInput trip_photos?: Prisma.trip_photosCreateNestedManyWithoutTripsInput users: Prisma.usersCreateNestedOneWithoutTripsInput } export type tripsUncheckedCreateWithoutPlacesInput = { id?: number user_id: number title: string description?: string | null start_date?: string | null end_date?: string | null currency?: string | null cover_image?: string | null is_archived?: number | null reminder_days?: number | null created_at?: Date | string | null updated_at?: Date | string | null budget_category_order?: Prisma.budget_category_orderUncheckedCreateNestedManyWithoutTripsInput budget_items?: Prisma.budget_itemsUncheckedCreateNestedManyWithoutTripsInput collab_messages?: Prisma.collab_messagesUncheckedCreateNestedManyWithoutTripsInput collab_notes?: Prisma.collab_notesUncheckedCreateNestedManyWithoutTripsInput collab_polls?: Prisma.collab_pollsUncheckedCreateNestedManyWithoutTripsInput day_accommodations?: Prisma.day_accommodationsUncheckedCreateNestedManyWithoutTripsInput day_notes?: Prisma.day_notesUncheckedCreateNestedManyWithoutTripsInput days?: Prisma.daysUncheckedCreateNestedManyWithoutTripsInput journey_entries?: Prisma.journey_entriesUncheckedCreateNestedManyWithoutTripsInput journey_trips?: Prisma.journey_tripsUncheckedCreateNestedManyWithoutTripsInput packing_bags?: Prisma.packing_bagsUncheckedCreateNestedManyWithoutTripsInput packing_category_assignees?: Prisma.packing_category_assigneesUncheckedCreateNestedManyWithoutTripsInput packing_items?: Prisma.packing_itemsUncheckedCreateNestedManyWithoutTripsInput photos?: Prisma.photosUncheckedCreateNestedManyWithoutTripsInput reservations?: Prisma.reservationsUncheckedCreateNestedManyWithoutTripsInput share_tokens?: Prisma.share_tokensUncheckedCreateNestedManyWithoutTripsInput todo_category_assignees?: Prisma.todo_category_assigneesUncheckedCreateNestedManyWithoutTripsInput todo_items?: Prisma.todo_itemsUncheckedCreateNestedManyWithoutTripsInput trip_album_links?: Prisma.trip_album_linksUncheckedCreateNestedManyWithoutTripsInput trip_files?: Prisma.trip_filesUncheckedCreateNestedManyWithoutTripsInput trip_members?: Prisma.trip_membersUncheckedCreateNestedManyWithoutTripsInput trip_photos?: Prisma.trip_photosUncheckedCreateNestedManyWithoutTripsInput } export type tripsCreateOrConnectWithoutPlacesInput = { where: Prisma.tripsWhereUniqueInput create: Prisma.XOR } export type tripsUpsertWithoutPlacesInput = { update: Prisma.XOR create: Prisma.XOR where?: Prisma.tripsWhereInput } export type tripsUpdateToOneWithWhereWithoutPlacesInput = { where?: Prisma.tripsWhereInput data: Prisma.XOR } export type tripsUpdateWithoutPlacesInput = { title?: Prisma.StringFieldUpdateOperationsInput | string description?: Prisma.NullableStringFieldUpdateOperationsInput | string | null start_date?: Prisma.NullableStringFieldUpdateOperationsInput | string | null end_date?: Prisma.NullableStringFieldUpdateOperationsInput | string | null currency?: Prisma.NullableStringFieldUpdateOperationsInput | string | null cover_image?: Prisma.NullableStringFieldUpdateOperationsInput | string | null is_archived?: Prisma.NullableIntFieldUpdateOperationsInput | number | null reminder_days?: Prisma.NullableIntFieldUpdateOperationsInput | number | null created_at?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null updated_at?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null budget_category_order?: Prisma.budget_category_orderUpdateManyWithoutTripsNestedInput budget_items?: Prisma.budget_itemsUpdateManyWithoutTripsNestedInput collab_messages?: Prisma.collab_messagesUpdateManyWithoutTripsNestedInput collab_notes?: Prisma.collab_notesUpdateManyWithoutTripsNestedInput collab_polls?: Prisma.collab_pollsUpdateManyWithoutTripsNestedInput day_accommodations?: Prisma.day_accommodationsUpdateManyWithoutTripsNestedInput day_notes?: Prisma.day_notesUpdateManyWithoutTripsNestedInput days?: Prisma.daysUpdateManyWithoutTripsNestedInput journey_entries?: Prisma.journey_entriesUpdateManyWithoutTripsNestedInput journey_trips?: Prisma.journey_tripsUpdateManyWithoutTripsNestedInput packing_bags?: Prisma.packing_bagsUpdateManyWithoutTripsNestedInput packing_category_assignees?: Prisma.packing_category_assigneesUpdateManyWithoutTripsNestedInput packing_items?: Prisma.packing_itemsUpdateManyWithoutTripsNestedInput photos?: Prisma.photosUpdateManyWithoutTripsNestedInput reservations?: Prisma.reservationsUpdateManyWithoutTripsNestedInput share_tokens?: Prisma.share_tokensUpdateManyWithoutTripsNestedInput todo_category_assignees?: Prisma.todo_category_assigneesUpdateManyWithoutTripsNestedInput todo_items?: Prisma.todo_itemsUpdateManyWithoutTripsNestedInput trip_album_links?: Prisma.trip_album_linksUpdateManyWithoutTripsNestedInput trip_files?: Prisma.trip_filesUpdateManyWithoutTripsNestedInput trip_members?: Prisma.trip_membersUpdateManyWithoutTripsNestedInput trip_photos?: Prisma.trip_photosUpdateManyWithoutTripsNestedInput users?: Prisma.usersUpdateOneRequiredWithoutTripsNestedInput } export type tripsUncheckedUpdateWithoutPlacesInput = { id?: Prisma.IntFieldUpdateOperationsInput | number user_id?: Prisma.IntFieldUpdateOperationsInput | number title?: Prisma.StringFieldUpdateOperationsInput | string description?: Prisma.NullableStringFieldUpdateOperationsInput | string | null start_date?: Prisma.NullableStringFieldUpdateOperationsInput | string | null end_date?: Prisma.NullableStringFieldUpdateOperationsInput | string | null currency?: Prisma.NullableStringFieldUpdateOperationsInput | string | null cover_image?: Prisma.NullableStringFieldUpdateOperationsInput | string | null is_archived?: Prisma.NullableIntFieldUpdateOperationsInput | number | null reminder_days?: Prisma.NullableIntFieldUpdateOperationsInput | number | null created_at?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null updated_at?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null budget_category_order?: Prisma.budget_category_orderUncheckedUpdateManyWithoutTripsNestedInput budget_items?: Prisma.budget_itemsUncheckedUpdateManyWithoutTripsNestedInput collab_messages?: Prisma.collab_messagesUncheckedUpdateManyWithoutTripsNestedInput collab_notes?: Prisma.collab_notesUncheckedUpdateManyWithoutTripsNestedInput collab_polls?: Prisma.collab_pollsUncheckedUpdateManyWithoutTripsNestedInput day_accommodations?: Prisma.day_accommodationsUncheckedUpdateManyWithoutTripsNestedInput day_notes?: Prisma.day_notesUncheckedUpdateManyWithoutTripsNestedInput days?: Prisma.daysUncheckedUpdateManyWithoutTripsNestedInput journey_entries?: Prisma.journey_entriesUncheckedUpdateManyWithoutTripsNestedInput journey_trips?: Prisma.journey_tripsUncheckedUpdateManyWithoutTripsNestedInput packing_bags?: Prisma.packing_bagsUncheckedUpdateManyWithoutTripsNestedInput packing_category_assignees?: Prisma.packing_category_assigneesUncheckedUpdateManyWithoutTripsNestedInput packing_items?: Prisma.packing_itemsUncheckedUpdateManyWithoutTripsNestedInput photos?: Prisma.photosUncheckedUpdateManyWithoutTripsNestedInput reservations?: Prisma.reservationsUncheckedUpdateManyWithoutTripsNestedInput share_tokens?: Prisma.share_tokensUncheckedUpdateManyWithoutTripsNestedInput todo_category_assignees?: Prisma.todo_category_assigneesUncheckedUpdateManyWithoutTripsNestedInput todo_items?: Prisma.todo_itemsUncheckedUpdateManyWithoutTripsNestedInput trip_album_links?: Prisma.trip_album_linksUncheckedUpdateManyWithoutTripsNestedInput trip_files?: Prisma.trip_filesUncheckedUpdateManyWithoutTripsNestedInput trip_members?: Prisma.trip_membersUncheckedUpdateManyWithoutTripsNestedInput trip_photos?: Prisma.trip_photosUncheckedUpdateManyWithoutTripsNestedInput } export type tripsCreateWithoutReservationsInput = { title: string description?: string | null start_date?: string | null end_date?: string | null currency?: string | null cover_image?: string | null is_archived?: number | null reminder_days?: number | null created_at?: Date | string | null updated_at?: Date | string | null budget_category_order?: Prisma.budget_category_orderCreateNestedManyWithoutTripsInput budget_items?: Prisma.budget_itemsCreateNestedManyWithoutTripsInput collab_messages?: Prisma.collab_messagesCreateNestedManyWithoutTripsInput collab_notes?: Prisma.collab_notesCreateNestedManyWithoutTripsInput collab_polls?: Prisma.collab_pollsCreateNestedManyWithoutTripsInput day_accommodations?: Prisma.day_accommodationsCreateNestedManyWithoutTripsInput day_notes?: Prisma.day_notesCreateNestedManyWithoutTripsInput days?: Prisma.daysCreateNestedManyWithoutTripsInput journey_entries?: Prisma.journey_entriesCreateNestedManyWithoutTripsInput journey_trips?: Prisma.journey_tripsCreateNestedManyWithoutTripsInput packing_bags?: Prisma.packing_bagsCreateNestedManyWithoutTripsInput packing_category_assignees?: Prisma.packing_category_assigneesCreateNestedManyWithoutTripsInput packing_items?: Prisma.packing_itemsCreateNestedManyWithoutTripsInput photos?: Prisma.photosCreateNestedManyWithoutTripsInput places?: Prisma.placesCreateNestedManyWithoutTripsInput share_tokens?: Prisma.share_tokensCreateNestedManyWithoutTripsInput todo_category_assignees?: Prisma.todo_category_assigneesCreateNestedManyWithoutTripsInput todo_items?: Prisma.todo_itemsCreateNestedManyWithoutTripsInput trip_album_links?: Prisma.trip_album_linksCreateNestedManyWithoutTripsInput trip_files?: Prisma.trip_filesCreateNestedManyWithoutTripsInput trip_members?: Prisma.trip_membersCreateNestedManyWithoutTripsInput trip_photos?: Prisma.trip_photosCreateNestedManyWithoutTripsInput users: Prisma.usersCreateNestedOneWithoutTripsInput } export type tripsUncheckedCreateWithoutReservationsInput = { id?: number user_id: number title: string description?: string | null start_date?: string | null end_date?: string | null currency?: string | null cover_image?: string | null is_archived?: number | null reminder_days?: number | null created_at?: Date | string | null updated_at?: Date | string | null budget_category_order?: Prisma.budget_category_orderUncheckedCreateNestedManyWithoutTripsInput budget_items?: Prisma.budget_itemsUncheckedCreateNestedManyWithoutTripsInput collab_messages?: Prisma.collab_messagesUncheckedCreateNestedManyWithoutTripsInput collab_notes?: Prisma.collab_notesUncheckedCreateNestedManyWithoutTripsInput collab_polls?: Prisma.collab_pollsUncheckedCreateNestedManyWithoutTripsInput day_accommodations?: Prisma.day_accommodationsUncheckedCreateNestedManyWithoutTripsInput day_notes?: Prisma.day_notesUncheckedCreateNestedManyWithoutTripsInput days?: Prisma.daysUncheckedCreateNestedManyWithoutTripsInput journey_entries?: Prisma.journey_entriesUncheckedCreateNestedManyWithoutTripsInput journey_trips?: Prisma.journey_tripsUncheckedCreateNestedManyWithoutTripsInput packing_bags?: Prisma.packing_bagsUncheckedCreateNestedManyWithoutTripsInput packing_category_assignees?: Prisma.packing_category_assigneesUncheckedCreateNestedManyWithoutTripsInput packing_items?: Prisma.packing_itemsUncheckedCreateNestedManyWithoutTripsInput photos?: Prisma.photosUncheckedCreateNestedManyWithoutTripsInput places?: Prisma.placesUncheckedCreateNestedManyWithoutTripsInput share_tokens?: Prisma.share_tokensUncheckedCreateNestedManyWithoutTripsInput todo_category_assignees?: Prisma.todo_category_assigneesUncheckedCreateNestedManyWithoutTripsInput todo_items?: Prisma.todo_itemsUncheckedCreateNestedManyWithoutTripsInput trip_album_links?: Prisma.trip_album_linksUncheckedCreateNestedManyWithoutTripsInput trip_files?: Prisma.trip_filesUncheckedCreateNestedManyWithoutTripsInput trip_members?: Prisma.trip_membersUncheckedCreateNestedManyWithoutTripsInput trip_photos?: Prisma.trip_photosUncheckedCreateNestedManyWithoutTripsInput } export type tripsCreateOrConnectWithoutReservationsInput = { where: Prisma.tripsWhereUniqueInput create: Prisma.XOR } export type tripsUpsertWithoutReservationsInput = { update: Prisma.XOR create: Prisma.XOR where?: Prisma.tripsWhereInput } export type tripsUpdateToOneWithWhereWithoutReservationsInput = { where?: Prisma.tripsWhereInput data: Prisma.XOR } export type tripsUpdateWithoutReservationsInput = { title?: Prisma.StringFieldUpdateOperationsInput | string description?: Prisma.NullableStringFieldUpdateOperationsInput | string | null start_date?: Prisma.NullableStringFieldUpdateOperationsInput | string | null end_date?: Prisma.NullableStringFieldUpdateOperationsInput | string | null currency?: Prisma.NullableStringFieldUpdateOperationsInput | string | null cover_image?: Prisma.NullableStringFieldUpdateOperationsInput | string | null is_archived?: Prisma.NullableIntFieldUpdateOperationsInput | number | null reminder_days?: Prisma.NullableIntFieldUpdateOperationsInput | number | null created_at?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null updated_at?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null budget_category_order?: Prisma.budget_category_orderUpdateManyWithoutTripsNestedInput budget_items?: Prisma.budget_itemsUpdateManyWithoutTripsNestedInput collab_messages?: Prisma.collab_messagesUpdateManyWithoutTripsNestedInput collab_notes?: Prisma.collab_notesUpdateManyWithoutTripsNestedInput collab_polls?: Prisma.collab_pollsUpdateManyWithoutTripsNestedInput day_accommodations?: Prisma.day_accommodationsUpdateManyWithoutTripsNestedInput day_notes?: Prisma.day_notesUpdateManyWithoutTripsNestedInput days?: Prisma.daysUpdateManyWithoutTripsNestedInput journey_entries?: Prisma.journey_entriesUpdateManyWithoutTripsNestedInput journey_trips?: Prisma.journey_tripsUpdateManyWithoutTripsNestedInput packing_bags?: Prisma.packing_bagsUpdateManyWithoutTripsNestedInput packing_category_assignees?: Prisma.packing_category_assigneesUpdateManyWithoutTripsNestedInput packing_items?: Prisma.packing_itemsUpdateManyWithoutTripsNestedInput photos?: Prisma.photosUpdateManyWithoutTripsNestedInput places?: Prisma.placesUpdateManyWithoutTripsNestedInput share_tokens?: Prisma.share_tokensUpdateManyWithoutTripsNestedInput todo_category_assignees?: Prisma.todo_category_assigneesUpdateManyWithoutTripsNestedInput todo_items?: Prisma.todo_itemsUpdateManyWithoutTripsNestedInput trip_album_links?: Prisma.trip_album_linksUpdateManyWithoutTripsNestedInput trip_files?: Prisma.trip_filesUpdateManyWithoutTripsNestedInput trip_members?: Prisma.trip_membersUpdateManyWithoutTripsNestedInput trip_photos?: Prisma.trip_photosUpdateManyWithoutTripsNestedInput users?: Prisma.usersUpdateOneRequiredWithoutTripsNestedInput } export type tripsUncheckedUpdateWithoutReservationsInput = { id?: Prisma.IntFieldUpdateOperationsInput | number user_id?: Prisma.IntFieldUpdateOperationsInput | number title?: Prisma.StringFieldUpdateOperationsInput | string description?: Prisma.NullableStringFieldUpdateOperationsInput | string | null start_date?: Prisma.NullableStringFieldUpdateOperationsInput | string | null end_date?: Prisma.NullableStringFieldUpdateOperationsInput | string | null currency?: Prisma.NullableStringFieldUpdateOperationsInput | string | null cover_image?: Prisma.NullableStringFieldUpdateOperationsInput | string | null is_archived?: Prisma.NullableIntFieldUpdateOperationsInput | number | null reminder_days?: Prisma.NullableIntFieldUpdateOperationsInput | number | null created_at?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null updated_at?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null budget_category_order?: Prisma.budget_category_orderUncheckedUpdateManyWithoutTripsNestedInput budget_items?: Prisma.budget_itemsUncheckedUpdateManyWithoutTripsNestedInput collab_messages?: Prisma.collab_messagesUncheckedUpdateManyWithoutTripsNestedInput collab_notes?: Prisma.collab_notesUncheckedUpdateManyWithoutTripsNestedInput collab_polls?: Prisma.collab_pollsUncheckedUpdateManyWithoutTripsNestedInput day_accommodations?: Prisma.day_accommodationsUncheckedUpdateManyWithoutTripsNestedInput day_notes?: Prisma.day_notesUncheckedUpdateManyWithoutTripsNestedInput days?: Prisma.daysUncheckedUpdateManyWithoutTripsNestedInput journey_entries?: Prisma.journey_entriesUncheckedUpdateManyWithoutTripsNestedInput journey_trips?: Prisma.journey_tripsUncheckedUpdateManyWithoutTripsNestedInput packing_bags?: Prisma.packing_bagsUncheckedUpdateManyWithoutTripsNestedInput packing_category_assignees?: Prisma.packing_category_assigneesUncheckedUpdateManyWithoutTripsNestedInput packing_items?: Prisma.packing_itemsUncheckedUpdateManyWithoutTripsNestedInput photos?: Prisma.photosUncheckedUpdateManyWithoutTripsNestedInput places?: Prisma.placesUncheckedUpdateManyWithoutTripsNestedInput share_tokens?: Prisma.share_tokensUncheckedUpdateManyWithoutTripsNestedInput todo_category_assignees?: Prisma.todo_category_assigneesUncheckedUpdateManyWithoutTripsNestedInput todo_items?: Prisma.todo_itemsUncheckedUpdateManyWithoutTripsNestedInput trip_album_links?: Prisma.trip_album_linksUncheckedUpdateManyWithoutTripsNestedInput trip_files?: Prisma.trip_filesUncheckedUpdateManyWithoutTripsNestedInput trip_members?: Prisma.trip_membersUncheckedUpdateManyWithoutTripsNestedInput trip_photos?: Prisma.trip_photosUncheckedUpdateManyWithoutTripsNestedInput } export type tripsCreateWithoutShare_tokensInput = { title: string description?: string | null start_date?: string | null end_date?: string | null currency?: string | null cover_image?: string | null is_archived?: number | null reminder_days?: number | null created_at?: Date | string | null updated_at?: Date | string | null budget_category_order?: Prisma.budget_category_orderCreateNestedManyWithoutTripsInput budget_items?: Prisma.budget_itemsCreateNestedManyWithoutTripsInput collab_messages?: Prisma.collab_messagesCreateNestedManyWithoutTripsInput collab_notes?: Prisma.collab_notesCreateNestedManyWithoutTripsInput collab_polls?: Prisma.collab_pollsCreateNestedManyWithoutTripsInput day_accommodations?: Prisma.day_accommodationsCreateNestedManyWithoutTripsInput day_notes?: Prisma.day_notesCreateNestedManyWithoutTripsInput days?: Prisma.daysCreateNestedManyWithoutTripsInput journey_entries?: Prisma.journey_entriesCreateNestedManyWithoutTripsInput journey_trips?: Prisma.journey_tripsCreateNestedManyWithoutTripsInput packing_bags?: Prisma.packing_bagsCreateNestedManyWithoutTripsInput packing_category_assignees?: Prisma.packing_category_assigneesCreateNestedManyWithoutTripsInput packing_items?: Prisma.packing_itemsCreateNestedManyWithoutTripsInput photos?: Prisma.photosCreateNestedManyWithoutTripsInput places?: Prisma.placesCreateNestedManyWithoutTripsInput reservations?: Prisma.reservationsCreateNestedManyWithoutTripsInput todo_category_assignees?: Prisma.todo_category_assigneesCreateNestedManyWithoutTripsInput todo_items?: Prisma.todo_itemsCreateNestedManyWithoutTripsInput trip_album_links?: Prisma.trip_album_linksCreateNestedManyWithoutTripsInput trip_files?: Prisma.trip_filesCreateNestedManyWithoutTripsInput trip_members?: Prisma.trip_membersCreateNestedManyWithoutTripsInput trip_photos?: Prisma.trip_photosCreateNestedManyWithoutTripsInput users: Prisma.usersCreateNestedOneWithoutTripsInput } export type tripsUncheckedCreateWithoutShare_tokensInput = { id?: number user_id: number title: string description?: string | null start_date?: string | null end_date?: string | null currency?: string | null cover_image?: string | null is_archived?: number | null reminder_days?: number | null created_at?: Date | string | null updated_at?: Date | string | null budget_category_order?: Prisma.budget_category_orderUncheckedCreateNestedManyWithoutTripsInput budget_items?: Prisma.budget_itemsUncheckedCreateNestedManyWithoutTripsInput collab_messages?: Prisma.collab_messagesUncheckedCreateNestedManyWithoutTripsInput collab_notes?: Prisma.collab_notesUncheckedCreateNestedManyWithoutTripsInput collab_polls?: Prisma.collab_pollsUncheckedCreateNestedManyWithoutTripsInput day_accommodations?: Prisma.day_accommodationsUncheckedCreateNestedManyWithoutTripsInput day_notes?: Prisma.day_notesUncheckedCreateNestedManyWithoutTripsInput days?: Prisma.daysUncheckedCreateNestedManyWithoutTripsInput journey_entries?: Prisma.journey_entriesUncheckedCreateNestedManyWithoutTripsInput journey_trips?: Prisma.journey_tripsUncheckedCreateNestedManyWithoutTripsInput packing_bags?: Prisma.packing_bagsUncheckedCreateNestedManyWithoutTripsInput packing_category_assignees?: Prisma.packing_category_assigneesUncheckedCreateNestedManyWithoutTripsInput packing_items?: Prisma.packing_itemsUncheckedCreateNestedManyWithoutTripsInput photos?: Prisma.photosUncheckedCreateNestedManyWithoutTripsInput places?: Prisma.placesUncheckedCreateNestedManyWithoutTripsInput reservations?: Prisma.reservationsUncheckedCreateNestedManyWithoutTripsInput todo_category_assignees?: Prisma.todo_category_assigneesUncheckedCreateNestedManyWithoutTripsInput todo_items?: Prisma.todo_itemsUncheckedCreateNestedManyWithoutTripsInput trip_album_links?: Prisma.trip_album_linksUncheckedCreateNestedManyWithoutTripsInput trip_files?: Prisma.trip_filesUncheckedCreateNestedManyWithoutTripsInput trip_members?: Prisma.trip_membersUncheckedCreateNestedManyWithoutTripsInput trip_photos?: Prisma.trip_photosUncheckedCreateNestedManyWithoutTripsInput } export type tripsCreateOrConnectWithoutShare_tokensInput = { where: Prisma.tripsWhereUniqueInput create: Prisma.XOR } export type tripsUpsertWithoutShare_tokensInput = { update: Prisma.XOR create: Prisma.XOR where?: Prisma.tripsWhereInput } export type tripsUpdateToOneWithWhereWithoutShare_tokensInput = { where?: Prisma.tripsWhereInput data: Prisma.XOR } export type tripsUpdateWithoutShare_tokensInput = { title?: Prisma.StringFieldUpdateOperationsInput | string description?: Prisma.NullableStringFieldUpdateOperationsInput | string | null start_date?: Prisma.NullableStringFieldUpdateOperationsInput | string | null end_date?: Prisma.NullableStringFieldUpdateOperationsInput | string | null currency?: Prisma.NullableStringFieldUpdateOperationsInput | string | null cover_image?: Prisma.NullableStringFieldUpdateOperationsInput | string | null is_archived?: Prisma.NullableIntFieldUpdateOperationsInput | number | null reminder_days?: Prisma.NullableIntFieldUpdateOperationsInput | number | null created_at?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null updated_at?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null budget_category_order?: Prisma.budget_category_orderUpdateManyWithoutTripsNestedInput budget_items?: Prisma.budget_itemsUpdateManyWithoutTripsNestedInput collab_messages?: Prisma.collab_messagesUpdateManyWithoutTripsNestedInput collab_notes?: Prisma.collab_notesUpdateManyWithoutTripsNestedInput collab_polls?: Prisma.collab_pollsUpdateManyWithoutTripsNestedInput day_accommodations?: Prisma.day_accommodationsUpdateManyWithoutTripsNestedInput day_notes?: Prisma.day_notesUpdateManyWithoutTripsNestedInput days?: Prisma.daysUpdateManyWithoutTripsNestedInput journey_entries?: Prisma.journey_entriesUpdateManyWithoutTripsNestedInput journey_trips?: Prisma.journey_tripsUpdateManyWithoutTripsNestedInput packing_bags?: Prisma.packing_bagsUpdateManyWithoutTripsNestedInput packing_category_assignees?: Prisma.packing_category_assigneesUpdateManyWithoutTripsNestedInput packing_items?: Prisma.packing_itemsUpdateManyWithoutTripsNestedInput photos?: Prisma.photosUpdateManyWithoutTripsNestedInput places?: Prisma.placesUpdateManyWithoutTripsNestedInput reservations?: Prisma.reservationsUpdateManyWithoutTripsNestedInput todo_category_assignees?: Prisma.todo_category_assigneesUpdateManyWithoutTripsNestedInput todo_items?: Prisma.todo_itemsUpdateManyWithoutTripsNestedInput trip_album_links?: Prisma.trip_album_linksUpdateManyWithoutTripsNestedInput trip_files?: Prisma.trip_filesUpdateManyWithoutTripsNestedInput trip_members?: Prisma.trip_membersUpdateManyWithoutTripsNestedInput trip_photos?: Prisma.trip_photosUpdateManyWithoutTripsNestedInput users?: Prisma.usersUpdateOneRequiredWithoutTripsNestedInput } export type tripsUncheckedUpdateWithoutShare_tokensInput = { id?: Prisma.IntFieldUpdateOperationsInput | number user_id?: Prisma.IntFieldUpdateOperationsInput | number title?: Prisma.StringFieldUpdateOperationsInput | string description?: Prisma.NullableStringFieldUpdateOperationsInput | string | null start_date?: Prisma.NullableStringFieldUpdateOperationsInput | string | null end_date?: Prisma.NullableStringFieldUpdateOperationsInput | string | null currency?: Prisma.NullableStringFieldUpdateOperationsInput | string | null cover_image?: Prisma.NullableStringFieldUpdateOperationsInput | string | null is_archived?: Prisma.NullableIntFieldUpdateOperationsInput | number | null reminder_days?: Prisma.NullableIntFieldUpdateOperationsInput | number | null created_at?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null updated_at?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null budget_category_order?: Prisma.budget_category_orderUncheckedUpdateManyWithoutTripsNestedInput budget_items?: Prisma.budget_itemsUncheckedUpdateManyWithoutTripsNestedInput collab_messages?: Prisma.collab_messagesUncheckedUpdateManyWithoutTripsNestedInput collab_notes?: Prisma.collab_notesUncheckedUpdateManyWithoutTripsNestedInput collab_polls?: Prisma.collab_pollsUncheckedUpdateManyWithoutTripsNestedInput day_accommodations?: Prisma.day_accommodationsUncheckedUpdateManyWithoutTripsNestedInput day_notes?: Prisma.day_notesUncheckedUpdateManyWithoutTripsNestedInput days?: Prisma.daysUncheckedUpdateManyWithoutTripsNestedInput journey_entries?: Prisma.journey_entriesUncheckedUpdateManyWithoutTripsNestedInput journey_trips?: Prisma.journey_tripsUncheckedUpdateManyWithoutTripsNestedInput packing_bags?: Prisma.packing_bagsUncheckedUpdateManyWithoutTripsNestedInput packing_category_assignees?: Prisma.packing_category_assigneesUncheckedUpdateManyWithoutTripsNestedInput packing_items?: Prisma.packing_itemsUncheckedUpdateManyWithoutTripsNestedInput photos?: Prisma.photosUncheckedUpdateManyWithoutTripsNestedInput places?: Prisma.placesUncheckedUpdateManyWithoutTripsNestedInput reservations?: Prisma.reservationsUncheckedUpdateManyWithoutTripsNestedInput todo_category_assignees?: Prisma.todo_category_assigneesUncheckedUpdateManyWithoutTripsNestedInput todo_items?: Prisma.todo_itemsUncheckedUpdateManyWithoutTripsNestedInput trip_album_links?: Prisma.trip_album_linksUncheckedUpdateManyWithoutTripsNestedInput trip_files?: Prisma.trip_filesUncheckedUpdateManyWithoutTripsNestedInput trip_members?: Prisma.trip_membersUncheckedUpdateManyWithoutTripsNestedInput trip_photos?: Prisma.trip_photosUncheckedUpdateManyWithoutTripsNestedInput } export type tripsCreateWithoutTodo_category_assigneesInput = { title: string description?: string | null start_date?: string | null end_date?: string | null currency?: string | null cover_image?: string | null is_archived?: number | null reminder_days?: number | null created_at?: Date | string | null updated_at?: Date | string | null budget_category_order?: Prisma.budget_category_orderCreateNestedManyWithoutTripsInput budget_items?: Prisma.budget_itemsCreateNestedManyWithoutTripsInput collab_messages?: Prisma.collab_messagesCreateNestedManyWithoutTripsInput collab_notes?: Prisma.collab_notesCreateNestedManyWithoutTripsInput collab_polls?: Prisma.collab_pollsCreateNestedManyWithoutTripsInput day_accommodations?: Prisma.day_accommodationsCreateNestedManyWithoutTripsInput day_notes?: Prisma.day_notesCreateNestedManyWithoutTripsInput days?: Prisma.daysCreateNestedManyWithoutTripsInput journey_entries?: Prisma.journey_entriesCreateNestedManyWithoutTripsInput journey_trips?: Prisma.journey_tripsCreateNestedManyWithoutTripsInput packing_bags?: Prisma.packing_bagsCreateNestedManyWithoutTripsInput packing_category_assignees?: Prisma.packing_category_assigneesCreateNestedManyWithoutTripsInput packing_items?: Prisma.packing_itemsCreateNestedManyWithoutTripsInput photos?: Prisma.photosCreateNestedManyWithoutTripsInput places?: Prisma.placesCreateNestedManyWithoutTripsInput reservations?: Prisma.reservationsCreateNestedManyWithoutTripsInput share_tokens?: Prisma.share_tokensCreateNestedManyWithoutTripsInput todo_items?: Prisma.todo_itemsCreateNestedManyWithoutTripsInput trip_album_links?: Prisma.trip_album_linksCreateNestedManyWithoutTripsInput trip_files?: Prisma.trip_filesCreateNestedManyWithoutTripsInput trip_members?: Prisma.trip_membersCreateNestedManyWithoutTripsInput trip_photos?: Prisma.trip_photosCreateNestedManyWithoutTripsInput users: Prisma.usersCreateNestedOneWithoutTripsInput } export type tripsUncheckedCreateWithoutTodo_category_assigneesInput = { id?: number user_id: number title: string description?: string | null start_date?: string | null end_date?: string | null currency?: string | null cover_image?: string | null is_archived?: number | null reminder_days?: number | null created_at?: Date | string | null updated_at?: Date | string | null budget_category_order?: Prisma.budget_category_orderUncheckedCreateNestedManyWithoutTripsInput budget_items?: Prisma.budget_itemsUncheckedCreateNestedManyWithoutTripsInput collab_messages?: Prisma.collab_messagesUncheckedCreateNestedManyWithoutTripsInput collab_notes?: Prisma.collab_notesUncheckedCreateNestedManyWithoutTripsInput collab_polls?: Prisma.collab_pollsUncheckedCreateNestedManyWithoutTripsInput day_accommodations?: Prisma.day_accommodationsUncheckedCreateNestedManyWithoutTripsInput day_notes?: Prisma.day_notesUncheckedCreateNestedManyWithoutTripsInput days?: Prisma.daysUncheckedCreateNestedManyWithoutTripsInput journey_entries?: Prisma.journey_entriesUncheckedCreateNestedManyWithoutTripsInput journey_trips?: Prisma.journey_tripsUncheckedCreateNestedManyWithoutTripsInput packing_bags?: Prisma.packing_bagsUncheckedCreateNestedManyWithoutTripsInput packing_category_assignees?: Prisma.packing_category_assigneesUncheckedCreateNestedManyWithoutTripsInput packing_items?: Prisma.packing_itemsUncheckedCreateNestedManyWithoutTripsInput photos?: Prisma.photosUncheckedCreateNestedManyWithoutTripsInput places?: Prisma.placesUncheckedCreateNestedManyWithoutTripsInput reservations?: Prisma.reservationsUncheckedCreateNestedManyWithoutTripsInput share_tokens?: Prisma.share_tokensUncheckedCreateNestedManyWithoutTripsInput todo_items?: Prisma.todo_itemsUncheckedCreateNestedManyWithoutTripsInput trip_album_links?: Prisma.trip_album_linksUncheckedCreateNestedManyWithoutTripsInput trip_files?: Prisma.trip_filesUncheckedCreateNestedManyWithoutTripsInput trip_members?: Prisma.trip_membersUncheckedCreateNestedManyWithoutTripsInput trip_photos?: Prisma.trip_photosUncheckedCreateNestedManyWithoutTripsInput } export type tripsCreateOrConnectWithoutTodo_category_assigneesInput = { where: Prisma.tripsWhereUniqueInput create: Prisma.XOR } export type tripsUpsertWithoutTodo_category_assigneesInput = { update: Prisma.XOR create: Prisma.XOR where?: Prisma.tripsWhereInput } export type tripsUpdateToOneWithWhereWithoutTodo_category_assigneesInput = { where?: Prisma.tripsWhereInput data: Prisma.XOR } export type tripsUpdateWithoutTodo_category_assigneesInput = { title?: Prisma.StringFieldUpdateOperationsInput | string description?: Prisma.NullableStringFieldUpdateOperationsInput | string | null start_date?: Prisma.NullableStringFieldUpdateOperationsInput | string | null end_date?: Prisma.NullableStringFieldUpdateOperationsInput | string | null currency?: Prisma.NullableStringFieldUpdateOperationsInput | string | null cover_image?: Prisma.NullableStringFieldUpdateOperationsInput | string | null is_archived?: Prisma.NullableIntFieldUpdateOperationsInput | number | null reminder_days?: Prisma.NullableIntFieldUpdateOperationsInput | number | null created_at?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null updated_at?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null budget_category_order?: Prisma.budget_category_orderUpdateManyWithoutTripsNestedInput budget_items?: Prisma.budget_itemsUpdateManyWithoutTripsNestedInput collab_messages?: Prisma.collab_messagesUpdateManyWithoutTripsNestedInput collab_notes?: Prisma.collab_notesUpdateManyWithoutTripsNestedInput collab_polls?: Prisma.collab_pollsUpdateManyWithoutTripsNestedInput day_accommodations?: Prisma.day_accommodationsUpdateManyWithoutTripsNestedInput day_notes?: Prisma.day_notesUpdateManyWithoutTripsNestedInput days?: Prisma.daysUpdateManyWithoutTripsNestedInput journey_entries?: Prisma.journey_entriesUpdateManyWithoutTripsNestedInput journey_trips?: Prisma.journey_tripsUpdateManyWithoutTripsNestedInput packing_bags?: Prisma.packing_bagsUpdateManyWithoutTripsNestedInput packing_category_assignees?: Prisma.packing_category_assigneesUpdateManyWithoutTripsNestedInput packing_items?: Prisma.packing_itemsUpdateManyWithoutTripsNestedInput photos?: Prisma.photosUpdateManyWithoutTripsNestedInput places?: Prisma.placesUpdateManyWithoutTripsNestedInput reservations?: Prisma.reservationsUpdateManyWithoutTripsNestedInput share_tokens?: Prisma.share_tokensUpdateManyWithoutTripsNestedInput todo_items?: Prisma.todo_itemsUpdateManyWithoutTripsNestedInput trip_album_links?: Prisma.trip_album_linksUpdateManyWithoutTripsNestedInput trip_files?: Prisma.trip_filesUpdateManyWithoutTripsNestedInput trip_members?: Prisma.trip_membersUpdateManyWithoutTripsNestedInput trip_photos?: Prisma.trip_photosUpdateManyWithoutTripsNestedInput users?: Prisma.usersUpdateOneRequiredWithoutTripsNestedInput } export type tripsUncheckedUpdateWithoutTodo_category_assigneesInput = { id?: Prisma.IntFieldUpdateOperationsInput | number user_id?: Prisma.IntFieldUpdateOperationsInput | number title?: Prisma.StringFieldUpdateOperationsInput | string description?: Prisma.NullableStringFieldUpdateOperationsInput | string | null start_date?: Prisma.NullableStringFieldUpdateOperationsInput | string | null end_date?: Prisma.NullableStringFieldUpdateOperationsInput | string | null currency?: Prisma.NullableStringFieldUpdateOperationsInput | string | null cover_image?: Prisma.NullableStringFieldUpdateOperationsInput | string | null is_archived?: Prisma.NullableIntFieldUpdateOperationsInput | number | null reminder_days?: Prisma.NullableIntFieldUpdateOperationsInput | number | null created_at?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null updated_at?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null budget_category_order?: Prisma.budget_category_orderUncheckedUpdateManyWithoutTripsNestedInput budget_items?: Prisma.budget_itemsUncheckedUpdateManyWithoutTripsNestedInput collab_messages?: Prisma.collab_messagesUncheckedUpdateManyWithoutTripsNestedInput collab_notes?: Prisma.collab_notesUncheckedUpdateManyWithoutTripsNestedInput collab_polls?: Prisma.collab_pollsUncheckedUpdateManyWithoutTripsNestedInput day_accommodations?: Prisma.day_accommodationsUncheckedUpdateManyWithoutTripsNestedInput day_notes?: Prisma.day_notesUncheckedUpdateManyWithoutTripsNestedInput days?: Prisma.daysUncheckedUpdateManyWithoutTripsNestedInput journey_entries?: Prisma.journey_entriesUncheckedUpdateManyWithoutTripsNestedInput journey_trips?: Prisma.journey_tripsUncheckedUpdateManyWithoutTripsNestedInput packing_bags?: Prisma.packing_bagsUncheckedUpdateManyWithoutTripsNestedInput packing_category_assignees?: Prisma.packing_category_assigneesUncheckedUpdateManyWithoutTripsNestedInput packing_items?: Prisma.packing_itemsUncheckedUpdateManyWithoutTripsNestedInput photos?: Prisma.photosUncheckedUpdateManyWithoutTripsNestedInput places?: Prisma.placesUncheckedUpdateManyWithoutTripsNestedInput reservations?: Prisma.reservationsUncheckedUpdateManyWithoutTripsNestedInput share_tokens?: Prisma.share_tokensUncheckedUpdateManyWithoutTripsNestedInput todo_items?: Prisma.todo_itemsUncheckedUpdateManyWithoutTripsNestedInput trip_album_links?: Prisma.trip_album_linksUncheckedUpdateManyWithoutTripsNestedInput trip_files?: Prisma.trip_filesUncheckedUpdateManyWithoutTripsNestedInput trip_members?: Prisma.trip_membersUncheckedUpdateManyWithoutTripsNestedInput trip_photos?: Prisma.trip_photosUncheckedUpdateManyWithoutTripsNestedInput } export type tripsCreateWithoutTodo_itemsInput = { title: string description?: string | null start_date?: string | null end_date?: string | null currency?: string | null cover_image?: string | null is_archived?: number | null reminder_days?: number | null created_at?: Date | string | null updated_at?: Date | string | null budget_category_order?: Prisma.budget_category_orderCreateNestedManyWithoutTripsInput budget_items?: Prisma.budget_itemsCreateNestedManyWithoutTripsInput collab_messages?: Prisma.collab_messagesCreateNestedManyWithoutTripsInput collab_notes?: Prisma.collab_notesCreateNestedManyWithoutTripsInput collab_polls?: Prisma.collab_pollsCreateNestedManyWithoutTripsInput day_accommodations?: Prisma.day_accommodationsCreateNestedManyWithoutTripsInput day_notes?: Prisma.day_notesCreateNestedManyWithoutTripsInput days?: Prisma.daysCreateNestedManyWithoutTripsInput journey_entries?: Prisma.journey_entriesCreateNestedManyWithoutTripsInput journey_trips?: Prisma.journey_tripsCreateNestedManyWithoutTripsInput packing_bags?: Prisma.packing_bagsCreateNestedManyWithoutTripsInput packing_category_assignees?: Prisma.packing_category_assigneesCreateNestedManyWithoutTripsInput packing_items?: Prisma.packing_itemsCreateNestedManyWithoutTripsInput photos?: Prisma.photosCreateNestedManyWithoutTripsInput places?: Prisma.placesCreateNestedManyWithoutTripsInput reservations?: Prisma.reservationsCreateNestedManyWithoutTripsInput share_tokens?: Prisma.share_tokensCreateNestedManyWithoutTripsInput todo_category_assignees?: Prisma.todo_category_assigneesCreateNestedManyWithoutTripsInput trip_album_links?: Prisma.trip_album_linksCreateNestedManyWithoutTripsInput trip_files?: Prisma.trip_filesCreateNestedManyWithoutTripsInput trip_members?: Prisma.trip_membersCreateNestedManyWithoutTripsInput trip_photos?: Prisma.trip_photosCreateNestedManyWithoutTripsInput users: Prisma.usersCreateNestedOneWithoutTripsInput } export type tripsUncheckedCreateWithoutTodo_itemsInput = { id?: number user_id: number title: string description?: string | null start_date?: string | null end_date?: string | null currency?: string | null cover_image?: string | null is_archived?: number | null reminder_days?: number | null created_at?: Date | string | null updated_at?: Date | string | null budget_category_order?: Prisma.budget_category_orderUncheckedCreateNestedManyWithoutTripsInput budget_items?: Prisma.budget_itemsUncheckedCreateNestedManyWithoutTripsInput collab_messages?: Prisma.collab_messagesUncheckedCreateNestedManyWithoutTripsInput collab_notes?: Prisma.collab_notesUncheckedCreateNestedManyWithoutTripsInput collab_polls?: Prisma.collab_pollsUncheckedCreateNestedManyWithoutTripsInput day_accommodations?: Prisma.day_accommodationsUncheckedCreateNestedManyWithoutTripsInput day_notes?: Prisma.day_notesUncheckedCreateNestedManyWithoutTripsInput days?: Prisma.daysUncheckedCreateNestedManyWithoutTripsInput journey_entries?: Prisma.journey_entriesUncheckedCreateNestedManyWithoutTripsInput journey_trips?: Prisma.journey_tripsUncheckedCreateNestedManyWithoutTripsInput packing_bags?: Prisma.packing_bagsUncheckedCreateNestedManyWithoutTripsInput packing_category_assignees?: Prisma.packing_category_assigneesUncheckedCreateNestedManyWithoutTripsInput packing_items?: Prisma.packing_itemsUncheckedCreateNestedManyWithoutTripsInput photos?: Prisma.photosUncheckedCreateNestedManyWithoutTripsInput places?: Prisma.placesUncheckedCreateNestedManyWithoutTripsInput reservations?: Prisma.reservationsUncheckedCreateNestedManyWithoutTripsInput share_tokens?: Prisma.share_tokensUncheckedCreateNestedManyWithoutTripsInput todo_category_assignees?: Prisma.todo_category_assigneesUncheckedCreateNestedManyWithoutTripsInput trip_album_links?: Prisma.trip_album_linksUncheckedCreateNestedManyWithoutTripsInput trip_files?: Prisma.trip_filesUncheckedCreateNestedManyWithoutTripsInput trip_members?: Prisma.trip_membersUncheckedCreateNestedManyWithoutTripsInput trip_photos?: Prisma.trip_photosUncheckedCreateNestedManyWithoutTripsInput } export type tripsCreateOrConnectWithoutTodo_itemsInput = { where: Prisma.tripsWhereUniqueInput create: Prisma.XOR } export type tripsUpsertWithoutTodo_itemsInput = { update: Prisma.XOR create: Prisma.XOR where?: Prisma.tripsWhereInput } export type tripsUpdateToOneWithWhereWithoutTodo_itemsInput = { where?: Prisma.tripsWhereInput data: Prisma.XOR } export type tripsUpdateWithoutTodo_itemsInput = { title?: Prisma.StringFieldUpdateOperationsInput | string description?: Prisma.NullableStringFieldUpdateOperationsInput | string | null start_date?: Prisma.NullableStringFieldUpdateOperationsInput | string | null end_date?: Prisma.NullableStringFieldUpdateOperationsInput | string | null currency?: Prisma.NullableStringFieldUpdateOperationsInput | string | null cover_image?: Prisma.NullableStringFieldUpdateOperationsInput | string | null is_archived?: Prisma.NullableIntFieldUpdateOperationsInput | number | null reminder_days?: Prisma.NullableIntFieldUpdateOperationsInput | number | null created_at?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null updated_at?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null budget_category_order?: Prisma.budget_category_orderUpdateManyWithoutTripsNestedInput budget_items?: Prisma.budget_itemsUpdateManyWithoutTripsNestedInput collab_messages?: Prisma.collab_messagesUpdateManyWithoutTripsNestedInput collab_notes?: Prisma.collab_notesUpdateManyWithoutTripsNestedInput collab_polls?: Prisma.collab_pollsUpdateManyWithoutTripsNestedInput day_accommodations?: Prisma.day_accommodationsUpdateManyWithoutTripsNestedInput day_notes?: Prisma.day_notesUpdateManyWithoutTripsNestedInput days?: Prisma.daysUpdateManyWithoutTripsNestedInput journey_entries?: Prisma.journey_entriesUpdateManyWithoutTripsNestedInput journey_trips?: Prisma.journey_tripsUpdateManyWithoutTripsNestedInput packing_bags?: Prisma.packing_bagsUpdateManyWithoutTripsNestedInput packing_category_assignees?: Prisma.packing_category_assigneesUpdateManyWithoutTripsNestedInput packing_items?: Prisma.packing_itemsUpdateManyWithoutTripsNestedInput photos?: Prisma.photosUpdateManyWithoutTripsNestedInput places?: Prisma.placesUpdateManyWithoutTripsNestedInput reservations?: Prisma.reservationsUpdateManyWithoutTripsNestedInput share_tokens?: Prisma.share_tokensUpdateManyWithoutTripsNestedInput todo_category_assignees?: Prisma.todo_category_assigneesUpdateManyWithoutTripsNestedInput trip_album_links?: Prisma.trip_album_linksUpdateManyWithoutTripsNestedInput trip_files?: Prisma.trip_filesUpdateManyWithoutTripsNestedInput trip_members?: Prisma.trip_membersUpdateManyWithoutTripsNestedInput trip_photos?: Prisma.trip_photosUpdateManyWithoutTripsNestedInput users?: Prisma.usersUpdateOneRequiredWithoutTripsNestedInput } export type tripsUncheckedUpdateWithoutTodo_itemsInput = { id?: Prisma.IntFieldUpdateOperationsInput | number user_id?: Prisma.IntFieldUpdateOperationsInput | number title?: Prisma.StringFieldUpdateOperationsInput | string description?: Prisma.NullableStringFieldUpdateOperationsInput | string | null start_date?: Prisma.NullableStringFieldUpdateOperationsInput | string | null end_date?: Prisma.NullableStringFieldUpdateOperationsInput | string | null currency?: Prisma.NullableStringFieldUpdateOperationsInput | string | null cover_image?: Prisma.NullableStringFieldUpdateOperationsInput | string | null is_archived?: Prisma.NullableIntFieldUpdateOperationsInput | number | null reminder_days?: Prisma.NullableIntFieldUpdateOperationsInput | number | null created_at?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null updated_at?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null budget_category_order?: Prisma.budget_category_orderUncheckedUpdateManyWithoutTripsNestedInput budget_items?: Prisma.budget_itemsUncheckedUpdateManyWithoutTripsNestedInput collab_messages?: Prisma.collab_messagesUncheckedUpdateManyWithoutTripsNestedInput collab_notes?: Prisma.collab_notesUncheckedUpdateManyWithoutTripsNestedInput collab_polls?: Prisma.collab_pollsUncheckedUpdateManyWithoutTripsNestedInput day_accommodations?: Prisma.day_accommodationsUncheckedUpdateManyWithoutTripsNestedInput day_notes?: Prisma.day_notesUncheckedUpdateManyWithoutTripsNestedInput days?: Prisma.daysUncheckedUpdateManyWithoutTripsNestedInput journey_entries?: Prisma.journey_entriesUncheckedUpdateManyWithoutTripsNestedInput journey_trips?: Prisma.journey_tripsUncheckedUpdateManyWithoutTripsNestedInput packing_bags?: Prisma.packing_bagsUncheckedUpdateManyWithoutTripsNestedInput packing_category_assignees?: Prisma.packing_category_assigneesUncheckedUpdateManyWithoutTripsNestedInput packing_items?: Prisma.packing_itemsUncheckedUpdateManyWithoutTripsNestedInput photos?: Prisma.photosUncheckedUpdateManyWithoutTripsNestedInput places?: Prisma.placesUncheckedUpdateManyWithoutTripsNestedInput reservations?: Prisma.reservationsUncheckedUpdateManyWithoutTripsNestedInput share_tokens?: Prisma.share_tokensUncheckedUpdateManyWithoutTripsNestedInput todo_category_assignees?: Prisma.todo_category_assigneesUncheckedUpdateManyWithoutTripsNestedInput trip_album_links?: Prisma.trip_album_linksUncheckedUpdateManyWithoutTripsNestedInput trip_files?: Prisma.trip_filesUncheckedUpdateManyWithoutTripsNestedInput trip_members?: Prisma.trip_membersUncheckedUpdateManyWithoutTripsNestedInput trip_photos?: Prisma.trip_photosUncheckedUpdateManyWithoutTripsNestedInput } export type tripsCreateWithoutTrip_album_linksInput = { title: string description?: string | null start_date?: string | null end_date?: string | null currency?: string | null cover_image?: string | null is_archived?: number | null reminder_days?: number | null created_at?: Date | string | null updated_at?: Date | string | null budget_category_order?: Prisma.budget_category_orderCreateNestedManyWithoutTripsInput budget_items?: Prisma.budget_itemsCreateNestedManyWithoutTripsInput collab_messages?: Prisma.collab_messagesCreateNestedManyWithoutTripsInput collab_notes?: Prisma.collab_notesCreateNestedManyWithoutTripsInput collab_polls?: Prisma.collab_pollsCreateNestedManyWithoutTripsInput day_accommodations?: Prisma.day_accommodationsCreateNestedManyWithoutTripsInput day_notes?: Prisma.day_notesCreateNestedManyWithoutTripsInput days?: Prisma.daysCreateNestedManyWithoutTripsInput journey_entries?: Prisma.journey_entriesCreateNestedManyWithoutTripsInput journey_trips?: Prisma.journey_tripsCreateNestedManyWithoutTripsInput packing_bags?: Prisma.packing_bagsCreateNestedManyWithoutTripsInput packing_category_assignees?: Prisma.packing_category_assigneesCreateNestedManyWithoutTripsInput packing_items?: Prisma.packing_itemsCreateNestedManyWithoutTripsInput photos?: Prisma.photosCreateNestedManyWithoutTripsInput places?: Prisma.placesCreateNestedManyWithoutTripsInput reservations?: Prisma.reservationsCreateNestedManyWithoutTripsInput share_tokens?: Prisma.share_tokensCreateNestedManyWithoutTripsInput todo_category_assignees?: Prisma.todo_category_assigneesCreateNestedManyWithoutTripsInput todo_items?: Prisma.todo_itemsCreateNestedManyWithoutTripsInput trip_files?: Prisma.trip_filesCreateNestedManyWithoutTripsInput trip_members?: Prisma.trip_membersCreateNestedManyWithoutTripsInput trip_photos?: Prisma.trip_photosCreateNestedManyWithoutTripsInput users: Prisma.usersCreateNestedOneWithoutTripsInput } export type tripsUncheckedCreateWithoutTrip_album_linksInput = { id?: number user_id: number title: string description?: string | null start_date?: string | null end_date?: string | null currency?: string | null cover_image?: string | null is_archived?: number | null reminder_days?: number | null created_at?: Date | string | null updated_at?: Date | string | null budget_category_order?: Prisma.budget_category_orderUncheckedCreateNestedManyWithoutTripsInput budget_items?: Prisma.budget_itemsUncheckedCreateNestedManyWithoutTripsInput collab_messages?: Prisma.collab_messagesUncheckedCreateNestedManyWithoutTripsInput collab_notes?: Prisma.collab_notesUncheckedCreateNestedManyWithoutTripsInput collab_polls?: Prisma.collab_pollsUncheckedCreateNestedManyWithoutTripsInput day_accommodations?: Prisma.day_accommodationsUncheckedCreateNestedManyWithoutTripsInput day_notes?: Prisma.day_notesUncheckedCreateNestedManyWithoutTripsInput days?: Prisma.daysUncheckedCreateNestedManyWithoutTripsInput journey_entries?: Prisma.journey_entriesUncheckedCreateNestedManyWithoutTripsInput journey_trips?: Prisma.journey_tripsUncheckedCreateNestedManyWithoutTripsInput packing_bags?: Prisma.packing_bagsUncheckedCreateNestedManyWithoutTripsInput packing_category_assignees?: Prisma.packing_category_assigneesUncheckedCreateNestedManyWithoutTripsInput packing_items?: Prisma.packing_itemsUncheckedCreateNestedManyWithoutTripsInput photos?: Prisma.photosUncheckedCreateNestedManyWithoutTripsInput places?: Prisma.placesUncheckedCreateNestedManyWithoutTripsInput reservations?: Prisma.reservationsUncheckedCreateNestedManyWithoutTripsInput share_tokens?: Prisma.share_tokensUncheckedCreateNestedManyWithoutTripsInput todo_category_assignees?: Prisma.todo_category_assigneesUncheckedCreateNestedManyWithoutTripsInput todo_items?: Prisma.todo_itemsUncheckedCreateNestedManyWithoutTripsInput trip_files?: Prisma.trip_filesUncheckedCreateNestedManyWithoutTripsInput trip_members?: Prisma.trip_membersUncheckedCreateNestedManyWithoutTripsInput trip_photos?: Prisma.trip_photosUncheckedCreateNestedManyWithoutTripsInput } export type tripsCreateOrConnectWithoutTrip_album_linksInput = { where: Prisma.tripsWhereUniqueInput create: Prisma.XOR } export type tripsUpsertWithoutTrip_album_linksInput = { update: Prisma.XOR create: Prisma.XOR where?: Prisma.tripsWhereInput } export type tripsUpdateToOneWithWhereWithoutTrip_album_linksInput = { where?: Prisma.tripsWhereInput data: Prisma.XOR } export type tripsUpdateWithoutTrip_album_linksInput = { title?: Prisma.StringFieldUpdateOperationsInput | string description?: Prisma.NullableStringFieldUpdateOperationsInput | string | null start_date?: Prisma.NullableStringFieldUpdateOperationsInput | string | null end_date?: Prisma.NullableStringFieldUpdateOperationsInput | string | null currency?: Prisma.NullableStringFieldUpdateOperationsInput | string | null cover_image?: Prisma.NullableStringFieldUpdateOperationsInput | string | null is_archived?: Prisma.NullableIntFieldUpdateOperationsInput | number | null reminder_days?: Prisma.NullableIntFieldUpdateOperationsInput | number | null created_at?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null updated_at?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null budget_category_order?: Prisma.budget_category_orderUpdateManyWithoutTripsNestedInput budget_items?: Prisma.budget_itemsUpdateManyWithoutTripsNestedInput collab_messages?: Prisma.collab_messagesUpdateManyWithoutTripsNestedInput collab_notes?: Prisma.collab_notesUpdateManyWithoutTripsNestedInput collab_polls?: Prisma.collab_pollsUpdateManyWithoutTripsNestedInput day_accommodations?: Prisma.day_accommodationsUpdateManyWithoutTripsNestedInput day_notes?: Prisma.day_notesUpdateManyWithoutTripsNestedInput days?: Prisma.daysUpdateManyWithoutTripsNestedInput journey_entries?: Prisma.journey_entriesUpdateManyWithoutTripsNestedInput journey_trips?: Prisma.journey_tripsUpdateManyWithoutTripsNestedInput packing_bags?: Prisma.packing_bagsUpdateManyWithoutTripsNestedInput packing_category_assignees?: Prisma.packing_category_assigneesUpdateManyWithoutTripsNestedInput packing_items?: Prisma.packing_itemsUpdateManyWithoutTripsNestedInput photos?: Prisma.photosUpdateManyWithoutTripsNestedInput places?: Prisma.placesUpdateManyWithoutTripsNestedInput reservations?: Prisma.reservationsUpdateManyWithoutTripsNestedInput share_tokens?: Prisma.share_tokensUpdateManyWithoutTripsNestedInput todo_category_assignees?: Prisma.todo_category_assigneesUpdateManyWithoutTripsNestedInput todo_items?: Prisma.todo_itemsUpdateManyWithoutTripsNestedInput trip_files?: Prisma.trip_filesUpdateManyWithoutTripsNestedInput trip_members?: Prisma.trip_membersUpdateManyWithoutTripsNestedInput trip_photos?: Prisma.trip_photosUpdateManyWithoutTripsNestedInput users?: Prisma.usersUpdateOneRequiredWithoutTripsNestedInput } export type tripsUncheckedUpdateWithoutTrip_album_linksInput = { id?: Prisma.IntFieldUpdateOperationsInput | number user_id?: Prisma.IntFieldUpdateOperationsInput | number title?: Prisma.StringFieldUpdateOperationsInput | string description?: Prisma.NullableStringFieldUpdateOperationsInput | string | null start_date?: Prisma.NullableStringFieldUpdateOperationsInput | string | null end_date?: Prisma.NullableStringFieldUpdateOperationsInput | string | null currency?: Prisma.NullableStringFieldUpdateOperationsInput | string | null cover_image?: Prisma.NullableStringFieldUpdateOperationsInput | string | null is_archived?: Prisma.NullableIntFieldUpdateOperationsInput | number | null reminder_days?: Prisma.NullableIntFieldUpdateOperationsInput | number | null created_at?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null updated_at?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null budget_category_order?: Prisma.budget_category_orderUncheckedUpdateManyWithoutTripsNestedInput budget_items?: Prisma.budget_itemsUncheckedUpdateManyWithoutTripsNestedInput collab_messages?: Prisma.collab_messagesUncheckedUpdateManyWithoutTripsNestedInput collab_notes?: Prisma.collab_notesUncheckedUpdateManyWithoutTripsNestedInput collab_polls?: Prisma.collab_pollsUncheckedUpdateManyWithoutTripsNestedInput day_accommodations?: Prisma.day_accommodationsUncheckedUpdateManyWithoutTripsNestedInput day_notes?: Prisma.day_notesUncheckedUpdateManyWithoutTripsNestedInput days?: Prisma.daysUncheckedUpdateManyWithoutTripsNestedInput journey_entries?: Prisma.journey_entriesUncheckedUpdateManyWithoutTripsNestedInput journey_trips?: Prisma.journey_tripsUncheckedUpdateManyWithoutTripsNestedInput packing_bags?: Prisma.packing_bagsUncheckedUpdateManyWithoutTripsNestedInput packing_category_assignees?: Prisma.packing_category_assigneesUncheckedUpdateManyWithoutTripsNestedInput packing_items?: Prisma.packing_itemsUncheckedUpdateManyWithoutTripsNestedInput photos?: Prisma.photosUncheckedUpdateManyWithoutTripsNestedInput places?: Prisma.placesUncheckedUpdateManyWithoutTripsNestedInput reservations?: Prisma.reservationsUncheckedUpdateManyWithoutTripsNestedInput share_tokens?: Prisma.share_tokensUncheckedUpdateManyWithoutTripsNestedInput todo_category_assignees?: Prisma.todo_category_assigneesUncheckedUpdateManyWithoutTripsNestedInput todo_items?: Prisma.todo_itemsUncheckedUpdateManyWithoutTripsNestedInput trip_files?: Prisma.trip_filesUncheckedUpdateManyWithoutTripsNestedInput trip_members?: Prisma.trip_membersUncheckedUpdateManyWithoutTripsNestedInput trip_photos?: Prisma.trip_photosUncheckedUpdateManyWithoutTripsNestedInput } export type tripsCreateWithoutTrip_filesInput = { title: string description?: string | null start_date?: string | null end_date?: string | null currency?: string | null cover_image?: string | null is_archived?: number | null reminder_days?: number | null created_at?: Date | string | null updated_at?: Date | string | null budget_category_order?: Prisma.budget_category_orderCreateNestedManyWithoutTripsInput budget_items?: Prisma.budget_itemsCreateNestedManyWithoutTripsInput collab_messages?: Prisma.collab_messagesCreateNestedManyWithoutTripsInput collab_notes?: Prisma.collab_notesCreateNestedManyWithoutTripsInput collab_polls?: Prisma.collab_pollsCreateNestedManyWithoutTripsInput day_accommodations?: Prisma.day_accommodationsCreateNestedManyWithoutTripsInput day_notes?: Prisma.day_notesCreateNestedManyWithoutTripsInput days?: Prisma.daysCreateNestedManyWithoutTripsInput journey_entries?: Prisma.journey_entriesCreateNestedManyWithoutTripsInput journey_trips?: Prisma.journey_tripsCreateNestedManyWithoutTripsInput packing_bags?: Prisma.packing_bagsCreateNestedManyWithoutTripsInput packing_category_assignees?: Prisma.packing_category_assigneesCreateNestedManyWithoutTripsInput packing_items?: Prisma.packing_itemsCreateNestedManyWithoutTripsInput photos?: Prisma.photosCreateNestedManyWithoutTripsInput places?: Prisma.placesCreateNestedManyWithoutTripsInput reservations?: Prisma.reservationsCreateNestedManyWithoutTripsInput share_tokens?: Prisma.share_tokensCreateNestedManyWithoutTripsInput todo_category_assignees?: Prisma.todo_category_assigneesCreateNestedManyWithoutTripsInput todo_items?: Prisma.todo_itemsCreateNestedManyWithoutTripsInput trip_album_links?: Prisma.trip_album_linksCreateNestedManyWithoutTripsInput trip_members?: Prisma.trip_membersCreateNestedManyWithoutTripsInput trip_photos?: Prisma.trip_photosCreateNestedManyWithoutTripsInput users: Prisma.usersCreateNestedOneWithoutTripsInput } export type tripsUncheckedCreateWithoutTrip_filesInput = { id?: number user_id: number title: string description?: string | null start_date?: string | null end_date?: string | null currency?: string | null cover_image?: string | null is_archived?: number | null reminder_days?: number | null created_at?: Date | string | null updated_at?: Date | string | null budget_category_order?: Prisma.budget_category_orderUncheckedCreateNestedManyWithoutTripsInput budget_items?: Prisma.budget_itemsUncheckedCreateNestedManyWithoutTripsInput collab_messages?: Prisma.collab_messagesUncheckedCreateNestedManyWithoutTripsInput collab_notes?: Prisma.collab_notesUncheckedCreateNestedManyWithoutTripsInput collab_polls?: Prisma.collab_pollsUncheckedCreateNestedManyWithoutTripsInput day_accommodations?: Prisma.day_accommodationsUncheckedCreateNestedManyWithoutTripsInput day_notes?: Prisma.day_notesUncheckedCreateNestedManyWithoutTripsInput days?: Prisma.daysUncheckedCreateNestedManyWithoutTripsInput journey_entries?: Prisma.journey_entriesUncheckedCreateNestedManyWithoutTripsInput journey_trips?: Prisma.journey_tripsUncheckedCreateNestedManyWithoutTripsInput packing_bags?: Prisma.packing_bagsUncheckedCreateNestedManyWithoutTripsInput packing_category_assignees?: Prisma.packing_category_assigneesUncheckedCreateNestedManyWithoutTripsInput packing_items?: Prisma.packing_itemsUncheckedCreateNestedManyWithoutTripsInput photos?: Prisma.photosUncheckedCreateNestedManyWithoutTripsInput places?: Prisma.placesUncheckedCreateNestedManyWithoutTripsInput reservations?: Prisma.reservationsUncheckedCreateNestedManyWithoutTripsInput share_tokens?: Prisma.share_tokensUncheckedCreateNestedManyWithoutTripsInput todo_category_assignees?: Prisma.todo_category_assigneesUncheckedCreateNestedManyWithoutTripsInput todo_items?: Prisma.todo_itemsUncheckedCreateNestedManyWithoutTripsInput trip_album_links?: Prisma.trip_album_linksUncheckedCreateNestedManyWithoutTripsInput trip_members?: Prisma.trip_membersUncheckedCreateNestedManyWithoutTripsInput trip_photos?: Prisma.trip_photosUncheckedCreateNestedManyWithoutTripsInput } export type tripsCreateOrConnectWithoutTrip_filesInput = { where: Prisma.tripsWhereUniqueInput create: Prisma.XOR } export type tripsUpsertWithoutTrip_filesInput = { update: Prisma.XOR create: Prisma.XOR where?: Prisma.tripsWhereInput } export type tripsUpdateToOneWithWhereWithoutTrip_filesInput = { where?: Prisma.tripsWhereInput data: Prisma.XOR } export type tripsUpdateWithoutTrip_filesInput = { title?: Prisma.StringFieldUpdateOperationsInput | string description?: Prisma.NullableStringFieldUpdateOperationsInput | string | null start_date?: Prisma.NullableStringFieldUpdateOperationsInput | string | null end_date?: Prisma.NullableStringFieldUpdateOperationsInput | string | null currency?: Prisma.NullableStringFieldUpdateOperationsInput | string | null cover_image?: Prisma.NullableStringFieldUpdateOperationsInput | string | null is_archived?: Prisma.NullableIntFieldUpdateOperationsInput | number | null reminder_days?: Prisma.NullableIntFieldUpdateOperationsInput | number | null created_at?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null updated_at?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null budget_category_order?: Prisma.budget_category_orderUpdateManyWithoutTripsNestedInput budget_items?: Prisma.budget_itemsUpdateManyWithoutTripsNestedInput collab_messages?: Prisma.collab_messagesUpdateManyWithoutTripsNestedInput collab_notes?: Prisma.collab_notesUpdateManyWithoutTripsNestedInput collab_polls?: Prisma.collab_pollsUpdateManyWithoutTripsNestedInput day_accommodations?: Prisma.day_accommodationsUpdateManyWithoutTripsNestedInput day_notes?: Prisma.day_notesUpdateManyWithoutTripsNestedInput days?: Prisma.daysUpdateManyWithoutTripsNestedInput journey_entries?: Prisma.journey_entriesUpdateManyWithoutTripsNestedInput journey_trips?: Prisma.journey_tripsUpdateManyWithoutTripsNestedInput packing_bags?: Prisma.packing_bagsUpdateManyWithoutTripsNestedInput packing_category_assignees?: Prisma.packing_category_assigneesUpdateManyWithoutTripsNestedInput packing_items?: Prisma.packing_itemsUpdateManyWithoutTripsNestedInput photos?: Prisma.photosUpdateManyWithoutTripsNestedInput places?: Prisma.placesUpdateManyWithoutTripsNestedInput reservations?: Prisma.reservationsUpdateManyWithoutTripsNestedInput share_tokens?: Prisma.share_tokensUpdateManyWithoutTripsNestedInput todo_category_assignees?: Prisma.todo_category_assigneesUpdateManyWithoutTripsNestedInput todo_items?: Prisma.todo_itemsUpdateManyWithoutTripsNestedInput trip_album_links?: Prisma.trip_album_linksUpdateManyWithoutTripsNestedInput trip_members?: Prisma.trip_membersUpdateManyWithoutTripsNestedInput trip_photos?: Prisma.trip_photosUpdateManyWithoutTripsNestedInput users?: Prisma.usersUpdateOneRequiredWithoutTripsNestedInput } export type tripsUncheckedUpdateWithoutTrip_filesInput = { id?: Prisma.IntFieldUpdateOperationsInput | number user_id?: Prisma.IntFieldUpdateOperationsInput | number title?: Prisma.StringFieldUpdateOperationsInput | string description?: Prisma.NullableStringFieldUpdateOperationsInput | string | null start_date?: Prisma.NullableStringFieldUpdateOperationsInput | string | null end_date?: Prisma.NullableStringFieldUpdateOperationsInput | string | null currency?: Prisma.NullableStringFieldUpdateOperationsInput | string | null cover_image?: Prisma.NullableStringFieldUpdateOperationsInput | string | null is_archived?: Prisma.NullableIntFieldUpdateOperationsInput | number | null reminder_days?: Prisma.NullableIntFieldUpdateOperationsInput | number | null created_at?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null updated_at?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null budget_category_order?: Prisma.budget_category_orderUncheckedUpdateManyWithoutTripsNestedInput budget_items?: Prisma.budget_itemsUncheckedUpdateManyWithoutTripsNestedInput collab_messages?: Prisma.collab_messagesUncheckedUpdateManyWithoutTripsNestedInput collab_notes?: Prisma.collab_notesUncheckedUpdateManyWithoutTripsNestedInput collab_polls?: Prisma.collab_pollsUncheckedUpdateManyWithoutTripsNestedInput day_accommodations?: Prisma.day_accommodationsUncheckedUpdateManyWithoutTripsNestedInput day_notes?: Prisma.day_notesUncheckedUpdateManyWithoutTripsNestedInput days?: Prisma.daysUncheckedUpdateManyWithoutTripsNestedInput journey_entries?: Prisma.journey_entriesUncheckedUpdateManyWithoutTripsNestedInput journey_trips?: Prisma.journey_tripsUncheckedUpdateManyWithoutTripsNestedInput packing_bags?: Prisma.packing_bagsUncheckedUpdateManyWithoutTripsNestedInput packing_category_assignees?: Prisma.packing_category_assigneesUncheckedUpdateManyWithoutTripsNestedInput packing_items?: Prisma.packing_itemsUncheckedUpdateManyWithoutTripsNestedInput photos?: Prisma.photosUncheckedUpdateManyWithoutTripsNestedInput places?: Prisma.placesUncheckedUpdateManyWithoutTripsNestedInput reservations?: Prisma.reservationsUncheckedUpdateManyWithoutTripsNestedInput share_tokens?: Prisma.share_tokensUncheckedUpdateManyWithoutTripsNestedInput todo_category_assignees?: Prisma.todo_category_assigneesUncheckedUpdateManyWithoutTripsNestedInput todo_items?: Prisma.todo_itemsUncheckedUpdateManyWithoutTripsNestedInput trip_album_links?: Prisma.trip_album_linksUncheckedUpdateManyWithoutTripsNestedInput trip_members?: Prisma.trip_membersUncheckedUpdateManyWithoutTripsNestedInput trip_photos?: Prisma.trip_photosUncheckedUpdateManyWithoutTripsNestedInput } export type tripsCreateWithoutTrip_membersInput = { title: string description?: string | null start_date?: string | null end_date?: string | null currency?: string | null cover_image?: string | null is_archived?: number | null reminder_days?: number | null created_at?: Date | string | null updated_at?: Date | string | null budget_category_order?: Prisma.budget_category_orderCreateNestedManyWithoutTripsInput budget_items?: Prisma.budget_itemsCreateNestedManyWithoutTripsInput collab_messages?: Prisma.collab_messagesCreateNestedManyWithoutTripsInput collab_notes?: Prisma.collab_notesCreateNestedManyWithoutTripsInput collab_polls?: Prisma.collab_pollsCreateNestedManyWithoutTripsInput day_accommodations?: Prisma.day_accommodationsCreateNestedManyWithoutTripsInput day_notes?: Prisma.day_notesCreateNestedManyWithoutTripsInput days?: Prisma.daysCreateNestedManyWithoutTripsInput journey_entries?: Prisma.journey_entriesCreateNestedManyWithoutTripsInput journey_trips?: Prisma.journey_tripsCreateNestedManyWithoutTripsInput packing_bags?: Prisma.packing_bagsCreateNestedManyWithoutTripsInput packing_category_assignees?: Prisma.packing_category_assigneesCreateNestedManyWithoutTripsInput packing_items?: Prisma.packing_itemsCreateNestedManyWithoutTripsInput photos?: Prisma.photosCreateNestedManyWithoutTripsInput places?: Prisma.placesCreateNestedManyWithoutTripsInput reservations?: Prisma.reservationsCreateNestedManyWithoutTripsInput share_tokens?: Prisma.share_tokensCreateNestedManyWithoutTripsInput todo_category_assignees?: Prisma.todo_category_assigneesCreateNestedManyWithoutTripsInput todo_items?: Prisma.todo_itemsCreateNestedManyWithoutTripsInput trip_album_links?: Prisma.trip_album_linksCreateNestedManyWithoutTripsInput trip_files?: Prisma.trip_filesCreateNestedManyWithoutTripsInput trip_photos?: Prisma.trip_photosCreateNestedManyWithoutTripsInput users: Prisma.usersCreateNestedOneWithoutTripsInput } export type tripsUncheckedCreateWithoutTrip_membersInput = { id?: number user_id: number title: string description?: string | null start_date?: string | null end_date?: string | null currency?: string | null cover_image?: string | null is_archived?: number | null reminder_days?: number | null created_at?: Date | string | null updated_at?: Date | string | null budget_category_order?: Prisma.budget_category_orderUncheckedCreateNestedManyWithoutTripsInput budget_items?: Prisma.budget_itemsUncheckedCreateNestedManyWithoutTripsInput collab_messages?: Prisma.collab_messagesUncheckedCreateNestedManyWithoutTripsInput collab_notes?: Prisma.collab_notesUncheckedCreateNestedManyWithoutTripsInput collab_polls?: Prisma.collab_pollsUncheckedCreateNestedManyWithoutTripsInput day_accommodations?: Prisma.day_accommodationsUncheckedCreateNestedManyWithoutTripsInput day_notes?: Prisma.day_notesUncheckedCreateNestedManyWithoutTripsInput days?: Prisma.daysUncheckedCreateNestedManyWithoutTripsInput journey_entries?: Prisma.journey_entriesUncheckedCreateNestedManyWithoutTripsInput journey_trips?: Prisma.journey_tripsUncheckedCreateNestedManyWithoutTripsInput packing_bags?: Prisma.packing_bagsUncheckedCreateNestedManyWithoutTripsInput packing_category_assignees?: Prisma.packing_category_assigneesUncheckedCreateNestedManyWithoutTripsInput packing_items?: Prisma.packing_itemsUncheckedCreateNestedManyWithoutTripsInput photos?: Prisma.photosUncheckedCreateNestedManyWithoutTripsInput places?: Prisma.placesUncheckedCreateNestedManyWithoutTripsInput reservations?: Prisma.reservationsUncheckedCreateNestedManyWithoutTripsInput share_tokens?: Prisma.share_tokensUncheckedCreateNestedManyWithoutTripsInput todo_category_assignees?: Prisma.todo_category_assigneesUncheckedCreateNestedManyWithoutTripsInput todo_items?: Prisma.todo_itemsUncheckedCreateNestedManyWithoutTripsInput trip_album_links?: Prisma.trip_album_linksUncheckedCreateNestedManyWithoutTripsInput trip_files?: Prisma.trip_filesUncheckedCreateNestedManyWithoutTripsInput trip_photos?: Prisma.trip_photosUncheckedCreateNestedManyWithoutTripsInput } export type tripsCreateOrConnectWithoutTrip_membersInput = { where: Prisma.tripsWhereUniqueInput create: Prisma.XOR } export type tripsUpsertWithoutTrip_membersInput = { update: Prisma.XOR create: Prisma.XOR where?: Prisma.tripsWhereInput } export type tripsUpdateToOneWithWhereWithoutTrip_membersInput = { where?: Prisma.tripsWhereInput data: Prisma.XOR } export type tripsUpdateWithoutTrip_membersInput = { title?: Prisma.StringFieldUpdateOperationsInput | string description?: Prisma.NullableStringFieldUpdateOperationsInput | string | null start_date?: Prisma.NullableStringFieldUpdateOperationsInput | string | null end_date?: Prisma.NullableStringFieldUpdateOperationsInput | string | null currency?: Prisma.NullableStringFieldUpdateOperationsInput | string | null cover_image?: Prisma.NullableStringFieldUpdateOperationsInput | string | null is_archived?: Prisma.NullableIntFieldUpdateOperationsInput | number | null reminder_days?: Prisma.NullableIntFieldUpdateOperationsInput | number | null created_at?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null updated_at?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null budget_category_order?: Prisma.budget_category_orderUpdateManyWithoutTripsNestedInput budget_items?: Prisma.budget_itemsUpdateManyWithoutTripsNestedInput collab_messages?: Prisma.collab_messagesUpdateManyWithoutTripsNestedInput collab_notes?: Prisma.collab_notesUpdateManyWithoutTripsNestedInput collab_polls?: Prisma.collab_pollsUpdateManyWithoutTripsNestedInput day_accommodations?: Prisma.day_accommodationsUpdateManyWithoutTripsNestedInput day_notes?: Prisma.day_notesUpdateManyWithoutTripsNestedInput days?: Prisma.daysUpdateManyWithoutTripsNestedInput journey_entries?: Prisma.journey_entriesUpdateManyWithoutTripsNestedInput journey_trips?: Prisma.journey_tripsUpdateManyWithoutTripsNestedInput packing_bags?: Prisma.packing_bagsUpdateManyWithoutTripsNestedInput packing_category_assignees?: Prisma.packing_category_assigneesUpdateManyWithoutTripsNestedInput packing_items?: Prisma.packing_itemsUpdateManyWithoutTripsNestedInput photos?: Prisma.photosUpdateManyWithoutTripsNestedInput places?: Prisma.placesUpdateManyWithoutTripsNestedInput reservations?: Prisma.reservationsUpdateManyWithoutTripsNestedInput share_tokens?: Prisma.share_tokensUpdateManyWithoutTripsNestedInput todo_category_assignees?: Prisma.todo_category_assigneesUpdateManyWithoutTripsNestedInput todo_items?: Prisma.todo_itemsUpdateManyWithoutTripsNestedInput trip_album_links?: Prisma.trip_album_linksUpdateManyWithoutTripsNestedInput trip_files?: Prisma.trip_filesUpdateManyWithoutTripsNestedInput trip_photos?: Prisma.trip_photosUpdateManyWithoutTripsNestedInput users?: Prisma.usersUpdateOneRequiredWithoutTripsNestedInput } export type tripsUncheckedUpdateWithoutTrip_membersInput = { id?: Prisma.IntFieldUpdateOperationsInput | number user_id?: Prisma.IntFieldUpdateOperationsInput | number title?: Prisma.StringFieldUpdateOperationsInput | string description?: Prisma.NullableStringFieldUpdateOperationsInput | string | null start_date?: Prisma.NullableStringFieldUpdateOperationsInput | string | null end_date?: Prisma.NullableStringFieldUpdateOperationsInput | string | null currency?: Prisma.NullableStringFieldUpdateOperationsInput | string | null cover_image?: Prisma.NullableStringFieldUpdateOperationsInput | string | null is_archived?: Prisma.NullableIntFieldUpdateOperationsInput | number | null reminder_days?: Prisma.NullableIntFieldUpdateOperationsInput | number | null created_at?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null updated_at?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null budget_category_order?: Prisma.budget_category_orderUncheckedUpdateManyWithoutTripsNestedInput budget_items?: Prisma.budget_itemsUncheckedUpdateManyWithoutTripsNestedInput collab_messages?: Prisma.collab_messagesUncheckedUpdateManyWithoutTripsNestedInput collab_notes?: Prisma.collab_notesUncheckedUpdateManyWithoutTripsNestedInput collab_polls?: Prisma.collab_pollsUncheckedUpdateManyWithoutTripsNestedInput day_accommodations?: Prisma.day_accommodationsUncheckedUpdateManyWithoutTripsNestedInput day_notes?: Prisma.day_notesUncheckedUpdateManyWithoutTripsNestedInput days?: Prisma.daysUncheckedUpdateManyWithoutTripsNestedInput journey_entries?: Prisma.journey_entriesUncheckedUpdateManyWithoutTripsNestedInput journey_trips?: Prisma.journey_tripsUncheckedUpdateManyWithoutTripsNestedInput packing_bags?: Prisma.packing_bagsUncheckedUpdateManyWithoutTripsNestedInput packing_category_assignees?: Prisma.packing_category_assigneesUncheckedUpdateManyWithoutTripsNestedInput packing_items?: Prisma.packing_itemsUncheckedUpdateManyWithoutTripsNestedInput photos?: Prisma.photosUncheckedUpdateManyWithoutTripsNestedInput places?: Prisma.placesUncheckedUpdateManyWithoutTripsNestedInput reservations?: Prisma.reservationsUncheckedUpdateManyWithoutTripsNestedInput share_tokens?: Prisma.share_tokensUncheckedUpdateManyWithoutTripsNestedInput todo_category_assignees?: Prisma.todo_category_assigneesUncheckedUpdateManyWithoutTripsNestedInput todo_items?: Prisma.todo_itemsUncheckedUpdateManyWithoutTripsNestedInput trip_album_links?: Prisma.trip_album_linksUncheckedUpdateManyWithoutTripsNestedInput trip_files?: Prisma.trip_filesUncheckedUpdateManyWithoutTripsNestedInput trip_photos?: Prisma.trip_photosUncheckedUpdateManyWithoutTripsNestedInput } export type tripsCreateWithoutTrip_photosInput = { title: string description?: string | null start_date?: string | null end_date?: string | null currency?: string | null cover_image?: string | null is_archived?: number | null reminder_days?: number | null created_at?: Date | string | null updated_at?: Date | string | null budget_category_order?: Prisma.budget_category_orderCreateNestedManyWithoutTripsInput budget_items?: Prisma.budget_itemsCreateNestedManyWithoutTripsInput collab_messages?: Prisma.collab_messagesCreateNestedManyWithoutTripsInput collab_notes?: Prisma.collab_notesCreateNestedManyWithoutTripsInput collab_polls?: Prisma.collab_pollsCreateNestedManyWithoutTripsInput day_accommodations?: Prisma.day_accommodationsCreateNestedManyWithoutTripsInput day_notes?: Prisma.day_notesCreateNestedManyWithoutTripsInput days?: Prisma.daysCreateNestedManyWithoutTripsInput journey_entries?: Prisma.journey_entriesCreateNestedManyWithoutTripsInput journey_trips?: Prisma.journey_tripsCreateNestedManyWithoutTripsInput packing_bags?: Prisma.packing_bagsCreateNestedManyWithoutTripsInput packing_category_assignees?: Prisma.packing_category_assigneesCreateNestedManyWithoutTripsInput packing_items?: Prisma.packing_itemsCreateNestedManyWithoutTripsInput photos?: Prisma.photosCreateNestedManyWithoutTripsInput places?: Prisma.placesCreateNestedManyWithoutTripsInput reservations?: Prisma.reservationsCreateNestedManyWithoutTripsInput share_tokens?: Prisma.share_tokensCreateNestedManyWithoutTripsInput todo_category_assignees?: Prisma.todo_category_assigneesCreateNestedManyWithoutTripsInput todo_items?: Prisma.todo_itemsCreateNestedManyWithoutTripsInput trip_album_links?: Prisma.trip_album_linksCreateNestedManyWithoutTripsInput trip_files?: Prisma.trip_filesCreateNestedManyWithoutTripsInput trip_members?: Prisma.trip_membersCreateNestedManyWithoutTripsInput users: Prisma.usersCreateNestedOneWithoutTripsInput } export type tripsUncheckedCreateWithoutTrip_photosInput = { id?: number user_id: number title: string description?: string | null start_date?: string | null end_date?: string | null currency?: string | null cover_image?: string | null is_archived?: number | null reminder_days?: number | null created_at?: Date | string | null updated_at?: Date | string | null budget_category_order?: Prisma.budget_category_orderUncheckedCreateNestedManyWithoutTripsInput budget_items?: Prisma.budget_itemsUncheckedCreateNestedManyWithoutTripsInput collab_messages?: Prisma.collab_messagesUncheckedCreateNestedManyWithoutTripsInput collab_notes?: Prisma.collab_notesUncheckedCreateNestedManyWithoutTripsInput collab_polls?: Prisma.collab_pollsUncheckedCreateNestedManyWithoutTripsInput day_accommodations?: Prisma.day_accommodationsUncheckedCreateNestedManyWithoutTripsInput day_notes?: Prisma.day_notesUncheckedCreateNestedManyWithoutTripsInput days?: Prisma.daysUncheckedCreateNestedManyWithoutTripsInput journey_entries?: Prisma.journey_entriesUncheckedCreateNestedManyWithoutTripsInput journey_trips?: Prisma.journey_tripsUncheckedCreateNestedManyWithoutTripsInput packing_bags?: Prisma.packing_bagsUncheckedCreateNestedManyWithoutTripsInput packing_category_assignees?: Prisma.packing_category_assigneesUncheckedCreateNestedManyWithoutTripsInput packing_items?: Prisma.packing_itemsUncheckedCreateNestedManyWithoutTripsInput photos?: Prisma.photosUncheckedCreateNestedManyWithoutTripsInput places?: Prisma.placesUncheckedCreateNestedManyWithoutTripsInput reservations?: Prisma.reservationsUncheckedCreateNestedManyWithoutTripsInput share_tokens?: Prisma.share_tokensUncheckedCreateNestedManyWithoutTripsInput todo_category_assignees?: Prisma.todo_category_assigneesUncheckedCreateNestedManyWithoutTripsInput todo_items?: Prisma.todo_itemsUncheckedCreateNestedManyWithoutTripsInput trip_album_links?: Prisma.trip_album_linksUncheckedCreateNestedManyWithoutTripsInput trip_files?: Prisma.trip_filesUncheckedCreateNestedManyWithoutTripsInput trip_members?: Prisma.trip_membersUncheckedCreateNestedManyWithoutTripsInput } export type tripsCreateOrConnectWithoutTrip_photosInput = { where: Prisma.tripsWhereUniqueInput create: Prisma.XOR } export type tripsUpsertWithoutTrip_photosInput = { update: Prisma.XOR create: Prisma.XOR where?: Prisma.tripsWhereInput } export type tripsUpdateToOneWithWhereWithoutTrip_photosInput = { where?: Prisma.tripsWhereInput data: Prisma.XOR } export type tripsUpdateWithoutTrip_photosInput = { title?: Prisma.StringFieldUpdateOperationsInput | string description?: Prisma.NullableStringFieldUpdateOperationsInput | string | null start_date?: Prisma.NullableStringFieldUpdateOperationsInput | string | null end_date?: Prisma.NullableStringFieldUpdateOperationsInput | string | null currency?: Prisma.NullableStringFieldUpdateOperationsInput | string | null cover_image?: Prisma.NullableStringFieldUpdateOperationsInput | string | null is_archived?: Prisma.NullableIntFieldUpdateOperationsInput | number | null reminder_days?: Prisma.NullableIntFieldUpdateOperationsInput | number | null created_at?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null updated_at?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null budget_category_order?: Prisma.budget_category_orderUpdateManyWithoutTripsNestedInput budget_items?: Prisma.budget_itemsUpdateManyWithoutTripsNestedInput collab_messages?: Prisma.collab_messagesUpdateManyWithoutTripsNestedInput collab_notes?: Prisma.collab_notesUpdateManyWithoutTripsNestedInput collab_polls?: Prisma.collab_pollsUpdateManyWithoutTripsNestedInput day_accommodations?: Prisma.day_accommodationsUpdateManyWithoutTripsNestedInput day_notes?: Prisma.day_notesUpdateManyWithoutTripsNestedInput days?: Prisma.daysUpdateManyWithoutTripsNestedInput journey_entries?: Prisma.journey_entriesUpdateManyWithoutTripsNestedInput journey_trips?: Prisma.journey_tripsUpdateManyWithoutTripsNestedInput packing_bags?: Prisma.packing_bagsUpdateManyWithoutTripsNestedInput packing_category_assignees?: Prisma.packing_category_assigneesUpdateManyWithoutTripsNestedInput packing_items?: Prisma.packing_itemsUpdateManyWithoutTripsNestedInput photos?: Prisma.photosUpdateManyWithoutTripsNestedInput places?: Prisma.placesUpdateManyWithoutTripsNestedInput reservations?: Prisma.reservationsUpdateManyWithoutTripsNestedInput share_tokens?: Prisma.share_tokensUpdateManyWithoutTripsNestedInput todo_category_assignees?: Prisma.todo_category_assigneesUpdateManyWithoutTripsNestedInput todo_items?: Prisma.todo_itemsUpdateManyWithoutTripsNestedInput trip_album_links?: Prisma.trip_album_linksUpdateManyWithoutTripsNestedInput trip_files?: Prisma.trip_filesUpdateManyWithoutTripsNestedInput trip_members?: Prisma.trip_membersUpdateManyWithoutTripsNestedInput users?: Prisma.usersUpdateOneRequiredWithoutTripsNestedInput } export type tripsUncheckedUpdateWithoutTrip_photosInput = { id?: Prisma.IntFieldUpdateOperationsInput | number user_id?: Prisma.IntFieldUpdateOperationsInput | number title?: Prisma.StringFieldUpdateOperationsInput | string description?: Prisma.NullableStringFieldUpdateOperationsInput | string | null start_date?: Prisma.NullableStringFieldUpdateOperationsInput | string | null end_date?: Prisma.NullableStringFieldUpdateOperationsInput | string | null currency?: Prisma.NullableStringFieldUpdateOperationsInput | string | null cover_image?: Prisma.NullableStringFieldUpdateOperationsInput | string | null is_archived?: Prisma.NullableIntFieldUpdateOperationsInput | number | null reminder_days?: Prisma.NullableIntFieldUpdateOperationsInput | number | null created_at?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null updated_at?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null budget_category_order?: Prisma.budget_category_orderUncheckedUpdateManyWithoutTripsNestedInput budget_items?: Prisma.budget_itemsUncheckedUpdateManyWithoutTripsNestedInput collab_messages?: Prisma.collab_messagesUncheckedUpdateManyWithoutTripsNestedInput collab_notes?: Prisma.collab_notesUncheckedUpdateManyWithoutTripsNestedInput collab_polls?: Prisma.collab_pollsUncheckedUpdateManyWithoutTripsNestedInput day_accommodations?: Prisma.day_accommodationsUncheckedUpdateManyWithoutTripsNestedInput day_notes?: Prisma.day_notesUncheckedUpdateManyWithoutTripsNestedInput days?: Prisma.daysUncheckedUpdateManyWithoutTripsNestedInput journey_entries?: Prisma.journey_entriesUncheckedUpdateManyWithoutTripsNestedInput journey_trips?: Prisma.journey_tripsUncheckedUpdateManyWithoutTripsNestedInput packing_bags?: Prisma.packing_bagsUncheckedUpdateManyWithoutTripsNestedInput packing_category_assignees?: Prisma.packing_category_assigneesUncheckedUpdateManyWithoutTripsNestedInput packing_items?: Prisma.packing_itemsUncheckedUpdateManyWithoutTripsNestedInput photos?: Prisma.photosUncheckedUpdateManyWithoutTripsNestedInput places?: Prisma.placesUncheckedUpdateManyWithoutTripsNestedInput reservations?: Prisma.reservationsUncheckedUpdateManyWithoutTripsNestedInput share_tokens?: Prisma.share_tokensUncheckedUpdateManyWithoutTripsNestedInput todo_category_assignees?: Prisma.todo_category_assigneesUncheckedUpdateManyWithoutTripsNestedInput todo_items?: Prisma.todo_itemsUncheckedUpdateManyWithoutTripsNestedInput trip_album_links?: Prisma.trip_album_linksUncheckedUpdateManyWithoutTripsNestedInput trip_files?: Prisma.trip_filesUncheckedUpdateManyWithoutTripsNestedInput trip_members?: Prisma.trip_membersUncheckedUpdateManyWithoutTripsNestedInput } export type tripsCreateWithoutUsersInput = { title: string description?: string | null start_date?: string | null end_date?: string | null currency?: string | null cover_image?: string | null is_archived?: number | null reminder_days?: number | null created_at?: Date | string | null updated_at?: Date | string | null budget_category_order?: Prisma.budget_category_orderCreateNestedManyWithoutTripsInput budget_items?: Prisma.budget_itemsCreateNestedManyWithoutTripsInput collab_messages?: Prisma.collab_messagesCreateNestedManyWithoutTripsInput collab_notes?: Prisma.collab_notesCreateNestedManyWithoutTripsInput collab_polls?: Prisma.collab_pollsCreateNestedManyWithoutTripsInput day_accommodations?: Prisma.day_accommodationsCreateNestedManyWithoutTripsInput day_notes?: Prisma.day_notesCreateNestedManyWithoutTripsInput days?: Prisma.daysCreateNestedManyWithoutTripsInput journey_entries?: Prisma.journey_entriesCreateNestedManyWithoutTripsInput journey_trips?: Prisma.journey_tripsCreateNestedManyWithoutTripsInput packing_bags?: Prisma.packing_bagsCreateNestedManyWithoutTripsInput packing_category_assignees?: Prisma.packing_category_assigneesCreateNestedManyWithoutTripsInput packing_items?: Prisma.packing_itemsCreateNestedManyWithoutTripsInput photos?: Prisma.photosCreateNestedManyWithoutTripsInput places?: Prisma.placesCreateNestedManyWithoutTripsInput reservations?: Prisma.reservationsCreateNestedManyWithoutTripsInput share_tokens?: Prisma.share_tokensCreateNestedManyWithoutTripsInput todo_category_assignees?: Prisma.todo_category_assigneesCreateNestedManyWithoutTripsInput todo_items?: Prisma.todo_itemsCreateNestedManyWithoutTripsInput trip_album_links?: Prisma.trip_album_linksCreateNestedManyWithoutTripsInput trip_files?: Prisma.trip_filesCreateNestedManyWithoutTripsInput trip_members?: Prisma.trip_membersCreateNestedManyWithoutTripsInput trip_photos?: Prisma.trip_photosCreateNestedManyWithoutTripsInput } export type tripsUncheckedCreateWithoutUsersInput = { id?: number title: string description?: string | null start_date?: string | null end_date?: string | null currency?: string | null cover_image?: string | null is_archived?: number | null reminder_days?: number | null created_at?: Date | string | null updated_at?: Date | string | null budget_category_order?: Prisma.budget_category_orderUncheckedCreateNestedManyWithoutTripsInput budget_items?: Prisma.budget_itemsUncheckedCreateNestedManyWithoutTripsInput collab_messages?: Prisma.collab_messagesUncheckedCreateNestedManyWithoutTripsInput collab_notes?: Prisma.collab_notesUncheckedCreateNestedManyWithoutTripsInput collab_polls?: Prisma.collab_pollsUncheckedCreateNestedManyWithoutTripsInput day_accommodations?: Prisma.day_accommodationsUncheckedCreateNestedManyWithoutTripsInput day_notes?: Prisma.day_notesUncheckedCreateNestedManyWithoutTripsInput days?: Prisma.daysUncheckedCreateNestedManyWithoutTripsInput journey_entries?: Prisma.journey_entriesUncheckedCreateNestedManyWithoutTripsInput journey_trips?: Prisma.journey_tripsUncheckedCreateNestedManyWithoutTripsInput packing_bags?: Prisma.packing_bagsUncheckedCreateNestedManyWithoutTripsInput packing_category_assignees?: Prisma.packing_category_assigneesUncheckedCreateNestedManyWithoutTripsInput packing_items?: Prisma.packing_itemsUncheckedCreateNestedManyWithoutTripsInput photos?: Prisma.photosUncheckedCreateNestedManyWithoutTripsInput places?: Prisma.placesUncheckedCreateNestedManyWithoutTripsInput reservations?: Prisma.reservationsUncheckedCreateNestedManyWithoutTripsInput share_tokens?: Prisma.share_tokensUncheckedCreateNestedManyWithoutTripsInput todo_category_assignees?: Prisma.todo_category_assigneesUncheckedCreateNestedManyWithoutTripsInput todo_items?: Prisma.todo_itemsUncheckedCreateNestedManyWithoutTripsInput trip_album_links?: Prisma.trip_album_linksUncheckedCreateNestedManyWithoutTripsInput trip_files?: Prisma.trip_filesUncheckedCreateNestedManyWithoutTripsInput trip_members?: Prisma.trip_membersUncheckedCreateNestedManyWithoutTripsInput trip_photos?: Prisma.trip_photosUncheckedCreateNestedManyWithoutTripsInput } export type tripsCreateOrConnectWithoutUsersInput = { where: Prisma.tripsWhereUniqueInput create: Prisma.XOR } export type tripsCreateManyUsersInputEnvelope = { data: Prisma.tripsCreateManyUsersInput | Prisma.tripsCreateManyUsersInput[] } export type tripsUpsertWithWhereUniqueWithoutUsersInput = { where: Prisma.tripsWhereUniqueInput update: Prisma.XOR create: Prisma.XOR } export type tripsUpdateWithWhereUniqueWithoutUsersInput = { where: Prisma.tripsWhereUniqueInput data: Prisma.XOR } export type tripsUpdateManyWithWhereWithoutUsersInput = { where: Prisma.tripsScalarWhereInput data: Prisma.XOR } export type tripsScalarWhereInput = { AND?: Prisma.tripsScalarWhereInput | Prisma.tripsScalarWhereInput[] OR?: Prisma.tripsScalarWhereInput[] NOT?: Prisma.tripsScalarWhereInput | Prisma.tripsScalarWhereInput[] id?: Prisma.IntFilter<"trips"> | number user_id?: Prisma.IntFilter<"trips"> | number title?: Prisma.StringFilter<"trips"> | string description?: Prisma.StringNullableFilter<"trips"> | string | null start_date?: Prisma.StringNullableFilter<"trips"> | string | null end_date?: Prisma.StringNullableFilter<"trips"> | string | null currency?: Prisma.StringNullableFilter<"trips"> | string | null cover_image?: Prisma.StringNullableFilter<"trips"> | string | null is_archived?: Prisma.IntNullableFilter<"trips"> | number | null reminder_days?: Prisma.IntNullableFilter<"trips"> | number | null created_at?: Prisma.DateTimeNullableFilter<"trips"> | Date | string | null updated_at?: Prisma.DateTimeNullableFilter<"trips"> | Date | string | null } export type tripsCreateManyUsersInput = { id?: number title: string description?: string | null start_date?: string | null end_date?: string | null currency?: string | null cover_image?: string | null is_archived?: number | null reminder_days?: number | null created_at?: Date | string | null updated_at?: Date | string | null } export type tripsUpdateWithoutUsersInput = { title?: Prisma.StringFieldUpdateOperationsInput | string description?: Prisma.NullableStringFieldUpdateOperationsInput | string | null start_date?: Prisma.NullableStringFieldUpdateOperationsInput | string | null end_date?: Prisma.NullableStringFieldUpdateOperationsInput | string | null currency?: Prisma.NullableStringFieldUpdateOperationsInput | string | null cover_image?: Prisma.NullableStringFieldUpdateOperationsInput | string | null is_archived?: Prisma.NullableIntFieldUpdateOperationsInput | number | null reminder_days?: Prisma.NullableIntFieldUpdateOperationsInput | number | null created_at?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null updated_at?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null budget_category_order?: Prisma.budget_category_orderUpdateManyWithoutTripsNestedInput budget_items?: Prisma.budget_itemsUpdateManyWithoutTripsNestedInput collab_messages?: Prisma.collab_messagesUpdateManyWithoutTripsNestedInput collab_notes?: Prisma.collab_notesUpdateManyWithoutTripsNestedInput collab_polls?: Prisma.collab_pollsUpdateManyWithoutTripsNestedInput day_accommodations?: Prisma.day_accommodationsUpdateManyWithoutTripsNestedInput day_notes?: Prisma.day_notesUpdateManyWithoutTripsNestedInput days?: Prisma.daysUpdateManyWithoutTripsNestedInput journey_entries?: Prisma.journey_entriesUpdateManyWithoutTripsNestedInput journey_trips?: Prisma.journey_tripsUpdateManyWithoutTripsNestedInput packing_bags?: Prisma.packing_bagsUpdateManyWithoutTripsNestedInput packing_category_assignees?: Prisma.packing_category_assigneesUpdateManyWithoutTripsNestedInput packing_items?: Prisma.packing_itemsUpdateManyWithoutTripsNestedInput photos?: Prisma.photosUpdateManyWithoutTripsNestedInput places?: Prisma.placesUpdateManyWithoutTripsNestedInput reservations?: Prisma.reservationsUpdateManyWithoutTripsNestedInput share_tokens?: Prisma.share_tokensUpdateManyWithoutTripsNestedInput todo_category_assignees?: Prisma.todo_category_assigneesUpdateManyWithoutTripsNestedInput todo_items?: Prisma.todo_itemsUpdateManyWithoutTripsNestedInput trip_album_links?: Prisma.trip_album_linksUpdateManyWithoutTripsNestedInput trip_files?: Prisma.trip_filesUpdateManyWithoutTripsNestedInput trip_members?: Prisma.trip_membersUpdateManyWithoutTripsNestedInput trip_photos?: Prisma.trip_photosUpdateManyWithoutTripsNestedInput } export type tripsUncheckedUpdateWithoutUsersInput = { id?: Prisma.IntFieldUpdateOperationsInput | number title?: Prisma.StringFieldUpdateOperationsInput | string description?: Prisma.NullableStringFieldUpdateOperationsInput | string | null start_date?: Prisma.NullableStringFieldUpdateOperationsInput | string | null end_date?: Prisma.NullableStringFieldUpdateOperationsInput | string | null currency?: Prisma.NullableStringFieldUpdateOperationsInput | string | null cover_image?: Prisma.NullableStringFieldUpdateOperationsInput | string | null is_archived?: Prisma.NullableIntFieldUpdateOperationsInput | number | null reminder_days?: Prisma.NullableIntFieldUpdateOperationsInput | number | null created_at?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null updated_at?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null budget_category_order?: Prisma.budget_category_orderUncheckedUpdateManyWithoutTripsNestedInput budget_items?: Prisma.budget_itemsUncheckedUpdateManyWithoutTripsNestedInput collab_messages?: Prisma.collab_messagesUncheckedUpdateManyWithoutTripsNestedInput collab_notes?: Prisma.collab_notesUncheckedUpdateManyWithoutTripsNestedInput collab_polls?: Prisma.collab_pollsUncheckedUpdateManyWithoutTripsNestedInput day_accommodations?: Prisma.day_accommodationsUncheckedUpdateManyWithoutTripsNestedInput day_notes?: Prisma.day_notesUncheckedUpdateManyWithoutTripsNestedInput days?: Prisma.daysUncheckedUpdateManyWithoutTripsNestedInput journey_entries?: Prisma.journey_entriesUncheckedUpdateManyWithoutTripsNestedInput journey_trips?: Prisma.journey_tripsUncheckedUpdateManyWithoutTripsNestedInput packing_bags?: Prisma.packing_bagsUncheckedUpdateManyWithoutTripsNestedInput packing_category_assignees?: Prisma.packing_category_assigneesUncheckedUpdateManyWithoutTripsNestedInput packing_items?: Prisma.packing_itemsUncheckedUpdateManyWithoutTripsNestedInput photos?: Prisma.photosUncheckedUpdateManyWithoutTripsNestedInput places?: Prisma.placesUncheckedUpdateManyWithoutTripsNestedInput reservations?: Prisma.reservationsUncheckedUpdateManyWithoutTripsNestedInput share_tokens?: Prisma.share_tokensUncheckedUpdateManyWithoutTripsNestedInput todo_category_assignees?: Prisma.todo_category_assigneesUncheckedUpdateManyWithoutTripsNestedInput todo_items?: Prisma.todo_itemsUncheckedUpdateManyWithoutTripsNestedInput trip_album_links?: Prisma.trip_album_linksUncheckedUpdateManyWithoutTripsNestedInput trip_files?: Prisma.trip_filesUncheckedUpdateManyWithoutTripsNestedInput trip_members?: Prisma.trip_membersUncheckedUpdateManyWithoutTripsNestedInput trip_photos?: Prisma.trip_photosUncheckedUpdateManyWithoutTripsNestedInput } export type tripsUncheckedUpdateManyWithoutUsersInput = { id?: Prisma.IntFieldUpdateOperationsInput | number title?: Prisma.StringFieldUpdateOperationsInput | string description?: Prisma.NullableStringFieldUpdateOperationsInput | string | null start_date?: Prisma.NullableStringFieldUpdateOperationsInput | string | null end_date?: Prisma.NullableStringFieldUpdateOperationsInput | string | null currency?: Prisma.NullableStringFieldUpdateOperationsInput | string | null cover_image?: Prisma.NullableStringFieldUpdateOperationsInput | string | null is_archived?: Prisma.NullableIntFieldUpdateOperationsInput | number | null reminder_days?: Prisma.NullableIntFieldUpdateOperationsInput | number | null created_at?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null updated_at?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null } /** * Count Type TripsCountOutputType */ export type TripsCountOutputType = { budget_category_order: number budget_items: number collab_messages: number collab_notes: number collab_polls: number day_accommodations: number day_notes: number days: number journey_entries: number journey_trips: number packing_bags: number packing_category_assignees: number packing_items: number photos: number places: number reservations: number share_tokens: number todo_category_assignees: number todo_items: number trip_album_links: number trip_files: number trip_members: number trip_photos: number } export type TripsCountOutputTypeSelect = { budget_category_order?: boolean | TripsCountOutputTypeCountBudget_category_orderArgs budget_items?: boolean | TripsCountOutputTypeCountBudget_itemsArgs collab_messages?: boolean | TripsCountOutputTypeCountCollab_messagesArgs collab_notes?: boolean | TripsCountOutputTypeCountCollab_notesArgs collab_polls?: boolean | TripsCountOutputTypeCountCollab_pollsArgs day_accommodations?: boolean | TripsCountOutputTypeCountDay_accommodationsArgs day_notes?: boolean | TripsCountOutputTypeCountDay_notesArgs days?: boolean | TripsCountOutputTypeCountDaysArgs journey_entries?: boolean | TripsCountOutputTypeCountJourney_entriesArgs journey_trips?: boolean | TripsCountOutputTypeCountJourney_tripsArgs packing_bags?: boolean | TripsCountOutputTypeCountPacking_bagsArgs packing_category_assignees?: boolean | TripsCountOutputTypeCountPacking_category_assigneesArgs packing_items?: boolean | TripsCountOutputTypeCountPacking_itemsArgs photos?: boolean | TripsCountOutputTypeCountPhotosArgs places?: boolean | TripsCountOutputTypeCountPlacesArgs reservations?: boolean | TripsCountOutputTypeCountReservationsArgs share_tokens?: boolean | TripsCountOutputTypeCountShare_tokensArgs todo_category_assignees?: boolean | TripsCountOutputTypeCountTodo_category_assigneesArgs todo_items?: boolean | TripsCountOutputTypeCountTodo_itemsArgs trip_album_links?: boolean | TripsCountOutputTypeCountTrip_album_linksArgs trip_files?: boolean | TripsCountOutputTypeCountTrip_filesArgs trip_members?: boolean | TripsCountOutputTypeCountTrip_membersArgs trip_photos?: boolean | TripsCountOutputTypeCountTrip_photosArgs } /** * TripsCountOutputType without action */ export type TripsCountOutputTypeDefaultArgs = { /** * Select specific fields to fetch from the TripsCountOutputType */ select?: Prisma.TripsCountOutputTypeSelect | null } /** * TripsCountOutputType without action */ export type TripsCountOutputTypeCountBudget_category_orderArgs = { where?: Prisma.budget_category_orderWhereInput } /** * TripsCountOutputType without action */ export type TripsCountOutputTypeCountBudget_itemsArgs = { where?: Prisma.budget_itemsWhereInput } /** * TripsCountOutputType without action */ export type TripsCountOutputTypeCountCollab_messagesArgs = { where?: Prisma.collab_messagesWhereInput } /** * TripsCountOutputType without action */ export type TripsCountOutputTypeCountCollab_notesArgs = { where?: Prisma.collab_notesWhereInput } /** * TripsCountOutputType without action */ export type TripsCountOutputTypeCountCollab_pollsArgs = { where?: Prisma.collab_pollsWhereInput } /** * TripsCountOutputType without action */ export type TripsCountOutputTypeCountDay_accommodationsArgs = { where?: Prisma.day_accommodationsWhereInput } /** * TripsCountOutputType without action */ export type TripsCountOutputTypeCountDay_notesArgs = { where?: Prisma.day_notesWhereInput } /** * TripsCountOutputType without action */ export type TripsCountOutputTypeCountDaysArgs = { where?: Prisma.daysWhereInput } /** * TripsCountOutputType without action */ export type TripsCountOutputTypeCountJourney_entriesArgs = { where?: Prisma.journey_entriesWhereInput } /** * TripsCountOutputType without action */ export type TripsCountOutputTypeCountJourney_tripsArgs = { where?: Prisma.journey_tripsWhereInput } /** * TripsCountOutputType without action */ export type TripsCountOutputTypeCountPacking_bagsArgs = { where?: Prisma.packing_bagsWhereInput } /** * TripsCountOutputType without action */ export type TripsCountOutputTypeCountPacking_category_assigneesArgs = { where?: Prisma.packing_category_assigneesWhereInput } /** * TripsCountOutputType without action */ export type TripsCountOutputTypeCountPacking_itemsArgs = { where?: Prisma.packing_itemsWhereInput } /** * TripsCountOutputType without action */ export type TripsCountOutputTypeCountPhotosArgs = { where?: Prisma.photosWhereInput } /** * TripsCountOutputType without action */ export type TripsCountOutputTypeCountPlacesArgs = { where?: Prisma.placesWhereInput } /** * TripsCountOutputType without action */ export type TripsCountOutputTypeCountReservationsArgs = { where?: Prisma.reservationsWhereInput } /** * TripsCountOutputType without action */ export type TripsCountOutputTypeCountShare_tokensArgs = { where?: Prisma.share_tokensWhereInput } /** * TripsCountOutputType without action */ export type TripsCountOutputTypeCountTodo_category_assigneesArgs = { where?: Prisma.todo_category_assigneesWhereInput } /** * TripsCountOutputType without action */ export type TripsCountOutputTypeCountTodo_itemsArgs = { where?: Prisma.todo_itemsWhereInput } /** * TripsCountOutputType without action */ export type TripsCountOutputTypeCountTrip_album_linksArgs = { where?: Prisma.trip_album_linksWhereInput } /** * TripsCountOutputType without action */ export type TripsCountOutputTypeCountTrip_filesArgs = { where?: Prisma.trip_filesWhereInput } /** * TripsCountOutputType without action */ export type TripsCountOutputTypeCountTrip_membersArgs = { where?: Prisma.trip_membersWhereInput } /** * TripsCountOutputType without action */ export type TripsCountOutputTypeCountTrip_photosArgs = { where?: Prisma.trip_photosWhereInput } export type tripsSelect = runtime.Types.Extensions.GetSelect<{ id?: boolean user_id?: boolean title?: boolean description?: boolean start_date?: boolean end_date?: boolean currency?: boolean cover_image?: boolean is_archived?: boolean reminder_days?: boolean created_at?: boolean updated_at?: boolean budget_category_order?: boolean | Prisma.trips$budget_category_orderArgs budget_items?: boolean | Prisma.trips$budget_itemsArgs collab_messages?: boolean | Prisma.trips$collab_messagesArgs collab_notes?: boolean | Prisma.trips$collab_notesArgs collab_polls?: boolean | Prisma.trips$collab_pollsArgs day_accommodations?: boolean | Prisma.trips$day_accommodationsArgs day_notes?: boolean | Prisma.trips$day_notesArgs days?: boolean | Prisma.trips$daysArgs journey_entries?: boolean | Prisma.trips$journey_entriesArgs journey_trips?: boolean | Prisma.trips$journey_tripsArgs packing_bags?: boolean | Prisma.trips$packing_bagsArgs packing_category_assignees?: boolean | Prisma.trips$packing_category_assigneesArgs packing_items?: boolean | Prisma.trips$packing_itemsArgs photos?: boolean | Prisma.trips$photosArgs places?: boolean | Prisma.trips$placesArgs reservations?: boolean | Prisma.trips$reservationsArgs share_tokens?: boolean | Prisma.trips$share_tokensArgs todo_category_assignees?: boolean | Prisma.trips$todo_category_assigneesArgs todo_items?: boolean | Prisma.trips$todo_itemsArgs trip_album_links?: boolean | Prisma.trips$trip_album_linksArgs trip_files?: boolean | Prisma.trips$trip_filesArgs trip_members?: boolean | Prisma.trips$trip_membersArgs trip_photos?: boolean | Prisma.trips$trip_photosArgs users?: boolean | Prisma.usersDefaultArgs _count?: boolean | Prisma.TripsCountOutputTypeDefaultArgs }, ExtArgs["result"]["trips"]> export type tripsSelectCreateManyAndReturn = runtime.Types.Extensions.GetSelect<{ id?: boolean user_id?: boolean title?: boolean description?: boolean start_date?: boolean end_date?: boolean currency?: boolean cover_image?: boolean is_archived?: boolean reminder_days?: boolean created_at?: boolean updated_at?: boolean users?: boolean | Prisma.usersDefaultArgs }, ExtArgs["result"]["trips"]> export type tripsSelectUpdateManyAndReturn = runtime.Types.Extensions.GetSelect<{ id?: boolean user_id?: boolean title?: boolean description?: boolean start_date?: boolean end_date?: boolean currency?: boolean cover_image?: boolean is_archived?: boolean reminder_days?: boolean created_at?: boolean updated_at?: boolean users?: boolean | Prisma.usersDefaultArgs }, ExtArgs["result"]["trips"]> export type tripsSelectScalar = { id?: boolean user_id?: boolean title?: boolean description?: boolean start_date?: boolean end_date?: boolean currency?: boolean cover_image?: boolean is_archived?: boolean reminder_days?: boolean created_at?: boolean updated_at?: boolean } export type tripsOmit = runtime.Types.Extensions.GetOmit<"id" | "user_id" | "title" | "description" | "start_date" | "end_date" | "currency" | "cover_image" | "is_archived" | "reminder_days" | "created_at" | "updated_at", ExtArgs["result"]["trips"]> export type tripsInclude = { budget_category_order?: boolean | Prisma.trips$budget_category_orderArgs budget_items?: boolean | Prisma.trips$budget_itemsArgs collab_messages?: boolean | Prisma.trips$collab_messagesArgs collab_notes?: boolean | Prisma.trips$collab_notesArgs collab_polls?: boolean | Prisma.trips$collab_pollsArgs day_accommodations?: boolean | Prisma.trips$day_accommodationsArgs day_notes?: boolean | Prisma.trips$day_notesArgs days?: boolean | Prisma.trips$daysArgs journey_entries?: boolean | Prisma.trips$journey_entriesArgs journey_trips?: boolean | Prisma.trips$journey_tripsArgs packing_bags?: boolean | Prisma.trips$packing_bagsArgs packing_category_assignees?: boolean | Prisma.trips$packing_category_assigneesArgs packing_items?: boolean | Prisma.trips$packing_itemsArgs photos?: boolean | Prisma.trips$photosArgs places?: boolean | Prisma.trips$placesArgs reservations?: boolean | Prisma.trips$reservationsArgs share_tokens?: boolean | Prisma.trips$share_tokensArgs todo_category_assignees?: boolean | Prisma.trips$todo_category_assigneesArgs todo_items?: boolean | Prisma.trips$todo_itemsArgs trip_album_links?: boolean | Prisma.trips$trip_album_linksArgs trip_files?: boolean | Prisma.trips$trip_filesArgs trip_members?: boolean | Prisma.trips$trip_membersArgs trip_photos?: boolean | Prisma.trips$trip_photosArgs users?: boolean | Prisma.usersDefaultArgs _count?: boolean | Prisma.TripsCountOutputTypeDefaultArgs } export type tripsIncludeCreateManyAndReturn = { users?: boolean | Prisma.usersDefaultArgs } export type tripsIncludeUpdateManyAndReturn = { users?: boolean | Prisma.usersDefaultArgs } export type $tripsPayload = { name: "trips" objects: { budget_category_order: Prisma.$budget_category_orderPayload[] budget_items: Prisma.$budget_itemsPayload[] collab_messages: Prisma.$collab_messagesPayload[] collab_notes: Prisma.$collab_notesPayload[] collab_polls: Prisma.$collab_pollsPayload[] day_accommodations: Prisma.$day_accommodationsPayload[] day_notes: Prisma.$day_notesPayload[] days: Prisma.$daysPayload[] journey_entries: Prisma.$journey_entriesPayload[] journey_trips: Prisma.$journey_tripsPayload[] packing_bags: Prisma.$packing_bagsPayload[] packing_category_assignees: Prisma.$packing_category_assigneesPayload[] packing_items: Prisma.$packing_itemsPayload[] photos: Prisma.$photosPayload[] places: Prisma.$placesPayload[] reservations: Prisma.$reservationsPayload[] share_tokens: Prisma.$share_tokensPayload[] todo_category_assignees: Prisma.$todo_category_assigneesPayload[] todo_items: Prisma.$todo_itemsPayload[] trip_album_links: Prisma.$trip_album_linksPayload[] trip_files: Prisma.$trip_filesPayload[] trip_members: Prisma.$trip_membersPayload[] trip_photos: Prisma.$trip_photosPayload[] users: Prisma.$usersPayload } scalars: runtime.Types.Extensions.GetPayloadResult<{ id: number user_id: number title: string description: string | null start_date: string | null end_date: string | null currency: string | null cover_image: string | null is_archived: number | null reminder_days: number | null created_at: Date | null updated_at: Date | null }, ExtArgs["result"]["trips"]> composites: {} } export type tripsGetPayload = runtime.Types.Result.GetResult export type tripsCountArgs = Omit & { select?: TripsCountAggregateInputType | true } export interface tripsDelegate { [K: symbol]: { types: Prisma.TypeMap['model']['trips'], meta: { name: 'trips' } } /** * Find zero or one Trips that matches the filter. * @param {tripsFindUniqueArgs} args - Arguments to find a Trips * @example * // Get one Trips * const trips = await prisma.trips.findUnique({ * where: { * // ... provide filter here * } * }) */ findUnique(args: Prisma.SelectSubset>): Prisma.Prisma__tripsClient, T, "findUnique", GlobalOmitOptions> | null, null, ExtArgs, GlobalOmitOptions> /** * Find one Trips that matches the filter or throw an error with `error.code='P2025'` * if no matches were found. * @param {tripsFindUniqueOrThrowArgs} args - Arguments to find a Trips * @example * // Get one Trips * const trips = await prisma.trips.findUniqueOrThrow({ * where: { * // ... provide filter here * } * }) */ findUniqueOrThrow(args: Prisma.SelectSubset>): Prisma.Prisma__tripsClient, T, "findUniqueOrThrow", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions> /** * Find the first Trips 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 {tripsFindFirstArgs} args - Arguments to find a Trips * @example * // Get one Trips * const trips = await prisma.trips.findFirst({ * where: { * // ... provide filter here * } * }) */ findFirst(args?: Prisma.SelectSubset>): Prisma.Prisma__tripsClient, T, "findFirst", GlobalOmitOptions> | null, null, ExtArgs, GlobalOmitOptions> /** * Find the first Trips 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 {tripsFindFirstOrThrowArgs} args - Arguments to find a Trips * @example * // Get one Trips * const trips = await prisma.trips.findFirstOrThrow({ * where: { * // ... provide filter here * } * }) */ findFirstOrThrow(args?: Prisma.SelectSubset>): Prisma.Prisma__tripsClient, T, "findFirstOrThrow", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions> /** * Find zero or more Trips 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 {tripsFindManyArgs} args - Arguments to filter and select certain fields only. * @example * // Get all Trips * const trips = await prisma.trips.findMany() * * // Get first 10 Trips * const trips = await prisma.trips.findMany({ take: 10 }) * * // Only select the `id` * const tripsWithIdOnly = await prisma.trips.findMany({ select: { id: true } }) * */ findMany(args?: Prisma.SelectSubset>): Prisma.PrismaPromise, T, "findMany", GlobalOmitOptions>> /** * Create a Trips. * @param {tripsCreateArgs} args - Arguments to create a Trips. * @example * // Create one Trips * const Trips = await prisma.trips.create({ * data: { * // ... data to create a Trips * } * }) * */ create(args: Prisma.SelectSubset>): Prisma.Prisma__tripsClient, T, "create", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions> /** * Create many Trips. * @param {tripsCreateManyArgs} args - Arguments to create many Trips. * @example * // Create many Trips * const trips = await prisma.trips.createMany({ * data: [ * // ... provide data here * ] * }) * */ createMany(args?: Prisma.SelectSubset>): Prisma.PrismaPromise /** * Create many Trips and returns the data saved in the database. * @param {tripsCreateManyAndReturnArgs} args - Arguments to create many Trips. * @example * // Create many Trips * const trips = await prisma.trips.createManyAndReturn({ * data: [ * // ... provide data here * ] * }) * * // Create many Trips and only return the `id` * const tripsWithIdOnly = await prisma.trips.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 Trips. * @param {tripsDeleteArgs} args - Arguments to delete one Trips. * @example * // Delete one Trips * const Trips = await prisma.trips.delete({ * where: { * // ... filter to delete one Trips * } * }) * */ delete(args: Prisma.SelectSubset>): Prisma.Prisma__tripsClient, T, "delete", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions> /** * Update one Trips. * @param {tripsUpdateArgs} args - Arguments to update one Trips. * @example * // Update one Trips * const trips = await prisma.trips.update({ * where: { * // ... provide filter here * }, * data: { * // ... provide data here * } * }) * */ update(args: Prisma.SelectSubset>): Prisma.Prisma__tripsClient, T, "update", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions> /** * Delete zero or more Trips. * @param {tripsDeleteManyArgs} args - Arguments to filter Trips to delete. * @example * // Delete a few Trips * const { count } = await prisma.trips.deleteMany({ * where: { * // ... provide filter here * } * }) * */ deleteMany(args?: Prisma.SelectSubset>): Prisma.PrismaPromise /** * Update zero or more Trips. * Note, that providing `undefined` is treated as the value not being there. * Read more here: https://pris.ly/d/null-undefined * @param {tripsUpdateManyArgs} args - Arguments to update one or more rows. * @example * // Update many Trips * const trips = await prisma.trips.updateMany({ * where: { * // ... provide filter here * }, * data: { * // ... provide data here * } * }) * */ updateMany(args: Prisma.SelectSubset>): Prisma.PrismaPromise /** * Update zero or more Trips and returns the data updated in the database. * @param {tripsUpdateManyAndReturnArgs} args - Arguments to update many Trips. * @example * // Update many Trips * const trips = await prisma.trips.updateManyAndReturn({ * where: { * // ... provide filter here * }, * data: [ * // ... provide data here * ] * }) * * // Update zero or more Trips and only return the `id` * const tripsWithIdOnly = await prisma.trips.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 Trips. * @param {tripsUpsertArgs} args - Arguments to update or create a Trips. * @example * // Update or create a Trips * const trips = await prisma.trips.upsert({ * create: { * // ... data to create a Trips * }, * update: { * // ... in case it already exists, update * }, * where: { * // ... the filter for the Trips we want to update * } * }) */ upsert(args: Prisma.SelectSubset>): Prisma.Prisma__tripsClient, T, "upsert", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions> /** * Count the number of Trips. * Note, that providing `undefined` is treated as the value not being there. * Read more here: https://pris.ly/d/null-undefined * @param {tripsCountArgs} args - Arguments to filter Trips to count. * @example * // Count the number of Trips * const count = await prisma.trips.count({ * where: { * // ... the filter for the Trips 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 Trips. * Note, that providing `undefined` is treated as the value not being there. * Read more here: https://pris.ly/d/null-undefined * @param {TripsAggregateArgs} 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 Trips. * Note, that providing `undefined` is treated as the value not being there. * Read more here: https://pris.ly/d/null-undefined * @param {tripsGroupByArgs} 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 tripsGroupByArgs, HasSelectOrTake extends Prisma.Or< Prisma.Extends<'skip', Prisma.Keys>, Prisma.Extends<'take', Prisma.Keys> >, OrderByArg extends Prisma.True extends HasSelectOrTake ? { orderBy: tripsGroupByArgs['orderBy'] } : { orderBy?: tripsGroupByArgs['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 ? GetTripsGroupByPayload : Prisma.PrismaPromise /** * Fields of the trips model */ readonly fields: tripsFieldRefs; } /** * The delegate class that acts as a "Promise-like" for trips. * 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__tripsClient extends Prisma.PrismaPromise { readonly [Symbol.toStringTag]: "PrismaPromise" budget_category_order = {}>(args?: Prisma.Subset>): Prisma.PrismaPromise, T, "findMany", GlobalOmitOptions> | Null> budget_items = {}>(args?: Prisma.Subset>): Prisma.PrismaPromise, T, "findMany", GlobalOmitOptions> | Null> collab_messages = {}>(args?: Prisma.Subset>): Prisma.PrismaPromise, T, "findMany", GlobalOmitOptions> | Null> collab_notes = {}>(args?: Prisma.Subset>): Prisma.PrismaPromise, T, "findMany", GlobalOmitOptions> | Null> collab_polls = {}>(args?: Prisma.Subset>): Prisma.PrismaPromise, T, "findMany", GlobalOmitOptions> | Null> day_accommodations = {}>(args?: Prisma.Subset>): Prisma.PrismaPromise, T, "findMany", GlobalOmitOptions> | Null> day_notes = {}>(args?: Prisma.Subset>): Prisma.PrismaPromise, T, "findMany", GlobalOmitOptions> | Null> days = {}>(args?: Prisma.Subset>): Prisma.PrismaPromise, T, "findMany", GlobalOmitOptions> | Null> journey_entries = {}>(args?: Prisma.Subset>): Prisma.PrismaPromise, T, "findMany", GlobalOmitOptions> | Null> journey_trips = {}>(args?: Prisma.Subset>): Prisma.PrismaPromise, T, "findMany", GlobalOmitOptions> | Null> packing_bags = {}>(args?: Prisma.Subset>): Prisma.PrismaPromise, T, "findMany", GlobalOmitOptions> | Null> packing_category_assignees = {}>(args?: Prisma.Subset>): Prisma.PrismaPromise, T, "findMany", GlobalOmitOptions> | Null> packing_items = {}>(args?: Prisma.Subset>): Prisma.PrismaPromise, T, "findMany", GlobalOmitOptions> | Null> photos = {}>(args?: Prisma.Subset>): Prisma.PrismaPromise, T, "findMany", GlobalOmitOptions> | Null> places = {}>(args?: Prisma.Subset>): Prisma.PrismaPromise, T, "findMany", GlobalOmitOptions> | Null> reservations = {}>(args?: Prisma.Subset>): Prisma.PrismaPromise, T, "findMany", GlobalOmitOptions> | Null> share_tokens = {}>(args?: Prisma.Subset>): Prisma.PrismaPromise, T, "findMany", GlobalOmitOptions> | Null> todo_category_assignees = {}>(args?: Prisma.Subset>): Prisma.PrismaPromise, T, "findMany", GlobalOmitOptions> | Null> todo_items = {}>(args?: Prisma.Subset>): Prisma.PrismaPromise, T, "findMany", GlobalOmitOptions> | Null> trip_album_links = {}>(args?: Prisma.Subset>): Prisma.PrismaPromise, T, "findMany", GlobalOmitOptions> | Null> trip_files = {}>(args?: Prisma.Subset>): Prisma.PrismaPromise, T, "findMany", GlobalOmitOptions> | Null> trip_members = {}>(args?: Prisma.Subset>): Prisma.PrismaPromise, T, "findMany", GlobalOmitOptions> | Null> trip_photos = {}>(args?: Prisma.Subset>): Prisma.PrismaPromise, T, "findMany", GlobalOmitOptions> | Null> users = {}>(args?: Prisma.Subset>): Prisma.Prisma__usersClient, 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 trips model */ export interface tripsFieldRefs { readonly id: Prisma.FieldRef<"trips", 'Int'> readonly user_id: Prisma.FieldRef<"trips", 'Int'> readonly title: Prisma.FieldRef<"trips", 'String'> readonly description: Prisma.FieldRef<"trips", 'String'> readonly start_date: Prisma.FieldRef<"trips", 'String'> readonly end_date: Prisma.FieldRef<"trips", 'String'> readonly currency: Prisma.FieldRef<"trips", 'String'> readonly cover_image: Prisma.FieldRef<"trips", 'String'> readonly is_archived: Prisma.FieldRef<"trips", 'Int'> readonly reminder_days: Prisma.FieldRef<"trips", 'Int'> readonly created_at: Prisma.FieldRef<"trips", 'DateTime'> readonly updated_at: Prisma.FieldRef<"trips", 'DateTime'> } // Custom InputTypes /** * trips findUnique */ export type tripsFindUniqueArgs = { /** * Select specific fields to fetch from the trips */ select?: Prisma.tripsSelect | null /** * Omit specific fields from the trips */ omit?: Prisma.tripsOmit | null /** * Choose, which related nodes to fetch as well */ include?: Prisma.tripsInclude | null /** * Filter, which trips to fetch. */ where: Prisma.tripsWhereUniqueInput } /** * trips findUniqueOrThrow */ export type tripsFindUniqueOrThrowArgs = { /** * Select specific fields to fetch from the trips */ select?: Prisma.tripsSelect | null /** * Omit specific fields from the trips */ omit?: Prisma.tripsOmit | null /** * Choose, which related nodes to fetch as well */ include?: Prisma.tripsInclude | null /** * Filter, which trips to fetch. */ where: Prisma.tripsWhereUniqueInput } /** * trips findFirst */ export type tripsFindFirstArgs = { /** * Select specific fields to fetch from the trips */ select?: Prisma.tripsSelect | null /** * Omit specific fields from the trips */ omit?: Prisma.tripsOmit | null /** * Choose, which related nodes to fetch as well */ include?: Prisma.tripsInclude | null /** * Filter, which trips to fetch. */ where?: Prisma.tripsWhereInput /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs} * * Determine the order of trips to fetch. */ orderBy?: Prisma.tripsOrderByWithRelationInput | Prisma.tripsOrderByWithRelationInput[] /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs} * * Sets the position for searching for trips. */ cursor?: Prisma.tripsWhereUniqueInput /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs} * * Take `±n` trips 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` trips. */ skip?: number /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/distinct Distinct Docs} * * Filter by unique combinations of trips. */ distinct?: Prisma.TripsScalarFieldEnum | Prisma.TripsScalarFieldEnum[] } /** * trips findFirstOrThrow */ export type tripsFindFirstOrThrowArgs = { /** * Select specific fields to fetch from the trips */ select?: Prisma.tripsSelect | null /** * Omit specific fields from the trips */ omit?: Prisma.tripsOmit | null /** * Choose, which related nodes to fetch as well */ include?: Prisma.tripsInclude | null /** * Filter, which trips to fetch. */ where?: Prisma.tripsWhereInput /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs} * * Determine the order of trips to fetch. */ orderBy?: Prisma.tripsOrderByWithRelationInput | Prisma.tripsOrderByWithRelationInput[] /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs} * * Sets the position for searching for trips. */ cursor?: Prisma.tripsWhereUniqueInput /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs} * * Take `±n` trips 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` trips. */ skip?: number /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/distinct Distinct Docs} * * Filter by unique combinations of trips. */ distinct?: Prisma.TripsScalarFieldEnum | Prisma.TripsScalarFieldEnum[] } /** * trips findMany */ export type tripsFindManyArgs = { /** * Select specific fields to fetch from the trips */ select?: Prisma.tripsSelect | null /** * Omit specific fields from the trips */ omit?: Prisma.tripsOmit | null /** * Choose, which related nodes to fetch as well */ include?: Prisma.tripsInclude | null /** * Filter, which trips to fetch. */ where?: Prisma.tripsWhereInput /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs} * * Determine the order of trips to fetch. */ orderBy?: Prisma.tripsOrderByWithRelationInput | Prisma.tripsOrderByWithRelationInput[] /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs} * * Sets the position for listing trips. */ cursor?: Prisma.tripsWhereUniqueInput /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs} * * Take `±n` trips 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` trips. */ skip?: number /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/distinct Distinct Docs} * * Filter by unique combinations of trips. */ distinct?: Prisma.TripsScalarFieldEnum | Prisma.TripsScalarFieldEnum[] } /** * trips create */ export type tripsCreateArgs = { /** * Select specific fields to fetch from the trips */ select?: Prisma.tripsSelect | null /** * Omit specific fields from the trips */ omit?: Prisma.tripsOmit | null /** * Choose, which related nodes to fetch as well */ include?: Prisma.tripsInclude | null /** * The data needed to create a trips. */ data: Prisma.XOR } /** * trips createMany */ export type tripsCreateManyArgs = { /** * The data used to create many trips. */ data: Prisma.tripsCreateManyInput | Prisma.tripsCreateManyInput[] } /** * trips createManyAndReturn */ export type tripsCreateManyAndReturnArgs = { /** * Select specific fields to fetch from the trips */ select?: Prisma.tripsSelectCreateManyAndReturn | null /** * Omit specific fields from the trips */ omit?: Prisma.tripsOmit | null /** * The data used to create many trips. */ data: Prisma.tripsCreateManyInput | Prisma.tripsCreateManyInput[] /** * Choose, which related nodes to fetch as well */ include?: Prisma.tripsIncludeCreateManyAndReturn | null } /** * trips update */ export type tripsUpdateArgs = { /** * Select specific fields to fetch from the trips */ select?: Prisma.tripsSelect | null /** * Omit specific fields from the trips */ omit?: Prisma.tripsOmit | null /** * Choose, which related nodes to fetch as well */ include?: Prisma.tripsInclude | null /** * The data needed to update a trips. */ data: Prisma.XOR /** * Choose, which trips to update. */ where: Prisma.tripsWhereUniqueInput } /** * trips updateMany */ export type tripsUpdateManyArgs = { /** * The data used to update trips. */ data: Prisma.XOR /** * Filter which trips to update */ where?: Prisma.tripsWhereInput /** * Limit how many trips to update. */ limit?: number } /** * trips updateManyAndReturn */ export type tripsUpdateManyAndReturnArgs = { /** * Select specific fields to fetch from the trips */ select?: Prisma.tripsSelectUpdateManyAndReturn | null /** * Omit specific fields from the trips */ omit?: Prisma.tripsOmit | null /** * The data used to update trips. */ data: Prisma.XOR /** * Filter which trips to update */ where?: Prisma.tripsWhereInput /** * Limit how many trips to update. */ limit?: number /** * Choose, which related nodes to fetch as well */ include?: Prisma.tripsIncludeUpdateManyAndReturn | null } /** * trips upsert */ export type tripsUpsertArgs = { /** * Select specific fields to fetch from the trips */ select?: Prisma.tripsSelect | null /** * Omit specific fields from the trips */ omit?: Prisma.tripsOmit | null /** * Choose, which related nodes to fetch as well */ include?: Prisma.tripsInclude | null /** * The filter to search for the trips to update in case it exists. */ where: Prisma.tripsWhereUniqueInput /** * In case the trips found by the `where` argument doesn't exist, create a new trips with this data. */ create: Prisma.XOR /** * In case the trips was found with the provided `where` argument, update it with this data. */ update: Prisma.XOR } /** * trips delete */ export type tripsDeleteArgs = { /** * Select specific fields to fetch from the trips */ select?: Prisma.tripsSelect | null /** * Omit specific fields from the trips */ omit?: Prisma.tripsOmit | null /** * Choose, which related nodes to fetch as well */ include?: Prisma.tripsInclude | null /** * Filter which trips to delete. */ where: Prisma.tripsWhereUniqueInput } /** * trips deleteMany */ export type tripsDeleteManyArgs = { /** * Filter which trips to delete */ where?: Prisma.tripsWhereInput /** * Limit how many trips to delete. */ limit?: number } /** * trips.budget_category_order */ export type trips$budget_category_orderArgs = { /** * Select specific fields to fetch from the budget_category_order */ select?: Prisma.budget_category_orderSelect | null /** * Omit specific fields from the budget_category_order */ omit?: Prisma.budget_category_orderOmit | null /** * Choose, which related nodes to fetch as well */ include?: Prisma.budget_category_orderInclude | null where?: Prisma.budget_category_orderWhereInput orderBy?: Prisma.budget_category_orderOrderByWithRelationInput | Prisma.budget_category_orderOrderByWithRelationInput[] cursor?: Prisma.budget_category_orderWhereUniqueInput take?: number skip?: number distinct?: Prisma.Budget_category_orderScalarFieldEnum | Prisma.Budget_category_orderScalarFieldEnum[] } /** * trips.budget_items */ export type trips$budget_itemsArgs = { /** * Select specific fields to fetch from the budget_items */ select?: Prisma.budget_itemsSelect | null /** * Omit specific fields from the budget_items */ omit?: Prisma.budget_itemsOmit | null /** * Choose, which related nodes to fetch as well */ include?: Prisma.budget_itemsInclude | null where?: Prisma.budget_itemsWhereInput orderBy?: Prisma.budget_itemsOrderByWithRelationInput | Prisma.budget_itemsOrderByWithRelationInput[] cursor?: Prisma.budget_itemsWhereUniqueInput take?: number skip?: number distinct?: Prisma.Budget_itemsScalarFieldEnum | Prisma.Budget_itemsScalarFieldEnum[] } /** * trips.collab_messages */ export type trips$collab_messagesArgs = { /** * Select specific fields to fetch from the collab_messages */ select?: Prisma.collab_messagesSelect | null /** * Omit specific fields from the collab_messages */ omit?: Prisma.collab_messagesOmit | null /** * Choose, which related nodes to fetch as well */ include?: Prisma.collab_messagesInclude | null where?: Prisma.collab_messagesWhereInput orderBy?: Prisma.collab_messagesOrderByWithRelationInput | Prisma.collab_messagesOrderByWithRelationInput[] cursor?: Prisma.collab_messagesWhereUniqueInput take?: number skip?: number distinct?: Prisma.Collab_messagesScalarFieldEnum | Prisma.Collab_messagesScalarFieldEnum[] } /** * trips.collab_notes */ export type trips$collab_notesArgs = { /** * Select specific fields to fetch from the collab_notes */ select?: Prisma.collab_notesSelect | null /** * Omit specific fields from the collab_notes */ omit?: Prisma.collab_notesOmit | null /** * Choose, which related nodes to fetch as well */ include?: Prisma.collab_notesInclude | null where?: Prisma.collab_notesWhereInput orderBy?: Prisma.collab_notesOrderByWithRelationInput | Prisma.collab_notesOrderByWithRelationInput[] cursor?: Prisma.collab_notesWhereUniqueInput take?: number skip?: number distinct?: Prisma.Collab_notesScalarFieldEnum | Prisma.Collab_notesScalarFieldEnum[] } /** * trips.collab_polls */ export type trips$collab_pollsArgs = { /** * Select specific fields to fetch from the collab_polls */ select?: Prisma.collab_pollsSelect | null /** * Omit specific fields from the collab_polls */ omit?: Prisma.collab_pollsOmit | null /** * Choose, which related nodes to fetch as well */ include?: Prisma.collab_pollsInclude | null where?: Prisma.collab_pollsWhereInput orderBy?: Prisma.collab_pollsOrderByWithRelationInput | Prisma.collab_pollsOrderByWithRelationInput[] cursor?: Prisma.collab_pollsWhereUniqueInput take?: number skip?: number distinct?: Prisma.Collab_pollsScalarFieldEnum | Prisma.Collab_pollsScalarFieldEnum[] } /** * trips.day_accommodations */ export type trips$day_accommodationsArgs = { /** * Select specific fields to fetch from the day_accommodations */ select?: Prisma.day_accommodationsSelect | null /** * Omit specific fields from the day_accommodations */ omit?: Prisma.day_accommodationsOmit | null /** * Choose, which related nodes to fetch as well */ include?: Prisma.day_accommodationsInclude | null where?: Prisma.day_accommodationsWhereInput orderBy?: Prisma.day_accommodationsOrderByWithRelationInput | Prisma.day_accommodationsOrderByWithRelationInput[] cursor?: Prisma.day_accommodationsWhereUniqueInput take?: number skip?: number distinct?: Prisma.Day_accommodationsScalarFieldEnum | Prisma.Day_accommodationsScalarFieldEnum[] } /** * trips.day_notes */ export type trips$day_notesArgs = { /** * Select specific fields to fetch from the day_notes */ select?: Prisma.day_notesSelect | null /** * Omit specific fields from the day_notes */ omit?: Prisma.day_notesOmit | null /** * Choose, which related nodes to fetch as well */ include?: Prisma.day_notesInclude | null where?: Prisma.day_notesWhereInput orderBy?: Prisma.day_notesOrderByWithRelationInput | Prisma.day_notesOrderByWithRelationInput[] cursor?: Prisma.day_notesWhereUniqueInput take?: number skip?: number distinct?: Prisma.Day_notesScalarFieldEnum | Prisma.Day_notesScalarFieldEnum[] } /** * trips.days */ export type trips$daysArgs = { /** * Select specific fields to fetch from the days */ select?: Prisma.daysSelect | null /** * Omit specific fields from the days */ omit?: Prisma.daysOmit | null /** * Choose, which related nodes to fetch as well */ include?: Prisma.daysInclude | null where?: Prisma.daysWhereInput orderBy?: Prisma.daysOrderByWithRelationInput | Prisma.daysOrderByWithRelationInput[] cursor?: Prisma.daysWhereUniqueInput take?: number skip?: number distinct?: Prisma.DaysScalarFieldEnum | Prisma.DaysScalarFieldEnum[] } /** * trips.journey_entries */ export type trips$journey_entriesArgs = { /** * Select specific fields to fetch from the journey_entries */ select?: Prisma.journey_entriesSelect | null /** * Omit specific fields from the journey_entries */ omit?: Prisma.journey_entriesOmit | null /** * Choose, which related nodes to fetch as well */ include?: Prisma.journey_entriesInclude | null where?: Prisma.journey_entriesWhereInput orderBy?: Prisma.journey_entriesOrderByWithRelationInput | Prisma.journey_entriesOrderByWithRelationInput[] cursor?: Prisma.journey_entriesWhereUniqueInput take?: number skip?: number distinct?: Prisma.Journey_entriesScalarFieldEnum | Prisma.Journey_entriesScalarFieldEnum[] } /** * trips.journey_trips */ export type trips$journey_tripsArgs = { /** * Select specific fields to fetch from the journey_trips */ select?: Prisma.journey_tripsSelect | null /** * Omit specific fields from the journey_trips */ omit?: Prisma.journey_tripsOmit | null /** * Choose, which related nodes to fetch as well */ include?: Prisma.journey_tripsInclude | null where?: Prisma.journey_tripsWhereInput orderBy?: Prisma.journey_tripsOrderByWithRelationInput | Prisma.journey_tripsOrderByWithRelationInput[] cursor?: Prisma.journey_tripsWhereUniqueInput take?: number skip?: number distinct?: Prisma.Journey_tripsScalarFieldEnum | Prisma.Journey_tripsScalarFieldEnum[] } /** * trips.packing_bags */ export type trips$packing_bagsArgs = { /** * Select specific fields to fetch from the packing_bags */ select?: Prisma.packing_bagsSelect | null /** * Omit specific fields from the packing_bags */ omit?: Prisma.packing_bagsOmit | null /** * Choose, which related nodes to fetch as well */ include?: Prisma.packing_bagsInclude | null where?: Prisma.packing_bagsWhereInput orderBy?: Prisma.packing_bagsOrderByWithRelationInput | Prisma.packing_bagsOrderByWithRelationInput[] cursor?: Prisma.packing_bagsWhereUniqueInput take?: number skip?: number distinct?: Prisma.Packing_bagsScalarFieldEnum | Prisma.Packing_bagsScalarFieldEnum[] } /** * trips.packing_category_assignees */ export type trips$packing_category_assigneesArgs = { /** * Select specific fields to fetch from the packing_category_assignees */ select?: Prisma.packing_category_assigneesSelect | null /** * Omit specific fields from the packing_category_assignees */ omit?: Prisma.packing_category_assigneesOmit | null /** * Choose, which related nodes to fetch as well */ include?: Prisma.packing_category_assigneesInclude | null where?: Prisma.packing_category_assigneesWhereInput orderBy?: Prisma.packing_category_assigneesOrderByWithRelationInput | Prisma.packing_category_assigneesOrderByWithRelationInput[] cursor?: Prisma.packing_category_assigneesWhereUniqueInput take?: number skip?: number distinct?: Prisma.Packing_category_assigneesScalarFieldEnum | Prisma.Packing_category_assigneesScalarFieldEnum[] } /** * trips.packing_items */ export type trips$packing_itemsArgs = { /** * Select specific fields to fetch from the packing_items */ select?: Prisma.packing_itemsSelect | null /** * Omit specific fields from the packing_items */ omit?: Prisma.packing_itemsOmit | null /** * Choose, which related nodes to fetch as well */ include?: Prisma.packing_itemsInclude | null where?: Prisma.packing_itemsWhereInput orderBy?: Prisma.packing_itemsOrderByWithRelationInput | Prisma.packing_itemsOrderByWithRelationInput[] cursor?: Prisma.packing_itemsWhereUniqueInput take?: number skip?: number distinct?: Prisma.Packing_itemsScalarFieldEnum | Prisma.Packing_itemsScalarFieldEnum[] } /** * trips.photos */ export type trips$photosArgs = { /** * Select specific fields to fetch from the photos */ select?: Prisma.photosSelect | null /** * Omit specific fields from the photos */ omit?: Prisma.photosOmit | null /** * Choose, which related nodes to fetch as well */ include?: Prisma.photosInclude | null where?: Prisma.photosWhereInput orderBy?: Prisma.photosOrderByWithRelationInput | Prisma.photosOrderByWithRelationInput[] cursor?: Prisma.photosWhereUniqueInput take?: number skip?: number distinct?: Prisma.PhotosScalarFieldEnum | Prisma.PhotosScalarFieldEnum[] } /** * trips.places */ export type trips$placesArgs = { /** * Select specific fields to fetch from the places */ select?: Prisma.placesSelect | null /** * Omit specific fields from the places */ omit?: Prisma.placesOmit | null /** * Choose, which related nodes to fetch as well */ include?: Prisma.placesInclude | null where?: Prisma.placesWhereInput orderBy?: Prisma.placesOrderByWithRelationInput | Prisma.placesOrderByWithRelationInput[] cursor?: Prisma.placesWhereUniqueInput take?: number skip?: number distinct?: Prisma.PlacesScalarFieldEnum | Prisma.PlacesScalarFieldEnum[] } /** * trips.reservations */ export type trips$reservationsArgs = { /** * Select specific fields to fetch from the reservations */ select?: Prisma.reservationsSelect | null /** * Omit specific fields from the reservations */ omit?: Prisma.reservationsOmit | null /** * Choose, which related nodes to fetch as well */ include?: Prisma.reservationsInclude | null where?: Prisma.reservationsWhereInput orderBy?: Prisma.reservationsOrderByWithRelationInput | Prisma.reservationsOrderByWithRelationInput[] cursor?: Prisma.reservationsWhereUniqueInput take?: number skip?: number distinct?: Prisma.ReservationsScalarFieldEnum | Prisma.ReservationsScalarFieldEnum[] } /** * trips.share_tokens */ export type trips$share_tokensArgs = { /** * Select specific fields to fetch from the share_tokens */ select?: Prisma.share_tokensSelect | null /** * Omit specific fields from the share_tokens */ omit?: Prisma.share_tokensOmit | null /** * Choose, which related nodes to fetch as well */ include?: Prisma.share_tokensInclude | null where?: Prisma.share_tokensWhereInput orderBy?: Prisma.share_tokensOrderByWithRelationInput | Prisma.share_tokensOrderByWithRelationInput[] cursor?: Prisma.share_tokensWhereUniqueInput take?: number skip?: number distinct?: Prisma.Share_tokensScalarFieldEnum | Prisma.Share_tokensScalarFieldEnum[] } /** * trips.todo_category_assignees */ export type trips$todo_category_assigneesArgs = { /** * Select specific fields to fetch from the todo_category_assignees */ select?: Prisma.todo_category_assigneesSelect | null /** * Omit specific fields from the todo_category_assignees */ omit?: Prisma.todo_category_assigneesOmit | null /** * Choose, which related nodes to fetch as well */ include?: Prisma.todo_category_assigneesInclude | null where?: Prisma.todo_category_assigneesWhereInput orderBy?: Prisma.todo_category_assigneesOrderByWithRelationInput | Prisma.todo_category_assigneesOrderByWithRelationInput[] cursor?: Prisma.todo_category_assigneesWhereUniqueInput take?: number skip?: number distinct?: Prisma.Todo_category_assigneesScalarFieldEnum | Prisma.Todo_category_assigneesScalarFieldEnum[] } /** * trips.todo_items */ export type trips$todo_itemsArgs = { /** * Select specific fields to fetch from the todo_items */ select?: Prisma.todo_itemsSelect | null /** * Omit specific fields from the todo_items */ omit?: Prisma.todo_itemsOmit | null /** * Choose, which related nodes to fetch as well */ include?: Prisma.todo_itemsInclude | null where?: Prisma.todo_itemsWhereInput orderBy?: Prisma.todo_itemsOrderByWithRelationInput | Prisma.todo_itemsOrderByWithRelationInput[] cursor?: Prisma.todo_itemsWhereUniqueInput take?: number skip?: number distinct?: Prisma.Todo_itemsScalarFieldEnum | Prisma.Todo_itemsScalarFieldEnum[] } /** * trips.trip_album_links */ export type trips$trip_album_linksArgs = { /** * Select specific fields to fetch from the trip_album_links */ select?: Prisma.trip_album_linksSelect | null /** * Omit specific fields from the trip_album_links */ omit?: Prisma.trip_album_linksOmit | null /** * Choose, which related nodes to fetch as well */ include?: Prisma.trip_album_linksInclude | null where?: Prisma.trip_album_linksWhereInput orderBy?: Prisma.trip_album_linksOrderByWithRelationInput | Prisma.trip_album_linksOrderByWithRelationInput[] cursor?: Prisma.trip_album_linksWhereUniqueInput take?: number skip?: number distinct?: Prisma.Trip_album_linksScalarFieldEnum | Prisma.Trip_album_linksScalarFieldEnum[] } /** * trips.trip_files */ export type trips$trip_filesArgs = { /** * Select specific fields to fetch from the trip_files */ select?: Prisma.trip_filesSelect | null /** * Omit specific fields from the trip_files */ omit?: Prisma.trip_filesOmit | null /** * Choose, which related nodes to fetch as well */ include?: Prisma.trip_filesInclude | null where?: Prisma.trip_filesWhereInput orderBy?: Prisma.trip_filesOrderByWithRelationInput | Prisma.trip_filesOrderByWithRelationInput[] cursor?: Prisma.trip_filesWhereUniqueInput take?: number skip?: number distinct?: Prisma.Trip_filesScalarFieldEnum | Prisma.Trip_filesScalarFieldEnum[] } /** * trips.trip_members */ export type trips$trip_membersArgs = { /** * Select specific fields to fetch from the trip_members */ select?: Prisma.trip_membersSelect | null /** * Omit specific fields from the trip_members */ omit?: Prisma.trip_membersOmit | null /** * Choose, which related nodes to fetch as well */ include?: Prisma.trip_membersInclude | null where?: Prisma.trip_membersWhereInput orderBy?: Prisma.trip_membersOrderByWithRelationInput | Prisma.trip_membersOrderByWithRelationInput[] cursor?: Prisma.trip_membersWhereUniqueInput take?: number skip?: number distinct?: Prisma.Trip_membersScalarFieldEnum | Prisma.Trip_membersScalarFieldEnum[] } /** * trips.trip_photos */ export type trips$trip_photosArgs = { /** * Select specific fields to fetch from the trip_photos */ select?: Prisma.trip_photosSelect | null /** * Omit specific fields from the trip_photos */ omit?: Prisma.trip_photosOmit | null /** * Choose, which related nodes to fetch as well */ include?: Prisma.trip_photosInclude | null where?: Prisma.trip_photosWhereInput orderBy?: Prisma.trip_photosOrderByWithRelationInput | Prisma.trip_photosOrderByWithRelationInput[] cursor?: Prisma.trip_photosWhereUniqueInput take?: number skip?: number distinct?: Prisma.Trip_photosScalarFieldEnum | Prisma.Trip_photosScalarFieldEnum[] } /** * trips without action */ export type tripsDefaultArgs = { /** * Select specific fields to fetch from the trips */ select?: Prisma.tripsSelect | null /** * Omit specific fields from the trips */ omit?: Prisma.tripsOmit | null /** * Choose, which related nodes to fetch as well */ include?: Prisma.tripsInclude | null }