expo-backend-types 0.53.0 → 0.54.0-EXPO-366-EB-Schema-codigo-referido.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/src/event/dto/get-all-statistics.dto.d.ts +10 -0
- package/dist/src/event/dto/get-by-id-event.dto.d.ts +10 -0
- package/dist/src/event/dto/get-statistics-by-id-event.dto.d.ts +5 -0
- package/dist/src/i18n/es.d.ts +6 -0
- package/dist/src/i18n/es.js +6 -0
- package/dist/src/i18n/es.js.map +1 -1
- package/dist/src/mi-expo/dto/get-me.dto.d.ts +6 -0
- package/dist/src/mi-expo/dto/login-with-phone.dto.d.ts +10 -0
- package/dist/src/mi-expo/dto/login.dto.d.ts +10 -0
- package/dist/src/mi-expo/dto/update-me.dto.d.ts +6 -0
- package/dist/src/otp/dto/verify-otp.dto.d.ts +10 -0
- package/dist/src/production/dto/get-all-production.dto.d.ts +14 -0
- package/dist/src/production-affiliation-request/dto/find-by-production-affiliation-request.dto.d.ts +14 -0
- package/dist/src/production-affiliation-request/dto/update-production-affiliation-request.dto.d.ts +10 -0
- package/dist/src/profile/dto/create-profile.dto.d.ts +4 -0
- package/dist/src/profile/dto/delete-profile.dto.d.ts +6 -0
- package/dist/src/profile/dto/find-all-profile.dto.d.ts +10 -0
- package/dist/src/profile/dto/find-by-date-range-profile.dto.d.ts +16 -0
- package/dist/src/profile/dto/find-by-id-profile.dto.d.ts +6 -0
- package/dist/src/profile/dto/find-by-phone-number.dto.d.ts +6 -0
- package/dist/src/profile/dto/find-by-tag-groups-profile.dto.d.ts +10 -0
- package/dist/src/profile/dto/find-by-tags-profile.dto.d.ts +10 -0
- package/dist/src/profile/dto/find-referral-code-exists.dto.d.ts +18 -0
- package/dist/src/profile/dto/find-referral-code-exists.dto.js +15 -0
- package/dist/src/profile/dto/find-referral-code-usage.dto.d.ts +18 -0
- package/dist/src/profile/dto/find-referral-code-usage.dto.js +15 -0
- package/dist/src/profile/dto/find-trash.dto.d.ts +1 -0
- package/dist/src/profile/dto/find-with-active-chat.dto.d.ts +10 -0
- package/dist/src/profile/dto/profile.dto.d.ts +3 -0
- package/dist/src/profile/dto/update-profile.dto.d.ts +6 -0
- package/dist/src/schema/profile.schema.d.ts +3 -0
- package/dist/src/schema/profile.schema.js +1 -0
- package/dist/src/tag/dto/massive-allocation.dto.d.ts +10 -0
- package/dist/src/tag/dto/massive-deallocation.dto.d.ts +10 -0
- package/dist/src/ticket/dto/create-many-ticket.dto.d.ts +17 -0
- package/dist/src/ticket/dto/create-many-ticket.dto.js +2 -0
- package/dist/src/ticket/dto/create-ticket.dto.d.ts +13 -0
- package/dist/src/ticket/dto/create-ticket.dto.js +1 -0
- package/dist/src/ticket/dto/delete-ticket.dto.d.ts +6 -0
- package/dist/src/ticket/dto/find-all-tickets.dto.d.ts +10 -0
- package/dist/src/ticket/dto/find-by-event-ticket.dto.d.ts +24 -0
- package/dist/src/ticket/dto/find-by-id-ticket.dto.d.ts +24 -0
- package/dist/src/ticket/dto/find-by-mail-ticket.dto.d.ts +24 -0
- package/dist/src/ticket/dto/find-by-profile-id-ticket.dto.d.ts +10 -0
- package/dist/src/ticket/dto/find-ticket.dto.d.ts +6 -0
- package/dist/src/ticket/dto/get-pdfs-by-group-ticket.dto.d.ts +5 -0
- package/dist/src/ticket/dto/scan-ticket.dto.d.ts +6 -0
- package/dist/src/ticket/dto/ticket.dto.d.ts +6 -0
- package/dist/src/ticket/dto/ticket.dto.js +1 -0
- package/dist/src/ticket/dto/update-ticket.dto.d.ts +6 -0
- package/dist/src/ticket-group/dto/create-ticket-group.dto.d.ts +17 -0
- package/dist/src/ticket-group/dto/delete-ticket-group.dto.d.ts +6 -0
- package/dist/src/ticket-group/dto/find-group-ticket-group.dto.d.ts +6 -0
- package/dist/src/ticket-group/dto/ticket-group.dto.d.ts +6 -0
- package/dist/src/ticket-group/dto/ticket-group.dto.js +1 -0
- package/dist/src/ticket-group/dto/update-ticket-group.dto.d.ts +12 -0
- package/dist/src/ticket-group/dto/update-ticket-group.dto.js +1 -0
- package/dist/types/prisma-schema/edge.js +6 -3
- package/dist/types/prisma-schema/index-browser.js +3 -0
- package/dist/types/prisma-schema/index.d.ts +605 -26
- package/dist/types/prisma-schema/index.js +6 -3
- package/dist/types/prisma-schema/package.json +1 -1
- package/dist/types/prisma-schema/schema.prisma +10 -0
- package/dist/types/prisma-schema/wasm.js +3 -0
- package/dist/types/schema.d.ts +120 -0
- package/package.json +2 -1
@@ -2501,6 +2501,7 @@ export namespace Prisma {
|
|
2501
2501
|
productionsAdministrated: number
|
2502
2502
|
productionsParticipated: number
|
2503
2503
|
productionRequestsSent: number
|
2504
|
+
referralCodeUsed: number
|
2504
2505
|
}
|
2505
2506
|
|
2506
2507
|
export type ProfileCountOutputTypeSelect<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
@@ -2512,6 +2513,7 @@ export namespace Prisma {
|
|
2512
2513
|
productionsAdministrated?: boolean | ProfileCountOutputTypeCountProductionsAdministratedArgs
|
2513
2514
|
productionsParticipated?: boolean | ProfileCountOutputTypeCountProductionsParticipatedArgs
|
2514
2515
|
productionRequestsSent?: boolean | ProfileCountOutputTypeCountProductionRequestsSentArgs
|
2516
|
+
referralCodeUsed?: boolean | ProfileCountOutputTypeCountReferralCodeUsedArgs
|
2515
2517
|
}
|
2516
2518
|
|
2517
2519
|
// Custom InputTypes
|
@@ -2581,6 +2583,13 @@ export namespace Prisma {
|
|
2581
2583
|
where?: ProductionAffiliationRequestWhereInput
|
2582
2584
|
}
|
2583
2585
|
|
2586
|
+
/**
|
2587
|
+
* ProfileCountOutputType without action
|
2588
|
+
*/
|
2589
|
+
export type ProfileCountOutputTypeCountReferralCodeUsedArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
2590
|
+
where?: TicketGroupWhereInput
|
2591
|
+
}
|
2592
|
+
|
2584
2593
|
|
2585
2594
|
/**
|
2586
2595
|
* Count Type LocationCountOutputType
|
@@ -4151,6 +4160,7 @@ export namespace Prisma {
|
|
4151
4160
|
residenceLocationId: string | null
|
4152
4161
|
isInTrash: boolean | null
|
4153
4162
|
movedToTrashDate: Date | null
|
4163
|
+
referralCode: string | null
|
4154
4164
|
created_at: Date | null
|
4155
4165
|
updated_at: Date | null
|
4156
4166
|
}
|
@@ -4177,6 +4187,7 @@ export namespace Prisma {
|
|
4177
4187
|
residenceLocationId: string | null
|
4178
4188
|
isInTrash: boolean | null
|
4179
4189
|
movedToTrashDate: Date | null
|
4190
|
+
referralCode: string | null
|
4180
4191
|
created_at: Date | null
|
4181
4192
|
updated_at: Date | null
|
4182
4193
|
}
|
@@ -4204,6 +4215,7 @@ export namespace Prisma {
|
|
4204
4215
|
residenceLocationId: number
|
4205
4216
|
isInTrash: number
|
4206
4217
|
movedToTrashDate: number
|
4218
|
+
referralCode: number
|
4207
4219
|
created_at: number
|
4208
4220
|
updated_at: number
|
4209
4221
|
_all: number
|
@@ -4240,6 +4252,7 @@ export namespace Prisma {
|
|
4240
4252
|
residenceLocationId?: true
|
4241
4253
|
isInTrash?: true
|
4242
4254
|
movedToTrashDate?: true
|
4255
|
+
referralCode?: true
|
4243
4256
|
created_at?: true
|
4244
4257
|
updated_at?: true
|
4245
4258
|
}
|
@@ -4266,6 +4279,7 @@ export namespace Prisma {
|
|
4266
4279
|
residenceLocationId?: true
|
4267
4280
|
isInTrash?: true
|
4268
4281
|
movedToTrashDate?: true
|
4282
|
+
referralCode?: true
|
4269
4283
|
created_at?: true
|
4270
4284
|
updated_at?: true
|
4271
4285
|
}
|
@@ -4293,6 +4307,7 @@ export namespace Prisma {
|
|
4293
4307
|
residenceLocationId?: true
|
4294
4308
|
isInTrash?: true
|
4295
4309
|
movedToTrashDate?: true
|
4310
|
+
referralCode?: true
|
4296
4311
|
created_at?: true
|
4297
4312
|
updated_at?: true
|
4298
4313
|
_all?: true
|
@@ -4407,6 +4422,7 @@ export namespace Prisma {
|
|
4407
4422
|
residenceLocationId: string | null
|
4408
4423
|
isInTrash: boolean
|
4409
4424
|
movedToTrashDate: Date | null
|
4425
|
+
referralCode: string
|
4410
4426
|
created_at: Date
|
4411
4427
|
updated_at: Date
|
4412
4428
|
_count: ProfileCountAggregateOutputType | null
|
@@ -4453,6 +4469,7 @@ export namespace Prisma {
|
|
4453
4469
|
residenceLocationId?: boolean
|
4454
4470
|
isInTrash?: boolean
|
4455
4471
|
movedToTrashDate?: boolean
|
4472
|
+
referralCode?: boolean
|
4456
4473
|
created_at?: boolean
|
4457
4474
|
updated_at?: boolean
|
4458
4475
|
otp?: boolean | Profile$otpArgs<ExtArgs>
|
@@ -4465,6 +4482,7 @@ export namespace Prisma {
|
|
4465
4482
|
productionsAdministrated?: boolean | Profile$productionsAdministratedArgs<ExtArgs>
|
4466
4483
|
productionsParticipated?: boolean | Profile$productionsParticipatedArgs<ExtArgs>
|
4467
4484
|
productionRequestsSent?: boolean | Profile$productionRequestsSentArgs<ExtArgs>
|
4485
|
+
referralCodeUsed?: boolean | Profile$referralCodeUsedArgs<ExtArgs>
|
4468
4486
|
_count?: boolean | ProfileCountOutputTypeDefaultArgs<ExtArgs>
|
4469
4487
|
}, ExtArgs["result"]["profile"]>
|
4470
4488
|
|
@@ -4491,6 +4509,7 @@ export namespace Prisma {
|
|
4491
4509
|
residenceLocationId?: boolean
|
4492
4510
|
isInTrash?: boolean
|
4493
4511
|
movedToTrashDate?: boolean
|
4512
|
+
referralCode?: boolean
|
4494
4513
|
created_at?: boolean
|
4495
4514
|
updated_at?: boolean
|
4496
4515
|
birthLocation?: boolean | Profile$birthLocationArgs<ExtArgs>
|
@@ -4520,6 +4539,7 @@ export namespace Prisma {
|
|
4520
4539
|
residenceLocationId?: boolean
|
4521
4540
|
isInTrash?: boolean
|
4522
4541
|
movedToTrashDate?: boolean
|
4542
|
+
referralCode?: boolean
|
4523
4543
|
created_at?: boolean
|
4524
4544
|
updated_at?: boolean
|
4525
4545
|
birthLocation?: boolean | Profile$birthLocationArgs<ExtArgs>
|
@@ -4549,11 +4569,12 @@ export namespace Prisma {
|
|
4549
4569
|
residenceLocationId?: boolean
|
4550
4570
|
isInTrash?: boolean
|
4551
4571
|
movedToTrashDate?: boolean
|
4572
|
+
referralCode?: boolean
|
4552
4573
|
created_at?: boolean
|
4553
4574
|
updated_at?: boolean
|
4554
4575
|
}
|
4555
4576
|
|
4556
|
-
export type ProfileOmit<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetOmit<"id" | "shortId" | "role" | "firstTimeMiExpo" | "username" | "password" | "phoneNumber" | "isPhoneVerified" | "secondaryPhoneNumber" | "fullName" | "firstName" | "gender" | "birthDate" | "profilePictureUrl" | "instagram" | "mail" | "dni" | "alternativeNames" | "birthLocationId" | "residenceLocationId" | "isInTrash" | "movedToTrashDate" | "created_at" | "updated_at", ExtArgs["result"]["profile"]>
|
4577
|
+
export type ProfileOmit<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetOmit<"id" | "shortId" | "role" | "firstTimeMiExpo" | "username" | "password" | "phoneNumber" | "isPhoneVerified" | "secondaryPhoneNumber" | "fullName" | "firstName" | "gender" | "birthDate" | "profilePictureUrl" | "instagram" | "mail" | "dni" | "alternativeNames" | "birthLocationId" | "residenceLocationId" | "isInTrash" | "movedToTrashDate" | "referralCode" | "created_at" | "updated_at", ExtArgs["result"]["profile"]>
|
4557
4578
|
export type ProfileInclude<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
4558
4579
|
otp?: boolean | Profile$otpArgs<ExtArgs>
|
4559
4580
|
comments?: boolean | Profile$commentsArgs<ExtArgs>
|
@@ -4565,6 +4586,7 @@ export namespace Prisma {
|
|
4565
4586
|
productionsAdministrated?: boolean | Profile$productionsAdministratedArgs<ExtArgs>
|
4566
4587
|
productionsParticipated?: boolean | Profile$productionsParticipatedArgs<ExtArgs>
|
4567
4588
|
productionRequestsSent?: boolean | Profile$productionRequestsSentArgs<ExtArgs>
|
4589
|
+
referralCodeUsed?: boolean | Profile$referralCodeUsedArgs<ExtArgs>
|
4568
4590
|
_count?: boolean | ProfileCountOutputTypeDefaultArgs<ExtArgs>
|
4569
4591
|
}
|
4570
4592
|
export type ProfileIncludeCreateManyAndReturn<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
@@ -4589,6 +4611,7 @@ export namespace Prisma {
|
|
4589
4611
|
productionsAdministrated: Prisma.$ProductionPayload<ExtArgs>[]
|
4590
4612
|
productionsParticipated: Prisma.$ProductionPayload<ExtArgs>[]
|
4591
4613
|
productionRequestsSent: Prisma.$ProductionAffiliationRequestPayload<ExtArgs>[]
|
4614
|
+
referralCodeUsed: Prisma.$TicketGroupPayload<ExtArgs>[]
|
4592
4615
|
}
|
4593
4616
|
scalars: $Extensions.GetPayloadResult<{
|
4594
4617
|
id: string
|
@@ -4613,6 +4636,7 @@ export namespace Prisma {
|
|
4613
4636
|
residenceLocationId: string | null
|
4614
4637
|
isInTrash: boolean
|
4615
4638
|
movedToTrashDate: Date | null
|
4639
|
+
referralCode: string
|
4616
4640
|
created_at: Date
|
4617
4641
|
updated_at: Date
|
4618
4642
|
}, ExtArgs["result"]["profile"]>
|
@@ -5019,6 +5043,7 @@ export namespace Prisma {
|
|
5019
5043
|
productionsAdministrated<T extends Profile$productionsAdministratedArgs<ExtArgs> = {}>(args?: Subset<T, Profile$productionsAdministratedArgs<ExtArgs>>): Prisma.PrismaPromise<$Result.GetResult<Prisma.$ProductionPayload<ExtArgs>, T, "findMany", ClientOptions> | Null>
|
5020
5044
|
productionsParticipated<T extends Profile$productionsParticipatedArgs<ExtArgs> = {}>(args?: Subset<T, Profile$productionsParticipatedArgs<ExtArgs>>): Prisma.PrismaPromise<$Result.GetResult<Prisma.$ProductionPayload<ExtArgs>, T, "findMany", ClientOptions> | Null>
|
5021
5045
|
productionRequestsSent<T extends Profile$productionRequestsSentArgs<ExtArgs> = {}>(args?: Subset<T, Profile$productionRequestsSentArgs<ExtArgs>>): Prisma.PrismaPromise<$Result.GetResult<Prisma.$ProductionAffiliationRequestPayload<ExtArgs>, T, "findMany", ClientOptions> | Null>
|
5046
|
+
referralCodeUsed<T extends Profile$referralCodeUsedArgs<ExtArgs> = {}>(args?: Subset<T, Profile$referralCodeUsedArgs<ExtArgs>>): Prisma.PrismaPromise<$Result.GetResult<Prisma.$TicketGroupPayload<ExtArgs>, T, "findMany", ClientOptions> | Null>
|
5022
5047
|
/**
|
5023
5048
|
* Attaches callbacks for the resolution and/or rejection of the Promise.
|
5024
5049
|
* @param onfulfilled The callback to execute when the Promise is resolved.
|
@@ -5070,6 +5095,7 @@ export namespace Prisma {
|
|
5070
5095
|
readonly residenceLocationId: FieldRef<"Profile", 'String'>
|
5071
5096
|
readonly isInTrash: FieldRef<"Profile", 'Boolean'>
|
5072
5097
|
readonly movedToTrashDate: FieldRef<"Profile", 'DateTime'>
|
5098
|
+
readonly referralCode: FieldRef<"Profile", 'String'>
|
5073
5099
|
readonly created_at: FieldRef<"Profile", 'DateTime'>
|
5074
5100
|
readonly updated_at: FieldRef<"Profile", 'DateTime'>
|
5075
5101
|
}
|
@@ -5697,6 +5723,30 @@ export namespace Prisma {
|
|
5697
5723
|
distinct?: ProductionAffiliationRequestScalarFieldEnum | ProductionAffiliationRequestScalarFieldEnum[]
|
5698
5724
|
}
|
5699
5725
|
|
5726
|
+
/**
|
5727
|
+
* Profile.referralCodeUsed
|
5728
|
+
*/
|
5729
|
+
export type Profile$referralCodeUsedArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
5730
|
+
/**
|
5731
|
+
* Select specific fields to fetch from the TicketGroup
|
5732
|
+
*/
|
5733
|
+
select?: TicketGroupSelect<ExtArgs> | null
|
5734
|
+
/**
|
5735
|
+
* Omit specific fields from the TicketGroup
|
5736
|
+
*/
|
5737
|
+
omit?: TicketGroupOmit<ExtArgs> | null
|
5738
|
+
/**
|
5739
|
+
* Choose, which related nodes to fetch as well
|
5740
|
+
*/
|
5741
|
+
include?: TicketGroupInclude<ExtArgs> | null
|
5742
|
+
where?: TicketGroupWhereInput
|
5743
|
+
orderBy?: TicketGroupOrderByWithRelationInput | TicketGroupOrderByWithRelationInput[]
|
5744
|
+
cursor?: TicketGroupWhereUniqueInput
|
5745
|
+
take?: number
|
5746
|
+
skip?: number
|
5747
|
+
distinct?: TicketGroupScalarFieldEnum | TicketGroupScalarFieldEnum[]
|
5748
|
+
}
|
5749
|
+
|
5700
5750
|
/**
|
5701
5751
|
* Profile without action
|
5702
5752
|
*/
|
@@ -16100,6 +16150,7 @@ export namespace Prisma {
|
|
16100
16150
|
scannedAt: Date | null
|
16101
16151
|
profileId: string | null
|
16102
16152
|
ticketGroupId: string | null
|
16153
|
+
referralCode: string | null
|
16103
16154
|
created_at: Date | null
|
16104
16155
|
updated_at: Date | null
|
16105
16156
|
}
|
@@ -16116,6 +16167,7 @@ export namespace Prisma {
|
|
16116
16167
|
scannedAt: Date | null
|
16117
16168
|
profileId: string | null
|
16118
16169
|
ticketGroupId: string | null
|
16170
|
+
referralCode: string | null
|
16119
16171
|
created_at: Date | null
|
16120
16172
|
updated_at: Date | null
|
16121
16173
|
}
|
@@ -16132,6 +16184,7 @@ export namespace Prisma {
|
|
16132
16184
|
scannedAt: number
|
16133
16185
|
profileId: number
|
16134
16186
|
ticketGroupId: number
|
16187
|
+
referralCode: number
|
16135
16188
|
created_at: number
|
16136
16189
|
updated_at: number
|
16137
16190
|
_all: number
|
@@ -16158,6 +16211,7 @@ export namespace Prisma {
|
|
16158
16211
|
scannedAt?: true
|
16159
16212
|
profileId?: true
|
16160
16213
|
ticketGroupId?: true
|
16214
|
+
referralCode?: true
|
16161
16215
|
created_at?: true
|
16162
16216
|
updated_at?: true
|
16163
16217
|
}
|
@@ -16174,6 +16228,7 @@ export namespace Prisma {
|
|
16174
16228
|
scannedAt?: true
|
16175
16229
|
profileId?: true
|
16176
16230
|
ticketGroupId?: true
|
16231
|
+
referralCode?: true
|
16177
16232
|
created_at?: true
|
16178
16233
|
updated_at?: true
|
16179
16234
|
}
|
@@ -16190,6 +16245,7 @@ export namespace Prisma {
|
|
16190
16245
|
scannedAt?: true
|
16191
16246
|
profileId?: true
|
16192
16247
|
ticketGroupId?: true
|
16248
|
+
referralCode?: true
|
16193
16249
|
created_at?: true
|
16194
16250
|
updated_at?: true
|
16195
16251
|
_all?: true
|
@@ -16293,6 +16349,7 @@ export namespace Prisma {
|
|
16293
16349
|
scannedAt: Date | null
|
16294
16350
|
profileId: string | null
|
16295
16351
|
ticketGroupId: string | null
|
16352
|
+
referralCode: string | null
|
16296
16353
|
created_at: Date
|
16297
16354
|
updated_at: Date
|
16298
16355
|
_count: TicketCountAggregateOutputType | null
|
@@ -16328,6 +16385,7 @@ export namespace Prisma {
|
|
16328
16385
|
scannedAt?: boolean
|
16329
16386
|
profileId?: boolean
|
16330
16387
|
ticketGroupId?: boolean
|
16388
|
+
referralCode?: boolean
|
16331
16389
|
created_at?: boolean
|
16332
16390
|
updated_at?: boolean
|
16333
16391
|
event?: boolean | EventDefaultArgs<ExtArgs>
|
@@ -16347,6 +16405,7 @@ export namespace Prisma {
|
|
16347
16405
|
scannedAt?: boolean
|
16348
16406
|
profileId?: boolean
|
16349
16407
|
ticketGroupId?: boolean
|
16408
|
+
referralCode?: boolean
|
16350
16409
|
created_at?: boolean
|
16351
16410
|
updated_at?: boolean
|
16352
16411
|
event?: boolean | EventDefaultArgs<ExtArgs>
|
@@ -16366,6 +16425,7 @@ export namespace Prisma {
|
|
16366
16425
|
scannedAt?: boolean
|
16367
16426
|
profileId?: boolean
|
16368
16427
|
ticketGroupId?: boolean
|
16428
|
+
referralCode?: boolean
|
16369
16429
|
created_at?: boolean
|
16370
16430
|
updated_at?: boolean
|
16371
16431
|
event?: boolean | EventDefaultArgs<ExtArgs>
|
@@ -16385,11 +16445,12 @@ export namespace Prisma {
|
|
16385
16445
|
scannedAt?: boolean
|
16386
16446
|
profileId?: boolean
|
16387
16447
|
ticketGroupId?: boolean
|
16448
|
+
referralCode?: boolean
|
16388
16449
|
created_at?: boolean
|
16389
16450
|
updated_at?: boolean
|
16390
16451
|
}
|
16391
16452
|
|
16392
|
-
export type TicketOmit<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetOmit<"id" | "eventId" | "type" | "fullName" | "mail" | "dni" | "seat" | "scanned" | "scannedAt" | "profileId" | "ticketGroupId" | "created_at" | "updated_at", ExtArgs["result"]["ticket"]>
|
16453
|
+
export type TicketOmit<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetOmit<"id" | "eventId" | "type" | "fullName" | "mail" | "dni" | "seat" | "scanned" | "scannedAt" | "profileId" | "ticketGroupId" | "referralCode" | "created_at" | "updated_at", ExtArgs["result"]["ticket"]>
|
16393
16454
|
export type TicketInclude<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
16394
16455
|
event?: boolean | EventDefaultArgs<ExtArgs>
|
16395
16456
|
profile?: boolean | Ticket$profileArgs<ExtArgs>
|
@@ -16425,6 +16486,7 @@ export namespace Prisma {
|
|
16425
16486
|
scannedAt: Date | null
|
16426
16487
|
profileId: string | null
|
16427
16488
|
ticketGroupId: string | null
|
16489
|
+
referralCode: string | null
|
16428
16490
|
created_at: Date
|
16429
16491
|
updated_at: Date
|
16430
16492
|
}, ExtArgs["result"]["ticket"]>
|
@@ -16864,6 +16926,7 @@ export namespace Prisma {
|
|
16864
16926
|
readonly scannedAt: FieldRef<"Ticket", 'DateTime'>
|
16865
16927
|
readonly profileId: FieldRef<"Ticket", 'String'>
|
16866
16928
|
readonly ticketGroupId: FieldRef<"Ticket", 'String'>
|
16929
|
+
readonly referralCode: FieldRef<"Ticket", 'String'>
|
16867
16930
|
readonly created_at: FieldRef<"Ticket", 'DateTime'>
|
16868
16931
|
readonly updated_at: FieldRef<"Ticket", 'DateTime'>
|
16869
16932
|
}
|
@@ -17343,6 +17406,7 @@ export namespace Prisma {
|
|
17343
17406
|
status: $Enums.TicketGroupStatus | null
|
17344
17407
|
amountTickets: number | null
|
17345
17408
|
eventId: string | null
|
17409
|
+
referralCode: string | null
|
17346
17410
|
created_at: Date | null
|
17347
17411
|
updated_at: Date | null
|
17348
17412
|
}
|
@@ -17352,6 +17416,7 @@ export namespace Prisma {
|
|
17352
17416
|
status: $Enums.TicketGroupStatus | null
|
17353
17417
|
amountTickets: number | null
|
17354
17418
|
eventId: string | null
|
17419
|
+
referralCode: string | null
|
17355
17420
|
created_at: Date | null
|
17356
17421
|
updated_at: Date | null
|
17357
17422
|
}
|
@@ -17361,6 +17426,7 @@ export namespace Prisma {
|
|
17361
17426
|
status: number
|
17362
17427
|
amountTickets: number
|
17363
17428
|
eventId: number
|
17429
|
+
referralCode: number
|
17364
17430
|
created_at: number
|
17365
17431
|
updated_at: number
|
17366
17432
|
_all: number
|
@@ -17380,6 +17446,7 @@ export namespace Prisma {
|
|
17380
17446
|
status?: true
|
17381
17447
|
amountTickets?: true
|
17382
17448
|
eventId?: true
|
17449
|
+
referralCode?: true
|
17383
17450
|
created_at?: true
|
17384
17451
|
updated_at?: true
|
17385
17452
|
}
|
@@ -17389,6 +17456,7 @@ export namespace Prisma {
|
|
17389
17456
|
status?: true
|
17390
17457
|
amountTickets?: true
|
17391
17458
|
eventId?: true
|
17459
|
+
referralCode?: true
|
17392
17460
|
created_at?: true
|
17393
17461
|
updated_at?: true
|
17394
17462
|
}
|
@@ -17398,6 +17466,7 @@ export namespace Prisma {
|
|
17398
17466
|
status?: true
|
17399
17467
|
amountTickets?: true
|
17400
17468
|
eventId?: true
|
17469
|
+
referralCode?: true
|
17401
17470
|
created_at?: true
|
17402
17471
|
updated_at?: true
|
17403
17472
|
_all?: true
|
@@ -17494,6 +17563,7 @@ export namespace Prisma {
|
|
17494
17563
|
status: $Enums.TicketGroupStatus
|
17495
17564
|
amountTickets: number
|
17496
17565
|
eventId: string
|
17566
|
+
referralCode: string | null
|
17497
17567
|
created_at: Date
|
17498
17568
|
updated_at: Date
|
17499
17569
|
_count: TicketGroupCountAggregateOutputType | null
|
@@ -17522,10 +17592,12 @@ export namespace Prisma {
|
|
17522
17592
|
status?: boolean
|
17523
17593
|
amountTickets?: boolean
|
17524
17594
|
eventId?: boolean
|
17595
|
+
referralCode?: boolean
|
17525
17596
|
created_at?: boolean
|
17526
17597
|
updated_at?: boolean
|
17527
17598
|
event?: boolean | EventDefaultArgs<ExtArgs>
|
17528
17599
|
tickets?: boolean | TicketGroup$ticketsArgs<ExtArgs>
|
17600
|
+
referralCodeProfile?: boolean | TicketGroup$referralCodeProfileArgs<ExtArgs>
|
17529
17601
|
_count?: boolean | TicketGroupCountOutputTypeDefaultArgs<ExtArgs>
|
17530
17602
|
}, ExtArgs["result"]["ticketGroup"]>
|
17531
17603
|
|
@@ -17534,9 +17606,11 @@ export namespace Prisma {
|
|
17534
17606
|
status?: boolean
|
17535
17607
|
amountTickets?: boolean
|
17536
17608
|
eventId?: boolean
|
17609
|
+
referralCode?: boolean
|
17537
17610
|
created_at?: boolean
|
17538
17611
|
updated_at?: boolean
|
17539
17612
|
event?: boolean | EventDefaultArgs<ExtArgs>
|
17613
|
+
referralCodeProfile?: boolean | TicketGroup$referralCodeProfileArgs<ExtArgs>
|
17540
17614
|
}, ExtArgs["result"]["ticketGroup"]>
|
17541
17615
|
|
17542
17616
|
export type TicketGroupSelectUpdateManyAndReturn<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetSelect<{
|
@@ -17544,9 +17618,11 @@ export namespace Prisma {
|
|
17544
17618
|
status?: boolean
|
17545
17619
|
amountTickets?: boolean
|
17546
17620
|
eventId?: boolean
|
17621
|
+
referralCode?: boolean
|
17547
17622
|
created_at?: boolean
|
17548
17623
|
updated_at?: boolean
|
17549
17624
|
event?: boolean | EventDefaultArgs<ExtArgs>
|
17625
|
+
referralCodeProfile?: boolean | TicketGroup$referralCodeProfileArgs<ExtArgs>
|
17550
17626
|
}, ExtArgs["result"]["ticketGroup"]>
|
17551
17627
|
|
17552
17628
|
export type TicketGroupSelectScalar = {
|
@@ -17554,21 +17630,25 @@ export namespace Prisma {
|
|
17554
17630
|
status?: boolean
|
17555
17631
|
amountTickets?: boolean
|
17556
17632
|
eventId?: boolean
|
17633
|
+
referralCode?: boolean
|
17557
17634
|
created_at?: boolean
|
17558
17635
|
updated_at?: boolean
|
17559
17636
|
}
|
17560
17637
|
|
17561
|
-
export type TicketGroupOmit<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetOmit<"id" | "status" | "amountTickets" | "eventId" | "created_at" | "updated_at", ExtArgs["result"]["ticketGroup"]>
|
17638
|
+
export type TicketGroupOmit<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetOmit<"id" | "status" | "amountTickets" | "eventId" | "referralCode" | "created_at" | "updated_at", ExtArgs["result"]["ticketGroup"]>
|
17562
17639
|
export type TicketGroupInclude<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
17563
17640
|
event?: boolean | EventDefaultArgs<ExtArgs>
|
17564
17641
|
tickets?: boolean | TicketGroup$ticketsArgs<ExtArgs>
|
17642
|
+
referralCodeProfile?: boolean | TicketGroup$referralCodeProfileArgs<ExtArgs>
|
17565
17643
|
_count?: boolean | TicketGroupCountOutputTypeDefaultArgs<ExtArgs>
|
17566
17644
|
}
|
17567
17645
|
export type TicketGroupIncludeCreateManyAndReturn<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
17568
17646
|
event?: boolean | EventDefaultArgs<ExtArgs>
|
17647
|
+
referralCodeProfile?: boolean | TicketGroup$referralCodeProfileArgs<ExtArgs>
|
17569
17648
|
}
|
17570
17649
|
export type TicketGroupIncludeUpdateManyAndReturn<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
17571
17650
|
event?: boolean | EventDefaultArgs<ExtArgs>
|
17651
|
+
referralCodeProfile?: boolean | TicketGroup$referralCodeProfileArgs<ExtArgs>
|
17572
17652
|
}
|
17573
17653
|
|
17574
17654
|
export type $TicketGroupPayload<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
@@ -17576,12 +17656,14 @@ export namespace Prisma {
|
|
17576
17656
|
objects: {
|
17577
17657
|
event: Prisma.$EventPayload<ExtArgs>
|
17578
17658
|
tickets: Prisma.$TicketPayload<ExtArgs>[]
|
17659
|
+
referralCodeProfile: Prisma.$ProfilePayload<ExtArgs> | null
|
17579
17660
|
}
|
17580
17661
|
scalars: $Extensions.GetPayloadResult<{
|
17581
17662
|
id: string
|
17582
17663
|
status: $Enums.TicketGroupStatus
|
17583
17664
|
amountTickets: number
|
17584
17665
|
eventId: string
|
17666
|
+
referralCode: string | null
|
17585
17667
|
created_at: Date
|
17586
17668
|
updated_at: Date
|
17587
17669
|
}, ExtArgs["result"]["ticketGroup"]>
|
@@ -17980,6 +18062,7 @@ export namespace Prisma {
|
|
17980
18062
|
readonly [Symbol.toStringTag]: "PrismaPromise"
|
17981
18063
|
event<T extends EventDefaultArgs<ExtArgs> = {}>(args?: Subset<T, EventDefaultArgs<ExtArgs>>): Prisma__EventClient<$Result.GetResult<Prisma.$EventPayload<ExtArgs>, T, "findUniqueOrThrow", ClientOptions> | Null, Null, ExtArgs, ClientOptions>
|
17982
18064
|
tickets<T extends TicketGroup$ticketsArgs<ExtArgs> = {}>(args?: Subset<T, TicketGroup$ticketsArgs<ExtArgs>>): Prisma.PrismaPromise<$Result.GetResult<Prisma.$TicketPayload<ExtArgs>, T, "findMany", ClientOptions> | Null>
|
18065
|
+
referralCodeProfile<T extends TicketGroup$referralCodeProfileArgs<ExtArgs> = {}>(args?: Subset<T, TicketGroup$referralCodeProfileArgs<ExtArgs>>): Prisma__ProfileClient<$Result.GetResult<Prisma.$ProfilePayload<ExtArgs>, T, "findUniqueOrThrow", ClientOptions> | null, null, ExtArgs, ClientOptions>
|
17983
18066
|
/**
|
17984
18067
|
* Attaches callbacks for the resolution and/or rejection of the Promise.
|
17985
18068
|
* @param onfulfilled The callback to execute when the Promise is resolved.
|
@@ -18013,6 +18096,7 @@ export namespace Prisma {
|
|
18013
18096
|
readonly status: FieldRef<"TicketGroup", 'TicketGroupStatus'>
|
18014
18097
|
readonly amountTickets: FieldRef<"TicketGroup", 'Int'>
|
18015
18098
|
readonly eventId: FieldRef<"TicketGroup", 'String'>
|
18099
|
+
readonly referralCode: FieldRef<"TicketGroup", 'String'>
|
18016
18100
|
readonly created_at: FieldRef<"TicketGroup", 'DateTime'>
|
18017
18101
|
readonly updated_at: FieldRef<"TicketGroup", 'DateTime'>
|
18018
18102
|
}
|
@@ -18434,6 +18518,25 @@ export namespace Prisma {
|
|
18434
18518
|
distinct?: TicketScalarFieldEnum | TicketScalarFieldEnum[]
|
18435
18519
|
}
|
18436
18520
|
|
18521
|
+
/**
|
18522
|
+
* TicketGroup.referralCodeProfile
|
18523
|
+
*/
|
18524
|
+
export type TicketGroup$referralCodeProfileArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
18525
|
+
/**
|
18526
|
+
* Select specific fields to fetch from the Profile
|
18527
|
+
*/
|
18528
|
+
select?: ProfileSelect<ExtArgs> | null
|
18529
|
+
/**
|
18530
|
+
* Omit specific fields from the Profile
|
18531
|
+
*/
|
18532
|
+
omit?: ProfileOmit<ExtArgs> | null
|
18533
|
+
/**
|
18534
|
+
* Choose, which related nodes to fetch as well
|
18535
|
+
*/
|
18536
|
+
include?: ProfileInclude<ExtArgs> | null
|
18537
|
+
where?: ProfileWhereInput
|
18538
|
+
}
|
18539
|
+
|
18437
18540
|
/**
|
18438
18541
|
* TicketGroup without action
|
18439
18542
|
*/
|
@@ -22850,6 +22953,7 @@ export namespace Prisma {
|
|
22850
22953
|
residenceLocationId: 'residenceLocationId',
|
22851
22954
|
isInTrash: 'isInTrash',
|
22852
22955
|
movedToTrashDate: 'movedToTrashDate',
|
22956
|
+
referralCode: 'referralCode',
|
22853
22957
|
created_at: 'created_at',
|
22854
22958
|
updated_at: 'updated_at'
|
22855
22959
|
};
|
@@ -22992,6 +23096,7 @@ export namespace Prisma {
|
|
22992
23096
|
scannedAt: 'scannedAt',
|
22993
23097
|
profileId: 'profileId',
|
22994
23098
|
ticketGroupId: 'ticketGroupId',
|
23099
|
+
referralCode: 'referralCode',
|
22995
23100
|
created_at: 'created_at',
|
22996
23101
|
updated_at: 'updated_at'
|
22997
23102
|
};
|
@@ -23004,6 +23109,7 @@ export namespace Prisma {
|
|
23004
23109
|
status: 'status',
|
23005
23110
|
amountTickets: 'amountTickets',
|
23006
23111
|
eventId: 'eventId',
|
23112
|
+
referralCode: 'referralCode',
|
23007
23113
|
created_at: 'created_at',
|
23008
23114
|
updated_at: 'updated_at'
|
23009
23115
|
};
|
@@ -23399,6 +23505,7 @@ export namespace Prisma {
|
|
23399
23505
|
residenceLocationId?: StringNullableFilter<"Profile"> | string | null
|
23400
23506
|
isInTrash?: BoolFilter<"Profile"> | boolean
|
23401
23507
|
movedToTrashDate?: DateTimeNullableFilter<"Profile"> | Date | string | null
|
23508
|
+
referralCode?: StringFilter<"Profile"> | string
|
23402
23509
|
created_at?: DateTimeFilter<"Profile"> | Date | string
|
23403
23510
|
updated_at?: DateTimeFilter<"Profile"> | Date | string
|
23404
23511
|
otp?: OtpListRelationFilter
|
@@ -23411,6 +23518,7 @@ export namespace Prisma {
|
|
23411
23518
|
productionsAdministrated?: ProductionListRelationFilter
|
23412
23519
|
productionsParticipated?: ProductionListRelationFilter
|
23413
23520
|
productionRequestsSent?: ProductionAffiliationRequestListRelationFilter
|
23521
|
+
referralCodeUsed?: TicketGroupListRelationFilter
|
23414
23522
|
}
|
23415
23523
|
|
23416
23524
|
export type ProfileOrderByWithRelationInput = {
|
@@ -23436,6 +23544,7 @@ export namespace Prisma {
|
|
23436
23544
|
residenceLocationId?: SortOrderInput | SortOrder
|
23437
23545
|
isInTrash?: SortOrder
|
23438
23546
|
movedToTrashDate?: SortOrderInput | SortOrder
|
23547
|
+
referralCode?: SortOrder
|
23439
23548
|
created_at?: SortOrder
|
23440
23549
|
updated_at?: SortOrder
|
23441
23550
|
otp?: OtpOrderByRelationAggregateInput
|
@@ -23448,6 +23557,7 @@ export namespace Prisma {
|
|
23448
23557
|
productionsAdministrated?: ProductionOrderByRelationAggregateInput
|
23449
23558
|
productionsParticipated?: ProductionOrderByRelationAggregateInput
|
23450
23559
|
productionRequestsSent?: ProductionAffiliationRequestOrderByRelationAggregateInput
|
23560
|
+
referralCodeUsed?: TicketGroupOrderByRelationAggregateInput
|
23451
23561
|
}
|
23452
23562
|
|
23453
23563
|
export type ProfileWhereUniqueInput = Prisma.AtLeast<{
|
@@ -23455,6 +23565,7 @@ export namespace Prisma {
|
|
23455
23565
|
username?: string
|
23456
23566
|
phoneNumber?: string
|
23457
23567
|
secondaryPhoneNumber?: string
|
23568
|
+
referralCode?: string
|
23458
23569
|
AND?: ProfileWhereInput | ProfileWhereInput[]
|
23459
23570
|
OR?: ProfileWhereInput[]
|
23460
23571
|
NOT?: ProfileWhereInput | ProfileWhereInput[]
|
@@ -23488,7 +23599,8 @@ export namespace Prisma {
|
|
23488
23599
|
productionsAdministrated?: ProductionListRelationFilter
|
23489
23600
|
productionsParticipated?: ProductionListRelationFilter
|
23490
23601
|
productionRequestsSent?: ProductionAffiliationRequestListRelationFilter
|
23491
|
-
|
23602
|
+
referralCodeUsed?: TicketGroupListRelationFilter
|
23603
|
+
}, "id" | "username" | "phoneNumber" | "secondaryPhoneNumber" | "referralCode">
|
23492
23604
|
|
23493
23605
|
export type ProfileOrderByWithAggregationInput = {
|
23494
23606
|
id?: SortOrder
|
@@ -23513,6 +23625,7 @@ export namespace Prisma {
|
|
23513
23625
|
residenceLocationId?: SortOrderInput | SortOrder
|
23514
23626
|
isInTrash?: SortOrder
|
23515
23627
|
movedToTrashDate?: SortOrderInput | SortOrder
|
23628
|
+
referralCode?: SortOrder
|
23516
23629
|
created_at?: SortOrder
|
23517
23630
|
updated_at?: SortOrder
|
23518
23631
|
_count?: ProfileCountOrderByAggregateInput
|
@@ -23548,6 +23661,7 @@ export namespace Prisma {
|
|
23548
23661
|
residenceLocationId?: StringNullableWithAggregatesFilter<"Profile"> | string | null
|
23549
23662
|
isInTrash?: BoolWithAggregatesFilter<"Profile"> | boolean
|
23550
23663
|
movedToTrashDate?: DateTimeNullableWithAggregatesFilter<"Profile"> | Date | string | null
|
23664
|
+
referralCode?: StringWithAggregatesFilter<"Profile"> | string
|
23551
23665
|
created_at?: DateTimeWithAggregatesFilter<"Profile"> | Date | string
|
23552
23666
|
updated_at?: DateTimeWithAggregatesFilter<"Profile"> | Date | string
|
23553
23667
|
}
|
@@ -24242,6 +24356,7 @@ export namespace Prisma {
|
|
24242
24356
|
scannedAt?: DateTimeNullableFilter<"Ticket"> | Date | string | null
|
24243
24357
|
profileId?: StringNullableFilter<"Ticket"> | string | null
|
24244
24358
|
ticketGroupId?: StringNullableFilter<"Ticket"> | string | null
|
24359
|
+
referralCode?: StringNullableFilter<"Ticket"> | string | null
|
24245
24360
|
created_at?: DateTimeFilter<"Ticket"> | Date | string
|
24246
24361
|
updated_at?: DateTimeFilter<"Ticket"> | Date | string
|
24247
24362
|
event?: XOR<EventScalarRelationFilter, EventWhereInput>
|
@@ -24261,6 +24376,7 @@ export namespace Prisma {
|
|
24261
24376
|
scannedAt?: SortOrderInput | SortOrder
|
24262
24377
|
profileId?: SortOrderInput | SortOrder
|
24263
24378
|
ticketGroupId?: SortOrderInput | SortOrder
|
24379
|
+
referralCode?: SortOrderInput | SortOrder
|
24264
24380
|
created_at?: SortOrder
|
24265
24381
|
updated_at?: SortOrder
|
24266
24382
|
event?: EventOrderByWithRelationInput
|
@@ -24283,6 +24399,7 @@ export namespace Prisma {
|
|
24283
24399
|
scannedAt?: DateTimeNullableFilter<"Ticket"> | Date | string | null
|
24284
24400
|
profileId?: StringNullableFilter<"Ticket"> | string | null
|
24285
24401
|
ticketGroupId?: StringNullableFilter<"Ticket"> | string | null
|
24402
|
+
referralCode?: StringNullableFilter<"Ticket"> | string | null
|
24286
24403
|
created_at?: DateTimeFilter<"Ticket"> | Date | string
|
24287
24404
|
updated_at?: DateTimeFilter<"Ticket"> | Date | string
|
24288
24405
|
event?: XOR<EventScalarRelationFilter, EventWhereInput>
|
@@ -24302,6 +24419,7 @@ export namespace Prisma {
|
|
24302
24419
|
scannedAt?: SortOrderInput | SortOrder
|
24303
24420
|
profileId?: SortOrderInput | SortOrder
|
24304
24421
|
ticketGroupId?: SortOrderInput | SortOrder
|
24422
|
+
referralCode?: SortOrderInput | SortOrder
|
24305
24423
|
created_at?: SortOrder
|
24306
24424
|
updated_at?: SortOrder
|
24307
24425
|
_count?: TicketCountOrderByAggregateInput
|
@@ -24326,6 +24444,7 @@ export namespace Prisma {
|
|
24326
24444
|
scannedAt?: DateTimeNullableWithAggregatesFilter<"Ticket"> | Date | string | null
|
24327
24445
|
profileId?: StringNullableWithAggregatesFilter<"Ticket"> | string | null
|
24328
24446
|
ticketGroupId?: StringNullableWithAggregatesFilter<"Ticket"> | string | null
|
24447
|
+
referralCode?: StringNullableWithAggregatesFilter<"Ticket"> | string | null
|
24329
24448
|
created_at?: DateTimeWithAggregatesFilter<"Ticket"> | Date | string
|
24330
24449
|
updated_at?: DateTimeWithAggregatesFilter<"Ticket"> | Date | string
|
24331
24450
|
}
|
@@ -24338,10 +24457,12 @@ export namespace Prisma {
|
|
24338
24457
|
status?: EnumTicketGroupStatusFilter<"TicketGroup"> | $Enums.TicketGroupStatus
|
24339
24458
|
amountTickets?: IntFilter<"TicketGroup"> | number
|
24340
24459
|
eventId?: StringFilter<"TicketGroup"> | string
|
24460
|
+
referralCode?: StringNullableFilter<"TicketGroup"> | string | null
|
24341
24461
|
created_at?: DateTimeFilter<"TicketGroup"> | Date | string
|
24342
24462
|
updated_at?: DateTimeFilter<"TicketGroup"> | Date | string
|
24343
24463
|
event?: XOR<EventScalarRelationFilter, EventWhereInput>
|
24344
24464
|
tickets?: TicketListRelationFilter
|
24465
|
+
referralCodeProfile?: XOR<ProfileNullableScalarRelationFilter, ProfileWhereInput> | null
|
24345
24466
|
}
|
24346
24467
|
|
24347
24468
|
export type TicketGroupOrderByWithRelationInput = {
|
@@ -24349,10 +24470,12 @@ export namespace Prisma {
|
|
24349
24470
|
status?: SortOrder
|
24350
24471
|
amountTickets?: SortOrder
|
24351
24472
|
eventId?: SortOrder
|
24473
|
+
referralCode?: SortOrderInput | SortOrder
|
24352
24474
|
created_at?: SortOrder
|
24353
24475
|
updated_at?: SortOrder
|
24354
24476
|
event?: EventOrderByWithRelationInput
|
24355
24477
|
tickets?: TicketOrderByRelationAggregateInput
|
24478
|
+
referralCodeProfile?: ProfileOrderByWithRelationInput
|
24356
24479
|
}
|
24357
24480
|
|
24358
24481
|
export type TicketGroupWhereUniqueInput = Prisma.AtLeast<{
|
@@ -24363,10 +24486,12 @@ export namespace Prisma {
|
|
24363
24486
|
status?: EnumTicketGroupStatusFilter<"TicketGroup"> | $Enums.TicketGroupStatus
|
24364
24487
|
amountTickets?: IntFilter<"TicketGroup"> | number
|
24365
24488
|
eventId?: StringFilter<"TicketGroup"> | string
|
24489
|
+
referralCode?: StringNullableFilter<"TicketGroup"> | string | null
|
24366
24490
|
created_at?: DateTimeFilter<"TicketGroup"> | Date | string
|
24367
24491
|
updated_at?: DateTimeFilter<"TicketGroup"> | Date | string
|
24368
24492
|
event?: XOR<EventScalarRelationFilter, EventWhereInput>
|
24369
24493
|
tickets?: TicketListRelationFilter
|
24494
|
+
referralCodeProfile?: XOR<ProfileNullableScalarRelationFilter, ProfileWhereInput> | null
|
24370
24495
|
}, "id">
|
24371
24496
|
|
24372
24497
|
export type TicketGroupOrderByWithAggregationInput = {
|
@@ -24374,6 +24499,7 @@ export namespace Prisma {
|
|
24374
24499
|
status?: SortOrder
|
24375
24500
|
amountTickets?: SortOrder
|
24376
24501
|
eventId?: SortOrder
|
24502
|
+
referralCode?: SortOrderInput | SortOrder
|
24377
24503
|
created_at?: SortOrder
|
24378
24504
|
updated_at?: SortOrder
|
24379
24505
|
_count?: TicketGroupCountOrderByAggregateInput
|
@@ -24391,6 +24517,7 @@ export namespace Prisma {
|
|
24391
24517
|
status?: EnumTicketGroupStatusWithAggregatesFilter<"TicketGroup"> | $Enums.TicketGroupStatus
|
24392
24518
|
amountTickets?: IntWithAggregatesFilter<"TicketGroup"> | number
|
24393
24519
|
eventId?: StringWithAggregatesFilter<"TicketGroup"> | string
|
24520
|
+
referralCode?: StringNullableWithAggregatesFilter<"TicketGroup"> | string | null
|
24394
24521
|
created_at?: DateTimeWithAggregatesFilter<"TicketGroup"> | Date | string
|
24395
24522
|
updated_at?: DateTimeWithAggregatesFilter<"TicketGroup"> | Date | string
|
24396
24523
|
}
|
@@ -24750,6 +24877,7 @@ export namespace Prisma {
|
|
24750
24877
|
alternativeNames?: ProfileCreatealternativeNamesInput | string[]
|
24751
24878
|
isInTrash?: boolean
|
24752
24879
|
movedToTrashDate?: Date | string | null
|
24880
|
+
referralCode?: string
|
24753
24881
|
created_at?: Date | string
|
24754
24882
|
updated_at?: Date | string
|
24755
24883
|
otp?: OtpCreateNestedManyWithoutOwnerInput
|
@@ -24762,6 +24890,7 @@ export namespace Prisma {
|
|
24762
24890
|
productionsAdministrated?: ProductionCreateNestedManyWithoutAdministratorInput
|
24763
24891
|
productionsParticipated?: ProductionCreateNestedManyWithoutParticipantsInput
|
24764
24892
|
productionRequestsSent?: ProductionAffiliationRequestCreateNestedManyWithoutProfileInput
|
24893
|
+
referralCodeUsed?: TicketGroupCreateNestedManyWithoutReferralCodeProfileInput
|
24765
24894
|
}
|
24766
24895
|
|
24767
24896
|
export type ProfileUncheckedCreateInput = {
|
@@ -24787,6 +24916,7 @@ export namespace Prisma {
|
|
24787
24916
|
residenceLocationId?: string | null
|
24788
24917
|
isInTrash?: boolean
|
24789
24918
|
movedToTrashDate?: Date | string | null
|
24919
|
+
referralCode?: string
|
24790
24920
|
created_at?: Date | string
|
24791
24921
|
updated_at?: Date | string
|
24792
24922
|
otp?: OtpUncheckedCreateNestedManyWithoutOwnerInput
|
@@ -24797,6 +24927,7 @@ export namespace Prisma {
|
|
24797
24927
|
productionsAdministrated?: ProductionUncheckedCreateNestedManyWithoutAdministratorInput
|
24798
24928
|
productionsParticipated?: ProductionUncheckedCreateNestedManyWithoutParticipantsInput
|
24799
24929
|
productionRequestsSent?: ProductionAffiliationRequestUncheckedCreateNestedManyWithoutProfileInput
|
24930
|
+
referralCodeUsed?: TicketGroupUncheckedCreateNestedManyWithoutReferralCodeProfileInput
|
24800
24931
|
}
|
24801
24932
|
|
24802
24933
|
export type ProfileUpdateInput = {
|
@@ -24820,6 +24951,7 @@ export namespace Prisma {
|
|
24820
24951
|
alternativeNames?: ProfileUpdatealternativeNamesInput | string[]
|
24821
24952
|
isInTrash?: BoolFieldUpdateOperationsInput | boolean
|
24822
24953
|
movedToTrashDate?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
24954
|
+
referralCode?: StringFieldUpdateOperationsInput | string
|
24823
24955
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
24824
24956
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
24825
24957
|
otp?: OtpUpdateManyWithoutOwnerNestedInput
|
@@ -24832,6 +24964,7 @@ export namespace Prisma {
|
|
24832
24964
|
productionsAdministrated?: ProductionUpdateManyWithoutAdministratorNestedInput
|
24833
24965
|
productionsParticipated?: ProductionUpdateManyWithoutParticipantsNestedInput
|
24834
24966
|
productionRequestsSent?: ProductionAffiliationRequestUpdateManyWithoutProfileNestedInput
|
24967
|
+
referralCodeUsed?: TicketGroupUpdateManyWithoutReferralCodeProfileNestedInput
|
24835
24968
|
}
|
24836
24969
|
|
24837
24970
|
export type ProfileUncheckedUpdateInput = {
|
@@ -24857,6 +24990,7 @@ export namespace Prisma {
|
|
24857
24990
|
residenceLocationId?: NullableStringFieldUpdateOperationsInput | string | null
|
24858
24991
|
isInTrash?: BoolFieldUpdateOperationsInput | boolean
|
24859
24992
|
movedToTrashDate?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
24993
|
+
referralCode?: StringFieldUpdateOperationsInput | string
|
24860
24994
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
24861
24995
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
24862
24996
|
otp?: OtpUncheckedUpdateManyWithoutOwnerNestedInput
|
@@ -24867,6 +25001,7 @@ export namespace Prisma {
|
|
24867
25001
|
productionsAdministrated?: ProductionUncheckedUpdateManyWithoutAdministratorNestedInput
|
24868
25002
|
productionsParticipated?: ProductionUncheckedUpdateManyWithoutParticipantsNestedInput
|
24869
25003
|
productionRequestsSent?: ProductionAffiliationRequestUncheckedUpdateManyWithoutProfileNestedInput
|
25004
|
+
referralCodeUsed?: TicketGroupUncheckedUpdateManyWithoutReferralCodeProfileNestedInput
|
24870
25005
|
}
|
24871
25006
|
|
24872
25007
|
export type ProfileCreateManyInput = {
|
@@ -24892,6 +25027,7 @@ export namespace Prisma {
|
|
24892
25027
|
residenceLocationId?: string | null
|
24893
25028
|
isInTrash?: boolean
|
24894
25029
|
movedToTrashDate?: Date | string | null
|
25030
|
+
referralCode?: string
|
24895
25031
|
created_at?: Date | string
|
24896
25032
|
updated_at?: Date | string
|
24897
25033
|
}
|
@@ -24917,6 +25053,7 @@ export namespace Prisma {
|
|
24917
25053
|
alternativeNames?: ProfileUpdatealternativeNamesInput | string[]
|
24918
25054
|
isInTrash?: BoolFieldUpdateOperationsInput | boolean
|
24919
25055
|
movedToTrashDate?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
25056
|
+
referralCode?: StringFieldUpdateOperationsInput | string
|
24920
25057
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
24921
25058
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
24922
25059
|
}
|
@@ -24944,6 +25081,7 @@ export namespace Prisma {
|
|
24944
25081
|
residenceLocationId?: NullableStringFieldUpdateOperationsInput | string | null
|
24945
25082
|
isInTrash?: BoolFieldUpdateOperationsInput | boolean
|
24946
25083
|
movedToTrashDate?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
25084
|
+
referralCode?: StringFieldUpdateOperationsInput | string
|
24947
25085
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
24948
25086
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
24949
25087
|
}
|
@@ -25691,6 +25829,7 @@ export namespace Prisma {
|
|
25691
25829
|
seat?: number | null
|
25692
25830
|
scanned?: boolean
|
25693
25831
|
scannedAt?: Date | string | null
|
25832
|
+
referralCode?: string | null
|
25694
25833
|
created_at?: Date | string
|
25695
25834
|
updated_at?: Date | string
|
25696
25835
|
event: EventCreateNestedOneWithoutTicketsInput
|
@@ -25710,6 +25849,7 @@ export namespace Prisma {
|
|
25710
25849
|
scannedAt?: Date | string | null
|
25711
25850
|
profileId?: string | null
|
25712
25851
|
ticketGroupId?: string | null
|
25852
|
+
referralCode?: string | null
|
25713
25853
|
created_at?: Date | string
|
25714
25854
|
updated_at?: Date | string
|
25715
25855
|
}
|
@@ -25723,6 +25863,7 @@ export namespace Prisma {
|
|
25723
25863
|
seat?: NullableIntFieldUpdateOperationsInput | number | null
|
25724
25864
|
scanned?: BoolFieldUpdateOperationsInput | boolean
|
25725
25865
|
scannedAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
25866
|
+
referralCode?: NullableStringFieldUpdateOperationsInput | string | null
|
25726
25867
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
25727
25868
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
25728
25869
|
event?: EventUpdateOneRequiredWithoutTicketsNestedInput
|
@@ -25742,6 +25883,7 @@ export namespace Prisma {
|
|
25742
25883
|
scannedAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
25743
25884
|
profileId?: NullableStringFieldUpdateOperationsInput | string | null
|
25744
25885
|
ticketGroupId?: NullableStringFieldUpdateOperationsInput | string | null
|
25886
|
+
referralCode?: NullableStringFieldUpdateOperationsInput | string | null
|
25745
25887
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
25746
25888
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
25747
25889
|
}
|
@@ -25758,6 +25900,7 @@ export namespace Prisma {
|
|
25758
25900
|
scannedAt?: Date | string | null
|
25759
25901
|
profileId?: string | null
|
25760
25902
|
ticketGroupId?: string | null
|
25903
|
+
referralCode?: string | null
|
25761
25904
|
created_at?: Date | string
|
25762
25905
|
updated_at?: Date | string
|
25763
25906
|
}
|
@@ -25771,6 +25914,7 @@ export namespace Prisma {
|
|
25771
25914
|
seat?: NullableIntFieldUpdateOperationsInput | number | null
|
25772
25915
|
scanned?: BoolFieldUpdateOperationsInput | boolean
|
25773
25916
|
scannedAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
25917
|
+
referralCode?: NullableStringFieldUpdateOperationsInput | string | null
|
25774
25918
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
25775
25919
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
25776
25920
|
}
|
@@ -25787,6 +25931,7 @@ export namespace Prisma {
|
|
25787
25931
|
scannedAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
25788
25932
|
profileId?: NullableStringFieldUpdateOperationsInput | string | null
|
25789
25933
|
ticketGroupId?: NullableStringFieldUpdateOperationsInput | string | null
|
25934
|
+
referralCode?: NullableStringFieldUpdateOperationsInput | string | null
|
25790
25935
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
25791
25936
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
25792
25937
|
}
|
@@ -25799,6 +25944,7 @@ export namespace Prisma {
|
|
25799
25944
|
updated_at?: Date | string
|
25800
25945
|
event: EventCreateNestedOneWithoutTicketGroupsInput
|
25801
25946
|
tickets?: TicketCreateNestedManyWithoutTicketGroupInput
|
25947
|
+
referralCodeProfile?: ProfileCreateNestedOneWithoutReferralCodeUsedInput
|
25802
25948
|
}
|
25803
25949
|
|
25804
25950
|
export type TicketGroupUncheckedCreateInput = {
|
@@ -25806,6 +25952,7 @@ export namespace Prisma {
|
|
25806
25952
|
status: $Enums.TicketGroupStatus
|
25807
25953
|
amountTickets?: number
|
25808
25954
|
eventId: string
|
25955
|
+
referralCode?: string | null
|
25809
25956
|
created_at?: Date | string
|
25810
25957
|
updated_at?: Date | string
|
25811
25958
|
tickets?: TicketUncheckedCreateNestedManyWithoutTicketGroupInput
|
@@ -25819,6 +25966,7 @@ export namespace Prisma {
|
|
25819
25966
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
25820
25967
|
event?: EventUpdateOneRequiredWithoutTicketGroupsNestedInput
|
25821
25968
|
tickets?: TicketUpdateManyWithoutTicketGroupNestedInput
|
25969
|
+
referralCodeProfile?: ProfileUpdateOneWithoutReferralCodeUsedNestedInput
|
25822
25970
|
}
|
25823
25971
|
|
25824
25972
|
export type TicketGroupUncheckedUpdateInput = {
|
@@ -25826,6 +25974,7 @@ export namespace Prisma {
|
|
25826
25974
|
status?: EnumTicketGroupStatusFieldUpdateOperationsInput | $Enums.TicketGroupStatus
|
25827
25975
|
amountTickets?: IntFieldUpdateOperationsInput | number
|
25828
25976
|
eventId?: StringFieldUpdateOperationsInput | string
|
25977
|
+
referralCode?: NullableStringFieldUpdateOperationsInput | string | null
|
25829
25978
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
25830
25979
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
25831
25980
|
tickets?: TicketUncheckedUpdateManyWithoutTicketGroupNestedInput
|
@@ -25836,6 +25985,7 @@ export namespace Prisma {
|
|
25836
25985
|
status: $Enums.TicketGroupStatus
|
25837
25986
|
amountTickets?: number
|
25838
25987
|
eventId: string
|
25988
|
+
referralCode?: string | null
|
25839
25989
|
created_at?: Date | string
|
25840
25990
|
updated_at?: Date | string
|
25841
25991
|
}
|
@@ -25853,6 +26003,7 @@ export namespace Prisma {
|
|
25853
26003
|
status?: EnumTicketGroupStatusFieldUpdateOperationsInput | $Enums.TicketGroupStatus
|
25854
26004
|
amountTickets?: IntFieldUpdateOperationsInput | number
|
25855
26005
|
eventId?: StringFieldUpdateOperationsInput | string
|
26006
|
+
referralCode?: NullableStringFieldUpdateOperationsInput | string | null
|
25856
26007
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
25857
26008
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
25858
26009
|
}
|
@@ -26322,6 +26473,12 @@ export namespace Prisma {
|
|
26322
26473
|
none?: ProductionAffiliationRequestWhereInput
|
26323
26474
|
}
|
26324
26475
|
|
26476
|
+
export type TicketGroupListRelationFilter = {
|
26477
|
+
every?: TicketGroupWhereInput
|
26478
|
+
some?: TicketGroupWhereInput
|
26479
|
+
none?: TicketGroupWhereInput
|
26480
|
+
}
|
26481
|
+
|
26325
26482
|
export type SortOrderInput = {
|
26326
26483
|
sort: SortOrder
|
26327
26484
|
nulls?: NullsOrder
|
@@ -26347,6 +26504,10 @@ export namespace Prisma {
|
|
26347
26504
|
_count?: SortOrder
|
26348
26505
|
}
|
26349
26506
|
|
26507
|
+
export type TicketGroupOrderByRelationAggregateInput = {
|
26508
|
+
_count?: SortOrder
|
26509
|
+
}
|
26510
|
+
|
26350
26511
|
export type ProfileCountOrderByAggregateInput = {
|
26351
26512
|
id?: SortOrder
|
26352
26513
|
shortId?: SortOrder
|
@@ -26370,6 +26531,7 @@ export namespace Prisma {
|
|
26370
26531
|
residenceLocationId?: SortOrder
|
26371
26532
|
isInTrash?: SortOrder
|
26372
26533
|
movedToTrashDate?: SortOrder
|
26534
|
+
referralCode?: SortOrder
|
26373
26535
|
created_at?: SortOrder
|
26374
26536
|
updated_at?: SortOrder
|
26375
26537
|
}
|
@@ -26400,6 +26562,7 @@ export namespace Prisma {
|
|
26400
26562
|
residenceLocationId?: SortOrder
|
26401
26563
|
isInTrash?: SortOrder
|
26402
26564
|
movedToTrashDate?: SortOrder
|
26565
|
+
referralCode?: SortOrder
|
26403
26566
|
created_at?: SortOrder
|
26404
26567
|
updated_at?: SortOrder
|
26405
26568
|
}
|
@@ -26426,6 +26589,7 @@ export namespace Prisma {
|
|
26426
26589
|
residenceLocationId?: SortOrder
|
26427
26590
|
isInTrash?: SortOrder
|
26428
26591
|
movedToTrashDate?: SortOrder
|
26592
|
+
referralCode?: SortOrder
|
26429
26593
|
created_at?: SortOrder
|
26430
26594
|
updated_at?: SortOrder
|
26431
26595
|
}
|
@@ -26759,22 +26923,12 @@ export namespace Prisma {
|
|
26759
26923
|
isNot?: TagWhereInput
|
26760
26924
|
}
|
26761
26925
|
|
26762
|
-
export type TicketGroupListRelationFilter = {
|
26763
|
-
every?: TicketGroupWhereInput
|
26764
|
-
some?: TicketGroupWhereInput
|
26765
|
-
none?: TicketGroupWhereInput
|
26766
|
-
}
|
26767
|
-
|
26768
26926
|
export type EventTicketListRelationFilter = {
|
26769
26927
|
every?: EventTicketWhereInput
|
26770
26928
|
some?: EventTicketWhereInput
|
26771
26929
|
none?: EventTicketWhereInput
|
26772
26930
|
}
|
26773
26931
|
|
26774
|
-
export type TicketGroupOrderByRelationAggregateInput = {
|
26775
|
-
_count?: SortOrder
|
26776
|
-
}
|
26777
|
-
|
26778
26932
|
export type EventTicketOrderByRelationAggregateInput = {
|
26779
26933
|
_count?: SortOrder
|
26780
26934
|
}
|
@@ -27023,6 +27177,7 @@ export namespace Prisma {
|
|
27023
27177
|
scannedAt?: SortOrder
|
27024
27178
|
profileId?: SortOrder
|
27025
27179
|
ticketGroupId?: SortOrder
|
27180
|
+
referralCode?: SortOrder
|
27026
27181
|
created_at?: SortOrder
|
27027
27182
|
updated_at?: SortOrder
|
27028
27183
|
}
|
@@ -27043,6 +27198,7 @@ export namespace Prisma {
|
|
27043
27198
|
scannedAt?: SortOrder
|
27044
27199
|
profileId?: SortOrder
|
27045
27200
|
ticketGroupId?: SortOrder
|
27201
|
+
referralCode?: SortOrder
|
27046
27202
|
created_at?: SortOrder
|
27047
27203
|
updated_at?: SortOrder
|
27048
27204
|
}
|
@@ -27059,6 +27215,7 @@ export namespace Prisma {
|
|
27059
27215
|
scannedAt?: SortOrder
|
27060
27216
|
profileId?: SortOrder
|
27061
27217
|
ticketGroupId?: SortOrder
|
27218
|
+
referralCode?: SortOrder
|
27062
27219
|
created_at?: SortOrder
|
27063
27220
|
updated_at?: SortOrder
|
27064
27221
|
}
|
@@ -27105,6 +27262,7 @@ export namespace Prisma {
|
|
27105
27262
|
status?: SortOrder
|
27106
27263
|
amountTickets?: SortOrder
|
27107
27264
|
eventId?: SortOrder
|
27265
|
+
referralCode?: SortOrder
|
27108
27266
|
created_at?: SortOrder
|
27109
27267
|
updated_at?: SortOrder
|
27110
27268
|
}
|
@@ -27118,6 +27276,7 @@ export namespace Prisma {
|
|
27118
27276
|
status?: SortOrder
|
27119
27277
|
amountTickets?: SortOrder
|
27120
27278
|
eventId?: SortOrder
|
27279
|
+
referralCode?: SortOrder
|
27121
27280
|
created_at?: SortOrder
|
27122
27281
|
updated_at?: SortOrder
|
27123
27282
|
}
|
@@ -27127,6 +27286,7 @@ export namespace Prisma {
|
|
27127
27286
|
status?: SortOrder
|
27128
27287
|
amountTickets?: SortOrder
|
27129
27288
|
eventId?: SortOrder
|
27289
|
+
referralCode?: SortOrder
|
27130
27290
|
created_at?: SortOrder
|
27131
27291
|
updated_at?: SortOrder
|
27132
27292
|
}
|
@@ -27595,6 +27755,13 @@ export namespace Prisma {
|
|
27595
27755
|
connect?: ProductionAffiliationRequestWhereUniqueInput | ProductionAffiliationRequestWhereUniqueInput[]
|
27596
27756
|
}
|
27597
27757
|
|
27758
|
+
export type TicketGroupCreateNestedManyWithoutReferralCodeProfileInput = {
|
27759
|
+
create?: XOR<TicketGroupCreateWithoutReferralCodeProfileInput, TicketGroupUncheckedCreateWithoutReferralCodeProfileInput> | TicketGroupCreateWithoutReferralCodeProfileInput[] | TicketGroupUncheckedCreateWithoutReferralCodeProfileInput[]
|
27760
|
+
connectOrCreate?: TicketGroupCreateOrConnectWithoutReferralCodeProfileInput | TicketGroupCreateOrConnectWithoutReferralCodeProfileInput[]
|
27761
|
+
createMany?: TicketGroupCreateManyReferralCodeProfileInputEnvelope
|
27762
|
+
connect?: TicketGroupWhereUniqueInput | TicketGroupWhereUniqueInput[]
|
27763
|
+
}
|
27764
|
+
|
27598
27765
|
export type OtpUncheckedCreateNestedManyWithoutOwnerInput = {
|
27599
27766
|
create?: XOR<OtpCreateWithoutOwnerInput, OtpUncheckedCreateWithoutOwnerInput> | OtpCreateWithoutOwnerInput[] | OtpUncheckedCreateWithoutOwnerInput[]
|
27600
27767
|
connectOrCreate?: OtpCreateOrConnectWithoutOwnerInput | OtpCreateOrConnectWithoutOwnerInput[]
|
@@ -27649,6 +27816,13 @@ export namespace Prisma {
|
|
27649
27816
|
connect?: ProductionAffiliationRequestWhereUniqueInput | ProductionAffiliationRequestWhereUniqueInput[]
|
27650
27817
|
}
|
27651
27818
|
|
27819
|
+
export type TicketGroupUncheckedCreateNestedManyWithoutReferralCodeProfileInput = {
|
27820
|
+
create?: XOR<TicketGroupCreateWithoutReferralCodeProfileInput, TicketGroupUncheckedCreateWithoutReferralCodeProfileInput> | TicketGroupCreateWithoutReferralCodeProfileInput[] | TicketGroupUncheckedCreateWithoutReferralCodeProfileInput[]
|
27821
|
+
connectOrCreate?: TicketGroupCreateOrConnectWithoutReferralCodeProfileInput | TicketGroupCreateOrConnectWithoutReferralCodeProfileInput[]
|
27822
|
+
createMany?: TicketGroupCreateManyReferralCodeProfileInputEnvelope
|
27823
|
+
connect?: TicketGroupWhereUniqueInput | TicketGroupWhereUniqueInput[]
|
27824
|
+
}
|
27825
|
+
|
27652
27826
|
export type IntFieldUpdateOperationsInput = {
|
27653
27827
|
set?: number
|
27654
27828
|
increment?: number
|
@@ -27800,6 +27974,20 @@ export namespace Prisma {
|
|
27800
27974
|
deleteMany?: ProductionAffiliationRequestScalarWhereInput | ProductionAffiliationRequestScalarWhereInput[]
|
27801
27975
|
}
|
27802
27976
|
|
27977
|
+
export type TicketGroupUpdateManyWithoutReferralCodeProfileNestedInput = {
|
27978
|
+
create?: XOR<TicketGroupCreateWithoutReferralCodeProfileInput, TicketGroupUncheckedCreateWithoutReferralCodeProfileInput> | TicketGroupCreateWithoutReferralCodeProfileInput[] | TicketGroupUncheckedCreateWithoutReferralCodeProfileInput[]
|
27979
|
+
connectOrCreate?: TicketGroupCreateOrConnectWithoutReferralCodeProfileInput | TicketGroupCreateOrConnectWithoutReferralCodeProfileInput[]
|
27980
|
+
upsert?: TicketGroupUpsertWithWhereUniqueWithoutReferralCodeProfileInput | TicketGroupUpsertWithWhereUniqueWithoutReferralCodeProfileInput[]
|
27981
|
+
createMany?: TicketGroupCreateManyReferralCodeProfileInputEnvelope
|
27982
|
+
set?: TicketGroupWhereUniqueInput | TicketGroupWhereUniqueInput[]
|
27983
|
+
disconnect?: TicketGroupWhereUniqueInput | TicketGroupWhereUniqueInput[]
|
27984
|
+
delete?: TicketGroupWhereUniqueInput | TicketGroupWhereUniqueInput[]
|
27985
|
+
connect?: TicketGroupWhereUniqueInput | TicketGroupWhereUniqueInput[]
|
27986
|
+
update?: TicketGroupUpdateWithWhereUniqueWithoutReferralCodeProfileInput | TicketGroupUpdateWithWhereUniqueWithoutReferralCodeProfileInput[]
|
27987
|
+
updateMany?: TicketGroupUpdateManyWithWhereWithoutReferralCodeProfileInput | TicketGroupUpdateManyWithWhereWithoutReferralCodeProfileInput[]
|
27988
|
+
deleteMany?: TicketGroupScalarWhereInput | TicketGroupScalarWhereInput[]
|
27989
|
+
}
|
27990
|
+
|
27803
27991
|
export type OtpUncheckedUpdateManyWithoutOwnerNestedInput = {
|
27804
27992
|
create?: XOR<OtpCreateWithoutOwnerInput, OtpUncheckedCreateWithoutOwnerInput> | OtpCreateWithoutOwnerInput[] | OtpUncheckedCreateWithoutOwnerInput[]
|
27805
27993
|
connectOrCreate?: OtpCreateOrConnectWithoutOwnerInput | OtpCreateOrConnectWithoutOwnerInput[]
|
@@ -27910,6 +28098,20 @@ export namespace Prisma {
|
|
27910
28098
|
deleteMany?: ProductionAffiliationRequestScalarWhereInput | ProductionAffiliationRequestScalarWhereInput[]
|
27911
28099
|
}
|
27912
28100
|
|
28101
|
+
export type TicketGroupUncheckedUpdateManyWithoutReferralCodeProfileNestedInput = {
|
28102
|
+
create?: XOR<TicketGroupCreateWithoutReferralCodeProfileInput, TicketGroupUncheckedCreateWithoutReferralCodeProfileInput> | TicketGroupCreateWithoutReferralCodeProfileInput[] | TicketGroupUncheckedCreateWithoutReferralCodeProfileInput[]
|
28103
|
+
connectOrCreate?: TicketGroupCreateOrConnectWithoutReferralCodeProfileInput | TicketGroupCreateOrConnectWithoutReferralCodeProfileInput[]
|
28104
|
+
upsert?: TicketGroupUpsertWithWhereUniqueWithoutReferralCodeProfileInput | TicketGroupUpsertWithWhereUniqueWithoutReferralCodeProfileInput[]
|
28105
|
+
createMany?: TicketGroupCreateManyReferralCodeProfileInputEnvelope
|
28106
|
+
set?: TicketGroupWhereUniqueInput | TicketGroupWhereUniqueInput[]
|
28107
|
+
disconnect?: TicketGroupWhereUniqueInput | TicketGroupWhereUniqueInput[]
|
28108
|
+
delete?: TicketGroupWhereUniqueInput | TicketGroupWhereUniqueInput[]
|
28109
|
+
connect?: TicketGroupWhereUniqueInput | TicketGroupWhereUniqueInput[]
|
28110
|
+
update?: TicketGroupUpdateWithWhereUniqueWithoutReferralCodeProfileInput | TicketGroupUpdateWithWhereUniqueWithoutReferralCodeProfileInput[]
|
28111
|
+
updateMany?: TicketGroupUpdateManyWithWhereWithoutReferralCodeProfileInput | TicketGroupUpdateManyWithWhereWithoutReferralCodeProfileInput[]
|
28112
|
+
deleteMany?: TicketGroupScalarWhereInput | TicketGroupScalarWhereInput[]
|
28113
|
+
}
|
28114
|
+
|
27913
28115
|
export type ProfileCreateNestedOneWithoutOtpInput = {
|
27914
28116
|
create?: XOR<ProfileCreateWithoutOtpInput, ProfileUncheckedCreateWithoutOtpInput>
|
27915
28117
|
connectOrCreate?: ProfileCreateOrConnectWithoutOtpInput
|
@@ -28847,6 +29049,12 @@ export namespace Prisma {
|
|
28847
29049
|
connect?: TicketWhereUniqueInput | TicketWhereUniqueInput[]
|
28848
29050
|
}
|
28849
29051
|
|
29052
|
+
export type ProfileCreateNestedOneWithoutReferralCodeUsedInput = {
|
29053
|
+
create?: XOR<ProfileCreateWithoutReferralCodeUsedInput, ProfileUncheckedCreateWithoutReferralCodeUsedInput>
|
29054
|
+
connectOrCreate?: ProfileCreateOrConnectWithoutReferralCodeUsedInput
|
29055
|
+
connect?: ProfileWhereUniqueInput
|
29056
|
+
}
|
29057
|
+
|
28850
29058
|
export type TicketUncheckedCreateNestedManyWithoutTicketGroupInput = {
|
28851
29059
|
create?: XOR<TicketCreateWithoutTicketGroupInput, TicketUncheckedCreateWithoutTicketGroupInput> | TicketCreateWithoutTicketGroupInput[] | TicketUncheckedCreateWithoutTicketGroupInput[]
|
28852
29060
|
connectOrCreate?: TicketCreateOrConnectWithoutTicketGroupInput | TicketCreateOrConnectWithoutTicketGroupInput[]
|
@@ -28880,6 +29088,16 @@ export namespace Prisma {
|
|
28880
29088
|
deleteMany?: TicketScalarWhereInput | TicketScalarWhereInput[]
|
28881
29089
|
}
|
28882
29090
|
|
29091
|
+
export type ProfileUpdateOneWithoutReferralCodeUsedNestedInput = {
|
29092
|
+
create?: XOR<ProfileCreateWithoutReferralCodeUsedInput, ProfileUncheckedCreateWithoutReferralCodeUsedInput>
|
29093
|
+
connectOrCreate?: ProfileCreateOrConnectWithoutReferralCodeUsedInput
|
29094
|
+
upsert?: ProfileUpsertWithoutReferralCodeUsedInput
|
29095
|
+
disconnect?: ProfileWhereInput | boolean
|
29096
|
+
delete?: ProfileWhereInput | boolean
|
29097
|
+
connect?: ProfileWhereUniqueInput
|
29098
|
+
update?: XOR<XOR<ProfileUpdateToOneWithWhereWithoutReferralCodeUsedInput, ProfileUpdateWithoutReferralCodeUsedInput>, ProfileUncheckedUpdateWithoutReferralCodeUsedInput>
|
29099
|
+
}
|
29100
|
+
|
28883
29101
|
export type TicketUncheckedUpdateManyWithoutTicketGroupNestedInput = {
|
28884
29102
|
create?: XOR<TicketCreateWithoutTicketGroupInput, TicketUncheckedCreateWithoutTicketGroupInput> | TicketCreateWithoutTicketGroupInput[] | TicketUncheckedCreateWithoutTicketGroupInput[]
|
28885
29103
|
connectOrCreate?: TicketCreateOrConnectWithoutTicketGroupInput | TicketCreateOrConnectWithoutTicketGroupInput[]
|
@@ -29902,6 +30120,7 @@ export namespace Prisma {
|
|
29902
30120
|
seat?: number | null
|
29903
30121
|
scanned?: boolean
|
29904
30122
|
scannedAt?: Date | string | null
|
30123
|
+
referralCode?: string | null
|
29905
30124
|
created_at?: Date | string
|
29906
30125
|
updated_at?: Date | string
|
29907
30126
|
event: EventCreateNestedOneWithoutTicketsInput
|
@@ -29919,6 +30138,7 @@ export namespace Prisma {
|
|
29919
30138
|
scanned?: boolean
|
29920
30139
|
scannedAt?: Date | string | null
|
29921
30140
|
ticketGroupId?: string | null
|
30141
|
+
referralCode?: string | null
|
29922
30142
|
created_at?: Date | string
|
29923
30143
|
updated_at?: Date | string
|
29924
30144
|
}
|
@@ -30016,6 +30236,36 @@ export namespace Prisma {
|
|
30016
30236
|
skipDuplicates?: boolean
|
30017
30237
|
}
|
30018
30238
|
|
30239
|
+
export type TicketGroupCreateWithoutReferralCodeProfileInput = {
|
30240
|
+
id?: string
|
30241
|
+
status: $Enums.TicketGroupStatus
|
30242
|
+
amountTickets?: number
|
30243
|
+
created_at?: Date | string
|
30244
|
+
updated_at?: Date | string
|
30245
|
+
event: EventCreateNestedOneWithoutTicketGroupsInput
|
30246
|
+
tickets?: TicketCreateNestedManyWithoutTicketGroupInput
|
30247
|
+
}
|
30248
|
+
|
30249
|
+
export type TicketGroupUncheckedCreateWithoutReferralCodeProfileInput = {
|
30250
|
+
id?: string
|
30251
|
+
status: $Enums.TicketGroupStatus
|
30252
|
+
amountTickets?: number
|
30253
|
+
eventId: string
|
30254
|
+
created_at?: Date | string
|
30255
|
+
updated_at?: Date | string
|
30256
|
+
tickets?: TicketUncheckedCreateNestedManyWithoutTicketGroupInput
|
30257
|
+
}
|
30258
|
+
|
30259
|
+
export type TicketGroupCreateOrConnectWithoutReferralCodeProfileInput = {
|
30260
|
+
where: TicketGroupWhereUniqueInput
|
30261
|
+
create: XOR<TicketGroupCreateWithoutReferralCodeProfileInput, TicketGroupUncheckedCreateWithoutReferralCodeProfileInput>
|
30262
|
+
}
|
30263
|
+
|
30264
|
+
export type TicketGroupCreateManyReferralCodeProfileInputEnvelope = {
|
30265
|
+
data: TicketGroupCreateManyReferralCodeProfileInput | TicketGroupCreateManyReferralCodeProfileInput[]
|
30266
|
+
skipDuplicates?: boolean
|
30267
|
+
}
|
30268
|
+
|
30019
30269
|
export type OtpUpsertWithWhereUniqueWithoutOwnerInput = {
|
30020
30270
|
where: OtpWhereUniqueInput
|
30021
30271
|
update: XOR<OtpUpdateWithoutOwnerInput, OtpUncheckedUpdateWithoutOwnerInput>
|
@@ -30206,6 +30456,7 @@ export namespace Prisma {
|
|
30206
30456
|
scannedAt?: DateTimeNullableFilter<"Ticket"> | Date | string | null
|
30207
30457
|
profileId?: StringNullableFilter<"Ticket"> | string | null
|
30208
30458
|
ticketGroupId?: StringNullableFilter<"Ticket"> | string | null
|
30459
|
+
referralCode?: StringNullableFilter<"Ticket"> | string | null
|
30209
30460
|
created_at?: DateTimeFilter<"Ticket"> | Date | string
|
30210
30461
|
updated_at?: DateTimeFilter<"Ticket"> | Date | string
|
30211
30462
|
}
|
@@ -30282,6 +30533,35 @@ export namespace Prisma {
|
|
30282
30533
|
updated_at?: DateTimeFilter<"ProductionAffiliationRequest"> | Date | string
|
30283
30534
|
}
|
30284
30535
|
|
30536
|
+
export type TicketGroupUpsertWithWhereUniqueWithoutReferralCodeProfileInput = {
|
30537
|
+
where: TicketGroupWhereUniqueInput
|
30538
|
+
update: XOR<TicketGroupUpdateWithoutReferralCodeProfileInput, TicketGroupUncheckedUpdateWithoutReferralCodeProfileInput>
|
30539
|
+
create: XOR<TicketGroupCreateWithoutReferralCodeProfileInput, TicketGroupUncheckedCreateWithoutReferralCodeProfileInput>
|
30540
|
+
}
|
30541
|
+
|
30542
|
+
export type TicketGroupUpdateWithWhereUniqueWithoutReferralCodeProfileInput = {
|
30543
|
+
where: TicketGroupWhereUniqueInput
|
30544
|
+
data: XOR<TicketGroupUpdateWithoutReferralCodeProfileInput, TicketGroupUncheckedUpdateWithoutReferralCodeProfileInput>
|
30545
|
+
}
|
30546
|
+
|
30547
|
+
export type TicketGroupUpdateManyWithWhereWithoutReferralCodeProfileInput = {
|
30548
|
+
where: TicketGroupScalarWhereInput
|
30549
|
+
data: XOR<TicketGroupUpdateManyMutationInput, TicketGroupUncheckedUpdateManyWithoutReferralCodeProfileInput>
|
30550
|
+
}
|
30551
|
+
|
30552
|
+
export type TicketGroupScalarWhereInput = {
|
30553
|
+
AND?: TicketGroupScalarWhereInput | TicketGroupScalarWhereInput[]
|
30554
|
+
OR?: TicketGroupScalarWhereInput[]
|
30555
|
+
NOT?: TicketGroupScalarWhereInput | TicketGroupScalarWhereInput[]
|
30556
|
+
id?: StringFilter<"TicketGroup"> | string
|
30557
|
+
status?: EnumTicketGroupStatusFilter<"TicketGroup"> | $Enums.TicketGroupStatus
|
30558
|
+
amountTickets?: IntFilter<"TicketGroup"> | number
|
30559
|
+
eventId?: StringFilter<"TicketGroup"> | string
|
30560
|
+
referralCode?: StringNullableFilter<"TicketGroup"> | string | null
|
30561
|
+
created_at?: DateTimeFilter<"TicketGroup"> | Date | string
|
30562
|
+
updated_at?: DateTimeFilter<"TicketGroup"> | Date | string
|
30563
|
+
}
|
30564
|
+
|
30285
30565
|
export type ProfileCreateWithoutOtpInput = {
|
30286
30566
|
id?: string
|
30287
30567
|
shortId: number
|
@@ -30303,6 +30583,7 @@ export namespace Prisma {
|
|
30303
30583
|
alternativeNames?: ProfileCreatealternativeNamesInput | string[]
|
30304
30584
|
isInTrash?: boolean
|
30305
30585
|
movedToTrashDate?: Date | string | null
|
30586
|
+
referralCode?: string
|
30306
30587
|
created_at?: Date | string
|
30307
30588
|
updated_at?: Date | string
|
30308
30589
|
comments?: CommentCreateNestedManyWithoutProfileInput
|
@@ -30314,6 +30595,7 @@ export namespace Prisma {
|
|
30314
30595
|
productionsAdministrated?: ProductionCreateNestedManyWithoutAdministratorInput
|
30315
30596
|
productionsParticipated?: ProductionCreateNestedManyWithoutParticipantsInput
|
30316
30597
|
productionRequestsSent?: ProductionAffiliationRequestCreateNestedManyWithoutProfileInput
|
30598
|
+
referralCodeUsed?: TicketGroupCreateNestedManyWithoutReferralCodeProfileInput
|
30317
30599
|
}
|
30318
30600
|
|
30319
30601
|
export type ProfileUncheckedCreateWithoutOtpInput = {
|
@@ -30339,6 +30621,7 @@ export namespace Prisma {
|
|
30339
30621
|
residenceLocationId?: string | null
|
30340
30622
|
isInTrash?: boolean
|
30341
30623
|
movedToTrashDate?: Date | string | null
|
30624
|
+
referralCode?: string
|
30342
30625
|
created_at?: Date | string
|
30343
30626
|
updated_at?: Date | string
|
30344
30627
|
comments?: CommentUncheckedCreateNestedManyWithoutProfileInput
|
@@ -30348,6 +30631,7 @@ export namespace Prisma {
|
|
30348
30631
|
productionsAdministrated?: ProductionUncheckedCreateNestedManyWithoutAdministratorInput
|
30349
30632
|
productionsParticipated?: ProductionUncheckedCreateNestedManyWithoutParticipantsInput
|
30350
30633
|
productionRequestsSent?: ProductionAffiliationRequestUncheckedCreateNestedManyWithoutProfileInput
|
30634
|
+
referralCodeUsed?: TicketGroupUncheckedCreateNestedManyWithoutReferralCodeProfileInput
|
30351
30635
|
}
|
30352
30636
|
|
30353
30637
|
export type ProfileCreateOrConnectWithoutOtpInput = {
|
@@ -30387,6 +30671,7 @@ export namespace Prisma {
|
|
30387
30671
|
alternativeNames?: ProfileUpdatealternativeNamesInput | string[]
|
30388
30672
|
isInTrash?: BoolFieldUpdateOperationsInput | boolean
|
30389
30673
|
movedToTrashDate?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
30674
|
+
referralCode?: StringFieldUpdateOperationsInput | string
|
30390
30675
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
30391
30676
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
30392
30677
|
comments?: CommentUpdateManyWithoutProfileNestedInput
|
@@ -30398,6 +30683,7 @@ export namespace Prisma {
|
|
30398
30683
|
productionsAdministrated?: ProductionUpdateManyWithoutAdministratorNestedInput
|
30399
30684
|
productionsParticipated?: ProductionUpdateManyWithoutParticipantsNestedInput
|
30400
30685
|
productionRequestsSent?: ProductionAffiliationRequestUpdateManyWithoutProfileNestedInput
|
30686
|
+
referralCodeUsed?: TicketGroupUpdateManyWithoutReferralCodeProfileNestedInput
|
30401
30687
|
}
|
30402
30688
|
|
30403
30689
|
export type ProfileUncheckedUpdateWithoutOtpInput = {
|
@@ -30423,6 +30709,7 @@ export namespace Prisma {
|
|
30423
30709
|
residenceLocationId?: NullableStringFieldUpdateOperationsInput | string | null
|
30424
30710
|
isInTrash?: BoolFieldUpdateOperationsInput | boolean
|
30425
30711
|
movedToTrashDate?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
30712
|
+
referralCode?: StringFieldUpdateOperationsInput | string
|
30426
30713
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
30427
30714
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
30428
30715
|
comments?: CommentUncheckedUpdateManyWithoutProfileNestedInput
|
@@ -30432,6 +30719,7 @@ export namespace Prisma {
|
|
30432
30719
|
productionsAdministrated?: ProductionUncheckedUpdateManyWithoutAdministratorNestedInput
|
30433
30720
|
productionsParticipated?: ProductionUncheckedUpdateManyWithoutParticipantsNestedInput
|
30434
30721
|
productionRequestsSent?: ProductionAffiliationRequestUncheckedUpdateManyWithoutProfileNestedInput
|
30722
|
+
referralCodeUsed?: TicketGroupUncheckedUpdateManyWithoutReferralCodeProfileNestedInput
|
30435
30723
|
}
|
30436
30724
|
|
30437
30725
|
export type ProfileCreateWithoutBirthLocationInput = {
|
@@ -30455,6 +30743,7 @@ export namespace Prisma {
|
|
30455
30743
|
alternativeNames?: ProfileCreatealternativeNamesInput | string[]
|
30456
30744
|
isInTrash?: boolean
|
30457
30745
|
movedToTrashDate?: Date | string | null
|
30746
|
+
referralCode?: string
|
30458
30747
|
created_at?: Date | string
|
30459
30748
|
updated_at?: Date | string
|
30460
30749
|
otp?: OtpCreateNestedManyWithoutOwnerInput
|
@@ -30466,6 +30755,7 @@ export namespace Prisma {
|
|
30466
30755
|
productionsAdministrated?: ProductionCreateNestedManyWithoutAdministratorInput
|
30467
30756
|
productionsParticipated?: ProductionCreateNestedManyWithoutParticipantsInput
|
30468
30757
|
productionRequestsSent?: ProductionAffiliationRequestCreateNestedManyWithoutProfileInput
|
30758
|
+
referralCodeUsed?: TicketGroupCreateNestedManyWithoutReferralCodeProfileInput
|
30469
30759
|
}
|
30470
30760
|
|
30471
30761
|
export type ProfileUncheckedCreateWithoutBirthLocationInput = {
|
@@ -30490,6 +30780,7 @@ export namespace Prisma {
|
|
30490
30780
|
residenceLocationId?: string | null
|
30491
30781
|
isInTrash?: boolean
|
30492
30782
|
movedToTrashDate?: Date | string | null
|
30783
|
+
referralCode?: string
|
30493
30784
|
created_at?: Date | string
|
30494
30785
|
updated_at?: Date | string
|
30495
30786
|
otp?: OtpUncheckedCreateNestedManyWithoutOwnerInput
|
@@ -30500,6 +30791,7 @@ export namespace Prisma {
|
|
30500
30791
|
productionsAdministrated?: ProductionUncheckedCreateNestedManyWithoutAdministratorInput
|
30501
30792
|
productionsParticipated?: ProductionUncheckedCreateNestedManyWithoutParticipantsInput
|
30502
30793
|
productionRequestsSent?: ProductionAffiliationRequestUncheckedCreateNestedManyWithoutProfileInput
|
30794
|
+
referralCodeUsed?: TicketGroupUncheckedCreateNestedManyWithoutReferralCodeProfileInput
|
30503
30795
|
}
|
30504
30796
|
|
30505
30797
|
export type ProfileCreateOrConnectWithoutBirthLocationInput = {
|
@@ -30533,6 +30825,7 @@ export namespace Prisma {
|
|
30533
30825
|
alternativeNames?: ProfileCreatealternativeNamesInput | string[]
|
30534
30826
|
isInTrash?: boolean
|
30535
30827
|
movedToTrashDate?: Date | string | null
|
30828
|
+
referralCode?: string
|
30536
30829
|
created_at?: Date | string
|
30537
30830
|
updated_at?: Date | string
|
30538
30831
|
otp?: OtpCreateNestedManyWithoutOwnerInput
|
@@ -30544,6 +30837,7 @@ export namespace Prisma {
|
|
30544
30837
|
productionsAdministrated?: ProductionCreateNestedManyWithoutAdministratorInput
|
30545
30838
|
productionsParticipated?: ProductionCreateNestedManyWithoutParticipantsInput
|
30546
30839
|
productionRequestsSent?: ProductionAffiliationRequestCreateNestedManyWithoutProfileInput
|
30840
|
+
referralCodeUsed?: TicketGroupCreateNestedManyWithoutReferralCodeProfileInput
|
30547
30841
|
}
|
30548
30842
|
|
30549
30843
|
export type ProfileUncheckedCreateWithoutResidenceLocationInput = {
|
@@ -30568,6 +30862,7 @@ export namespace Prisma {
|
|
30568
30862
|
birthLocationId?: string | null
|
30569
30863
|
isInTrash?: boolean
|
30570
30864
|
movedToTrashDate?: Date | string | null
|
30865
|
+
referralCode?: string
|
30571
30866
|
created_at?: Date | string
|
30572
30867
|
updated_at?: Date | string
|
30573
30868
|
otp?: OtpUncheckedCreateNestedManyWithoutOwnerInput
|
@@ -30578,6 +30873,7 @@ export namespace Prisma {
|
|
30578
30873
|
productionsAdministrated?: ProductionUncheckedCreateNestedManyWithoutAdministratorInput
|
30579
30874
|
productionsParticipated?: ProductionUncheckedCreateNestedManyWithoutParticipantsInput
|
30580
30875
|
productionRequestsSent?: ProductionAffiliationRequestUncheckedCreateNestedManyWithoutProfileInput
|
30876
|
+
referralCodeUsed?: TicketGroupUncheckedCreateNestedManyWithoutReferralCodeProfileInput
|
30581
30877
|
}
|
30582
30878
|
|
30583
30879
|
export type ProfileCreateOrConnectWithoutResidenceLocationInput = {
|
@@ -30632,6 +30928,7 @@ export namespace Prisma {
|
|
30632
30928
|
residenceLocationId?: StringNullableFilter<"Profile"> | string | null
|
30633
30929
|
isInTrash?: BoolFilter<"Profile"> | boolean
|
30634
30930
|
movedToTrashDate?: DateTimeNullableFilter<"Profile"> | Date | string | null
|
30931
|
+
referralCode?: StringFilter<"Profile"> | string
|
30635
30932
|
created_at?: DateTimeFilter<"Profile"> | Date | string
|
30636
30933
|
updated_at?: DateTimeFilter<"Profile"> | Date | string
|
30637
30934
|
}
|
@@ -30706,6 +31003,7 @@ export namespace Prisma {
|
|
30706
31003
|
alternativeNames?: ProfileCreatealternativeNamesInput | string[]
|
30707
31004
|
isInTrash?: boolean
|
30708
31005
|
movedToTrashDate?: Date | string | null
|
31006
|
+
referralCode?: string
|
30709
31007
|
created_at?: Date | string
|
30710
31008
|
updated_at?: Date | string
|
30711
31009
|
otp?: OtpCreateNestedManyWithoutOwnerInput
|
@@ -30717,6 +31015,7 @@ export namespace Prisma {
|
|
30717
31015
|
productionsAdministrated?: ProductionCreateNestedManyWithoutAdministratorInput
|
30718
31016
|
productionsParticipated?: ProductionCreateNestedManyWithoutParticipantsInput
|
30719
31017
|
productionRequestsSent?: ProductionAffiliationRequestCreateNestedManyWithoutProfileInput
|
31018
|
+
referralCodeUsed?: TicketGroupCreateNestedManyWithoutReferralCodeProfileInput
|
30720
31019
|
}
|
30721
31020
|
|
30722
31021
|
export type ProfileUncheckedCreateWithoutCommentsInput = {
|
@@ -30742,6 +31041,7 @@ export namespace Prisma {
|
|
30742
31041
|
residenceLocationId?: string | null
|
30743
31042
|
isInTrash?: boolean
|
30744
31043
|
movedToTrashDate?: Date | string | null
|
31044
|
+
referralCode?: string
|
30745
31045
|
created_at?: Date | string
|
30746
31046
|
updated_at?: Date | string
|
30747
31047
|
otp?: OtpUncheckedCreateNestedManyWithoutOwnerInput
|
@@ -30751,6 +31051,7 @@ export namespace Prisma {
|
|
30751
31051
|
productionsAdministrated?: ProductionUncheckedCreateNestedManyWithoutAdministratorInput
|
30752
31052
|
productionsParticipated?: ProductionUncheckedCreateNestedManyWithoutParticipantsInput
|
30753
31053
|
productionRequestsSent?: ProductionAffiliationRequestUncheckedCreateNestedManyWithoutProfileInput
|
31054
|
+
referralCodeUsed?: TicketGroupUncheckedCreateNestedManyWithoutReferralCodeProfileInput
|
30754
31055
|
}
|
30755
31056
|
|
30756
31057
|
export type ProfileCreateOrConnectWithoutCommentsInput = {
|
@@ -30862,6 +31163,7 @@ export namespace Prisma {
|
|
30862
31163
|
alternativeNames?: ProfileUpdatealternativeNamesInput | string[]
|
30863
31164
|
isInTrash?: BoolFieldUpdateOperationsInput | boolean
|
30864
31165
|
movedToTrashDate?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
31166
|
+
referralCode?: StringFieldUpdateOperationsInput | string
|
30865
31167
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
30866
31168
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
30867
31169
|
otp?: OtpUpdateManyWithoutOwnerNestedInput
|
@@ -30873,6 +31175,7 @@ export namespace Prisma {
|
|
30873
31175
|
productionsAdministrated?: ProductionUpdateManyWithoutAdministratorNestedInput
|
30874
31176
|
productionsParticipated?: ProductionUpdateManyWithoutParticipantsNestedInput
|
30875
31177
|
productionRequestsSent?: ProductionAffiliationRequestUpdateManyWithoutProfileNestedInput
|
31178
|
+
referralCodeUsed?: TicketGroupUpdateManyWithoutReferralCodeProfileNestedInput
|
30876
31179
|
}
|
30877
31180
|
|
30878
31181
|
export type ProfileUncheckedUpdateWithoutCommentsInput = {
|
@@ -30898,6 +31201,7 @@ export namespace Prisma {
|
|
30898
31201
|
residenceLocationId?: NullableStringFieldUpdateOperationsInput | string | null
|
30899
31202
|
isInTrash?: BoolFieldUpdateOperationsInput | boolean
|
30900
31203
|
movedToTrashDate?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
31204
|
+
referralCode?: StringFieldUpdateOperationsInput | string
|
30901
31205
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
30902
31206
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
30903
31207
|
otp?: OtpUncheckedUpdateManyWithoutOwnerNestedInput
|
@@ -30907,6 +31211,7 @@ export namespace Prisma {
|
|
30907
31211
|
productionsAdministrated?: ProductionUncheckedUpdateManyWithoutAdministratorNestedInput
|
30908
31212
|
productionsParticipated?: ProductionUncheckedUpdateManyWithoutParticipantsNestedInput
|
30909
31213
|
productionRequestsSent?: ProductionAffiliationRequestUncheckedUpdateManyWithoutProfileNestedInput
|
31214
|
+
referralCodeUsed?: TicketGroupUncheckedUpdateManyWithoutReferralCodeProfileNestedInput
|
30910
31215
|
}
|
30911
31216
|
|
30912
31217
|
export type AccountUpsertWithoutSolvableCommentsInput = {
|
@@ -31135,6 +31440,7 @@ export namespace Prisma {
|
|
31135
31440
|
alternativeNames?: ProfileCreatealternativeNamesInput | string[]
|
31136
31441
|
isInTrash?: boolean
|
31137
31442
|
movedToTrashDate?: Date | string | null
|
31443
|
+
referralCode?: string
|
31138
31444
|
created_at?: Date | string
|
31139
31445
|
updated_at?: Date | string
|
31140
31446
|
otp?: OtpCreateNestedManyWithoutOwnerInput
|
@@ -31146,6 +31452,7 @@ export namespace Prisma {
|
|
31146
31452
|
productionsAdministrated?: ProductionCreateNestedManyWithoutAdministratorInput
|
31147
31453
|
productionsParticipated?: ProductionCreateNestedManyWithoutParticipantsInput
|
31148
31454
|
productionRequestsSent?: ProductionAffiliationRequestCreateNestedManyWithoutProfileInput
|
31455
|
+
referralCodeUsed?: TicketGroupCreateNestedManyWithoutReferralCodeProfileInput
|
31149
31456
|
}
|
31150
31457
|
|
31151
31458
|
export type ProfileUncheckedCreateWithoutTagsInput = {
|
@@ -31171,6 +31478,7 @@ export namespace Prisma {
|
|
31171
31478
|
residenceLocationId?: string | null
|
31172
31479
|
isInTrash?: boolean
|
31173
31480
|
movedToTrashDate?: Date | string | null
|
31481
|
+
referralCode?: string
|
31174
31482
|
created_at?: Date | string
|
31175
31483
|
updated_at?: Date | string
|
31176
31484
|
otp?: OtpUncheckedCreateNestedManyWithoutOwnerInput
|
@@ -31180,6 +31488,7 @@ export namespace Prisma {
|
|
31180
31488
|
productionsAdministrated?: ProductionUncheckedCreateNestedManyWithoutAdministratorInput
|
31181
31489
|
productionsParticipated?: ProductionUncheckedCreateNestedManyWithoutParticipantsInput
|
31182
31490
|
productionRequestsSent?: ProductionAffiliationRequestUncheckedCreateNestedManyWithoutProfileInput
|
31491
|
+
referralCodeUsed?: TicketGroupUncheckedCreateNestedManyWithoutReferralCodeProfileInput
|
31183
31492
|
}
|
31184
31493
|
|
31185
31494
|
export type ProfileCreateOrConnectWithoutTagsInput = {
|
@@ -31808,6 +32117,7 @@ export namespace Prisma {
|
|
31808
32117
|
seat?: number | null
|
31809
32118
|
scanned?: boolean
|
31810
32119
|
scannedAt?: Date | string | null
|
32120
|
+
referralCode?: string | null
|
31811
32121
|
created_at?: Date | string
|
31812
32122
|
updated_at?: Date | string
|
31813
32123
|
profile?: ProfileCreateNestedOneWithoutTicketsInput
|
@@ -31825,6 +32135,7 @@ export namespace Prisma {
|
|
31825
32135
|
scannedAt?: Date | string | null
|
31826
32136
|
profileId?: string | null
|
31827
32137
|
ticketGroupId?: string | null
|
32138
|
+
referralCode?: string | null
|
31828
32139
|
created_at?: Date | string
|
31829
32140
|
updated_at?: Date | string
|
31830
32141
|
}
|
@@ -31846,12 +32157,14 @@ export namespace Prisma {
|
|
31846
32157
|
created_at?: Date | string
|
31847
32158
|
updated_at?: Date | string
|
31848
32159
|
tickets?: TicketCreateNestedManyWithoutTicketGroupInput
|
32160
|
+
referralCodeProfile?: ProfileCreateNestedOneWithoutReferralCodeUsedInput
|
31849
32161
|
}
|
31850
32162
|
|
31851
32163
|
export type TicketGroupUncheckedCreateWithoutEventInput = {
|
31852
32164
|
id?: string
|
31853
32165
|
status: $Enums.TicketGroupStatus
|
31854
32166
|
amountTickets?: number
|
32167
|
+
referralCode?: string | null
|
31855
32168
|
created_at?: Date | string
|
31856
32169
|
updated_at?: Date | string
|
31857
32170
|
tickets?: TicketUncheckedCreateNestedManyWithoutTicketGroupInput
|
@@ -32252,18 +32565,6 @@ export namespace Prisma {
|
|
32252
32565
|
data: XOR<TicketGroupUpdateManyMutationInput, TicketGroupUncheckedUpdateManyWithoutEventInput>
|
32253
32566
|
}
|
32254
32567
|
|
32255
|
-
export type TicketGroupScalarWhereInput = {
|
32256
|
-
AND?: TicketGroupScalarWhereInput | TicketGroupScalarWhereInput[]
|
32257
|
-
OR?: TicketGroupScalarWhereInput[]
|
32258
|
-
NOT?: TicketGroupScalarWhereInput | TicketGroupScalarWhereInput[]
|
32259
|
-
id?: StringFilter<"TicketGroup"> | string
|
32260
|
-
status?: EnumTicketGroupStatusFilter<"TicketGroup"> | $Enums.TicketGroupStatus
|
32261
|
-
amountTickets?: IntFilter<"TicketGroup"> | number
|
32262
|
-
eventId?: StringFilter<"TicketGroup"> | string
|
32263
|
-
created_at?: DateTimeFilter<"TicketGroup"> | Date | string
|
32264
|
-
updated_at?: DateTimeFilter<"TicketGroup"> | Date | string
|
32265
|
-
}
|
32266
|
-
|
32267
32568
|
export type EventUpsertWithWhereUniqueWithoutSupraEventInput = {
|
32268
32569
|
where: EventWhereUniqueInput
|
32269
32570
|
update: XOR<EventUpdateWithoutSupraEventInput, EventUncheckedUpdateWithoutSupraEventInput>
|
@@ -32454,6 +32755,7 @@ export namespace Prisma {
|
|
32454
32755
|
alternativeNames?: ProfileCreatealternativeNamesInput | string[]
|
32455
32756
|
isInTrash?: boolean
|
32456
32757
|
movedToTrashDate?: Date | string | null
|
32758
|
+
referralCode?: string
|
32457
32759
|
created_at?: Date | string
|
32458
32760
|
updated_at?: Date | string
|
32459
32761
|
otp?: OtpCreateNestedManyWithoutOwnerInput
|
@@ -32465,6 +32767,7 @@ export namespace Prisma {
|
|
32465
32767
|
productionsAdministrated?: ProductionCreateNestedManyWithoutAdministratorInput
|
32466
32768
|
productionsParticipated?: ProductionCreateNestedManyWithoutParticipantsInput
|
32467
32769
|
productionRequestsSent?: ProductionAffiliationRequestCreateNestedManyWithoutProfileInput
|
32770
|
+
referralCodeUsed?: TicketGroupCreateNestedManyWithoutReferralCodeProfileInput
|
32468
32771
|
}
|
32469
32772
|
|
32470
32773
|
export type ProfileUncheckedCreateWithoutMessagesInput = {
|
@@ -32490,6 +32793,7 @@ export namespace Prisma {
|
|
32490
32793
|
residenceLocationId?: string | null
|
32491
32794
|
isInTrash?: boolean
|
32492
32795
|
movedToTrashDate?: Date | string | null
|
32796
|
+
referralCode?: string
|
32493
32797
|
created_at?: Date | string
|
32494
32798
|
updated_at?: Date | string
|
32495
32799
|
otp?: OtpUncheckedCreateNestedManyWithoutOwnerInput
|
@@ -32499,6 +32803,7 @@ export namespace Prisma {
|
|
32499
32803
|
productionsAdministrated?: ProductionUncheckedCreateNestedManyWithoutAdministratorInput
|
32500
32804
|
productionsParticipated?: ProductionUncheckedCreateNestedManyWithoutParticipantsInput
|
32501
32805
|
productionRequestsSent?: ProductionAffiliationRequestUncheckedCreateNestedManyWithoutProfileInput
|
32806
|
+
referralCodeUsed?: TicketGroupUncheckedCreateNestedManyWithoutReferralCodeProfileInput
|
32502
32807
|
}
|
32503
32808
|
|
32504
32809
|
export type ProfileCreateOrConnectWithoutMessagesInput = {
|
@@ -32538,6 +32843,7 @@ export namespace Prisma {
|
|
32538
32843
|
alternativeNames?: ProfileUpdatealternativeNamesInput | string[]
|
32539
32844
|
isInTrash?: BoolFieldUpdateOperationsInput | boolean
|
32540
32845
|
movedToTrashDate?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
32846
|
+
referralCode?: StringFieldUpdateOperationsInput | string
|
32541
32847
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
32542
32848
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
32543
32849
|
otp?: OtpUpdateManyWithoutOwnerNestedInput
|
@@ -32549,6 +32855,7 @@ export namespace Prisma {
|
|
32549
32855
|
productionsAdministrated?: ProductionUpdateManyWithoutAdministratorNestedInput
|
32550
32856
|
productionsParticipated?: ProductionUpdateManyWithoutParticipantsNestedInput
|
32551
32857
|
productionRequestsSent?: ProductionAffiliationRequestUpdateManyWithoutProfileNestedInput
|
32858
|
+
referralCodeUsed?: TicketGroupUpdateManyWithoutReferralCodeProfileNestedInput
|
32552
32859
|
}
|
32553
32860
|
|
32554
32861
|
export type ProfileUncheckedUpdateWithoutMessagesInput = {
|
@@ -32574,6 +32881,7 @@ export namespace Prisma {
|
|
32574
32881
|
residenceLocationId?: NullableStringFieldUpdateOperationsInput | string | null
|
32575
32882
|
isInTrash?: BoolFieldUpdateOperationsInput | boolean
|
32576
32883
|
movedToTrashDate?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
32884
|
+
referralCode?: StringFieldUpdateOperationsInput | string
|
32577
32885
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
32578
32886
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
32579
32887
|
otp?: OtpUncheckedUpdateManyWithoutOwnerNestedInput
|
@@ -32583,6 +32891,7 @@ export namespace Prisma {
|
|
32583
32891
|
productionsAdministrated?: ProductionUncheckedUpdateManyWithoutAdministratorNestedInput
|
32584
32892
|
productionsParticipated?: ProductionUncheckedUpdateManyWithoutParticipantsNestedInput
|
32585
32893
|
productionRequestsSent?: ProductionAffiliationRequestUncheckedUpdateManyWithoutProfileNestedInput
|
32894
|
+
referralCodeUsed?: TicketGroupUncheckedUpdateManyWithoutReferralCodeProfileNestedInput
|
32586
32895
|
}
|
32587
32896
|
|
32588
32897
|
export type EventCreateWithoutTicketsInput = {
|
@@ -32661,6 +32970,7 @@ export namespace Prisma {
|
|
32661
32970
|
alternativeNames?: ProfileCreatealternativeNamesInput | string[]
|
32662
32971
|
isInTrash?: boolean
|
32663
32972
|
movedToTrashDate?: Date | string | null
|
32973
|
+
referralCode?: string
|
32664
32974
|
created_at?: Date | string
|
32665
32975
|
updated_at?: Date | string
|
32666
32976
|
otp?: OtpCreateNestedManyWithoutOwnerInput
|
@@ -32672,6 +32982,7 @@ export namespace Prisma {
|
|
32672
32982
|
productionsAdministrated?: ProductionCreateNestedManyWithoutAdministratorInput
|
32673
32983
|
productionsParticipated?: ProductionCreateNestedManyWithoutParticipantsInput
|
32674
32984
|
productionRequestsSent?: ProductionAffiliationRequestCreateNestedManyWithoutProfileInput
|
32985
|
+
referralCodeUsed?: TicketGroupCreateNestedManyWithoutReferralCodeProfileInput
|
32675
32986
|
}
|
32676
32987
|
|
32677
32988
|
export type ProfileUncheckedCreateWithoutTicketsInput = {
|
@@ -32697,6 +33008,7 @@ export namespace Prisma {
|
|
32697
33008
|
residenceLocationId?: string | null
|
32698
33009
|
isInTrash?: boolean
|
32699
33010
|
movedToTrashDate?: Date | string | null
|
33011
|
+
referralCode?: string
|
32700
33012
|
created_at?: Date | string
|
32701
33013
|
updated_at?: Date | string
|
32702
33014
|
otp?: OtpUncheckedCreateNestedManyWithoutOwnerInput
|
@@ -32706,6 +33018,7 @@ export namespace Prisma {
|
|
32706
33018
|
productionsAdministrated?: ProductionUncheckedCreateNestedManyWithoutAdministratorInput
|
32707
33019
|
productionsParticipated?: ProductionUncheckedCreateNestedManyWithoutParticipantsInput
|
32708
33020
|
productionRequestsSent?: ProductionAffiliationRequestUncheckedCreateNestedManyWithoutProfileInput
|
33021
|
+
referralCodeUsed?: TicketGroupUncheckedCreateNestedManyWithoutReferralCodeProfileInput
|
32709
33022
|
}
|
32710
33023
|
|
32711
33024
|
export type ProfileCreateOrConnectWithoutTicketsInput = {
|
@@ -32720,6 +33033,7 @@ export namespace Prisma {
|
|
32720
33033
|
created_at?: Date | string
|
32721
33034
|
updated_at?: Date | string
|
32722
33035
|
event: EventCreateNestedOneWithoutTicketGroupsInput
|
33036
|
+
referralCodeProfile?: ProfileCreateNestedOneWithoutReferralCodeUsedInput
|
32723
33037
|
}
|
32724
33038
|
|
32725
33039
|
export type TicketGroupUncheckedCreateWithoutTicketsInput = {
|
@@ -32727,6 +33041,7 @@ export namespace Prisma {
|
|
32727
33041
|
status: $Enums.TicketGroupStatus
|
32728
33042
|
amountTickets?: number
|
32729
33043
|
eventId: string
|
33044
|
+
referralCode?: string | null
|
32730
33045
|
created_at?: Date | string
|
32731
33046
|
updated_at?: Date | string
|
32732
33047
|
}
|
@@ -32829,6 +33144,7 @@ export namespace Prisma {
|
|
32829
33144
|
alternativeNames?: ProfileUpdatealternativeNamesInput | string[]
|
32830
33145
|
isInTrash?: BoolFieldUpdateOperationsInput | boolean
|
32831
33146
|
movedToTrashDate?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
33147
|
+
referralCode?: StringFieldUpdateOperationsInput | string
|
32832
33148
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
32833
33149
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
32834
33150
|
otp?: OtpUpdateManyWithoutOwnerNestedInput
|
@@ -32840,6 +33156,7 @@ export namespace Prisma {
|
|
32840
33156
|
productionsAdministrated?: ProductionUpdateManyWithoutAdministratorNestedInput
|
32841
33157
|
productionsParticipated?: ProductionUpdateManyWithoutParticipantsNestedInput
|
32842
33158
|
productionRequestsSent?: ProductionAffiliationRequestUpdateManyWithoutProfileNestedInput
|
33159
|
+
referralCodeUsed?: TicketGroupUpdateManyWithoutReferralCodeProfileNestedInput
|
32843
33160
|
}
|
32844
33161
|
|
32845
33162
|
export type ProfileUncheckedUpdateWithoutTicketsInput = {
|
@@ -32865,6 +33182,7 @@ export namespace Prisma {
|
|
32865
33182
|
residenceLocationId?: NullableStringFieldUpdateOperationsInput | string | null
|
32866
33183
|
isInTrash?: BoolFieldUpdateOperationsInput | boolean
|
32867
33184
|
movedToTrashDate?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
33185
|
+
referralCode?: StringFieldUpdateOperationsInput | string
|
32868
33186
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
32869
33187
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
32870
33188
|
otp?: OtpUncheckedUpdateManyWithoutOwnerNestedInput
|
@@ -32874,6 +33192,7 @@ export namespace Prisma {
|
|
32874
33192
|
productionsAdministrated?: ProductionUncheckedUpdateManyWithoutAdministratorNestedInput
|
32875
33193
|
productionsParticipated?: ProductionUncheckedUpdateManyWithoutParticipantsNestedInput
|
32876
33194
|
productionRequestsSent?: ProductionAffiliationRequestUncheckedUpdateManyWithoutProfileNestedInput
|
33195
|
+
referralCodeUsed?: TicketGroupUncheckedUpdateManyWithoutReferralCodeProfileNestedInput
|
32877
33196
|
}
|
32878
33197
|
|
32879
33198
|
export type TicketGroupUpsertWithoutTicketsInput = {
|
@@ -32894,6 +33213,7 @@ export namespace Prisma {
|
|
32894
33213
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
32895
33214
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
32896
33215
|
event?: EventUpdateOneRequiredWithoutTicketGroupsNestedInput
|
33216
|
+
referralCodeProfile?: ProfileUpdateOneWithoutReferralCodeUsedNestedInput
|
32897
33217
|
}
|
32898
33218
|
|
32899
33219
|
export type TicketGroupUncheckedUpdateWithoutTicketsInput = {
|
@@ -32901,6 +33221,7 @@ export namespace Prisma {
|
|
32901
33221
|
status?: EnumTicketGroupStatusFieldUpdateOperationsInput | $Enums.TicketGroupStatus
|
32902
33222
|
amountTickets?: IntFieldUpdateOperationsInput | number
|
32903
33223
|
eventId?: StringFieldUpdateOperationsInput | string
|
33224
|
+
referralCode?: NullableStringFieldUpdateOperationsInput | string | null
|
32904
33225
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
32905
33226
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
32906
33227
|
}
|
@@ -32969,6 +33290,7 @@ export namespace Prisma {
|
|
32969
33290
|
seat?: number | null
|
32970
33291
|
scanned?: boolean
|
32971
33292
|
scannedAt?: Date | string | null
|
33293
|
+
referralCode?: string | null
|
32972
33294
|
created_at?: Date | string
|
32973
33295
|
updated_at?: Date | string
|
32974
33296
|
event: EventCreateNestedOneWithoutTicketsInput
|
@@ -32986,6 +33308,7 @@ export namespace Prisma {
|
|
32986
33308
|
scanned?: boolean
|
32987
33309
|
scannedAt?: Date | string | null
|
32988
33310
|
profileId?: string | null
|
33311
|
+
referralCode?: string | null
|
32989
33312
|
created_at?: Date | string
|
32990
33313
|
updated_at?: Date | string
|
32991
33314
|
}
|
@@ -33000,6 +33323,83 @@ export namespace Prisma {
|
|
33000
33323
|
skipDuplicates?: boolean
|
33001
33324
|
}
|
33002
33325
|
|
33326
|
+
export type ProfileCreateWithoutReferralCodeUsedInput = {
|
33327
|
+
id?: string
|
33328
|
+
shortId: number
|
33329
|
+
role?: $Enums.Role
|
33330
|
+
firstTimeMiExpo?: boolean
|
33331
|
+
username?: string | null
|
33332
|
+
password?: string | null
|
33333
|
+
phoneNumber: string
|
33334
|
+
isPhoneVerified?: boolean
|
33335
|
+
secondaryPhoneNumber?: string | null
|
33336
|
+
fullName: string
|
33337
|
+
firstName?: string | null
|
33338
|
+
gender?: string | null
|
33339
|
+
birthDate?: Date | string | null
|
33340
|
+
profilePictureUrl?: string | null
|
33341
|
+
instagram?: string | null
|
33342
|
+
mail?: string | null
|
33343
|
+
dni?: string | null
|
33344
|
+
alternativeNames?: ProfileCreatealternativeNamesInput | string[]
|
33345
|
+
isInTrash?: boolean
|
33346
|
+
movedToTrashDate?: Date | string | null
|
33347
|
+
referralCode?: string
|
33348
|
+
created_at?: Date | string
|
33349
|
+
updated_at?: Date | string
|
33350
|
+
otp?: OtpCreateNestedManyWithoutOwnerInput
|
33351
|
+
comments?: CommentCreateNestedManyWithoutProfileInput
|
33352
|
+
messages?: MessageCreateNestedManyWithoutProfileInput
|
33353
|
+
tags?: TagCreateNestedManyWithoutProfilesInput
|
33354
|
+
birthLocation?: LocationCreateNestedOneWithoutBirthProfilesInput
|
33355
|
+
residenceLocation?: LocationCreateNestedOneWithoutResidenceProfilesInput
|
33356
|
+
tickets?: TicketCreateNestedManyWithoutProfileInput
|
33357
|
+
productionsAdministrated?: ProductionCreateNestedManyWithoutAdministratorInput
|
33358
|
+
productionsParticipated?: ProductionCreateNestedManyWithoutParticipantsInput
|
33359
|
+
productionRequestsSent?: ProductionAffiliationRequestCreateNestedManyWithoutProfileInput
|
33360
|
+
}
|
33361
|
+
|
33362
|
+
export type ProfileUncheckedCreateWithoutReferralCodeUsedInput = {
|
33363
|
+
id?: string
|
33364
|
+
shortId: number
|
33365
|
+
role?: $Enums.Role
|
33366
|
+
firstTimeMiExpo?: boolean
|
33367
|
+
username?: string | null
|
33368
|
+
password?: string | null
|
33369
|
+
phoneNumber: string
|
33370
|
+
isPhoneVerified?: boolean
|
33371
|
+
secondaryPhoneNumber?: string | null
|
33372
|
+
fullName: string
|
33373
|
+
firstName?: string | null
|
33374
|
+
gender?: string | null
|
33375
|
+
birthDate?: Date | string | null
|
33376
|
+
profilePictureUrl?: string | null
|
33377
|
+
instagram?: string | null
|
33378
|
+
mail?: string | null
|
33379
|
+
dni?: string | null
|
33380
|
+
alternativeNames?: ProfileCreatealternativeNamesInput | string[]
|
33381
|
+
birthLocationId?: string | null
|
33382
|
+
residenceLocationId?: string | null
|
33383
|
+
isInTrash?: boolean
|
33384
|
+
movedToTrashDate?: Date | string | null
|
33385
|
+
referralCode?: string
|
33386
|
+
created_at?: Date | string
|
33387
|
+
updated_at?: Date | string
|
33388
|
+
otp?: OtpUncheckedCreateNestedManyWithoutOwnerInput
|
33389
|
+
comments?: CommentUncheckedCreateNestedManyWithoutProfileInput
|
33390
|
+
messages?: MessageUncheckedCreateNestedManyWithoutProfileInput
|
33391
|
+
tags?: TagUncheckedCreateNestedManyWithoutProfilesInput
|
33392
|
+
tickets?: TicketUncheckedCreateNestedManyWithoutProfileInput
|
33393
|
+
productionsAdministrated?: ProductionUncheckedCreateNestedManyWithoutAdministratorInput
|
33394
|
+
productionsParticipated?: ProductionUncheckedCreateNestedManyWithoutParticipantsInput
|
33395
|
+
productionRequestsSent?: ProductionAffiliationRequestUncheckedCreateNestedManyWithoutProfileInput
|
33396
|
+
}
|
33397
|
+
|
33398
|
+
export type ProfileCreateOrConnectWithoutReferralCodeUsedInput = {
|
33399
|
+
where: ProfileWhereUniqueInput
|
33400
|
+
create: XOR<ProfileCreateWithoutReferralCodeUsedInput, ProfileUncheckedCreateWithoutReferralCodeUsedInput>
|
33401
|
+
}
|
33402
|
+
|
33003
33403
|
export type EventUpsertWithoutTicketGroupsInput = {
|
33004
33404
|
update: XOR<EventUpdateWithoutTicketGroupsInput, EventUncheckedUpdateWithoutTicketGroupsInput>
|
33005
33405
|
create: XOR<EventCreateWithoutTicketGroupsInput, EventUncheckedCreateWithoutTicketGroupsInput>
|
@@ -33077,6 +33477,89 @@ export namespace Prisma {
|
|
33077
33477
|
data: XOR<TicketUpdateManyMutationInput, TicketUncheckedUpdateManyWithoutTicketGroupInput>
|
33078
33478
|
}
|
33079
33479
|
|
33480
|
+
export type ProfileUpsertWithoutReferralCodeUsedInput = {
|
33481
|
+
update: XOR<ProfileUpdateWithoutReferralCodeUsedInput, ProfileUncheckedUpdateWithoutReferralCodeUsedInput>
|
33482
|
+
create: XOR<ProfileCreateWithoutReferralCodeUsedInput, ProfileUncheckedCreateWithoutReferralCodeUsedInput>
|
33483
|
+
where?: ProfileWhereInput
|
33484
|
+
}
|
33485
|
+
|
33486
|
+
export type ProfileUpdateToOneWithWhereWithoutReferralCodeUsedInput = {
|
33487
|
+
where?: ProfileWhereInput
|
33488
|
+
data: XOR<ProfileUpdateWithoutReferralCodeUsedInput, ProfileUncheckedUpdateWithoutReferralCodeUsedInput>
|
33489
|
+
}
|
33490
|
+
|
33491
|
+
export type ProfileUpdateWithoutReferralCodeUsedInput = {
|
33492
|
+
id?: StringFieldUpdateOperationsInput | string
|
33493
|
+
shortId?: IntFieldUpdateOperationsInput | number
|
33494
|
+
role?: EnumRoleFieldUpdateOperationsInput | $Enums.Role
|
33495
|
+
firstTimeMiExpo?: BoolFieldUpdateOperationsInput | boolean
|
33496
|
+
username?: NullableStringFieldUpdateOperationsInput | string | null
|
33497
|
+
password?: NullableStringFieldUpdateOperationsInput | string | null
|
33498
|
+
phoneNumber?: StringFieldUpdateOperationsInput | string
|
33499
|
+
isPhoneVerified?: BoolFieldUpdateOperationsInput | boolean
|
33500
|
+
secondaryPhoneNumber?: NullableStringFieldUpdateOperationsInput | string | null
|
33501
|
+
fullName?: StringFieldUpdateOperationsInput | string
|
33502
|
+
firstName?: NullableStringFieldUpdateOperationsInput | string | null
|
33503
|
+
gender?: NullableStringFieldUpdateOperationsInput | string | null
|
33504
|
+
birthDate?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
33505
|
+
profilePictureUrl?: NullableStringFieldUpdateOperationsInput | string | null
|
33506
|
+
instagram?: NullableStringFieldUpdateOperationsInput | string | null
|
33507
|
+
mail?: NullableStringFieldUpdateOperationsInput | string | null
|
33508
|
+
dni?: NullableStringFieldUpdateOperationsInput | string | null
|
33509
|
+
alternativeNames?: ProfileUpdatealternativeNamesInput | string[]
|
33510
|
+
isInTrash?: BoolFieldUpdateOperationsInput | boolean
|
33511
|
+
movedToTrashDate?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
33512
|
+
referralCode?: StringFieldUpdateOperationsInput | string
|
33513
|
+
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
33514
|
+
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
33515
|
+
otp?: OtpUpdateManyWithoutOwnerNestedInput
|
33516
|
+
comments?: CommentUpdateManyWithoutProfileNestedInput
|
33517
|
+
messages?: MessageUpdateManyWithoutProfileNestedInput
|
33518
|
+
tags?: TagUpdateManyWithoutProfilesNestedInput
|
33519
|
+
birthLocation?: LocationUpdateOneWithoutBirthProfilesNestedInput
|
33520
|
+
residenceLocation?: LocationUpdateOneWithoutResidenceProfilesNestedInput
|
33521
|
+
tickets?: TicketUpdateManyWithoutProfileNestedInput
|
33522
|
+
productionsAdministrated?: ProductionUpdateManyWithoutAdministratorNestedInput
|
33523
|
+
productionsParticipated?: ProductionUpdateManyWithoutParticipantsNestedInput
|
33524
|
+
productionRequestsSent?: ProductionAffiliationRequestUpdateManyWithoutProfileNestedInput
|
33525
|
+
}
|
33526
|
+
|
33527
|
+
export type ProfileUncheckedUpdateWithoutReferralCodeUsedInput = {
|
33528
|
+
id?: StringFieldUpdateOperationsInput | string
|
33529
|
+
shortId?: IntFieldUpdateOperationsInput | number
|
33530
|
+
role?: EnumRoleFieldUpdateOperationsInput | $Enums.Role
|
33531
|
+
firstTimeMiExpo?: BoolFieldUpdateOperationsInput | boolean
|
33532
|
+
username?: NullableStringFieldUpdateOperationsInput | string | null
|
33533
|
+
password?: NullableStringFieldUpdateOperationsInput | string | null
|
33534
|
+
phoneNumber?: StringFieldUpdateOperationsInput | string
|
33535
|
+
isPhoneVerified?: BoolFieldUpdateOperationsInput | boolean
|
33536
|
+
secondaryPhoneNumber?: NullableStringFieldUpdateOperationsInput | string | null
|
33537
|
+
fullName?: StringFieldUpdateOperationsInput | string
|
33538
|
+
firstName?: NullableStringFieldUpdateOperationsInput | string | null
|
33539
|
+
gender?: NullableStringFieldUpdateOperationsInput | string | null
|
33540
|
+
birthDate?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
33541
|
+
profilePictureUrl?: NullableStringFieldUpdateOperationsInput | string | null
|
33542
|
+
instagram?: NullableStringFieldUpdateOperationsInput | string | null
|
33543
|
+
mail?: NullableStringFieldUpdateOperationsInput | string | null
|
33544
|
+
dni?: NullableStringFieldUpdateOperationsInput | string | null
|
33545
|
+
alternativeNames?: ProfileUpdatealternativeNamesInput | string[]
|
33546
|
+
birthLocationId?: NullableStringFieldUpdateOperationsInput | string | null
|
33547
|
+
residenceLocationId?: NullableStringFieldUpdateOperationsInput | string | null
|
33548
|
+
isInTrash?: BoolFieldUpdateOperationsInput | boolean
|
33549
|
+
movedToTrashDate?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
33550
|
+
referralCode?: StringFieldUpdateOperationsInput | string
|
33551
|
+
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
33552
|
+
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
33553
|
+
otp?: OtpUncheckedUpdateManyWithoutOwnerNestedInput
|
33554
|
+
comments?: CommentUncheckedUpdateManyWithoutProfileNestedInput
|
33555
|
+
messages?: MessageUncheckedUpdateManyWithoutProfileNestedInput
|
33556
|
+
tags?: TagUncheckedUpdateManyWithoutProfilesNestedInput
|
33557
|
+
tickets?: TicketUncheckedUpdateManyWithoutProfileNestedInput
|
33558
|
+
productionsAdministrated?: ProductionUncheckedUpdateManyWithoutAdministratorNestedInput
|
33559
|
+
productionsParticipated?: ProductionUncheckedUpdateManyWithoutParticipantsNestedInput
|
33560
|
+
productionRequestsSent?: ProductionAffiliationRequestUncheckedUpdateManyWithoutProfileNestedInput
|
33561
|
+
}
|
33562
|
+
|
33080
33563
|
export type EventCreateWithoutEventTicketsInput = {
|
33081
33564
|
id?: string
|
33082
33565
|
name: string
|
@@ -33214,6 +33697,7 @@ export namespace Prisma {
|
|
33214
33697
|
alternativeNames?: ProfileCreatealternativeNamesInput | string[]
|
33215
33698
|
isInTrash?: boolean
|
33216
33699
|
movedToTrashDate?: Date | string | null
|
33700
|
+
referralCode?: string
|
33217
33701
|
created_at?: Date | string
|
33218
33702
|
updated_at?: Date | string
|
33219
33703
|
otp?: OtpCreateNestedManyWithoutOwnerInput
|
@@ -33225,6 +33709,7 @@ export namespace Prisma {
|
|
33225
33709
|
tickets?: TicketCreateNestedManyWithoutProfileInput
|
33226
33710
|
productionsParticipated?: ProductionCreateNestedManyWithoutParticipantsInput
|
33227
33711
|
productionRequestsSent?: ProductionAffiliationRequestCreateNestedManyWithoutProfileInput
|
33712
|
+
referralCodeUsed?: TicketGroupCreateNestedManyWithoutReferralCodeProfileInput
|
33228
33713
|
}
|
33229
33714
|
|
33230
33715
|
export type ProfileUncheckedCreateWithoutProductionsAdministratedInput = {
|
@@ -33250,6 +33735,7 @@ export namespace Prisma {
|
|
33250
33735
|
residenceLocationId?: string | null
|
33251
33736
|
isInTrash?: boolean
|
33252
33737
|
movedToTrashDate?: Date | string | null
|
33738
|
+
referralCode?: string
|
33253
33739
|
created_at?: Date | string
|
33254
33740
|
updated_at?: Date | string
|
33255
33741
|
otp?: OtpUncheckedCreateNestedManyWithoutOwnerInput
|
@@ -33259,6 +33745,7 @@ export namespace Prisma {
|
|
33259
33745
|
tickets?: TicketUncheckedCreateNestedManyWithoutProfileInput
|
33260
33746
|
productionsParticipated?: ProductionUncheckedCreateNestedManyWithoutParticipantsInput
|
33261
33747
|
productionRequestsSent?: ProductionAffiliationRequestUncheckedCreateNestedManyWithoutProfileInput
|
33748
|
+
referralCodeUsed?: TicketGroupUncheckedCreateNestedManyWithoutReferralCodeProfileInput
|
33262
33749
|
}
|
33263
33750
|
|
33264
33751
|
export type ProfileCreateOrConnectWithoutProductionsAdministratedInput = {
|
@@ -33287,6 +33774,7 @@ export namespace Prisma {
|
|
33287
33774
|
alternativeNames?: ProfileCreatealternativeNamesInput | string[]
|
33288
33775
|
isInTrash?: boolean
|
33289
33776
|
movedToTrashDate?: Date | string | null
|
33777
|
+
referralCode?: string
|
33290
33778
|
created_at?: Date | string
|
33291
33779
|
updated_at?: Date | string
|
33292
33780
|
otp?: OtpCreateNestedManyWithoutOwnerInput
|
@@ -33298,6 +33786,7 @@ export namespace Prisma {
|
|
33298
33786
|
tickets?: TicketCreateNestedManyWithoutProfileInput
|
33299
33787
|
productionsAdministrated?: ProductionCreateNestedManyWithoutAdministratorInput
|
33300
33788
|
productionRequestsSent?: ProductionAffiliationRequestCreateNestedManyWithoutProfileInput
|
33789
|
+
referralCodeUsed?: TicketGroupCreateNestedManyWithoutReferralCodeProfileInput
|
33301
33790
|
}
|
33302
33791
|
|
33303
33792
|
export type ProfileUncheckedCreateWithoutProductionsParticipatedInput = {
|
@@ -33323,6 +33812,7 @@ export namespace Prisma {
|
|
33323
33812
|
residenceLocationId?: string | null
|
33324
33813
|
isInTrash?: boolean
|
33325
33814
|
movedToTrashDate?: Date | string | null
|
33815
|
+
referralCode?: string
|
33326
33816
|
created_at?: Date | string
|
33327
33817
|
updated_at?: Date | string
|
33328
33818
|
otp?: OtpUncheckedCreateNestedManyWithoutOwnerInput
|
@@ -33332,6 +33822,7 @@ export namespace Prisma {
|
|
33332
33822
|
tickets?: TicketUncheckedCreateNestedManyWithoutProfileInput
|
33333
33823
|
productionsAdministrated?: ProductionUncheckedCreateNestedManyWithoutAdministratorInput
|
33334
33824
|
productionRequestsSent?: ProductionAffiliationRequestUncheckedCreateNestedManyWithoutProfileInput
|
33825
|
+
referralCodeUsed?: TicketGroupUncheckedCreateNestedManyWithoutReferralCodeProfileInput
|
33335
33826
|
}
|
33336
33827
|
|
33337
33828
|
export type ProfileCreateOrConnectWithoutProductionsParticipatedInput = {
|
@@ -33454,6 +33945,7 @@ export namespace Prisma {
|
|
33454
33945
|
alternativeNames?: ProfileUpdatealternativeNamesInput | string[]
|
33455
33946
|
isInTrash?: BoolFieldUpdateOperationsInput | boolean
|
33456
33947
|
movedToTrashDate?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
33948
|
+
referralCode?: StringFieldUpdateOperationsInput | string
|
33457
33949
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
33458
33950
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
33459
33951
|
otp?: OtpUpdateManyWithoutOwnerNestedInput
|
@@ -33465,6 +33957,7 @@ export namespace Prisma {
|
|
33465
33957
|
tickets?: TicketUpdateManyWithoutProfileNestedInput
|
33466
33958
|
productionsParticipated?: ProductionUpdateManyWithoutParticipantsNestedInput
|
33467
33959
|
productionRequestsSent?: ProductionAffiliationRequestUpdateManyWithoutProfileNestedInput
|
33960
|
+
referralCodeUsed?: TicketGroupUpdateManyWithoutReferralCodeProfileNestedInput
|
33468
33961
|
}
|
33469
33962
|
|
33470
33963
|
export type ProfileUncheckedUpdateWithoutProductionsAdministratedInput = {
|
@@ -33490,6 +33983,7 @@ export namespace Prisma {
|
|
33490
33983
|
residenceLocationId?: NullableStringFieldUpdateOperationsInput | string | null
|
33491
33984
|
isInTrash?: BoolFieldUpdateOperationsInput | boolean
|
33492
33985
|
movedToTrashDate?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
33986
|
+
referralCode?: StringFieldUpdateOperationsInput | string
|
33493
33987
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
33494
33988
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
33495
33989
|
otp?: OtpUncheckedUpdateManyWithoutOwnerNestedInput
|
@@ -33499,6 +33993,7 @@ export namespace Prisma {
|
|
33499
33993
|
tickets?: TicketUncheckedUpdateManyWithoutProfileNestedInput
|
33500
33994
|
productionsParticipated?: ProductionUncheckedUpdateManyWithoutParticipantsNestedInput
|
33501
33995
|
productionRequestsSent?: ProductionAffiliationRequestUncheckedUpdateManyWithoutProfileNestedInput
|
33996
|
+
referralCodeUsed?: TicketGroupUncheckedUpdateManyWithoutReferralCodeProfileNestedInput
|
33502
33997
|
}
|
33503
33998
|
|
33504
33999
|
export type ProfileUpsertWithWhereUniqueWithoutProductionsParticipatedInput = {
|
@@ -33595,6 +34090,7 @@ export namespace Prisma {
|
|
33595
34090
|
alternativeNames?: ProfileCreatealternativeNamesInput | string[]
|
33596
34091
|
isInTrash?: boolean
|
33597
34092
|
movedToTrashDate?: Date | string | null
|
34093
|
+
referralCode?: string
|
33598
34094
|
created_at?: Date | string
|
33599
34095
|
updated_at?: Date | string
|
33600
34096
|
otp?: OtpCreateNestedManyWithoutOwnerInput
|
@@ -33606,6 +34102,7 @@ export namespace Prisma {
|
|
33606
34102
|
tickets?: TicketCreateNestedManyWithoutProfileInput
|
33607
34103
|
productionsAdministrated?: ProductionCreateNestedManyWithoutAdministratorInput
|
33608
34104
|
productionsParticipated?: ProductionCreateNestedManyWithoutParticipantsInput
|
34105
|
+
referralCodeUsed?: TicketGroupCreateNestedManyWithoutReferralCodeProfileInput
|
33609
34106
|
}
|
33610
34107
|
|
33611
34108
|
export type ProfileUncheckedCreateWithoutProductionRequestsSentInput = {
|
@@ -33631,6 +34128,7 @@ export namespace Prisma {
|
|
33631
34128
|
residenceLocationId?: string | null
|
33632
34129
|
isInTrash?: boolean
|
33633
34130
|
movedToTrashDate?: Date | string | null
|
34131
|
+
referralCode?: string
|
33634
34132
|
created_at?: Date | string
|
33635
34133
|
updated_at?: Date | string
|
33636
34134
|
otp?: OtpUncheckedCreateNestedManyWithoutOwnerInput
|
@@ -33640,6 +34138,7 @@ export namespace Prisma {
|
|
33640
34138
|
tickets?: TicketUncheckedCreateNestedManyWithoutProfileInput
|
33641
34139
|
productionsAdministrated?: ProductionUncheckedCreateNestedManyWithoutAdministratorInput
|
33642
34140
|
productionsParticipated?: ProductionUncheckedCreateNestedManyWithoutParticipantsInput
|
34141
|
+
referralCodeUsed?: TicketGroupUncheckedCreateNestedManyWithoutReferralCodeProfileInput
|
33643
34142
|
}
|
33644
34143
|
|
33645
34144
|
export type ProfileCreateOrConnectWithoutProductionRequestsSentInput = {
|
@@ -33710,6 +34209,7 @@ export namespace Prisma {
|
|
33710
34209
|
alternativeNames?: ProfileUpdatealternativeNamesInput | string[]
|
33711
34210
|
isInTrash?: BoolFieldUpdateOperationsInput | boolean
|
33712
34211
|
movedToTrashDate?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
34212
|
+
referralCode?: StringFieldUpdateOperationsInput | string
|
33713
34213
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
33714
34214
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
33715
34215
|
otp?: OtpUpdateManyWithoutOwnerNestedInput
|
@@ -33721,6 +34221,7 @@ export namespace Prisma {
|
|
33721
34221
|
tickets?: TicketUpdateManyWithoutProfileNestedInput
|
33722
34222
|
productionsAdministrated?: ProductionUpdateManyWithoutAdministratorNestedInput
|
33723
34223
|
productionsParticipated?: ProductionUpdateManyWithoutParticipantsNestedInput
|
34224
|
+
referralCodeUsed?: TicketGroupUpdateManyWithoutReferralCodeProfileNestedInput
|
33724
34225
|
}
|
33725
34226
|
|
33726
34227
|
export type ProfileUncheckedUpdateWithoutProductionRequestsSentInput = {
|
@@ -33746,6 +34247,7 @@ export namespace Prisma {
|
|
33746
34247
|
residenceLocationId?: NullableStringFieldUpdateOperationsInput | string | null
|
33747
34248
|
isInTrash?: BoolFieldUpdateOperationsInput | boolean
|
33748
34249
|
movedToTrashDate?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
34250
|
+
referralCode?: StringFieldUpdateOperationsInput | string
|
33749
34251
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
33750
34252
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
33751
34253
|
otp?: OtpUncheckedUpdateManyWithoutOwnerNestedInput
|
@@ -33755,6 +34257,7 @@ export namespace Prisma {
|
|
33755
34257
|
tickets?: TicketUncheckedUpdateManyWithoutProfileNestedInput
|
33756
34258
|
productionsAdministrated?: ProductionUncheckedUpdateManyWithoutAdministratorNestedInput
|
33757
34259
|
productionsParticipated?: ProductionUncheckedUpdateManyWithoutParticipantsNestedInput
|
34260
|
+
referralCodeUsed?: TicketGroupUncheckedUpdateManyWithoutReferralCodeProfileNestedInput
|
33758
34261
|
}
|
33759
34262
|
|
33760
34263
|
export type CommentCreateManyAccountInput = {
|
@@ -33971,6 +34474,7 @@ export namespace Prisma {
|
|
33971
34474
|
scanned?: boolean
|
33972
34475
|
scannedAt?: Date | string | null
|
33973
34476
|
ticketGroupId?: string | null
|
34477
|
+
referralCode?: string | null
|
33974
34478
|
created_at?: Date | string
|
33975
34479
|
updated_at?: Date | string
|
33976
34480
|
}
|
@@ -33991,6 +34495,15 @@ export namespace Prisma {
|
|
33991
34495
|
updated_at?: Date | string
|
33992
34496
|
}
|
33993
34497
|
|
34498
|
+
export type TicketGroupCreateManyReferralCodeProfileInput = {
|
34499
|
+
id?: string
|
34500
|
+
status: $Enums.TicketGroupStatus
|
34501
|
+
amountTickets?: number
|
34502
|
+
eventId: string
|
34503
|
+
created_at?: Date | string
|
34504
|
+
updated_at?: Date | string
|
34505
|
+
}
|
34506
|
+
|
33994
34507
|
export type OtpUpdateWithoutOwnerInput = {
|
33995
34508
|
id?: StringFieldUpdateOperationsInput | string
|
33996
34509
|
code?: StringFieldUpdateOperationsInput | string
|
@@ -34126,6 +34639,7 @@ export namespace Prisma {
|
|
34126
34639
|
seat?: NullableIntFieldUpdateOperationsInput | number | null
|
34127
34640
|
scanned?: BoolFieldUpdateOperationsInput | boolean
|
34128
34641
|
scannedAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
34642
|
+
referralCode?: NullableStringFieldUpdateOperationsInput | string | null
|
34129
34643
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
34130
34644
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
34131
34645
|
event?: EventUpdateOneRequiredWithoutTicketsNestedInput
|
@@ -34143,6 +34657,7 @@ export namespace Prisma {
|
|
34143
34657
|
scanned?: BoolFieldUpdateOperationsInput | boolean
|
34144
34658
|
scannedAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
34145
34659
|
ticketGroupId?: NullableStringFieldUpdateOperationsInput | string | null
|
34660
|
+
referralCode?: NullableStringFieldUpdateOperationsInput | string | null
|
34146
34661
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
34147
34662
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
34148
34663
|
}
|
@@ -34158,6 +34673,7 @@ export namespace Prisma {
|
|
34158
34673
|
scanned?: BoolFieldUpdateOperationsInput | boolean
|
34159
34674
|
scannedAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
34160
34675
|
ticketGroupId?: NullableStringFieldUpdateOperationsInput | string | null
|
34676
|
+
referralCode?: NullableStringFieldUpdateOperationsInput | string | null
|
34161
34677
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
34162
34678
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
34163
34679
|
}
|
@@ -34244,6 +34760,35 @@ export namespace Prisma {
|
|
34244
34760
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
34245
34761
|
}
|
34246
34762
|
|
34763
|
+
export type TicketGroupUpdateWithoutReferralCodeProfileInput = {
|
34764
|
+
id?: StringFieldUpdateOperationsInput | string
|
34765
|
+
status?: EnumTicketGroupStatusFieldUpdateOperationsInput | $Enums.TicketGroupStatus
|
34766
|
+
amountTickets?: IntFieldUpdateOperationsInput | number
|
34767
|
+
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
34768
|
+
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
34769
|
+
event?: EventUpdateOneRequiredWithoutTicketGroupsNestedInput
|
34770
|
+
tickets?: TicketUpdateManyWithoutTicketGroupNestedInput
|
34771
|
+
}
|
34772
|
+
|
34773
|
+
export type TicketGroupUncheckedUpdateWithoutReferralCodeProfileInput = {
|
34774
|
+
id?: StringFieldUpdateOperationsInput | string
|
34775
|
+
status?: EnumTicketGroupStatusFieldUpdateOperationsInput | $Enums.TicketGroupStatus
|
34776
|
+
amountTickets?: IntFieldUpdateOperationsInput | number
|
34777
|
+
eventId?: StringFieldUpdateOperationsInput | string
|
34778
|
+
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
34779
|
+
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
34780
|
+
tickets?: TicketUncheckedUpdateManyWithoutTicketGroupNestedInput
|
34781
|
+
}
|
34782
|
+
|
34783
|
+
export type TicketGroupUncheckedUpdateManyWithoutReferralCodeProfileInput = {
|
34784
|
+
id?: StringFieldUpdateOperationsInput | string
|
34785
|
+
status?: EnumTicketGroupStatusFieldUpdateOperationsInput | $Enums.TicketGroupStatus
|
34786
|
+
amountTickets?: IntFieldUpdateOperationsInput | number
|
34787
|
+
eventId?: StringFieldUpdateOperationsInput | string
|
34788
|
+
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
34789
|
+
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
34790
|
+
}
|
34791
|
+
|
34247
34792
|
export type ProfileCreateManyBirthLocationInput = {
|
34248
34793
|
id?: string
|
34249
34794
|
shortId: number
|
@@ -34266,6 +34811,7 @@ export namespace Prisma {
|
|
34266
34811
|
residenceLocationId?: string | null
|
34267
34812
|
isInTrash?: boolean
|
34268
34813
|
movedToTrashDate?: Date | string | null
|
34814
|
+
referralCode?: string
|
34269
34815
|
created_at?: Date | string
|
34270
34816
|
updated_at?: Date | string
|
34271
34817
|
}
|
@@ -34292,6 +34838,7 @@ export namespace Prisma {
|
|
34292
34838
|
birthLocationId?: string | null
|
34293
34839
|
isInTrash?: boolean
|
34294
34840
|
movedToTrashDate?: Date | string | null
|
34841
|
+
referralCode?: string
|
34295
34842
|
created_at?: Date | string
|
34296
34843
|
updated_at?: Date | string
|
34297
34844
|
}
|
@@ -34317,6 +34864,7 @@ export namespace Prisma {
|
|
34317
34864
|
alternativeNames?: ProfileUpdatealternativeNamesInput | string[]
|
34318
34865
|
isInTrash?: BoolFieldUpdateOperationsInput | boolean
|
34319
34866
|
movedToTrashDate?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
34867
|
+
referralCode?: StringFieldUpdateOperationsInput | string
|
34320
34868
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
34321
34869
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
34322
34870
|
otp?: OtpUpdateManyWithoutOwnerNestedInput
|
@@ -34328,6 +34876,7 @@ export namespace Prisma {
|
|
34328
34876
|
productionsAdministrated?: ProductionUpdateManyWithoutAdministratorNestedInput
|
34329
34877
|
productionsParticipated?: ProductionUpdateManyWithoutParticipantsNestedInput
|
34330
34878
|
productionRequestsSent?: ProductionAffiliationRequestUpdateManyWithoutProfileNestedInput
|
34879
|
+
referralCodeUsed?: TicketGroupUpdateManyWithoutReferralCodeProfileNestedInput
|
34331
34880
|
}
|
34332
34881
|
|
34333
34882
|
export type ProfileUncheckedUpdateWithoutBirthLocationInput = {
|
@@ -34352,6 +34901,7 @@ export namespace Prisma {
|
|
34352
34901
|
residenceLocationId?: NullableStringFieldUpdateOperationsInput | string | null
|
34353
34902
|
isInTrash?: BoolFieldUpdateOperationsInput | boolean
|
34354
34903
|
movedToTrashDate?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
34904
|
+
referralCode?: StringFieldUpdateOperationsInput | string
|
34355
34905
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
34356
34906
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
34357
34907
|
otp?: OtpUncheckedUpdateManyWithoutOwnerNestedInput
|
@@ -34362,6 +34912,7 @@ export namespace Prisma {
|
|
34362
34912
|
productionsAdministrated?: ProductionUncheckedUpdateManyWithoutAdministratorNestedInput
|
34363
34913
|
productionsParticipated?: ProductionUncheckedUpdateManyWithoutParticipantsNestedInput
|
34364
34914
|
productionRequestsSent?: ProductionAffiliationRequestUncheckedUpdateManyWithoutProfileNestedInput
|
34915
|
+
referralCodeUsed?: TicketGroupUncheckedUpdateManyWithoutReferralCodeProfileNestedInput
|
34365
34916
|
}
|
34366
34917
|
|
34367
34918
|
export type ProfileUncheckedUpdateManyWithoutBirthLocationInput = {
|
@@ -34386,6 +34937,7 @@ export namespace Prisma {
|
|
34386
34937
|
residenceLocationId?: NullableStringFieldUpdateOperationsInput | string | null
|
34387
34938
|
isInTrash?: BoolFieldUpdateOperationsInput | boolean
|
34388
34939
|
movedToTrashDate?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
34940
|
+
referralCode?: StringFieldUpdateOperationsInput | string
|
34389
34941
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
34390
34942
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
34391
34943
|
}
|
@@ -34411,6 +34963,7 @@ export namespace Prisma {
|
|
34411
34963
|
alternativeNames?: ProfileUpdatealternativeNamesInput | string[]
|
34412
34964
|
isInTrash?: BoolFieldUpdateOperationsInput | boolean
|
34413
34965
|
movedToTrashDate?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
34966
|
+
referralCode?: StringFieldUpdateOperationsInput | string
|
34414
34967
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
34415
34968
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
34416
34969
|
otp?: OtpUpdateManyWithoutOwnerNestedInput
|
@@ -34422,6 +34975,7 @@ export namespace Prisma {
|
|
34422
34975
|
productionsAdministrated?: ProductionUpdateManyWithoutAdministratorNestedInput
|
34423
34976
|
productionsParticipated?: ProductionUpdateManyWithoutParticipantsNestedInput
|
34424
34977
|
productionRequestsSent?: ProductionAffiliationRequestUpdateManyWithoutProfileNestedInput
|
34978
|
+
referralCodeUsed?: TicketGroupUpdateManyWithoutReferralCodeProfileNestedInput
|
34425
34979
|
}
|
34426
34980
|
|
34427
34981
|
export type ProfileUncheckedUpdateWithoutResidenceLocationInput = {
|
@@ -34446,6 +35000,7 @@ export namespace Prisma {
|
|
34446
35000
|
birthLocationId?: NullableStringFieldUpdateOperationsInput | string | null
|
34447
35001
|
isInTrash?: BoolFieldUpdateOperationsInput | boolean
|
34448
35002
|
movedToTrashDate?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
35003
|
+
referralCode?: StringFieldUpdateOperationsInput | string
|
34449
35004
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
34450
35005
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
34451
35006
|
otp?: OtpUncheckedUpdateManyWithoutOwnerNestedInput
|
@@ -34456,6 +35011,7 @@ export namespace Prisma {
|
|
34456
35011
|
productionsAdministrated?: ProductionUncheckedUpdateManyWithoutAdministratorNestedInput
|
34457
35012
|
productionsParticipated?: ProductionUncheckedUpdateManyWithoutParticipantsNestedInput
|
34458
35013
|
productionRequestsSent?: ProductionAffiliationRequestUncheckedUpdateManyWithoutProfileNestedInput
|
35014
|
+
referralCodeUsed?: TicketGroupUncheckedUpdateManyWithoutReferralCodeProfileNestedInput
|
34459
35015
|
}
|
34460
35016
|
|
34461
35017
|
export type ProfileUncheckedUpdateManyWithoutResidenceLocationInput = {
|
@@ -34480,6 +35036,7 @@ export namespace Prisma {
|
|
34480
35036
|
birthLocationId?: NullableStringFieldUpdateOperationsInput | string | null
|
34481
35037
|
isInTrash?: BoolFieldUpdateOperationsInput | boolean
|
34482
35038
|
movedToTrashDate?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
35039
|
+
referralCode?: StringFieldUpdateOperationsInput | string
|
34483
35040
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
34484
35041
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
34485
35042
|
}
|
@@ -34544,6 +35101,7 @@ export namespace Prisma {
|
|
34544
35101
|
alternativeNames?: ProfileUpdatealternativeNamesInput | string[]
|
34545
35102
|
isInTrash?: BoolFieldUpdateOperationsInput | boolean
|
34546
35103
|
movedToTrashDate?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
35104
|
+
referralCode?: StringFieldUpdateOperationsInput | string
|
34547
35105
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
34548
35106
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
34549
35107
|
otp?: OtpUpdateManyWithoutOwnerNestedInput
|
@@ -34555,6 +35113,7 @@ export namespace Prisma {
|
|
34555
35113
|
productionsAdministrated?: ProductionUpdateManyWithoutAdministratorNestedInput
|
34556
35114
|
productionsParticipated?: ProductionUpdateManyWithoutParticipantsNestedInput
|
34557
35115
|
productionRequestsSent?: ProductionAffiliationRequestUpdateManyWithoutProfileNestedInput
|
35116
|
+
referralCodeUsed?: TicketGroupUpdateManyWithoutReferralCodeProfileNestedInput
|
34558
35117
|
}
|
34559
35118
|
|
34560
35119
|
export type ProfileUncheckedUpdateWithoutTagsInput = {
|
@@ -34580,6 +35139,7 @@ export namespace Prisma {
|
|
34580
35139
|
residenceLocationId?: NullableStringFieldUpdateOperationsInput | string | null
|
34581
35140
|
isInTrash?: BoolFieldUpdateOperationsInput | boolean
|
34582
35141
|
movedToTrashDate?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
35142
|
+
referralCode?: StringFieldUpdateOperationsInput | string
|
34583
35143
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
34584
35144
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
34585
35145
|
otp?: OtpUncheckedUpdateManyWithoutOwnerNestedInput
|
@@ -34589,6 +35149,7 @@ export namespace Prisma {
|
|
34589
35149
|
productionsAdministrated?: ProductionUncheckedUpdateManyWithoutAdministratorNestedInput
|
34590
35150
|
productionsParticipated?: ProductionUncheckedUpdateManyWithoutParticipantsNestedInput
|
34591
35151
|
productionRequestsSent?: ProductionAffiliationRequestUncheckedUpdateManyWithoutProfileNestedInput
|
35152
|
+
referralCodeUsed?: TicketGroupUncheckedUpdateManyWithoutReferralCodeProfileNestedInput
|
34592
35153
|
}
|
34593
35154
|
|
34594
35155
|
export type ProfileUncheckedUpdateManyWithoutTagsInput = {
|
@@ -34614,6 +35175,7 @@ export namespace Prisma {
|
|
34614
35175
|
residenceLocationId?: NullableStringFieldUpdateOperationsInput | string | null
|
34615
35176
|
isInTrash?: BoolFieldUpdateOperationsInput | boolean
|
34616
35177
|
movedToTrashDate?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
35178
|
+
referralCode?: StringFieldUpdateOperationsInput | string
|
34617
35179
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
34618
35180
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
34619
35181
|
}
|
@@ -34852,6 +35414,7 @@ export namespace Prisma {
|
|
34852
35414
|
scannedAt?: Date | string | null
|
34853
35415
|
profileId?: string | null
|
34854
35416
|
ticketGroupId?: string | null
|
35417
|
+
referralCode?: string | null
|
34855
35418
|
created_at?: Date | string
|
34856
35419
|
updated_at?: Date | string
|
34857
35420
|
}
|
@@ -34860,6 +35423,7 @@ export namespace Prisma {
|
|
34860
35423
|
id?: string
|
34861
35424
|
status: $Enums.TicketGroupStatus
|
34862
35425
|
amountTickets?: number
|
35426
|
+
referralCode?: string | null
|
34863
35427
|
created_at?: Date | string
|
34864
35428
|
updated_at?: Date | string
|
34865
35429
|
}
|
@@ -34900,6 +35464,7 @@ export namespace Prisma {
|
|
34900
35464
|
seat?: NullableIntFieldUpdateOperationsInput | number | null
|
34901
35465
|
scanned?: BoolFieldUpdateOperationsInput | boolean
|
34902
35466
|
scannedAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
35467
|
+
referralCode?: NullableStringFieldUpdateOperationsInput | string | null
|
34903
35468
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
34904
35469
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
34905
35470
|
profile?: ProfileUpdateOneWithoutTicketsNestedInput
|
@@ -34917,6 +35482,7 @@ export namespace Prisma {
|
|
34917
35482
|
scannedAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
34918
35483
|
profileId?: NullableStringFieldUpdateOperationsInput | string | null
|
34919
35484
|
ticketGroupId?: NullableStringFieldUpdateOperationsInput | string | null
|
35485
|
+
referralCode?: NullableStringFieldUpdateOperationsInput | string | null
|
34920
35486
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
34921
35487
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
34922
35488
|
}
|
@@ -34932,6 +35498,7 @@ export namespace Prisma {
|
|
34932
35498
|
scannedAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
34933
35499
|
profileId?: NullableStringFieldUpdateOperationsInput | string | null
|
34934
35500
|
ticketGroupId?: NullableStringFieldUpdateOperationsInput | string | null
|
35501
|
+
referralCode?: NullableStringFieldUpdateOperationsInput | string | null
|
34935
35502
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
34936
35503
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
34937
35504
|
}
|
@@ -34943,12 +35510,14 @@ export namespace Prisma {
|
|
34943
35510
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
34944
35511
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
34945
35512
|
tickets?: TicketUpdateManyWithoutTicketGroupNestedInput
|
35513
|
+
referralCodeProfile?: ProfileUpdateOneWithoutReferralCodeUsedNestedInput
|
34946
35514
|
}
|
34947
35515
|
|
34948
35516
|
export type TicketGroupUncheckedUpdateWithoutEventInput = {
|
34949
35517
|
id?: StringFieldUpdateOperationsInput | string
|
34950
35518
|
status?: EnumTicketGroupStatusFieldUpdateOperationsInput | $Enums.TicketGroupStatus
|
34951
35519
|
amountTickets?: IntFieldUpdateOperationsInput | number
|
35520
|
+
referralCode?: NullableStringFieldUpdateOperationsInput | string | null
|
34952
35521
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
34953
35522
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
34954
35523
|
tickets?: TicketUncheckedUpdateManyWithoutTicketGroupNestedInput
|
@@ -34958,6 +35527,7 @@ export namespace Prisma {
|
|
34958
35527
|
id?: StringFieldUpdateOperationsInput | string
|
34959
35528
|
status?: EnumTicketGroupStatusFieldUpdateOperationsInput | $Enums.TicketGroupStatus
|
34960
35529
|
amountTickets?: IntFieldUpdateOperationsInput | number
|
35530
|
+
referralCode?: NullableStringFieldUpdateOperationsInput | string | null
|
34961
35531
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
34962
35532
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
34963
35533
|
}
|
@@ -35260,6 +35830,7 @@ export namespace Prisma {
|
|
35260
35830
|
scanned?: boolean
|
35261
35831
|
scannedAt?: Date | string | null
|
35262
35832
|
profileId?: string | null
|
35833
|
+
referralCode?: string | null
|
35263
35834
|
created_at?: Date | string
|
35264
35835
|
updated_at?: Date | string
|
35265
35836
|
}
|
@@ -35273,6 +35844,7 @@ export namespace Prisma {
|
|
35273
35844
|
seat?: NullableIntFieldUpdateOperationsInput | number | null
|
35274
35845
|
scanned?: BoolFieldUpdateOperationsInput | boolean
|
35275
35846
|
scannedAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
35847
|
+
referralCode?: NullableStringFieldUpdateOperationsInput | string | null
|
35276
35848
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
35277
35849
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
35278
35850
|
event?: EventUpdateOneRequiredWithoutTicketsNestedInput
|
@@ -35290,6 +35862,7 @@ export namespace Prisma {
|
|
35290
35862
|
scanned?: BoolFieldUpdateOperationsInput | boolean
|
35291
35863
|
scannedAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
35292
35864
|
profileId?: NullableStringFieldUpdateOperationsInput | string | null
|
35865
|
+
referralCode?: NullableStringFieldUpdateOperationsInput | string | null
|
35293
35866
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
35294
35867
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
35295
35868
|
}
|
@@ -35305,6 +35878,7 @@ export namespace Prisma {
|
|
35305
35878
|
scanned?: BoolFieldUpdateOperationsInput | boolean
|
35306
35879
|
scannedAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
35307
35880
|
profileId?: NullableStringFieldUpdateOperationsInput | string | null
|
35881
|
+
referralCode?: NullableStringFieldUpdateOperationsInput | string | null
|
35308
35882
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
35309
35883
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
35310
35884
|
}
|
@@ -35339,6 +35913,7 @@ export namespace Prisma {
|
|
35339
35913
|
alternativeNames?: ProfileUpdatealternativeNamesInput | string[]
|
35340
35914
|
isInTrash?: BoolFieldUpdateOperationsInput | boolean
|
35341
35915
|
movedToTrashDate?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
35916
|
+
referralCode?: StringFieldUpdateOperationsInput | string
|
35342
35917
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
35343
35918
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
35344
35919
|
otp?: OtpUpdateManyWithoutOwnerNestedInput
|
@@ -35350,6 +35925,7 @@ export namespace Prisma {
|
|
35350
35925
|
tickets?: TicketUpdateManyWithoutProfileNestedInput
|
35351
35926
|
productionsAdministrated?: ProductionUpdateManyWithoutAdministratorNestedInput
|
35352
35927
|
productionRequestsSent?: ProductionAffiliationRequestUpdateManyWithoutProfileNestedInput
|
35928
|
+
referralCodeUsed?: TicketGroupUpdateManyWithoutReferralCodeProfileNestedInput
|
35353
35929
|
}
|
35354
35930
|
|
35355
35931
|
export type ProfileUncheckedUpdateWithoutProductionsParticipatedInput = {
|
@@ -35375,6 +35951,7 @@ export namespace Prisma {
|
|
35375
35951
|
residenceLocationId?: NullableStringFieldUpdateOperationsInput | string | null
|
35376
35952
|
isInTrash?: BoolFieldUpdateOperationsInput | boolean
|
35377
35953
|
movedToTrashDate?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
35954
|
+
referralCode?: StringFieldUpdateOperationsInput | string
|
35378
35955
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
35379
35956
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
35380
35957
|
otp?: OtpUncheckedUpdateManyWithoutOwnerNestedInput
|
@@ -35384,6 +35961,7 @@ export namespace Prisma {
|
|
35384
35961
|
tickets?: TicketUncheckedUpdateManyWithoutProfileNestedInput
|
35385
35962
|
productionsAdministrated?: ProductionUncheckedUpdateManyWithoutAdministratorNestedInput
|
35386
35963
|
productionRequestsSent?: ProductionAffiliationRequestUncheckedUpdateManyWithoutProfileNestedInput
|
35964
|
+
referralCodeUsed?: TicketGroupUncheckedUpdateManyWithoutReferralCodeProfileNestedInput
|
35387
35965
|
}
|
35388
35966
|
|
35389
35967
|
export type ProfileUncheckedUpdateManyWithoutProductionsParticipatedInput = {
|
@@ -35409,6 +35987,7 @@ export namespace Prisma {
|
|
35409
35987
|
residenceLocationId?: NullableStringFieldUpdateOperationsInput | string | null
|
35410
35988
|
isInTrash?: BoolFieldUpdateOperationsInput | boolean
|
35411
35989
|
movedToTrashDate?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
35990
|
+
referralCode?: StringFieldUpdateOperationsInput | string
|
35412
35991
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
35413
35992
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
35414
35993
|
}
|