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