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