expo-backend-types 0.37.0-EXPO-325-ExpoBackend-Emision-de-multiples-tickets.1 → 0.37.0-EXPO-325-ExpoBackend-Emision-de-multiples-tickets.3
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-by-id-event.dto.d.ts +10 -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 +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 +11 -11
- package/dist/src/otp/dto/verify-otp.dto.d.ts +8 -8
- package/dist/src/profile/dto/create-profile.dto.d.ts +10 -10
- 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 +10 -10
- 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/create-many-ticket.dto.d.ts +27 -1
- package/dist/src/ticket/dto/create-many-ticket.dto.js +1 -0
- package/dist/src/ticket/dto/create-ticket.dto.d.ts +13 -1
- 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 +22 -12
- package/dist/src/ticket/dto/find-by-event-type-ticket.dto.d.ts +48 -0
- package/dist/src/ticket/dto/find-by-event-type-ticket.dto.js +20 -0
- package/dist/src/ticket/dto/find-by-id-ticket.dto.d.ts +22 -12
- package/dist/src/ticket/dto/find-by-mail-ticket.dto.d.ts +22 -12
- 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/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 +12 -0
- package/dist/src/ticket/dto/update-ticket.dto.js +1 -0
- package/dist/src/ticket-group/dto/create-ticket-group.dto.d.ts +10 -0
- package/dist/src/ticket-group/dto/find-tickets-by-event.dto.d.ts +24 -0
- package/dist/src/ticket-group/dto/find-tickets-by-event.dto.js +10 -1
- package/dist/types/prisma-schema/edge.js +4 -3
- package/dist/types/prisma-schema/index-browser.js +1 -0
- package/dist/types/prisma-schema/index.d.ts +49 -1
- package/dist/types/prisma-schema/index.js +4 -3
- package/dist/types/prisma-schema/package.json +1 -1
- package/dist/types/prisma-schema/schema.prisma +1 -0
- package/dist/types/prisma-schema/wasm.js +1 -0
- package/dist/types/schema.d.ts +21 -1
- package/package.json +1 -1
@@ -15578,6 +15578,7 @@ export namespace Prisma {
|
|
15578
15578
|
type: $Enums.TicketType | null
|
15579
15579
|
fullName: string | null
|
15580
15580
|
mail: string | null
|
15581
|
+
dni: string | null
|
15581
15582
|
profileId: string | null
|
15582
15583
|
ticketGroupId: string | null
|
15583
15584
|
created_at: Date | null
|
@@ -15590,6 +15591,7 @@ export namespace Prisma {
|
|
15590
15591
|
type: $Enums.TicketType | null
|
15591
15592
|
fullName: string | null
|
15592
15593
|
mail: string | null
|
15594
|
+
dni: string | null
|
15593
15595
|
profileId: string | null
|
15594
15596
|
ticketGroupId: string | null
|
15595
15597
|
created_at: Date | null
|
@@ -15602,6 +15604,7 @@ export namespace Prisma {
|
|
15602
15604
|
type: number
|
15603
15605
|
fullName: number
|
15604
15606
|
mail: number
|
15607
|
+
dni: number
|
15605
15608
|
profileId: number
|
15606
15609
|
ticketGroupId: number
|
15607
15610
|
created_at: number
|
@@ -15616,6 +15619,7 @@ export namespace Prisma {
|
|
15616
15619
|
type?: true
|
15617
15620
|
fullName?: true
|
15618
15621
|
mail?: true
|
15622
|
+
dni?: true
|
15619
15623
|
profileId?: true
|
15620
15624
|
ticketGroupId?: true
|
15621
15625
|
created_at?: true
|
@@ -15628,6 +15632,7 @@ export namespace Prisma {
|
|
15628
15632
|
type?: true
|
15629
15633
|
fullName?: true
|
15630
15634
|
mail?: true
|
15635
|
+
dni?: true
|
15631
15636
|
profileId?: true
|
15632
15637
|
ticketGroupId?: true
|
15633
15638
|
created_at?: true
|
@@ -15640,6 +15645,7 @@ export namespace Prisma {
|
|
15640
15645
|
type?: true
|
15641
15646
|
fullName?: true
|
15642
15647
|
mail?: true
|
15648
|
+
dni?: true
|
15643
15649
|
profileId?: true
|
15644
15650
|
ticketGroupId?: true
|
15645
15651
|
created_at?: true
|
@@ -15725,6 +15731,7 @@ export namespace Prisma {
|
|
15725
15731
|
type: $Enums.TicketType
|
15726
15732
|
fullName: string
|
15727
15733
|
mail: string
|
15734
|
+
dni: string
|
15728
15735
|
profileId: string | null
|
15729
15736
|
ticketGroupId: string
|
15730
15737
|
created_at: Date
|
@@ -15754,6 +15761,7 @@ export namespace Prisma {
|
|
15754
15761
|
type?: boolean
|
15755
15762
|
fullName?: boolean
|
15756
15763
|
mail?: boolean
|
15764
|
+
dni?: boolean
|
15757
15765
|
profileId?: boolean
|
15758
15766
|
ticketGroupId?: boolean
|
15759
15767
|
created_at?: boolean
|
@@ -15769,6 +15777,7 @@ export namespace Prisma {
|
|
15769
15777
|
type?: boolean
|
15770
15778
|
fullName?: boolean
|
15771
15779
|
mail?: boolean
|
15780
|
+
dni?: boolean
|
15772
15781
|
profileId?: boolean
|
15773
15782
|
ticketGroupId?: boolean
|
15774
15783
|
created_at?: boolean
|
@@ -15784,6 +15793,7 @@ export namespace Prisma {
|
|
15784
15793
|
type?: boolean
|
15785
15794
|
fullName?: boolean
|
15786
15795
|
mail?: boolean
|
15796
|
+
dni?: boolean
|
15787
15797
|
profileId?: boolean
|
15788
15798
|
ticketGroupId?: boolean
|
15789
15799
|
created_at?: boolean
|
@@ -15799,13 +15809,14 @@ export namespace Prisma {
|
|
15799
15809
|
type?: boolean
|
15800
15810
|
fullName?: boolean
|
15801
15811
|
mail?: boolean
|
15812
|
+
dni?: boolean
|
15802
15813
|
profileId?: boolean
|
15803
15814
|
ticketGroupId?: boolean
|
15804
15815
|
created_at?: boolean
|
15805
15816
|
updated_at?: boolean
|
15806
15817
|
}
|
15807
15818
|
|
15808
|
-
export type TicketOmit<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetOmit<"id" | "eventId" | "type" | "fullName" | "mail" | "profileId" | "ticketGroupId" | "created_at" | "updated_at", ExtArgs["result"]["ticket"]>
|
15819
|
+
export type TicketOmit<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetOmit<"id" | "eventId" | "type" | "fullName" | "mail" | "dni" | "profileId" | "ticketGroupId" | "created_at" | "updated_at", ExtArgs["result"]["ticket"]>
|
15809
15820
|
export type TicketInclude<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
15810
15821
|
event?: boolean | EventDefaultArgs<ExtArgs>
|
15811
15822
|
profile?: boolean | Ticket$profileArgs<ExtArgs>
|
@@ -15835,6 +15846,7 @@ export namespace Prisma {
|
|
15835
15846
|
type: $Enums.TicketType
|
15836
15847
|
fullName: string
|
15837
15848
|
mail: string
|
15849
|
+
dni: string
|
15838
15850
|
profileId: string | null
|
15839
15851
|
ticketGroupId: string
|
15840
15852
|
created_at: Date
|
@@ -16270,6 +16282,7 @@ export namespace Prisma {
|
|
16270
16282
|
readonly type: FieldRef<"Ticket", 'TicketType'>
|
16271
16283
|
readonly fullName: FieldRef<"Ticket", 'String'>
|
16272
16284
|
readonly mail: FieldRef<"Ticket", 'String'>
|
16285
|
+
readonly dni: FieldRef<"Ticket", 'String'>
|
16273
16286
|
readonly profileId: FieldRef<"Ticket", 'String'>
|
16274
16287
|
readonly ticketGroupId: FieldRef<"Ticket", 'String'>
|
16275
16288
|
readonly created_at: FieldRef<"Ticket", 'DateTime'>
|
@@ -20117,6 +20130,7 @@ export namespace Prisma {
|
|
20117
20130
|
type: 'type',
|
20118
20131
|
fullName: 'fullName',
|
20119
20132
|
mail: 'mail',
|
20133
|
+
dni: 'dni',
|
20120
20134
|
profileId: 'profileId',
|
20121
20135
|
ticketGroupId: 'ticketGroupId',
|
20122
20136
|
created_at: 'created_at',
|
@@ -21292,6 +21306,7 @@ export namespace Prisma {
|
|
21292
21306
|
type?: EnumTicketTypeFilter<"Ticket"> | $Enums.TicketType
|
21293
21307
|
fullName?: StringFilter<"Ticket"> | string
|
21294
21308
|
mail?: StringFilter<"Ticket"> | string
|
21309
|
+
dni?: StringFilter<"Ticket"> | string
|
21295
21310
|
profileId?: StringNullableFilter<"Ticket"> | string | null
|
21296
21311
|
ticketGroupId?: StringFilter<"Ticket"> | string
|
21297
21312
|
created_at?: DateTimeFilter<"Ticket"> | Date | string
|
@@ -21307,6 +21322,7 @@ export namespace Prisma {
|
|
21307
21322
|
type?: SortOrder
|
21308
21323
|
fullName?: SortOrder
|
21309
21324
|
mail?: SortOrder
|
21325
|
+
dni?: SortOrder
|
21310
21326
|
profileId?: SortOrderInput | SortOrder
|
21311
21327
|
ticketGroupId?: SortOrder
|
21312
21328
|
created_at?: SortOrder
|
@@ -21325,6 +21341,7 @@ export namespace Prisma {
|
|
21325
21341
|
type?: EnumTicketTypeFilter<"Ticket"> | $Enums.TicketType
|
21326
21342
|
fullName?: StringFilter<"Ticket"> | string
|
21327
21343
|
mail?: StringFilter<"Ticket"> | string
|
21344
|
+
dni?: StringFilter<"Ticket"> | string
|
21328
21345
|
profileId?: StringNullableFilter<"Ticket"> | string | null
|
21329
21346
|
ticketGroupId?: StringFilter<"Ticket"> | string
|
21330
21347
|
created_at?: DateTimeFilter<"Ticket"> | Date | string
|
@@ -21340,6 +21357,7 @@ export namespace Prisma {
|
|
21340
21357
|
type?: SortOrder
|
21341
21358
|
fullName?: SortOrder
|
21342
21359
|
mail?: SortOrder
|
21360
|
+
dni?: SortOrder
|
21343
21361
|
profileId?: SortOrderInput | SortOrder
|
21344
21362
|
ticketGroupId?: SortOrder
|
21345
21363
|
created_at?: SortOrder
|
@@ -21358,6 +21376,7 @@ export namespace Prisma {
|
|
21358
21376
|
type?: EnumTicketTypeWithAggregatesFilter<"Ticket"> | $Enums.TicketType
|
21359
21377
|
fullName?: StringWithAggregatesFilter<"Ticket"> | string
|
21360
21378
|
mail?: StringWithAggregatesFilter<"Ticket"> | string
|
21379
|
+
dni?: StringWithAggregatesFilter<"Ticket"> | string
|
21361
21380
|
profileId?: StringNullableWithAggregatesFilter<"Ticket"> | string | null
|
21362
21381
|
ticketGroupId?: StringWithAggregatesFilter<"Ticket"> | string
|
21363
21382
|
created_at?: DateTimeWithAggregatesFilter<"Ticket"> | Date | string
|
@@ -22544,6 +22563,7 @@ export namespace Prisma {
|
|
22544
22563
|
type: $Enums.TicketType
|
22545
22564
|
fullName: string
|
22546
22565
|
mail: string
|
22566
|
+
dni?: string
|
22547
22567
|
created_at?: Date | string
|
22548
22568
|
updated_at?: Date | string
|
22549
22569
|
event: EventCreateNestedOneWithoutTicketsInput
|
@@ -22557,6 +22577,7 @@ export namespace Prisma {
|
|
22557
22577
|
type: $Enums.TicketType
|
22558
22578
|
fullName: string
|
22559
22579
|
mail: string
|
22580
|
+
dni?: string
|
22560
22581
|
profileId?: string | null
|
22561
22582
|
ticketGroupId: string
|
22562
22583
|
created_at?: Date | string
|
@@ -22568,6 +22589,7 @@ export namespace Prisma {
|
|
22568
22589
|
type?: EnumTicketTypeFieldUpdateOperationsInput | $Enums.TicketType
|
22569
22590
|
fullName?: StringFieldUpdateOperationsInput | string
|
22570
22591
|
mail?: StringFieldUpdateOperationsInput | string
|
22592
|
+
dni?: StringFieldUpdateOperationsInput | string
|
22571
22593
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
22572
22594
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
22573
22595
|
event?: EventUpdateOneRequiredWithoutTicketsNestedInput
|
@@ -22581,6 +22603,7 @@ export namespace Prisma {
|
|
22581
22603
|
type?: EnumTicketTypeFieldUpdateOperationsInput | $Enums.TicketType
|
22582
22604
|
fullName?: StringFieldUpdateOperationsInput | string
|
22583
22605
|
mail?: StringFieldUpdateOperationsInput | string
|
22606
|
+
dni?: StringFieldUpdateOperationsInput | string
|
22584
22607
|
profileId?: NullableStringFieldUpdateOperationsInput | string | null
|
22585
22608
|
ticketGroupId?: StringFieldUpdateOperationsInput | string
|
22586
22609
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
@@ -22593,6 +22616,7 @@ export namespace Prisma {
|
|
22593
22616
|
type: $Enums.TicketType
|
22594
22617
|
fullName: string
|
22595
22618
|
mail: string
|
22619
|
+
dni?: string
|
22596
22620
|
profileId?: string | null
|
22597
22621
|
ticketGroupId: string
|
22598
22622
|
created_at?: Date | string
|
@@ -22604,6 +22628,7 @@ export namespace Prisma {
|
|
22604
22628
|
type?: EnumTicketTypeFieldUpdateOperationsInput | $Enums.TicketType
|
22605
22629
|
fullName?: StringFieldUpdateOperationsInput | string
|
22606
22630
|
mail?: StringFieldUpdateOperationsInput | string
|
22631
|
+
dni?: StringFieldUpdateOperationsInput | string
|
22607
22632
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
22608
22633
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
22609
22634
|
}
|
@@ -22614,6 +22639,7 @@ export namespace Prisma {
|
|
22614
22639
|
type?: EnumTicketTypeFieldUpdateOperationsInput | $Enums.TicketType
|
22615
22640
|
fullName?: StringFieldUpdateOperationsInput | string
|
22616
22641
|
mail?: StringFieldUpdateOperationsInput | string
|
22642
|
+
dni?: StringFieldUpdateOperationsInput | string
|
22617
22643
|
profileId?: NullableStringFieldUpdateOperationsInput | string | null
|
22618
22644
|
ticketGroupId?: StringFieldUpdateOperationsInput | string
|
22619
22645
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
@@ -23671,6 +23697,7 @@ export namespace Prisma {
|
|
23671
23697
|
type?: SortOrder
|
23672
23698
|
fullName?: SortOrder
|
23673
23699
|
mail?: SortOrder
|
23700
|
+
dni?: SortOrder
|
23674
23701
|
profileId?: SortOrder
|
23675
23702
|
ticketGroupId?: SortOrder
|
23676
23703
|
created_at?: SortOrder
|
@@ -23683,6 +23710,7 @@ export namespace Prisma {
|
|
23683
23710
|
type?: SortOrder
|
23684
23711
|
fullName?: SortOrder
|
23685
23712
|
mail?: SortOrder
|
23713
|
+
dni?: SortOrder
|
23686
23714
|
profileId?: SortOrder
|
23687
23715
|
ticketGroupId?: SortOrder
|
23688
23716
|
created_at?: SortOrder
|
@@ -23695,6 +23723,7 @@ export namespace Prisma {
|
|
23695
23723
|
type?: SortOrder
|
23696
23724
|
fullName?: SortOrder
|
23697
23725
|
mail?: SortOrder
|
23726
|
+
dni?: SortOrder
|
23698
23727
|
profileId?: SortOrder
|
23699
23728
|
ticketGroupId?: SortOrder
|
23700
23729
|
created_at?: SortOrder
|
@@ -26040,6 +26069,7 @@ export namespace Prisma {
|
|
26040
26069
|
type: $Enums.TicketType
|
26041
26070
|
fullName: string
|
26042
26071
|
mail: string
|
26072
|
+
dni?: string
|
26043
26073
|
created_at?: Date | string
|
26044
26074
|
updated_at?: Date | string
|
26045
26075
|
event: EventCreateNestedOneWithoutTicketsInput
|
@@ -26052,6 +26082,7 @@ export namespace Prisma {
|
|
26052
26082
|
type: $Enums.TicketType
|
26053
26083
|
fullName: string
|
26054
26084
|
mail: string
|
26085
|
+
dni?: string
|
26055
26086
|
ticketGroupId: string
|
26056
26087
|
created_at?: Date | string
|
26057
26088
|
updated_at?: Date | string
|
@@ -26251,6 +26282,7 @@ export namespace Prisma {
|
|
26251
26282
|
type?: EnumTicketTypeFilter<"Ticket"> | $Enums.TicketType
|
26252
26283
|
fullName?: StringFilter<"Ticket"> | string
|
26253
26284
|
mail?: StringFilter<"Ticket"> | string
|
26285
|
+
dni?: StringFilter<"Ticket"> | string
|
26254
26286
|
profileId?: StringNullableFilter<"Ticket"> | string | null
|
26255
26287
|
ticketGroupId?: StringFilter<"Ticket"> | string
|
26256
26288
|
created_at?: DateTimeFilter<"Ticket"> | Date | string
|
@@ -27597,6 +27629,7 @@ export namespace Prisma {
|
|
27597
27629
|
type: $Enums.TicketType
|
27598
27630
|
fullName: string
|
27599
27631
|
mail: string
|
27632
|
+
dni?: string
|
27600
27633
|
created_at?: Date | string
|
27601
27634
|
updated_at?: Date | string
|
27602
27635
|
profile?: ProfileCreateNestedOneWithoutTicketInput
|
@@ -27608,6 +27641,7 @@ export namespace Prisma {
|
|
27608
27641
|
type: $Enums.TicketType
|
27609
27642
|
fullName: string
|
27610
27643
|
mail: string
|
27644
|
+
dni?: string
|
27611
27645
|
profileId?: string | null
|
27612
27646
|
ticketGroupId: string
|
27613
27647
|
created_at?: Date | string
|
@@ -28568,6 +28602,7 @@ export namespace Prisma {
|
|
28568
28602
|
type: $Enums.TicketType
|
28569
28603
|
fullName: string
|
28570
28604
|
mail: string
|
28605
|
+
dni?: string
|
28571
28606
|
created_at?: Date | string
|
28572
28607
|
updated_at?: Date | string
|
28573
28608
|
event: EventCreateNestedOneWithoutTicketsInput
|
@@ -28580,6 +28615,7 @@ export namespace Prisma {
|
|
28580
28615
|
type: $Enums.TicketType
|
28581
28616
|
fullName: string
|
28582
28617
|
mail: string
|
28618
|
+
dni?: string
|
28583
28619
|
profileId?: string | null
|
28584
28620
|
created_at?: Date | string
|
28585
28621
|
updated_at?: Date | string
|
@@ -28963,6 +28999,7 @@ export namespace Prisma {
|
|
28963
28999
|
type: $Enums.TicketType
|
28964
29000
|
fullName: string
|
28965
29001
|
mail: string
|
29002
|
+
dni?: string
|
28966
29003
|
ticketGroupId: string
|
28967
29004
|
created_at?: Date | string
|
28968
29005
|
updated_at?: Date | string
|
@@ -29097,6 +29134,7 @@ export namespace Prisma {
|
|
29097
29134
|
type?: EnumTicketTypeFieldUpdateOperationsInput | $Enums.TicketType
|
29098
29135
|
fullName?: StringFieldUpdateOperationsInput | string
|
29099
29136
|
mail?: StringFieldUpdateOperationsInput | string
|
29137
|
+
dni?: StringFieldUpdateOperationsInput | string
|
29100
29138
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
29101
29139
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
29102
29140
|
event?: EventUpdateOneRequiredWithoutTicketsNestedInput
|
@@ -29109,6 +29147,7 @@ export namespace Prisma {
|
|
29109
29147
|
type?: EnumTicketTypeFieldUpdateOperationsInput | $Enums.TicketType
|
29110
29148
|
fullName?: StringFieldUpdateOperationsInput | string
|
29111
29149
|
mail?: StringFieldUpdateOperationsInput | string
|
29150
|
+
dni?: StringFieldUpdateOperationsInput | string
|
29112
29151
|
ticketGroupId?: StringFieldUpdateOperationsInput | string
|
29113
29152
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
29114
29153
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
@@ -29120,6 +29159,7 @@ export namespace Prisma {
|
|
29120
29159
|
type?: EnumTicketTypeFieldUpdateOperationsInput | $Enums.TicketType
|
29121
29160
|
fullName?: StringFieldUpdateOperationsInput | string
|
29122
29161
|
mail?: StringFieldUpdateOperationsInput | string
|
29162
|
+
dni?: StringFieldUpdateOperationsInput | string
|
29123
29163
|
ticketGroupId?: StringFieldUpdateOperationsInput | string
|
29124
29164
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
29125
29165
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
@@ -29625,6 +29665,7 @@ export namespace Prisma {
|
|
29625
29665
|
type: $Enums.TicketType
|
29626
29666
|
fullName: string
|
29627
29667
|
mail: string
|
29668
|
+
dni?: string
|
29628
29669
|
profileId?: string | null
|
29629
29670
|
ticketGroupId: string
|
29630
29671
|
created_at?: Date | string
|
@@ -29668,6 +29709,7 @@ export namespace Prisma {
|
|
29668
29709
|
type?: EnumTicketTypeFieldUpdateOperationsInput | $Enums.TicketType
|
29669
29710
|
fullName?: StringFieldUpdateOperationsInput | string
|
29670
29711
|
mail?: StringFieldUpdateOperationsInput | string
|
29712
|
+
dni?: StringFieldUpdateOperationsInput | string
|
29671
29713
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
29672
29714
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
29673
29715
|
profile?: ProfileUpdateOneWithoutTicketNestedInput
|
@@ -29679,6 +29721,7 @@ export namespace Prisma {
|
|
29679
29721
|
type?: EnumTicketTypeFieldUpdateOperationsInput | $Enums.TicketType
|
29680
29722
|
fullName?: StringFieldUpdateOperationsInput | string
|
29681
29723
|
mail?: StringFieldUpdateOperationsInput | string
|
29724
|
+
dni?: StringFieldUpdateOperationsInput | string
|
29682
29725
|
profileId?: NullableStringFieldUpdateOperationsInput | string | null
|
29683
29726
|
ticketGroupId?: StringFieldUpdateOperationsInput | string
|
29684
29727
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
@@ -29690,6 +29733,7 @@ export namespace Prisma {
|
|
29690
29733
|
type?: EnumTicketTypeFieldUpdateOperationsInput | $Enums.TicketType
|
29691
29734
|
fullName?: StringFieldUpdateOperationsInput | string
|
29692
29735
|
mail?: StringFieldUpdateOperationsInput | string
|
29736
|
+
dni?: StringFieldUpdateOperationsInput | string
|
29693
29737
|
profileId?: NullableStringFieldUpdateOperationsInput | string | null
|
29694
29738
|
ticketGroupId?: StringFieldUpdateOperationsInput | string
|
29695
29739
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
@@ -29917,6 +29961,7 @@ export namespace Prisma {
|
|
29917
29961
|
type: $Enums.TicketType
|
29918
29962
|
fullName: string
|
29919
29963
|
mail: string
|
29964
|
+
dni?: string
|
29920
29965
|
profileId?: string | null
|
29921
29966
|
created_at?: Date | string
|
29922
29967
|
updated_at?: Date | string
|
@@ -29927,6 +29972,7 @@ export namespace Prisma {
|
|
29927
29972
|
type?: EnumTicketTypeFieldUpdateOperationsInput | $Enums.TicketType
|
29928
29973
|
fullName?: StringFieldUpdateOperationsInput | string
|
29929
29974
|
mail?: StringFieldUpdateOperationsInput | string
|
29975
|
+
dni?: StringFieldUpdateOperationsInput | string
|
29930
29976
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
29931
29977
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
29932
29978
|
event?: EventUpdateOneRequiredWithoutTicketsNestedInput
|
@@ -29939,6 +29985,7 @@ export namespace Prisma {
|
|
29939
29985
|
type?: EnumTicketTypeFieldUpdateOperationsInput | $Enums.TicketType
|
29940
29986
|
fullName?: StringFieldUpdateOperationsInput | string
|
29941
29987
|
mail?: StringFieldUpdateOperationsInput | string
|
29988
|
+
dni?: StringFieldUpdateOperationsInput | string
|
29942
29989
|
profileId?: NullableStringFieldUpdateOperationsInput | string | null
|
29943
29990
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
29944
29991
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
@@ -29950,6 +29997,7 @@ export namespace Prisma {
|
|
29950
29997
|
type?: EnumTicketTypeFieldUpdateOperationsInput | $Enums.TicketType
|
29951
29998
|
fullName?: StringFieldUpdateOperationsInput | string
|
29952
29999
|
mail?: StringFieldUpdateOperationsInput | string
|
30000
|
+
dni?: StringFieldUpdateOperationsInput | string
|
29953
30001
|
profileId?: NullableStringFieldUpdateOperationsInput | string | null
|
29954
30002
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
29955
30003
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|