expo-backend-types 0.36.0-EXPO-325-ExpoBackend-Emision-de-multiples-tickets.5 → 0.36.0-EXPO-323-Enviar-mail-ticket.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.
Files changed (58) hide show
  1. package/dist/src/account/dto/account.dto.d.ts +6 -6
  2. package/dist/src/account/dto/create-account.dto.d.ts +12 -12
  3. package/dist/src/account/dto/get-global-filter.dto.d.ts +1 -1
  4. package/dist/src/account/dto/get-me.dto.d.ts +6 -6
  5. package/dist/src/account/dto/update-global-filter.dto.d.ts +6 -6
  6. package/dist/src/auth/dto/login.dto.d.ts +11 -11
  7. package/dist/src/comment/dto/get-by-profile-comment.dto.d.ts +1 -1
  8. package/dist/src/event/dto/get-by-id-event.dto.d.ts +20 -0
  9. package/dist/src/i18n/es.d.ts +19 -5
  10. package/dist/src/i18n/es.js +19 -5
  11. package/dist/src/i18n/es.js.map +1 -1
  12. package/dist/src/mi-expo/dto/get-me.dto.d.ts +11 -11
  13. package/dist/src/mi-expo/dto/login-with-phone.dto.d.ts +19 -19
  14. package/dist/src/mi-expo/dto/login.dto.d.ts +20 -20
  15. package/dist/src/mi-expo/dto/update-me.dto.d.ts +17 -17
  16. package/dist/src/otp/dto/verify-otp.dto.d.ts +18 -18
  17. package/dist/src/profile/dto/create-profile.dto.d.ts +14 -14
  18. package/dist/src/profile/dto/delete-profile.dto.d.ts +10 -10
  19. package/dist/src/profile/dto/find-all-profile.dto.d.ts +18 -18
  20. package/dist/src/profile/dto/find-by-date-range-profile.dto.d.ts +28 -28
  21. package/dist/src/profile/dto/find-by-id-profile.dto.d.ts +11 -11
  22. package/dist/src/profile/dto/find-by-phone-number.dto.d.ts +10 -10
  23. package/dist/src/profile/dto/find-by-tag-groups-profile.dto.d.ts +18 -18
  24. package/dist/src/profile/dto/find-by-tags-profile.dto.d.ts +18 -18
  25. package/dist/src/profile/dto/find-trash.dto.d.ts +1 -1
  26. package/dist/src/profile/dto/find-with-active-chat.dto.d.ts +18 -18
  27. package/dist/src/profile/dto/profile.dto.d.ts +5 -5
  28. package/dist/src/profile/dto/update-profile.dto.d.ts +16 -16
  29. package/dist/src/schema/profile.schema.d.ts +5 -5
  30. package/dist/src/tag/dto/massive-allocation.dto.d.ts +18 -18
  31. package/dist/src/tag/dto/massive-deallocation.dto.d.ts +18 -18
  32. package/dist/src/ticket/constants.d.ts +95 -14
  33. package/dist/src/ticket/constants.js +254 -222
  34. package/dist/src/ticket/dto/create-ticket.dto.d.ts +25 -1
  35. package/dist/src/ticket/dto/create-ticket.dto.js +2 -0
  36. package/dist/src/ticket/dto/delete-ticket.dto.d.ts +12 -0
  37. package/dist/src/ticket/dto/find-all-tickets.dto.d.ts +20 -0
  38. package/dist/src/ticket/dto/find-by-event-ticket.dto.d.ts +46 -26
  39. package/dist/src/ticket/dto/find-by-id-ticket.dto.d.ts +46 -26
  40. package/dist/src/ticket/dto/find-by-mail-ticket.dto.d.ts +46 -26
  41. package/dist/src/ticket/dto/find-by-profile-id-ticket.dto.d.ts +20 -0
  42. package/dist/src/ticket/dto/find-ticket.dto.d.ts +12 -0
  43. package/dist/src/ticket/dto/send-email.dto.d.ts +18 -0
  44. package/dist/src/ticket/dto/send-email.dto.js +15 -0
  45. package/dist/src/ticket/dto/ticket.dto.d.ts +12 -0
  46. package/dist/src/ticket/dto/ticket.dto.js +2 -0
  47. package/dist/src/ticket/dto/update-ticket.dto.d.ts +12 -0
  48. package/dist/types/prisma-schema/edge.js +7 -5
  49. package/dist/types/prisma-schema/index-browser.js +4 -2
  50. package/dist/types/prisma-schema/index.d.ts +193 -65
  51. package/dist/types/prisma-schema/index.js +7 -5
  52. package/dist/types/prisma-schema/package.json +1 -1
  53. package/dist/types/prisma-schema/schema.prisma +5 -1
  54. package/dist/types/prisma-schema/wasm.js +4 -2
  55. package/dist/types/schema.d.ts +100 -116
  56. package/package.json +6 -6
  57. package/dist/src/ticket/dto/create-many-ticket.dto.d.ts +0 -688
  58. package/dist/src/ticket/dto/create-many-ticket.dto.js +0 -57
@@ -92,8 +92,8 @@ export namespace $Enums {
92
92
  USER: 'USER',
93
93
  ADMIN: 'ADMIN',
94
94
  FORM: 'FORM',
95
- TICKETS: 'TICKETS',
96
- MI_EXPO: 'MI_EXPO'
95
+ MI_EXPO: 'MI_EXPO',
96
+ TICKETS: 'TICKETS'
97
97
  };
98
98
 
99
99
  export type Role = (typeof Role)[keyof typeof Role]
@@ -15409,10 +15409,20 @@ export namespace Prisma {
15409
15409
 
15410
15410
  export type AggregateTicket = {
15411
15411
  _count: TicketCountAggregateOutputType | null
15412
+ _avg: TicketAvgAggregateOutputType | null
15413
+ _sum: TicketSumAggregateOutputType | null
15412
15414
  _min: TicketMinAggregateOutputType | null
15413
15415
  _max: TicketMaxAggregateOutputType | null
15414
15416
  }
15415
15417
 
15418
+ export type TicketAvgAggregateOutputType = {
15419
+ seat: number | null
15420
+ }
15421
+
15422
+ export type TicketSumAggregateOutputType = {
15423
+ seat: number | null
15424
+ }
15425
+
15416
15426
  export type TicketMinAggregateOutputType = {
15417
15427
  id: string | null
15418
15428
  eventId: string | null
@@ -15420,6 +15430,8 @@ export namespace Prisma {
15420
15430
  status: $Enums.TicketStatus | null
15421
15431
  fullName: string | null
15422
15432
  mail: string | null
15433
+ dni: string | null
15434
+ seat: number | null
15423
15435
  profileId: string | null
15424
15436
  created_at: Date | null
15425
15437
  updated_at: Date | null
@@ -15432,6 +15444,8 @@ export namespace Prisma {
15432
15444
  status: $Enums.TicketStatus | null
15433
15445
  fullName: string | null
15434
15446
  mail: string | null
15447
+ dni: string | null
15448
+ seat: number | null
15435
15449
  profileId: string | null
15436
15450
  created_at: Date | null
15437
15451
  updated_at: Date | null
@@ -15444,6 +15458,8 @@ export namespace Prisma {
15444
15458
  status: number
15445
15459
  fullName: number
15446
15460
  mail: number
15461
+ dni: number
15462
+ seat: number
15447
15463
  profileId: number
15448
15464
  created_at: number
15449
15465
  updated_at: number
@@ -15451,6 +15467,14 @@ export namespace Prisma {
15451
15467
  }
15452
15468
 
15453
15469
 
15470
+ export type TicketAvgAggregateInputType = {
15471
+ seat?: true
15472
+ }
15473
+
15474
+ export type TicketSumAggregateInputType = {
15475
+ seat?: true
15476
+ }
15477
+
15454
15478
  export type TicketMinAggregateInputType = {
15455
15479
  id?: true
15456
15480
  eventId?: true
@@ -15458,6 +15482,8 @@ export namespace Prisma {
15458
15482
  status?: true
15459
15483
  fullName?: true
15460
15484
  mail?: true
15485
+ dni?: true
15486
+ seat?: true
15461
15487
  profileId?: true
15462
15488
  created_at?: true
15463
15489
  updated_at?: true
@@ -15470,6 +15496,8 @@ export namespace Prisma {
15470
15496
  status?: true
15471
15497
  fullName?: true
15472
15498
  mail?: true
15499
+ dni?: true
15500
+ seat?: true
15473
15501
  profileId?: true
15474
15502
  created_at?: true
15475
15503
  updated_at?: true
@@ -15482,6 +15510,8 @@ export namespace Prisma {
15482
15510
  status?: true
15483
15511
  fullName?: true
15484
15512
  mail?: true
15513
+ dni?: true
15514
+ seat?: true
15485
15515
  profileId?: true
15486
15516
  created_at?: true
15487
15517
  updated_at?: true
@@ -15523,6 +15553,18 @@ export namespace Prisma {
15523
15553
  * Count returned Tickets
15524
15554
  **/
15525
15555
  _count?: true | TicketCountAggregateInputType
15556
+ /**
15557
+ * {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
15558
+ *
15559
+ * Select which fields to average
15560
+ **/
15561
+ _avg?: TicketAvgAggregateInputType
15562
+ /**
15563
+ * {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
15564
+ *
15565
+ * Select which fields to sum
15566
+ **/
15567
+ _sum?: TicketSumAggregateInputType
15526
15568
  /**
15527
15569
  * {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
15528
15570
  *
@@ -15556,6 +15598,8 @@ export namespace Prisma {
15556
15598
  take?: number
15557
15599
  skip?: number
15558
15600
  _count?: TicketCountAggregateInputType | true
15601
+ _avg?: TicketAvgAggregateInputType
15602
+ _sum?: TicketSumAggregateInputType
15559
15603
  _min?: TicketMinAggregateInputType
15560
15604
  _max?: TicketMaxAggregateInputType
15561
15605
  }
@@ -15567,10 +15611,14 @@ export namespace Prisma {
15567
15611
  status: $Enums.TicketStatus
15568
15612
  fullName: string
15569
15613
  mail: string
15614
+ dni: string
15615
+ seat: number | null
15570
15616
  profileId: string | null
15571
15617
  created_at: Date
15572
15618
  updated_at: Date
15573
15619
  _count: TicketCountAggregateOutputType | null
15620
+ _avg: TicketAvgAggregateOutputType | null
15621
+ _sum: TicketSumAggregateOutputType | null
15574
15622
  _min: TicketMinAggregateOutputType | null
15575
15623
  _max: TicketMaxAggregateOutputType | null
15576
15624
  }
@@ -15596,6 +15644,8 @@ export namespace Prisma {
15596
15644
  status?: boolean
15597
15645
  fullName?: boolean
15598
15646
  mail?: boolean
15647
+ dni?: boolean
15648
+ seat?: boolean
15599
15649
  profileId?: boolean
15600
15650
  created_at?: boolean
15601
15651
  updated_at?: boolean
@@ -15610,6 +15660,8 @@ export namespace Prisma {
15610
15660
  status?: boolean
15611
15661
  fullName?: boolean
15612
15662
  mail?: boolean
15663
+ dni?: boolean
15664
+ seat?: boolean
15613
15665
  profileId?: boolean
15614
15666
  created_at?: boolean
15615
15667
  updated_at?: boolean
@@ -15624,6 +15676,8 @@ export namespace Prisma {
15624
15676
  status?: boolean
15625
15677
  fullName?: boolean
15626
15678
  mail?: boolean
15679
+ dni?: boolean
15680
+ seat?: boolean
15627
15681
  profileId?: boolean
15628
15682
  created_at?: boolean
15629
15683
  updated_at?: boolean
@@ -15638,12 +15692,14 @@ export namespace Prisma {
15638
15692
  status?: boolean
15639
15693
  fullName?: boolean
15640
15694
  mail?: boolean
15695
+ dni?: boolean
15696
+ seat?: boolean
15641
15697
  profileId?: boolean
15642
15698
  created_at?: boolean
15643
15699
  updated_at?: boolean
15644
15700
  }
15645
15701
 
15646
- export type TicketOmit<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetOmit<"id" | "eventId" | "type" | "status" | "fullName" | "mail" | "profileId" | "created_at" | "updated_at", ExtArgs["result"]["ticket"]>
15702
+ export type TicketOmit<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetOmit<"id" | "eventId" | "type" | "status" | "fullName" | "mail" | "dni" | "seat" | "profileId" | "created_at" | "updated_at", ExtArgs["result"]["ticket"]>
15647
15703
  export type TicketInclude<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
15648
15704
  event?: boolean | EventDefaultArgs<ExtArgs>
15649
15705
  profile?: boolean | Ticket$profileArgs<ExtArgs>
@@ -15670,6 +15726,8 @@ export namespace Prisma {
15670
15726
  status: $Enums.TicketStatus
15671
15727
  fullName: string
15672
15728
  mail: string
15729
+ dni: string
15730
+ seat: number | null
15673
15731
  profileId: string | null
15674
15732
  created_at: Date
15675
15733
  updated_at: Date
@@ -16104,6 +16162,8 @@ export namespace Prisma {
16104
16162
  readonly status: FieldRef<"Ticket", 'TicketStatus'>
16105
16163
  readonly fullName: FieldRef<"Ticket", 'String'>
16106
16164
  readonly mail: FieldRef<"Ticket", 'String'>
16165
+ readonly dni: FieldRef<"Ticket", 'String'>
16166
+ readonly seat: FieldRef<"Ticket", 'Int'>
16107
16167
  readonly profileId: FieldRef<"Ticket", 'String'>
16108
16168
  readonly created_at: FieldRef<"Ticket", 'DateTime'>
16109
16169
  readonly updated_at: FieldRef<"Ticket", 'DateTime'>
@@ -18816,6 +18876,8 @@ export namespace Prisma {
18816
18876
  status: 'status',
18817
18877
  fullName: 'fullName',
18818
18878
  mail: 'mail',
18879
+ dni: 'dni',
18880
+ seat: 'seat',
18819
18881
  profileId: 'profileId',
18820
18882
  created_at: 'created_at',
18821
18883
  updated_at: 'updated_at'
@@ -19976,6 +20038,8 @@ export namespace Prisma {
19976
20038
  status?: EnumTicketStatusFilter<"Ticket"> | $Enums.TicketStatus
19977
20039
  fullName?: StringFilter<"Ticket"> | string
19978
20040
  mail?: StringFilter<"Ticket"> | string
20041
+ dni?: StringFilter<"Ticket"> | string
20042
+ seat?: IntNullableFilter<"Ticket"> | number | null
19979
20043
  profileId?: StringNullableFilter<"Ticket"> | string | null
19980
20044
  created_at?: DateTimeFilter<"Ticket"> | Date | string
19981
20045
  updated_at?: DateTimeFilter<"Ticket"> | Date | string
@@ -19990,6 +20054,8 @@ export namespace Prisma {
19990
20054
  status?: SortOrder
19991
20055
  fullName?: SortOrder
19992
20056
  mail?: SortOrder
20057
+ dni?: SortOrder
20058
+ seat?: SortOrderInput | SortOrder
19993
20059
  profileId?: SortOrderInput | SortOrder
19994
20060
  created_at?: SortOrder
19995
20061
  updated_at?: SortOrder
@@ -20007,6 +20073,8 @@ export namespace Prisma {
20007
20073
  status?: EnumTicketStatusFilter<"Ticket"> | $Enums.TicketStatus
20008
20074
  fullName?: StringFilter<"Ticket"> | string
20009
20075
  mail?: StringFilter<"Ticket"> | string
20076
+ dni?: StringFilter<"Ticket"> | string
20077
+ seat?: IntNullableFilter<"Ticket"> | number | null
20010
20078
  profileId?: StringNullableFilter<"Ticket"> | string | null
20011
20079
  created_at?: DateTimeFilter<"Ticket"> | Date | string
20012
20080
  updated_at?: DateTimeFilter<"Ticket"> | Date | string
@@ -20021,12 +20089,16 @@ export namespace Prisma {
20021
20089
  status?: SortOrder
20022
20090
  fullName?: SortOrder
20023
20091
  mail?: SortOrder
20092
+ dni?: SortOrder
20093
+ seat?: SortOrderInput | SortOrder
20024
20094
  profileId?: SortOrderInput | SortOrder
20025
20095
  created_at?: SortOrder
20026
20096
  updated_at?: SortOrder
20027
20097
  _count?: TicketCountOrderByAggregateInput
20098
+ _avg?: TicketAvgOrderByAggregateInput
20028
20099
  _max?: TicketMaxOrderByAggregateInput
20029
20100
  _min?: TicketMinOrderByAggregateInput
20101
+ _sum?: TicketSumOrderByAggregateInput
20030
20102
  }
20031
20103
 
20032
20104
  export type TicketScalarWhereWithAggregatesInput = {
@@ -20039,6 +20111,8 @@ export namespace Prisma {
20039
20111
  status?: EnumTicketStatusWithAggregatesFilter<"Ticket"> | $Enums.TicketStatus
20040
20112
  fullName?: StringWithAggregatesFilter<"Ticket"> | string
20041
20113
  mail?: StringWithAggregatesFilter<"Ticket"> | string
20114
+ dni?: StringWithAggregatesFilter<"Ticket"> | string
20115
+ seat?: IntNullableWithAggregatesFilter<"Ticket"> | number | null
20042
20116
  profileId?: StringNullableWithAggregatesFilter<"Ticket"> | string | null
20043
20117
  created_at?: DateTimeWithAggregatesFilter<"Ticket"> | Date | string
20044
20118
  updated_at?: DateTimeWithAggregatesFilter<"Ticket"> | Date | string
@@ -21156,6 +21230,8 @@ export namespace Prisma {
21156
21230
  status: $Enums.TicketStatus
21157
21231
  fullName: string
21158
21232
  mail: string
21233
+ dni: string
21234
+ seat?: number | null
21159
21235
  created_at?: Date | string
21160
21236
  updated_at?: Date | string
21161
21237
  event: EventCreateNestedOneWithoutTicketsInput
@@ -21169,6 +21245,8 @@ export namespace Prisma {
21169
21245
  status: $Enums.TicketStatus
21170
21246
  fullName: string
21171
21247
  mail: string
21248
+ dni: string
21249
+ seat?: number | null
21172
21250
  profileId?: string | null
21173
21251
  created_at?: Date | string
21174
21252
  updated_at?: Date | string
@@ -21180,6 +21258,8 @@ export namespace Prisma {
21180
21258
  status?: EnumTicketStatusFieldUpdateOperationsInput | $Enums.TicketStatus
21181
21259
  fullName?: StringFieldUpdateOperationsInput | string
21182
21260
  mail?: StringFieldUpdateOperationsInput | string
21261
+ dni?: StringFieldUpdateOperationsInput | string
21262
+ seat?: NullableIntFieldUpdateOperationsInput | number | null
21183
21263
  created_at?: DateTimeFieldUpdateOperationsInput | Date | string
21184
21264
  updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
21185
21265
  event?: EventUpdateOneRequiredWithoutTicketsNestedInput
@@ -21193,6 +21273,8 @@ export namespace Prisma {
21193
21273
  status?: EnumTicketStatusFieldUpdateOperationsInput | $Enums.TicketStatus
21194
21274
  fullName?: StringFieldUpdateOperationsInput | string
21195
21275
  mail?: StringFieldUpdateOperationsInput | string
21276
+ dni?: StringFieldUpdateOperationsInput | string
21277
+ seat?: NullableIntFieldUpdateOperationsInput | number | null
21196
21278
  profileId?: NullableStringFieldUpdateOperationsInput | string | null
21197
21279
  created_at?: DateTimeFieldUpdateOperationsInput | Date | string
21198
21280
  updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
@@ -21205,6 +21287,8 @@ export namespace Prisma {
21205
21287
  status: $Enums.TicketStatus
21206
21288
  fullName: string
21207
21289
  mail: string
21290
+ dni: string
21291
+ seat?: number | null
21208
21292
  profileId?: string | null
21209
21293
  created_at?: Date | string
21210
21294
  updated_at?: Date | string
@@ -21216,6 +21300,8 @@ export namespace Prisma {
21216
21300
  status?: EnumTicketStatusFieldUpdateOperationsInput | $Enums.TicketStatus
21217
21301
  fullName?: StringFieldUpdateOperationsInput | string
21218
21302
  mail?: StringFieldUpdateOperationsInput | string
21303
+ dni?: StringFieldUpdateOperationsInput | string
21304
+ seat?: NullableIntFieldUpdateOperationsInput | number | null
21219
21305
  created_at?: DateTimeFieldUpdateOperationsInput | Date | string
21220
21306
  updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
21221
21307
  }
@@ -21227,6 +21313,8 @@ export namespace Prisma {
21227
21313
  status?: EnumTicketStatusFieldUpdateOperationsInput | $Enums.TicketStatus
21228
21314
  fullName?: StringFieldUpdateOperationsInput | string
21229
21315
  mail?: StringFieldUpdateOperationsInput | string
21316
+ dni?: StringFieldUpdateOperationsInput | string
21317
+ seat?: NullableIntFieldUpdateOperationsInput | number | null
21230
21318
  profileId?: NullableStringFieldUpdateOperationsInput | string | null
21231
21319
  created_at?: DateTimeFieldUpdateOperationsInput | Date | string
21232
21320
  updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
@@ -22193,6 +22281,17 @@ export namespace Prisma {
22193
22281
  not?: NestedEnumTicketStatusFilter<$PrismaModel> | $Enums.TicketStatus
22194
22282
  }
22195
22283
 
22284
+ export type IntNullableFilter<$PrismaModel = never> = {
22285
+ equals?: number | IntFieldRefInput<$PrismaModel> | null
22286
+ in?: number[] | ListIntFieldRefInput<$PrismaModel> | null
22287
+ notIn?: number[] | ListIntFieldRefInput<$PrismaModel> | null
22288
+ lt?: number | IntFieldRefInput<$PrismaModel>
22289
+ lte?: number | IntFieldRefInput<$PrismaModel>
22290
+ gt?: number | IntFieldRefInput<$PrismaModel>
22291
+ gte?: number | IntFieldRefInput<$PrismaModel>
22292
+ not?: NestedIntNullableFilter<$PrismaModel> | number | null
22293
+ }
22294
+
22196
22295
  export type EventScalarRelationFilter = {
22197
22296
  is?: EventWhereInput
22198
22297
  isNot?: EventWhereInput
@@ -22210,11 +22309,17 @@ export namespace Prisma {
22210
22309
  status?: SortOrder
22211
22310
  fullName?: SortOrder
22212
22311
  mail?: SortOrder
22312
+ dni?: SortOrder
22313
+ seat?: SortOrder
22213
22314
  profileId?: SortOrder
22214
22315
  created_at?: SortOrder
22215
22316
  updated_at?: SortOrder
22216
22317
  }
22217
22318
 
22319
+ export type TicketAvgOrderByAggregateInput = {
22320
+ seat?: SortOrder
22321
+ }
22322
+
22218
22323
  export type TicketMaxOrderByAggregateInput = {
22219
22324
  id?: SortOrder
22220
22325
  eventId?: SortOrder
@@ -22222,6 +22327,8 @@ export namespace Prisma {
22222
22327
  status?: SortOrder
22223
22328
  fullName?: SortOrder
22224
22329
  mail?: SortOrder
22330
+ dni?: SortOrder
22331
+ seat?: SortOrder
22225
22332
  profileId?: SortOrder
22226
22333
  created_at?: SortOrder
22227
22334
  updated_at?: SortOrder
@@ -22234,11 +22341,17 @@ export namespace Prisma {
22234
22341
  status?: SortOrder
22235
22342
  fullName?: SortOrder
22236
22343
  mail?: SortOrder
22344
+ dni?: SortOrder
22345
+ seat?: SortOrder
22237
22346
  profileId?: SortOrder
22238
22347
  created_at?: SortOrder
22239
22348
  updated_at?: SortOrder
22240
22349
  }
22241
22350
 
22351
+ export type TicketSumOrderByAggregateInput = {
22352
+ seat?: SortOrder
22353
+ }
22354
+
22242
22355
  export type EnumTicketTypeWithAggregatesFilter<$PrismaModel = never> = {
22243
22356
  equals?: $Enums.TicketType | EnumTicketTypeFieldRefInput<$PrismaModel>
22244
22357
  in?: $Enums.TicketType[] | ListEnumTicketTypeFieldRefInput<$PrismaModel>
@@ -22259,6 +22372,22 @@ export namespace Prisma {
22259
22372
  _max?: NestedEnumTicketStatusFilter<$PrismaModel>
22260
22373
  }
22261
22374
 
22375
+ export type IntNullableWithAggregatesFilter<$PrismaModel = never> = {
22376
+ equals?: number | IntFieldRefInput<$PrismaModel> | null
22377
+ in?: number[] | ListIntFieldRefInput<$PrismaModel> | null
22378
+ notIn?: number[] | ListIntFieldRefInput<$PrismaModel> | null
22379
+ lt?: number | IntFieldRefInput<$PrismaModel>
22380
+ lte?: number | IntFieldRefInput<$PrismaModel>
22381
+ gt?: number | IntFieldRefInput<$PrismaModel>
22382
+ gte?: number | IntFieldRefInput<$PrismaModel>
22383
+ not?: NestedIntNullableWithAggregatesFilter<$PrismaModel> | number | null
22384
+ _count?: NestedIntNullableFilter<$PrismaModel>
22385
+ _avg?: NestedFloatNullableFilter<$PrismaModel>
22386
+ _sum?: NestedIntNullableFilter<$PrismaModel>
22387
+ _min?: NestedIntNullableFilter<$PrismaModel>
22388
+ _max?: NestedIntNullableFilter<$PrismaModel>
22389
+ }
22390
+
22262
22391
  export type EnumTemplateStatusFilter<$PrismaModel = never> = {
22263
22392
  equals?: $Enums.TemplateStatus | EnumTemplateStatusFieldRefInput<$PrismaModel>
22264
22393
  in?: $Enums.TemplateStatus[] | ListEnumTemplateStatusFieldRefInput<$PrismaModel>
@@ -22311,17 +22440,6 @@ export namespace Prisma {
22311
22440
  _max?: NestedEnumTemplateCategoryFilter<$PrismaModel>
22312
22441
  }
22313
22442
 
22314
- export type IntNullableFilter<$PrismaModel = never> = {
22315
- equals?: number | IntFieldRefInput<$PrismaModel> | null
22316
- in?: number[] | ListIntFieldRefInput<$PrismaModel> | null
22317
- notIn?: number[] | ListIntFieldRefInput<$PrismaModel> | null
22318
- lt?: number | IntFieldRefInput<$PrismaModel>
22319
- lte?: number | IntFieldRefInput<$PrismaModel>
22320
- gt?: number | IntFieldRefInput<$PrismaModel>
22321
- gte?: number | IntFieldRefInput<$PrismaModel>
22322
- not?: NestedIntNullableFilter<$PrismaModel> | number | null
22323
- }
22324
-
22325
22443
  export type FloatNullableFilter<$PrismaModel = never> = {
22326
22444
  equals?: number | FloatFieldRefInput<$PrismaModel> | null
22327
22445
  in?: number[] | ListFloatFieldRefInput<$PrismaModel> | null
@@ -22373,22 +22491,6 @@ export namespace Prisma {
22373
22491
  price?: SortOrder
22374
22492
  }
22375
22493
 
22376
- export type IntNullableWithAggregatesFilter<$PrismaModel = never> = {
22377
- equals?: number | IntFieldRefInput<$PrismaModel> | null
22378
- in?: number[] | ListIntFieldRefInput<$PrismaModel> | null
22379
- notIn?: number[] | ListIntFieldRefInput<$PrismaModel> | null
22380
- lt?: number | IntFieldRefInput<$PrismaModel>
22381
- lte?: number | IntFieldRefInput<$PrismaModel>
22382
- gt?: number | IntFieldRefInput<$PrismaModel>
22383
- gte?: number | IntFieldRefInput<$PrismaModel>
22384
- not?: NestedIntNullableWithAggregatesFilter<$PrismaModel> | number | null
22385
- _count?: NestedIntNullableFilter<$PrismaModel>
22386
- _avg?: NestedFloatNullableFilter<$PrismaModel>
22387
- _sum?: NestedIntNullableFilter<$PrismaModel>
22388
- _min?: NestedIntNullableFilter<$PrismaModel>
22389
- _max?: NestedIntNullableFilter<$PrismaModel>
22390
- }
22391
-
22392
22494
  export type FloatNullableWithAggregatesFilter<$PrismaModel = never> = {
22393
22495
  equals?: number | FloatFieldRefInput<$PrismaModel> | null
22394
22496
  in?: number[] | ListFloatFieldRefInput<$PrismaModel> | null
@@ -23583,6 +23685,14 @@ export namespace Prisma {
23583
23685
  set?: $Enums.TicketStatus
23584
23686
  }
23585
23687
 
23688
+ export type NullableIntFieldUpdateOperationsInput = {
23689
+ set?: number | null
23690
+ increment?: number
23691
+ decrement?: number
23692
+ multiply?: number
23693
+ divide?: number
23694
+ }
23695
+
23586
23696
  export type EventUpdateOneRequiredWithoutTicketsNestedInput = {
23587
23697
  create?: XOR<EventCreateWithoutTicketsInput, EventUncheckedCreateWithoutTicketsInput>
23588
23698
  connectOrCreate?: EventCreateOrConnectWithoutTicketsInput
@@ -23615,14 +23725,6 @@ export namespace Prisma {
23615
23725
  connect?: EventWhereUniqueInput
23616
23726
  }
23617
23727
 
23618
- export type NullableIntFieldUpdateOperationsInput = {
23619
- set?: number | null
23620
- increment?: number
23621
- decrement?: number
23622
- multiply?: number
23623
- divide?: number
23624
- }
23625
-
23626
23728
  export type NullableFloatFieldUpdateOperationsInput = {
23627
23729
  set?: number | null
23628
23730
  increment?: number
@@ -23937,6 +24039,33 @@ export namespace Prisma {
23937
24039
  _max?: NestedEnumTicketStatusFilter<$PrismaModel>
23938
24040
  }
23939
24041
 
24042
+ export type NestedIntNullableWithAggregatesFilter<$PrismaModel = never> = {
24043
+ equals?: number | IntFieldRefInput<$PrismaModel> | null
24044
+ in?: number[] | ListIntFieldRefInput<$PrismaModel> | null
24045
+ notIn?: number[] | ListIntFieldRefInput<$PrismaModel> | null
24046
+ lt?: number | IntFieldRefInput<$PrismaModel>
24047
+ lte?: number | IntFieldRefInput<$PrismaModel>
24048
+ gt?: number | IntFieldRefInput<$PrismaModel>
24049
+ gte?: number | IntFieldRefInput<$PrismaModel>
24050
+ not?: NestedIntNullableWithAggregatesFilter<$PrismaModel> | number | null
24051
+ _count?: NestedIntNullableFilter<$PrismaModel>
24052
+ _avg?: NestedFloatNullableFilter<$PrismaModel>
24053
+ _sum?: NestedIntNullableFilter<$PrismaModel>
24054
+ _min?: NestedIntNullableFilter<$PrismaModel>
24055
+ _max?: NestedIntNullableFilter<$PrismaModel>
24056
+ }
24057
+
24058
+ export type NestedFloatNullableFilter<$PrismaModel = never> = {
24059
+ equals?: number | FloatFieldRefInput<$PrismaModel> | null
24060
+ in?: number[] | ListFloatFieldRefInput<$PrismaModel> | null
24061
+ notIn?: number[] | ListFloatFieldRefInput<$PrismaModel> | null
24062
+ lt?: number | FloatFieldRefInput<$PrismaModel>
24063
+ lte?: number | FloatFieldRefInput<$PrismaModel>
24064
+ gt?: number | FloatFieldRefInput<$PrismaModel>
24065
+ gte?: number | FloatFieldRefInput<$PrismaModel>
24066
+ not?: NestedFloatNullableFilter<$PrismaModel> | number | null
24067
+ }
24068
+
23940
24069
  export type NestedEnumTemplateStatusFilter<$PrismaModel = never> = {
23941
24070
  equals?: $Enums.TemplateStatus | EnumTemplateStatusFieldRefInput<$PrismaModel>
23942
24071
  in?: $Enums.TemplateStatus[] | ListEnumTemplateStatusFieldRefInput<$PrismaModel>
@@ -23971,33 +24100,6 @@ export namespace Prisma {
23971
24100
  _max?: NestedEnumTemplateCategoryFilter<$PrismaModel>
23972
24101
  }
23973
24102
 
23974
- export type NestedFloatNullableFilter<$PrismaModel = never> = {
23975
- equals?: number | FloatFieldRefInput<$PrismaModel> | null
23976
- in?: number[] | ListFloatFieldRefInput<$PrismaModel> | null
23977
- notIn?: number[] | ListFloatFieldRefInput<$PrismaModel> | null
23978
- lt?: number | FloatFieldRefInput<$PrismaModel>
23979
- lte?: number | FloatFieldRefInput<$PrismaModel>
23980
- gt?: number | FloatFieldRefInput<$PrismaModel>
23981
- gte?: number | FloatFieldRefInput<$PrismaModel>
23982
- not?: NestedFloatNullableFilter<$PrismaModel> | number | null
23983
- }
23984
-
23985
- export type NestedIntNullableWithAggregatesFilter<$PrismaModel = never> = {
23986
- equals?: number | IntFieldRefInput<$PrismaModel> | null
23987
- in?: number[] | ListIntFieldRefInput<$PrismaModel> | null
23988
- notIn?: number[] | ListIntFieldRefInput<$PrismaModel> | null
23989
- lt?: number | IntFieldRefInput<$PrismaModel>
23990
- lte?: number | IntFieldRefInput<$PrismaModel>
23991
- gt?: number | IntFieldRefInput<$PrismaModel>
23992
- gte?: number | IntFieldRefInput<$PrismaModel>
23993
- not?: NestedIntNullableWithAggregatesFilter<$PrismaModel> | number | null
23994
- _count?: NestedIntNullableFilter<$PrismaModel>
23995
- _avg?: NestedFloatNullableFilter<$PrismaModel>
23996
- _sum?: NestedIntNullableFilter<$PrismaModel>
23997
- _min?: NestedIntNullableFilter<$PrismaModel>
23998
- _max?: NestedIntNullableFilter<$PrismaModel>
23999
- }
24000
-
24001
24103
  export type NestedFloatNullableWithAggregatesFilter<$PrismaModel = never> = {
24002
24104
  equals?: number | FloatFieldRefInput<$PrismaModel> | null
24003
24105
  in?: number[] | ListFloatFieldRefInput<$PrismaModel> | null
@@ -24425,6 +24527,8 @@ export namespace Prisma {
24425
24527
  status: $Enums.TicketStatus
24426
24528
  fullName: string
24427
24529
  mail: string
24530
+ dni: string
24531
+ seat?: number | null
24428
24532
  created_at?: Date | string
24429
24533
  updated_at?: Date | string
24430
24534
  event: EventCreateNestedOneWithoutTicketsInput
@@ -24437,6 +24541,8 @@ export namespace Prisma {
24437
24541
  status: $Enums.TicketStatus
24438
24542
  fullName: string
24439
24543
  mail: string
24544
+ dni: string
24545
+ seat?: number | null
24440
24546
  created_at?: Date | string
24441
24547
  updated_at?: Date | string
24442
24548
  }
@@ -24636,6 +24742,8 @@ export namespace Prisma {
24636
24742
  status?: EnumTicketStatusFilter<"Ticket"> | $Enums.TicketStatus
24637
24743
  fullName?: StringFilter<"Ticket"> | string
24638
24744
  mail?: StringFilter<"Ticket"> | string
24745
+ dni?: StringFilter<"Ticket"> | string
24746
+ seat?: IntNullableFilter<"Ticket"> | number | null
24639
24747
  profileId?: StringNullableFilter<"Ticket"> | string | null
24640
24748
  created_at?: DateTimeFilter<"Ticket"> | Date | string
24641
24749
  updated_at?: DateTimeFilter<"Ticket"> | Date | string
@@ -25970,6 +26078,8 @@ export namespace Prisma {
25970
26078
  status: $Enums.TicketStatus
25971
26079
  fullName: string
25972
26080
  mail: string
26081
+ dni: string
26082
+ seat?: number | null
25973
26083
  created_at?: Date | string
25974
26084
  updated_at?: Date | string
25975
26085
  profile?: ProfileCreateNestedOneWithoutTicketInput
@@ -25981,6 +26091,8 @@ export namespace Prisma {
25981
26091
  status: $Enums.TicketStatus
25982
26092
  fullName: string
25983
26093
  mail: string
26094
+ dni: string
26095
+ seat?: number | null
25984
26096
  profileId?: string | null
25985
26097
  created_at?: Date | string
25986
26098
  updated_at?: Date | string
@@ -27070,6 +27182,8 @@ export namespace Prisma {
27070
27182
  status: $Enums.TicketStatus
27071
27183
  fullName: string
27072
27184
  mail: string
27185
+ dni: string
27186
+ seat?: number | null
27073
27187
  created_at?: Date | string
27074
27188
  updated_at?: Date | string
27075
27189
  }
@@ -27204,6 +27318,8 @@ export namespace Prisma {
27204
27318
  status?: EnumTicketStatusFieldUpdateOperationsInput | $Enums.TicketStatus
27205
27319
  fullName?: StringFieldUpdateOperationsInput | string
27206
27320
  mail?: StringFieldUpdateOperationsInput | string
27321
+ dni?: StringFieldUpdateOperationsInput | string
27322
+ seat?: NullableIntFieldUpdateOperationsInput | number | null
27207
27323
  created_at?: DateTimeFieldUpdateOperationsInput | Date | string
27208
27324
  updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
27209
27325
  event?: EventUpdateOneRequiredWithoutTicketsNestedInput
@@ -27216,6 +27332,8 @@ export namespace Prisma {
27216
27332
  status?: EnumTicketStatusFieldUpdateOperationsInput | $Enums.TicketStatus
27217
27333
  fullName?: StringFieldUpdateOperationsInput | string
27218
27334
  mail?: StringFieldUpdateOperationsInput | string
27335
+ dni?: StringFieldUpdateOperationsInput | string
27336
+ seat?: NullableIntFieldUpdateOperationsInput | number | null
27219
27337
  created_at?: DateTimeFieldUpdateOperationsInput | Date | string
27220
27338
  updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
27221
27339
  }
@@ -27227,6 +27345,8 @@ export namespace Prisma {
27227
27345
  status?: EnumTicketStatusFieldUpdateOperationsInput | $Enums.TicketStatus
27228
27346
  fullName?: StringFieldUpdateOperationsInput | string
27229
27347
  mail?: StringFieldUpdateOperationsInput | string
27348
+ dni?: StringFieldUpdateOperationsInput | string
27349
+ seat?: NullableIntFieldUpdateOperationsInput | number | null
27230
27350
  created_at?: DateTimeFieldUpdateOperationsInput | Date | string
27231
27351
  updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
27232
27352
  }
@@ -27730,6 +27850,8 @@ export namespace Prisma {
27730
27850
  status: $Enums.TicketStatus
27731
27851
  fullName: string
27732
27852
  mail: string
27853
+ dni: string
27854
+ seat?: number | null
27733
27855
  profileId?: string | null
27734
27856
  created_at?: Date | string
27735
27857
  updated_at?: Date | string
@@ -27765,6 +27887,8 @@ export namespace Prisma {
27765
27887
  status?: EnumTicketStatusFieldUpdateOperationsInput | $Enums.TicketStatus
27766
27888
  fullName?: StringFieldUpdateOperationsInput | string
27767
27889
  mail?: StringFieldUpdateOperationsInput | string
27890
+ dni?: StringFieldUpdateOperationsInput | string
27891
+ seat?: NullableIntFieldUpdateOperationsInput | number | null
27768
27892
  created_at?: DateTimeFieldUpdateOperationsInput | Date | string
27769
27893
  updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
27770
27894
  profile?: ProfileUpdateOneWithoutTicketNestedInput
@@ -27776,6 +27900,8 @@ export namespace Prisma {
27776
27900
  status?: EnumTicketStatusFieldUpdateOperationsInput | $Enums.TicketStatus
27777
27901
  fullName?: StringFieldUpdateOperationsInput | string
27778
27902
  mail?: StringFieldUpdateOperationsInput | string
27903
+ dni?: StringFieldUpdateOperationsInput | string
27904
+ seat?: NullableIntFieldUpdateOperationsInput | number | null
27779
27905
  profileId?: NullableStringFieldUpdateOperationsInput | string | null
27780
27906
  created_at?: DateTimeFieldUpdateOperationsInput | Date | string
27781
27907
  updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
@@ -27787,6 +27913,8 @@ export namespace Prisma {
27787
27913
  status?: EnumTicketStatusFieldUpdateOperationsInput | $Enums.TicketStatus
27788
27914
  fullName?: StringFieldUpdateOperationsInput | string
27789
27915
  mail?: StringFieldUpdateOperationsInput | string
27916
+ dni?: StringFieldUpdateOperationsInput | string
27917
+ seat?: NullableIntFieldUpdateOperationsInput | number | null
27790
27918
  profileId?: NullableStringFieldUpdateOperationsInput | string | null
27791
27919
  created_at?: DateTimeFieldUpdateOperationsInput | Date | string
27792
27920
  updated_at?: DateTimeFieldUpdateOperationsInput | Date | string