expo-backend-types 0.59.0-EXPO-404-Etapa-4-Paquete-02.5.4 → 0.60.0-feat-desfile-12-octubre.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (29) hide show
  1. package/dist/src/event/dto/get-all-statistics.dto.d.ts +15 -0
  2. package/dist/src/event/dto/get-by-id-event.dto.d.ts +30 -0
  3. package/dist/src/event/dto/get-statistics-by-id-event.dto.d.ts +15 -0
  4. package/dist/src/ticket/dto/create-many-ticket.dto.d.ts +49 -1
  5. package/dist/src/ticket/dto/create-many-ticket.dto.js +3 -0
  6. package/dist/src/ticket/dto/create-ticket.dto.d.ts +37 -1
  7. package/dist/src/ticket/dto/create-ticket.dto.js +3 -0
  8. package/dist/src/ticket/dto/delete-ticket.dto.d.ts +18 -0
  9. package/dist/src/ticket/dto/find-all-tickets.dto.d.ts +30 -0
  10. package/dist/src/ticket/dto/find-by-event-ticket.dto.d.ts +30 -0
  11. package/dist/src/ticket/dto/find-by-id-ticket.dto.d.ts +30 -0
  12. package/dist/src/ticket/dto/find-by-mail-ticket.dto.d.ts +30 -0
  13. package/dist/src/ticket/dto/find-by-profile-id-ticket.dto.d.ts +30 -0
  14. package/dist/src/ticket/dto/find-ticket.dto.d.ts +18 -0
  15. package/dist/src/ticket/dto/get-pdfs-by-group-ticket.dto.d.ts +15 -0
  16. package/dist/src/ticket/dto/scan-ticket.dto.d.ts +18 -0
  17. package/dist/src/ticket/dto/ticket.dto.d.ts +18 -0
  18. package/dist/src/ticket/dto/ticket.dto.js +4 -0
  19. package/dist/src/ticket/dto/update-ticket.dto.d.ts +18 -0
  20. package/dist/src/ticket-group/dto/create-ticket-group.dto.d.ts +30 -0
  21. package/dist/types/prisma-schema/edge.js +6 -3
  22. package/dist/types/prisma-schema/index-browser.js +3 -0
  23. package/dist/types/prisma-schema/index.d.ts +148 -1
  24. package/dist/types/prisma-schema/index.js +6 -3
  25. package/dist/types/prisma-schema/package.json +1 -1
  26. package/dist/types/prisma-schema/schema.prisma +6 -0
  27. package/dist/types/prisma-schema/wasm.js +3 -0
  28. package/dist/types/schema.d.ts +45 -0
  29. package/package.json +1 -1
@@ -259,6 +259,9 @@ exports.Prisma.TicketScalarFieldEnum = {
259
259
  fullName: 'fullName',
260
260
  mail: 'mail',
261
261
  dni: 'dni',
262
+ phoneNumber: 'phoneNumber',
263
+ instagrams: 'instagrams',
264
+ whoToWatch: 'whoToWatch',
262
265
  seat: 'seat',
263
266
  scanned: 'scanned',
264
267
  scannedAt: 'scannedAt',
@@ -16555,6 +16555,8 @@ export namespace Prisma {
16555
16555
  fullName: string | null
16556
16556
  mail: string | null
16557
16557
  dni: string | null
16558
+ phoneNumber: string | null
16559
+ whoToWatch: string | null
16558
16560
  seat: number | null
16559
16561
  scanned: boolean | null
16560
16562
  scannedAt: Date | null
@@ -16571,6 +16573,8 @@ export namespace Prisma {
16571
16573
  fullName: string | null
16572
16574
  mail: string | null
16573
16575
  dni: string | null
16576
+ phoneNumber: string | null
16577
+ whoToWatch: string | null
16574
16578
  seat: number | null
16575
16579
  scanned: boolean | null
16576
16580
  scannedAt: Date | null
@@ -16587,6 +16591,9 @@ export namespace Prisma {
16587
16591
  fullName: number
16588
16592
  mail: number
16589
16593
  dni: number
16594
+ phoneNumber: number
16595
+ instagrams: number
16596
+ whoToWatch: number
16590
16597
  seat: number
16591
16598
  scanned: number
16592
16599
  scannedAt: number
@@ -16613,6 +16620,8 @@ export namespace Prisma {
16613
16620
  fullName?: true
16614
16621
  mail?: true
16615
16622
  dni?: true
16623
+ phoneNumber?: true
16624
+ whoToWatch?: true
16616
16625
  seat?: true
16617
16626
  scanned?: true
16618
16627
  scannedAt?: true
@@ -16629,6 +16638,8 @@ export namespace Prisma {
16629
16638
  fullName?: true
16630
16639
  mail?: true
16631
16640
  dni?: true
16641
+ phoneNumber?: true
16642
+ whoToWatch?: true
16632
16643
  seat?: true
16633
16644
  scanned?: true
16634
16645
  scannedAt?: true
@@ -16645,6 +16656,9 @@ export namespace Prisma {
16645
16656
  fullName?: true
16646
16657
  mail?: true
16647
16658
  dni?: true
16659
+ phoneNumber?: true
16660
+ instagrams?: true
16661
+ whoToWatch?: true
16648
16662
  seat?: true
16649
16663
  scanned?: true
16650
16664
  scannedAt?: true
@@ -16748,6 +16762,9 @@ export namespace Prisma {
16748
16762
  fullName: string
16749
16763
  mail: string
16750
16764
  dni: string
16765
+ phoneNumber: string
16766
+ instagrams: string[]
16767
+ whoToWatch: string | null
16751
16768
  seat: number | null
16752
16769
  scanned: boolean
16753
16770
  scannedAt: Date | null
@@ -16783,6 +16800,9 @@ export namespace Prisma {
16783
16800
  fullName?: boolean
16784
16801
  mail?: boolean
16785
16802
  dni?: boolean
16803
+ phoneNumber?: boolean
16804
+ instagrams?: boolean
16805
+ whoToWatch?: boolean
16786
16806
  seat?: boolean
16787
16807
  scanned?: boolean
16788
16808
  scannedAt?: boolean
@@ -16802,6 +16822,9 @@ export namespace Prisma {
16802
16822
  fullName?: boolean
16803
16823
  mail?: boolean
16804
16824
  dni?: boolean
16825
+ phoneNumber?: boolean
16826
+ instagrams?: boolean
16827
+ whoToWatch?: boolean
16805
16828
  seat?: boolean
16806
16829
  scanned?: boolean
16807
16830
  scannedAt?: boolean
@@ -16821,6 +16844,9 @@ export namespace Prisma {
16821
16844
  fullName?: boolean
16822
16845
  mail?: boolean
16823
16846
  dni?: boolean
16847
+ phoneNumber?: boolean
16848
+ instagrams?: boolean
16849
+ whoToWatch?: boolean
16824
16850
  seat?: boolean
16825
16851
  scanned?: boolean
16826
16852
  scannedAt?: boolean
@@ -16840,6 +16866,9 @@ export namespace Prisma {
16840
16866
  fullName?: boolean
16841
16867
  mail?: boolean
16842
16868
  dni?: boolean
16869
+ phoneNumber?: boolean
16870
+ instagrams?: boolean
16871
+ whoToWatch?: boolean
16843
16872
  seat?: boolean
16844
16873
  scanned?: boolean
16845
16874
  scannedAt?: boolean
@@ -16849,7 +16878,7 @@ export namespace Prisma {
16849
16878
  updated_at?: boolean
16850
16879
  }
16851
16880
 
16852
- export type TicketOmit<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetOmit<"id" | "eventId" | "type" | "fullName" | "mail" | "dni" | "seat" | "scanned" | "scannedAt" | "profileId" | "ticketGroupId" | "created_at" | "updated_at", ExtArgs["result"]["ticket"]>
16881
+ export type TicketOmit<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetOmit<"id" | "eventId" | "type" | "fullName" | "mail" | "dni" | "phoneNumber" | "instagrams" | "whoToWatch" | "seat" | "scanned" | "scannedAt" | "profileId" | "ticketGroupId" | "created_at" | "updated_at", ExtArgs["result"]["ticket"]>
16853
16882
  export type TicketInclude<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
16854
16883
  event?: boolean | EventDefaultArgs<ExtArgs>
16855
16884
  profile?: boolean | Ticket$profileArgs<ExtArgs>
@@ -16880,6 +16909,9 @@ export namespace Prisma {
16880
16909
  fullName: string
16881
16910
  mail: string
16882
16911
  dni: string
16912
+ phoneNumber: string
16913
+ instagrams: string[]
16914
+ whoToWatch: string | null
16883
16915
  seat: number | null
16884
16916
  scanned: boolean
16885
16917
  scannedAt: Date | null
@@ -17319,6 +17351,9 @@ export namespace Prisma {
17319
17351
  readonly fullName: FieldRef<"Ticket", 'String'>
17320
17352
  readonly mail: FieldRef<"Ticket", 'String'>
17321
17353
  readonly dni: FieldRef<"Ticket", 'String'>
17354
+ readonly phoneNumber: FieldRef<"Ticket", 'String'>
17355
+ readonly instagrams: FieldRef<"Ticket", 'String[]'>
17356
+ readonly whoToWatch: FieldRef<"Ticket", 'String'>
17322
17357
  readonly seat: FieldRef<"Ticket", 'Int'>
17323
17358
  readonly scanned: FieldRef<"Ticket", 'Boolean'>
17324
17359
  readonly scannedAt: FieldRef<"Ticket", 'DateTime'>
@@ -26798,6 +26833,9 @@ export namespace Prisma {
26798
26833
  fullName: 'fullName',
26799
26834
  mail: 'mail',
26800
26835
  dni: 'dni',
26836
+ phoneNumber: 'phoneNumber',
26837
+ instagrams: 'instagrams',
26838
+ whoToWatch: 'whoToWatch',
26801
26839
  seat: 'seat',
26802
26840
  scanned: 'scanned',
26803
26841
  scannedAt: 'scannedAt',
@@ -28116,6 +28154,9 @@ export namespace Prisma {
28116
28154
  fullName?: StringFilter<"Ticket"> | string
28117
28155
  mail?: StringFilter<"Ticket"> | string
28118
28156
  dni?: StringFilter<"Ticket"> | string
28157
+ phoneNumber?: StringFilter<"Ticket"> | string
28158
+ instagrams?: StringNullableListFilter<"Ticket">
28159
+ whoToWatch?: StringNullableFilter<"Ticket"> | string | null
28119
28160
  seat?: IntNullableFilter<"Ticket"> | number | null
28120
28161
  scanned?: BoolFilter<"Ticket"> | boolean
28121
28162
  scannedAt?: DateTimeNullableFilter<"Ticket"> | Date | string | null
@@ -28135,6 +28176,9 @@ export namespace Prisma {
28135
28176
  fullName?: SortOrder
28136
28177
  mail?: SortOrder
28137
28178
  dni?: SortOrder
28179
+ phoneNumber?: SortOrder
28180
+ instagrams?: SortOrder
28181
+ whoToWatch?: SortOrderInput | SortOrder
28138
28182
  seat?: SortOrderInput | SortOrder
28139
28183
  scanned?: SortOrder
28140
28184
  scannedAt?: SortOrderInput | SortOrder
@@ -28157,6 +28201,9 @@ export namespace Prisma {
28157
28201
  fullName?: StringFilter<"Ticket"> | string
28158
28202
  mail?: StringFilter<"Ticket"> | string
28159
28203
  dni?: StringFilter<"Ticket"> | string
28204
+ phoneNumber?: StringFilter<"Ticket"> | string
28205
+ instagrams?: StringNullableListFilter<"Ticket">
28206
+ whoToWatch?: StringNullableFilter<"Ticket"> | string | null
28160
28207
  seat?: IntNullableFilter<"Ticket"> | number | null
28161
28208
  scanned?: BoolFilter<"Ticket"> | boolean
28162
28209
  scannedAt?: DateTimeNullableFilter<"Ticket"> | Date | string | null
@@ -28176,6 +28223,9 @@ export namespace Prisma {
28176
28223
  fullName?: SortOrder
28177
28224
  mail?: SortOrder
28178
28225
  dni?: SortOrder
28226
+ phoneNumber?: SortOrder
28227
+ instagrams?: SortOrder
28228
+ whoToWatch?: SortOrderInput | SortOrder
28179
28229
  seat?: SortOrderInput | SortOrder
28180
28230
  scanned?: SortOrder
28181
28231
  scannedAt?: SortOrderInput | SortOrder
@@ -28200,6 +28250,9 @@ export namespace Prisma {
28200
28250
  fullName?: StringWithAggregatesFilter<"Ticket"> | string
28201
28251
  mail?: StringWithAggregatesFilter<"Ticket"> | string
28202
28252
  dni?: StringWithAggregatesFilter<"Ticket"> | string
28253
+ phoneNumber?: StringWithAggregatesFilter<"Ticket"> | string
28254
+ instagrams?: StringNullableListFilter<"Ticket">
28255
+ whoToWatch?: StringNullableWithAggregatesFilter<"Ticket"> | string | null
28203
28256
  seat?: IntNullableWithAggregatesFilter<"Ticket"> | number | null
28204
28257
  scanned?: BoolWithAggregatesFilter<"Ticket"> | boolean
28205
28258
  scannedAt?: DateTimeNullableWithAggregatesFilter<"Ticket"> | Date | string | null
@@ -29798,6 +29851,9 @@ export namespace Prisma {
29798
29851
  fullName: string
29799
29852
  mail: string
29800
29853
  dni: string
29854
+ phoneNumber: string
29855
+ instagrams?: TicketCreateinstagramsInput | string[]
29856
+ whoToWatch?: string | null
29801
29857
  seat?: number | null
29802
29858
  scanned?: boolean
29803
29859
  scannedAt?: Date | string | null
@@ -29815,6 +29871,9 @@ export namespace Prisma {
29815
29871
  fullName: string
29816
29872
  mail: string
29817
29873
  dni: string
29874
+ phoneNumber: string
29875
+ instagrams?: TicketCreateinstagramsInput | string[]
29876
+ whoToWatch?: string | null
29818
29877
  seat?: number | null
29819
29878
  scanned?: boolean
29820
29879
  scannedAt?: Date | string | null
@@ -29830,6 +29889,9 @@ export namespace Prisma {
29830
29889
  fullName?: StringFieldUpdateOperationsInput | string
29831
29890
  mail?: StringFieldUpdateOperationsInput | string
29832
29891
  dni?: StringFieldUpdateOperationsInput | string
29892
+ phoneNumber?: StringFieldUpdateOperationsInput | string
29893
+ instagrams?: TicketUpdateinstagramsInput | string[]
29894
+ whoToWatch?: NullableStringFieldUpdateOperationsInput | string | null
29833
29895
  seat?: NullableIntFieldUpdateOperationsInput | number | null
29834
29896
  scanned?: BoolFieldUpdateOperationsInput | boolean
29835
29897
  scannedAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
@@ -29847,6 +29909,9 @@ export namespace Prisma {
29847
29909
  fullName?: StringFieldUpdateOperationsInput | string
29848
29910
  mail?: StringFieldUpdateOperationsInput | string
29849
29911
  dni?: StringFieldUpdateOperationsInput | string
29912
+ phoneNumber?: StringFieldUpdateOperationsInput | string
29913
+ instagrams?: TicketUpdateinstagramsInput | string[]
29914
+ whoToWatch?: NullableStringFieldUpdateOperationsInput | string | null
29850
29915
  seat?: NullableIntFieldUpdateOperationsInput | number | null
29851
29916
  scanned?: BoolFieldUpdateOperationsInput | boolean
29852
29917
  scannedAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
@@ -29863,6 +29928,9 @@ export namespace Prisma {
29863
29928
  fullName: string
29864
29929
  mail: string
29865
29930
  dni: string
29931
+ phoneNumber: string
29932
+ instagrams?: TicketCreateinstagramsInput | string[]
29933
+ whoToWatch?: string | null
29866
29934
  seat?: number | null
29867
29935
  scanned?: boolean
29868
29936
  scannedAt?: Date | string | null
@@ -29878,6 +29946,9 @@ export namespace Prisma {
29878
29946
  fullName?: StringFieldUpdateOperationsInput | string
29879
29947
  mail?: StringFieldUpdateOperationsInput | string
29880
29948
  dni?: StringFieldUpdateOperationsInput | string
29949
+ phoneNumber?: StringFieldUpdateOperationsInput | string
29950
+ instagrams?: TicketUpdateinstagramsInput | string[]
29951
+ whoToWatch?: NullableStringFieldUpdateOperationsInput | string | null
29881
29952
  seat?: NullableIntFieldUpdateOperationsInput | number | null
29882
29953
  scanned?: BoolFieldUpdateOperationsInput | boolean
29883
29954
  scannedAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
@@ -29892,6 +29963,9 @@ export namespace Prisma {
29892
29963
  fullName?: StringFieldUpdateOperationsInput | string
29893
29964
  mail?: StringFieldUpdateOperationsInput | string
29894
29965
  dni?: StringFieldUpdateOperationsInput | string
29966
+ phoneNumber?: StringFieldUpdateOperationsInput | string
29967
+ instagrams?: TicketUpdateinstagramsInput | string[]
29968
+ whoToWatch?: NullableStringFieldUpdateOperationsInput | string | null
29895
29969
  seat?: NullableIntFieldUpdateOperationsInput | number | null
29896
29970
  scanned?: BoolFieldUpdateOperationsInput | boolean
29897
29971
  scannedAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
@@ -31366,6 +31440,9 @@ export namespace Prisma {
31366
31440
  fullName?: SortOrder
31367
31441
  mail?: SortOrder
31368
31442
  dni?: SortOrder
31443
+ phoneNumber?: SortOrder
31444
+ instagrams?: SortOrder
31445
+ whoToWatch?: SortOrder
31369
31446
  seat?: SortOrder
31370
31447
  scanned?: SortOrder
31371
31448
  scannedAt?: SortOrder
@@ -31386,6 +31463,8 @@ export namespace Prisma {
31386
31463
  fullName?: SortOrder
31387
31464
  mail?: SortOrder
31388
31465
  dni?: SortOrder
31466
+ phoneNumber?: SortOrder
31467
+ whoToWatch?: SortOrder
31389
31468
  seat?: SortOrder
31390
31469
  scanned?: SortOrder
31391
31470
  scannedAt?: SortOrder
@@ -31402,6 +31481,8 @@ export namespace Prisma {
31402
31481
  fullName?: SortOrder
31403
31482
  mail?: SortOrder
31404
31483
  dni?: SortOrder
31484
+ phoneNumber?: SortOrder
31485
+ whoToWatch?: SortOrder
31405
31486
  seat?: SortOrder
31406
31487
  scanned?: SortOrder
31407
31488
  scannedAt?: SortOrder
@@ -33370,6 +33451,10 @@ export namespace Prisma {
33370
33451
  update?: XOR<XOR<ProfileUpdateToOneWithWhereWithoutMessagesInput, ProfileUpdateWithoutMessagesInput>, ProfileUncheckedUpdateWithoutMessagesInput>
33371
33452
  }
33372
33453
 
33454
+ export type TicketCreateinstagramsInput = {
33455
+ set: string[]
33456
+ }
33457
+
33373
33458
  export type EventCreateNestedOneWithoutTicketsInput = {
33374
33459
  create?: XOR<EventCreateWithoutTicketsInput, EventUncheckedCreateWithoutTicketsInput>
33375
33460
  connectOrCreate?: EventCreateOrConnectWithoutTicketsInput
@@ -33392,6 +33477,11 @@ export namespace Prisma {
33392
33477
  set?: $Enums.TicketType
33393
33478
  }
33394
33479
 
33480
+ export type TicketUpdateinstagramsInput = {
33481
+ set?: string[]
33482
+ push?: string | string[]
33483
+ }
33484
+
33395
33485
  export type NullableIntFieldUpdateOperationsInput = {
33396
33486
  set?: number | null
33397
33487
  increment?: number
@@ -34676,6 +34766,9 @@ export namespace Prisma {
34676
34766
  fullName: string
34677
34767
  mail: string
34678
34768
  dni: string
34769
+ phoneNumber: string
34770
+ instagrams?: TicketCreateinstagramsInput | string[]
34771
+ whoToWatch?: string | null
34679
34772
  seat?: number | null
34680
34773
  scanned?: boolean
34681
34774
  scannedAt?: Date | string | null
@@ -34692,6 +34785,9 @@ export namespace Prisma {
34692
34785
  fullName: string
34693
34786
  mail: string
34694
34787
  dni: string
34788
+ phoneNumber: string
34789
+ instagrams?: TicketCreateinstagramsInput | string[]
34790
+ whoToWatch?: string | null
34695
34791
  seat?: number | null
34696
34792
  scanned?: boolean
34697
34793
  scannedAt?: Date | string | null
@@ -35012,6 +35108,9 @@ export namespace Prisma {
35012
35108
  fullName?: StringFilter<"Ticket"> | string
35013
35109
  mail?: StringFilter<"Ticket"> | string
35014
35110
  dni?: StringFilter<"Ticket"> | string
35111
+ phoneNumber?: StringFilter<"Ticket"> | string
35112
+ instagrams?: StringNullableListFilter<"Ticket">
35113
+ whoToWatch?: StringNullableFilter<"Ticket"> | string | null
35015
35114
  seat?: IntNullableFilter<"Ticket"> | number | null
35016
35115
  scanned?: BoolFilter<"Ticket"> | boolean
35017
35116
  scannedAt?: DateTimeNullableFilter<"Ticket"> | Date | string | null
@@ -36803,6 +36902,9 @@ export namespace Prisma {
36803
36902
  fullName: string
36804
36903
  mail: string
36805
36904
  dni: string
36905
+ phoneNumber: string
36906
+ instagrams?: TicketCreateinstagramsInput | string[]
36907
+ whoToWatch?: string | null
36806
36908
  seat?: number | null
36807
36909
  scanned?: boolean
36808
36910
  scannedAt?: Date | string | null
@@ -36818,6 +36920,9 @@ export namespace Prisma {
36818
36920
  fullName: string
36819
36921
  mail: string
36820
36922
  dni: string
36923
+ phoneNumber: string
36924
+ instagrams?: TicketCreateinstagramsInput | string[]
36925
+ whoToWatch?: string | null
36821
36926
  seat?: number | null
36822
36927
  scanned?: boolean
36823
36928
  scannedAt?: Date | string | null
@@ -37984,6 +38089,9 @@ export namespace Prisma {
37984
38089
  fullName: string
37985
38090
  mail: string
37986
38091
  dni: string
38092
+ phoneNumber: string
38093
+ instagrams?: TicketCreateinstagramsInput | string[]
38094
+ whoToWatch?: string | null
37987
38095
  seat?: number | null
37988
38096
  scanned?: boolean
37989
38097
  scannedAt?: Date | string | null
@@ -38000,6 +38108,9 @@ export namespace Prisma {
38000
38108
  fullName: string
38001
38109
  mail: string
38002
38110
  dni: string
38111
+ phoneNumber: string
38112
+ instagrams?: TicketCreateinstagramsInput | string[]
38113
+ whoToWatch?: string | null
38003
38114
  seat?: number | null
38004
38115
  scanned?: boolean
38005
38116
  scannedAt?: Date | string | null
@@ -39528,6 +39639,9 @@ export namespace Prisma {
39528
39639
  fullName: string
39529
39640
  mail: string
39530
39641
  dni: string
39642
+ phoneNumber: string
39643
+ instagrams?: TicketCreateinstagramsInput | string[]
39644
+ whoToWatch?: string | null
39531
39645
  seat?: number | null
39532
39646
  scanned?: boolean
39533
39647
  scannedAt?: Date | string | null
@@ -39696,6 +39810,9 @@ export namespace Prisma {
39696
39810
  fullName?: StringFieldUpdateOperationsInput | string
39697
39811
  mail?: StringFieldUpdateOperationsInput | string
39698
39812
  dni?: StringFieldUpdateOperationsInput | string
39813
+ phoneNumber?: StringFieldUpdateOperationsInput | string
39814
+ instagrams?: TicketUpdateinstagramsInput | string[]
39815
+ whoToWatch?: NullableStringFieldUpdateOperationsInput | string | null
39699
39816
  seat?: NullableIntFieldUpdateOperationsInput | number | null
39700
39817
  scanned?: BoolFieldUpdateOperationsInput | boolean
39701
39818
  scannedAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
@@ -39712,6 +39829,9 @@ export namespace Prisma {
39712
39829
  fullName?: StringFieldUpdateOperationsInput | string
39713
39830
  mail?: StringFieldUpdateOperationsInput | string
39714
39831
  dni?: StringFieldUpdateOperationsInput | string
39832
+ phoneNumber?: StringFieldUpdateOperationsInput | string
39833
+ instagrams?: TicketUpdateinstagramsInput | string[]
39834
+ whoToWatch?: NullableStringFieldUpdateOperationsInput | string | null
39715
39835
  seat?: NullableIntFieldUpdateOperationsInput | number | null
39716
39836
  scanned?: BoolFieldUpdateOperationsInput | boolean
39717
39837
  scannedAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
@@ -39727,6 +39847,9 @@ export namespace Prisma {
39727
39847
  fullName?: StringFieldUpdateOperationsInput | string
39728
39848
  mail?: StringFieldUpdateOperationsInput | string
39729
39849
  dni?: StringFieldUpdateOperationsInput | string
39850
+ phoneNumber?: StringFieldUpdateOperationsInput | string
39851
+ instagrams?: TicketUpdateinstagramsInput | string[]
39852
+ whoToWatch?: NullableStringFieldUpdateOperationsInput | string | null
39730
39853
  seat?: NullableIntFieldUpdateOperationsInput | number | null
39731
39854
  scanned?: BoolFieldUpdateOperationsInput | boolean
39732
39855
  scannedAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
@@ -40506,6 +40629,9 @@ export namespace Prisma {
40506
40629
  fullName: string
40507
40630
  mail: string
40508
40631
  dni: string
40632
+ phoneNumber: string
40633
+ instagrams?: TicketCreateinstagramsInput | string[]
40634
+ whoToWatch?: string | null
40509
40635
  seat?: number | null
40510
40636
  scanned?: boolean
40511
40637
  scannedAt?: Date | string | null
@@ -40557,6 +40683,9 @@ export namespace Prisma {
40557
40683
  fullName?: StringFieldUpdateOperationsInput | string
40558
40684
  mail?: StringFieldUpdateOperationsInput | string
40559
40685
  dni?: StringFieldUpdateOperationsInput | string
40686
+ phoneNumber?: StringFieldUpdateOperationsInput | string
40687
+ instagrams?: TicketUpdateinstagramsInput | string[]
40688
+ whoToWatch?: NullableStringFieldUpdateOperationsInput | string | null
40560
40689
  seat?: NullableIntFieldUpdateOperationsInput | number | null
40561
40690
  scanned?: BoolFieldUpdateOperationsInput | boolean
40562
40691
  scannedAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
@@ -40572,6 +40701,9 @@ export namespace Prisma {
40572
40701
  fullName?: StringFieldUpdateOperationsInput | string
40573
40702
  mail?: StringFieldUpdateOperationsInput | string
40574
40703
  dni?: StringFieldUpdateOperationsInput | string
40704
+ phoneNumber?: StringFieldUpdateOperationsInput | string
40705
+ instagrams?: TicketUpdateinstagramsInput | string[]
40706
+ whoToWatch?: NullableStringFieldUpdateOperationsInput | string | null
40575
40707
  seat?: NullableIntFieldUpdateOperationsInput | number | null
40576
40708
  scanned?: BoolFieldUpdateOperationsInput | boolean
40577
40709
  scannedAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
@@ -40587,6 +40719,9 @@ export namespace Prisma {
40587
40719
  fullName?: StringFieldUpdateOperationsInput | string
40588
40720
  mail?: StringFieldUpdateOperationsInput | string
40589
40721
  dni?: StringFieldUpdateOperationsInput | string
40722
+ phoneNumber?: StringFieldUpdateOperationsInput | string
40723
+ instagrams?: TicketUpdateinstagramsInput | string[]
40724
+ whoToWatch?: NullableStringFieldUpdateOperationsInput | string | null
40590
40725
  seat?: NullableIntFieldUpdateOperationsInput | number | null
40591
40726
  scanned?: BoolFieldUpdateOperationsInput | boolean
40592
40727
  scannedAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
@@ -40926,6 +41061,9 @@ export namespace Prisma {
40926
41061
  fullName: string
40927
41062
  mail: string
40928
41063
  dni: string
41064
+ phoneNumber: string
41065
+ instagrams?: TicketCreateinstagramsInput | string[]
41066
+ whoToWatch?: string | null
40929
41067
  seat?: number | null
40930
41068
  scanned?: boolean
40931
41069
  scannedAt?: Date | string | null
@@ -40940,6 +41078,9 @@ export namespace Prisma {
40940
41078
  fullName?: StringFieldUpdateOperationsInput | string
40941
41079
  mail?: StringFieldUpdateOperationsInput | string
40942
41080
  dni?: StringFieldUpdateOperationsInput | string
41081
+ phoneNumber?: StringFieldUpdateOperationsInput | string
41082
+ instagrams?: TicketUpdateinstagramsInput | string[]
41083
+ whoToWatch?: NullableStringFieldUpdateOperationsInput | string | null
40943
41084
  seat?: NullableIntFieldUpdateOperationsInput | number | null
40944
41085
  scanned?: BoolFieldUpdateOperationsInput | boolean
40945
41086
  scannedAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
@@ -40956,6 +41097,9 @@ export namespace Prisma {
40956
41097
  fullName?: StringFieldUpdateOperationsInput | string
40957
41098
  mail?: StringFieldUpdateOperationsInput | string
40958
41099
  dni?: StringFieldUpdateOperationsInput | string
41100
+ phoneNumber?: StringFieldUpdateOperationsInput | string
41101
+ instagrams?: TicketUpdateinstagramsInput | string[]
41102
+ whoToWatch?: NullableStringFieldUpdateOperationsInput | string | null
40959
41103
  seat?: NullableIntFieldUpdateOperationsInput | number | null
40960
41104
  scanned?: BoolFieldUpdateOperationsInput | boolean
40961
41105
  scannedAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
@@ -40971,6 +41115,9 @@ export namespace Prisma {
40971
41115
  fullName?: StringFieldUpdateOperationsInput | string
40972
41116
  mail?: StringFieldUpdateOperationsInput | string
40973
41117
  dni?: StringFieldUpdateOperationsInput | string
41118
+ phoneNumber?: StringFieldUpdateOperationsInput | string
41119
+ instagrams?: TicketUpdateinstagramsInput | string[]
41120
+ whoToWatch?: NullableStringFieldUpdateOperationsInput | string | null
40974
41121
  seat?: NullableIntFieldUpdateOperationsInput | number | null
40975
41122
  scanned?: BoolFieldUpdateOperationsInput | boolean
40976
41123
  scannedAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null