expo-backend-types 0.34.0-EXPO-319-ver-eventos-disponibles.1 → 0.34.0-EXPO-319-ver-eventos-disponibles.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -2208,6 +2208,7 @@ export namespace Prisma {
2208
2208
  comments: number
2209
2209
  messages: number
2210
2210
  tags: number
2211
+ Ticket: number
2211
2212
  }
2212
2213
 
2213
2214
  export type ProfileCountOutputTypeSelect<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
@@ -2215,6 +2216,7 @@ export namespace Prisma {
2215
2216
  comments?: boolean | ProfileCountOutputTypeCountCommentsArgs
2216
2217
  messages?: boolean | ProfileCountOutputTypeCountMessagesArgs
2217
2218
  tags?: boolean | ProfileCountOutputTypeCountTagsArgs
2219
+ Ticket?: boolean | ProfileCountOutputTypeCountTicketArgs
2218
2220
  }
2219
2221
 
2220
2222
  // Custom InputTypes
@@ -2256,6 +2258,13 @@ export namespace Prisma {
2256
2258
  where?: TagWhereInput
2257
2259
  }
2258
2260
 
2261
+ /**
2262
+ * ProfileCountOutputType without action
2263
+ */
2264
+ export type ProfileCountOutputTypeCountTicketArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
2265
+ where?: TicketWhereInput
2266
+ }
2267
+
2259
2268
 
2260
2269
  /**
2261
2270
  * Count Type LocationCountOutputType
@@ -4012,6 +4021,7 @@ export namespace Prisma {
4012
4021
  tags?: boolean | Profile$tagsArgs<ExtArgs>
4013
4022
  birthLocation?: boolean | Profile$birthLocationArgs<ExtArgs>
4014
4023
  residenceLocation?: boolean | Profile$residenceLocationArgs<ExtArgs>
4024
+ Ticket?: boolean | Profile$TicketArgs<ExtArgs>
4015
4025
  _count?: boolean | ProfileCountOutputTypeDefaultArgs<ExtArgs>
4016
4026
  }, ExtArgs["result"]["profile"]>
4017
4027
 
@@ -4105,6 +4115,7 @@ export namespace Prisma {
4105
4115
  tags?: boolean | Profile$tagsArgs<ExtArgs>
4106
4116
  birthLocation?: boolean | Profile$birthLocationArgs<ExtArgs>
4107
4117
  residenceLocation?: boolean | Profile$residenceLocationArgs<ExtArgs>
4118
+ Ticket?: boolean | Profile$TicketArgs<ExtArgs>
4108
4119
  _count?: boolean | ProfileCountOutputTypeDefaultArgs<ExtArgs>
4109
4120
  }
4110
4121
  export type ProfileIncludeCreateManyAndReturn<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
@@ -4125,6 +4136,7 @@ export namespace Prisma {
4125
4136
  tags: Prisma.$TagPayload<ExtArgs>[]
4126
4137
  birthLocation: Prisma.$LocationPayload<ExtArgs> | null
4127
4138
  residenceLocation: Prisma.$LocationPayload<ExtArgs> | null
4139
+ Ticket: Prisma.$TicketPayload<ExtArgs>[]
4128
4140
  }
4129
4141
  scalars: $Extensions.GetPayloadResult<{
4130
4142
  id: string
@@ -4550,6 +4562,7 @@ export namespace Prisma {
4550
4562
  tags<T extends Profile$tagsArgs<ExtArgs> = {}>(args?: Subset<T, Profile$tagsArgs<ExtArgs>>): Prisma.PrismaPromise<$Result.GetResult<Prisma.$TagPayload<ExtArgs>, T, "findMany", ClientOptions> | Null>
4551
4563
  birthLocation<T extends Profile$birthLocationArgs<ExtArgs> = {}>(args?: Subset<T, Profile$birthLocationArgs<ExtArgs>>): Prisma__LocationClient<$Result.GetResult<Prisma.$LocationPayload<ExtArgs>, T, "findUniqueOrThrow", ClientOptions> | null, null, ExtArgs, ClientOptions>
4552
4564
  residenceLocation<T extends Profile$residenceLocationArgs<ExtArgs> = {}>(args?: Subset<T, Profile$residenceLocationArgs<ExtArgs>>): Prisma__LocationClient<$Result.GetResult<Prisma.$LocationPayload<ExtArgs>, T, "findUniqueOrThrow", ClientOptions> | null, null, ExtArgs, ClientOptions>
4565
+ Ticket<T extends Profile$TicketArgs<ExtArgs> = {}>(args?: Subset<T, Profile$TicketArgs<ExtArgs>>): Prisma.PrismaPromise<$Result.GetResult<Prisma.$TicketPayload<ExtArgs>, T, "findMany", ClientOptions> | Null>
4553
4566
  /**
4554
4567
  * Attaches callbacks for the resolution and/or rejection of the Promise.
4555
4568
  * @param onfulfilled The callback to execute when the Promise is resolved.
@@ -5131,6 +5144,30 @@ export namespace Prisma {
5131
5144
  where?: LocationWhereInput
5132
5145
  }
5133
5146
 
5147
+ /**
5148
+ * Profile.Ticket
5149
+ */
5150
+ export type Profile$TicketArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
5151
+ /**
5152
+ * Select specific fields to fetch from the Ticket
5153
+ */
5154
+ select?: TicketSelect<ExtArgs> | null
5155
+ /**
5156
+ * Omit specific fields from the Ticket
5157
+ */
5158
+ omit?: TicketOmit<ExtArgs> | null
5159
+ /**
5160
+ * Choose, which related nodes to fetch as well
5161
+ */
5162
+ include?: TicketInclude<ExtArgs> | null
5163
+ where?: TicketWhereInput
5164
+ orderBy?: TicketOrderByWithRelationInput | TicketOrderByWithRelationInput[]
5165
+ cursor?: TicketWhereUniqueInput
5166
+ take?: number
5167
+ skip?: number
5168
+ distinct?: TicketScalarFieldEnum | TicketScalarFieldEnum[]
5169
+ }
5170
+
5134
5171
  /**
5135
5172
  * Profile without action
5136
5173
  */
@@ -15368,6 +15405,7 @@ export namespace Prisma {
15368
15405
  status: $Enums.TicketStatus | null
15369
15406
  fullName: string | null
15370
15407
  mail: string | null
15408
+ profileId: string | null
15371
15409
  created_at: Date | null
15372
15410
  updated_at: Date | null
15373
15411
  }
@@ -15379,6 +15417,7 @@ export namespace Prisma {
15379
15417
  status: $Enums.TicketStatus | null
15380
15418
  fullName: string | null
15381
15419
  mail: string | null
15420
+ profileId: string | null
15382
15421
  created_at: Date | null
15383
15422
  updated_at: Date | null
15384
15423
  }
@@ -15390,6 +15429,7 @@ export namespace Prisma {
15390
15429
  status: number
15391
15430
  fullName: number
15392
15431
  mail: number
15432
+ profileId: number
15393
15433
  created_at: number
15394
15434
  updated_at: number
15395
15435
  _all: number
@@ -15403,6 +15443,7 @@ export namespace Prisma {
15403
15443
  status?: true
15404
15444
  fullName?: true
15405
15445
  mail?: true
15446
+ profileId?: true
15406
15447
  created_at?: true
15407
15448
  updated_at?: true
15408
15449
  }
@@ -15414,6 +15455,7 @@ export namespace Prisma {
15414
15455
  status?: true
15415
15456
  fullName?: true
15416
15457
  mail?: true
15458
+ profileId?: true
15417
15459
  created_at?: true
15418
15460
  updated_at?: true
15419
15461
  }
@@ -15425,6 +15467,7 @@ export namespace Prisma {
15425
15467
  status?: true
15426
15468
  fullName?: true
15427
15469
  mail?: true
15470
+ profileId?: true
15428
15471
  created_at?: true
15429
15472
  updated_at?: true
15430
15473
  _all?: true
@@ -15509,6 +15552,7 @@ export namespace Prisma {
15509
15552
  status: $Enums.TicketStatus
15510
15553
  fullName: string
15511
15554
  mail: string
15555
+ profileId: string | null
15512
15556
  created_at: Date
15513
15557
  updated_at: Date
15514
15558
  _count: TicketCountAggregateOutputType | null
@@ -15537,9 +15581,11 @@ export namespace Prisma {
15537
15581
  status?: boolean
15538
15582
  fullName?: boolean
15539
15583
  mail?: boolean
15584
+ profileId?: boolean
15540
15585
  created_at?: boolean
15541
15586
  updated_at?: boolean
15542
15587
  event?: boolean | EventDefaultArgs<ExtArgs>
15588
+ profile?: boolean | Ticket$profileArgs<ExtArgs>
15543
15589
  }, ExtArgs["result"]["ticket"]>
15544
15590
 
15545
15591
  export type TicketSelectCreateManyAndReturn<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetSelect<{
@@ -15549,9 +15595,11 @@ export namespace Prisma {
15549
15595
  status?: boolean
15550
15596
  fullName?: boolean
15551
15597
  mail?: boolean
15598
+ profileId?: boolean
15552
15599
  created_at?: boolean
15553
15600
  updated_at?: boolean
15554
15601
  event?: boolean | EventDefaultArgs<ExtArgs>
15602
+ profile?: boolean | Ticket$profileArgs<ExtArgs>
15555
15603
  }, ExtArgs["result"]["ticket"]>
15556
15604
 
15557
15605
  export type TicketSelectUpdateManyAndReturn<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetSelect<{
@@ -15561,9 +15609,11 @@ export namespace Prisma {
15561
15609
  status?: boolean
15562
15610
  fullName?: boolean
15563
15611
  mail?: boolean
15612
+ profileId?: boolean
15564
15613
  created_at?: boolean
15565
15614
  updated_at?: boolean
15566
15615
  event?: boolean | EventDefaultArgs<ExtArgs>
15616
+ profile?: boolean | Ticket$profileArgs<ExtArgs>
15567
15617
  }, ExtArgs["result"]["ticket"]>
15568
15618
 
15569
15619
  export type TicketSelectScalar = {
@@ -15573,25 +15623,30 @@ export namespace Prisma {
15573
15623
  status?: boolean
15574
15624
  fullName?: boolean
15575
15625
  mail?: boolean
15626
+ profileId?: boolean
15576
15627
  created_at?: boolean
15577
15628
  updated_at?: boolean
15578
15629
  }
15579
15630
 
15580
- export type TicketOmit<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetOmit<"id" | "eventId" | "type" | "status" | "fullName" | "mail" | "created_at" | "updated_at", ExtArgs["result"]["ticket"]>
15631
+ export type TicketOmit<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetOmit<"id" | "eventId" | "type" | "status" | "fullName" | "mail" | "profileId" | "created_at" | "updated_at", ExtArgs["result"]["ticket"]>
15581
15632
  export type TicketInclude<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
15582
15633
  event?: boolean | EventDefaultArgs<ExtArgs>
15634
+ profile?: boolean | Ticket$profileArgs<ExtArgs>
15583
15635
  }
15584
15636
  export type TicketIncludeCreateManyAndReturn<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
15585
15637
  event?: boolean | EventDefaultArgs<ExtArgs>
15638
+ profile?: boolean | Ticket$profileArgs<ExtArgs>
15586
15639
  }
15587
15640
  export type TicketIncludeUpdateManyAndReturn<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
15588
15641
  event?: boolean | EventDefaultArgs<ExtArgs>
15642
+ profile?: boolean | Ticket$profileArgs<ExtArgs>
15589
15643
  }
15590
15644
 
15591
15645
  export type $TicketPayload<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
15592
15646
  name: "Ticket"
15593
15647
  objects: {
15594
15648
  event: Prisma.$EventPayload<ExtArgs>
15649
+ profile: Prisma.$ProfilePayload<ExtArgs> | null
15595
15650
  }
15596
15651
  scalars: $Extensions.GetPayloadResult<{
15597
15652
  id: string
@@ -15600,6 +15655,7 @@ export namespace Prisma {
15600
15655
  status: $Enums.TicketStatus
15601
15656
  fullName: string
15602
15657
  mail: string
15658
+ profileId: string | null
15603
15659
  created_at: Date
15604
15660
  updated_at: Date
15605
15661
  }, ExtArgs["result"]["ticket"]>
@@ -15997,6 +16053,7 @@ export namespace Prisma {
15997
16053
  export interface Prisma__TicketClient<T, Null = never, ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs, ClientOptions = {}> extends Prisma.PrismaPromise<T> {
15998
16054
  readonly [Symbol.toStringTag]: "PrismaPromise"
15999
16055
  event<T extends EventDefaultArgs<ExtArgs> = {}>(args?: Subset<T, EventDefaultArgs<ExtArgs>>): Prisma__EventClient<$Result.GetResult<Prisma.$EventPayload<ExtArgs>, T, "findUniqueOrThrow", ClientOptions> | Null, Null, ExtArgs, ClientOptions>
16056
+ profile<T extends Ticket$profileArgs<ExtArgs> = {}>(args?: Subset<T, Ticket$profileArgs<ExtArgs>>): Prisma__ProfileClient<$Result.GetResult<Prisma.$ProfilePayload<ExtArgs>, T, "findUniqueOrThrow", ClientOptions> | null, null, ExtArgs, ClientOptions>
16000
16057
  /**
16001
16058
  * Attaches callbacks for the resolution and/or rejection of the Promise.
16002
16059
  * @param onfulfilled The callback to execute when the Promise is resolved.
@@ -16032,6 +16089,7 @@ export namespace Prisma {
16032
16089
  readonly status: FieldRef<"Ticket", 'TicketStatus'>
16033
16090
  readonly fullName: FieldRef<"Ticket", 'String'>
16034
16091
  readonly mail: FieldRef<"Ticket", 'String'>
16092
+ readonly profileId: FieldRef<"Ticket", 'String'>
16035
16093
  readonly created_at: FieldRef<"Ticket", 'DateTime'>
16036
16094
  readonly updated_at: FieldRef<"Ticket", 'DateTime'>
16037
16095
  }
@@ -16429,6 +16487,25 @@ export namespace Prisma {
16429
16487
  limit?: number
16430
16488
  }
16431
16489
 
16490
+ /**
16491
+ * Ticket.profile
16492
+ */
16493
+ export type Ticket$profileArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
16494
+ /**
16495
+ * Select specific fields to fetch from the Profile
16496
+ */
16497
+ select?: ProfileSelect<ExtArgs> | null
16498
+ /**
16499
+ * Omit specific fields from the Profile
16500
+ */
16501
+ omit?: ProfileOmit<ExtArgs> | null
16502
+ /**
16503
+ * Choose, which related nodes to fetch as well
16504
+ */
16505
+ include?: ProfileInclude<ExtArgs> | null
16506
+ where?: ProfileWhereInput
16507
+ }
16508
+
16432
16509
  /**
16433
16510
  * Ticket without action
16434
16511
  */
@@ -18723,6 +18800,7 @@ export namespace Prisma {
18723
18800
  status: 'status',
18724
18801
  fullName: 'fullName',
18725
18802
  mail: 'mail',
18803
+ profileId: 'profileId',
18726
18804
  created_at: 'created_at',
18727
18805
  updated_at: 'updated_at'
18728
18806
  };
@@ -19087,6 +19165,7 @@ export namespace Prisma {
19087
19165
  tags?: TagListRelationFilter
19088
19166
  birthLocation?: XOR<LocationNullableScalarRelationFilter, LocationWhereInput> | null
19089
19167
  residenceLocation?: XOR<LocationNullableScalarRelationFilter, LocationWhereInput> | null
19168
+ Ticket?: TicketListRelationFilter
19090
19169
  }
19091
19170
 
19092
19171
  export type ProfileOrderByWithRelationInput = {
@@ -19119,6 +19198,7 @@ export namespace Prisma {
19119
19198
  tags?: TagOrderByRelationAggregateInput
19120
19199
  birthLocation?: LocationOrderByWithRelationInput
19121
19200
  residenceLocation?: LocationOrderByWithRelationInput
19201
+ Ticket?: TicketOrderByRelationAggregateInput
19122
19202
  }
19123
19203
 
19124
19204
  export type ProfileWhereUniqueInput = Prisma.AtLeast<{
@@ -19154,6 +19234,7 @@ export namespace Prisma {
19154
19234
  tags?: TagListRelationFilter
19155
19235
  birthLocation?: XOR<LocationNullableScalarRelationFilter, LocationWhereInput> | null
19156
19236
  residenceLocation?: XOR<LocationNullableScalarRelationFilter, LocationWhereInput> | null
19237
+ Ticket?: TicketListRelationFilter
19157
19238
  }, "id" | "username" | "phoneNumber" | "secondaryPhoneNumber">
19158
19239
 
19159
19240
  export type ProfileOrderByWithAggregationInput = {
@@ -19874,9 +19955,11 @@ export namespace Prisma {
19874
19955
  status?: EnumTicketStatusFilter<"Ticket"> | $Enums.TicketStatus
19875
19956
  fullName?: StringFilter<"Ticket"> | string
19876
19957
  mail?: StringFilter<"Ticket"> | string
19958
+ profileId?: StringNullableFilter<"Ticket"> | string | null
19877
19959
  created_at?: DateTimeFilter<"Ticket"> | Date | string
19878
19960
  updated_at?: DateTimeFilter<"Ticket"> | Date | string
19879
19961
  event?: XOR<EventScalarRelationFilter, EventWhereInput>
19962
+ profile?: XOR<ProfileNullableScalarRelationFilter, ProfileWhereInput> | null
19880
19963
  }
19881
19964
 
19882
19965
  export type TicketOrderByWithRelationInput = {
@@ -19886,9 +19969,11 @@ export namespace Prisma {
19886
19969
  status?: SortOrder
19887
19970
  fullName?: SortOrder
19888
19971
  mail?: SortOrder
19972
+ profileId?: SortOrderInput | SortOrder
19889
19973
  created_at?: SortOrder
19890
19974
  updated_at?: SortOrder
19891
19975
  event?: EventOrderByWithRelationInput
19976
+ profile?: ProfileOrderByWithRelationInput
19892
19977
  }
19893
19978
 
19894
19979
  export type TicketWhereUniqueInput = Prisma.AtLeast<{
@@ -19901,9 +19986,11 @@ export namespace Prisma {
19901
19986
  status?: EnumTicketStatusFilter<"Ticket"> | $Enums.TicketStatus
19902
19987
  fullName?: StringFilter<"Ticket"> | string
19903
19988
  mail?: StringFilter<"Ticket"> | string
19989
+ profileId?: StringNullableFilter<"Ticket"> | string | null
19904
19990
  created_at?: DateTimeFilter<"Ticket"> | Date | string
19905
19991
  updated_at?: DateTimeFilter<"Ticket"> | Date | string
19906
19992
  event?: XOR<EventScalarRelationFilter, EventWhereInput>
19993
+ profile?: XOR<ProfileNullableScalarRelationFilter, ProfileWhereInput> | null
19907
19994
  }, "id">
19908
19995
 
19909
19996
  export type TicketOrderByWithAggregationInput = {
@@ -19913,6 +20000,7 @@ export namespace Prisma {
19913
20000
  status?: SortOrder
19914
20001
  fullName?: SortOrder
19915
20002
  mail?: SortOrder
20003
+ profileId?: SortOrderInput | SortOrder
19916
20004
  created_at?: SortOrder
19917
20005
  updated_at?: SortOrder
19918
20006
  _count?: TicketCountOrderByAggregateInput
@@ -19930,6 +20018,7 @@ export namespace Prisma {
19930
20018
  status?: EnumTicketStatusWithAggregatesFilter<"Ticket"> | $Enums.TicketStatus
19931
20019
  fullName?: StringWithAggregatesFilter<"Ticket"> | string
19932
20020
  mail?: StringWithAggregatesFilter<"Ticket"> | string
20021
+ profileId?: StringNullableWithAggregatesFilter<"Ticket"> | string | null
19933
20022
  created_at?: DateTimeWithAggregatesFilter<"Ticket"> | Date | string
19934
20023
  updated_at?: DateTimeWithAggregatesFilter<"Ticket"> | Date | string
19935
20024
  }
@@ -20164,6 +20253,7 @@ export namespace Prisma {
20164
20253
  tags?: TagCreateNestedManyWithoutProfilesInput
20165
20254
  birthLocation?: LocationCreateNestedOneWithoutBirthProfilesInput
20166
20255
  residenceLocation?: LocationCreateNestedOneWithoutResidenceProfilesInput
20256
+ Ticket?: TicketCreateNestedManyWithoutProfileInput
20167
20257
  }
20168
20258
 
20169
20259
  export type ProfileUncheckedCreateInput = {
@@ -20194,6 +20284,7 @@ export namespace Prisma {
20194
20284
  comments?: CommentUncheckedCreateNestedManyWithoutProfileInput
20195
20285
  messages?: MessageUncheckedCreateNestedManyWithoutProfileInput
20196
20286
  tags?: TagUncheckedCreateNestedManyWithoutProfilesInput
20287
+ Ticket?: TicketUncheckedCreateNestedManyWithoutProfileInput
20197
20288
  }
20198
20289
 
20199
20290
  export type ProfileUpdateInput = {
@@ -20224,6 +20315,7 @@ export namespace Prisma {
20224
20315
  tags?: TagUpdateManyWithoutProfilesNestedInput
20225
20316
  birthLocation?: LocationUpdateOneWithoutBirthProfilesNestedInput
20226
20317
  residenceLocation?: LocationUpdateOneWithoutResidenceProfilesNestedInput
20318
+ Ticket?: TicketUpdateManyWithoutProfileNestedInput
20227
20319
  }
20228
20320
 
20229
20321
  export type ProfileUncheckedUpdateInput = {
@@ -20254,6 +20346,7 @@ export namespace Prisma {
20254
20346
  comments?: CommentUncheckedUpdateManyWithoutProfileNestedInput
20255
20347
  messages?: MessageUncheckedUpdateManyWithoutProfileNestedInput
20256
20348
  tags?: TagUncheckedUpdateManyWithoutProfilesNestedInput
20349
+ Ticket?: TicketUncheckedUpdateManyWithoutProfileNestedInput
20257
20350
  }
20258
20351
 
20259
20352
  export type ProfileCreateManyInput = {
@@ -20724,8 +20817,8 @@ export namespace Prisma {
20724
20817
  id?: string
20725
20818
  name: string
20726
20819
  date: Date | string
20727
- startingDate: Date | string
20728
- endingDate: Date | string
20820
+ startingDate?: Date | string
20821
+ endingDate?: Date | string
20729
20822
  location: string
20730
20823
  active?: boolean
20731
20824
  created_at?: Date | string
@@ -20744,8 +20837,8 @@ export namespace Prisma {
20744
20837
  id?: string
20745
20838
  name: string
20746
20839
  date: Date | string
20747
- startingDate: Date | string
20748
- endingDate: Date | string
20840
+ startingDate?: Date | string
20841
+ endingDate?: Date | string
20749
20842
  location: string
20750
20843
  folderId?: string | null
20751
20844
  tagAssistedId: string
@@ -20804,8 +20897,8 @@ export namespace Prisma {
20804
20897
  id?: string
20805
20898
  name: string
20806
20899
  date: Date | string
20807
- startingDate: Date | string
20808
- endingDate: Date | string
20900
+ startingDate?: Date | string
20901
+ endingDate?: Date | string
20809
20902
  location: string
20810
20903
  folderId?: string | null
20811
20904
  tagAssistedId: string
@@ -21038,6 +21131,7 @@ export namespace Prisma {
21038
21131
  created_at?: Date | string
21039
21132
  updated_at?: Date | string
21040
21133
  event: EventCreateNestedOneWithoutTicketsInput
21134
+ profile?: ProfileCreateNestedOneWithoutTicketInput
21041
21135
  }
21042
21136
 
21043
21137
  export type TicketUncheckedCreateInput = {
@@ -21047,6 +21141,7 @@ export namespace Prisma {
21047
21141
  status: $Enums.TicketStatus
21048
21142
  fullName: string
21049
21143
  mail: string
21144
+ profileId?: string | null
21050
21145
  created_at?: Date | string
21051
21146
  updated_at?: Date | string
21052
21147
  }
@@ -21060,6 +21155,7 @@ export namespace Prisma {
21060
21155
  created_at?: DateTimeFieldUpdateOperationsInput | Date | string
21061
21156
  updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
21062
21157
  event?: EventUpdateOneRequiredWithoutTicketsNestedInput
21158
+ profile?: ProfileUpdateOneWithoutTicketNestedInput
21063
21159
  }
21064
21160
 
21065
21161
  export type TicketUncheckedUpdateInput = {
@@ -21069,6 +21165,7 @@ export namespace Prisma {
21069
21165
  status?: EnumTicketStatusFieldUpdateOperationsInput | $Enums.TicketStatus
21070
21166
  fullName?: StringFieldUpdateOperationsInput | string
21071
21167
  mail?: StringFieldUpdateOperationsInput | string
21168
+ profileId?: NullableStringFieldUpdateOperationsInput | string | null
21072
21169
  created_at?: DateTimeFieldUpdateOperationsInput | Date | string
21073
21170
  updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
21074
21171
  }
@@ -21080,6 +21177,7 @@ export namespace Prisma {
21080
21177
  status: $Enums.TicketStatus
21081
21178
  fullName: string
21082
21179
  mail: string
21180
+ profileId?: string | null
21083
21181
  created_at?: Date | string
21084
21182
  updated_at?: Date | string
21085
21183
  }
@@ -21101,6 +21199,7 @@ export namespace Prisma {
21101
21199
  status?: EnumTicketStatusFieldUpdateOperationsInput | $Enums.TicketStatus
21102
21200
  fullName?: StringFieldUpdateOperationsInput | string
21103
21201
  mail?: StringFieldUpdateOperationsInput | string
21202
+ profileId?: NullableStringFieldUpdateOperationsInput | string | null
21104
21203
  created_at?: DateTimeFieldUpdateOperationsInput | Date | string
21105
21204
  updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
21106
21205
  }
@@ -21417,6 +21516,12 @@ export namespace Prisma {
21417
21516
  isNot?: LocationWhereInput | null
21418
21517
  }
21419
21518
 
21519
+ export type TicketListRelationFilter = {
21520
+ every?: TicketWhereInput
21521
+ some?: TicketWhereInput
21522
+ none?: TicketWhereInput
21523
+ }
21524
+
21420
21525
  export type SortOrderInput = {
21421
21526
  sort: SortOrder
21422
21527
  nulls?: NullsOrder
@@ -21430,6 +21535,10 @@ export namespace Prisma {
21430
21535
  _count?: SortOrder
21431
21536
  }
21432
21537
 
21538
+ export type TicketOrderByRelationAggregateInput = {
21539
+ _count?: SortOrder
21540
+ }
21541
+
21433
21542
  export type ProfileCountOrderByAggregateInput = {
21434
21543
  id?: SortOrder
21435
21544
  shortId?: SortOrder
@@ -21839,22 +21948,12 @@ export namespace Prisma {
21839
21948
  isNot?: TagWhereInput
21840
21949
  }
21841
21950
 
21842
- export type TicketListRelationFilter = {
21843
- every?: TicketWhereInput
21844
- some?: TicketWhereInput
21845
- none?: TicketWhereInput
21846
- }
21847
-
21848
21951
  export type EventTicketListRelationFilter = {
21849
21952
  every?: EventTicketWhereInput
21850
21953
  some?: EventTicketWhereInput
21851
21954
  none?: EventTicketWhereInput
21852
21955
  }
21853
21956
 
21854
- export type TicketOrderByRelationAggregateInput = {
21855
- _count?: SortOrder
21856
- }
21857
-
21858
21957
  export type EventTicketOrderByRelationAggregateInput = {
21859
21958
  _count?: SortOrder
21860
21959
  }
@@ -22068,6 +22167,11 @@ export namespace Prisma {
22068
22167
  isNot?: EventWhereInput
22069
22168
  }
22070
22169
 
22170
+ export type ProfileNullableScalarRelationFilter = {
22171
+ is?: ProfileWhereInput | null
22172
+ isNot?: ProfileWhereInput | null
22173
+ }
22174
+
22071
22175
  export type TicketCountOrderByAggregateInput = {
22072
22176
  id?: SortOrder
22073
22177
  eventId?: SortOrder
@@ -22075,6 +22179,7 @@ export namespace Prisma {
22075
22179
  status?: SortOrder
22076
22180
  fullName?: SortOrder
22077
22181
  mail?: SortOrder
22182
+ profileId?: SortOrder
22078
22183
  created_at?: SortOrder
22079
22184
  updated_at?: SortOrder
22080
22185
  }
@@ -22086,6 +22191,7 @@ export namespace Prisma {
22086
22191
  status?: SortOrder
22087
22192
  fullName?: SortOrder
22088
22193
  mail?: SortOrder
22194
+ profileId?: SortOrder
22089
22195
  created_at?: SortOrder
22090
22196
  updated_at?: SortOrder
22091
22197
  }
@@ -22097,6 +22203,7 @@ export namespace Prisma {
22097
22203
  status?: SortOrder
22098
22204
  fullName?: SortOrder
22099
22205
  mail?: SortOrder
22206
+ profileId?: SortOrder
22100
22207
  created_at?: SortOrder
22101
22208
  updated_at?: SortOrder
22102
22209
  }
@@ -22468,6 +22575,13 @@ export namespace Prisma {
22468
22575
  connect?: LocationWhereUniqueInput
22469
22576
  }
22470
22577
 
22578
+ export type TicketCreateNestedManyWithoutProfileInput = {
22579
+ create?: XOR<TicketCreateWithoutProfileInput, TicketUncheckedCreateWithoutProfileInput> | TicketCreateWithoutProfileInput[] | TicketUncheckedCreateWithoutProfileInput[]
22580
+ connectOrCreate?: TicketCreateOrConnectWithoutProfileInput | TicketCreateOrConnectWithoutProfileInput[]
22581
+ createMany?: TicketCreateManyProfileInputEnvelope
22582
+ connect?: TicketWhereUniqueInput | TicketWhereUniqueInput[]
22583
+ }
22584
+
22471
22585
  export type OtpUncheckedCreateNestedManyWithoutOwnerInput = {
22472
22586
  create?: XOR<OtpCreateWithoutOwnerInput, OtpUncheckedCreateWithoutOwnerInput> | OtpCreateWithoutOwnerInput[] | OtpUncheckedCreateWithoutOwnerInput[]
22473
22587
  connectOrCreate?: OtpCreateOrConnectWithoutOwnerInput | OtpCreateOrConnectWithoutOwnerInput[]
@@ -22495,6 +22609,13 @@ export namespace Prisma {
22495
22609
  connect?: TagWhereUniqueInput | TagWhereUniqueInput[]
22496
22610
  }
22497
22611
 
22612
+ export type TicketUncheckedCreateNestedManyWithoutProfileInput = {
22613
+ create?: XOR<TicketCreateWithoutProfileInput, TicketUncheckedCreateWithoutProfileInput> | TicketCreateWithoutProfileInput[] | TicketUncheckedCreateWithoutProfileInput[]
22614
+ connectOrCreate?: TicketCreateOrConnectWithoutProfileInput | TicketCreateOrConnectWithoutProfileInput[]
22615
+ createMany?: TicketCreateManyProfileInputEnvelope
22616
+ connect?: TicketWhereUniqueInput | TicketWhereUniqueInput[]
22617
+ }
22618
+
22498
22619
  export type IntFieldUpdateOperationsInput = {
22499
22620
  set?: number
22500
22621
  increment?: number
@@ -22591,6 +22712,20 @@ export namespace Prisma {
22591
22712
  update?: XOR<XOR<LocationUpdateToOneWithWhereWithoutResidenceProfilesInput, LocationUpdateWithoutResidenceProfilesInput>, LocationUncheckedUpdateWithoutResidenceProfilesInput>
22592
22713
  }
22593
22714
 
22715
+ export type TicketUpdateManyWithoutProfileNestedInput = {
22716
+ create?: XOR<TicketCreateWithoutProfileInput, TicketUncheckedCreateWithoutProfileInput> | TicketCreateWithoutProfileInput[] | TicketUncheckedCreateWithoutProfileInput[]
22717
+ connectOrCreate?: TicketCreateOrConnectWithoutProfileInput | TicketCreateOrConnectWithoutProfileInput[]
22718
+ upsert?: TicketUpsertWithWhereUniqueWithoutProfileInput | TicketUpsertWithWhereUniqueWithoutProfileInput[]
22719
+ createMany?: TicketCreateManyProfileInputEnvelope
22720
+ set?: TicketWhereUniqueInput | TicketWhereUniqueInput[]
22721
+ disconnect?: TicketWhereUniqueInput | TicketWhereUniqueInput[]
22722
+ delete?: TicketWhereUniqueInput | TicketWhereUniqueInput[]
22723
+ connect?: TicketWhereUniqueInput | TicketWhereUniqueInput[]
22724
+ update?: TicketUpdateWithWhereUniqueWithoutProfileInput | TicketUpdateWithWhereUniqueWithoutProfileInput[]
22725
+ updateMany?: TicketUpdateManyWithWhereWithoutProfileInput | TicketUpdateManyWithWhereWithoutProfileInput[]
22726
+ deleteMany?: TicketScalarWhereInput | TicketScalarWhereInput[]
22727
+ }
22728
+
22594
22729
  export type OtpUncheckedUpdateManyWithoutOwnerNestedInput = {
22595
22730
  create?: XOR<OtpCreateWithoutOwnerInput, OtpUncheckedCreateWithoutOwnerInput> | OtpCreateWithoutOwnerInput[] | OtpUncheckedCreateWithoutOwnerInput[]
22596
22731
  connectOrCreate?: OtpCreateOrConnectWithoutOwnerInput | OtpCreateOrConnectWithoutOwnerInput[]
@@ -22646,6 +22781,20 @@ export namespace Prisma {
22646
22781
  deleteMany?: TagScalarWhereInput | TagScalarWhereInput[]
22647
22782
  }
22648
22783
 
22784
+ export type TicketUncheckedUpdateManyWithoutProfileNestedInput = {
22785
+ create?: XOR<TicketCreateWithoutProfileInput, TicketUncheckedCreateWithoutProfileInput> | TicketCreateWithoutProfileInput[] | TicketUncheckedCreateWithoutProfileInput[]
22786
+ connectOrCreate?: TicketCreateOrConnectWithoutProfileInput | TicketCreateOrConnectWithoutProfileInput[]
22787
+ upsert?: TicketUpsertWithWhereUniqueWithoutProfileInput | TicketUpsertWithWhereUniqueWithoutProfileInput[]
22788
+ createMany?: TicketCreateManyProfileInputEnvelope
22789
+ set?: TicketWhereUniqueInput | TicketWhereUniqueInput[]
22790
+ disconnect?: TicketWhereUniqueInput | TicketWhereUniqueInput[]
22791
+ delete?: TicketWhereUniqueInput | TicketWhereUniqueInput[]
22792
+ connect?: TicketWhereUniqueInput | TicketWhereUniqueInput[]
22793
+ update?: TicketUpdateWithWhereUniqueWithoutProfileInput | TicketUpdateWithWhereUniqueWithoutProfileInput[]
22794
+ updateMany?: TicketUpdateManyWithWhereWithoutProfileInput | TicketUpdateManyWithWhereWithoutProfileInput[]
22795
+ deleteMany?: TicketScalarWhereInput | TicketScalarWhereInput[]
22796
+ }
22797
+
22649
22798
  export type ProfileCreateNestedOneWithoutOtpInput = {
22650
22799
  create?: XOR<ProfileCreateWithoutOtpInput, ProfileUncheckedCreateWithoutOtpInput>
22651
22800
  connectOrCreate?: ProfileCreateOrConnectWithoutOtpInput
@@ -23362,6 +23511,12 @@ export namespace Prisma {
23362
23511
  connect?: EventWhereUniqueInput
23363
23512
  }
23364
23513
 
23514
+ export type ProfileCreateNestedOneWithoutTicketInput = {
23515
+ create?: XOR<ProfileCreateWithoutTicketInput, ProfileUncheckedCreateWithoutTicketInput>
23516
+ connectOrCreate?: ProfileCreateOrConnectWithoutTicketInput
23517
+ connect?: ProfileWhereUniqueInput
23518
+ }
23519
+
23365
23520
  export type EnumTicketTypeFieldUpdateOperationsInput = {
23366
23521
  set?: $Enums.TicketType
23367
23522
  }
@@ -23378,6 +23533,16 @@ export namespace Prisma {
23378
23533
  update?: XOR<XOR<EventUpdateToOneWithWhereWithoutTicketsInput, EventUpdateWithoutTicketsInput>, EventUncheckedUpdateWithoutTicketsInput>
23379
23534
  }
23380
23535
 
23536
+ export type ProfileUpdateOneWithoutTicketNestedInput = {
23537
+ create?: XOR<ProfileCreateWithoutTicketInput, ProfileUncheckedCreateWithoutTicketInput>
23538
+ connectOrCreate?: ProfileCreateOrConnectWithoutTicketInput
23539
+ upsert?: ProfileUpsertWithoutTicketInput
23540
+ disconnect?: ProfileWhereInput | boolean
23541
+ delete?: ProfileWhereInput | boolean
23542
+ connect?: ProfileWhereUniqueInput
23543
+ update?: XOR<XOR<ProfileUpdateToOneWithWhereWithoutTicketInput, ProfileUpdateWithoutTicketInput>, ProfileUncheckedUpdateWithoutTicketInput>
23544
+ }
23545
+
23381
23546
  export type EnumTemplateStatusFieldUpdateOperationsInput = {
23382
23547
  set?: $Enums.TemplateStatus
23383
23548
  }
@@ -24172,6 +24337,38 @@ export namespace Prisma {
24172
24337
  create: XOR<LocationCreateWithoutResidenceProfilesInput, LocationUncheckedCreateWithoutResidenceProfilesInput>
24173
24338
  }
24174
24339
 
24340
+ export type TicketCreateWithoutProfileInput = {
24341
+ id?: string
24342
+ type: $Enums.TicketType
24343
+ status: $Enums.TicketStatus
24344
+ fullName: string
24345
+ mail: string
24346
+ created_at?: Date | string
24347
+ updated_at?: Date | string
24348
+ event: EventCreateNestedOneWithoutTicketsInput
24349
+ }
24350
+
24351
+ export type TicketUncheckedCreateWithoutProfileInput = {
24352
+ id?: string
24353
+ eventId: string
24354
+ type: $Enums.TicketType
24355
+ status: $Enums.TicketStatus
24356
+ fullName: string
24357
+ mail: string
24358
+ created_at?: Date | string
24359
+ updated_at?: Date | string
24360
+ }
24361
+
24362
+ export type TicketCreateOrConnectWithoutProfileInput = {
24363
+ where: TicketWhereUniqueInput
24364
+ create: XOR<TicketCreateWithoutProfileInput, TicketUncheckedCreateWithoutProfileInput>
24365
+ }
24366
+
24367
+ export type TicketCreateManyProfileInputEnvelope = {
24368
+ data: TicketCreateManyProfileInput | TicketCreateManyProfileInput[]
24369
+ skipDuplicates?: boolean
24370
+ }
24371
+
24175
24372
  export type OtpUpsertWithWhereUniqueWithoutOwnerInput = {
24176
24373
  where: OtpWhereUniqueInput
24177
24374
  update: XOR<OtpUpdateWithoutOwnerInput, OtpUncheckedUpdateWithoutOwnerInput>
@@ -24331,6 +24528,37 @@ export namespace Prisma {
24331
24528
  birthProfiles?: ProfileUncheckedUpdateManyWithoutBirthLocationNestedInput
24332
24529
  }
24333
24530
 
24531
+ export type TicketUpsertWithWhereUniqueWithoutProfileInput = {
24532
+ where: TicketWhereUniqueInput
24533
+ update: XOR<TicketUpdateWithoutProfileInput, TicketUncheckedUpdateWithoutProfileInput>
24534
+ create: XOR<TicketCreateWithoutProfileInput, TicketUncheckedCreateWithoutProfileInput>
24535
+ }
24536
+
24537
+ export type TicketUpdateWithWhereUniqueWithoutProfileInput = {
24538
+ where: TicketWhereUniqueInput
24539
+ data: XOR<TicketUpdateWithoutProfileInput, TicketUncheckedUpdateWithoutProfileInput>
24540
+ }
24541
+
24542
+ export type TicketUpdateManyWithWhereWithoutProfileInput = {
24543
+ where: TicketScalarWhereInput
24544
+ data: XOR<TicketUpdateManyMutationInput, TicketUncheckedUpdateManyWithoutProfileInput>
24545
+ }
24546
+
24547
+ export type TicketScalarWhereInput = {
24548
+ AND?: TicketScalarWhereInput | TicketScalarWhereInput[]
24549
+ OR?: TicketScalarWhereInput[]
24550
+ NOT?: TicketScalarWhereInput | TicketScalarWhereInput[]
24551
+ id?: StringFilter<"Ticket"> | string
24552
+ eventId?: StringFilter<"Ticket"> | string
24553
+ type?: EnumTicketTypeFilter<"Ticket"> | $Enums.TicketType
24554
+ status?: EnumTicketStatusFilter<"Ticket"> | $Enums.TicketStatus
24555
+ fullName?: StringFilter<"Ticket"> | string
24556
+ mail?: StringFilter<"Ticket"> | string
24557
+ profileId?: StringNullableFilter<"Ticket"> | string | null
24558
+ created_at?: DateTimeFilter<"Ticket"> | Date | string
24559
+ updated_at?: DateTimeFilter<"Ticket"> | Date | string
24560
+ }
24561
+
24334
24562
  export type ProfileCreateWithoutOtpInput = {
24335
24563
  id?: string
24336
24564
  shortId: number
@@ -24358,6 +24586,7 @@ export namespace Prisma {
24358
24586
  tags?: TagCreateNestedManyWithoutProfilesInput
24359
24587
  birthLocation?: LocationCreateNestedOneWithoutBirthProfilesInput
24360
24588
  residenceLocation?: LocationCreateNestedOneWithoutResidenceProfilesInput
24589
+ Ticket?: TicketCreateNestedManyWithoutProfileInput
24361
24590
  }
24362
24591
 
24363
24592
  export type ProfileUncheckedCreateWithoutOtpInput = {
@@ -24387,6 +24616,7 @@ export namespace Prisma {
24387
24616
  comments?: CommentUncheckedCreateNestedManyWithoutProfileInput
24388
24617
  messages?: MessageUncheckedCreateNestedManyWithoutProfileInput
24389
24618
  tags?: TagUncheckedCreateNestedManyWithoutProfilesInput
24619
+ Ticket?: TicketUncheckedCreateNestedManyWithoutProfileInput
24390
24620
  }
24391
24621
 
24392
24622
  export type ProfileCreateOrConnectWithoutOtpInput = {
@@ -24432,6 +24662,7 @@ export namespace Prisma {
24432
24662
  tags?: TagUpdateManyWithoutProfilesNestedInput
24433
24663
  birthLocation?: LocationUpdateOneWithoutBirthProfilesNestedInput
24434
24664
  residenceLocation?: LocationUpdateOneWithoutResidenceProfilesNestedInput
24665
+ Ticket?: TicketUpdateManyWithoutProfileNestedInput
24435
24666
  }
24436
24667
 
24437
24668
  export type ProfileUncheckedUpdateWithoutOtpInput = {
@@ -24461,6 +24692,7 @@ export namespace Prisma {
24461
24692
  comments?: CommentUncheckedUpdateManyWithoutProfileNestedInput
24462
24693
  messages?: MessageUncheckedUpdateManyWithoutProfileNestedInput
24463
24694
  tags?: TagUncheckedUpdateManyWithoutProfilesNestedInput
24695
+ Ticket?: TicketUncheckedUpdateManyWithoutProfileNestedInput
24464
24696
  }
24465
24697
 
24466
24698
  export type ProfileCreateWithoutBirthLocationInput = {
@@ -24490,6 +24722,7 @@ export namespace Prisma {
24490
24722
  messages?: MessageCreateNestedManyWithoutProfileInput
24491
24723
  tags?: TagCreateNestedManyWithoutProfilesInput
24492
24724
  residenceLocation?: LocationCreateNestedOneWithoutResidenceProfilesInput
24725
+ Ticket?: TicketCreateNestedManyWithoutProfileInput
24493
24726
  }
24494
24727
 
24495
24728
  export type ProfileUncheckedCreateWithoutBirthLocationInput = {
@@ -24519,6 +24752,7 @@ export namespace Prisma {
24519
24752
  comments?: CommentUncheckedCreateNestedManyWithoutProfileInput
24520
24753
  messages?: MessageUncheckedCreateNestedManyWithoutProfileInput
24521
24754
  tags?: TagUncheckedCreateNestedManyWithoutProfilesInput
24755
+ Ticket?: TicketUncheckedCreateNestedManyWithoutProfileInput
24522
24756
  }
24523
24757
 
24524
24758
  export type ProfileCreateOrConnectWithoutBirthLocationInput = {
@@ -24558,6 +24792,7 @@ export namespace Prisma {
24558
24792
  messages?: MessageCreateNestedManyWithoutProfileInput
24559
24793
  tags?: TagCreateNestedManyWithoutProfilesInput
24560
24794
  birthLocation?: LocationCreateNestedOneWithoutBirthProfilesInput
24795
+ Ticket?: TicketCreateNestedManyWithoutProfileInput
24561
24796
  }
24562
24797
 
24563
24798
  export type ProfileUncheckedCreateWithoutResidenceLocationInput = {
@@ -24587,6 +24822,7 @@ export namespace Prisma {
24587
24822
  comments?: CommentUncheckedCreateNestedManyWithoutProfileInput
24588
24823
  messages?: MessageUncheckedCreateNestedManyWithoutProfileInput
24589
24824
  tags?: TagUncheckedCreateNestedManyWithoutProfilesInput
24825
+ Ticket?: TicketUncheckedCreateNestedManyWithoutProfileInput
24590
24826
  }
24591
24827
 
24592
24828
  export type ProfileCreateOrConnectWithoutResidenceLocationInput = {
@@ -24720,6 +24956,7 @@ export namespace Prisma {
24720
24956
  tags?: TagCreateNestedManyWithoutProfilesInput
24721
24957
  birthLocation?: LocationCreateNestedOneWithoutBirthProfilesInput
24722
24958
  residenceLocation?: LocationCreateNestedOneWithoutResidenceProfilesInput
24959
+ Ticket?: TicketCreateNestedManyWithoutProfileInput
24723
24960
  }
24724
24961
 
24725
24962
  export type ProfileUncheckedCreateWithoutCommentsInput = {
@@ -24749,6 +24986,7 @@ export namespace Prisma {
24749
24986
  otp?: OtpUncheckedCreateNestedManyWithoutOwnerInput
24750
24987
  messages?: MessageUncheckedCreateNestedManyWithoutProfileInput
24751
24988
  tags?: TagUncheckedCreateNestedManyWithoutProfilesInput
24989
+ Ticket?: TicketUncheckedCreateNestedManyWithoutProfileInput
24752
24990
  }
24753
24991
 
24754
24992
  export type ProfileCreateOrConnectWithoutCommentsInput = {
@@ -24866,6 +25104,7 @@ export namespace Prisma {
24866
25104
  tags?: TagUpdateManyWithoutProfilesNestedInput
24867
25105
  birthLocation?: LocationUpdateOneWithoutBirthProfilesNestedInput
24868
25106
  residenceLocation?: LocationUpdateOneWithoutResidenceProfilesNestedInput
25107
+ Ticket?: TicketUpdateManyWithoutProfileNestedInput
24869
25108
  }
24870
25109
 
24871
25110
  export type ProfileUncheckedUpdateWithoutCommentsInput = {
@@ -24895,6 +25134,7 @@ export namespace Prisma {
24895
25134
  otp?: OtpUncheckedUpdateManyWithoutOwnerNestedInput
24896
25135
  messages?: MessageUncheckedUpdateManyWithoutProfileNestedInput
24897
25136
  tags?: TagUncheckedUpdateManyWithoutProfilesNestedInput
25137
+ Ticket?: TicketUncheckedUpdateManyWithoutProfileNestedInput
24898
25138
  }
24899
25139
 
24900
25140
  export type AccountUpsertWithoutSolvableCommentsInput = {
@@ -24963,8 +25203,8 @@ export namespace Prisma {
24963
25203
  id?: string
24964
25204
  name: string
24965
25205
  date: Date | string
24966
- startingDate: Date | string
24967
- endingDate: Date | string
25206
+ startingDate?: Date | string
25207
+ endingDate?: Date | string
24968
25208
  location: string
24969
25209
  active?: boolean
24970
25210
  created_at?: Date | string
@@ -24982,8 +25222,8 @@ export namespace Prisma {
24982
25222
  id?: string
24983
25223
  name: string
24984
25224
  date: Date | string
24985
- startingDate: Date | string
24986
- endingDate: Date | string
25225
+ startingDate?: Date | string
25226
+ endingDate?: Date | string
24987
25227
  location: string
24988
25228
  folderId?: string | null
24989
25229
  tagConfirmedId: string
@@ -25006,8 +25246,8 @@ export namespace Prisma {
25006
25246
  id?: string
25007
25247
  name: string
25008
25248
  date: Date | string
25009
- startingDate: Date | string
25010
- endingDate: Date | string
25249
+ startingDate?: Date | string
25250
+ endingDate?: Date | string
25011
25251
  location: string
25012
25252
  active?: boolean
25013
25253
  created_at?: Date | string
@@ -25025,8 +25265,8 @@ export namespace Prisma {
25025
25265
  id?: string
25026
25266
  name: string
25027
25267
  date: Date | string
25028
- startingDate: Date | string
25029
- endingDate: Date | string
25268
+ startingDate?: Date | string
25269
+ endingDate?: Date | string
25030
25270
  location: string
25031
25271
  folderId?: string | null
25032
25272
  tagAssistedId: string
@@ -25105,6 +25345,7 @@ export namespace Prisma {
25105
25345
  messages?: MessageCreateNestedManyWithoutProfileInput
25106
25346
  birthLocation?: LocationCreateNestedOneWithoutBirthProfilesInput
25107
25347
  residenceLocation?: LocationCreateNestedOneWithoutResidenceProfilesInput
25348
+ Ticket?: TicketCreateNestedManyWithoutProfileInput
25108
25349
  }
25109
25350
 
25110
25351
  export type ProfileUncheckedCreateWithoutTagsInput = {
@@ -25134,6 +25375,7 @@ export namespace Prisma {
25134
25375
  otp?: OtpUncheckedCreateNestedManyWithoutOwnerInput
25135
25376
  comments?: CommentUncheckedCreateNestedManyWithoutProfileInput
25136
25377
  messages?: MessageUncheckedCreateNestedManyWithoutProfileInput
25378
+ Ticket?: TicketUncheckedCreateNestedManyWithoutProfileInput
25137
25379
  }
25138
25380
 
25139
25381
  export type ProfileCreateOrConnectWithoutTagsInput = {
@@ -25178,8 +25420,8 @@ export namespace Prisma {
25178
25420
  id?: string
25179
25421
  name: string
25180
25422
  date: Date | string
25181
- startingDate: Date | string
25182
- endingDate: Date | string
25423
+ startingDate?: Date | string
25424
+ endingDate?: Date | string
25183
25425
  location: string
25184
25426
  active?: boolean
25185
25427
  created_at?: Date | string
@@ -25197,8 +25439,8 @@ export namespace Prisma {
25197
25439
  id?: string
25198
25440
  name: string
25199
25441
  date: Date | string
25200
- startingDate: Date | string
25201
- endingDate: Date | string
25442
+ startingDate?: Date | string
25443
+ endingDate?: Date | string
25202
25444
  location: string
25203
25445
  folderId?: string | null
25204
25446
  tagAssistedId: string
@@ -25586,8 +25828,8 @@ export namespace Prisma {
25586
25828
  id?: string
25587
25829
  name: string
25588
25830
  date: Date | string
25589
- startingDate: Date | string
25590
- endingDate: Date | string
25831
+ startingDate?: Date | string
25832
+ endingDate?: Date | string
25591
25833
  location: string
25592
25834
  active?: boolean
25593
25835
  created_at?: Date | string
@@ -25605,8 +25847,8 @@ export namespace Prisma {
25605
25847
  id?: string
25606
25848
  name: string
25607
25849
  date: Date | string
25608
- startingDate: Date | string
25609
- endingDate: Date | string
25850
+ startingDate?: Date | string
25851
+ endingDate?: Date | string
25610
25852
  location: string
25611
25853
  folderId?: string | null
25612
25854
  tagAssistedId: string
@@ -25633,6 +25875,7 @@ export namespace Prisma {
25633
25875
  mail: string
25634
25876
  created_at?: Date | string
25635
25877
  updated_at?: Date | string
25878
+ profile?: ProfileCreateNestedOneWithoutTicketInput
25636
25879
  }
25637
25880
 
25638
25881
  export type TicketUncheckedCreateWithoutEventInput = {
@@ -25641,6 +25884,7 @@ export namespace Prisma {
25641
25884
  status: $Enums.TicketStatus
25642
25885
  fullName: string
25643
25886
  mail: string
25887
+ profileId?: string | null
25644
25888
  created_at?: Date | string
25645
25889
  updated_at?: Date | string
25646
25890
  }
@@ -25659,8 +25903,8 @@ export namespace Prisma {
25659
25903
  id?: string
25660
25904
  name: string
25661
25905
  date: Date | string
25662
- startingDate: Date | string
25663
- endingDate: Date | string
25906
+ startingDate?: Date | string
25907
+ endingDate?: Date | string
25664
25908
  location: string
25665
25909
  active?: boolean
25666
25910
  created_at?: Date | string
@@ -25678,8 +25922,8 @@ export namespace Prisma {
25678
25922
  id?: string
25679
25923
  name: string
25680
25924
  date: Date | string
25681
- startingDate: Date | string
25682
- endingDate: Date | string
25925
+ startingDate?: Date | string
25926
+ endingDate?: Date | string
25683
25927
  location: string
25684
25928
  folderId?: string | null
25685
25929
  tagAssistedId: string
@@ -25934,20 +26178,6 @@ export namespace Prisma {
25934
26178
  data: XOR<TicketUpdateManyMutationInput, TicketUncheckedUpdateManyWithoutEventInput>
25935
26179
  }
25936
26180
 
25937
- export type TicketScalarWhereInput = {
25938
- AND?: TicketScalarWhereInput | TicketScalarWhereInput[]
25939
- OR?: TicketScalarWhereInput[]
25940
- NOT?: TicketScalarWhereInput | TicketScalarWhereInput[]
25941
- id?: StringFilter<"Ticket"> | string
25942
- eventId?: StringFilter<"Ticket"> | string
25943
- type?: EnumTicketTypeFilter<"Ticket"> | $Enums.TicketType
25944
- status?: EnumTicketStatusFilter<"Ticket"> | $Enums.TicketStatus
25945
- fullName?: StringFilter<"Ticket"> | string
25946
- mail?: StringFilter<"Ticket"> | string
25947
- created_at?: DateTimeFilter<"Ticket"> | Date | string
25948
- updated_at?: DateTimeFilter<"Ticket"> | Date | string
25949
- }
25950
-
25951
26181
  export type EventUpsertWithWhereUniqueWithoutSupraEventInput = {
25952
26182
  where: EventWhereUniqueInput
25953
26183
  update: XOR<EventUpdateWithoutSupraEventInput, EventUncheckedUpdateWithoutSupraEventInput>
@@ -26013,8 +26243,8 @@ export namespace Prisma {
26013
26243
  id?: string
26014
26244
  name: string
26015
26245
  date: Date | string
26016
- startingDate: Date | string
26017
- endingDate: Date | string
26246
+ startingDate?: Date | string
26247
+ endingDate?: Date | string
26018
26248
  location: string
26019
26249
  active?: boolean
26020
26250
  created_at?: Date | string
@@ -26032,8 +26262,8 @@ export namespace Prisma {
26032
26262
  id?: string
26033
26263
  name: string
26034
26264
  date: Date | string
26035
- startingDate: Date | string
26036
- endingDate: Date | string
26265
+ startingDate?: Date | string
26266
+ endingDate?: Date | string
26037
26267
  location: string
26038
26268
  tagAssistedId: string
26039
26269
  tagConfirmedId: string
@@ -26100,6 +26330,7 @@ export namespace Prisma {
26100
26330
  tags?: TagCreateNestedManyWithoutProfilesInput
26101
26331
  birthLocation?: LocationCreateNestedOneWithoutBirthProfilesInput
26102
26332
  residenceLocation?: LocationCreateNestedOneWithoutResidenceProfilesInput
26333
+ Ticket?: TicketCreateNestedManyWithoutProfileInput
26103
26334
  }
26104
26335
 
26105
26336
  export type ProfileUncheckedCreateWithoutMessagesInput = {
@@ -26129,6 +26360,7 @@ export namespace Prisma {
26129
26360
  otp?: OtpUncheckedCreateNestedManyWithoutOwnerInput
26130
26361
  comments?: CommentUncheckedCreateNestedManyWithoutProfileInput
26131
26362
  tags?: TagUncheckedCreateNestedManyWithoutProfilesInput
26363
+ Ticket?: TicketUncheckedCreateNestedManyWithoutProfileInput
26132
26364
  }
26133
26365
 
26134
26366
  export type ProfileCreateOrConnectWithoutMessagesInput = {
@@ -26174,6 +26406,7 @@ export namespace Prisma {
26174
26406
  tags?: TagUpdateManyWithoutProfilesNestedInput
26175
26407
  birthLocation?: LocationUpdateOneWithoutBirthProfilesNestedInput
26176
26408
  residenceLocation?: LocationUpdateOneWithoutResidenceProfilesNestedInput
26409
+ Ticket?: TicketUpdateManyWithoutProfileNestedInput
26177
26410
  }
26178
26411
 
26179
26412
  export type ProfileUncheckedUpdateWithoutMessagesInput = {
@@ -26203,14 +26436,15 @@ export namespace Prisma {
26203
26436
  otp?: OtpUncheckedUpdateManyWithoutOwnerNestedInput
26204
26437
  comments?: CommentUncheckedUpdateManyWithoutProfileNestedInput
26205
26438
  tags?: TagUncheckedUpdateManyWithoutProfilesNestedInput
26439
+ Ticket?: TicketUncheckedUpdateManyWithoutProfileNestedInput
26206
26440
  }
26207
26441
 
26208
26442
  export type EventCreateWithoutTicketsInput = {
26209
26443
  id?: string
26210
26444
  name: string
26211
26445
  date: Date | string
26212
- startingDate: Date | string
26213
- endingDate: Date | string
26446
+ startingDate?: Date | string
26447
+ endingDate?: Date | string
26214
26448
  location: string
26215
26449
  active?: boolean
26216
26450
  created_at?: Date | string
@@ -26228,8 +26462,8 @@ export namespace Prisma {
26228
26462
  id?: string
26229
26463
  name: string
26230
26464
  date: Date | string
26231
- startingDate: Date | string
26232
- endingDate: Date | string
26465
+ startingDate?: Date | string
26466
+ endingDate?: Date | string
26233
26467
  location: string
26234
26468
  folderId?: string | null
26235
26469
  tagAssistedId: string
@@ -26248,6 +26482,71 @@ export namespace Prisma {
26248
26482
  create: XOR<EventCreateWithoutTicketsInput, EventUncheckedCreateWithoutTicketsInput>
26249
26483
  }
26250
26484
 
26485
+ export type ProfileCreateWithoutTicketInput = {
26486
+ id?: string
26487
+ shortId: number
26488
+ firstTimeMiExpo?: boolean
26489
+ username?: string | null
26490
+ password?: string | null
26491
+ phoneNumber: string
26492
+ isPhoneVerified?: boolean
26493
+ secondaryPhoneNumber?: string | null
26494
+ fullName: string
26495
+ firstName?: string | null
26496
+ gender?: string | null
26497
+ birthDate?: Date | string | null
26498
+ profilePictureUrl?: string | null
26499
+ instagram?: string | null
26500
+ mail?: string | null
26501
+ dni?: string | null
26502
+ alternativeNames?: ProfileCreatealternativeNamesInput | string[]
26503
+ isInTrash?: boolean
26504
+ movedToTrashDate?: Date | string | null
26505
+ created_at?: Date | string
26506
+ updated_at?: Date | string
26507
+ otp?: OtpCreateNestedManyWithoutOwnerInput
26508
+ comments?: CommentCreateNestedManyWithoutProfileInput
26509
+ messages?: MessageCreateNestedManyWithoutProfileInput
26510
+ tags?: TagCreateNestedManyWithoutProfilesInput
26511
+ birthLocation?: LocationCreateNestedOneWithoutBirthProfilesInput
26512
+ residenceLocation?: LocationCreateNestedOneWithoutResidenceProfilesInput
26513
+ }
26514
+
26515
+ export type ProfileUncheckedCreateWithoutTicketInput = {
26516
+ id?: string
26517
+ shortId: number
26518
+ firstTimeMiExpo?: boolean
26519
+ username?: string | null
26520
+ password?: string | null
26521
+ phoneNumber: string
26522
+ isPhoneVerified?: boolean
26523
+ secondaryPhoneNumber?: string | null
26524
+ fullName: string
26525
+ firstName?: string | null
26526
+ gender?: string | null
26527
+ birthDate?: Date | string | null
26528
+ profilePictureUrl?: string | null
26529
+ instagram?: string | null
26530
+ mail?: string | null
26531
+ dni?: string | null
26532
+ alternativeNames?: ProfileCreatealternativeNamesInput | string[]
26533
+ birthLocationId?: string | null
26534
+ residenceLocationId?: string | null
26535
+ isInTrash?: boolean
26536
+ movedToTrashDate?: Date | string | null
26537
+ created_at?: Date | string
26538
+ updated_at?: Date | string
26539
+ otp?: OtpUncheckedCreateNestedManyWithoutOwnerInput
26540
+ comments?: CommentUncheckedCreateNestedManyWithoutProfileInput
26541
+ messages?: MessageUncheckedCreateNestedManyWithoutProfileInput
26542
+ tags?: TagUncheckedCreateNestedManyWithoutProfilesInput
26543
+ }
26544
+
26545
+ export type ProfileCreateOrConnectWithoutTicketInput = {
26546
+ where: ProfileWhereUniqueInput
26547
+ create: XOR<ProfileCreateWithoutTicketInput, ProfileUncheckedCreateWithoutTicketInput>
26548
+ }
26549
+
26251
26550
  export type EventUpsertWithoutTicketsInput = {
26252
26551
  update: XOR<EventUpdateWithoutTicketsInput, EventUncheckedUpdateWithoutTicketsInput>
26253
26552
  create: XOR<EventCreateWithoutTicketsInput, EventUncheckedCreateWithoutTicketsInput>
@@ -26297,12 +26596,83 @@ export namespace Prisma {
26297
26596
  eventTickets?: EventTicketUncheckedUpdateManyWithoutEventNestedInput
26298
26597
  }
26299
26598
 
26599
+ export type ProfileUpsertWithoutTicketInput = {
26600
+ update: XOR<ProfileUpdateWithoutTicketInput, ProfileUncheckedUpdateWithoutTicketInput>
26601
+ create: XOR<ProfileCreateWithoutTicketInput, ProfileUncheckedCreateWithoutTicketInput>
26602
+ where?: ProfileWhereInput
26603
+ }
26604
+
26605
+ export type ProfileUpdateToOneWithWhereWithoutTicketInput = {
26606
+ where?: ProfileWhereInput
26607
+ data: XOR<ProfileUpdateWithoutTicketInput, ProfileUncheckedUpdateWithoutTicketInput>
26608
+ }
26609
+
26610
+ export type ProfileUpdateWithoutTicketInput = {
26611
+ id?: StringFieldUpdateOperationsInput | string
26612
+ shortId?: IntFieldUpdateOperationsInput | number
26613
+ firstTimeMiExpo?: BoolFieldUpdateOperationsInput | boolean
26614
+ username?: NullableStringFieldUpdateOperationsInput | string | null
26615
+ password?: NullableStringFieldUpdateOperationsInput | string | null
26616
+ phoneNumber?: StringFieldUpdateOperationsInput | string
26617
+ isPhoneVerified?: BoolFieldUpdateOperationsInput | boolean
26618
+ secondaryPhoneNumber?: NullableStringFieldUpdateOperationsInput | string | null
26619
+ fullName?: StringFieldUpdateOperationsInput | string
26620
+ firstName?: NullableStringFieldUpdateOperationsInput | string | null
26621
+ gender?: NullableStringFieldUpdateOperationsInput | string | null
26622
+ birthDate?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
26623
+ profilePictureUrl?: NullableStringFieldUpdateOperationsInput | string | null
26624
+ instagram?: NullableStringFieldUpdateOperationsInput | string | null
26625
+ mail?: NullableStringFieldUpdateOperationsInput | string | null
26626
+ dni?: NullableStringFieldUpdateOperationsInput | string | null
26627
+ alternativeNames?: ProfileUpdatealternativeNamesInput | string[]
26628
+ isInTrash?: BoolFieldUpdateOperationsInput | boolean
26629
+ movedToTrashDate?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
26630
+ created_at?: DateTimeFieldUpdateOperationsInput | Date | string
26631
+ updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
26632
+ otp?: OtpUpdateManyWithoutOwnerNestedInput
26633
+ comments?: CommentUpdateManyWithoutProfileNestedInput
26634
+ messages?: MessageUpdateManyWithoutProfileNestedInput
26635
+ tags?: TagUpdateManyWithoutProfilesNestedInput
26636
+ birthLocation?: LocationUpdateOneWithoutBirthProfilesNestedInput
26637
+ residenceLocation?: LocationUpdateOneWithoutResidenceProfilesNestedInput
26638
+ }
26639
+
26640
+ export type ProfileUncheckedUpdateWithoutTicketInput = {
26641
+ id?: StringFieldUpdateOperationsInput | string
26642
+ shortId?: IntFieldUpdateOperationsInput | number
26643
+ firstTimeMiExpo?: BoolFieldUpdateOperationsInput | boolean
26644
+ username?: NullableStringFieldUpdateOperationsInput | string | null
26645
+ password?: NullableStringFieldUpdateOperationsInput | string | null
26646
+ phoneNumber?: StringFieldUpdateOperationsInput | string
26647
+ isPhoneVerified?: BoolFieldUpdateOperationsInput | boolean
26648
+ secondaryPhoneNumber?: NullableStringFieldUpdateOperationsInput | string | null
26649
+ fullName?: StringFieldUpdateOperationsInput | string
26650
+ firstName?: NullableStringFieldUpdateOperationsInput | string | null
26651
+ gender?: NullableStringFieldUpdateOperationsInput | string | null
26652
+ birthDate?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
26653
+ profilePictureUrl?: NullableStringFieldUpdateOperationsInput | string | null
26654
+ instagram?: NullableStringFieldUpdateOperationsInput | string | null
26655
+ mail?: NullableStringFieldUpdateOperationsInput | string | null
26656
+ dni?: NullableStringFieldUpdateOperationsInput | string | null
26657
+ alternativeNames?: ProfileUpdatealternativeNamesInput | string[]
26658
+ birthLocationId?: NullableStringFieldUpdateOperationsInput | string | null
26659
+ residenceLocationId?: NullableStringFieldUpdateOperationsInput | string | null
26660
+ isInTrash?: BoolFieldUpdateOperationsInput | boolean
26661
+ movedToTrashDate?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
26662
+ created_at?: DateTimeFieldUpdateOperationsInput | Date | string
26663
+ updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
26664
+ otp?: OtpUncheckedUpdateManyWithoutOwnerNestedInput
26665
+ comments?: CommentUncheckedUpdateManyWithoutProfileNestedInput
26666
+ messages?: MessageUncheckedUpdateManyWithoutProfileNestedInput
26667
+ tags?: TagUncheckedUpdateManyWithoutProfilesNestedInput
26668
+ }
26669
+
26300
26670
  export type EventCreateWithoutEventTicketsInput = {
26301
26671
  id?: string
26302
26672
  name: string
26303
26673
  date: Date | string
26304
- startingDate: Date | string
26305
- endingDate: Date | string
26674
+ startingDate?: Date | string
26675
+ endingDate?: Date | string
26306
26676
  location: string
26307
26677
  active?: boolean
26308
26678
  created_at?: Date | string
@@ -26320,8 +26690,8 @@ export namespace Prisma {
26320
26690
  id?: string
26321
26691
  name: string
26322
26692
  date: Date | string
26323
- startingDate: Date | string
26324
- endingDate: Date | string
26693
+ startingDate?: Date | string
26694
+ endingDate?: Date | string
26325
26695
  location: string
26326
26696
  folderId?: string | null
26327
26697
  tagAssistedId: string
@@ -26588,6 +26958,17 @@ export namespace Prisma {
26588
26958
  updated_at?: Date | string
26589
26959
  }
26590
26960
 
26961
+ export type TicketCreateManyProfileInput = {
26962
+ id?: string
26963
+ eventId: string
26964
+ type: $Enums.TicketType
26965
+ status: $Enums.TicketStatus
26966
+ fullName: string
26967
+ mail: string
26968
+ created_at?: Date | string
26969
+ updated_at?: Date | string
26970
+ }
26971
+
26591
26972
  export type OtpUpdateWithoutOwnerInput = {
26592
26973
  id?: StringFieldUpdateOperationsInput | string
26593
26974
  code?: StringFieldUpdateOperationsInput | string
@@ -26712,6 +27093,39 @@ export namespace Prisma {
26712
27093
  updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
26713
27094
  }
26714
27095
 
27096
+ export type TicketUpdateWithoutProfileInput = {
27097
+ id?: StringFieldUpdateOperationsInput | string
27098
+ type?: EnumTicketTypeFieldUpdateOperationsInput | $Enums.TicketType
27099
+ status?: EnumTicketStatusFieldUpdateOperationsInput | $Enums.TicketStatus
27100
+ fullName?: StringFieldUpdateOperationsInput | string
27101
+ mail?: StringFieldUpdateOperationsInput | string
27102
+ created_at?: DateTimeFieldUpdateOperationsInput | Date | string
27103
+ updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
27104
+ event?: EventUpdateOneRequiredWithoutTicketsNestedInput
27105
+ }
27106
+
27107
+ export type TicketUncheckedUpdateWithoutProfileInput = {
27108
+ id?: StringFieldUpdateOperationsInput | string
27109
+ eventId?: StringFieldUpdateOperationsInput | string
27110
+ type?: EnumTicketTypeFieldUpdateOperationsInput | $Enums.TicketType
27111
+ status?: EnumTicketStatusFieldUpdateOperationsInput | $Enums.TicketStatus
27112
+ fullName?: StringFieldUpdateOperationsInput | string
27113
+ mail?: StringFieldUpdateOperationsInput | string
27114
+ created_at?: DateTimeFieldUpdateOperationsInput | Date | string
27115
+ updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
27116
+ }
27117
+
27118
+ export type TicketUncheckedUpdateManyWithoutProfileInput = {
27119
+ id?: StringFieldUpdateOperationsInput | string
27120
+ eventId?: StringFieldUpdateOperationsInput | string
27121
+ type?: EnumTicketTypeFieldUpdateOperationsInput | $Enums.TicketType
27122
+ status?: EnumTicketStatusFieldUpdateOperationsInput | $Enums.TicketStatus
27123
+ fullName?: StringFieldUpdateOperationsInput | string
27124
+ mail?: StringFieldUpdateOperationsInput | string
27125
+ created_at?: DateTimeFieldUpdateOperationsInput | Date | string
27126
+ updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
27127
+ }
27128
+
26715
27129
  export type ProfileCreateManyBirthLocationInput = {
26716
27130
  id?: string
26717
27131
  shortId: number
@@ -26789,6 +27203,7 @@ export namespace Prisma {
26789
27203
  messages?: MessageUpdateManyWithoutProfileNestedInput
26790
27204
  tags?: TagUpdateManyWithoutProfilesNestedInput
26791
27205
  residenceLocation?: LocationUpdateOneWithoutResidenceProfilesNestedInput
27206
+ Ticket?: TicketUpdateManyWithoutProfileNestedInput
26792
27207
  }
26793
27208
 
26794
27209
  export type ProfileUncheckedUpdateWithoutBirthLocationInput = {
@@ -26818,6 +27233,7 @@ export namespace Prisma {
26818
27233
  comments?: CommentUncheckedUpdateManyWithoutProfileNestedInput
26819
27234
  messages?: MessageUncheckedUpdateManyWithoutProfileNestedInput
26820
27235
  tags?: TagUncheckedUpdateManyWithoutProfilesNestedInput
27236
+ Ticket?: TicketUncheckedUpdateManyWithoutProfileNestedInput
26821
27237
  }
26822
27238
 
26823
27239
  export type ProfileUncheckedUpdateManyWithoutBirthLocationInput = {
@@ -26872,6 +27288,7 @@ export namespace Prisma {
26872
27288
  messages?: MessageUpdateManyWithoutProfileNestedInput
26873
27289
  tags?: TagUpdateManyWithoutProfilesNestedInput
26874
27290
  birthLocation?: LocationUpdateOneWithoutBirthProfilesNestedInput
27291
+ Ticket?: TicketUpdateManyWithoutProfileNestedInput
26875
27292
  }
26876
27293
 
26877
27294
  export type ProfileUncheckedUpdateWithoutResidenceLocationInput = {
@@ -26901,6 +27318,7 @@ export namespace Prisma {
26901
27318
  comments?: CommentUncheckedUpdateManyWithoutProfileNestedInput
26902
27319
  messages?: MessageUncheckedUpdateManyWithoutProfileNestedInput
26903
27320
  tags?: TagUncheckedUpdateManyWithoutProfilesNestedInput
27321
+ Ticket?: TicketUncheckedUpdateManyWithoutProfileNestedInput
26904
27322
  }
26905
27323
 
26906
27324
  export type ProfileUncheckedUpdateManyWithoutResidenceLocationInput = {
@@ -26994,6 +27412,7 @@ export namespace Prisma {
26994
27412
  messages?: MessageUpdateManyWithoutProfileNestedInput
26995
27413
  birthLocation?: LocationUpdateOneWithoutBirthProfilesNestedInput
26996
27414
  residenceLocation?: LocationUpdateOneWithoutResidenceProfilesNestedInput
27415
+ Ticket?: TicketUpdateManyWithoutProfileNestedInput
26997
27416
  }
26998
27417
 
26999
27418
  export type ProfileUncheckedUpdateWithoutTagsInput = {
@@ -27023,6 +27442,7 @@ export namespace Prisma {
27023
27442
  otp?: OtpUncheckedUpdateManyWithoutOwnerNestedInput
27024
27443
  comments?: CommentUncheckedUpdateManyWithoutProfileNestedInput
27025
27444
  messages?: MessageUncheckedUpdateManyWithoutProfileNestedInput
27445
+ Ticket?: TicketUncheckedUpdateManyWithoutProfileNestedInput
27026
27446
  }
27027
27447
 
27028
27448
  export type ProfileUncheckedUpdateManyWithoutTagsInput = {
@@ -27194,6 +27614,7 @@ export namespace Prisma {
27194
27614
  status: $Enums.TicketStatus
27195
27615
  fullName: string
27196
27616
  mail: string
27617
+ profileId?: string | null
27197
27618
  created_at?: Date | string
27198
27619
  updated_at?: Date | string
27199
27620
  }
@@ -27202,8 +27623,8 @@ export namespace Prisma {
27202
27623
  id?: string
27203
27624
  name: string
27204
27625
  date: Date | string
27205
- startingDate: Date | string
27206
- endingDate: Date | string
27626
+ startingDate?: Date | string
27627
+ endingDate?: Date | string
27207
27628
  location: string
27208
27629
  folderId?: string | null
27209
27630
  tagAssistedId: string
@@ -27230,6 +27651,7 @@ export namespace Prisma {
27230
27651
  mail?: StringFieldUpdateOperationsInput | string
27231
27652
  created_at?: DateTimeFieldUpdateOperationsInput | Date | string
27232
27653
  updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
27654
+ profile?: ProfileUpdateOneWithoutTicketNestedInput
27233
27655
  }
27234
27656
 
27235
27657
  export type TicketUncheckedUpdateWithoutEventInput = {
@@ -27238,6 +27660,7 @@ export namespace Prisma {
27238
27660
  status?: EnumTicketStatusFieldUpdateOperationsInput | $Enums.TicketStatus
27239
27661
  fullName?: StringFieldUpdateOperationsInput | string
27240
27662
  mail?: StringFieldUpdateOperationsInput | string
27663
+ profileId?: NullableStringFieldUpdateOperationsInput | string | null
27241
27664
  created_at?: DateTimeFieldUpdateOperationsInput | Date | string
27242
27665
  updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
27243
27666
  }
@@ -27248,6 +27671,7 @@ export namespace Prisma {
27248
27671
  status?: EnumTicketStatusFieldUpdateOperationsInput | $Enums.TicketStatus
27249
27672
  fullName?: StringFieldUpdateOperationsInput | string
27250
27673
  mail?: StringFieldUpdateOperationsInput | string
27674
+ profileId?: NullableStringFieldUpdateOperationsInput | string | null
27251
27675
  created_at?: DateTimeFieldUpdateOperationsInput | Date | string
27252
27676
  updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
27253
27677
  }
@@ -27373,8 +27797,8 @@ export namespace Prisma {
27373
27797
  id?: string
27374
27798
  name: string
27375
27799
  date: Date | string
27376
- startingDate: Date | string
27377
- endingDate: Date | string
27800
+ startingDate?: Date | string
27801
+ endingDate?: Date | string
27378
27802
  location: string
27379
27803
  tagAssistedId: string
27380
27804
  tagConfirmedId: string