expo-backend-types 0.36.0-EXPO-325-ExpoBackend-Emision-de-multiples-tickets.11 → 0.36.0-EXPO-325-ExpoBackend-Emision-de-multiples-tickets.13

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 (28) hide show
  1. package/dist/src/event/dto/get-by-id-event.dto.d.ts +10 -0
  2. package/dist/src/ticket/dto/create-many-ticket.dto.d.ts +27 -1
  3. package/dist/src/ticket/dto/create-many-ticket.dto.js +1 -0
  4. package/dist/src/ticket/dto/create-ticket.dto.d.ts +13 -1
  5. package/dist/src/ticket/dto/create-ticket.dto.js +1 -0
  6. package/dist/src/ticket/dto/delete-ticket.dto.d.ts +6 -0
  7. package/dist/src/ticket/dto/find-all-tickets.dto.d.ts +10 -0
  8. package/dist/src/ticket/dto/find-by-event-ticket.dto.d.ts +10 -0
  9. package/dist/src/ticket/dto/find-by-id-ticket.dto.d.ts +10 -0
  10. package/dist/src/ticket/dto/find-by-mail-ticket.dto.d.ts +10 -0
  11. package/dist/src/ticket/dto/find-by-profile-id-ticket.dto.d.ts +10 -0
  12. package/dist/src/ticket/dto/find-ticket.dto.d.ts +6 -0
  13. package/dist/src/ticket/dto/ticket.dto.d.ts +6 -0
  14. package/dist/src/ticket/dto/ticket.dto.js +2 -0
  15. package/dist/src/ticket/dto/update-ticket.dto.d.ts +12 -0
  16. package/dist/src/ticket/dto/update-ticket.dto.js +1 -0
  17. package/dist/src/ticket-group/dto/create-ticket-group.dto.d.ts +10 -0
  18. package/dist/src/ticket-group/dto/find-tickets-by-event.dto.d.ts +7 -1
  19. package/dist/src/ticket-group/dto/find-tickets-by-event.dto.js +3 -1
  20. package/dist/src/ticket-group/exports.d.ts +1 -0
  21. package/dist/src/ticket-group/exports.js +1 -0
  22. package/dist/types/prisma-schema/edge.js +3 -3
  23. package/dist/types/prisma-schema/index.d.ts +40 -61
  24. package/dist/types/prisma-schema/index.js +3 -3
  25. package/dist/types/prisma-schema/package.json +1 -1
  26. package/dist/types/prisma-schema/schema.prisma +2 -2
  27. package/dist/types/schema.d.ts +15 -0
  28. package/package.json +1 -1
@@ -15726,7 +15726,7 @@ export namespace Prisma {
15726
15726
  fullName: string
15727
15727
  mail: string
15728
15728
  profileId: string | null
15729
- ticketGroupId: string | null
15729
+ ticketGroupId: string
15730
15730
  created_at: Date
15731
15731
  updated_at: Date
15732
15732
  _count: TicketCountAggregateOutputType | null
@@ -15760,7 +15760,7 @@ export namespace Prisma {
15760
15760
  updated_at?: boolean
15761
15761
  event?: boolean | EventDefaultArgs<ExtArgs>
15762
15762
  profile?: boolean | Ticket$profileArgs<ExtArgs>
15763
- ticketGroup?: boolean | Ticket$ticketGroupArgs<ExtArgs>
15763
+ ticketGroup?: boolean | TicketGroupDefaultArgs<ExtArgs>
15764
15764
  }, ExtArgs["result"]["ticket"]>
15765
15765
 
15766
15766
  export type TicketSelectCreateManyAndReturn<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetSelect<{
@@ -15775,7 +15775,7 @@ export namespace Prisma {
15775
15775
  updated_at?: boolean
15776
15776
  event?: boolean | EventDefaultArgs<ExtArgs>
15777
15777
  profile?: boolean | Ticket$profileArgs<ExtArgs>
15778
- ticketGroup?: boolean | Ticket$ticketGroupArgs<ExtArgs>
15778
+ ticketGroup?: boolean | TicketGroupDefaultArgs<ExtArgs>
15779
15779
  }, ExtArgs["result"]["ticket"]>
15780
15780
 
15781
15781
  export type TicketSelectUpdateManyAndReturn<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetSelect<{
@@ -15790,7 +15790,7 @@ export namespace Prisma {
15790
15790
  updated_at?: boolean
15791
15791
  event?: boolean | EventDefaultArgs<ExtArgs>
15792
15792
  profile?: boolean | Ticket$profileArgs<ExtArgs>
15793
- ticketGroup?: boolean | Ticket$ticketGroupArgs<ExtArgs>
15793
+ ticketGroup?: boolean | TicketGroupDefaultArgs<ExtArgs>
15794
15794
  }, ExtArgs["result"]["ticket"]>
15795
15795
 
15796
15796
  export type TicketSelectScalar = {
@@ -15809,17 +15809,17 @@ export namespace Prisma {
15809
15809
  export type TicketInclude<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
15810
15810
  event?: boolean | EventDefaultArgs<ExtArgs>
15811
15811
  profile?: boolean | Ticket$profileArgs<ExtArgs>
15812
- ticketGroup?: boolean | Ticket$ticketGroupArgs<ExtArgs>
15812
+ ticketGroup?: boolean | TicketGroupDefaultArgs<ExtArgs>
15813
15813
  }
15814
15814
  export type TicketIncludeCreateManyAndReturn<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
15815
15815
  event?: boolean | EventDefaultArgs<ExtArgs>
15816
15816
  profile?: boolean | Ticket$profileArgs<ExtArgs>
15817
- ticketGroup?: boolean | Ticket$ticketGroupArgs<ExtArgs>
15817
+ ticketGroup?: boolean | TicketGroupDefaultArgs<ExtArgs>
15818
15818
  }
15819
15819
  export type TicketIncludeUpdateManyAndReturn<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
15820
15820
  event?: boolean | EventDefaultArgs<ExtArgs>
15821
15821
  profile?: boolean | Ticket$profileArgs<ExtArgs>
15822
- ticketGroup?: boolean | Ticket$ticketGroupArgs<ExtArgs>
15822
+ ticketGroup?: boolean | TicketGroupDefaultArgs<ExtArgs>
15823
15823
  }
15824
15824
 
15825
15825
  export type $TicketPayload<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
@@ -15827,7 +15827,7 @@ export namespace Prisma {
15827
15827
  objects: {
15828
15828
  event: Prisma.$EventPayload<ExtArgs>
15829
15829
  profile: Prisma.$ProfilePayload<ExtArgs> | null
15830
- ticketGroup: Prisma.$TicketGroupPayload<ExtArgs> | null
15830
+ ticketGroup: Prisma.$TicketGroupPayload<ExtArgs>
15831
15831
  }
15832
15832
  scalars: $Extensions.GetPayloadResult<{
15833
15833
  id: string
@@ -15836,7 +15836,7 @@ export namespace Prisma {
15836
15836
  fullName: string
15837
15837
  mail: string
15838
15838
  profileId: string | null
15839
- ticketGroupId: string | null
15839
+ ticketGroupId: string
15840
15840
  created_at: Date
15841
15841
  updated_at: Date
15842
15842
  }, ExtArgs["result"]["ticket"]>
@@ -16235,7 +16235,7 @@ export namespace Prisma {
16235
16235
  readonly [Symbol.toStringTag]: "PrismaPromise"
16236
16236
  event<T extends EventDefaultArgs<ExtArgs> = {}>(args?: Subset<T, EventDefaultArgs<ExtArgs>>): Prisma__EventClient<$Result.GetResult<Prisma.$EventPayload<ExtArgs>, T, "findUniqueOrThrow", ClientOptions> | Null, Null, ExtArgs, ClientOptions>
16237
16237
  profile<T extends Ticket$profileArgs<ExtArgs> = {}>(args?: Subset<T, Ticket$profileArgs<ExtArgs>>): Prisma__ProfileClient<$Result.GetResult<Prisma.$ProfilePayload<ExtArgs>, T, "findUniqueOrThrow", ClientOptions> | null, null, ExtArgs, ClientOptions>
16238
- ticketGroup<T extends Ticket$ticketGroupArgs<ExtArgs> = {}>(args?: Subset<T, Ticket$ticketGroupArgs<ExtArgs>>): Prisma__TicketGroupClient<$Result.GetResult<Prisma.$TicketGroupPayload<ExtArgs>, T, "findUniqueOrThrow", ClientOptions> | null, null, ExtArgs, ClientOptions>
16238
+ ticketGroup<T extends TicketGroupDefaultArgs<ExtArgs> = {}>(args?: Subset<T, TicketGroupDefaultArgs<ExtArgs>>): Prisma__TicketGroupClient<$Result.GetResult<Prisma.$TicketGroupPayload<ExtArgs>, T, "findUniqueOrThrow", ClientOptions> | Null, Null, ExtArgs, ClientOptions>
16239
16239
  /**
16240
16240
  * Attaches callbacks for the resolution and/or rejection of the Promise.
16241
16241
  * @param onfulfilled The callback to execute when the Promise is resolved.
@@ -16688,25 +16688,6 @@ export namespace Prisma {
16688
16688
  where?: ProfileWhereInput
16689
16689
  }
16690
16690
 
16691
- /**
16692
- * Ticket.ticketGroup
16693
- */
16694
- export type Ticket$ticketGroupArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
16695
- /**
16696
- * Select specific fields to fetch from the TicketGroup
16697
- */
16698
- select?: TicketGroupSelect<ExtArgs> | null
16699
- /**
16700
- * Omit specific fields from the TicketGroup
16701
- */
16702
- omit?: TicketGroupOmit<ExtArgs> | null
16703
- /**
16704
- * Choose, which related nodes to fetch as well
16705
- */
16706
- include?: TicketGroupInclude<ExtArgs> | null
16707
- where?: TicketGroupWhereInput
16708
- }
16709
-
16710
16691
  /**
16711
16692
  * Ticket without action
16712
16693
  */
@@ -21312,12 +21293,12 @@ export namespace Prisma {
21312
21293
  fullName?: StringFilter<"Ticket"> | string
21313
21294
  mail?: StringFilter<"Ticket"> | string
21314
21295
  profileId?: StringNullableFilter<"Ticket"> | string | null
21315
- ticketGroupId?: StringNullableFilter<"Ticket"> | string | null
21296
+ ticketGroupId?: StringFilter<"Ticket"> | string
21316
21297
  created_at?: DateTimeFilter<"Ticket"> | Date | string
21317
21298
  updated_at?: DateTimeFilter<"Ticket"> | Date | string
21318
21299
  event?: XOR<EventScalarRelationFilter, EventWhereInput>
21319
21300
  profile?: XOR<ProfileNullableScalarRelationFilter, ProfileWhereInput> | null
21320
- ticketGroup?: XOR<TicketGroupNullableScalarRelationFilter, TicketGroupWhereInput> | null
21301
+ ticketGroup?: XOR<TicketGroupScalarRelationFilter, TicketGroupWhereInput>
21321
21302
  }
21322
21303
 
21323
21304
  export type TicketOrderByWithRelationInput = {
@@ -21327,7 +21308,7 @@ export namespace Prisma {
21327
21308
  fullName?: SortOrder
21328
21309
  mail?: SortOrder
21329
21310
  profileId?: SortOrderInput | SortOrder
21330
- ticketGroupId?: SortOrderInput | SortOrder
21311
+ ticketGroupId?: SortOrder
21331
21312
  created_at?: SortOrder
21332
21313
  updated_at?: SortOrder
21333
21314
  event?: EventOrderByWithRelationInput
@@ -21345,12 +21326,12 @@ export namespace Prisma {
21345
21326
  fullName?: StringFilter<"Ticket"> | string
21346
21327
  mail?: StringFilter<"Ticket"> | string
21347
21328
  profileId?: StringNullableFilter<"Ticket"> | string | null
21348
- ticketGroupId?: StringNullableFilter<"Ticket"> | string | null
21329
+ ticketGroupId?: StringFilter<"Ticket"> | string
21349
21330
  created_at?: DateTimeFilter<"Ticket"> | Date | string
21350
21331
  updated_at?: DateTimeFilter<"Ticket"> | Date | string
21351
21332
  event?: XOR<EventScalarRelationFilter, EventWhereInput>
21352
21333
  profile?: XOR<ProfileNullableScalarRelationFilter, ProfileWhereInput> | null
21353
- ticketGroup?: XOR<TicketGroupNullableScalarRelationFilter, TicketGroupWhereInput> | null
21334
+ ticketGroup?: XOR<TicketGroupScalarRelationFilter, TicketGroupWhereInput>
21354
21335
  }, "id">
21355
21336
 
21356
21337
  export type TicketOrderByWithAggregationInput = {
@@ -21360,7 +21341,7 @@ export namespace Prisma {
21360
21341
  fullName?: SortOrder
21361
21342
  mail?: SortOrder
21362
21343
  profileId?: SortOrderInput | SortOrder
21363
- ticketGroupId?: SortOrderInput | SortOrder
21344
+ ticketGroupId?: SortOrder
21364
21345
  created_at?: SortOrder
21365
21346
  updated_at?: SortOrder
21366
21347
  _count?: TicketCountOrderByAggregateInput
@@ -21378,7 +21359,7 @@ export namespace Prisma {
21378
21359
  fullName?: StringWithAggregatesFilter<"Ticket"> | string
21379
21360
  mail?: StringWithAggregatesFilter<"Ticket"> | string
21380
21361
  profileId?: StringNullableWithAggregatesFilter<"Ticket"> | string | null
21381
- ticketGroupId?: StringNullableWithAggregatesFilter<"Ticket"> | string | null
21362
+ ticketGroupId?: StringWithAggregatesFilter<"Ticket"> | string
21382
21363
  created_at?: DateTimeWithAggregatesFilter<"Ticket"> | Date | string
21383
21364
  updated_at?: DateTimeWithAggregatesFilter<"Ticket"> | Date | string
21384
21365
  }
@@ -22567,7 +22548,7 @@ export namespace Prisma {
22567
22548
  updated_at?: Date | string
22568
22549
  event: EventCreateNestedOneWithoutTicketsInput
22569
22550
  profile?: ProfileCreateNestedOneWithoutTicketInput
22570
- ticketGroup?: TicketGroupCreateNestedOneWithoutTicketsInput
22551
+ ticketGroup: TicketGroupCreateNestedOneWithoutTicketsInput
22571
22552
  }
22572
22553
 
22573
22554
  export type TicketUncheckedCreateInput = {
@@ -22577,7 +22558,7 @@ export namespace Prisma {
22577
22558
  fullName: string
22578
22559
  mail: string
22579
22560
  profileId?: string | null
22580
- ticketGroupId?: string | null
22561
+ ticketGroupId: string
22581
22562
  created_at?: Date | string
22582
22563
  updated_at?: Date | string
22583
22564
  }
@@ -22591,7 +22572,7 @@ export namespace Prisma {
22591
22572
  updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
22592
22573
  event?: EventUpdateOneRequiredWithoutTicketsNestedInput
22593
22574
  profile?: ProfileUpdateOneWithoutTicketNestedInput
22594
- ticketGroup?: TicketGroupUpdateOneWithoutTicketsNestedInput
22575
+ ticketGroup?: TicketGroupUpdateOneRequiredWithoutTicketsNestedInput
22595
22576
  }
22596
22577
 
22597
22578
  export type TicketUncheckedUpdateInput = {
@@ -22601,7 +22582,7 @@ export namespace Prisma {
22601
22582
  fullName?: StringFieldUpdateOperationsInput | string
22602
22583
  mail?: StringFieldUpdateOperationsInput | string
22603
22584
  profileId?: NullableStringFieldUpdateOperationsInput | string | null
22604
- ticketGroupId?: NullableStringFieldUpdateOperationsInput | string | null
22585
+ ticketGroupId?: StringFieldUpdateOperationsInput | string
22605
22586
  created_at?: DateTimeFieldUpdateOperationsInput | Date | string
22606
22587
  updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
22607
22588
  }
@@ -22613,7 +22594,7 @@ export namespace Prisma {
22613
22594
  fullName: string
22614
22595
  mail: string
22615
22596
  profileId?: string | null
22616
- ticketGroupId?: string | null
22597
+ ticketGroupId: string
22617
22598
  created_at?: Date | string
22618
22599
  updated_at?: Date | string
22619
22600
  }
@@ -22634,7 +22615,7 @@ export namespace Prisma {
22634
22615
  fullName?: StringFieldUpdateOperationsInput | string
22635
22616
  mail?: StringFieldUpdateOperationsInput | string
22636
22617
  profileId?: NullableStringFieldUpdateOperationsInput | string | null
22637
- ticketGroupId?: NullableStringFieldUpdateOperationsInput | string | null
22618
+ ticketGroupId?: StringFieldUpdateOperationsInput | string
22638
22619
  created_at?: DateTimeFieldUpdateOperationsInput | Date | string
22639
22620
  updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
22640
22621
  }
@@ -23679,9 +23660,9 @@ export namespace Prisma {
23679
23660
  isNot?: ProfileWhereInput | null
23680
23661
  }
23681
23662
 
23682
- export type TicketGroupNullableScalarRelationFilter = {
23683
- is?: TicketGroupWhereInput | null
23684
- isNot?: TicketGroupWhereInput | null
23663
+ export type TicketGroupScalarRelationFilter = {
23664
+ is?: TicketGroupWhereInput
23665
+ isNot?: TicketGroupWhereInput
23685
23666
  }
23686
23667
 
23687
23668
  export type TicketCountOrderByAggregateInput = {
@@ -25168,12 +25149,10 @@ export namespace Prisma {
25168
25149
  update?: XOR<XOR<ProfileUpdateToOneWithWhereWithoutTicketInput, ProfileUpdateWithoutTicketInput>, ProfileUncheckedUpdateWithoutTicketInput>
25169
25150
  }
25170
25151
 
25171
- export type TicketGroupUpdateOneWithoutTicketsNestedInput = {
25152
+ export type TicketGroupUpdateOneRequiredWithoutTicketsNestedInput = {
25172
25153
  create?: XOR<TicketGroupCreateWithoutTicketsInput, TicketGroupUncheckedCreateWithoutTicketsInput>
25173
25154
  connectOrCreate?: TicketGroupCreateOrConnectWithoutTicketsInput
25174
25155
  upsert?: TicketGroupUpsertWithoutTicketsInput
25175
- disconnect?: TicketGroupWhereInput | boolean
25176
- delete?: TicketGroupWhereInput | boolean
25177
25156
  connect?: TicketGroupWhereUniqueInput
25178
25157
  update?: XOR<XOR<TicketGroupUpdateToOneWithWhereWithoutTicketsInput, TicketGroupUpdateWithoutTicketsInput>, TicketGroupUncheckedUpdateWithoutTicketsInput>
25179
25158
  }
@@ -26064,7 +26043,7 @@ export namespace Prisma {
26064
26043
  created_at?: Date | string
26065
26044
  updated_at?: Date | string
26066
26045
  event: EventCreateNestedOneWithoutTicketsInput
26067
- ticketGroup?: TicketGroupCreateNestedOneWithoutTicketsInput
26046
+ ticketGroup: TicketGroupCreateNestedOneWithoutTicketsInput
26068
26047
  }
26069
26048
 
26070
26049
  export type TicketUncheckedCreateWithoutProfileInput = {
@@ -26073,7 +26052,7 @@ export namespace Prisma {
26073
26052
  type: $Enums.TicketType
26074
26053
  fullName: string
26075
26054
  mail: string
26076
- ticketGroupId?: string | null
26055
+ ticketGroupId: string
26077
26056
  created_at?: Date | string
26078
26057
  updated_at?: Date | string
26079
26058
  }
@@ -26273,7 +26252,7 @@ export namespace Prisma {
26273
26252
  fullName?: StringFilter<"Ticket"> | string
26274
26253
  mail?: StringFilter<"Ticket"> | string
26275
26254
  profileId?: StringNullableFilter<"Ticket"> | string | null
26276
- ticketGroupId?: StringNullableFilter<"Ticket"> | string | null
26255
+ ticketGroupId?: StringFilter<"Ticket"> | string
26277
26256
  created_at?: DateTimeFilter<"Ticket"> | Date | string
26278
26257
  updated_at?: DateTimeFilter<"Ticket"> | Date | string
26279
26258
  }
@@ -27621,7 +27600,7 @@ export namespace Prisma {
27621
27600
  created_at?: Date | string
27622
27601
  updated_at?: Date | string
27623
27602
  profile?: ProfileCreateNestedOneWithoutTicketInput
27624
- ticketGroup?: TicketGroupCreateNestedOneWithoutTicketsInput
27603
+ ticketGroup: TicketGroupCreateNestedOneWithoutTicketsInput
27625
27604
  }
27626
27605
 
27627
27606
  export type TicketUncheckedCreateWithoutEventInput = {
@@ -27630,7 +27609,7 @@ export namespace Prisma {
27630
27609
  fullName: string
27631
27610
  mail: string
27632
27611
  profileId?: string | null
27633
- ticketGroupId?: string | null
27612
+ ticketGroupId: string
27634
27613
  created_at?: Date | string
27635
27614
  updated_at?: Date | string
27636
27615
  }
@@ -28984,7 +28963,7 @@ export namespace Prisma {
28984
28963
  type: $Enums.TicketType
28985
28964
  fullName: string
28986
28965
  mail: string
28987
- ticketGroupId?: string | null
28966
+ ticketGroupId: string
28988
28967
  created_at?: Date | string
28989
28968
  updated_at?: Date | string
28990
28969
  }
@@ -29121,7 +29100,7 @@ export namespace Prisma {
29121
29100
  created_at?: DateTimeFieldUpdateOperationsInput | Date | string
29122
29101
  updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
29123
29102
  event?: EventUpdateOneRequiredWithoutTicketsNestedInput
29124
- ticketGroup?: TicketGroupUpdateOneWithoutTicketsNestedInput
29103
+ ticketGroup?: TicketGroupUpdateOneRequiredWithoutTicketsNestedInput
29125
29104
  }
29126
29105
 
29127
29106
  export type TicketUncheckedUpdateWithoutProfileInput = {
@@ -29130,7 +29109,7 @@ export namespace Prisma {
29130
29109
  type?: EnumTicketTypeFieldUpdateOperationsInput | $Enums.TicketType
29131
29110
  fullName?: StringFieldUpdateOperationsInput | string
29132
29111
  mail?: StringFieldUpdateOperationsInput | string
29133
- ticketGroupId?: NullableStringFieldUpdateOperationsInput | string | null
29112
+ ticketGroupId?: StringFieldUpdateOperationsInput | string
29134
29113
  created_at?: DateTimeFieldUpdateOperationsInput | Date | string
29135
29114
  updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
29136
29115
  }
@@ -29141,7 +29120,7 @@ export namespace Prisma {
29141
29120
  type?: EnumTicketTypeFieldUpdateOperationsInput | $Enums.TicketType
29142
29121
  fullName?: StringFieldUpdateOperationsInput | string
29143
29122
  mail?: StringFieldUpdateOperationsInput | string
29144
- ticketGroupId?: NullableStringFieldUpdateOperationsInput | string | null
29123
+ ticketGroupId?: StringFieldUpdateOperationsInput | string
29145
29124
  created_at?: DateTimeFieldUpdateOperationsInput | Date | string
29146
29125
  updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
29147
29126
  }
@@ -29647,7 +29626,7 @@ export namespace Prisma {
29647
29626
  fullName: string
29648
29627
  mail: string
29649
29628
  profileId?: string | null
29650
- ticketGroupId?: string | null
29629
+ ticketGroupId: string
29651
29630
  created_at?: Date | string
29652
29631
  updated_at?: Date | string
29653
29632
  }
@@ -29692,7 +29671,7 @@ export namespace Prisma {
29692
29671
  created_at?: DateTimeFieldUpdateOperationsInput | Date | string
29693
29672
  updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
29694
29673
  profile?: ProfileUpdateOneWithoutTicketNestedInput
29695
- ticketGroup?: TicketGroupUpdateOneWithoutTicketsNestedInput
29674
+ ticketGroup?: TicketGroupUpdateOneRequiredWithoutTicketsNestedInput
29696
29675
  }
29697
29676
 
29698
29677
  export type TicketUncheckedUpdateWithoutEventInput = {
@@ -29701,7 +29680,7 @@ export namespace Prisma {
29701
29680
  fullName?: StringFieldUpdateOperationsInput | string
29702
29681
  mail?: StringFieldUpdateOperationsInput | string
29703
29682
  profileId?: NullableStringFieldUpdateOperationsInput | string | null
29704
- ticketGroupId?: NullableStringFieldUpdateOperationsInput | string | null
29683
+ ticketGroupId?: StringFieldUpdateOperationsInput | string
29705
29684
  created_at?: DateTimeFieldUpdateOperationsInput | Date | string
29706
29685
  updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
29707
29686
  }
@@ -29712,7 +29691,7 @@ export namespace Prisma {
29712
29691
  fullName?: StringFieldUpdateOperationsInput | string
29713
29692
  mail?: StringFieldUpdateOperationsInput | string
29714
29693
  profileId?: NullableStringFieldUpdateOperationsInput | string | null
29715
- ticketGroupId?: NullableStringFieldUpdateOperationsInput | string | null
29694
+ ticketGroupId?: StringFieldUpdateOperationsInput | string
29716
29695
  created_at?: DateTimeFieldUpdateOperationsInput | Date | string
29717
29696
  updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
29718
29697
  }