expo-backend-types 0.34.0 → 0.35.0

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.
Files changed (67) hide show
  1. package/dist/src/account/dto/account.dto.d.ts +6 -4
  2. package/dist/src/account/dto/create-account.dto.d.ts +12 -8
  3. package/dist/src/account/dto/get-global-filter.dto.d.ts +1 -0
  4. package/dist/src/account/dto/get-me.dto.d.ts +6 -4
  5. package/dist/src/account/dto/update-global-filter.dto.d.ts +6 -4
  6. package/dist/src/auth/dto/login.dto.d.ts +11 -8
  7. package/dist/src/comment/dto/get-by-profile-comment.dto.d.ts +1 -0
  8. package/dist/src/event/dto/create-event.dto.d.ts +10 -10
  9. package/dist/src/event/dto/event-tickets.dto.d.ts +3 -3
  10. package/dist/src/event/dto/event-tickets.dto.js +5 -2
  11. package/dist/src/event/dto/get-active-events.dto.d.ts +14 -14
  12. package/dist/src/event/dto/get-all-event.dto.d.ts +616 -0
  13. package/dist/src/event/dto/get-all-event.dto.js +29 -8
  14. package/dist/src/event/dto/get-by-id-event.dto.d.ts +317 -10
  15. package/dist/src/event/dto/get-by-id-event.dto.js +4 -0
  16. package/dist/src/event/dto/update-event.dto.d.ts +26 -20
  17. package/dist/src/event/dto/update-event.dto.js +1 -0
  18. package/dist/src/i18n/es.d.ts +14 -0
  19. package/dist/src/i18n/es.js +14 -0
  20. package/dist/src/i18n/es.js.map +1 -1
  21. package/dist/src/mi-expo/dto/get-invitations.dto.d.ts +104 -0
  22. package/dist/src/mi-expo/dto/get-invitations.dto.js +24 -0
  23. package/dist/src/mi-expo/dto/get-me.dto.d.ts +16 -0
  24. package/dist/src/mi-expo/dto/login-with-phone.dto.d.ts +20 -0
  25. package/dist/src/mi-expo/dto/login.dto.d.ts +21 -0
  26. package/dist/src/mi-expo/dto/update-me.dto.d.ts +16 -0
  27. package/dist/src/mi-expo/exports.d.ts +1 -0
  28. package/dist/src/mi-expo/exports.js +1 -0
  29. package/dist/src/otp/dto/verify-otp.dto.d.ts +20 -0
  30. package/dist/src/profile/dto/create-profile.dto.d.ts +24 -0
  31. package/dist/src/profile/dto/delete-profile.dto.d.ts +16 -0
  32. package/dist/src/profile/dto/find-all-profile.dto.d.ts +20 -0
  33. package/dist/src/profile/dto/find-by-date-range-profile.dto.d.ts +36 -0
  34. package/dist/src/profile/dto/find-by-id-profile.dto.d.ts +16 -0
  35. package/dist/src/profile/dto/find-by-phone-number.dto.d.ts +16 -0
  36. package/dist/src/profile/dto/find-by-tag-groups-profile.dto.d.ts +20 -0
  37. package/dist/src/profile/dto/find-by-tags-profile.dto.d.ts +55 -1
  38. package/dist/src/profile/dto/find-by-tags-profile.dto.js +2 -0
  39. package/dist/src/profile/dto/find-trash.dto.d.ts +6 -0
  40. package/dist/src/profile/dto/find-with-active-chat.dto.d.ts +20 -0
  41. package/dist/src/profile/dto/profile.dto.d.ts +8 -0
  42. package/dist/src/profile/dto/update-profile.dto.d.ts +16 -0
  43. package/dist/src/schema/profile.schema.d.ts +8 -0
  44. package/dist/src/schema/profile.schema.js +2 -0
  45. package/dist/src/tag/dto/massive-allocation.dto.d.ts +20 -0
  46. package/dist/src/tag/dto/massive-deallocation.dto.d.ts +20 -0
  47. package/dist/src/ticket/dto/create-ticket.dto.d.ts +158 -4
  48. package/dist/src/ticket/dto/create-ticket.dto.js +10 -2
  49. package/dist/src/ticket/dto/find-by-event-ticket.dto.d.ts +370 -0
  50. package/dist/src/ticket/dto/find-by-event-ticket.dto.js +2 -0
  51. package/dist/src/ticket/dto/find-by-id-ticket.dto.d.ts +370 -0
  52. package/dist/src/ticket/dto/find-by-id-ticket.dto.js +2 -0
  53. package/dist/src/ticket/dto/find-by-mail-ticket.dto.d.ts +370 -0
  54. package/dist/src/ticket/dto/find-by-mail-ticket.dto.js +2 -0
  55. package/dist/src/ticket/dto/find-by-profile-id-ticket.dto.d.ts +331 -0
  56. package/dist/src/ticket/dto/find-by-profile-id-ticket.dto.js +19 -0
  57. package/dist/src/ticket/exports.d.ts +1 -0
  58. package/dist/src/ticket/exports.js +1 -0
  59. package/dist/types/prisma-schema/edge.js +7 -4
  60. package/dist/types/prisma-schema/index-browser.js +4 -1
  61. package/dist/types/prisma-schema/index.d.ts +629 -90
  62. package/dist/types/prisma-schema/index.js +7 -4
  63. package/dist/types/prisma-schema/package.json +1 -1
  64. package/dist/types/prisma-schema/schema.prisma +11 -3
  65. package/dist/types/prisma-schema/wasm.js +4 -1
  66. package/dist/types/schema.d.ts +342 -10
  67. package/package.json +1 -1
@@ -91,7 +91,8 @@ export namespace $Enums {
91
91
  export const Role: {
92
92
  USER: 'USER',
93
93
  ADMIN: 'ADMIN',
94
- FORM: 'FORM'
94
+ FORM: 'FORM',
95
+ MI_EXPO: 'MI_EXPO'
95
96
  };
96
97
 
97
98
  export type Role = (typeof Role)[keyof typeof Role]
@@ -2208,6 +2209,7 @@ export namespace Prisma {
2208
2209
  comments: number
2209
2210
  messages: number
2210
2211
  tags: number
2212
+ Ticket: number
2211
2213
  }
2212
2214
 
2213
2215
  export type ProfileCountOutputTypeSelect<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
@@ -2215,6 +2217,7 @@ export namespace Prisma {
2215
2217
  comments?: boolean | ProfileCountOutputTypeCountCommentsArgs
2216
2218
  messages?: boolean | ProfileCountOutputTypeCountMessagesArgs
2217
2219
  tags?: boolean | ProfileCountOutputTypeCountTagsArgs
2220
+ Ticket?: boolean | ProfileCountOutputTypeCountTicketArgs
2218
2221
  }
2219
2222
 
2220
2223
  // Custom InputTypes
@@ -2256,6 +2259,13 @@ export namespace Prisma {
2256
2259
  where?: TagWhereInput
2257
2260
  }
2258
2261
 
2262
+ /**
2263
+ * ProfileCountOutputType without action
2264
+ */
2265
+ export type ProfileCountOutputTypeCountTicketArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
2266
+ where?: TicketWhereInput
2267
+ }
2268
+
2259
2269
 
2260
2270
  /**
2261
2271
  * Count Type LocationCountOutputType
@@ -3691,6 +3701,7 @@ export namespace Prisma {
3691
3701
  export type ProfileMinAggregateOutputType = {
3692
3702
  id: string | null
3693
3703
  shortId: number | null
3704
+ role: $Enums.Role | null
3694
3705
  firstTimeMiExpo: boolean | null
3695
3706
  username: string | null
3696
3707
  password: string | null
@@ -3716,6 +3727,7 @@ export namespace Prisma {
3716
3727
  export type ProfileMaxAggregateOutputType = {
3717
3728
  id: string | null
3718
3729
  shortId: number | null
3730
+ role: $Enums.Role | null
3719
3731
  firstTimeMiExpo: boolean | null
3720
3732
  username: string | null
3721
3733
  password: string | null
@@ -3741,6 +3753,7 @@ export namespace Prisma {
3741
3753
  export type ProfileCountAggregateOutputType = {
3742
3754
  id: number
3743
3755
  shortId: number
3756
+ role: number
3744
3757
  firstTimeMiExpo: number
3745
3758
  username: number
3746
3759
  password: number
@@ -3777,6 +3790,7 @@ export namespace Prisma {
3777
3790
  export type ProfileMinAggregateInputType = {
3778
3791
  id?: true
3779
3792
  shortId?: true
3793
+ role?: true
3780
3794
  firstTimeMiExpo?: true
3781
3795
  username?: true
3782
3796
  password?: true
@@ -3802,6 +3816,7 @@ export namespace Prisma {
3802
3816
  export type ProfileMaxAggregateInputType = {
3803
3817
  id?: true
3804
3818
  shortId?: true
3819
+ role?: true
3805
3820
  firstTimeMiExpo?: true
3806
3821
  username?: true
3807
3822
  password?: true
@@ -3827,6 +3842,7 @@ export namespace Prisma {
3827
3842
  export type ProfileCountAggregateInputType = {
3828
3843
  id?: true
3829
3844
  shortId?: true
3845
+ role?: true
3830
3846
  firstTimeMiExpo?: true
3831
3847
  username?: true
3832
3848
  password?: true
@@ -3940,6 +3956,7 @@ export namespace Prisma {
3940
3956
  export type ProfileGroupByOutputType = {
3941
3957
  id: string
3942
3958
  shortId: number
3959
+ role: $Enums.Role
3943
3960
  firstTimeMiExpo: boolean
3944
3961
  username: string | null
3945
3962
  password: string | null
@@ -3985,6 +4002,7 @@ export namespace Prisma {
3985
4002
  export type ProfileSelect<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetSelect<{
3986
4003
  id?: boolean
3987
4004
  shortId?: boolean
4005
+ role?: boolean
3988
4006
  firstTimeMiExpo?: boolean
3989
4007
  username?: boolean
3990
4008
  password?: boolean
@@ -4012,12 +4030,14 @@ export namespace Prisma {
4012
4030
  tags?: boolean | Profile$tagsArgs<ExtArgs>
4013
4031
  birthLocation?: boolean | Profile$birthLocationArgs<ExtArgs>
4014
4032
  residenceLocation?: boolean | Profile$residenceLocationArgs<ExtArgs>
4033
+ Ticket?: boolean | Profile$TicketArgs<ExtArgs>
4015
4034
  _count?: boolean | ProfileCountOutputTypeDefaultArgs<ExtArgs>
4016
4035
  }, ExtArgs["result"]["profile"]>
4017
4036
 
4018
4037
  export type ProfileSelectCreateManyAndReturn<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetSelect<{
4019
4038
  id?: boolean
4020
4039
  shortId?: boolean
4040
+ role?: boolean
4021
4041
  firstTimeMiExpo?: boolean
4022
4042
  username?: boolean
4023
4043
  password?: boolean
@@ -4046,6 +4066,7 @@ export namespace Prisma {
4046
4066
  export type ProfileSelectUpdateManyAndReturn<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetSelect<{
4047
4067
  id?: boolean
4048
4068
  shortId?: boolean
4069
+ role?: boolean
4049
4070
  firstTimeMiExpo?: boolean
4050
4071
  username?: boolean
4051
4072
  password?: boolean
@@ -4074,6 +4095,7 @@ export namespace Prisma {
4074
4095
  export type ProfileSelectScalar = {
4075
4096
  id?: boolean
4076
4097
  shortId?: boolean
4098
+ role?: boolean
4077
4099
  firstTimeMiExpo?: boolean
4078
4100
  username?: boolean
4079
4101
  password?: boolean
@@ -4097,7 +4119,7 @@ export namespace Prisma {
4097
4119
  updated_at?: boolean
4098
4120
  }
4099
4121
 
4100
- export type ProfileOmit<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetOmit<"id" | "shortId" | "firstTimeMiExpo" | "username" | "password" | "phoneNumber" | "isPhoneVerified" | "secondaryPhoneNumber" | "fullName" | "firstName" | "gender" | "birthDate" | "profilePictureUrl" | "instagram" | "mail" | "dni" | "alternativeNames" | "birthLocationId" | "residenceLocationId" | "isInTrash" | "movedToTrashDate" | "created_at" | "updated_at", ExtArgs["result"]["profile"]>
4122
+ export type ProfileOmit<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetOmit<"id" | "shortId" | "role" | "firstTimeMiExpo" | "username" | "password" | "phoneNumber" | "isPhoneVerified" | "secondaryPhoneNumber" | "fullName" | "firstName" | "gender" | "birthDate" | "profilePictureUrl" | "instagram" | "mail" | "dni" | "alternativeNames" | "birthLocationId" | "residenceLocationId" | "isInTrash" | "movedToTrashDate" | "created_at" | "updated_at", ExtArgs["result"]["profile"]>
4101
4123
  export type ProfileInclude<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
4102
4124
  otp?: boolean | Profile$otpArgs<ExtArgs>
4103
4125
  comments?: boolean | Profile$commentsArgs<ExtArgs>
@@ -4105,6 +4127,7 @@ export namespace Prisma {
4105
4127
  tags?: boolean | Profile$tagsArgs<ExtArgs>
4106
4128
  birthLocation?: boolean | Profile$birthLocationArgs<ExtArgs>
4107
4129
  residenceLocation?: boolean | Profile$residenceLocationArgs<ExtArgs>
4130
+ Ticket?: boolean | Profile$TicketArgs<ExtArgs>
4108
4131
  _count?: boolean | ProfileCountOutputTypeDefaultArgs<ExtArgs>
4109
4132
  }
4110
4133
  export type ProfileIncludeCreateManyAndReturn<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
@@ -4125,10 +4148,12 @@ export namespace Prisma {
4125
4148
  tags: Prisma.$TagPayload<ExtArgs>[]
4126
4149
  birthLocation: Prisma.$LocationPayload<ExtArgs> | null
4127
4150
  residenceLocation: Prisma.$LocationPayload<ExtArgs> | null
4151
+ Ticket: Prisma.$TicketPayload<ExtArgs>[]
4128
4152
  }
4129
4153
  scalars: $Extensions.GetPayloadResult<{
4130
4154
  id: string
4131
4155
  shortId: number
4156
+ role: $Enums.Role
4132
4157
  firstTimeMiExpo: boolean
4133
4158
  username: string | null
4134
4159
  password: string | null
@@ -4550,6 +4575,7 @@ export namespace Prisma {
4550
4575
  tags<T extends Profile$tagsArgs<ExtArgs> = {}>(args?: Subset<T, Profile$tagsArgs<ExtArgs>>): Prisma.PrismaPromise<$Result.GetResult<Prisma.$TagPayload<ExtArgs>, T, "findMany", ClientOptions> | Null>
4551
4576
  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
4577
  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>
4578
+ Ticket<T extends Profile$TicketArgs<ExtArgs> = {}>(args?: Subset<T, Profile$TicketArgs<ExtArgs>>): Prisma.PrismaPromise<$Result.GetResult<Prisma.$TicketPayload<ExtArgs>, T, "findMany", ClientOptions> | Null>
4553
4579
  /**
4554
4580
  * Attaches callbacks for the resolution and/or rejection of the Promise.
4555
4581
  * @param onfulfilled The callback to execute when the Promise is resolved.
@@ -4581,6 +4607,7 @@ export namespace Prisma {
4581
4607
  interface ProfileFieldRefs {
4582
4608
  readonly id: FieldRef<"Profile", 'String'>
4583
4609
  readonly shortId: FieldRef<"Profile", 'Int'>
4610
+ readonly role: FieldRef<"Profile", 'Role'>
4584
4611
  readonly firstTimeMiExpo: FieldRef<"Profile", 'Boolean'>
4585
4612
  readonly username: FieldRef<"Profile", 'String'>
4586
4613
  readonly password: FieldRef<"Profile", 'String'>
@@ -5131,6 +5158,30 @@ export namespace Prisma {
5131
5158
  where?: LocationWhereInput
5132
5159
  }
5133
5160
 
5161
+ /**
5162
+ * Profile.Ticket
5163
+ */
5164
+ export type Profile$TicketArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
5165
+ /**
5166
+ * Select specific fields to fetch from the Ticket
5167
+ */
5168
+ select?: TicketSelect<ExtArgs> | null
5169
+ /**
5170
+ * Omit specific fields from the Ticket
5171
+ */
5172
+ omit?: TicketOmit<ExtArgs> | null
5173
+ /**
5174
+ * Choose, which related nodes to fetch as well
5175
+ */
5176
+ include?: TicketInclude<ExtArgs> | null
5177
+ where?: TicketWhereInput
5178
+ orderBy?: TicketOrderByWithRelationInput | TicketOrderByWithRelationInput[]
5179
+ cursor?: TicketWhereUniqueInput
5180
+ take?: number
5181
+ skip?: number
5182
+ distinct?: TicketScalarFieldEnum | TicketScalarFieldEnum[]
5183
+ }
5184
+
5134
5185
  /**
5135
5186
  * Profile without action
5136
5187
  */
@@ -15368,6 +15419,7 @@ export namespace Prisma {
15368
15419
  status: $Enums.TicketStatus | null
15369
15420
  fullName: string | null
15370
15421
  mail: string | null
15422
+ profileId: string | null
15371
15423
  created_at: Date | null
15372
15424
  updated_at: Date | null
15373
15425
  }
@@ -15379,6 +15431,7 @@ export namespace Prisma {
15379
15431
  status: $Enums.TicketStatus | null
15380
15432
  fullName: string | null
15381
15433
  mail: string | null
15434
+ profileId: string | null
15382
15435
  created_at: Date | null
15383
15436
  updated_at: Date | null
15384
15437
  }
@@ -15390,6 +15443,7 @@ export namespace Prisma {
15390
15443
  status: number
15391
15444
  fullName: number
15392
15445
  mail: number
15446
+ profileId: number
15393
15447
  created_at: number
15394
15448
  updated_at: number
15395
15449
  _all: number
@@ -15403,6 +15457,7 @@ export namespace Prisma {
15403
15457
  status?: true
15404
15458
  fullName?: true
15405
15459
  mail?: true
15460
+ profileId?: true
15406
15461
  created_at?: true
15407
15462
  updated_at?: true
15408
15463
  }
@@ -15414,6 +15469,7 @@ export namespace Prisma {
15414
15469
  status?: true
15415
15470
  fullName?: true
15416
15471
  mail?: true
15472
+ profileId?: true
15417
15473
  created_at?: true
15418
15474
  updated_at?: true
15419
15475
  }
@@ -15425,6 +15481,7 @@ export namespace Prisma {
15425
15481
  status?: true
15426
15482
  fullName?: true
15427
15483
  mail?: true
15484
+ profileId?: true
15428
15485
  created_at?: true
15429
15486
  updated_at?: true
15430
15487
  _all?: true
@@ -15509,6 +15566,7 @@ export namespace Prisma {
15509
15566
  status: $Enums.TicketStatus
15510
15567
  fullName: string
15511
15568
  mail: string
15569
+ profileId: string | null
15512
15570
  created_at: Date
15513
15571
  updated_at: Date
15514
15572
  _count: TicketCountAggregateOutputType | null
@@ -15537,9 +15595,11 @@ export namespace Prisma {
15537
15595
  status?: boolean
15538
15596
  fullName?: boolean
15539
15597
  mail?: boolean
15598
+ profileId?: boolean
15540
15599
  created_at?: boolean
15541
15600
  updated_at?: boolean
15542
15601
  event?: boolean | EventDefaultArgs<ExtArgs>
15602
+ profile?: boolean | Ticket$profileArgs<ExtArgs>
15543
15603
  }, ExtArgs["result"]["ticket"]>
15544
15604
 
15545
15605
  export type TicketSelectCreateManyAndReturn<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetSelect<{
@@ -15549,9 +15609,11 @@ export namespace Prisma {
15549
15609
  status?: boolean
15550
15610
  fullName?: boolean
15551
15611
  mail?: boolean
15612
+ profileId?: boolean
15552
15613
  created_at?: boolean
15553
15614
  updated_at?: boolean
15554
15615
  event?: boolean | EventDefaultArgs<ExtArgs>
15616
+ profile?: boolean | Ticket$profileArgs<ExtArgs>
15555
15617
  }, ExtArgs["result"]["ticket"]>
15556
15618
 
15557
15619
  export type TicketSelectUpdateManyAndReturn<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetSelect<{
@@ -15561,9 +15623,11 @@ export namespace Prisma {
15561
15623
  status?: boolean
15562
15624
  fullName?: boolean
15563
15625
  mail?: boolean
15626
+ profileId?: boolean
15564
15627
  created_at?: boolean
15565
15628
  updated_at?: boolean
15566
15629
  event?: boolean | EventDefaultArgs<ExtArgs>
15630
+ profile?: boolean | Ticket$profileArgs<ExtArgs>
15567
15631
  }, ExtArgs["result"]["ticket"]>
15568
15632
 
15569
15633
  export type TicketSelectScalar = {
@@ -15573,25 +15637,30 @@ export namespace Prisma {
15573
15637
  status?: boolean
15574
15638
  fullName?: boolean
15575
15639
  mail?: boolean
15640
+ profileId?: boolean
15576
15641
  created_at?: boolean
15577
15642
  updated_at?: boolean
15578
15643
  }
15579
15644
 
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"]>
15645
+ 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
15646
  export type TicketInclude<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
15582
15647
  event?: boolean | EventDefaultArgs<ExtArgs>
15648
+ profile?: boolean | Ticket$profileArgs<ExtArgs>
15583
15649
  }
15584
15650
  export type TicketIncludeCreateManyAndReturn<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
15585
15651
  event?: boolean | EventDefaultArgs<ExtArgs>
15652
+ profile?: boolean | Ticket$profileArgs<ExtArgs>
15586
15653
  }
15587
15654
  export type TicketIncludeUpdateManyAndReturn<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
15588
15655
  event?: boolean | EventDefaultArgs<ExtArgs>
15656
+ profile?: boolean | Ticket$profileArgs<ExtArgs>
15589
15657
  }
15590
15658
 
15591
15659
  export type $TicketPayload<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
15592
15660
  name: "Ticket"
15593
15661
  objects: {
15594
15662
  event: Prisma.$EventPayload<ExtArgs>
15663
+ profile: Prisma.$ProfilePayload<ExtArgs> | null
15595
15664
  }
15596
15665
  scalars: $Extensions.GetPayloadResult<{
15597
15666
  id: string
@@ -15600,6 +15669,7 @@ export namespace Prisma {
15600
15669
  status: $Enums.TicketStatus
15601
15670
  fullName: string
15602
15671
  mail: string
15672
+ profileId: string | null
15603
15673
  created_at: Date
15604
15674
  updated_at: Date
15605
15675
  }, ExtArgs["result"]["ticket"]>
@@ -15997,6 +16067,7 @@ export namespace Prisma {
15997
16067
  export interface Prisma__TicketClient<T, Null = never, ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs, ClientOptions = {}> extends Prisma.PrismaPromise<T> {
15998
16068
  readonly [Symbol.toStringTag]: "PrismaPromise"
15999
16069
  event<T extends EventDefaultArgs<ExtArgs> = {}>(args?: Subset<T, EventDefaultArgs<ExtArgs>>): Prisma__EventClient<$Result.GetResult<Prisma.$EventPayload<ExtArgs>, T, "findUniqueOrThrow", ClientOptions> | Null, Null, ExtArgs, ClientOptions>
16070
+ 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
16071
  /**
16001
16072
  * Attaches callbacks for the resolution and/or rejection of the Promise.
16002
16073
  * @param onfulfilled The callback to execute when the Promise is resolved.
@@ -16032,6 +16103,7 @@ export namespace Prisma {
16032
16103
  readonly status: FieldRef<"Ticket", 'TicketStatus'>
16033
16104
  readonly fullName: FieldRef<"Ticket", 'String'>
16034
16105
  readonly mail: FieldRef<"Ticket", 'String'>
16106
+ readonly profileId: FieldRef<"Ticket", 'String'>
16035
16107
  readonly created_at: FieldRef<"Ticket", 'DateTime'>
16036
16108
  readonly updated_at: FieldRef<"Ticket", 'DateTime'>
16037
16109
  }
@@ -16429,6 +16501,25 @@ export namespace Prisma {
16429
16501
  limit?: number
16430
16502
  }
16431
16503
 
16504
+ /**
16505
+ * Ticket.profile
16506
+ */
16507
+ export type Ticket$profileArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
16508
+ /**
16509
+ * Select specific fields to fetch from the Profile
16510
+ */
16511
+ select?: ProfileSelect<ExtArgs> | null
16512
+ /**
16513
+ * Omit specific fields from the Profile
16514
+ */
16515
+ omit?: ProfileOmit<ExtArgs> | null
16516
+ /**
16517
+ * Choose, which related nodes to fetch as well
16518
+ */
16519
+ include?: ProfileInclude<ExtArgs> | null
16520
+ where?: ProfileWhereInput
16521
+ }
16522
+
16432
16523
  /**
16433
16524
  * Ticket without action
16434
16525
  */
@@ -17601,7 +17692,7 @@ export namespace Prisma {
17601
17692
  export type EventTicketGroupByOutputType = {
17602
17693
  id: string
17603
17694
  eventId: string
17604
- amount: number
17695
+ amount: number | null
17605
17696
  type: $Enums.TicketType
17606
17697
  price: number | null
17607
17698
  created_at: Date
@@ -17689,7 +17780,7 @@ export namespace Prisma {
17689
17780
  scalars: $Extensions.GetPayloadResult<{
17690
17781
  id: string
17691
17782
  eventId: string
17692
- amount: number
17783
+ amount: number | null
17693
17784
  type: $Enums.TicketType
17694
17785
  price: number | null
17695
17786
  created_at: Date
@@ -18570,6 +18661,7 @@ export namespace Prisma {
18570
18661
  export const ProfileScalarFieldEnum: {
18571
18662
  id: 'id',
18572
18663
  shortId: 'shortId',
18664
+ role: 'role',
18573
18665
  firstTimeMiExpo: 'firstTimeMiExpo',
18574
18666
  username: 'username',
18575
18667
  password: 'password',
@@ -18723,6 +18815,7 @@ export namespace Prisma {
18723
18815
  status: 'status',
18724
18816
  fullName: 'fullName',
18725
18817
  mail: 'mail',
18818
+ profileId: 'profileId',
18726
18819
  created_at: 'created_at',
18727
18820
  updated_at: 'updated_at'
18728
18821
  };
@@ -19060,6 +19153,7 @@ export namespace Prisma {
19060
19153
  NOT?: ProfileWhereInput | ProfileWhereInput[]
19061
19154
  id?: StringFilter<"Profile"> | string
19062
19155
  shortId?: IntFilter<"Profile"> | number
19156
+ role?: EnumRoleFilter<"Profile"> | $Enums.Role
19063
19157
  firstTimeMiExpo?: BoolFilter<"Profile"> | boolean
19064
19158
  username?: StringNullableFilter<"Profile"> | string | null
19065
19159
  password?: StringNullableFilter<"Profile"> | string | null
@@ -19087,11 +19181,13 @@ export namespace Prisma {
19087
19181
  tags?: TagListRelationFilter
19088
19182
  birthLocation?: XOR<LocationNullableScalarRelationFilter, LocationWhereInput> | null
19089
19183
  residenceLocation?: XOR<LocationNullableScalarRelationFilter, LocationWhereInput> | null
19184
+ Ticket?: TicketListRelationFilter
19090
19185
  }
19091
19186
 
19092
19187
  export type ProfileOrderByWithRelationInput = {
19093
19188
  id?: SortOrder
19094
19189
  shortId?: SortOrder
19190
+ role?: SortOrder
19095
19191
  firstTimeMiExpo?: SortOrder
19096
19192
  username?: SortOrderInput | SortOrder
19097
19193
  password?: SortOrderInput | SortOrder
@@ -19119,6 +19215,7 @@ export namespace Prisma {
19119
19215
  tags?: TagOrderByRelationAggregateInput
19120
19216
  birthLocation?: LocationOrderByWithRelationInput
19121
19217
  residenceLocation?: LocationOrderByWithRelationInput
19218
+ Ticket?: TicketOrderByRelationAggregateInput
19122
19219
  }
19123
19220
 
19124
19221
  export type ProfileWhereUniqueInput = Prisma.AtLeast<{
@@ -19130,6 +19227,7 @@ export namespace Prisma {
19130
19227
  OR?: ProfileWhereInput[]
19131
19228
  NOT?: ProfileWhereInput | ProfileWhereInput[]
19132
19229
  shortId?: IntFilter<"Profile"> | number
19230
+ role?: EnumRoleFilter<"Profile"> | $Enums.Role
19133
19231
  firstTimeMiExpo?: BoolFilter<"Profile"> | boolean
19134
19232
  password?: StringNullableFilter<"Profile"> | string | null
19135
19233
  isPhoneVerified?: BoolFilter<"Profile"> | boolean
@@ -19154,11 +19252,13 @@ export namespace Prisma {
19154
19252
  tags?: TagListRelationFilter
19155
19253
  birthLocation?: XOR<LocationNullableScalarRelationFilter, LocationWhereInput> | null
19156
19254
  residenceLocation?: XOR<LocationNullableScalarRelationFilter, LocationWhereInput> | null
19255
+ Ticket?: TicketListRelationFilter
19157
19256
  }, "id" | "username" | "phoneNumber" | "secondaryPhoneNumber">
19158
19257
 
19159
19258
  export type ProfileOrderByWithAggregationInput = {
19160
19259
  id?: SortOrder
19161
19260
  shortId?: SortOrder
19261
+ role?: SortOrder
19162
19262
  firstTimeMiExpo?: SortOrder
19163
19263
  username?: SortOrderInput | SortOrder
19164
19264
  password?: SortOrderInput | SortOrder
@@ -19193,6 +19293,7 @@ export namespace Prisma {
19193
19293
  NOT?: ProfileScalarWhereWithAggregatesInput | ProfileScalarWhereWithAggregatesInput[]
19194
19294
  id?: StringWithAggregatesFilter<"Profile"> | string
19195
19295
  shortId?: IntWithAggregatesFilter<"Profile"> | number
19296
+ role?: EnumRoleWithAggregatesFilter<"Profile"> | $Enums.Role
19196
19297
  firstTimeMiExpo?: BoolWithAggregatesFilter<"Profile"> | boolean
19197
19298
  username?: StringNullableWithAggregatesFilter<"Profile"> | string | null
19198
19299
  password?: StringNullableWithAggregatesFilter<"Profile"> | string | null
@@ -19874,9 +19975,11 @@ export namespace Prisma {
19874
19975
  status?: EnumTicketStatusFilter<"Ticket"> | $Enums.TicketStatus
19875
19976
  fullName?: StringFilter<"Ticket"> | string
19876
19977
  mail?: StringFilter<"Ticket"> | string
19978
+ profileId?: StringNullableFilter<"Ticket"> | string | null
19877
19979
  created_at?: DateTimeFilter<"Ticket"> | Date | string
19878
19980
  updated_at?: DateTimeFilter<"Ticket"> | Date | string
19879
19981
  event?: XOR<EventScalarRelationFilter, EventWhereInput>
19982
+ profile?: XOR<ProfileNullableScalarRelationFilter, ProfileWhereInput> | null
19880
19983
  }
19881
19984
 
19882
19985
  export type TicketOrderByWithRelationInput = {
@@ -19886,9 +19989,11 @@ export namespace Prisma {
19886
19989
  status?: SortOrder
19887
19990
  fullName?: SortOrder
19888
19991
  mail?: SortOrder
19992
+ profileId?: SortOrderInput | SortOrder
19889
19993
  created_at?: SortOrder
19890
19994
  updated_at?: SortOrder
19891
19995
  event?: EventOrderByWithRelationInput
19996
+ profile?: ProfileOrderByWithRelationInput
19892
19997
  }
19893
19998
 
19894
19999
  export type TicketWhereUniqueInput = Prisma.AtLeast<{
@@ -19901,9 +20006,11 @@ export namespace Prisma {
19901
20006
  status?: EnumTicketStatusFilter<"Ticket"> | $Enums.TicketStatus
19902
20007
  fullName?: StringFilter<"Ticket"> | string
19903
20008
  mail?: StringFilter<"Ticket"> | string
20009
+ profileId?: StringNullableFilter<"Ticket"> | string | null
19904
20010
  created_at?: DateTimeFilter<"Ticket"> | Date | string
19905
20011
  updated_at?: DateTimeFilter<"Ticket"> | Date | string
19906
20012
  event?: XOR<EventScalarRelationFilter, EventWhereInput>
20013
+ profile?: XOR<ProfileNullableScalarRelationFilter, ProfileWhereInput> | null
19907
20014
  }, "id">
19908
20015
 
19909
20016
  export type TicketOrderByWithAggregationInput = {
@@ -19913,6 +20020,7 @@ export namespace Prisma {
19913
20020
  status?: SortOrder
19914
20021
  fullName?: SortOrder
19915
20022
  mail?: SortOrder
20023
+ profileId?: SortOrderInput | SortOrder
19916
20024
  created_at?: SortOrder
19917
20025
  updated_at?: SortOrder
19918
20026
  _count?: TicketCountOrderByAggregateInput
@@ -19930,6 +20038,7 @@ export namespace Prisma {
19930
20038
  status?: EnumTicketStatusWithAggregatesFilter<"Ticket"> | $Enums.TicketStatus
19931
20039
  fullName?: StringWithAggregatesFilter<"Ticket"> | string
19932
20040
  mail?: StringWithAggregatesFilter<"Ticket"> | string
20041
+ profileId?: StringNullableWithAggregatesFilter<"Ticket"> | string | null
19933
20042
  created_at?: DateTimeWithAggregatesFilter<"Ticket"> | Date | string
19934
20043
  updated_at?: DateTimeWithAggregatesFilter<"Ticket"> | Date | string
19935
20044
  }
@@ -19982,7 +20091,7 @@ export namespace Prisma {
19982
20091
  NOT?: EventTicketWhereInput | EventTicketWhereInput[]
19983
20092
  id?: StringFilter<"EventTicket"> | string
19984
20093
  eventId?: StringFilter<"EventTicket"> | string
19985
- amount?: IntFilter<"EventTicket"> | number
20094
+ amount?: IntNullableFilter<"EventTicket"> | number | null
19986
20095
  type?: EnumTicketTypeFilter<"EventTicket"> | $Enums.TicketType
19987
20096
  price?: FloatNullableFilter<"EventTicket"> | number | null
19988
20097
  created_at?: DateTimeFilter<"EventTicket"> | Date | string
@@ -19993,7 +20102,7 @@ export namespace Prisma {
19993
20102
  export type EventTicketOrderByWithRelationInput = {
19994
20103
  id?: SortOrder
19995
20104
  eventId?: SortOrder
19996
- amount?: SortOrder
20105
+ amount?: SortOrderInput | SortOrder
19997
20106
  type?: SortOrder
19998
20107
  price?: SortOrderInput | SortOrder
19999
20108
  created_at?: SortOrder
@@ -20007,7 +20116,7 @@ export namespace Prisma {
20007
20116
  OR?: EventTicketWhereInput[]
20008
20117
  NOT?: EventTicketWhereInput | EventTicketWhereInput[]
20009
20118
  eventId?: StringFilter<"EventTicket"> | string
20010
- amount?: IntFilter<"EventTicket"> | number
20119
+ amount?: IntNullableFilter<"EventTicket"> | number | null
20011
20120
  type?: EnumTicketTypeFilter<"EventTicket"> | $Enums.TicketType
20012
20121
  price?: FloatNullableFilter<"EventTicket"> | number | null
20013
20122
  created_at?: DateTimeFilter<"EventTicket"> | Date | string
@@ -20018,7 +20127,7 @@ export namespace Prisma {
20018
20127
  export type EventTicketOrderByWithAggregationInput = {
20019
20128
  id?: SortOrder
20020
20129
  eventId?: SortOrder
20021
- amount?: SortOrder
20130
+ amount?: SortOrderInput | SortOrder
20022
20131
  type?: SortOrder
20023
20132
  price?: SortOrderInput | SortOrder
20024
20133
  created_at?: SortOrder
@@ -20036,7 +20145,7 @@ export namespace Prisma {
20036
20145
  NOT?: EventTicketScalarWhereWithAggregatesInput | EventTicketScalarWhereWithAggregatesInput[]
20037
20146
  id?: StringWithAggregatesFilter<"EventTicket"> | string
20038
20147
  eventId?: StringWithAggregatesFilter<"EventTicket"> | string
20039
- amount?: IntWithAggregatesFilter<"EventTicket"> | number
20148
+ amount?: IntNullableWithAggregatesFilter<"EventTicket"> | number | null
20040
20149
  type?: EnumTicketTypeWithAggregatesFilter<"EventTicket"> | $Enums.TicketType
20041
20150
  price?: FloatNullableWithAggregatesFilter<"EventTicket"> | number | null
20042
20151
  created_at?: DateTimeWithAggregatesFilter<"EventTicket"> | Date | string
@@ -20139,6 +20248,7 @@ export namespace Prisma {
20139
20248
  export type ProfileCreateInput = {
20140
20249
  id?: string
20141
20250
  shortId: number
20251
+ role?: $Enums.Role
20142
20252
  firstTimeMiExpo?: boolean
20143
20253
  username?: string | null
20144
20254
  password?: string | null
@@ -20164,11 +20274,13 @@ export namespace Prisma {
20164
20274
  tags?: TagCreateNestedManyWithoutProfilesInput
20165
20275
  birthLocation?: LocationCreateNestedOneWithoutBirthProfilesInput
20166
20276
  residenceLocation?: LocationCreateNestedOneWithoutResidenceProfilesInput
20277
+ Ticket?: TicketCreateNestedManyWithoutProfileInput
20167
20278
  }
20168
20279
 
20169
20280
  export type ProfileUncheckedCreateInput = {
20170
20281
  id?: string
20171
20282
  shortId: number
20283
+ role?: $Enums.Role
20172
20284
  firstTimeMiExpo?: boolean
20173
20285
  username?: string | null
20174
20286
  password?: string | null
@@ -20194,11 +20306,13 @@ export namespace Prisma {
20194
20306
  comments?: CommentUncheckedCreateNestedManyWithoutProfileInput
20195
20307
  messages?: MessageUncheckedCreateNestedManyWithoutProfileInput
20196
20308
  tags?: TagUncheckedCreateNestedManyWithoutProfilesInput
20309
+ Ticket?: TicketUncheckedCreateNestedManyWithoutProfileInput
20197
20310
  }
20198
20311
 
20199
20312
  export type ProfileUpdateInput = {
20200
20313
  id?: StringFieldUpdateOperationsInput | string
20201
20314
  shortId?: IntFieldUpdateOperationsInput | number
20315
+ role?: EnumRoleFieldUpdateOperationsInput | $Enums.Role
20202
20316
  firstTimeMiExpo?: BoolFieldUpdateOperationsInput | boolean
20203
20317
  username?: NullableStringFieldUpdateOperationsInput | string | null
20204
20318
  password?: NullableStringFieldUpdateOperationsInput | string | null
@@ -20224,11 +20338,13 @@ export namespace Prisma {
20224
20338
  tags?: TagUpdateManyWithoutProfilesNestedInput
20225
20339
  birthLocation?: LocationUpdateOneWithoutBirthProfilesNestedInput
20226
20340
  residenceLocation?: LocationUpdateOneWithoutResidenceProfilesNestedInput
20341
+ Ticket?: TicketUpdateManyWithoutProfileNestedInput
20227
20342
  }
20228
20343
 
20229
20344
  export type ProfileUncheckedUpdateInput = {
20230
20345
  id?: StringFieldUpdateOperationsInput | string
20231
20346
  shortId?: IntFieldUpdateOperationsInput | number
20347
+ role?: EnumRoleFieldUpdateOperationsInput | $Enums.Role
20232
20348
  firstTimeMiExpo?: BoolFieldUpdateOperationsInput | boolean
20233
20349
  username?: NullableStringFieldUpdateOperationsInput | string | null
20234
20350
  password?: NullableStringFieldUpdateOperationsInput | string | null
@@ -20254,11 +20370,13 @@ export namespace Prisma {
20254
20370
  comments?: CommentUncheckedUpdateManyWithoutProfileNestedInput
20255
20371
  messages?: MessageUncheckedUpdateManyWithoutProfileNestedInput
20256
20372
  tags?: TagUncheckedUpdateManyWithoutProfilesNestedInput
20373
+ Ticket?: TicketUncheckedUpdateManyWithoutProfileNestedInput
20257
20374
  }
20258
20375
 
20259
20376
  export type ProfileCreateManyInput = {
20260
20377
  id?: string
20261
20378
  shortId: number
20379
+ role?: $Enums.Role
20262
20380
  firstTimeMiExpo?: boolean
20263
20381
  username?: string | null
20264
20382
  password?: string | null
@@ -20285,6 +20403,7 @@ export namespace Prisma {
20285
20403
  export type ProfileUpdateManyMutationInput = {
20286
20404
  id?: StringFieldUpdateOperationsInput | string
20287
20405
  shortId?: IntFieldUpdateOperationsInput | number
20406
+ role?: EnumRoleFieldUpdateOperationsInput | $Enums.Role
20288
20407
  firstTimeMiExpo?: BoolFieldUpdateOperationsInput | boolean
20289
20408
  username?: NullableStringFieldUpdateOperationsInput | string | null
20290
20409
  password?: NullableStringFieldUpdateOperationsInput | string | null
@@ -20309,6 +20428,7 @@ export namespace Prisma {
20309
20428
  export type ProfileUncheckedUpdateManyInput = {
20310
20429
  id?: StringFieldUpdateOperationsInput | string
20311
20430
  shortId?: IntFieldUpdateOperationsInput | number
20431
+ role?: EnumRoleFieldUpdateOperationsInput | $Enums.Role
20312
20432
  firstTimeMiExpo?: BoolFieldUpdateOperationsInput | boolean
20313
20433
  username?: NullableStringFieldUpdateOperationsInput | string | null
20314
20434
  password?: NullableStringFieldUpdateOperationsInput | string | null
@@ -20724,8 +20844,8 @@ export namespace Prisma {
20724
20844
  id?: string
20725
20845
  name: string
20726
20846
  date: Date | string
20727
- startingDate: Date | string
20728
- endingDate: Date | string
20847
+ startingDate?: Date | string
20848
+ endingDate?: Date | string
20729
20849
  location: string
20730
20850
  active?: boolean
20731
20851
  created_at?: Date | string
@@ -20744,8 +20864,8 @@ export namespace Prisma {
20744
20864
  id?: string
20745
20865
  name: string
20746
20866
  date: Date | string
20747
- startingDate: Date | string
20748
- endingDate: Date | string
20867
+ startingDate?: Date | string
20868
+ endingDate?: Date | string
20749
20869
  location: string
20750
20870
  folderId?: string | null
20751
20871
  tagAssistedId: string
@@ -20804,8 +20924,8 @@ export namespace Prisma {
20804
20924
  id?: string
20805
20925
  name: string
20806
20926
  date: Date | string
20807
- startingDate: Date | string
20808
- endingDate: Date | string
20927
+ startingDate?: Date | string
20928
+ endingDate?: Date | string
20809
20929
  location: string
20810
20930
  folderId?: string | null
20811
20931
  tagAssistedId: string
@@ -21038,6 +21158,7 @@ export namespace Prisma {
21038
21158
  created_at?: Date | string
21039
21159
  updated_at?: Date | string
21040
21160
  event: EventCreateNestedOneWithoutTicketsInput
21161
+ profile?: ProfileCreateNestedOneWithoutTicketInput
21041
21162
  }
21042
21163
 
21043
21164
  export type TicketUncheckedCreateInput = {
@@ -21047,6 +21168,7 @@ export namespace Prisma {
21047
21168
  status: $Enums.TicketStatus
21048
21169
  fullName: string
21049
21170
  mail: string
21171
+ profileId?: string | null
21050
21172
  created_at?: Date | string
21051
21173
  updated_at?: Date | string
21052
21174
  }
@@ -21060,6 +21182,7 @@ export namespace Prisma {
21060
21182
  created_at?: DateTimeFieldUpdateOperationsInput | Date | string
21061
21183
  updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
21062
21184
  event?: EventUpdateOneRequiredWithoutTicketsNestedInput
21185
+ profile?: ProfileUpdateOneWithoutTicketNestedInput
21063
21186
  }
21064
21187
 
21065
21188
  export type TicketUncheckedUpdateInput = {
@@ -21069,6 +21192,7 @@ export namespace Prisma {
21069
21192
  status?: EnumTicketStatusFieldUpdateOperationsInput | $Enums.TicketStatus
21070
21193
  fullName?: StringFieldUpdateOperationsInput | string
21071
21194
  mail?: StringFieldUpdateOperationsInput | string
21195
+ profileId?: NullableStringFieldUpdateOperationsInput | string | null
21072
21196
  created_at?: DateTimeFieldUpdateOperationsInput | Date | string
21073
21197
  updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
21074
21198
  }
@@ -21080,6 +21204,7 @@ export namespace Prisma {
21080
21204
  status: $Enums.TicketStatus
21081
21205
  fullName: string
21082
21206
  mail: string
21207
+ profileId?: string | null
21083
21208
  created_at?: Date | string
21084
21209
  updated_at?: Date | string
21085
21210
  }
@@ -21101,6 +21226,7 @@ export namespace Prisma {
21101
21226
  status?: EnumTicketStatusFieldUpdateOperationsInput | $Enums.TicketStatus
21102
21227
  fullName?: StringFieldUpdateOperationsInput | string
21103
21228
  mail?: StringFieldUpdateOperationsInput | string
21229
+ profileId?: NullableStringFieldUpdateOperationsInput | string | null
21104
21230
  created_at?: DateTimeFieldUpdateOperationsInput | Date | string
21105
21231
  updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
21106
21232
  }
@@ -21149,7 +21275,7 @@ export namespace Prisma {
21149
21275
 
21150
21276
  export type EventTicketCreateInput = {
21151
21277
  id?: string
21152
- amount: number
21278
+ amount?: number | null
21153
21279
  type: $Enums.TicketType
21154
21280
  price?: number | null
21155
21281
  created_at?: Date | string
@@ -21160,7 +21286,7 @@ export namespace Prisma {
21160
21286
  export type EventTicketUncheckedCreateInput = {
21161
21287
  id?: string
21162
21288
  eventId: string
21163
- amount: number
21289
+ amount?: number | null
21164
21290
  type: $Enums.TicketType
21165
21291
  price?: number | null
21166
21292
  created_at?: Date | string
@@ -21169,7 +21295,7 @@ export namespace Prisma {
21169
21295
 
21170
21296
  export type EventTicketUpdateInput = {
21171
21297
  id?: StringFieldUpdateOperationsInput | string
21172
- amount?: IntFieldUpdateOperationsInput | number
21298
+ amount?: NullableIntFieldUpdateOperationsInput | number | null
21173
21299
  type?: EnumTicketTypeFieldUpdateOperationsInput | $Enums.TicketType
21174
21300
  price?: NullableFloatFieldUpdateOperationsInput | number | null
21175
21301
  created_at?: DateTimeFieldUpdateOperationsInput | Date | string
@@ -21180,7 +21306,7 @@ export namespace Prisma {
21180
21306
  export type EventTicketUncheckedUpdateInput = {
21181
21307
  id?: StringFieldUpdateOperationsInput | string
21182
21308
  eventId?: StringFieldUpdateOperationsInput | string
21183
- amount?: IntFieldUpdateOperationsInput | number
21309
+ amount?: NullableIntFieldUpdateOperationsInput | number | null
21184
21310
  type?: EnumTicketTypeFieldUpdateOperationsInput | $Enums.TicketType
21185
21311
  price?: NullableFloatFieldUpdateOperationsInput | number | null
21186
21312
  created_at?: DateTimeFieldUpdateOperationsInput | Date | string
@@ -21190,7 +21316,7 @@ export namespace Prisma {
21190
21316
  export type EventTicketCreateManyInput = {
21191
21317
  id?: string
21192
21318
  eventId: string
21193
- amount: number
21319
+ amount?: number | null
21194
21320
  type: $Enums.TicketType
21195
21321
  price?: number | null
21196
21322
  created_at?: Date | string
@@ -21199,7 +21325,7 @@ export namespace Prisma {
21199
21325
 
21200
21326
  export type EventTicketUpdateManyMutationInput = {
21201
21327
  id?: StringFieldUpdateOperationsInput | string
21202
- amount?: IntFieldUpdateOperationsInput | number
21328
+ amount?: NullableIntFieldUpdateOperationsInput | number | null
21203
21329
  type?: EnumTicketTypeFieldUpdateOperationsInput | $Enums.TicketType
21204
21330
  price?: NullableFloatFieldUpdateOperationsInput | number | null
21205
21331
  created_at?: DateTimeFieldUpdateOperationsInput | Date | string
@@ -21209,7 +21335,7 @@ export namespace Prisma {
21209
21335
  export type EventTicketUncheckedUpdateManyInput = {
21210
21336
  id?: StringFieldUpdateOperationsInput | string
21211
21337
  eventId?: StringFieldUpdateOperationsInput | string
21212
- amount?: IntFieldUpdateOperationsInput | number
21338
+ amount?: NullableIntFieldUpdateOperationsInput | number | null
21213
21339
  type?: EnumTicketTypeFieldUpdateOperationsInput | $Enums.TicketType
21214
21340
  price?: NullableFloatFieldUpdateOperationsInput | number | null
21215
21341
  created_at?: DateTimeFieldUpdateOperationsInput | Date | string
@@ -21417,6 +21543,12 @@ export namespace Prisma {
21417
21543
  isNot?: LocationWhereInput | null
21418
21544
  }
21419
21545
 
21546
+ export type TicketListRelationFilter = {
21547
+ every?: TicketWhereInput
21548
+ some?: TicketWhereInput
21549
+ none?: TicketWhereInput
21550
+ }
21551
+
21420
21552
  export type SortOrderInput = {
21421
21553
  sort: SortOrder
21422
21554
  nulls?: NullsOrder
@@ -21430,9 +21562,14 @@ export namespace Prisma {
21430
21562
  _count?: SortOrder
21431
21563
  }
21432
21564
 
21565
+ export type TicketOrderByRelationAggregateInput = {
21566
+ _count?: SortOrder
21567
+ }
21568
+
21433
21569
  export type ProfileCountOrderByAggregateInput = {
21434
21570
  id?: SortOrder
21435
21571
  shortId?: SortOrder
21572
+ role?: SortOrder
21436
21573
  firstTimeMiExpo?: SortOrder
21437
21574
  username?: SortOrder
21438
21575
  password?: SortOrder
@@ -21463,6 +21600,7 @@ export namespace Prisma {
21463
21600
  export type ProfileMaxOrderByAggregateInput = {
21464
21601
  id?: SortOrder
21465
21602
  shortId?: SortOrder
21603
+ role?: SortOrder
21466
21604
  firstTimeMiExpo?: SortOrder
21467
21605
  username?: SortOrder
21468
21606
  password?: SortOrder
@@ -21488,6 +21626,7 @@ export namespace Prisma {
21488
21626
  export type ProfileMinOrderByAggregateInput = {
21489
21627
  id?: SortOrder
21490
21628
  shortId?: SortOrder
21629
+ role?: SortOrder
21491
21630
  firstTimeMiExpo?: SortOrder
21492
21631
  username?: SortOrder
21493
21632
  password?: SortOrder
@@ -21839,22 +21978,12 @@ export namespace Prisma {
21839
21978
  isNot?: TagWhereInput
21840
21979
  }
21841
21980
 
21842
- export type TicketListRelationFilter = {
21843
- every?: TicketWhereInput
21844
- some?: TicketWhereInput
21845
- none?: TicketWhereInput
21846
- }
21847
-
21848
21981
  export type EventTicketListRelationFilter = {
21849
21982
  every?: EventTicketWhereInput
21850
21983
  some?: EventTicketWhereInput
21851
21984
  none?: EventTicketWhereInput
21852
21985
  }
21853
21986
 
21854
- export type TicketOrderByRelationAggregateInput = {
21855
- _count?: SortOrder
21856
- }
21857
-
21858
21987
  export type EventTicketOrderByRelationAggregateInput = {
21859
21988
  _count?: SortOrder
21860
21989
  }
@@ -22068,6 +22197,11 @@ export namespace Prisma {
22068
22197
  isNot?: EventWhereInput
22069
22198
  }
22070
22199
 
22200
+ export type ProfileNullableScalarRelationFilter = {
22201
+ is?: ProfileWhereInput | null
22202
+ isNot?: ProfileWhereInput | null
22203
+ }
22204
+
22071
22205
  export type TicketCountOrderByAggregateInput = {
22072
22206
  id?: SortOrder
22073
22207
  eventId?: SortOrder
@@ -22075,6 +22209,7 @@ export namespace Prisma {
22075
22209
  status?: SortOrder
22076
22210
  fullName?: SortOrder
22077
22211
  mail?: SortOrder
22212
+ profileId?: SortOrder
22078
22213
  created_at?: SortOrder
22079
22214
  updated_at?: SortOrder
22080
22215
  }
@@ -22086,6 +22221,7 @@ export namespace Prisma {
22086
22221
  status?: SortOrder
22087
22222
  fullName?: SortOrder
22088
22223
  mail?: SortOrder
22224
+ profileId?: SortOrder
22089
22225
  created_at?: SortOrder
22090
22226
  updated_at?: SortOrder
22091
22227
  }
@@ -22097,6 +22233,7 @@ export namespace Prisma {
22097
22233
  status?: SortOrder
22098
22234
  fullName?: SortOrder
22099
22235
  mail?: SortOrder
22236
+ profileId?: SortOrder
22100
22237
  created_at?: SortOrder
22101
22238
  updated_at?: SortOrder
22102
22239
  }
@@ -22173,6 +22310,17 @@ export namespace Prisma {
22173
22310
  _max?: NestedEnumTemplateCategoryFilter<$PrismaModel>
22174
22311
  }
22175
22312
 
22313
+ export type IntNullableFilter<$PrismaModel = never> = {
22314
+ equals?: number | IntFieldRefInput<$PrismaModel> | null
22315
+ in?: number[] | ListIntFieldRefInput<$PrismaModel> | null
22316
+ notIn?: number[] | ListIntFieldRefInput<$PrismaModel> | null
22317
+ lt?: number | IntFieldRefInput<$PrismaModel>
22318
+ lte?: number | IntFieldRefInput<$PrismaModel>
22319
+ gt?: number | IntFieldRefInput<$PrismaModel>
22320
+ gte?: number | IntFieldRefInput<$PrismaModel>
22321
+ not?: NestedIntNullableFilter<$PrismaModel> | number | null
22322
+ }
22323
+
22176
22324
  export type FloatNullableFilter<$PrismaModel = never> = {
22177
22325
  equals?: number | FloatFieldRefInput<$PrismaModel> | null
22178
22326
  in?: number[] | ListFloatFieldRefInput<$PrismaModel> | null
@@ -22224,6 +22372,22 @@ export namespace Prisma {
22224
22372
  price?: SortOrder
22225
22373
  }
22226
22374
 
22375
+ export type IntNullableWithAggregatesFilter<$PrismaModel = never> = {
22376
+ equals?: number | IntFieldRefInput<$PrismaModel> | null
22377
+ in?: number[] | ListIntFieldRefInput<$PrismaModel> | null
22378
+ notIn?: number[] | ListIntFieldRefInput<$PrismaModel> | null
22379
+ lt?: number | IntFieldRefInput<$PrismaModel>
22380
+ lte?: number | IntFieldRefInput<$PrismaModel>
22381
+ gt?: number | IntFieldRefInput<$PrismaModel>
22382
+ gte?: number | IntFieldRefInput<$PrismaModel>
22383
+ not?: NestedIntNullableWithAggregatesFilter<$PrismaModel> | number | null
22384
+ _count?: NestedIntNullableFilter<$PrismaModel>
22385
+ _avg?: NestedFloatNullableFilter<$PrismaModel>
22386
+ _sum?: NestedIntNullableFilter<$PrismaModel>
22387
+ _min?: NestedIntNullableFilter<$PrismaModel>
22388
+ _max?: NestedIntNullableFilter<$PrismaModel>
22389
+ }
22390
+
22227
22391
  export type FloatNullableWithAggregatesFilter<$PrismaModel = never> = {
22228
22392
  equals?: number | FloatFieldRefInput<$PrismaModel> | null
22229
22393
  in?: number[] | ListFloatFieldRefInput<$PrismaModel> | null
@@ -22468,6 +22632,13 @@ export namespace Prisma {
22468
22632
  connect?: LocationWhereUniqueInput
22469
22633
  }
22470
22634
 
22635
+ export type TicketCreateNestedManyWithoutProfileInput = {
22636
+ create?: XOR<TicketCreateWithoutProfileInput, TicketUncheckedCreateWithoutProfileInput> | TicketCreateWithoutProfileInput[] | TicketUncheckedCreateWithoutProfileInput[]
22637
+ connectOrCreate?: TicketCreateOrConnectWithoutProfileInput | TicketCreateOrConnectWithoutProfileInput[]
22638
+ createMany?: TicketCreateManyProfileInputEnvelope
22639
+ connect?: TicketWhereUniqueInput | TicketWhereUniqueInput[]
22640
+ }
22641
+
22471
22642
  export type OtpUncheckedCreateNestedManyWithoutOwnerInput = {
22472
22643
  create?: XOR<OtpCreateWithoutOwnerInput, OtpUncheckedCreateWithoutOwnerInput> | OtpCreateWithoutOwnerInput[] | OtpUncheckedCreateWithoutOwnerInput[]
22473
22644
  connectOrCreate?: OtpCreateOrConnectWithoutOwnerInput | OtpCreateOrConnectWithoutOwnerInput[]
@@ -22495,6 +22666,13 @@ export namespace Prisma {
22495
22666
  connect?: TagWhereUniqueInput | TagWhereUniqueInput[]
22496
22667
  }
22497
22668
 
22669
+ export type TicketUncheckedCreateNestedManyWithoutProfileInput = {
22670
+ create?: XOR<TicketCreateWithoutProfileInput, TicketUncheckedCreateWithoutProfileInput> | TicketCreateWithoutProfileInput[] | TicketUncheckedCreateWithoutProfileInput[]
22671
+ connectOrCreate?: TicketCreateOrConnectWithoutProfileInput | TicketCreateOrConnectWithoutProfileInput[]
22672
+ createMany?: TicketCreateManyProfileInputEnvelope
22673
+ connect?: TicketWhereUniqueInput | TicketWhereUniqueInput[]
22674
+ }
22675
+
22498
22676
  export type IntFieldUpdateOperationsInput = {
22499
22677
  set?: number
22500
22678
  increment?: number
@@ -22591,6 +22769,20 @@ export namespace Prisma {
22591
22769
  update?: XOR<XOR<LocationUpdateToOneWithWhereWithoutResidenceProfilesInput, LocationUpdateWithoutResidenceProfilesInput>, LocationUncheckedUpdateWithoutResidenceProfilesInput>
22592
22770
  }
22593
22771
 
22772
+ export type TicketUpdateManyWithoutProfileNestedInput = {
22773
+ create?: XOR<TicketCreateWithoutProfileInput, TicketUncheckedCreateWithoutProfileInput> | TicketCreateWithoutProfileInput[] | TicketUncheckedCreateWithoutProfileInput[]
22774
+ connectOrCreate?: TicketCreateOrConnectWithoutProfileInput | TicketCreateOrConnectWithoutProfileInput[]
22775
+ upsert?: TicketUpsertWithWhereUniqueWithoutProfileInput | TicketUpsertWithWhereUniqueWithoutProfileInput[]
22776
+ createMany?: TicketCreateManyProfileInputEnvelope
22777
+ set?: TicketWhereUniqueInput | TicketWhereUniqueInput[]
22778
+ disconnect?: TicketWhereUniqueInput | TicketWhereUniqueInput[]
22779
+ delete?: TicketWhereUniqueInput | TicketWhereUniqueInput[]
22780
+ connect?: TicketWhereUniqueInput | TicketWhereUniqueInput[]
22781
+ update?: TicketUpdateWithWhereUniqueWithoutProfileInput | TicketUpdateWithWhereUniqueWithoutProfileInput[]
22782
+ updateMany?: TicketUpdateManyWithWhereWithoutProfileInput | TicketUpdateManyWithWhereWithoutProfileInput[]
22783
+ deleteMany?: TicketScalarWhereInput | TicketScalarWhereInput[]
22784
+ }
22785
+
22594
22786
  export type OtpUncheckedUpdateManyWithoutOwnerNestedInput = {
22595
22787
  create?: XOR<OtpCreateWithoutOwnerInput, OtpUncheckedCreateWithoutOwnerInput> | OtpCreateWithoutOwnerInput[] | OtpUncheckedCreateWithoutOwnerInput[]
22596
22788
  connectOrCreate?: OtpCreateOrConnectWithoutOwnerInput | OtpCreateOrConnectWithoutOwnerInput[]
@@ -22646,6 +22838,20 @@ export namespace Prisma {
22646
22838
  deleteMany?: TagScalarWhereInput | TagScalarWhereInput[]
22647
22839
  }
22648
22840
 
22841
+ export type TicketUncheckedUpdateManyWithoutProfileNestedInput = {
22842
+ create?: XOR<TicketCreateWithoutProfileInput, TicketUncheckedCreateWithoutProfileInput> | TicketCreateWithoutProfileInput[] | TicketUncheckedCreateWithoutProfileInput[]
22843
+ connectOrCreate?: TicketCreateOrConnectWithoutProfileInput | TicketCreateOrConnectWithoutProfileInput[]
22844
+ upsert?: TicketUpsertWithWhereUniqueWithoutProfileInput | TicketUpsertWithWhereUniqueWithoutProfileInput[]
22845
+ createMany?: TicketCreateManyProfileInputEnvelope
22846
+ set?: TicketWhereUniqueInput | TicketWhereUniqueInput[]
22847
+ disconnect?: TicketWhereUniqueInput | TicketWhereUniqueInput[]
22848
+ delete?: TicketWhereUniqueInput | TicketWhereUniqueInput[]
22849
+ connect?: TicketWhereUniqueInput | TicketWhereUniqueInput[]
22850
+ update?: TicketUpdateWithWhereUniqueWithoutProfileInput | TicketUpdateWithWhereUniqueWithoutProfileInput[]
22851
+ updateMany?: TicketUpdateManyWithWhereWithoutProfileInput | TicketUpdateManyWithWhereWithoutProfileInput[]
22852
+ deleteMany?: TicketScalarWhereInput | TicketScalarWhereInput[]
22853
+ }
22854
+
22649
22855
  export type ProfileCreateNestedOneWithoutOtpInput = {
22650
22856
  create?: XOR<ProfileCreateWithoutOtpInput, ProfileUncheckedCreateWithoutOtpInput>
22651
22857
  connectOrCreate?: ProfileCreateOrConnectWithoutOtpInput
@@ -23362,6 +23568,12 @@ export namespace Prisma {
23362
23568
  connect?: EventWhereUniqueInput
23363
23569
  }
23364
23570
 
23571
+ export type ProfileCreateNestedOneWithoutTicketInput = {
23572
+ create?: XOR<ProfileCreateWithoutTicketInput, ProfileUncheckedCreateWithoutTicketInput>
23573
+ connectOrCreate?: ProfileCreateOrConnectWithoutTicketInput
23574
+ connect?: ProfileWhereUniqueInput
23575
+ }
23576
+
23365
23577
  export type EnumTicketTypeFieldUpdateOperationsInput = {
23366
23578
  set?: $Enums.TicketType
23367
23579
  }
@@ -23378,6 +23590,16 @@ export namespace Prisma {
23378
23590
  update?: XOR<XOR<EventUpdateToOneWithWhereWithoutTicketsInput, EventUpdateWithoutTicketsInput>, EventUncheckedUpdateWithoutTicketsInput>
23379
23591
  }
23380
23592
 
23593
+ export type ProfileUpdateOneWithoutTicketNestedInput = {
23594
+ create?: XOR<ProfileCreateWithoutTicketInput, ProfileUncheckedCreateWithoutTicketInput>
23595
+ connectOrCreate?: ProfileCreateOrConnectWithoutTicketInput
23596
+ upsert?: ProfileUpsertWithoutTicketInput
23597
+ disconnect?: ProfileWhereInput | boolean
23598
+ delete?: ProfileWhereInput | boolean
23599
+ connect?: ProfileWhereUniqueInput
23600
+ update?: XOR<XOR<ProfileUpdateToOneWithWhereWithoutTicketInput, ProfileUpdateWithoutTicketInput>, ProfileUncheckedUpdateWithoutTicketInput>
23601
+ }
23602
+
23381
23603
  export type EnumTemplateStatusFieldUpdateOperationsInput = {
23382
23604
  set?: $Enums.TemplateStatus
23383
23605
  }
@@ -23392,6 +23614,14 @@ export namespace Prisma {
23392
23614
  connect?: EventWhereUniqueInput
23393
23615
  }
23394
23616
 
23617
+ export type NullableIntFieldUpdateOperationsInput = {
23618
+ set?: number | null
23619
+ increment?: number
23620
+ decrement?: number
23621
+ multiply?: number
23622
+ divide?: number
23623
+ }
23624
+
23395
23625
  export type NullableFloatFieldUpdateOperationsInput = {
23396
23626
  set?: number | null
23397
23627
  increment?: number
@@ -23751,6 +23981,22 @@ export namespace Prisma {
23751
23981
  not?: NestedFloatNullableFilter<$PrismaModel> | number | null
23752
23982
  }
23753
23983
 
23984
+ export type NestedIntNullableWithAggregatesFilter<$PrismaModel = never> = {
23985
+ equals?: number | IntFieldRefInput<$PrismaModel> | null
23986
+ in?: number[] | ListIntFieldRefInput<$PrismaModel> | null
23987
+ notIn?: number[] | ListIntFieldRefInput<$PrismaModel> | null
23988
+ lt?: number | IntFieldRefInput<$PrismaModel>
23989
+ lte?: number | IntFieldRefInput<$PrismaModel>
23990
+ gt?: number | IntFieldRefInput<$PrismaModel>
23991
+ gte?: number | IntFieldRefInput<$PrismaModel>
23992
+ not?: NestedIntNullableWithAggregatesFilter<$PrismaModel> | number | null
23993
+ _count?: NestedIntNullableFilter<$PrismaModel>
23994
+ _avg?: NestedFloatNullableFilter<$PrismaModel>
23995
+ _sum?: NestedIntNullableFilter<$PrismaModel>
23996
+ _min?: NestedIntNullableFilter<$PrismaModel>
23997
+ _max?: NestedIntNullableFilter<$PrismaModel>
23998
+ }
23999
+
23754
24000
  export type NestedFloatNullableWithAggregatesFilter<$PrismaModel = never> = {
23755
24001
  equals?: number | FloatFieldRefInput<$PrismaModel> | null
23756
24002
  in?: number[] | ListFloatFieldRefInput<$PrismaModel> | null
@@ -24172,6 +24418,38 @@ export namespace Prisma {
24172
24418
  create: XOR<LocationCreateWithoutResidenceProfilesInput, LocationUncheckedCreateWithoutResidenceProfilesInput>
24173
24419
  }
24174
24420
 
24421
+ export type TicketCreateWithoutProfileInput = {
24422
+ id?: string
24423
+ type: $Enums.TicketType
24424
+ status: $Enums.TicketStatus
24425
+ fullName: string
24426
+ mail: string
24427
+ created_at?: Date | string
24428
+ updated_at?: Date | string
24429
+ event: EventCreateNestedOneWithoutTicketsInput
24430
+ }
24431
+
24432
+ export type TicketUncheckedCreateWithoutProfileInput = {
24433
+ id?: string
24434
+ eventId: string
24435
+ type: $Enums.TicketType
24436
+ status: $Enums.TicketStatus
24437
+ fullName: string
24438
+ mail: string
24439
+ created_at?: Date | string
24440
+ updated_at?: Date | string
24441
+ }
24442
+
24443
+ export type TicketCreateOrConnectWithoutProfileInput = {
24444
+ where: TicketWhereUniqueInput
24445
+ create: XOR<TicketCreateWithoutProfileInput, TicketUncheckedCreateWithoutProfileInput>
24446
+ }
24447
+
24448
+ export type TicketCreateManyProfileInputEnvelope = {
24449
+ data: TicketCreateManyProfileInput | TicketCreateManyProfileInput[]
24450
+ skipDuplicates?: boolean
24451
+ }
24452
+
24175
24453
  export type OtpUpsertWithWhereUniqueWithoutOwnerInput = {
24176
24454
  where: OtpWhereUniqueInput
24177
24455
  update: XOR<OtpUpdateWithoutOwnerInput, OtpUncheckedUpdateWithoutOwnerInput>
@@ -24331,9 +24609,41 @@ export namespace Prisma {
24331
24609
  birthProfiles?: ProfileUncheckedUpdateManyWithoutBirthLocationNestedInput
24332
24610
  }
24333
24611
 
24612
+ export type TicketUpsertWithWhereUniqueWithoutProfileInput = {
24613
+ where: TicketWhereUniqueInput
24614
+ update: XOR<TicketUpdateWithoutProfileInput, TicketUncheckedUpdateWithoutProfileInput>
24615
+ create: XOR<TicketCreateWithoutProfileInput, TicketUncheckedCreateWithoutProfileInput>
24616
+ }
24617
+
24618
+ export type TicketUpdateWithWhereUniqueWithoutProfileInput = {
24619
+ where: TicketWhereUniqueInput
24620
+ data: XOR<TicketUpdateWithoutProfileInput, TicketUncheckedUpdateWithoutProfileInput>
24621
+ }
24622
+
24623
+ export type TicketUpdateManyWithWhereWithoutProfileInput = {
24624
+ where: TicketScalarWhereInput
24625
+ data: XOR<TicketUpdateManyMutationInput, TicketUncheckedUpdateManyWithoutProfileInput>
24626
+ }
24627
+
24628
+ export type TicketScalarWhereInput = {
24629
+ AND?: TicketScalarWhereInput | TicketScalarWhereInput[]
24630
+ OR?: TicketScalarWhereInput[]
24631
+ NOT?: TicketScalarWhereInput | TicketScalarWhereInput[]
24632
+ id?: StringFilter<"Ticket"> | string
24633
+ eventId?: StringFilter<"Ticket"> | string
24634
+ type?: EnumTicketTypeFilter<"Ticket"> | $Enums.TicketType
24635
+ status?: EnumTicketStatusFilter<"Ticket"> | $Enums.TicketStatus
24636
+ fullName?: StringFilter<"Ticket"> | string
24637
+ mail?: StringFilter<"Ticket"> | string
24638
+ profileId?: StringNullableFilter<"Ticket"> | string | null
24639
+ created_at?: DateTimeFilter<"Ticket"> | Date | string
24640
+ updated_at?: DateTimeFilter<"Ticket"> | Date | string
24641
+ }
24642
+
24334
24643
  export type ProfileCreateWithoutOtpInput = {
24335
24644
  id?: string
24336
24645
  shortId: number
24646
+ role?: $Enums.Role
24337
24647
  firstTimeMiExpo?: boolean
24338
24648
  username?: string | null
24339
24649
  password?: string | null
@@ -24358,11 +24668,13 @@ export namespace Prisma {
24358
24668
  tags?: TagCreateNestedManyWithoutProfilesInput
24359
24669
  birthLocation?: LocationCreateNestedOneWithoutBirthProfilesInput
24360
24670
  residenceLocation?: LocationCreateNestedOneWithoutResidenceProfilesInput
24671
+ Ticket?: TicketCreateNestedManyWithoutProfileInput
24361
24672
  }
24362
24673
 
24363
24674
  export type ProfileUncheckedCreateWithoutOtpInput = {
24364
24675
  id?: string
24365
24676
  shortId: number
24677
+ role?: $Enums.Role
24366
24678
  firstTimeMiExpo?: boolean
24367
24679
  username?: string | null
24368
24680
  password?: string | null
@@ -24387,6 +24699,7 @@ export namespace Prisma {
24387
24699
  comments?: CommentUncheckedCreateNestedManyWithoutProfileInput
24388
24700
  messages?: MessageUncheckedCreateNestedManyWithoutProfileInput
24389
24701
  tags?: TagUncheckedCreateNestedManyWithoutProfilesInput
24702
+ Ticket?: TicketUncheckedCreateNestedManyWithoutProfileInput
24390
24703
  }
24391
24704
 
24392
24705
  export type ProfileCreateOrConnectWithoutOtpInput = {
@@ -24408,6 +24721,7 @@ export namespace Prisma {
24408
24721
  export type ProfileUpdateWithoutOtpInput = {
24409
24722
  id?: StringFieldUpdateOperationsInput | string
24410
24723
  shortId?: IntFieldUpdateOperationsInput | number
24724
+ role?: EnumRoleFieldUpdateOperationsInput | $Enums.Role
24411
24725
  firstTimeMiExpo?: BoolFieldUpdateOperationsInput | boolean
24412
24726
  username?: NullableStringFieldUpdateOperationsInput | string | null
24413
24727
  password?: NullableStringFieldUpdateOperationsInput | string | null
@@ -24432,11 +24746,13 @@ export namespace Prisma {
24432
24746
  tags?: TagUpdateManyWithoutProfilesNestedInput
24433
24747
  birthLocation?: LocationUpdateOneWithoutBirthProfilesNestedInput
24434
24748
  residenceLocation?: LocationUpdateOneWithoutResidenceProfilesNestedInput
24749
+ Ticket?: TicketUpdateManyWithoutProfileNestedInput
24435
24750
  }
24436
24751
 
24437
24752
  export type ProfileUncheckedUpdateWithoutOtpInput = {
24438
24753
  id?: StringFieldUpdateOperationsInput | string
24439
24754
  shortId?: IntFieldUpdateOperationsInput | number
24755
+ role?: EnumRoleFieldUpdateOperationsInput | $Enums.Role
24440
24756
  firstTimeMiExpo?: BoolFieldUpdateOperationsInput | boolean
24441
24757
  username?: NullableStringFieldUpdateOperationsInput | string | null
24442
24758
  password?: NullableStringFieldUpdateOperationsInput | string | null
@@ -24461,11 +24777,13 @@ export namespace Prisma {
24461
24777
  comments?: CommentUncheckedUpdateManyWithoutProfileNestedInput
24462
24778
  messages?: MessageUncheckedUpdateManyWithoutProfileNestedInput
24463
24779
  tags?: TagUncheckedUpdateManyWithoutProfilesNestedInput
24780
+ Ticket?: TicketUncheckedUpdateManyWithoutProfileNestedInput
24464
24781
  }
24465
24782
 
24466
24783
  export type ProfileCreateWithoutBirthLocationInput = {
24467
24784
  id?: string
24468
24785
  shortId: number
24786
+ role?: $Enums.Role
24469
24787
  firstTimeMiExpo?: boolean
24470
24788
  username?: string | null
24471
24789
  password?: string | null
@@ -24490,11 +24808,13 @@ export namespace Prisma {
24490
24808
  messages?: MessageCreateNestedManyWithoutProfileInput
24491
24809
  tags?: TagCreateNestedManyWithoutProfilesInput
24492
24810
  residenceLocation?: LocationCreateNestedOneWithoutResidenceProfilesInput
24811
+ Ticket?: TicketCreateNestedManyWithoutProfileInput
24493
24812
  }
24494
24813
 
24495
24814
  export type ProfileUncheckedCreateWithoutBirthLocationInput = {
24496
24815
  id?: string
24497
24816
  shortId: number
24817
+ role?: $Enums.Role
24498
24818
  firstTimeMiExpo?: boolean
24499
24819
  username?: string | null
24500
24820
  password?: string | null
@@ -24519,6 +24839,7 @@ export namespace Prisma {
24519
24839
  comments?: CommentUncheckedCreateNestedManyWithoutProfileInput
24520
24840
  messages?: MessageUncheckedCreateNestedManyWithoutProfileInput
24521
24841
  tags?: TagUncheckedCreateNestedManyWithoutProfilesInput
24842
+ Ticket?: TicketUncheckedCreateNestedManyWithoutProfileInput
24522
24843
  }
24523
24844
 
24524
24845
  export type ProfileCreateOrConnectWithoutBirthLocationInput = {
@@ -24534,6 +24855,7 @@ export namespace Prisma {
24534
24855
  export type ProfileCreateWithoutResidenceLocationInput = {
24535
24856
  id?: string
24536
24857
  shortId: number
24858
+ role?: $Enums.Role
24537
24859
  firstTimeMiExpo?: boolean
24538
24860
  username?: string | null
24539
24861
  password?: string | null
@@ -24558,11 +24880,13 @@ export namespace Prisma {
24558
24880
  messages?: MessageCreateNestedManyWithoutProfileInput
24559
24881
  tags?: TagCreateNestedManyWithoutProfilesInput
24560
24882
  birthLocation?: LocationCreateNestedOneWithoutBirthProfilesInput
24883
+ Ticket?: TicketCreateNestedManyWithoutProfileInput
24561
24884
  }
24562
24885
 
24563
24886
  export type ProfileUncheckedCreateWithoutResidenceLocationInput = {
24564
24887
  id?: string
24565
24888
  shortId: number
24889
+ role?: $Enums.Role
24566
24890
  firstTimeMiExpo?: boolean
24567
24891
  username?: string | null
24568
24892
  password?: string | null
@@ -24587,6 +24911,7 @@ export namespace Prisma {
24587
24911
  comments?: CommentUncheckedCreateNestedManyWithoutProfileInput
24588
24912
  messages?: MessageUncheckedCreateNestedManyWithoutProfileInput
24589
24913
  tags?: TagUncheckedCreateNestedManyWithoutProfilesInput
24914
+ Ticket?: TicketUncheckedCreateNestedManyWithoutProfileInput
24590
24915
  }
24591
24916
 
24592
24917
  export type ProfileCreateOrConnectWithoutResidenceLocationInput = {
@@ -24621,6 +24946,7 @@ export namespace Prisma {
24621
24946
  NOT?: ProfileScalarWhereInput | ProfileScalarWhereInput[]
24622
24947
  id?: StringFilter<"Profile"> | string
24623
24948
  shortId?: IntFilter<"Profile"> | number
24949
+ role?: EnumRoleFilter<"Profile"> | $Enums.Role
24624
24950
  firstTimeMiExpo?: BoolFilter<"Profile"> | boolean
24625
24951
  username?: StringNullableFilter<"Profile"> | string | null
24626
24952
  password?: StringNullableFilter<"Profile"> | string | null
@@ -24696,6 +25022,7 @@ export namespace Prisma {
24696
25022
  export type ProfileCreateWithoutCommentsInput = {
24697
25023
  id?: string
24698
25024
  shortId: number
25025
+ role?: $Enums.Role
24699
25026
  firstTimeMiExpo?: boolean
24700
25027
  username?: string | null
24701
25028
  password?: string | null
@@ -24720,11 +25047,13 @@ export namespace Prisma {
24720
25047
  tags?: TagCreateNestedManyWithoutProfilesInput
24721
25048
  birthLocation?: LocationCreateNestedOneWithoutBirthProfilesInput
24722
25049
  residenceLocation?: LocationCreateNestedOneWithoutResidenceProfilesInput
25050
+ Ticket?: TicketCreateNestedManyWithoutProfileInput
24723
25051
  }
24724
25052
 
24725
25053
  export type ProfileUncheckedCreateWithoutCommentsInput = {
24726
25054
  id?: string
24727
25055
  shortId: number
25056
+ role?: $Enums.Role
24728
25057
  firstTimeMiExpo?: boolean
24729
25058
  username?: string | null
24730
25059
  password?: string | null
@@ -24749,6 +25078,7 @@ export namespace Prisma {
24749
25078
  otp?: OtpUncheckedCreateNestedManyWithoutOwnerInput
24750
25079
  messages?: MessageUncheckedCreateNestedManyWithoutProfileInput
24751
25080
  tags?: TagUncheckedCreateNestedManyWithoutProfilesInput
25081
+ Ticket?: TicketUncheckedCreateNestedManyWithoutProfileInput
24752
25082
  }
24753
25083
 
24754
25084
  export type ProfileCreateOrConnectWithoutCommentsInput = {
@@ -24842,6 +25172,7 @@ export namespace Prisma {
24842
25172
  export type ProfileUpdateWithoutCommentsInput = {
24843
25173
  id?: StringFieldUpdateOperationsInput | string
24844
25174
  shortId?: IntFieldUpdateOperationsInput | number
25175
+ role?: EnumRoleFieldUpdateOperationsInput | $Enums.Role
24845
25176
  firstTimeMiExpo?: BoolFieldUpdateOperationsInput | boolean
24846
25177
  username?: NullableStringFieldUpdateOperationsInput | string | null
24847
25178
  password?: NullableStringFieldUpdateOperationsInput | string | null
@@ -24866,11 +25197,13 @@ export namespace Prisma {
24866
25197
  tags?: TagUpdateManyWithoutProfilesNestedInput
24867
25198
  birthLocation?: LocationUpdateOneWithoutBirthProfilesNestedInput
24868
25199
  residenceLocation?: LocationUpdateOneWithoutResidenceProfilesNestedInput
25200
+ Ticket?: TicketUpdateManyWithoutProfileNestedInput
24869
25201
  }
24870
25202
 
24871
25203
  export type ProfileUncheckedUpdateWithoutCommentsInput = {
24872
25204
  id?: StringFieldUpdateOperationsInput | string
24873
25205
  shortId?: IntFieldUpdateOperationsInput | number
25206
+ role?: EnumRoleFieldUpdateOperationsInput | $Enums.Role
24874
25207
  firstTimeMiExpo?: BoolFieldUpdateOperationsInput | boolean
24875
25208
  username?: NullableStringFieldUpdateOperationsInput | string | null
24876
25209
  password?: NullableStringFieldUpdateOperationsInput | string | null
@@ -24895,6 +25228,7 @@ export namespace Prisma {
24895
25228
  otp?: OtpUncheckedUpdateManyWithoutOwnerNestedInput
24896
25229
  messages?: MessageUncheckedUpdateManyWithoutProfileNestedInput
24897
25230
  tags?: TagUncheckedUpdateManyWithoutProfilesNestedInput
25231
+ Ticket?: TicketUncheckedUpdateManyWithoutProfileNestedInput
24898
25232
  }
24899
25233
 
24900
25234
  export type AccountUpsertWithoutSolvableCommentsInput = {
@@ -24963,8 +25297,8 @@ export namespace Prisma {
24963
25297
  id?: string
24964
25298
  name: string
24965
25299
  date: Date | string
24966
- startingDate: Date | string
24967
- endingDate: Date | string
25300
+ startingDate?: Date | string
25301
+ endingDate?: Date | string
24968
25302
  location: string
24969
25303
  active?: boolean
24970
25304
  created_at?: Date | string
@@ -24982,8 +25316,8 @@ export namespace Prisma {
24982
25316
  id?: string
24983
25317
  name: string
24984
25318
  date: Date | string
24985
- startingDate: Date | string
24986
- endingDate: Date | string
25319
+ startingDate?: Date | string
25320
+ endingDate?: Date | string
24987
25321
  location: string
24988
25322
  folderId?: string | null
24989
25323
  tagConfirmedId: string
@@ -25006,8 +25340,8 @@ export namespace Prisma {
25006
25340
  id?: string
25007
25341
  name: string
25008
25342
  date: Date | string
25009
- startingDate: Date | string
25010
- endingDate: Date | string
25343
+ startingDate?: Date | string
25344
+ endingDate?: Date | string
25011
25345
  location: string
25012
25346
  active?: boolean
25013
25347
  created_at?: Date | string
@@ -25025,8 +25359,8 @@ export namespace Prisma {
25025
25359
  id?: string
25026
25360
  name: string
25027
25361
  date: Date | string
25028
- startingDate: Date | string
25029
- endingDate: Date | string
25362
+ startingDate?: Date | string
25363
+ endingDate?: Date | string
25030
25364
  location: string
25031
25365
  folderId?: string | null
25032
25366
  tagAssistedId: string
@@ -25081,6 +25415,7 @@ export namespace Prisma {
25081
25415
  export type ProfileCreateWithoutTagsInput = {
25082
25416
  id?: string
25083
25417
  shortId: number
25418
+ role?: $Enums.Role
25084
25419
  firstTimeMiExpo?: boolean
25085
25420
  username?: string | null
25086
25421
  password?: string | null
@@ -25105,11 +25440,13 @@ export namespace Prisma {
25105
25440
  messages?: MessageCreateNestedManyWithoutProfileInput
25106
25441
  birthLocation?: LocationCreateNestedOneWithoutBirthProfilesInput
25107
25442
  residenceLocation?: LocationCreateNestedOneWithoutResidenceProfilesInput
25443
+ Ticket?: TicketCreateNestedManyWithoutProfileInput
25108
25444
  }
25109
25445
 
25110
25446
  export type ProfileUncheckedCreateWithoutTagsInput = {
25111
25447
  id?: string
25112
25448
  shortId: number
25449
+ role?: $Enums.Role
25113
25450
  firstTimeMiExpo?: boolean
25114
25451
  username?: string | null
25115
25452
  password?: string | null
@@ -25134,6 +25471,7 @@ export namespace Prisma {
25134
25471
  otp?: OtpUncheckedCreateNestedManyWithoutOwnerInput
25135
25472
  comments?: CommentUncheckedCreateNestedManyWithoutProfileInput
25136
25473
  messages?: MessageUncheckedCreateNestedManyWithoutProfileInput
25474
+ Ticket?: TicketUncheckedCreateNestedManyWithoutProfileInput
25137
25475
  }
25138
25476
 
25139
25477
  export type ProfileCreateOrConnectWithoutTagsInput = {
@@ -25178,8 +25516,8 @@ export namespace Prisma {
25178
25516
  id?: string
25179
25517
  name: string
25180
25518
  date: Date | string
25181
- startingDate: Date | string
25182
- endingDate: Date | string
25519
+ startingDate?: Date | string
25520
+ endingDate?: Date | string
25183
25521
  location: string
25184
25522
  active?: boolean
25185
25523
  created_at?: Date | string
@@ -25197,8 +25535,8 @@ export namespace Prisma {
25197
25535
  id?: string
25198
25536
  name: string
25199
25537
  date: Date | string
25200
- startingDate: Date | string
25201
- endingDate: Date | string
25538
+ startingDate?: Date | string
25539
+ endingDate?: Date | string
25202
25540
  location: string
25203
25541
  folderId?: string | null
25204
25542
  tagAssistedId: string
@@ -25586,8 +25924,8 @@ export namespace Prisma {
25586
25924
  id?: string
25587
25925
  name: string
25588
25926
  date: Date | string
25589
- startingDate: Date | string
25590
- endingDate: Date | string
25927
+ startingDate?: Date | string
25928
+ endingDate?: Date | string
25591
25929
  location: string
25592
25930
  active?: boolean
25593
25931
  created_at?: Date | string
@@ -25605,8 +25943,8 @@ export namespace Prisma {
25605
25943
  id?: string
25606
25944
  name: string
25607
25945
  date: Date | string
25608
- startingDate: Date | string
25609
- endingDate: Date | string
25946
+ startingDate?: Date | string
25947
+ endingDate?: Date | string
25610
25948
  location: string
25611
25949
  folderId?: string | null
25612
25950
  tagAssistedId: string
@@ -25633,6 +25971,7 @@ export namespace Prisma {
25633
25971
  mail: string
25634
25972
  created_at?: Date | string
25635
25973
  updated_at?: Date | string
25974
+ profile?: ProfileCreateNestedOneWithoutTicketInput
25636
25975
  }
25637
25976
 
25638
25977
  export type TicketUncheckedCreateWithoutEventInput = {
@@ -25641,6 +25980,7 @@ export namespace Prisma {
25641
25980
  status: $Enums.TicketStatus
25642
25981
  fullName: string
25643
25982
  mail: string
25983
+ profileId?: string | null
25644
25984
  created_at?: Date | string
25645
25985
  updated_at?: Date | string
25646
25986
  }
@@ -25659,8 +25999,8 @@ export namespace Prisma {
25659
25999
  id?: string
25660
26000
  name: string
25661
26001
  date: Date | string
25662
- startingDate: Date | string
25663
- endingDate: Date | string
26002
+ startingDate?: Date | string
26003
+ endingDate?: Date | string
25664
26004
  location: string
25665
26005
  active?: boolean
25666
26006
  created_at?: Date | string
@@ -25678,8 +26018,8 @@ export namespace Prisma {
25678
26018
  id?: string
25679
26019
  name: string
25680
26020
  date: Date | string
25681
- startingDate: Date | string
25682
- endingDate: Date | string
26021
+ startingDate?: Date | string
26022
+ endingDate?: Date | string
25683
26023
  location: string
25684
26024
  folderId?: string | null
25685
26025
  tagAssistedId: string
@@ -25738,7 +26078,7 @@ export namespace Prisma {
25738
26078
 
25739
26079
  export type EventTicketCreateWithoutEventInput = {
25740
26080
  id?: string
25741
- amount: number
26081
+ amount?: number | null
25742
26082
  type: $Enums.TicketType
25743
26083
  price?: number | null
25744
26084
  created_at?: Date | string
@@ -25747,7 +26087,7 @@ export namespace Prisma {
25747
26087
 
25748
26088
  export type EventTicketUncheckedCreateWithoutEventInput = {
25749
26089
  id?: string
25750
- amount: number
26090
+ amount?: number | null
25751
26091
  type: $Enums.TicketType
25752
26092
  price?: number | null
25753
26093
  created_at?: Date | string
@@ -25934,20 +26274,6 @@ export namespace Prisma {
25934
26274
  data: XOR<TicketUpdateManyMutationInput, TicketUncheckedUpdateManyWithoutEventInput>
25935
26275
  }
25936
26276
 
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
26277
  export type EventUpsertWithWhereUniqueWithoutSupraEventInput = {
25952
26278
  where: EventWhereUniqueInput
25953
26279
  update: XOR<EventUpdateWithoutSupraEventInput, EventUncheckedUpdateWithoutSupraEventInput>
@@ -26002,7 +26328,7 @@ export namespace Prisma {
26002
26328
  NOT?: EventTicketScalarWhereInput | EventTicketScalarWhereInput[]
26003
26329
  id?: StringFilter<"EventTicket"> | string
26004
26330
  eventId?: StringFilter<"EventTicket"> | string
26005
- amount?: IntFilter<"EventTicket"> | number
26331
+ amount?: IntNullableFilter<"EventTicket"> | number | null
26006
26332
  type?: EnumTicketTypeFilter<"EventTicket"> | $Enums.TicketType
26007
26333
  price?: FloatNullableFilter<"EventTicket"> | number | null
26008
26334
  created_at?: DateTimeFilter<"EventTicket"> | Date | string
@@ -26013,8 +26339,8 @@ export namespace Prisma {
26013
26339
  id?: string
26014
26340
  name: string
26015
26341
  date: Date | string
26016
- startingDate: Date | string
26017
- endingDate: Date | string
26342
+ startingDate?: Date | string
26343
+ endingDate?: Date | string
26018
26344
  location: string
26019
26345
  active?: boolean
26020
26346
  created_at?: Date | string
@@ -26032,8 +26358,8 @@ export namespace Prisma {
26032
26358
  id?: string
26033
26359
  name: string
26034
26360
  date: Date | string
26035
- startingDate: Date | string
26036
- endingDate: Date | string
26361
+ startingDate?: Date | string
26362
+ endingDate?: Date | string
26037
26363
  location: string
26038
26364
  tagAssistedId: string
26039
26365
  tagConfirmedId: string
@@ -26076,6 +26402,7 @@ export namespace Prisma {
26076
26402
  export type ProfileCreateWithoutMessagesInput = {
26077
26403
  id?: string
26078
26404
  shortId: number
26405
+ role?: $Enums.Role
26079
26406
  firstTimeMiExpo?: boolean
26080
26407
  username?: string | null
26081
26408
  password?: string | null
@@ -26100,11 +26427,13 @@ export namespace Prisma {
26100
26427
  tags?: TagCreateNestedManyWithoutProfilesInput
26101
26428
  birthLocation?: LocationCreateNestedOneWithoutBirthProfilesInput
26102
26429
  residenceLocation?: LocationCreateNestedOneWithoutResidenceProfilesInput
26430
+ Ticket?: TicketCreateNestedManyWithoutProfileInput
26103
26431
  }
26104
26432
 
26105
26433
  export type ProfileUncheckedCreateWithoutMessagesInput = {
26106
26434
  id?: string
26107
26435
  shortId: number
26436
+ role?: $Enums.Role
26108
26437
  firstTimeMiExpo?: boolean
26109
26438
  username?: string | null
26110
26439
  password?: string | null
@@ -26129,6 +26458,7 @@ export namespace Prisma {
26129
26458
  otp?: OtpUncheckedCreateNestedManyWithoutOwnerInput
26130
26459
  comments?: CommentUncheckedCreateNestedManyWithoutProfileInput
26131
26460
  tags?: TagUncheckedCreateNestedManyWithoutProfilesInput
26461
+ Ticket?: TicketUncheckedCreateNestedManyWithoutProfileInput
26132
26462
  }
26133
26463
 
26134
26464
  export type ProfileCreateOrConnectWithoutMessagesInput = {
@@ -26150,6 +26480,7 @@ export namespace Prisma {
26150
26480
  export type ProfileUpdateWithoutMessagesInput = {
26151
26481
  id?: StringFieldUpdateOperationsInput | string
26152
26482
  shortId?: IntFieldUpdateOperationsInput | number
26483
+ role?: EnumRoleFieldUpdateOperationsInput | $Enums.Role
26153
26484
  firstTimeMiExpo?: BoolFieldUpdateOperationsInput | boolean
26154
26485
  username?: NullableStringFieldUpdateOperationsInput | string | null
26155
26486
  password?: NullableStringFieldUpdateOperationsInput | string | null
@@ -26174,11 +26505,13 @@ export namespace Prisma {
26174
26505
  tags?: TagUpdateManyWithoutProfilesNestedInput
26175
26506
  birthLocation?: LocationUpdateOneWithoutBirthProfilesNestedInput
26176
26507
  residenceLocation?: LocationUpdateOneWithoutResidenceProfilesNestedInput
26508
+ Ticket?: TicketUpdateManyWithoutProfileNestedInput
26177
26509
  }
26178
26510
 
26179
26511
  export type ProfileUncheckedUpdateWithoutMessagesInput = {
26180
26512
  id?: StringFieldUpdateOperationsInput | string
26181
26513
  shortId?: IntFieldUpdateOperationsInput | number
26514
+ role?: EnumRoleFieldUpdateOperationsInput | $Enums.Role
26182
26515
  firstTimeMiExpo?: BoolFieldUpdateOperationsInput | boolean
26183
26516
  username?: NullableStringFieldUpdateOperationsInput | string | null
26184
26517
  password?: NullableStringFieldUpdateOperationsInput | string | null
@@ -26203,14 +26536,15 @@ export namespace Prisma {
26203
26536
  otp?: OtpUncheckedUpdateManyWithoutOwnerNestedInput
26204
26537
  comments?: CommentUncheckedUpdateManyWithoutProfileNestedInput
26205
26538
  tags?: TagUncheckedUpdateManyWithoutProfilesNestedInput
26539
+ Ticket?: TicketUncheckedUpdateManyWithoutProfileNestedInput
26206
26540
  }
26207
26541
 
26208
26542
  export type EventCreateWithoutTicketsInput = {
26209
26543
  id?: string
26210
26544
  name: string
26211
26545
  date: Date | string
26212
- startingDate: Date | string
26213
- endingDate: Date | string
26546
+ startingDate?: Date | string
26547
+ endingDate?: Date | string
26214
26548
  location: string
26215
26549
  active?: boolean
26216
26550
  created_at?: Date | string
@@ -26228,8 +26562,8 @@ export namespace Prisma {
26228
26562
  id?: string
26229
26563
  name: string
26230
26564
  date: Date | string
26231
- startingDate: Date | string
26232
- endingDate: Date | string
26565
+ startingDate?: Date | string
26566
+ endingDate?: Date | string
26233
26567
  location: string
26234
26568
  folderId?: string | null
26235
26569
  tagAssistedId: string
@@ -26248,6 +26582,73 @@ export namespace Prisma {
26248
26582
  create: XOR<EventCreateWithoutTicketsInput, EventUncheckedCreateWithoutTicketsInput>
26249
26583
  }
26250
26584
 
26585
+ export type ProfileCreateWithoutTicketInput = {
26586
+ id?: string
26587
+ shortId: number
26588
+ role?: $Enums.Role
26589
+ firstTimeMiExpo?: boolean
26590
+ username?: string | null
26591
+ password?: string | null
26592
+ phoneNumber: string
26593
+ isPhoneVerified?: boolean
26594
+ secondaryPhoneNumber?: string | null
26595
+ fullName: string
26596
+ firstName?: string | null
26597
+ gender?: string | null
26598
+ birthDate?: Date | string | null
26599
+ profilePictureUrl?: string | null
26600
+ instagram?: string | null
26601
+ mail?: string | null
26602
+ dni?: string | null
26603
+ alternativeNames?: ProfileCreatealternativeNamesInput | string[]
26604
+ isInTrash?: boolean
26605
+ movedToTrashDate?: Date | string | null
26606
+ created_at?: Date | string
26607
+ updated_at?: Date | string
26608
+ otp?: OtpCreateNestedManyWithoutOwnerInput
26609
+ comments?: CommentCreateNestedManyWithoutProfileInput
26610
+ messages?: MessageCreateNestedManyWithoutProfileInput
26611
+ tags?: TagCreateNestedManyWithoutProfilesInput
26612
+ birthLocation?: LocationCreateNestedOneWithoutBirthProfilesInput
26613
+ residenceLocation?: LocationCreateNestedOneWithoutResidenceProfilesInput
26614
+ }
26615
+
26616
+ export type ProfileUncheckedCreateWithoutTicketInput = {
26617
+ id?: string
26618
+ shortId: number
26619
+ role?: $Enums.Role
26620
+ firstTimeMiExpo?: boolean
26621
+ username?: string | null
26622
+ password?: string | null
26623
+ phoneNumber: string
26624
+ isPhoneVerified?: boolean
26625
+ secondaryPhoneNumber?: string | null
26626
+ fullName: string
26627
+ firstName?: string | null
26628
+ gender?: string | null
26629
+ birthDate?: Date | string | null
26630
+ profilePictureUrl?: string | null
26631
+ instagram?: string | null
26632
+ mail?: string | null
26633
+ dni?: string | null
26634
+ alternativeNames?: ProfileCreatealternativeNamesInput | string[]
26635
+ birthLocationId?: string | null
26636
+ residenceLocationId?: string | null
26637
+ isInTrash?: boolean
26638
+ movedToTrashDate?: Date | string | null
26639
+ created_at?: Date | string
26640
+ updated_at?: Date | string
26641
+ otp?: OtpUncheckedCreateNestedManyWithoutOwnerInput
26642
+ comments?: CommentUncheckedCreateNestedManyWithoutProfileInput
26643
+ messages?: MessageUncheckedCreateNestedManyWithoutProfileInput
26644
+ tags?: TagUncheckedCreateNestedManyWithoutProfilesInput
26645
+ }
26646
+
26647
+ export type ProfileCreateOrConnectWithoutTicketInput = {
26648
+ where: ProfileWhereUniqueInput
26649
+ create: XOR<ProfileCreateWithoutTicketInput, ProfileUncheckedCreateWithoutTicketInput>
26650
+ }
26651
+
26251
26652
  export type EventUpsertWithoutTicketsInput = {
26252
26653
  update: XOR<EventUpdateWithoutTicketsInput, EventUncheckedUpdateWithoutTicketsInput>
26253
26654
  create: XOR<EventCreateWithoutTicketsInput, EventUncheckedCreateWithoutTicketsInput>
@@ -26297,12 +26698,85 @@ export namespace Prisma {
26297
26698
  eventTickets?: EventTicketUncheckedUpdateManyWithoutEventNestedInput
26298
26699
  }
26299
26700
 
26701
+ export type ProfileUpsertWithoutTicketInput = {
26702
+ update: XOR<ProfileUpdateWithoutTicketInput, ProfileUncheckedUpdateWithoutTicketInput>
26703
+ create: XOR<ProfileCreateWithoutTicketInput, ProfileUncheckedCreateWithoutTicketInput>
26704
+ where?: ProfileWhereInput
26705
+ }
26706
+
26707
+ export type ProfileUpdateToOneWithWhereWithoutTicketInput = {
26708
+ where?: ProfileWhereInput
26709
+ data: XOR<ProfileUpdateWithoutTicketInput, ProfileUncheckedUpdateWithoutTicketInput>
26710
+ }
26711
+
26712
+ export type ProfileUpdateWithoutTicketInput = {
26713
+ id?: StringFieldUpdateOperationsInput | string
26714
+ shortId?: IntFieldUpdateOperationsInput | number
26715
+ role?: EnumRoleFieldUpdateOperationsInput | $Enums.Role
26716
+ firstTimeMiExpo?: BoolFieldUpdateOperationsInput | boolean
26717
+ username?: NullableStringFieldUpdateOperationsInput | string | null
26718
+ password?: NullableStringFieldUpdateOperationsInput | string | null
26719
+ phoneNumber?: StringFieldUpdateOperationsInput | string
26720
+ isPhoneVerified?: BoolFieldUpdateOperationsInput | boolean
26721
+ secondaryPhoneNumber?: NullableStringFieldUpdateOperationsInput | string | null
26722
+ fullName?: StringFieldUpdateOperationsInput | string
26723
+ firstName?: NullableStringFieldUpdateOperationsInput | string | null
26724
+ gender?: NullableStringFieldUpdateOperationsInput | string | null
26725
+ birthDate?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
26726
+ profilePictureUrl?: NullableStringFieldUpdateOperationsInput | string | null
26727
+ instagram?: NullableStringFieldUpdateOperationsInput | string | null
26728
+ mail?: NullableStringFieldUpdateOperationsInput | string | null
26729
+ dni?: NullableStringFieldUpdateOperationsInput | string | null
26730
+ alternativeNames?: ProfileUpdatealternativeNamesInput | string[]
26731
+ isInTrash?: BoolFieldUpdateOperationsInput | boolean
26732
+ movedToTrashDate?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
26733
+ created_at?: DateTimeFieldUpdateOperationsInput | Date | string
26734
+ updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
26735
+ otp?: OtpUpdateManyWithoutOwnerNestedInput
26736
+ comments?: CommentUpdateManyWithoutProfileNestedInput
26737
+ messages?: MessageUpdateManyWithoutProfileNestedInput
26738
+ tags?: TagUpdateManyWithoutProfilesNestedInput
26739
+ birthLocation?: LocationUpdateOneWithoutBirthProfilesNestedInput
26740
+ residenceLocation?: LocationUpdateOneWithoutResidenceProfilesNestedInput
26741
+ }
26742
+
26743
+ export type ProfileUncheckedUpdateWithoutTicketInput = {
26744
+ id?: StringFieldUpdateOperationsInput | string
26745
+ shortId?: IntFieldUpdateOperationsInput | number
26746
+ role?: EnumRoleFieldUpdateOperationsInput | $Enums.Role
26747
+ firstTimeMiExpo?: BoolFieldUpdateOperationsInput | boolean
26748
+ username?: NullableStringFieldUpdateOperationsInput | string | null
26749
+ password?: NullableStringFieldUpdateOperationsInput | string | null
26750
+ phoneNumber?: StringFieldUpdateOperationsInput | string
26751
+ isPhoneVerified?: BoolFieldUpdateOperationsInput | boolean
26752
+ secondaryPhoneNumber?: NullableStringFieldUpdateOperationsInput | string | null
26753
+ fullName?: StringFieldUpdateOperationsInput | string
26754
+ firstName?: NullableStringFieldUpdateOperationsInput | string | null
26755
+ gender?: NullableStringFieldUpdateOperationsInput | string | null
26756
+ birthDate?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
26757
+ profilePictureUrl?: NullableStringFieldUpdateOperationsInput | string | null
26758
+ instagram?: NullableStringFieldUpdateOperationsInput | string | null
26759
+ mail?: NullableStringFieldUpdateOperationsInput | string | null
26760
+ dni?: NullableStringFieldUpdateOperationsInput | string | null
26761
+ alternativeNames?: ProfileUpdatealternativeNamesInput | string[]
26762
+ birthLocationId?: NullableStringFieldUpdateOperationsInput | string | null
26763
+ residenceLocationId?: NullableStringFieldUpdateOperationsInput | string | null
26764
+ isInTrash?: BoolFieldUpdateOperationsInput | boolean
26765
+ movedToTrashDate?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
26766
+ created_at?: DateTimeFieldUpdateOperationsInput | Date | string
26767
+ updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
26768
+ otp?: OtpUncheckedUpdateManyWithoutOwnerNestedInput
26769
+ comments?: CommentUncheckedUpdateManyWithoutProfileNestedInput
26770
+ messages?: MessageUncheckedUpdateManyWithoutProfileNestedInput
26771
+ tags?: TagUncheckedUpdateManyWithoutProfilesNestedInput
26772
+ }
26773
+
26300
26774
  export type EventCreateWithoutEventTicketsInput = {
26301
26775
  id?: string
26302
26776
  name: string
26303
26777
  date: Date | string
26304
- startingDate: Date | string
26305
- endingDate: Date | string
26778
+ startingDate?: Date | string
26779
+ endingDate?: Date | string
26306
26780
  location: string
26307
26781
  active?: boolean
26308
26782
  created_at?: Date | string
@@ -26320,8 +26794,8 @@ export namespace Prisma {
26320
26794
  id?: string
26321
26795
  name: string
26322
26796
  date: Date | string
26323
- startingDate: Date | string
26324
- endingDate: Date | string
26797
+ startingDate?: Date | string
26798
+ endingDate?: Date | string
26325
26799
  location: string
26326
26800
  folderId?: string | null
26327
26801
  tagAssistedId: string
@@ -26588,6 +27062,17 @@ export namespace Prisma {
26588
27062
  updated_at?: Date | string
26589
27063
  }
26590
27064
 
27065
+ export type TicketCreateManyProfileInput = {
27066
+ id?: string
27067
+ eventId: string
27068
+ type: $Enums.TicketType
27069
+ status: $Enums.TicketStatus
27070
+ fullName: string
27071
+ mail: string
27072
+ created_at?: Date | string
27073
+ updated_at?: Date | string
27074
+ }
27075
+
26591
27076
  export type OtpUpdateWithoutOwnerInput = {
26592
27077
  id?: StringFieldUpdateOperationsInput | string
26593
27078
  code?: StringFieldUpdateOperationsInput | string
@@ -26712,9 +27197,43 @@ export namespace Prisma {
26712
27197
  updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
26713
27198
  }
26714
27199
 
27200
+ export type TicketUpdateWithoutProfileInput = {
27201
+ id?: StringFieldUpdateOperationsInput | string
27202
+ type?: EnumTicketTypeFieldUpdateOperationsInput | $Enums.TicketType
27203
+ status?: EnumTicketStatusFieldUpdateOperationsInput | $Enums.TicketStatus
27204
+ fullName?: StringFieldUpdateOperationsInput | string
27205
+ mail?: StringFieldUpdateOperationsInput | string
27206
+ created_at?: DateTimeFieldUpdateOperationsInput | Date | string
27207
+ updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
27208
+ event?: EventUpdateOneRequiredWithoutTicketsNestedInput
27209
+ }
27210
+
27211
+ export type TicketUncheckedUpdateWithoutProfileInput = {
27212
+ id?: StringFieldUpdateOperationsInput | string
27213
+ eventId?: StringFieldUpdateOperationsInput | string
27214
+ type?: EnumTicketTypeFieldUpdateOperationsInput | $Enums.TicketType
27215
+ status?: EnumTicketStatusFieldUpdateOperationsInput | $Enums.TicketStatus
27216
+ fullName?: StringFieldUpdateOperationsInput | string
27217
+ mail?: StringFieldUpdateOperationsInput | string
27218
+ created_at?: DateTimeFieldUpdateOperationsInput | Date | string
27219
+ updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
27220
+ }
27221
+
27222
+ export type TicketUncheckedUpdateManyWithoutProfileInput = {
27223
+ id?: StringFieldUpdateOperationsInput | string
27224
+ eventId?: StringFieldUpdateOperationsInput | string
27225
+ type?: EnumTicketTypeFieldUpdateOperationsInput | $Enums.TicketType
27226
+ status?: EnumTicketStatusFieldUpdateOperationsInput | $Enums.TicketStatus
27227
+ fullName?: StringFieldUpdateOperationsInput | string
27228
+ mail?: StringFieldUpdateOperationsInput | string
27229
+ created_at?: DateTimeFieldUpdateOperationsInput | Date | string
27230
+ updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
27231
+ }
27232
+
26715
27233
  export type ProfileCreateManyBirthLocationInput = {
26716
27234
  id?: string
26717
27235
  shortId: number
27236
+ role?: $Enums.Role
26718
27237
  firstTimeMiExpo?: boolean
26719
27238
  username?: string | null
26720
27239
  password?: string | null
@@ -26740,6 +27259,7 @@ export namespace Prisma {
26740
27259
  export type ProfileCreateManyResidenceLocationInput = {
26741
27260
  id?: string
26742
27261
  shortId: number
27262
+ role?: $Enums.Role
26743
27263
  firstTimeMiExpo?: boolean
26744
27264
  username?: string | null
26745
27265
  password?: string | null
@@ -26765,6 +27285,7 @@ export namespace Prisma {
26765
27285
  export type ProfileUpdateWithoutBirthLocationInput = {
26766
27286
  id?: StringFieldUpdateOperationsInput | string
26767
27287
  shortId?: IntFieldUpdateOperationsInput | number
27288
+ role?: EnumRoleFieldUpdateOperationsInput | $Enums.Role
26768
27289
  firstTimeMiExpo?: BoolFieldUpdateOperationsInput | boolean
26769
27290
  username?: NullableStringFieldUpdateOperationsInput | string | null
26770
27291
  password?: NullableStringFieldUpdateOperationsInput | string | null
@@ -26789,11 +27310,13 @@ export namespace Prisma {
26789
27310
  messages?: MessageUpdateManyWithoutProfileNestedInput
26790
27311
  tags?: TagUpdateManyWithoutProfilesNestedInput
26791
27312
  residenceLocation?: LocationUpdateOneWithoutResidenceProfilesNestedInput
27313
+ Ticket?: TicketUpdateManyWithoutProfileNestedInput
26792
27314
  }
26793
27315
 
26794
27316
  export type ProfileUncheckedUpdateWithoutBirthLocationInput = {
26795
27317
  id?: StringFieldUpdateOperationsInput | string
26796
27318
  shortId?: IntFieldUpdateOperationsInput | number
27319
+ role?: EnumRoleFieldUpdateOperationsInput | $Enums.Role
26797
27320
  firstTimeMiExpo?: BoolFieldUpdateOperationsInput | boolean
26798
27321
  username?: NullableStringFieldUpdateOperationsInput | string | null
26799
27322
  password?: NullableStringFieldUpdateOperationsInput | string | null
@@ -26818,11 +27341,13 @@ export namespace Prisma {
26818
27341
  comments?: CommentUncheckedUpdateManyWithoutProfileNestedInput
26819
27342
  messages?: MessageUncheckedUpdateManyWithoutProfileNestedInput
26820
27343
  tags?: TagUncheckedUpdateManyWithoutProfilesNestedInput
27344
+ Ticket?: TicketUncheckedUpdateManyWithoutProfileNestedInput
26821
27345
  }
26822
27346
 
26823
27347
  export type ProfileUncheckedUpdateManyWithoutBirthLocationInput = {
26824
27348
  id?: StringFieldUpdateOperationsInput | string
26825
27349
  shortId?: IntFieldUpdateOperationsInput | number
27350
+ role?: EnumRoleFieldUpdateOperationsInput | $Enums.Role
26826
27351
  firstTimeMiExpo?: BoolFieldUpdateOperationsInput | boolean
26827
27352
  username?: NullableStringFieldUpdateOperationsInput | string | null
26828
27353
  password?: NullableStringFieldUpdateOperationsInput | string | null
@@ -26848,6 +27373,7 @@ export namespace Prisma {
26848
27373
  export type ProfileUpdateWithoutResidenceLocationInput = {
26849
27374
  id?: StringFieldUpdateOperationsInput | string
26850
27375
  shortId?: IntFieldUpdateOperationsInput | number
27376
+ role?: EnumRoleFieldUpdateOperationsInput | $Enums.Role
26851
27377
  firstTimeMiExpo?: BoolFieldUpdateOperationsInput | boolean
26852
27378
  username?: NullableStringFieldUpdateOperationsInput | string | null
26853
27379
  password?: NullableStringFieldUpdateOperationsInput | string | null
@@ -26872,11 +27398,13 @@ export namespace Prisma {
26872
27398
  messages?: MessageUpdateManyWithoutProfileNestedInput
26873
27399
  tags?: TagUpdateManyWithoutProfilesNestedInput
26874
27400
  birthLocation?: LocationUpdateOneWithoutBirthProfilesNestedInput
27401
+ Ticket?: TicketUpdateManyWithoutProfileNestedInput
26875
27402
  }
26876
27403
 
26877
27404
  export type ProfileUncheckedUpdateWithoutResidenceLocationInput = {
26878
27405
  id?: StringFieldUpdateOperationsInput | string
26879
27406
  shortId?: IntFieldUpdateOperationsInput | number
27407
+ role?: EnumRoleFieldUpdateOperationsInput | $Enums.Role
26880
27408
  firstTimeMiExpo?: BoolFieldUpdateOperationsInput | boolean
26881
27409
  username?: NullableStringFieldUpdateOperationsInput | string | null
26882
27410
  password?: NullableStringFieldUpdateOperationsInput | string | null
@@ -26901,11 +27429,13 @@ export namespace Prisma {
26901
27429
  comments?: CommentUncheckedUpdateManyWithoutProfileNestedInput
26902
27430
  messages?: MessageUncheckedUpdateManyWithoutProfileNestedInput
26903
27431
  tags?: TagUncheckedUpdateManyWithoutProfilesNestedInput
27432
+ Ticket?: TicketUncheckedUpdateManyWithoutProfileNestedInput
26904
27433
  }
26905
27434
 
26906
27435
  export type ProfileUncheckedUpdateManyWithoutResidenceLocationInput = {
26907
27436
  id?: StringFieldUpdateOperationsInput | string
26908
27437
  shortId?: IntFieldUpdateOperationsInput | number
27438
+ role?: EnumRoleFieldUpdateOperationsInput | $Enums.Role
26909
27439
  firstTimeMiExpo?: BoolFieldUpdateOperationsInput | boolean
26910
27440
  username?: NullableStringFieldUpdateOperationsInput | string | null
26911
27441
  password?: NullableStringFieldUpdateOperationsInput | string | null
@@ -26970,6 +27500,7 @@ export namespace Prisma {
26970
27500
  export type ProfileUpdateWithoutTagsInput = {
26971
27501
  id?: StringFieldUpdateOperationsInput | string
26972
27502
  shortId?: IntFieldUpdateOperationsInput | number
27503
+ role?: EnumRoleFieldUpdateOperationsInput | $Enums.Role
26973
27504
  firstTimeMiExpo?: BoolFieldUpdateOperationsInput | boolean
26974
27505
  username?: NullableStringFieldUpdateOperationsInput | string | null
26975
27506
  password?: NullableStringFieldUpdateOperationsInput | string | null
@@ -26994,11 +27525,13 @@ export namespace Prisma {
26994
27525
  messages?: MessageUpdateManyWithoutProfileNestedInput
26995
27526
  birthLocation?: LocationUpdateOneWithoutBirthProfilesNestedInput
26996
27527
  residenceLocation?: LocationUpdateOneWithoutResidenceProfilesNestedInput
27528
+ Ticket?: TicketUpdateManyWithoutProfileNestedInput
26997
27529
  }
26998
27530
 
26999
27531
  export type ProfileUncheckedUpdateWithoutTagsInput = {
27000
27532
  id?: StringFieldUpdateOperationsInput | string
27001
27533
  shortId?: IntFieldUpdateOperationsInput | number
27534
+ role?: EnumRoleFieldUpdateOperationsInput | $Enums.Role
27002
27535
  firstTimeMiExpo?: BoolFieldUpdateOperationsInput | boolean
27003
27536
  username?: NullableStringFieldUpdateOperationsInput | string | null
27004
27537
  password?: NullableStringFieldUpdateOperationsInput | string | null
@@ -27023,11 +27556,13 @@ export namespace Prisma {
27023
27556
  otp?: OtpUncheckedUpdateManyWithoutOwnerNestedInput
27024
27557
  comments?: CommentUncheckedUpdateManyWithoutProfileNestedInput
27025
27558
  messages?: MessageUncheckedUpdateManyWithoutProfileNestedInput
27559
+ Ticket?: TicketUncheckedUpdateManyWithoutProfileNestedInput
27026
27560
  }
27027
27561
 
27028
27562
  export type ProfileUncheckedUpdateManyWithoutTagsInput = {
27029
27563
  id?: StringFieldUpdateOperationsInput | string
27030
27564
  shortId?: IntFieldUpdateOperationsInput | number
27565
+ role?: EnumRoleFieldUpdateOperationsInput | $Enums.Role
27031
27566
  firstTimeMiExpo?: BoolFieldUpdateOperationsInput | boolean
27032
27567
  username?: NullableStringFieldUpdateOperationsInput | string | null
27033
27568
  password?: NullableStringFieldUpdateOperationsInput | string | null
@@ -27194,6 +27729,7 @@ export namespace Prisma {
27194
27729
  status: $Enums.TicketStatus
27195
27730
  fullName: string
27196
27731
  mail: string
27732
+ profileId?: string | null
27197
27733
  created_at?: Date | string
27198
27734
  updated_at?: Date | string
27199
27735
  }
@@ -27202,8 +27738,8 @@ export namespace Prisma {
27202
27738
  id?: string
27203
27739
  name: string
27204
27740
  date: Date | string
27205
- startingDate: Date | string
27206
- endingDate: Date | string
27741
+ startingDate?: Date | string
27742
+ endingDate?: Date | string
27207
27743
  location: string
27208
27744
  folderId?: string | null
27209
27745
  tagAssistedId: string
@@ -27215,7 +27751,7 @@ export namespace Prisma {
27215
27751
 
27216
27752
  export type EventTicketCreateManyEventInput = {
27217
27753
  id?: string
27218
- amount: number
27754
+ amount?: number | null
27219
27755
  type: $Enums.TicketType
27220
27756
  price?: number | null
27221
27757
  created_at?: Date | string
@@ -27230,6 +27766,7 @@ export namespace Prisma {
27230
27766
  mail?: StringFieldUpdateOperationsInput | string
27231
27767
  created_at?: DateTimeFieldUpdateOperationsInput | Date | string
27232
27768
  updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
27769
+ profile?: ProfileUpdateOneWithoutTicketNestedInput
27233
27770
  }
27234
27771
 
27235
27772
  export type TicketUncheckedUpdateWithoutEventInput = {
@@ -27238,6 +27775,7 @@ export namespace Prisma {
27238
27775
  status?: EnumTicketStatusFieldUpdateOperationsInput | $Enums.TicketStatus
27239
27776
  fullName?: StringFieldUpdateOperationsInput | string
27240
27777
  mail?: StringFieldUpdateOperationsInput | string
27778
+ profileId?: NullableStringFieldUpdateOperationsInput | string | null
27241
27779
  created_at?: DateTimeFieldUpdateOperationsInput | Date | string
27242
27780
  updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
27243
27781
  }
@@ -27248,6 +27786,7 @@ export namespace Prisma {
27248
27786
  status?: EnumTicketStatusFieldUpdateOperationsInput | $Enums.TicketStatus
27249
27787
  fullName?: StringFieldUpdateOperationsInput | string
27250
27788
  mail?: StringFieldUpdateOperationsInput | string
27789
+ profileId?: NullableStringFieldUpdateOperationsInput | string | null
27251
27790
  created_at?: DateTimeFieldUpdateOperationsInput | Date | string
27252
27791
  updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
27253
27792
  }
@@ -27344,7 +27883,7 @@ export namespace Prisma {
27344
27883
 
27345
27884
  export type EventTicketUpdateWithoutEventInput = {
27346
27885
  id?: StringFieldUpdateOperationsInput | string
27347
- amount?: IntFieldUpdateOperationsInput | number
27886
+ amount?: NullableIntFieldUpdateOperationsInput | number | null
27348
27887
  type?: EnumTicketTypeFieldUpdateOperationsInput | $Enums.TicketType
27349
27888
  price?: NullableFloatFieldUpdateOperationsInput | number | null
27350
27889
  created_at?: DateTimeFieldUpdateOperationsInput | Date | string
@@ -27353,7 +27892,7 @@ export namespace Prisma {
27353
27892
 
27354
27893
  export type EventTicketUncheckedUpdateWithoutEventInput = {
27355
27894
  id?: StringFieldUpdateOperationsInput | string
27356
- amount?: IntFieldUpdateOperationsInput | number
27895
+ amount?: NullableIntFieldUpdateOperationsInput | number | null
27357
27896
  type?: EnumTicketTypeFieldUpdateOperationsInput | $Enums.TicketType
27358
27897
  price?: NullableFloatFieldUpdateOperationsInput | number | null
27359
27898
  created_at?: DateTimeFieldUpdateOperationsInput | Date | string
@@ -27362,7 +27901,7 @@ export namespace Prisma {
27362
27901
 
27363
27902
  export type EventTicketUncheckedUpdateManyWithoutEventInput = {
27364
27903
  id?: StringFieldUpdateOperationsInput | string
27365
- amount?: IntFieldUpdateOperationsInput | number
27904
+ amount?: NullableIntFieldUpdateOperationsInput | number | null
27366
27905
  type?: EnumTicketTypeFieldUpdateOperationsInput | $Enums.TicketType
27367
27906
  price?: NullableFloatFieldUpdateOperationsInput | number | null
27368
27907
  created_at?: DateTimeFieldUpdateOperationsInput | Date | string
@@ -27373,8 +27912,8 @@ export namespace Prisma {
27373
27912
  id?: string
27374
27913
  name: string
27375
27914
  date: Date | string
27376
- startingDate: Date | string
27377
- endingDate: Date | string
27915
+ startingDate?: Date | string
27916
+ endingDate?: Date | string
27378
27917
  location: string
27379
27918
  tagAssistedId: string
27380
27919
  tagConfirmedId: string