expo-backend-types 0.53.0-EXPO-366-EB-Schema-codigo-referido.10 → 0.53.0-EXPO-366-EB-Schema-codigo-referido.11
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/mi-expo/dto/get-me.dto.d.ts +5 -5
- package/dist/src/mi-expo/dto/login-with-phone.dto.d.ts +9 -9
- package/dist/src/mi-expo/dto/login.dto.d.ts +9 -9
- package/dist/src/mi-expo/dto/update-me.dto.d.ts +5 -5
- package/dist/src/otp/dto/verify-otp.dto.d.ts +8 -8
- package/dist/src/production/dto/get-all-production.dto.d.ts +12 -12
- package/dist/src/production-affiliation-request/dto/find-by-production-affiliation-request.dto.d.ts +12 -12
- package/dist/src/production-affiliation-request/dto/update-production-affiliation-request.dto.d.ts +8 -8
- package/dist/src/profile/dto/delete-profile.dto.d.ts +4 -4
- package/dist/src/profile/dto/find-all-profile.dto.d.ts +8 -8
- package/dist/src/profile/dto/find-by-date-range-profile.dto.d.ts +12 -12
- package/dist/src/profile/dto/find-by-id-profile.dto.d.ts +5 -5
- package/dist/src/profile/dto/find-by-phone-number.dto.d.ts +4 -4
- package/dist/src/profile/dto/find-by-tag-groups-profile.dto.d.ts +8 -8
- package/dist/src/profile/dto/find-by-tags-profile.dto.d.ts +8 -8
- package/dist/src/profile/dto/find-with-active-chat.dto.d.ts +8 -8
- package/dist/src/profile/dto/profile.dto.d.ts +2 -2
- package/dist/src/profile/dto/update-profile.dto.d.ts +4 -4
- package/dist/src/schema/profile.schema.d.ts +2 -2
- package/dist/src/tag/dto/massive-allocation.dto.d.ts +8 -8
- package/dist/src/tag/dto/massive-deallocation.dto.d.ts +8 -8
- package/dist/src/ticket/dto/find-by-event-ticket.dto.d.ts +12 -12
- package/dist/src/ticket/dto/find-by-id-ticket.dto.d.ts +12 -12
- package/dist/src/ticket/dto/find-by-mail-ticket.dto.d.ts +12 -12
- package/dist/types/prisma-schema/edge.js +3 -3
- package/dist/types/prisma-schema/index.d.ts +447 -32
- package/dist/types/prisma-schema/index.js +3 -3
- package/dist/types/prisma-schema/package.json +1 -1
- package/dist/types/prisma-schema/schema.prisma +5 -1
- 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
|
@@ -4473,6 +4482,7 @@ export namespace Prisma {
|
|
4473
4482
|
productionsAdministrated?: boolean | Profile$productionsAdministratedArgs<ExtArgs>
|
4474
4483
|
productionsParticipated?: boolean | Profile$productionsParticipatedArgs<ExtArgs>
|
4475
4484
|
productionRequestsSent?: boolean | Profile$productionRequestsSentArgs<ExtArgs>
|
4485
|
+
referralCodeUsed?: boolean | Profile$referralCodeUsedArgs<ExtArgs>
|
4476
4486
|
_count?: boolean | ProfileCountOutputTypeDefaultArgs<ExtArgs>
|
4477
4487
|
}, ExtArgs["result"]["profile"]>
|
4478
4488
|
|
@@ -4576,6 +4586,7 @@ export namespace Prisma {
|
|
4576
4586
|
productionsAdministrated?: boolean | Profile$productionsAdministratedArgs<ExtArgs>
|
4577
4587
|
productionsParticipated?: boolean | Profile$productionsParticipatedArgs<ExtArgs>
|
4578
4588
|
productionRequestsSent?: boolean | Profile$productionRequestsSentArgs<ExtArgs>
|
4589
|
+
referralCodeUsed?: boolean | Profile$referralCodeUsedArgs<ExtArgs>
|
4579
4590
|
_count?: boolean | ProfileCountOutputTypeDefaultArgs<ExtArgs>
|
4580
4591
|
}
|
4581
4592
|
export type ProfileIncludeCreateManyAndReturn<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
@@ -4600,6 +4611,7 @@ export namespace Prisma {
|
|
4600
4611
|
productionsAdministrated: Prisma.$ProductionPayload<ExtArgs>[]
|
4601
4612
|
productionsParticipated: Prisma.$ProductionPayload<ExtArgs>[]
|
4602
4613
|
productionRequestsSent: Prisma.$ProductionAffiliationRequestPayload<ExtArgs>[]
|
4614
|
+
referralCodeUsed: Prisma.$TicketGroupPayload<ExtArgs>[]
|
4603
4615
|
}
|
4604
4616
|
scalars: $Extensions.GetPayloadResult<{
|
4605
4617
|
id: string
|
@@ -5031,6 +5043,7 @@ export namespace Prisma {
|
|
5031
5043
|
productionsAdministrated<T extends Profile$productionsAdministratedArgs<ExtArgs> = {}>(args?: Subset<T, Profile$productionsAdministratedArgs<ExtArgs>>): Prisma.PrismaPromise<$Result.GetResult<Prisma.$ProductionPayload<ExtArgs>, T, "findMany", ClientOptions> | Null>
|
5032
5044
|
productionsParticipated<T extends Profile$productionsParticipatedArgs<ExtArgs> = {}>(args?: Subset<T, Profile$productionsParticipatedArgs<ExtArgs>>): Prisma.PrismaPromise<$Result.GetResult<Prisma.$ProductionPayload<ExtArgs>, T, "findMany", ClientOptions> | Null>
|
5033
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>
|
5034
5047
|
/**
|
5035
5048
|
* Attaches callbacks for the resolution and/or rejection of the Promise.
|
5036
5049
|
* @param onfulfilled The callback to execute when the Promise is resolved.
|
@@ -5710,6 +5723,30 @@ export namespace Prisma {
|
|
5710
5723
|
distinct?: ProductionAffiliationRequestScalarFieldEnum | ProductionAffiliationRequestScalarFieldEnum[]
|
5711
5724
|
}
|
5712
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
|
+
|
5713
5750
|
/**
|
5714
5751
|
* Profile without action
|
5715
5752
|
*/
|
@@ -17560,6 +17597,7 @@ export namespace Prisma {
|
|
17560
17597
|
updated_at?: boolean
|
17561
17598
|
event?: boolean | EventDefaultArgs<ExtArgs>
|
17562
17599
|
tickets?: boolean | TicketGroup$ticketsArgs<ExtArgs>
|
17600
|
+
referralCodeProfile?: boolean | TicketGroup$referralCodeProfileArgs<ExtArgs>
|
17563
17601
|
_count?: boolean | TicketGroupCountOutputTypeDefaultArgs<ExtArgs>
|
17564
17602
|
}, ExtArgs["result"]["ticketGroup"]>
|
17565
17603
|
|
@@ -17572,6 +17610,7 @@ export namespace Prisma {
|
|
17572
17610
|
created_at?: boolean
|
17573
17611
|
updated_at?: boolean
|
17574
17612
|
event?: boolean | EventDefaultArgs<ExtArgs>
|
17613
|
+
referralCodeProfile?: boolean | TicketGroup$referralCodeProfileArgs<ExtArgs>
|
17575
17614
|
}, ExtArgs["result"]["ticketGroup"]>
|
17576
17615
|
|
17577
17616
|
export type TicketGroupSelectUpdateManyAndReturn<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetSelect<{
|
@@ -17583,6 +17622,7 @@ export namespace Prisma {
|
|
17583
17622
|
created_at?: boolean
|
17584
17623
|
updated_at?: boolean
|
17585
17624
|
event?: boolean | EventDefaultArgs<ExtArgs>
|
17625
|
+
referralCodeProfile?: boolean | TicketGroup$referralCodeProfileArgs<ExtArgs>
|
17586
17626
|
}, ExtArgs["result"]["ticketGroup"]>
|
17587
17627
|
|
17588
17628
|
export type TicketGroupSelectScalar = {
|
@@ -17599,13 +17639,16 @@ export namespace Prisma {
|
|
17599
17639
|
export type TicketGroupInclude<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
17600
17640
|
event?: boolean | EventDefaultArgs<ExtArgs>
|
17601
17641
|
tickets?: boolean | TicketGroup$ticketsArgs<ExtArgs>
|
17642
|
+
referralCodeProfile?: boolean | TicketGroup$referralCodeProfileArgs<ExtArgs>
|
17602
17643
|
_count?: boolean | TicketGroupCountOutputTypeDefaultArgs<ExtArgs>
|
17603
17644
|
}
|
17604
17645
|
export type TicketGroupIncludeCreateManyAndReturn<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
17605
17646
|
event?: boolean | EventDefaultArgs<ExtArgs>
|
17647
|
+
referralCodeProfile?: boolean | TicketGroup$referralCodeProfileArgs<ExtArgs>
|
17606
17648
|
}
|
17607
17649
|
export type TicketGroupIncludeUpdateManyAndReturn<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
17608
17650
|
event?: boolean | EventDefaultArgs<ExtArgs>
|
17651
|
+
referralCodeProfile?: boolean | TicketGroup$referralCodeProfileArgs<ExtArgs>
|
17609
17652
|
}
|
17610
17653
|
|
17611
17654
|
export type $TicketGroupPayload<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
@@ -17613,6 +17656,7 @@ export namespace Prisma {
|
|
17613
17656
|
objects: {
|
17614
17657
|
event: Prisma.$EventPayload<ExtArgs>
|
17615
17658
|
tickets: Prisma.$TicketPayload<ExtArgs>[]
|
17659
|
+
referralCodeProfile: Prisma.$ProfilePayload<ExtArgs> | null
|
17616
17660
|
}
|
17617
17661
|
scalars: $Extensions.GetPayloadResult<{
|
17618
17662
|
id: string
|
@@ -18018,6 +18062,7 @@ export namespace Prisma {
|
|
18018
18062
|
readonly [Symbol.toStringTag]: "PrismaPromise"
|
18019
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>
|
18020
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>
|
18021
18066
|
/**
|
18022
18067
|
* Attaches callbacks for the resolution and/or rejection of the Promise.
|
18023
18068
|
* @param onfulfilled The callback to execute when the Promise is resolved.
|
@@ -18473,6 +18518,25 @@ export namespace Prisma {
|
|
18473
18518
|
distinct?: TicketScalarFieldEnum | TicketScalarFieldEnum[]
|
18474
18519
|
}
|
18475
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
|
+
|
18476
18540
|
/**
|
18477
18541
|
* TicketGroup without action
|
18478
18542
|
*/
|
@@ -23454,6 +23518,7 @@ export namespace Prisma {
|
|
23454
23518
|
productionsAdministrated?: ProductionListRelationFilter
|
23455
23519
|
productionsParticipated?: ProductionListRelationFilter
|
23456
23520
|
productionRequestsSent?: ProductionAffiliationRequestListRelationFilter
|
23521
|
+
referralCodeUsed?: TicketGroupListRelationFilter
|
23457
23522
|
}
|
23458
23523
|
|
23459
23524
|
export type ProfileOrderByWithRelationInput = {
|
@@ -23492,6 +23557,7 @@ export namespace Prisma {
|
|
23492
23557
|
productionsAdministrated?: ProductionOrderByRelationAggregateInput
|
23493
23558
|
productionsParticipated?: ProductionOrderByRelationAggregateInput
|
23494
23559
|
productionRequestsSent?: ProductionAffiliationRequestOrderByRelationAggregateInput
|
23560
|
+
referralCodeUsed?: TicketGroupOrderByRelationAggregateInput
|
23495
23561
|
}
|
23496
23562
|
|
23497
23563
|
export type ProfileWhereUniqueInput = Prisma.AtLeast<{
|
@@ -23499,6 +23565,7 @@ export namespace Prisma {
|
|
23499
23565
|
username?: string
|
23500
23566
|
phoneNumber?: string
|
23501
23567
|
secondaryPhoneNumber?: string
|
23568
|
+
referralCode?: string
|
23502
23569
|
AND?: ProfileWhereInput | ProfileWhereInput[]
|
23503
23570
|
OR?: ProfileWhereInput[]
|
23504
23571
|
NOT?: ProfileWhereInput | ProfileWhereInput[]
|
@@ -23520,7 +23587,6 @@ export namespace Prisma {
|
|
23520
23587
|
residenceLocationId?: StringNullableFilter<"Profile"> | string | null
|
23521
23588
|
isInTrash?: BoolFilter<"Profile"> | boolean
|
23522
23589
|
movedToTrashDate?: DateTimeNullableFilter<"Profile"> | Date | string | null
|
23523
|
-
referralCode?: StringFilter<"Profile"> | string
|
23524
23590
|
created_at?: DateTimeFilter<"Profile"> | Date | string
|
23525
23591
|
updated_at?: DateTimeFilter<"Profile"> | Date | string
|
23526
23592
|
otp?: OtpListRelationFilter
|
@@ -23533,7 +23599,8 @@ export namespace Prisma {
|
|
23533
23599
|
productionsAdministrated?: ProductionListRelationFilter
|
23534
23600
|
productionsParticipated?: ProductionListRelationFilter
|
23535
23601
|
productionRequestsSent?: ProductionAffiliationRequestListRelationFilter
|
23536
|
-
|
23602
|
+
referralCodeUsed?: TicketGroupListRelationFilter
|
23603
|
+
}, "id" | "username" | "phoneNumber" | "secondaryPhoneNumber" | "referralCode">
|
23537
23604
|
|
23538
23605
|
export type ProfileOrderByWithAggregationInput = {
|
23539
23606
|
id?: SortOrder
|
@@ -24395,6 +24462,7 @@ export namespace Prisma {
|
|
24395
24462
|
updated_at?: DateTimeFilter<"TicketGroup"> | Date | string
|
24396
24463
|
event?: XOR<EventScalarRelationFilter, EventWhereInput>
|
24397
24464
|
tickets?: TicketListRelationFilter
|
24465
|
+
referralCodeProfile?: XOR<ProfileNullableScalarRelationFilter, ProfileWhereInput> | null
|
24398
24466
|
}
|
24399
24467
|
|
24400
24468
|
export type TicketGroupOrderByWithRelationInput = {
|
@@ -24407,6 +24475,7 @@ export namespace Prisma {
|
|
24407
24475
|
updated_at?: SortOrder
|
24408
24476
|
event?: EventOrderByWithRelationInput
|
24409
24477
|
tickets?: TicketOrderByRelationAggregateInput
|
24478
|
+
referralCodeProfile?: ProfileOrderByWithRelationInput
|
24410
24479
|
}
|
24411
24480
|
|
24412
24481
|
export type TicketGroupWhereUniqueInput = Prisma.AtLeast<{
|
@@ -24422,6 +24491,7 @@ export namespace Prisma {
|
|
24422
24491
|
updated_at?: DateTimeFilter<"TicketGroup"> | Date | string
|
24423
24492
|
event?: XOR<EventScalarRelationFilter, EventWhereInput>
|
24424
24493
|
tickets?: TicketListRelationFilter
|
24494
|
+
referralCodeProfile?: XOR<ProfileNullableScalarRelationFilter, ProfileWhereInput> | null
|
24425
24495
|
}, "id">
|
24426
24496
|
|
24427
24497
|
export type TicketGroupOrderByWithAggregationInput = {
|
@@ -24820,6 +24890,7 @@ export namespace Prisma {
|
|
24820
24890
|
productionsAdministrated?: ProductionCreateNestedManyWithoutAdministratorInput
|
24821
24891
|
productionsParticipated?: ProductionCreateNestedManyWithoutParticipantsInput
|
24822
24892
|
productionRequestsSent?: ProductionAffiliationRequestCreateNestedManyWithoutProfileInput
|
24893
|
+
referralCodeUsed?: TicketGroupCreateNestedManyWithoutReferralCodeProfileInput
|
24823
24894
|
}
|
24824
24895
|
|
24825
24896
|
export type ProfileUncheckedCreateInput = {
|
@@ -24856,6 +24927,7 @@ export namespace Prisma {
|
|
24856
24927
|
productionsAdministrated?: ProductionUncheckedCreateNestedManyWithoutAdministratorInput
|
24857
24928
|
productionsParticipated?: ProductionUncheckedCreateNestedManyWithoutParticipantsInput
|
24858
24929
|
productionRequestsSent?: ProductionAffiliationRequestUncheckedCreateNestedManyWithoutProfileInput
|
24930
|
+
referralCodeUsed?: TicketGroupUncheckedCreateNestedManyWithoutReferralCodeProfileInput
|
24859
24931
|
}
|
24860
24932
|
|
24861
24933
|
export type ProfileUpdateInput = {
|
@@ -24892,6 +24964,7 @@ export namespace Prisma {
|
|
24892
24964
|
productionsAdministrated?: ProductionUpdateManyWithoutAdministratorNestedInput
|
24893
24965
|
productionsParticipated?: ProductionUpdateManyWithoutParticipantsNestedInput
|
24894
24966
|
productionRequestsSent?: ProductionAffiliationRequestUpdateManyWithoutProfileNestedInput
|
24967
|
+
referralCodeUsed?: TicketGroupUpdateManyWithoutReferralCodeProfileNestedInput
|
24895
24968
|
}
|
24896
24969
|
|
24897
24970
|
export type ProfileUncheckedUpdateInput = {
|
@@ -24928,6 +25001,7 @@ export namespace Prisma {
|
|
24928
25001
|
productionsAdministrated?: ProductionUncheckedUpdateManyWithoutAdministratorNestedInput
|
24929
25002
|
productionsParticipated?: ProductionUncheckedUpdateManyWithoutParticipantsNestedInput
|
24930
25003
|
productionRequestsSent?: ProductionAffiliationRequestUncheckedUpdateManyWithoutProfileNestedInput
|
25004
|
+
referralCodeUsed?: TicketGroupUncheckedUpdateManyWithoutReferralCodeProfileNestedInput
|
24931
25005
|
}
|
24932
25006
|
|
24933
25007
|
export type ProfileCreateManyInput = {
|
@@ -25866,11 +25940,11 @@ export namespace Prisma {
|
|
25866
25940
|
id?: string
|
25867
25941
|
status: $Enums.TicketGroupStatus
|
25868
25942
|
amountTickets?: number
|
25869
|
-
referralCode?: string | null
|
25870
25943
|
created_at?: Date | string
|
25871
25944
|
updated_at?: Date | string
|
25872
25945
|
event: EventCreateNestedOneWithoutTicketGroupsInput
|
25873
25946
|
tickets?: TicketCreateNestedManyWithoutTicketGroupInput
|
25947
|
+
referralCodeProfile?: ProfileCreateNestedOneWithoutReferralCodeUsedInput
|
25874
25948
|
}
|
25875
25949
|
|
25876
25950
|
export type TicketGroupUncheckedCreateInput = {
|
@@ -25888,11 +25962,11 @@ export namespace Prisma {
|
|
25888
25962
|
id?: StringFieldUpdateOperationsInput | string
|
25889
25963
|
status?: EnumTicketGroupStatusFieldUpdateOperationsInput | $Enums.TicketGroupStatus
|
25890
25964
|
amountTickets?: IntFieldUpdateOperationsInput | number
|
25891
|
-
referralCode?: NullableStringFieldUpdateOperationsInput | string | null
|
25892
25965
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
25893
25966
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
25894
25967
|
event?: EventUpdateOneRequiredWithoutTicketGroupsNestedInput
|
25895
25968
|
tickets?: TicketUpdateManyWithoutTicketGroupNestedInput
|
25969
|
+
referralCodeProfile?: ProfileUpdateOneWithoutReferralCodeUsedNestedInput
|
25896
25970
|
}
|
25897
25971
|
|
25898
25972
|
export type TicketGroupUncheckedUpdateInput = {
|
@@ -25920,7 +25994,6 @@ export namespace Prisma {
|
|
25920
25994
|
id?: StringFieldUpdateOperationsInput | string
|
25921
25995
|
status?: EnumTicketGroupStatusFieldUpdateOperationsInput | $Enums.TicketGroupStatus
|
25922
25996
|
amountTickets?: IntFieldUpdateOperationsInput | number
|
25923
|
-
referralCode?: NullableStringFieldUpdateOperationsInput | string | null
|
25924
25997
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
25925
25998
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
25926
25999
|
}
|
@@ -26400,6 +26473,12 @@ export namespace Prisma {
|
|
26400
26473
|
none?: ProductionAffiliationRequestWhereInput
|
26401
26474
|
}
|
26402
26475
|
|
26476
|
+
export type TicketGroupListRelationFilter = {
|
26477
|
+
every?: TicketGroupWhereInput
|
26478
|
+
some?: TicketGroupWhereInput
|
26479
|
+
none?: TicketGroupWhereInput
|
26480
|
+
}
|
26481
|
+
|
26403
26482
|
export type SortOrderInput = {
|
26404
26483
|
sort: SortOrder
|
26405
26484
|
nulls?: NullsOrder
|
@@ -26425,6 +26504,10 @@ export namespace Prisma {
|
|
26425
26504
|
_count?: SortOrder
|
26426
26505
|
}
|
26427
26506
|
|
26507
|
+
export type TicketGroupOrderByRelationAggregateInput = {
|
26508
|
+
_count?: SortOrder
|
26509
|
+
}
|
26510
|
+
|
26428
26511
|
export type ProfileCountOrderByAggregateInput = {
|
26429
26512
|
id?: SortOrder
|
26430
26513
|
shortId?: SortOrder
|
@@ -26840,22 +26923,12 @@ export namespace Prisma {
|
|
26840
26923
|
isNot?: TagWhereInput
|
26841
26924
|
}
|
26842
26925
|
|
26843
|
-
export type TicketGroupListRelationFilter = {
|
26844
|
-
every?: TicketGroupWhereInput
|
26845
|
-
some?: TicketGroupWhereInput
|
26846
|
-
none?: TicketGroupWhereInput
|
26847
|
-
}
|
26848
|
-
|
26849
26926
|
export type EventTicketListRelationFilter = {
|
26850
26927
|
every?: EventTicketWhereInput
|
26851
26928
|
some?: EventTicketWhereInput
|
26852
26929
|
none?: EventTicketWhereInput
|
26853
26930
|
}
|
26854
26931
|
|
26855
|
-
export type TicketGroupOrderByRelationAggregateInput = {
|
26856
|
-
_count?: SortOrder
|
26857
|
-
}
|
26858
|
-
|
26859
26932
|
export type EventTicketOrderByRelationAggregateInput = {
|
26860
26933
|
_count?: SortOrder
|
26861
26934
|
}
|
@@ -27682,6 +27755,13 @@ export namespace Prisma {
|
|
27682
27755
|
connect?: ProductionAffiliationRequestWhereUniqueInput | ProductionAffiliationRequestWhereUniqueInput[]
|
27683
27756
|
}
|
27684
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
|
+
|
27685
27765
|
export type OtpUncheckedCreateNestedManyWithoutOwnerInput = {
|
27686
27766
|
create?: XOR<OtpCreateWithoutOwnerInput, OtpUncheckedCreateWithoutOwnerInput> | OtpCreateWithoutOwnerInput[] | OtpUncheckedCreateWithoutOwnerInput[]
|
27687
27767
|
connectOrCreate?: OtpCreateOrConnectWithoutOwnerInput | OtpCreateOrConnectWithoutOwnerInput[]
|
@@ -27736,6 +27816,13 @@ export namespace Prisma {
|
|
27736
27816
|
connect?: ProductionAffiliationRequestWhereUniqueInput | ProductionAffiliationRequestWhereUniqueInput[]
|
27737
27817
|
}
|
27738
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
|
+
|
27739
27826
|
export type IntFieldUpdateOperationsInput = {
|
27740
27827
|
set?: number
|
27741
27828
|
increment?: number
|
@@ -27887,6 +27974,20 @@ export namespace Prisma {
|
|
27887
27974
|
deleteMany?: ProductionAffiliationRequestScalarWhereInput | ProductionAffiliationRequestScalarWhereInput[]
|
27888
27975
|
}
|
27889
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
|
+
|
27890
27991
|
export type OtpUncheckedUpdateManyWithoutOwnerNestedInput = {
|
27891
27992
|
create?: XOR<OtpCreateWithoutOwnerInput, OtpUncheckedCreateWithoutOwnerInput> | OtpCreateWithoutOwnerInput[] | OtpUncheckedCreateWithoutOwnerInput[]
|
27892
27993
|
connectOrCreate?: OtpCreateOrConnectWithoutOwnerInput | OtpCreateOrConnectWithoutOwnerInput[]
|
@@ -27997,6 +28098,20 @@ export namespace Prisma {
|
|
27997
28098
|
deleteMany?: ProductionAffiliationRequestScalarWhereInput | ProductionAffiliationRequestScalarWhereInput[]
|
27998
28099
|
}
|
27999
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
|
+
|
28000
28115
|
export type ProfileCreateNestedOneWithoutOtpInput = {
|
28001
28116
|
create?: XOR<ProfileCreateWithoutOtpInput, ProfileUncheckedCreateWithoutOtpInput>
|
28002
28117
|
connectOrCreate?: ProfileCreateOrConnectWithoutOtpInput
|
@@ -28934,6 +29049,12 @@ export namespace Prisma {
|
|
28934
29049
|
connect?: TicketWhereUniqueInput | TicketWhereUniqueInput[]
|
28935
29050
|
}
|
28936
29051
|
|
29052
|
+
export type ProfileCreateNestedOneWithoutReferralCodeUsedInput = {
|
29053
|
+
create?: XOR<ProfileCreateWithoutReferralCodeUsedInput, ProfileUncheckedCreateWithoutReferralCodeUsedInput>
|
29054
|
+
connectOrCreate?: ProfileCreateOrConnectWithoutReferralCodeUsedInput
|
29055
|
+
connect?: ProfileWhereUniqueInput
|
29056
|
+
}
|
29057
|
+
|
28937
29058
|
export type TicketUncheckedCreateNestedManyWithoutTicketGroupInput = {
|
28938
29059
|
create?: XOR<TicketCreateWithoutTicketGroupInput, TicketUncheckedCreateWithoutTicketGroupInput> | TicketCreateWithoutTicketGroupInput[] | TicketUncheckedCreateWithoutTicketGroupInput[]
|
28939
29060
|
connectOrCreate?: TicketCreateOrConnectWithoutTicketGroupInput | TicketCreateOrConnectWithoutTicketGroupInput[]
|
@@ -28967,6 +29088,16 @@ export namespace Prisma {
|
|
28967
29088
|
deleteMany?: TicketScalarWhereInput | TicketScalarWhereInput[]
|
28968
29089
|
}
|
28969
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
|
+
|
28970
29101
|
export type TicketUncheckedUpdateManyWithoutTicketGroupNestedInput = {
|
28971
29102
|
create?: XOR<TicketCreateWithoutTicketGroupInput, TicketUncheckedCreateWithoutTicketGroupInput> | TicketCreateWithoutTicketGroupInput[] | TicketUncheckedCreateWithoutTicketGroupInput[]
|
28972
29103
|
connectOrCreate?: TicketCreateOrConnectWithoutTicketGroupInput | TicketCreateOrConnectWithoutTicketGroupInput[]
|
@@ -30105,6 +30236,36 @@ export namespace Prisma {
|
|
30105
30236
|
skipDuplicates?: boolean
|
30106
30237
|
}
|
30107
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
|
+
|
30108
30269
|
export type OtpUpsertWithWhereUniqueWithoutOwnerInput = {
|
30109
30270
|
where: OtpWhereUniqueInput
|
30110
30271
|
update: XOR<OtpUpdateWithoutOwnerInput, OtpUncheckedUpdateWithoutOwnerInput>
|
@@ -30372,6 +30533,35 @@ export namespace Prisma {
|
|
30372
30533
|
updated_at?: DateTimeFilter<"ProductionAffiliationRequest"> | Date | string
|
30373
30534
|
}
|
30374
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
|
+
|
30375
30565
|
export type ProfileCreateWithoutOtpInput = {
|
30376
30566
|
id?: string
|
30377
30567
|
shortId: number
|
@@ -30405,6 +30595,7 @@ export namespace Prisma {
|
|
30405
30595
|
productionsAdministrated?: ProductionCreateNestedManyWithoutAdministratorInput
|
30406
30596
|
productionsParticipated?: ProductionCreateNestedManyWithoutParticipantsInput
|
30407
30597
|
productionRequestsSent?: ProductionAffiliationRequestCreateNestedManyWithoutProfileInput
|
30598
|
+
referralCodeUsed?: TicketGroupCreateNestedManyWithoutReferralCodeProfileInput
|
30408
30599
|
}
|
30409
30600
|
|
30410
30601
|
export type ProfileUncheckedCreateWithoutOtpInput = {
|
@@ -30440,6 +30631,7 @@ export namespace Prisma {
|
|
30440
30631
|
productionsAdministrated?: ProductionUncheckedCreateNestedManyWithoutAdministratorInput
|
30441
30632
|
productionsParticipated?: ProductionUncheckedCreateNestedManyWithoutParticipantsInput
|
30442
30633
|
productionRequestsSent?: ProductionAffiliationRequestUncheckedCreateNestedManyWithoutProfileInput
|
30634
|
+
referralCodeUsed?: TicketGroupUncheckedCreateNestedManyWithoutReferralCodeProfileInput
|
30443
30635
|
}
|
30444
30636
|
|
30445
30637
|
export type ProfileCreateOrConnectWithoutOtpInput = {
|
@@ -30491,6 +30683,7 @@ export namespace Prisma {
|
|
30491
30683
|
productionsAdministrated?: ProductionUpdateManyWithoutAdministratorNestedInput
|
30492
30684
|
productionsParticipated?: ProductionUpdateManyWithoutParticipantsNestedInput
|
30493
30685
|
productionRequestsSent?: ProductionAffiliationRequestUpdateManyWithoutProfileNestedInput
|
30686
|
+
referralCodeUsed?: TicketGroupUpdateManyWithoutReferralCodeProfileNestedInput
|
30494
30687
|
}
|
30495
30688
|
|
30496
30689
|
export type ProfileUncheckedUpdateWithoutOtpInput = {
|
@@ -30526,6 +30719,7 @@ export namespace Prisma {
|
|
30526
30719
|
productionsAdministrated?: ProductionUncheckedUpdateManyWithoutAdministratorNestedInput
|
30527
30720
|
productionsParticipated?: ProductionUncheckedUpdateManyWithoutParticipantsNestedInput
|
30528
30721
|
productionRequestsSent?: ProductionAffiliationRequestUncheckedUpdateManyWithoutProfileNestedInput
|
30722
|
+
referralCodeUsed?: TicketGroupUncheckedUpdateManyWithoutReferralCodeProfileNestedInput
|
30529
30723
|
}
|
30530
30724
|
|
30531
30725
|
export type ProfileCreateWithoutBirthLocationInput = {
|
@@ -30561,6 +30755,7 @@ export namespace Prisma {
|
|
30561
30755
|
productionsAdministrated?: ProductionCreateNestedManyWithoutAdministratorInput
|
30562
30756
|
productionsParticipated?: ProductionCreateNestedManyWithoutParticipantsInput
|
30563
30757
|
productionRequestsSent?: ProductionAffiliationRequestCreateNestedManyWithoutProfileInput
|
30758
|
+
referralCodeUsed?: TicketGroupCreateNestedManyWithoutReferralCodeProfileInput
|
30564
30759
|
}
|
30565
30760
|
|
30566
30761
|
export type ProfileUncheckedCreateWithoutBirthLocationInput = {
|
@@ -30596,6 +30791,7 @@ export namespace Prisma {
|
|
30596
30791
|
productionsAdministrated?: ProductionUncheckedCreateNestedManyWithoutAdministratorInput
|
30597
30792
|
productionsParticipated?: ProductionUncheckedCreateNestedManyWithoutParticipantsInput
|
30598
30793
|
productionRequestsSent?: ProductionAffiliationRequestUncheckedCreateNestedManyWithoutProfileInput
|
30794
|
+
referralCodeUsed?: TicketGroupUncheckedCreateNestedManyWithoutReferralCodeProfileInput
|
30599
30795
|
}
|
30600
30796
|
|
30601
30797
|
export type ProfileCreateOrConnectWithoutBirthLocationInput = {
|
@@ -30641,6 +30837,7 @@ export namespace Prisma {
|
|
30641
30837
|
productionsAdministrated?: ProductionCreateNestedManyWithoutAdministratorInput
|
30642
30838
|
productionsParticipated?: ProductionCreateNestedManyWithoutParticipantsInput
|
30643
30839
|
productionRequestsSent?: ProductionAffiliationRequestCreateNestedManyWithoutProfileInput
|
30840
|
+
referralCodeUsed?: TicketGroupCreateNestedManyWithoutReferralCodeProfileInput
|
30644
30841
|
}
|
30645
30842
|
|
30646
30843
|
export type ProfileUncheckedCreateWithoutResidenceLocationInput = {
|
@@ -30676,6 +30873,7 @@ export namespace Prisma {
|
|
30676
30873
|
productionsAdministrated?: ProductionUncheckedCreateNestedManyWithoutAdministratorInput
|
30677
30874
|
productionsParticipated?: ProductionUncheckedCreateNestedManyWithoutParticipantsInput
|
30678
30875
|
productionRequestsSent?: ProductionAffiliationRequestUncheckedCreateNestedManyWithoutProfileInput
|
30876
|
+
referralCodeUsed?: TicketGroupUncheckedCreateNestedManyWithoutReferralCodeProfileInput
|
30679
30877
|
}
|
30680
30878
|
|
30681
30879
|
export type ProfileCreateOrConnectWithoutResidenceLocationInput = {
|
@@ -30817,6 +31015,7 @@ export namespace Prisma {
|
|
30817
31015
|
productionsAdministrated?: ProductionCreateNestedManyWithoutAdministratorInput
|
30818
31016
|
productionsParticipated?: ProductionCreateNestedManyWithoutParticipantsInput
|
30819
31017
|
productionRequestsSent?: ProductionAffiliationRequestCreateNestedManyWithoutProfileInput
|
31018
|
+
referralCodeUsed?: TicketGroupCreateNestedManyWithoutReferralCodeProfileInput
|
30820
31019
|
}
|
30821
31020
|
|
30822
31021
|
export type ProfileUncheckedCreateWithoutCommentsInput = {
|
@@ -30852,6 +31051,7 @@ export namespace Prisma {
|
|
30852
31051
|
productionsAdministrated?: ProductionUncheckedCreateNestedManyWithoutAdministratorInput
|
30853
31052
|
productionsParticipated?: ProductionUncheckedCreateNestedManyWithoutParticipantsInput
|
30854
31053
|
productionRequestsSent?: ProductionAffiliationRequestUncheckedCreateNestedManyWithoutProfileInput
|
31054
|
+
referralCodeUsed?: TicketGroupUncheckedCreateNestedManyWithoutReferralCodeProfileInput
|
30855
31055
|
}
|
30856
31056
|
|
30857
31057
|
export type ProfileCreateOrConnectWithoutCommentsInput = {
|
@@ -30975,6 +31175,7 @@ export namespace Prisma {
|
|
30975
31175
|
productionsAdministrated?: ProductionUpdateManyWithoutAdministratorNestedInput
|
30976
31176
|
productionsParticipated?: ProductionUpdateManyWithoutParticipantsNestedInput
|
30977
31177
|
productionRequestsSent?: ProductionAffiliationRequestUpdateManyWithoutProfileNestedInput
|
31178
|
+
referralCodeUsed?: TicketGroupUpdateManyWithoutReferralCodeProfileNestedInput
|
30978
31179
|
}
|
30979
31180
|
|
30980
31181
|
export type ProfileUncheckedUpdateWithoutCommentsInput = {
|
@@ -31010,6 +31211,7 @@ export namespace Prisma {
|
|
31010
31211
|
productionsAdministrated?: ProductionUncheckedUpdateManyWithoutAdministratorNestedInput
|
31011
31212
|
productionsParticipated?: ProductionUncheckedUpdateManyWithoutParticipantsNestedInput
|
31012
31213
|
productionRequestsSent?: ProductionAffiliationRequestUncheckedUpdateManyWithoutProfileNestedInput
|
31214
|
+
referralCodeUsed?: TicketGroupUncheckedUpdateManyWithoutReferralCodeProfileNestedInput
|
31013
31215
|
}
|
31014
31216
|
|
31015
31217
|
export type AccountUpsertWithoutSolvableCommentsInput = {
|
@@ -31250,6 +31452,7 @@ export namespace Prisma {
|
|
31250
31452
|
productionsAdministrated?: ProductionCreateNestedManyWithoutAdministratorInput
|
31251
31453
|
productionsParticipated?: ProductionCreateNestedManyWithoutParticipantsInput
|
31252
31454
|
productionRequestsSent?: ProductionAffiliationRequestCreateNestedManyWithoutProfileInput
|
31455
|
+
referralCodeUsed?: TicketGroupCreateNestedManyWithoutReferralCodeProfileInput
|
31253
31456
|
}
|
31254
31457
|
|
31255
31458
|
export type ProfileUncheckedCreateWithoutTagsInput = {
|
@@ -31285,6 +31488,7 @@ export namespace Prisma {
|
|
31285
31488
|
productionsAdministrated?: ProductionUncheckedCreateNestedManyWithoutAdministratorInput
|
31286
31489
|
productionsParticipated?: ProductionUncheckedCreateNestedManyWithoutParticipantsInput
|
31287
31490
|
productionRequestsSent?: ProductionAffiliationRequestUncheckedCreateNestedManyWithoutProfileInput
|
31491
|
+
referralCodeUsed?: TicketGroupUncheckedCreateNestedManyWithoutReferralCodeProfileInput
|
31288
31492
|
}
|
31289
31493
|
|
31290
31494
|
export type ProfileCreateOrConnectWithoutTagsInput = {
|
@@ -31950,10 +32154,10 @@ export namespace Prisma {
|
|
31950
32154
|
id?: string
|
31951
32155
|
status: $Enums.TicketGroupStatus
|
31952
32156
|
amountTickets?: number
|
31953
|
-
referralCode?: string | null
|
31954
32157
|
created_at?: Date | string
|
31955
32158
|
updated_at?: Date | string
|
31956
32159
|
tickets?: TicketCreateNestedManyWithoutTicketGroupInput
|
32160
|
+
referralCodeProfile?: ProfileCreateNestedOneWithoutReferralCodeUsedInput
|
31957
32161
|
}
|
31958
32162
|
|
31959
32163
|
export type TicketGroupUncheckedCreateWithoutEventInput = {
|
@@ -32361,19 +32565,6 @@ export namespace Prisma {
|
|
32361
32565
|
data: XOR<TicketGroupUpdateManyMutationInput, TicketGroupUncheckedUpdateManyWithoutEventInput>
|
32362
32566
|
}
|
32363
32567
|
|
32364
|
-
export type TicketGroupScalarWhereInput = {
|
32365
|
-
AND?: TicketGroupScalarWhereInput | TicketGroupScalarWhereInput[]
|
32366
|
-
OR?: TicketGroupScalarWhereInput[]
|
32367
|
-
NOT?: TicketGroupScalarWhereInput | TicketGroupScalarWhereInput[]
|
32368
|
-
id?: StringFilter<"TicketGroup"> | string
|
32369
|
-
status?: EnumTicketGroupStatusFilter<"TicketGroup"> | $Enums.TicketGroupStatus
|
32370
|
-
amountTickets?: IntFilter<"TicketGroup"> | number
|
32371
|
-
eventId?: StringFilter<"TicketGroup"> | string
|
32372
|
-
referralCode?: StringNullableFilter<"TicketGroup"> | string | null
|
32373
|
-
created_at?: DateTimeFilter<"TicketGroup"> | Date | string
|
32374
|
-
updated_at?: DateTimeFilter<"TicketGroup"> | Date | string
|
32375
|
-
}
|
32376
|
-
|
32377
32568
|
export type EventUpsertWithWhereUniqueWithoutSupraEventInput = {
|
32378
32569
|
where: EventWhereUniqueInput
|
32379
32570
|
update: XOR<EventUpdateWithoutSupraEventInput, EventUncheckedUpdateWithoutSupraEventInput>
|
@@ -32576,6 +32767,7 @@ export namespace Prisma {
|
|
32576
32767
|
productionsAdministrated?: ProductionCreateNestedManyWithoutAdministratorInput
|
32577
32768
|
productionsParticipated?: ProductionCreateNestedManyWithoutParticipantsInput
|
32578
32769
|
productionRequestsSent?: ProductionAffiliationRequestCreateNestedManyWithoutProfileInput
|
32770
|
+
referralCodeUsed?: TicketGroupCreateNestedManyWithoutReferralCodeProfileInput
|
32579
32771
|
}
|
32580
32772
|
|
32581
32773
|
export type ProfileUncheckedCreateWithoutMessagesInput = {
|
@@ -32611,6 +32803,7 @@ export namespace Prisma {
|
|
32611
32803
|
productionsAdministrated?: ProductionUncheckedCreateNestedManyWithoutAdministratorInput
|
32612
32804
|
productionsParticipated?: ProductionUncheckedCreateNestedManyWithoutParticipantsInput
|
32613
32805
|
productionRequestsSent?: ProductionAffiliationRequestUncheckedCreateNestedManyWithoutProfileInput
|
32806
|
+
referralCodeUsed?: TicketGroupUncheckedCreateNestedManyWithoutReferralCodeProfileInput
|
32614
32807
|
}
|
32615
32808
|
|
32616
32809
|
export type ProfileCreateOrConnectWithoutMessagesInput = {
|
@@ -32662,6 +32855,7 @@ export namespace Prisma {
|
|
32662
32855
|
productionsAdministrated?: ProductionUpdateManyWithoutAdministratorNestedInput
|
32663
32856
|
productionsParticipated?: ProductionUpdateManyWithoutParticipantsNestedInput
|
32664
32857
|
productionRequestsSent?: ProductionAffiliationRequestUpdateManyWithoutProfileNestedInput
|
32858
|
+
referralCodeUsed?: TicketGroupUpdateManyWithoutReferralCodeProfileNestedInput
|
32665
32859
|
}
|
32666
32860
|
|
32667
32861
|
export type ProfileUncheckedUpdateWithoutMessagesInput = {
|
@@ -32697,6 +32891,7 @@ export namespace Prisma {
|
|
32697
32891
|
productionsAdministrated?: ProductionUncheckedUpdateManyWithoutAdministratorNestedInput
|
32698
32892
|
productionsParticipated?: ProductionUncheckedUpdateManyWithoutParticipantsNestedInput
|
32699
32893
|
productionRequestsSent?: ProductionAffiliationRequestUncheckedUpdateManyWithoutProfileNestedInput
|
32894
|
+
referralCodeUsed?: TicketGroupUncheckedUpdateManyWithoutReferralCodeProfileNestedInput
|
32700
32895
|
}
|
32701
32896
|
|
32702
32897
|
export type EventCreateWithoutTicketsInput = {
|
@@ -32787,6 +32982,7 @@ export namespace Prisma {
|
|
32787
32982
|
productionsAdministrated?: ProductionCreateNestedManyWithoutAdministratorInput
|
32788
32983
|
productionsParticipated?: ProductionCreateNestedManyWithoutParticipantsInput
|
32789
32984
|
productionRequestsSent?: ProductionAffiliationRequestCreateNestedManyWithoutProfileInput
|
32985
|
+
referralCodeUsed?: TicketGroupCreateNestedManyWithoutReferralCodeProfileInput
|
32790
32986
|
}
|
32791
32987
|
|
32792
32988
|
export type ProfileUncheckedCreateWithoutTicketsInput = {
|
@@ -32822,6 +33018,7 @@ export namespace Prisma {
|
|
32822
33018
|
productionsAdministrated?: ProductionUncheckedCreateNestedManyWithoutAdministratorInput
|
32823
33019
|
productionsParticipated?: ProductionUncheckedCreateNestedManyWithoutParticipantsInput
|
32824
33020
|
productionRequestsSent?: ProductionAffiliationRequestUncheckedCreateNestedManyWithoutProfileInput
|
33021
|
+
referralCodeUsed?: TicketGroupUncheckedCreateNestedManyWithoutReferralCodeProfileInput
|
32825
33022
|
}
|
32826
33023
|
|
32827
33024
|
export type ProfileCreateOrConnectWithoutTicketsInput = {
|
@@ -32833,10 +33030,10 @@ export namespace Prisma {
|
|
32833
33030
|
id?: string
|
32834
33031
|
status: $Enums.TicketGroupStatus
|
32835
33032
|
amountTickets?: number
|
32836
|
-
referralCode?: string | null
|
32837
33033
|
created_at?: Date | string
|
32838
33034
|
updated_at?: Date | string
|
32839
33035
|
event: EventCreateNestedOneWithoutTicketGroupsInput
|
33036
|
+
referralCodeProfile?: ProfileCreateNestedOneWithoutReferralCodeUsedInput
|
32840
33037
|
}
|
32841
33038
|
|
32842
33039
|
export type TicketGroupUncheckedCreateWithoutTicketsInput = {
|
@@ -32959,6 +33156,7 @@ export namespace Prisma {
|
|
32959
33156
|
productionsAdministrated?: ProductionUpdateManyWithoutAdministratorNestedInput
|
32960
33157
|
productionsParticipated?: ProductionUpdateManyWithoutParticipantsNestedInput
|
32961
33158
|
productionRequestsSent?: ProductionAffiliationRequestUpdateManyWithoutProfileNestedInput
|
33159
|
+
referralCodeUsed?: TicketGroupUpdateManyWithoutReferralCodeProfileNestedInput
|
32962
33160
|
}
|
32963
33161
|
|
32964
33162
|
export type ProfileUncheckedUpdateWithoutTicketsInput = {
|
@@ -32994,6 +33192,7 @@ export namespace Prisma {
|
|
32994
33192
|
productionsAdministrated?: ProductionUncheckedUpdateManyWithoutAdministratorNestedInput
|
32995
33193
|
productionsParticipated?: ProductionUncheckedUpdateManyWithoutParticipantsNestedInput
|
32996
33194
|
productionRequestsSent?: ProductionAffiliationRequestUncheckedUpdateManyWithoutProfileNestedInput
|
33195
|
+
referralCodeUsed?: TicketGroupUncheckedUpdateManyWithoutReferralCodeProfileNestedInput
|
32997
33196
|
}
|
32998
33197
|
|
32999
33198
|
export type TicketGroupUpsertWithoutTicketsInput = {
|
@@ -33011,10 +33210,10 @@ export namespace Prisma {
|
|
33011
33210
|
id?: StringFieldUpdateOperationsInput | string
|
33012
33211
|
status?: EnumTicketGroupStatusFieldUpdateOperationsInput | $Enums.TicketGroupStatus
|
33013
33212
|
amountTickets?: IntFieldUpdateOperationsInput | number
|
33014
|
-
referralCode?: NullableStringFieldUpdateOperationsInput | string | null
|
33015
33213
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
33016
33214
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
33017
33215
|
event?: EventUpdateOneRequiredWithoutTicketGroupsNestedInput
|
33216
|
+
referralCodeProfile?: ProfileUpdateOneWithoutReferralCodeUsedNestedInput
|
33018
33217
|
}
|
33019
33218
|
|
33020
33219
|
export type TicketGroupUncheckedUpdateWithoutTicketsInput = {
|
@@ -33124,6 +33323,83 @@ export namespace Prisma {
|
|
33124
33323
|
skipDuplicates?: boolean
|
33125
33324
|
}
|
33126
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
|
+
|
33127
33403
|
export type EventUpsertWithoutTicketGroupsInput = {
|
33128
33404
|
update: XOR<EventUpdateWithoutTicketGroupsInput, EventUncheckedUpdateWithoutTicketGroupsInput>
|
33129
33405
|
create: XOR<EventCreateWithoutTicketGroupsInput, EventUncheckedCreateWithoutTicketGroupsInput>
|
@@ -33201,6 +33477,89 @@ export namespace Prisma {
|
|
33201
33477
|
data: XOR<TicketUpdateManyMutationInput, TicketUncheckedUpdateManyWithoutTicketGroupInput>
|
33202
33478
|
}
|
33203
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
|
+
|
33204
33563
|
export type EventCreateWithoutEventTicketsInput = {
|
33205
33564
|
id?: string
|
33206
33565
|
name: string
|
@@ -33350,6 +33709,7 @@ export namespace Prisma {
|
|
33350
33709
|
tickets?: TicketCreateNestedManyWithoutProfileInput
|
33351
33710
|
productionsParticipated?: ProductionCreateNestedManyWithoutParticipantsInput
|
33352
33711
|
productionRequestsSent?: ProductionAffiliationRequestCreateNestedManyWithoutProfileInput
|
33712
|
+
referralCodeUsed?: TicketGroupCreateNestedManyWithoutReferralCodeProfileInput
|
33353
33713
|
}
|
33354
33714
|
|
33355
33715
|
export type ProfileUncheckedCreateWithoutProductionsAdministratedInput = {
|
@@ -33385,6 +33745,7 @@ export namespace Prisma {
|
|
33385
33745
|
tickets?: TicketUncheckedCreateNestedManyWithoutProfileInput
|
33386
33746
|
productionsParticipated?: ProductionUncheckedCreateNestedManyWithoutParticipantsInput
|
33387
33747
|
productionRequestsSent?: ProductionAffiliationRequestUncheckedCreateNestedManyWithoutProfileInput
|
33748
|
+
referralCodeUsed?: TicketGroupUncheckedCreateNestedManyWithoutReferralCodeProfileInput
|
33388
33749
|
}
|
33389
33750
|
|
33390
33751
|
export type ProfileCreateOrConnectWithoutProductionsAdministratedInput = {
|
@@ -33425,6 +33786,7 @@ export namespace Prisma {
|
|
33425
33786
|
tickets?: TicketCreateNestedManyWithoutProfileInput
|
33426
33787
|
productionsAdministrated?: ProductionCreateNestedManyWithoutAdministratorInput
|
33427
33788
|
productionRequestsSent?: ProductionAffiliationRequestCreateNestedManyWithoutProfileInput
|
33789
|
+
referralCodeUsed?: TicketGroupCreateNestedManyWithoutReferralCodeProfileInput
|
33428
33790
|
}
|
33429
33791
|
|
33430
33792
|
export type ProfileUncheckedCreateWithoutProductionsParticipatedInput = {
|
@@ -33460,6 +33822,7 @@ export namespace Prisma {
|
|
33460
33822
|
tickets?: TicketUncheckedCreateNestedManyWithoutProfileInput
|
33461
33823
|
productionsAdministrated?: ProductionUncheckedCreateNestedManyWithoutAdministratorInput
|
33462
33824
|
productionRequestsSent?: ProductionAffiliationRequestUncheckedCreateNestedManyWithoutProfileInput
|
33825
|
+
referralCodeUsed?: TicketGroupUncheckedCreateNestedManyWithoutReferralCodeProfileInput
|
33463
33826
|
}
|
33464
33827
|
|
33465
33828
|
export type ProfileCreateOrConnectWithoutProductionsParticipatedInput = {
|
@@ -33594,6 +33957,7 @@ export namespace Prisma {
|
|
33594
33957
|
tickets?: TicketUpdateManyWithoutProfileNestedInput
|
33595
33958
|
productionsParticipated?: ProductionUpdateManyWithoutParticipantsNestedInput
|
33596
33959
|
productionRequestsSent?: ProductionAffiliationRequestUpdateManyWithoutProfileNestedInput
|
33960
|
+
referralCodeUsed?: TicketGroupUpdateManyWithoutReferralCodeProfileNestedInput
|
33597
33961
|
}
|
33598
33962
|
|
33599
33963
|
export type ProfileUncheckedUpdateWithoutProductionsAdministratedInput = {
|
@@ -33629,6 +33993,7 @@ export namespace Prisma {
|
|
33629
33993
|
tickets?: TicketUncheckedUpdateManyWithoutProfileNestedInput
|
33630
33994
|
productionsParticipated?: ProductionUncheckedUpdateManyWithoutParticipantsNestedInput
|
33631
33995
|
productionRequestsSent?: ProductionAffiliationRequestUncheckedUpdateManyWithoutProfileNestedInput
|
33996
|
+
referralCodeUsed?: TicketGroupUncheckedUpdateManyWithoutReferralCodeProfileNestedInput
|
33632
33997
|
}
|
33633
33998
|
|
33634
33999
|
export type ProfileUpsertWithWhereUniqueWithoutProductionsParticipatedInput = {
|
@@ -33737,6 +34102,7 @@ export namespace Prisma {
|
|
33737
34102
|
tickets?: TicketCreateNestedManyWithoutProfileInput
|
33738
34103
|
productionsAdministrated?: ProductionCreateNestedManyWithoutAdministratorInput
|
33739
34104
|
productionsParticipated?: ProductionCreateNestedManyWithoutParticipantsInput
|
34105
|
+
referralCodeUsed?: TicketGroupCreateNestedManyWithoutReferralCodeProfileInput
|
33740
34106
|
}
|
33741
34107
|
|
33742
34108
|
export type ProfileUncheckedCreateWithoutProductionRequestsSentInput = {
|
@@ -33772,6 +34138,7 @@ export namespace Prisma {
|
|
33772
34138
|
tickets?: TicketUncheckedCreateNestedManyWithoutProfileInput
|
33773
34139
|
productionsAdministrated?: ProductionUncheckedCreateNestedManyWithoutAdministratorInput
|
33774
34140
|
productionsParticipated?: ProductionUncheckedCreateNestedManyWithoutParticipantsInput
|
34141
|
+
referralCodeUsed?: TicketGroupUncheckedCreateNestedManyWithoutReferralCodeProfileInput
|
33775
34142
|
}
|
33776
34143
|
|
33777
34144
|
export type ProfileCreateOrConnectWithoutProductionRequestsSentInput = {
|
@@ -33854,6 +34221,7 @@ export namespace Prisma {
|
|
33854
34221
|
tickets?: TicketUpdateManyWithoutProfileNestedInput
|
33855
34222
|
productionsAdministrated?: ProductionUpdateManyWithoutAdministratorNestedInput
|
33856
34223
|
productionsParticipated?: ProductionUpdateManyWithoutParticipantsNestedInput
|
34224
|
+
referralCodeUsed?: TicketGroupUpdateManyWithoutReferralCodeProfileNestedInput
|
33857
34225
|
}
|
33858
34226
|
|
33859
34227
|
export type ProfileUncheckedUpdateWithoutProductionRequestsSentInput = {
|
@@ -33889,6 +34257,7 @@ export namespace Prisma {
|
|
33889
34257
|
tickets?: TicketUncheckedUpdateManyWithoutProfileNestedInput
|
33890
34258
|
productionsAdministrated?: ProductionUncheckedUpdateManyWithoutAdministratorNestedInput
|
33891
34259
|
productionsParticipated?: ProductionUncheckedUpdateManyWithoutParticipantsNestedInput
|
34260
|
+
referralCodeUsed?: TicketGroupUncheckedUpdateManyWithoutReferralCodeProfileNestedInput
|
33892
34261
|
}
|
33893
34262
|
|
33894
34263
|
export type CommentCreateManyAccountInput = {
|
@@ -34126,6 +34495,15 @@ export namespace Prisma {
|
|
34126
34495
|
updated_at?: Date | string
|
34127
34496
|
}
|
34128
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
|
+
|
34129
34507
|
export type OtpUpdateWithoutOwnerInput = {
|
34130
34508
|
id?: StringFieldUpdateOperationsInput | string
|
34131
34509
|
code?: StringFieldUpdateOperationsInput | string
|
@@ -34382,6 +34760,35 @@ export namespace Prisma {
|
|
34382
34760
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
34383
34761
|
}
|
34384
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
|
+
|
34385
34792
|
export type ProfileCreateManyBirthLocationInput = {
|
34386
34793
|
id?: string
|
34387
34794
|
shortId: number
|
@@ -34469,6 +34876,7 @@ export namespace Prisma {
|
|
34469
34876
|
productionsAdministrated?: ProductionUpdateManyWithoutAdministratorNestedInput
|
34470
34877
|
productionsParticipated?: ProductionUpdateManyWithoutParticipantsNestedInput
|
34471
34878
|
productionRequestsSent?: ProductionAffiliationRequestUpdateManyWithoutProfileNestedInput
|
34879
|
+
referralCodeUsed?: TicketGroupUpdateManyWithoutReferralCodeProfileNestedInput
|
34472
34880
|
}
|
34473
34881
|
|
34474
34882
|
export type ProfileUncheckedUpdateWithoutBirthLocationInput = {
|
@@ -34504,6 +34912,7 @@ export namespace Prisma {
|
|
34504
34912
|
productionsAdministrated?: ProductionUncheckedUpdateManyWithoutAdministratorNestedInput
|
34505
34913
|
productionsParticipated?: ProductionUncheckedUpdateManyWithoutParticipantsNestedInput
|
34506
34914
|
productionRequestsSent?: ProductionAffiliationRequestUncheckedUpdateManyWithoutProfileNestedInput
|
34915
|
+
referralCodeUsed?: TicketGroupUncheckedUpdateManyWithoutReferralCodeProfileNestedInput
|
34507
34916
|
}
|
34508
34917
|
|
34509
34918
|
export type ProfileUncheckedUpdateManyWithoutBirthLocationInput = {
|
@@ -34566,6 +34975,7 @@ export namespace Prisma {
|
|
34566
34975
|
productionsAdministrated?: ProductionUpdateManyWithoutAdministratorNestedInput
|
34567
34976
|
productionsParticipated?: ProductionUpdateManyWithoutParticipantsNestedInput
|
34568
34977
|
productionRequestsSent?: ProductionAffiliationRequestUpdateManyWithoutProfileNestedInput
|
34978
|
+
referralCodeUsed?: TicketGroupUpdateManyWithoutReferralCodeProfileNestedInput
|
34569
34979
|
}
|
34570
34980
|
|
34571
34981
|
export type ProfileUncheckedUpdateWithoutResidenceLocationInput = {
|
@@ -34601,6 +35011,7 @@ export namespace Prisma {
|
|
34601
35011
|
productionsAdministrated?: ProductionUncheckedUpdateManyWithoutAdministratorNestedInput
|
34602
35012
|
productionsParticipated?: ProductionUncheckedUpdateManyWithoutParticipantsNestedInput
|
34603
35013
|
productionRequestsSent?: ProductionAffiliationRequestUncheckedUpdateManyWithoutProfileNestedInput
|
35014
|
+
referralCodeUsed?: TicketGroupUncheckedUpdateManyWithoutReferralCodeProfileNestedInput
|
34604
35015
|
}
|
34605
35016
|
|
34606
35017
|
export type ProfileUncheckedUpdateManyWithoutResidenceLocationInput = {
|
@@ -34702,6 +35113,7 @@ export namespace Prisma {
|
|
34702
35113
|
productionsAdministrated?: ProductionUpdateManyWithoutAdministratorNestedInput
|
34703
35114
|
productionsParticipated?: ProductionUpdateManyWithoutParticipantsNestedInput
|
34704
35115
|
productionRequestsSent?: ProductionAffiliationRequestUpdateManyWithoutProfileNestedInput
|
35116
|
+
referralCodeUsed?: TicketGroupUpdateManyWithoutReferralCodeProfileNestedInput
|
34705
35117
|
}
|
34706
35118
|
|
34707
35119
|
export type ProfileUncheckedUpdateWithoutTagsInput = {
|
@@ -34737,6 +35149,7 @@ export namespace Prisma {
|
|
34737
35149
|
productionsAdministrated?: ProductionUncheckedUpdateManyWithoutAdministratorNestedInput
|
34738
35150
|
productionsParticipated?: ProductionUncheckedUpdateManyWithoutParticipantsNestedInput
|
34739
35151
|
productionRequestsSent?: ProductionAffiliationRequestUncheckedUpdateManyWithoutProfileNestedInput
|
35152
|
+
referralCodeUsed?: TicketGroupUncheckedUpdateManyWithoutReferralCodeProfileNestedInput
|
34740
35153
|
}
|
34741
35154
|
|
34742
35155
|
export type ProfileUncheckedUpdateManyWithoutTagsInput = {
|
@@ -35094,10 +35507,10 @@ export namespace Prisma {
|
|
35094
35507
|
id?: StringFieldUpdateOperationsInput | string
|
35095
35508
|
status?: EnumTicketGroupStatusFieldUpdateOperationsInput | $Enums.TicketGroupStatus
|
35096
35509
|
amountTickets?: IntFieldUpdateOperationsInput | number
|
35097
|
-
referralCode?: NullableStringFieldUpdateOperationsInput | string | null
|
35098
35510
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
35099
35511
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
35100
35512
|
tickets?: TicketUpdateManyWithoutTicketGroupNestedInput
|
35513
|
+
referralCodeProfile?: ProfileUpdateOneWithoutReferralCodeUsedNestedInput
|
35101
35514
|
}
|
35102
35515
|
|
35103
35516
|
export type TicketGroupUncheckedUpdateWithoutEventInput = {
|
@@ -35512,6 +35925,7 @@ export namespace Prisma {
|
|
35512
35925
|
tickets?: TicketUpdateManyWithoutProfileNestedInput
|
35513
35926
|
productionsAdministrated?: ProductionUpdateManyWithoutAdministratorNestedInput
|
35514
35927
|
productionRequestsSent?: ProductionAffiliationRequestUpdateManyWithoutProfileNestedInput
|
35928
|
+
referralCodeUsed?: TicketGroupUpdateManyWithoutReferralCodeProfileNestedInput
|
35515
35929
|
}
|
35516
35930
|
|
35517
35931
|
export type ProfileUncheckedUpdateWithoutProductionsParticipatedInput = {
|
@@ -35547,6 +35961,7 @@ export namespace Prisma {
|
|
35547
35961
|
tickets?: TicketUncheckedUpdateManyWithoutProfileNestedInput
|
35548
35962
|
productionsAdministrated?: ProductionUncheckedUpdateManyWithoutAdministratorNestedInput
|
35549
35963
|
productionRequestsSent?: ProductionAffiliationRequestUncheckedUpdateManyWithoutProfileNestedInput
|
35964
|
+
referralCodeUsed?: TicketGroupUncheckedUpdateManyWithoutReferralCodeProfileNestedInput
|
35550
35965
|
}
|
35551
35966
|
|
35552
35967
|
export type ProfileUncheckedUpdateManyWithoutProductionsParticipatedInput = {
|