expo-backend-types 0.32.0-EXPO-315-Marcelo-Tinelli.1 → 0.32.0-EXPO-315-Marcelo-Tinelli.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 (41) hide show
  1. package/dist/src/event/dto/create-event.dto.d.ts +115 -2
  2. package/dist/src/event/dto/create-event.dto.js +8 -0
  3. package/dist/src/event/dto/delete-event.dto.d.ts +18 -0
  4. package/dist/src/event/dto/event-tickets.dto.d.ts +21 -0
  5. package/dist/src/event/dto/event-tickets.dto.js +21 -0
  6. package/dist/src/event/dto/event.dto.d.ts +9 -0
  7. package/dist/src/event/dto/event.dto.js +9 -0
  8. package/dist/src/event/dto/get-active-events.dto.d.ts +247 -0
  9. package/dist/src/event/dto/get-active-events.dto.js +19 -0
  10. package/dist/src/event/dto/get-all-event.dto.d.ts +424 -160
  11. package/dist/src/event/dto/get-by-id-event.dto.d.ts +208 -48
  12. package/dist/src/event/dto/get-by-id-event.dto.js +2 -0
  13. package/dist/src/event/dto/toggle-active-event.dto.d.ts +43 -0
  14. package/dist/src/event/dto/toggle-active-event.dto.js +6 -0
  15. package/dist/src/event/dto/update-event.dto.d.ts +193 -22
  16. package/dist/src/event/dto/update-event.dto.js +9 -0
  17. package/dist/src/event/exports.d.ts +3 -0
  18. package/dist/src/event/exports.js +3 -0
  19. package/dist/src/event-folder/dto/get-all-event-folder.dto.d.ts +42 -0
  20. package/dist/src/event-folder/dto/get-by-id-event-folder.dto.d.ts +30 -0
  21. package/dist/src/i18n/es.d.ts +25 -0
  22. package/dist/src/i18n/es.js +25 -0
  23. package/dist/src/i18n/es.js.map +1 -1
  24. package/dist/src/ticket/dto/create-ticket.dto.d.ts +24 -20
  25. package/dist/src/ticket/dto/delete-ticket.dto.d.ts +12 -10
  26. package/dist/src/ticket/dto/find-all-tickets.dto.d.ts +23 -18
  27. package/dist/src/ticket/dto/find-by-event-ticket.dto.d.ts +23 -18
  28. package/dist/src/ticket/dto/find-by-id-ticket.dto.d.ts +23 -18
  29. package/dist/src/ticket/dto/find-by-mail-ticket.dto.d.ts +23 -18
  30. package/dist/src/ticket/dto/find-ticket.dto.d.ts +12 -10
  31. package/dist/src/ticket/dto/ticket.dto.d.ts +12 -10
  32. package/dist/src/ticket/dto/update-ticket.dto.d.ts +24 -20
  33. package/dist/types/prisma-schema/edge.js +22 -7
  34. package/dist/types/prisma-schema/index-browser.js +19 -4
  35. package/dist/types/prisma-schema/index.d.ts +2439 -213
  36. package/dist/types/prisma-schema/index.js +22 -7
  37. package/dist/types/prisma-schema/package.json +1 -1
  38. package/dist/types/prisma-schema/schema.prisma +36 -14
  39. package/dist/types/prisma-schema/wasm.js +19 -4
  40. package/dist/types/schema.d.ts +221 -21
  41. package/package.json +1 -1
@@ -73,6 +73,11 @@ export type Ticket = $Result.DefaultSelection<Prisma.$TicketPayload>
73
73
  *
74
74
  */
75
75
  export type Enums = $Result.DefaultSelection<Prisma.$EnumsPayload>
76
+ /**
77
+ * Model EventTicket
78
+ *
79
+ */
80
+ export type EventTicket = $Result.DefaultSelection<Prisma.$EventTicketPayload>
76
81
 
77
82
  /**
78
83
  * Enums
@@ -108,8 +113,8 @@ export type MessageState = (typeof MessageState)[keyof typeof MessageState]
108
113
 
109
114
  export const TicketType: {
110
115
  PARTICIPANT: 'PARTICIPANT',
111
- SPECTATOR: 'SPECTATOR',
112
- STAFF: 'STAFF'
116
+ STAFF: 'STAFF',
117
+ SPECTATOR: 'SPECTATOR'
113
118
  };
114
119
 
115
120
  export type TicketType = (typeof TicketType)[keyof typeof TicketType]
@@ -117,7 +122,8 @@ export type TicketType = (typeof TicketType)[keyof typeof TicketType]
117
122
 
118
123
  export const TicketStatus: {
119
124
  BOOKED: 'BOOKED',
120
- PAID: 'PAID'
125
+ PAID: 'PAID',
126
+ FREE: 'FREE'
121
127
  };
122
128
 
123
129
  export type TicketStatus = (typeof TicketStatus)[keyof typeof TicketStatus]
@@ -412,6 +418,16 @@ export class PrismaClient<
412
418
  * ```
413
419
  */
414
420
  get enums(): Prisma.EnumsDelegate<ExtArgs>;
421
+
422
+ /**
423
+ * `prisma.eventTicket`: Exposes CRUD operations for the **EventTicket** model.
424
+ * Example usage:
425
+ * ```ts
426
+ * // Fetch zero or more EventTickets
427
+ * const eventTickets = await prisma.eventTicket.findMany()
428
+ * ```
429
+ */
430
+ get eventTicket(): Prisma.EventTicketDelegate<ExtArgs>;
415
431
  }
416
432
 
417
433
  export namespace Prisma {
@@ -864,7 +880,8 @@ export namespace Prisma {
864
880
  Message: 'Message',
865
881
  CannedResponse: 'CannedResponse',
866
882
  Ticket: 'Ticket',
867
- Enums: 'Enums'
883
+ Enums: 'Enums',
884
+ EventTicket: 'EventTicket'
868
885
  };
869
886
 
870
887
  export type ModelName = (typeof ModelName)[keyof typeof ModelName]
@@ -880,7 +897,7 @@ export namespace Prisma {
880
897
 
881
898
  export type TypeMap<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs, ClientOptions = {}> = {
882
899
  meta: {
883
- modelProps: "account" | "profile" | "location" | "comment" | "tag" | "tagGroup" | "event" | "eventFolder" | "message" | "cannedResponse" | "ticket" | "enums"
900
+ modelProps: "account" | "profile" | "location" | "comment" | "tag" | "tagGroup" | "event" | "eventFolder" | "message" | "cannedResponse" | "ticket" | "enums" | "eventTicket"
884
901
  txIsolationLevel: Prisma.TransactionIsolationLevel
885
902
  }
886
903
  model: {
@@ -1724,6 +1741,76 @@ export namespace Prisma {
1724
1741
  }
1725
1742
  }
1726
1743
  }
1744
+ EventTicket: {
1745
+ payload: Prisma.$EventTicketPayload<ExtArgs>
1746
+ fields: Prisma.EventTicketFieldRefs
1747
+ operations: {
1748
+ findUnique: {
1749
+ args: Prisma.EventTicketFindUniqueArgs<ExtArgs>
1750
+ result: $Utils.PayloadToResult<Prisma.$EventTicketPayload> | null
1751
+ }
1752
+ findUniqueOrThrow: {
1753
+ args: Prisma.EventTicketFindUniqueOrThrowArgs<ExtArgs>
1754
+ result: $Utils.PayloadToResult<Prisma.$EventTicketPayload>
1755
+ }
1756
+ findFirst: {
1757
+ args: Prisma.EventTicketFindFirstArgs<ExtArgs>
1758
+ result: $Utils.PayloadToResult<Prisma.$EventTicketPayload> | null
1759
+ }
1760
+ findFirstOrThrow: {
1761
+ args: Prisma.EventTicketFindFirstOrThrowArgs<ExtArgs>
1762
+ result: $Utils.PayloadToResult<Prisma.$EventTicketPayload>
1763
+ }
1764
+ findMany: {
1765
+ args: Prisma.EventTicketFindManyArgs<ExtArgs>
1766
+ result: $Utils.PayloadToResult<Prisma.$EventTicketPayload>[]
1767
+ }
1768
+ create: {
1769
+ args: Prisma.EventTicketCreateArgs<ExtArgs>
1770
+ result: $Utils.PayloadToResult<Prisma.$EventTicketPayload>
1771
+ }
1772
+ createMany: {
1773
+ args: Prisma.EventTicketCreateManyArgs<ExtArgs>
1774
+ result: BatchPayload
1775
+ }
1776
+ createManyAndReturn: {
1777
+ args: Prisma.EventTicketCreateManyAndReturnArgs<ExtArgs>
1778
+ result: $Utils.PayloadToResult<Prisma.$EventTicketPayload>[]
1779
+ }
1780
+ delete: {
1781
+ args: Prisma.EventTicketDeleteArgs<ExtArgs>
1782
+ result: $Utils.PayloadToResult<Prisma.$EventTicketPayload>
1783
+ }
1784
+ update: {
1785
+ args: Prisma.EventTicketUpdateArgs<ExtArgs>
1786
+ result: $Utils.PayloadToResult<Prisma.$EventTicketPayload>
1787
+ }
1788
+ deleteMany: {
1789
+ args: Prisma.EventTicketDeleteManyArgs<ExtArgs>
1790
+ result: BatchPayload
1791
+ }
1792
+ updateMany: {
1793
+ args: Prisma.EventTicketUpdateManyArgs<ExtArgs>
1794
+ result: BatchPayload
1795
+ }
1796
+ upsert: {
1797
+ args: Prisma.EventTicketUpsertArgs<ExtArgs>
1798
+ result: $Utils.PayloadToResult<Prisma.$EventTicketPayload>
1799
+ }
1800
+ aggregate: {
1801
+ args: Prisma.EventTicketAggregateArgs<ExtArgs>
1802
+ result: $Utils.Optional<AggregateEventTicket>
1803
+ }
1804
+ groupBy: {
1805
+ args: Prisma.EventTicketGroupByArgs<ExtArgs>
1806
+ result: $Utils.Optional<EventTicketGroupByOutputType>[]
1807
+ }
1808
+ count: {
1809
+ args: Prisma.EventTicketCountArgs<ExtArgs>
1810
+ result: $Utils.Optional<EventTicketCountAggregateOutputType> | number
1811
+ }
1812
+ }
1813
+ }
1727
1814
  }
1728
1815
  } & {
1729
1816
  other: {
@@ -2035,12 +2122,14 @@ export namespace Prisma {
2035
2122
  accounts: number
2036
2123
  profiles: number
2037
2124
  accountsGlobalFilter: number
2125
+ Event: number
2038
2126
  }
2039
2127
 
2040
2128
  export type TagCountOutputTypeSelect<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
2041
2129
  accounts?: boolean | TagCountOutputTypeCountAccountsArgs
2042
2130
  profiles?: boolean | TagCountOutputTypeCountProfilesArgs
2043
2131
  accountsGlobalFilter?: boolean | TagCountOutputTypeCountAccountsGlobalFilterArgs
2132
+ Event?: boolean | TagCountOutputTypeCountEventArgs
2044
2133
  }
2045
2134
 
2046
2135
  // Custom InputTypes
@@ -2075,6 +2164,13 @@ export namespace Prisma {
2075
2164
  where?: AccountWhereInput
2076
2165
  }
2077
2166
 
2167
+ /**
2168
+ * TagCountOutputType without action
2169
+ */
2170
+ export type TagCountOutputTypeCountEventArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
2171
+ where?: EventWhereInput
2172
+ }
2173
+
2078
2174
 
2079
2175
  /**
2080
2176
  * Count Type TagGroupCountOutputType
@@ -2112,13 +2208,17 @@ export namespace Prisma {
2112
2208
  */
2113
2209
 
2114
2210
  export type EventCountOutputType = {
2115
- subEvents: number
2116
2211
  tickets: number
2212
+ subEvents: number
2213
+ tags: number
2214
+ eventTickets: number
2117
2215
  }
2118
2216
 
2119
2217
  export type EventCountOutputTypeSelect<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
2120
- subEvents?: boolean | EventCountOutputTypeCountSubEventsArgs
2121
2218
  tickets?: boolean | EventCountOutputTypeCountTicketsArgs
2219
+ subEvents?: boolean | EventCountOutputTypeCountSubEventsArgs
2220
+ tags?: boolean | EventCountOutputTypeCountTagsArgs
2221
+ eventTickets?: boolean | EventCountOutputTypeCountEventTicketsArgs
2122
2222
  }
2123
2223
 
2124
2224
  // Custom InputTypes
@@ -2132,6 +2232,13 @@ export namespace Prisma {
2132
2232
  select?: EventCountOutputTypeSelect<ExtArgs> | null
2133
2233
  }
2134
2234
 
2235
+ /**
2236
+ * EventCountOutputType without action
2237
+ */
2238
+ export type EventCountOutputTypeCountTicketsArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
2239
+ where?: TicketWhereInput
2240
+ }
2241
+
2135
2242
  /**
2136
2243
  * EventCountOutputType without action
2137
2244
  */
@@ -2142,8 +2249,15 @@ export namespace Prisma {
2142
2249
  /**
2143
2250
  * EventCountOutputType without action
2144
2251
  */
2145
- export type EventCountOutputTypeCountTicketsArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
2146
- where?: TicketWhereInput
2252
+ export type EventCountOutputTypeCountTagsArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
2253
+ where?: TagWhereInput
2254
+ }
2255
+
2256
+ /**
2257
+ * EventCountOutputType without action
2258
+ */
2259
+ export type EventCountOutputTypeCountEventTicketsArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
2260
+ where?: EventTicketWhereInput
2147
2261
  }
2148
2262
 
2149
2263
 
@@ -6719,6 +6833,7 @@ export namespace Prisma {
6719
6833
  accounts?: boolean | Tag$accountsArgs<ExtArgs>
6720
6834
  profiles?: boolean | Tag$profilesArgs<ExtArgs>
6721
6835
  accountsGlobalFilter?: boolean | Tag$accountsGlobalFilterArgs<ExtArgs>
6836
+ Event?: boolean | Tag$EventArgs<ExtArgs>
6722
6837
  _count?: boolean | TagCountOutputTypeDefaultArgs<ExtArgs>
6723
6838
  }, ExtArgs["result"]["tag"]>
6724
6839
 
@@ -6748,6 +6863,7 @@ export namespace Prisma {
6748
6863
  accounts?: boolean | Tag$accountsArgs<ExtArgs>
6749
6864
  profiles?: boolean | Tag$profilesArgs<ExtArgs>
6750
6865
  accountsGlobalFilter?: boolean | Tag$accountsGlobalFilterArgs<ExtArgs>
6866
+ Event?: boolean | Tag$EventArgs<ExtArgs>
6751
6867
  _count?: boolean | TagCountOutputTypeDefaultArgs<ExtArgs>
6752
6868
  }
6753
6869
  export type TagIncludeCreateManyAndReturn<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
@@ -6763,6 +6879,7 @@ export namespace Prisma {
6763
6879
  accounts: Prisma.$AccountPayload<ExtArgs>[]
6764
6880
  profiles: Prisma.$ProfilePayload<ExtArgs>[]
6765
6881
  accountsGlobalFilter: Prisma.$AccountPayload<ExtArgs>[]
6882
+ Event: Prisma.$EventPayload<ExtArgs>[]
6766
6883
  }
6767
6884
  scalars: $Extensions.GetPayloadResult<{
6768
6885
  id: string
@@ -7141,6 +7258,7 @@ export namespace Prisma {
7141
7258
  accounts<T extends Tag$accountsArgs<ExtArgs> = {}>(args?: Subset<T, Tag$accountsArgs<ExtArgs>>): Prisma.PrismaPromise<$Result.GetResult<Prisma.$AccountPayload<ExtArgs>, T, "findMany"> | Null>
7142
7259
  profiles<T extends Tag$profilesArgs<ExtArgs> = {}>(args?: Subset<T, Tag$profilesArgs<ExtArgs>>): Prisma.PrismaPromise<$Result.GetResult<Prisma.$ProfilePayload<ExtArgs>, T, "findMany"> | Null>
7143
7260
  accountsGlobalFilter<T extends Tag$accountsGlobalFilterArgs<ExtArgs> = {}>(args?: Subset<T, Tag$accountsGlobalFilterArgs<ExtArgs>>): Prisma.PrismaPromise<$Result.GetResult<Prisma.$AccountPayload<ExtArgs>, T, "findMany"> | Null>
7261
+ Event<T extends Tag$EventArgs<ExtArgs> = {}>(args?: Subset<T, Tag$EventArgs<ExtArgs>>): Prisma.PrismaPromise<$Result.GetResult<Prisma.$EventPayload<ExtArgs>, T, "findMany"> | Null>
7144
7262
  /**
7145
7263
  * Attaches callbacks for the resolution and/or rejection of the Promise.
7146
7264
  * @param onfulfilled The callback to execute when the Promise is resolved.
@@ -7583,6 +7701,26 @@ export namespace Prisma {
7583
7701
  distinct?: AccountScalarFieldEnum | AccountScalarFieldEnum[]
7584
7702
  }
7585
7703
 
7704
+ /**
7705
+ * Tag.Event
7706
+ */
7707
+ export type Tag$EventArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
7708
+ /**
7709
+ * Select specific fields to fetch from the Event
7710
+ */
7711
+ select?: EventSelect<ExtArgs> | null
7712
+ /**
7713
+ * Choose, which related nodes to fetch as well
7714
+ */
7715
+ include?: EventInclude<ExtArgs> | null
7716
+ where?: EventWhereInput
7717
+ orderBy?: EventOrderByWithRelationInput | EventOrderByWithRelationInput[]
7718
+ cursor?: EventWhereUniqueInput
7719
+ take?: number
7720
+ skip?: number
7721
+ distinct?: EventScalarFieldEnum | EventScalarFieldEnum[]
7722
+ }
7723
+
7586
7724
  /**
7587
7725
  * Tag without action
7588
7726
  */
@@ -8572,11 +8710,14 @@ export namespace Prisma {
8572
8710
  id: string | null
8573
8711
  name: string | null
8574
8712
  date: Date | null
8713
+ startingDate: Date | null
8714
+ endingDate: Date | null
8575
8715
  location: string | null
8576
8716
  folderId: string | null
8577
8717
  tagAssistedId: string | null
8578
8718
  tagConfirmedId: string | null
8579
8719
  supraEventId: string | null
8720
+ active: boolean | null
8580
8721
  created_at: Date | null
8581
8722
  updated_at: Date | null
8582
8723
  }
@@ -8585,11 +8726,14 @@ export namespace Prisma {
8585
8726
  id: string | null
8586
8727
  name: string | null
8587
8728
  date: Date | null
8729
+ startingDate: Date | null
8730
+ endingDate: Date | null
8588
8731
  location: string | null
8589
8732
  folderId: string | null
8590
8733
  tagAssistedId: string | null
8591
8734
  tagConfirmedId: string | null
8592
8735
  supraEventId: string | null
8736
+ active: boolean | null
8593
8737
  created_at: Date | null
8594
8738
  updated_at: Date | null
8595
8739
  }
@@ -8598,11 +8742,14 @@ export namespace Prisma {
8598
8742
  id: number
8599
8743
  name: number
8600
8744
  date: number
8745
+ startingDate: number
8746
+ endingDate: number
8601
8747
  location: number
8602
8748
  folderId: number
8603
8749
  tagAssistedId: number
8604
8750
  tagConfirmedId: number
8605
8751
  supraEventId: number
8752
+ active: number
8606
8753
  created_at: number
8607
8754
  updated_at: number
8608
8755
  _all: number
@@ -8613,11 +8760,14 @@ export namespace Prisma {
8613
8760
  id?: true
8614
8761
  name?: true
8615
8762
  date?: true
8763
+ startingDate?: true
8764
+ endingDate?: true
8616
8765
  location?: true
8617
8766
  folderId?: true
8618
8767
  tagAssistedId?: true
8619
8768
  tagConfirmedId?: true
8620
8769
  supraEventId?: true
8770
+ active?: true
8621
8771
  created_at?: true
8622
8772
  updated_at?: true
8623
8773
  }
@@ -8626,11 +8776,14 @@ export namespace Prisma {
8626
8776
  id?: true
8627
8777
  name?: true
8628
8778
  date?: true
8779
+ startingDate?: true
8780
+ endingDate?: true
8629
8781
  location?: true
8630
8782
  folderId?: true
8631
8783
  tagAssistedId?: true
8632
8784
  tagConfirmedId?: true
8633
8785
  supraEventId?: true
8786
+ active?: true
8634
8787
  created_at?: true
8635
8788
  updated_at?: true
8636
8789
  }
@@ -8639,11 +8792,14 @@ export namespace Prisma {
8639
8792
  id?: true
8640
8793
  name?: true
8641
8794
  date?: true
8795
+ startingDate?: true
8796
+ endingDate?: true
8642
8797
  location?: true
8643
8798
  folderId?: true
8644
8799
  tagAssistedId?: true
8645
8800
  tagConfirmedId?: true
8646
8801
  supraEventId?: true
8802
+ active?: true
8647
8803
  created_at?: true
8648
8804
  updated_at?: true
8649
8805
  _all?: true
@@ -8725,11 +8881,14 @@ export namespace Prisma {
8725
8881
  id: string
8726
8882
  name: string
8727
8883
  date: Date
8884
+ startingDate: Date
8885
+ endingDate: Date
8728
8886
  location: string
8729
8887
  folderId: string | null
8730
8888
  tagAssistedId: string
8731
8889
  tagConfirmedId: string
8732
8890
  supraEventId: string | null
8891
+ active: boolean
8733
8892
  created_at: Date
8734
8893
  updated_at: Date
8735
8894
  _count: EventCountAggregateOutputType | null
@@ -8755,19 +8914,24 @@ export namespace Prisma {
8755
8914
  id?: boolean
8756
8915
  name?: boolean
8757
8916
  date?: boolean
8917
+ startingDate?: boolean
8918
+ endingDate?: boolean
8758
8919
  location?: boolean
8759
8920
  folderId?: boolean
8760
8921
  tagAssistedId?: boolean
8761
8922
  tagConfirmedId?: boolean
8762
8923
  supraEventId?: boolean
8924
+ active?: boolean
8763
8925
  created_at?: boolean
8764
8926
  updated_at?: boolean
8765
8927
  folder?: boolean | Event$folderArgs<ExtArgs>
8766
8928
  tagAssisted?: boolean | TagDefaultArgs<ExtArgs>
8767
8929
  tagConfirmed?: boolean | TagDefaultArgs<ExtArgs>
8768
8930
  supraEvent?: boolean | Event$supraEventArgs<ExtArgs>
8769
- subEvents?: boolean | Event$subEventsArgs<ExtArgs>
8770
8931
  tickets?: boolean | Event$ticketsArgs<ExtArgs>
8932
+ subEvents?: boolean | Event$subEventsArgs<ExtArgs>
8933
+ tags?: boolean | Event$tagsArgs<ExtArgs>
8934
+ eventTickets?: boolean | Event$eventTicketsArgs<ExtArgs>
8771
8935
  _count?: boolean | EventCountOutputTypeDefaultArgs<ExtArgs>
8772
8936
  }, ExtArgs["result"]["event"]>
8773
8937
 
@@ -8775,11 +8939,14 @@ export namespace Prisma {
8775
8939
  id?: boolean
8776
8940
  name?: boolean
8777
8941
  date?: boolean
8942
+ startingDate?: boolean
8943
+ endingDate?: boolean
8778
8944
  location?: boolean
8779
8945
  folderId?: boolean
8780
8946
  tagAssistedId?: boolean
8781
8947
  tagConfirmedId?: boolean
8782
8948
  supraEventId?: boolean
8949
+ active?: boolean
8783
8950
  created_at?: boolean
8784
8951
  updated_at?: boolean
8785
8952
  folder?: boolean | Event$folderArgs<ExtArgs>
@@ -8792,11 +8959,14 @@ export namespace Prisma {
8792
8959
  id?: boolean
8793
8960
  name?: boolean
8794
8961
  date?: boolean
8962
+ startingDate?: boolean
8963
+ endingDate?: boolean
8795
8964
  location?: boolean
8796
8965
  folderId?: boolean
8797
8966
  tagAssistedId?: boolean
8798
8967
  tagConfirmedId?: boolean
8799
8968
  supraEventId?: boolean
8969
+ active?: boolean
8800
8970
  created_at?: boolean
8801
8971
  updated_at?: boolean
8802
8972
  }
@@ -8806,8 +8976,10 @@ export namespace Prisma {
8806
8976
  tagAssisted?: boolean | TagDefaultArgs<ExtArgs>
8807
8977
  tagConfirmed?: boolean | TagDefaultArgs<ExtArgs>
8808
8978
  supraEvent?: boolean | Event$supraEventArgs<ExtArgs>
8809
- subEvents?: boolean | Event$subEventsArgs<ExtArgs>
8810
8979
  tickets?: boolean | Event$ticketsArgs<ExtArgs>
8980
+ subEvents?: boolean | Event$subEventsArgs<ExtArgs>
8981
+ tags?: boolean | Event$tagsArgs<ExtArgs>
8982
+ eventTickets?: boolean | Event$eventTicketsArgs<ExtArgs>
8811
8983
  _count?: boolean | EventCountOutputTypeDefaultArgs<ExtArgs>
8812
8984
  }
8813
8985
  export type EventIncludeCreateManyAndReturn<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
@@ -8824,18 +8996,23 @@ export namespace Prisma {
8824
8996
  tagAssisted: Prisma.$TagPayload<ExtArgs>
8825
8997
  tagConfirmed: Prisma.$TagPayload<ExtArgs>
8826
8998
  supraEvent: Prisma.$EventPayload<ExtArgs> | null
8827
- subEvents: Prisma.$EventPayload<ExtArgs>[]
8828
8999
  tickets: Prisma.$TicketPayload<ExtArgs>[]
9000
+ subEvents: Prisma.$EventPayload<ExtArgs>[]
9001
+ tags: Prisma.$TagPayload<ExtArgs>[]
9002
+ eventTickets: Prisma.$EventTicketPayload<ExtArgs>[]
8829
9003
  }
8830
9004
  scalars: $Extensions.GetPayloadResult<{
8831
9005
  id: string
8832
9006
  name: string
8833
9007
  date: Date
9008
+ startingDate: Date
9009
+ endingDate: Date
8834
9010
  location: string
8835
9011
  folderId: string | null
8836
9012
  tagAssistedId: string
8837
9013
  tagConfirmedId: string
8838
9014
  supraEventId: string | null
9015
+ active: boolean
8839
9016
  created_at: Date
8840
9017
  updated_at: Date
8841
9018
  }, ExtArgs["result"]["event"]>
@@ -9206,8 +9383,10 @@ export namespace Prisma {
9206
9383
  tagAssisted<T extends TagDefaultArgs<ExtArgs> = {}>(args?: Subset<T, TagDefaultArgs<ExtArgs>>): Prisma__TagClient<$Result.GetResult<Prisma.$TagPayload<ExtArgs>, T, "findUniqueOrThrow"> | Null, Null, ExtArgs>
9207
9384
  tagConfirmed<T extends TagDefaultArgs<ExtArgs> = {}>(args?: Subset<T, TagDefaultArgs<ExtArgs>>): Prisma__TagClient<$Result.GetResult<Prisma.$TagPayload<ExtArgs>, T, "findUniqueOrThrow"> | Null, Null, ExtArgs>
9208
9385
  supraEvent<T extends Event$supraEventArgs<ExtArgs> = {}>(args?: Subset<T, Event$supraEventArgs<ExtArgs>>): Prisma__EventClient<$Result.GetResult<Prisma.$EventPayload<ExtArgs>, T, "findUniqueOrThrow"> | null, null, ExtArgs>
9209
- subEvents<T extends Event$subEventsArgs<ExtArgs> = {}>(args?: Subset<T, Event$subEventsArgs<ExtArgs>>): Prisma.PrismaPromise<$Result.GetResult<Prisma.$EventPayload<ExtArgs>, T, "findMany"> | Null>
9210
9386
  tickets<T extends Event$ticketsArgs<ExtArgs> = {}>(args?: Subset<T, Event$ticketsArgs<ExtArgs>>): Prisma.PrismaPromise<$Result.GetResult<Prisma.$TicketPayload<ExtArgs>, T, "findMany"> | Null>
9387
+ subEvents<T extends Event$subEventsArgs<ExtArgs> = {}>(args?: Subset<T, Event$subEventsArgs<ExtArgs>>): Prisma.PrismaPromise<$Result.GetResult<Prisma.$EventPayload<ExtArgs>, T, "findMany"> | Null>
9388
+ tags<T extends Event$tagsArgs<ExtArgs> = {}>(args?: Subset<T, Event$tagsArgs<ExtArgs>>): Prisma.PrismaPromise<$Result.GetResult<Prisma.$TagPayload<ExtArgs>, T, "findMany"> | Null>
9389
+ eventTickets<T extends Event$eventTicketsArgs<ExtArgs> = {}>(args?: Subset<T, Event$eventTicketsArgs<ExtArgs>>): Prisma.PrismaPromise<$Result.GetResult<Prisma.$EventTicketPayload<ExtArgs>, T, "findMany"> | Null>
9211
9390
  /**
9212
9391
  * Attaches callbacks for the resolution and/or rejection of the Promise.
9213
9392
  * @param onfulfilled The callback to execute when the Promise is resolved.
@@ -9240,11 +9419,14 @@ export namespace Prisma {
9240
9419
  readonly id: FieldRef<"Event", 'String'>
9241
9420
  readonly name: FieldRef<"Event", 'String'>
9242
9421
  readonly date: FieldRef<"Event", 'DateTime'>
9422
+ readonly startingDate: FieldRef<"Event", 'DateTime'>
9423
+ readonly endingDate: FieldRef<"Event", 'DateTime'>
9243
9424
  readonly location: FieldRef<"Event", 'String'>
9244
9425
  readonly folderId: FieldRef<"Event", 'String'>
9245
9426
  readonly tagAssistedId: FieldRef<"Event", 'String'>
9246
9427
  readonly tagConfirmedId: FieldRef<"Event", 'String'>
9247
9428
  readonly supraEventId: FieldRef<"Event", 'String'>
9429
+ readonly active: FieldRef<"Event", 'Boolean'>
9248
9430
  readonly created_at: FieldRef<"Event", 'DateTime'>
9249
9431
  readonly updated_at: FieldRef<"Event", 'DateTime'>
9250
9432
  }
@@ -9594,6 +9776,26 @@ export namespace Prisma {
9594
9776
  where?: EventWhereInput
9595
9777
  }
9596
9778
 
9779
+ /**
9780
+ * Event.tickets
9781
+ */
9782
+ export type Event$ticketsArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
9783
+ /**
9784
+ * Select specific fields to fetch from the Ticket
9785
+ */
9786
+ select?: TicketSelect<ExtArgs> | null
9787
+ /**
9788
+ * Choose, which related nodes to fetch as well
9789
+ */
9790
+ include?: TicketInclude<ExtArgs> | null
9791
+ where?: TicketWhereInput
9792
+ orderBy?: TicketOrderByWithRelationInput | TicketOrderByWithRelationInput[]
9793
+ cursor?: TicketWhereUniqueInput
9794
+ take?: number
9795
+ skip?: number
9796
+ distinct?: TicketScalarFieldEnum | TicketScalarFieldEnum[]
9797
+ }
9798
+
9597
9799
  /**
9598
9800
  * Event.subEvents
9599
9801
  */
@@ -9615,23 +9817,43 @@ export namespace Prisma {
9615
9817
  }
9616
9818
 
9617
9819
  /**
9618
- * Event.tickets
9820
+ * Event.tags
9619
9821
  */
9620
- export type Event$ticketsArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
9822
+ export type Event$tagsArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
9621
9823
  /**
9622
- * Select specific fields to fetch from the Ticket
9824
+ * Select specific fields to fetch from the Tag
9623
9825
  */
9624
- select?: TicketSelect<ExtArgs> | null
9826
+ select?: TagSelect<ExtArgs> | null
9625
9827
  /**
9626
9828
  * Choose, which related nodes to fetch as well
9627
9829
  */
9628
- include?: TicketInclude<ExtArgs> | null
9629
- where?: TicketWhereInput
9630
- orderBy?: TicketOrderByWithRelationInput | TicketOrderByWithRelationInput[]
9631
- cursor?: TicketWhereUniqueInput
9830
+ include?: TagInclude<ExtArgs> | null
9831
+ where?: TagWhereInput
9832
+ orderBy?: TagOrderByWithRelationInput | TagOrderByWithRelationInput[]
9833
+ cursor?: TagWhereUniqueInput
9632
9834
  take?: number
9633
9835
  skip?: number
9634
- distinct?: TicketScalarFieldEnum | TicketScalarFieldEnum[]
9836
+ distinct?: TagScalarFieldEnum | TagScalarFieldEnum[]
9837
+ }
9838
+
9839
+ /**
9840
+ * Event.eventTickets
9841
+ */
9842
+ export type Event$eventTicketsArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
9843
+ /**
9844
+ * Select specific fields to fetch from the EventTicket
9845
+ */
9846
+ select?: EventTicketSelect<ExtArgs> | null
9847
+ /**
9848
+ * Choose, which related nodes to fetch as well
9849
+ */
9850
+ include?: EventTicketInclude<ExtArgs> | null
9851
+ where?: EventTicketWhereInput
9852
+ orderBy?: EventTicketOrderByWithRelationInput | EventTicketOrderByWithRelationInput[]
9853
+ cursor?: EventTicketWhereUniqueInput
9854
+ take?: number
9855
+ skip?: number
9856
+ distinct?: EventTicketScalarFieldEnum | EventTicketScalarFieldEnum[]
9635
9857
  }
9636
9858
 
9637
9859
  /**
@@ -14252,86 +14474,1081 @@ export namespace Prisma {
14252
14474
 
14253
14475
 
14254
14476
  /**
14255
- * Enums
14477
+ * Model EventTicket
14256
14478
  */
14257
14479
 
14258
- export const TransactionIsolationLevel: {
14259
- ReadUncommitted: 'ReadUncommitted',
14260
- ReadCommitted: 'ReadCommitted',
14261
- RepeatableRead: 'RepeatableRead',
14262
- Serializable: 'Serializable'
14263
- };
14264
-
14265
- export type TransactionIsolationLevel = (typeof TransactionIsolationLevel)[keyof typeof TransactionIsolationLevel]
14480
+ export type AggregateEventTicket = {
14481
+ _count: EventTicketCountAggregateOutputType | null
14482
+ _avg: EventTicketAvgAggregateOutputType | null
14483
+ _sum: EventTicketSumAggregateOutputType | null
14484
+ _min: EventTicketMinAggregateOutputType | null
14485
+ _max: EventTicketMaxAggregateOutputType | null
14486
+ }
14266
14487
 
14488
+ export type EventTicketAvgAggregateOutputType = {
14489
+ amount: number | null
14490
+ price: number | null
14491
+ }
14267
14492
 
14268
- export const AccountScalarFieldEnum: {
14269
- id: 'id',
14270
- username: 'username',
14271
- password: 'password',
14272
- role: 'role',
14273
- isGlobalFilterActive: 'isGlobalFilterActive',
14274
- fcmToken: 'fcmToken',
14275
- created_at: 'created_at',
14276
- updated_at: 'updated_at'
14277
- };
14493
+ export type EventTicketSumAggregateOutputType = {
14494
+ amount: number | null
14495
+ price: number | null
14496
+ }
14278
14497
 
14279
- export type AccountScalarFieldEnum = (typeof AccountScalarFieldEnum)[keyof typeof AccountScalarFieldEnum]
14498
+ export type EventTicketMinAggregateOutputType = {
14499
+ id: string | null
14500
+ eventId: string | null
14501
+ amount: number | null
14502
+ type: $Enums.TicketType | null
14503
+ price: number | null
14504
+ created_at: Date | null
14505
+ updated_at: Date | null
14506
+ }
14280
14507
 
14508
+ export type EventTicketMaxAggregateOutputType = {
14509
+ id: string | null
14510
+ eventId: string | null
14511
+ amount: number | null
14512
+ type: $Enums.TicketType | null
14513
+ price: number | null
14514
+ created_at: Date | null
14515
+ updated_at: Date | null
14516
+ }
14281
14517
 
14282
- export const ProfileScalarFieldEnum: {
14283
- id: 'id',
14284
- shortId: 'shortId',
14285
- phoneNumber: 'phoneNumber',
14286
- secondaryPhoneNumber: 'secondaryPhoneNumber',
14287
- fullName: 'fullName',
14288
- firstName: 'firstName',
14289
- gender: 'gender',
14290
- birthDate: 'birthDate',
14291
- profilePictureUrl: 'profilePictureUrl',
14292
- instagram: 'instagram',
14293
- mail: 'mail',
14294
- dni: 'dni',
14295
- alternativeNames: 'alternativeNames',
14296
- birthLocationId: 'birthLocationId',
14297
- residenceLocationId: 'residenceLocationId',
14298
- isInTrash: 'isInTrash',
14299
- movedToTrashDate: 'movedToTrashDate',
14300
- created_at: 'created_at',
14301
- updated_at: 'updated_at'
14302
- };
14518
+ export type EventTicketCountAggregateOutputType = {
14519
+ id: number
14520
+ eventId: number
14521
+ amount: number
14522
+ type: number
14523
+ price: number
14524
+ created_at: number
14525
+ updated_at: number
14526
+ _all: number
14527
+ }
14303
14528
 
14304
- export type ProfileScalarFieldEnum = (typeof ProfileScalarFieldEnum)[keyof typeof ProfileScalarFieldEnum]
14305
14529
 
14530
+ export type EventTicketAvgAggregateInputType = {
14531
+ amount?: true
14532
+ price?: true
14533
+ }
14306
14534
 
14307
- export const LocationScalarFieldEnum: {
14308
- id: 'id',
14309
- latitude: 'latitude',
14310
- longitude: 'longitude',
14311
- country: 'country',
14312
- state: 'state',
14313
- city: 'city',
14314
- created_at: 'created_at',
14315
- updated_at: 'updated_at'
14316
- };
14535
+ export type EventTicketSumAggregateInputType = {
14536
+ amount?: true
14537
+ price?: true
14538
+ }
14317
14539
 
14318
- export type LocationScalarFieldEnum = (typeof LocationScalarFieldEnum)[keyof typeof LocationScalarFieldEnum]
14540
+ export type EventTicketMinAggregateInputType = {
14541
+ id?: true
14542
+ eventId?: true
14543
+ amount?: true
14544
+ type?: true
14545
+ price?: true
14546
+ created_at?: true
14547
+ updated_at?: true
14548
+ }
14319
14549
 
14550
+ export type EventTicketMaxAggregateInputType = {
14551
+ id?: true
14552
+ eventId?: true
14553
+ amount?: true
14554
+ type?: true
14555
+ price?: true
14556
+ created_at?: true
14557
+ updated_at?: true
14558
+ }
14320
14559
 
14321
- export const CommentScalarFieldEnum: {
14322
- id: 'id',
14323
- content: 'content',
14324
- createdBy: 'createdBy',
14325
- profileId: 'profileId',
14326
- isSolvable: 'isSolvable',
14327
- isSolved: 'isSolved',
14328
- solvedAt: 'solvedAt',
14329
- solvedById: 'solvedById',
14330
- created_at: 'created_at',
14331
- updated_at: 'updated_at'
14332
- };
14560
+ export type EventTicketCountAggregateInputType = {
14561
+ id?: true
14562
+ eventId?: true
14563
+ amount?: true
14564
+ type?: true
14565
+ price?: true
14566
+ created_at?: true
14567
+ updated_at?: true
14568
+ _all?: true
14569
+ }
14570
+
14571
+ export type EventTicketAggregateArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
14572
+ /**
14573
+ * Filter which EventTicket to aggregate.
14574
+ */
14575
+ where?: EventTicketWhereInput
14576
+ /**
14577
+ * {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs}
14578
+ *
14579
+ * Determine the order of EventTickets to fetch.
14580
+ */
14581
+ orderBy?: EventTicketOrderByWithRelationInput | EventTicketOrderByWithRelationInput[]
14582
+ /**
14583
+ * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs}
14584
+ *
14585
+ * Sets the start position
14586
+ */
14587
+ cursor?: EventTicketWhereUniqueInput
14588
+ /**
14589
+ * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
14590
+ *
14591
+ * Take `±n` EventTickets from the position of the cursor.
14592
+ */
14593
+ take?: number
14594
+ /**
14595
+ * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
14596
+ *
14597
+ * Skip the first `n` EventTickets.
14598
+ */
14599
+ skip?: number
14600
+ /**
14601
+ * {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
14602
+ *
14603
+ * Count returned EventTickets
14604
+ **/
14605
+ _count?: true | EventTicketCountAggregateInputType
14606
+ /**
14607
+ * {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
14608
+ *
14609
+ * Select which fields to average
14610
+ **/
14611
+ _avg?: EventTicketAvgAggregateInputType
14612
+ /**
14613
+ * {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
14614
+ *
14615
+ * Select which fields to sum
14616
+ **/
14617
+ _sum?: EventTicketSumAggregateInputType
14618
+ /**
14619
+ * {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
14620
+ *
14621
+ * Select which fields to find the minimum value
14622
+ **/
14623
+ _min?: EventTicketMinAggregateInputType
14624
+ /**
14625
+ * {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
14626
+ *
14627
+ * Select which fields to find the maximum value
14628
+ **/
14629
+ _max?: EventTicketMaxAggregateInputType
14630
+ }
14631
+
14632
+ export type GetEventTicketAggregateType<T extends EventTicketAggregateArgs> = {
14633
+ [P in keyof T & keyof AggregateEventTicket]: P extends '_count' | 'count'
14634
+ ? T[P] extends true
14635
+ ? number
14636
+ : GetScalarType<T[P], AggregateEventTicket[P]>
14637
+ : GetScalarType<T[P], AggregateEventTicket[P]>
14638
+ }
14639
+
14640
+
14641
+
14642
+
14643
+ export type EventTicketGroupByArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
14644
+ where?: EventTicketWhereInput
14645
+ orderBy?: EventTicketOrderByWithAggregationInput | EventTicketOrderByWithAggregationInput[]
14646
+ by: EventTicketScalarFieldEnum[] | EventTicketScalarFieldEnum
14647
+ having?: EventTicketScalarWhereWithAggregatesInput
14648
+ take?: number
14649
+ skip?: number
14650
+ _count?: EventTicketCountAggregateInputType | true
14651
+ _avg?: EventTicketAvgAggregateInputType
14652
+ _sum?: EventTicketSumAggregateInputType
14653
+ _min?: EventTicketMinAggregateInputType
14654
+ _max?: EventTicketMaxAggregateInputType
14655
+ }
14656
+
14657
+ export type EventTicketGroupByOutputType = {
14658
+ id: string
14659
+ eventId: string
14660
+ amount: number
14661
+ type: $Enums.TicketType
14662
+ price: number | null
14663
+ created_at: Date
14664
+ updated_at: Date
14665
+ _count: EventTicketCountAggregateOutputType | null
14666
+ _avg: EventTicketAvgAggregateOutputType | null
14667
+ _sum: EventTicketSumAggregateOutputType | null
14668
+ _min: EventTicketMinAggregateOutputType | null
14669
+ _max: EventTicketMaxAggregateOutputType | null
14670
+ }
14671
+
14672
+ type GetEventTicketGroupByPayload<T extends EventTicketGroupByArgs> = Prisma.PrismaPromise<
14673
+ Array<
14674
+ PickEnumerable<EventTicketGroupByOutputType, T['by']> &
14675
+ {
14676
+ [P in ((keyof T) & (keyof EventTicketGroupByOutputType))]: P extends '_count'
14677
+ ? T[P] extends boolean
14678
+ ? number
14679
+ : GetScalarType<T[P], EventTicketGroupByOutputType[P]>
14680
+ : GetScalarType<T[P], EventTicketGroupByOutputType[P]>
14681
+ }
14682
+ >
14683
+ >
14684
+
14685
+
14686
+ export type EventTicketSelect<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetSelect<{
14687
+ id?: boolean
14688
+ eventId?: boolean
14689
+ amount?: boolean
14690
+ type?: boolean
14691
+ price?: boolean
14692
+ created_at?: boolean
14693
+ updated_at?: boolean
14694
+ event?: boolean | EventDefaultArgs<ExtArgs>
14695
+ }, ExtArgs["result"]["eventTicket"]>
14696
+
14697
+ export type EventTicketSelectCreateManyAndReturn<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetSelect<{
14698
+ id?: boolean
14699
+ eventId?: boolean
14700
+ amount?: boolean
14701
+ type?: boolean
14702
+ price?: boolean
14703
+ created_at?: boolean
14704
+ updated_at?: boolean
14705
+ event?: boolean | EventDefaultArgs<ExtArgs>
14706
+ }, ExtArgs["result"]["eventTicket"]>
14707
+
14708
+ export type EventTicketSelectScalar = {
14709
+ id?: boolean
14710
+ eventId?: boolean
14711
+ amount?: boolean
14712
+ type?: boolean
14713
+ price?: boolean
14714
+ created_at?: boolean
14715
+ updated_at?: boolean
14716
+ }
14717
+
14718
+ export type EventTicketInclude<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
14719
+ event?: boolean | EventDefaultArgs<ExtArgs>
14720
+ }
14721
+ export type EventTicketIncludeCreateManyAndReturn<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
14722
+ event?: boolean | EventDefaultArgs<ExtArgs>
14723
+ }
14724
+
14725
+ export type $EventTicketPayload<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
14726
+ name: "EventTicket"
14727
+ objects: {
14728
+ event: Prisma.$EventPayload<ExtArgs>
14729
+ }
14730
+ scalars: $Extensions.GetPayloadResult<{
14731
+ id: string
14732
+ eventId: string
14733
+ amount: number
14734
+ type: $Enums.TicketType
14735
+ price: number | null
14736
+ created_at: Date
14737
+ updated_at: Date
14738
+ }, ExtArgs["result"]["eventTicket"]>
14739
+ composites: {}
14740
+ }
14741
+
14742
+ type EventTicketGetPayload<S extends boolean | null | undefined | EventTicketDefaultArgs> = $Result.GetResult<Prisma.$EventTicketPayload, S>
14743
+
14744
+ type EventTicketCountArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> =
14745
+ Omit<EventTicketFindManyArgs, 'select' | 'include' | 'distinct'> & {
14746
+ select?: EventTicketCountAggregateInputType | true
14747
+ }
14748
+
14749
+ export interface EventTicketDelegate<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> {
14750
+ [K: symbol]: { types: Prisma.TypeMap<ExtArgs>['model']['EventTicket'], meta: { name: 'EventTicket' } }
14751
+ /**
14752
+ * Find zero or one EventTicket that matches the filter.
14753
+ * @param {EventTicketFindUniqueArgs} args - Arguments to find a EventTicket
14754
+ * @example
14755
+ * // Get one EventTicket
14756
+ * const eventTicket = await prisma.eventTicket.findUnique({
14757
+ * where: {
14758
+ * // ... provide filter here
14759
+ * }
14760
+ * })
14761
+ */
14762
+ findUnique<T extends EventTicketFindUniqueArgs>(args: SelectSubset<T, EventTicketFindUniqueArgs<ExtArgs>>): Prisma__EventTicketClient<$Result.GetResult<Prisma.$EventTicketPayload<ExtArgs>, T, "findUnique"> | null, null, ExtArgs>
14763
+
14764
+ /**
14765
+ * Find one EventTicket that matches the filter or throw an error with `error.code='P2025'`
14766
+ * if no matches were found.
14767
+ * @param {EventTicketFindUniqueOrThrowArgs} args - Arguments to find a EventTicket
14768
+ * @example
14769
+ * // Get one EventTicket
14770
+ * const eventTicket = await prisma.eventTicket.findUniqueOrThrow({
14771
+ * where: {
14772
+ * // ... provide filter here
14773
+ * }
14774
+ * })
14775
+ */
14776
+ findUniqueOrThrow<T extends EventTicketFindUniqueOrThrowArgs>(args: SelectSubset<T, EventTicketFindUniqueOrThrowArgs<ExtArgs>>): Prisma__EventTicketClient<$Result.GetResult<Prisma.$EventTicketPayload<ExtArgs>, T, "findUniqueOrThrow">, never, ExtArgs>
14777
+
14778
+ /**
14779
+ * Find the first EventTicket that matches the filter.
14780
+ * Note, that providing `undefined` is treated as the value not being there.
14781
+ * Read more here: https://pris.ly/d/null-undefined
14782
+ * @param {EventTicketFindFirstArgs} args - Arguments to find a EventTicket
14783
+ * @example
14784
+ * // Get one EventTicket
14785
+ * const eventTicket = await prisma.eventTicket.findFirst({
14786
+ * where: {
14787
+ * // ... provide filter here
14788
+ * }
14789
+ * })
14790
+ */
14791
+ findFirst<T extends EventTicketFindFirstArgs>(args?: SelectSubset<T, EventTicketFindFirstArgs<ExtArgs>>): Prisma__EventTicketClient<$Result.GetResult<Prisma.$EventTicketPayload<ExtArgs>, T, "findFirst"> | null, null, ExtArgs>
14792
+
14793
+ /**
14794
+ * Find the first EventTicket that matches the filter or
14795
+ * throw `PrismaKnownClientError` with `P2025` code if no matches were found.
14796
+ * Note, that providing `undefined` is treated as the value not being there.
14797
+ * Read more here: https://pris.ly/d/null-undefined
14798
+ * @param {EventTicketFindFirstOrThrowArgs} args - Arguments to find a EventTicket
14799
+ * @example
14800
+ * // Get one EventTicket
14801
+ * const eventTicket = await prisma.eventTicket.findFirstOrThrow({
14802
+ * where: {
14803
+ * // ... provide filter here
14804
+ * }
14805
+ * })
14806
+ */
14807
+ findFirstOrThrow<T extends EventTicketFindFirstOrThrowArgs>(args?: SelectSubset<T, EventTicketFindFirstOrThrowArgs<ExtArgs>>): Prisma__EventTicketClient<$Result.GetResult<Prisma.$EventTicketPayload<ExtArgs>, T, "findFirstOrThrow">, never, ExtArgs>
14808
+
14809
+ /**
14810
+ * Find zero or more EventTickets that matches the filter.
14811
+ * Note, that providing `undefined` is treated as the value not being there.
14812
+ * Read more here: https://pris.ly/d/null-undefined
14813
+ * @param {EventTicketFindManyArgs} args - Arguments to filter and select certain fields only.
14814
+ * @example
14815
+ * // Get all EventTickets
14816
+ * const eventTickets = await prisma.eventTicket.findMany()
14817
+ *
14818
+ * // Get first 10 EventTickets
14819
+ * const eventTickets = await prisma.eventTicket.findMany({ take: 10 })
14820
+ *
14821
+ * // Only select the `id`
14822
+ * const eventTicketWithIdOnly = await prisma.eventTicket.findMany({ select: { id: true } })
14823
+ *
14824
+ */
14825
+ findMany<T extends EventTicketFindManyArgs>(args?: SelectSubset<T, EventTicketFindManyArgs<ExtArgs>>): Prisma.PrismaPromise<$Result.GetResult<Prisma.$EventTicketPayload<ExtArgs>, T, "findMany">>
14826
+
14827
+ /**
14828
+ * Create a EventTicket.
14829
+ * @param {EventTicketCreateArgs} args - Arguments to create a EventTicket.
14830
+ * @example
14831
+ * // Create one EventTicket
14832
+ * const EventTicket = await prisma.eventTicket.create({
14833
+ * data: {
14834
+ * // ... data to create a EventTicket
14835
+ * }
14836
+ * })
14837
+ *
14838
+ */
14839
+ create<T extends EventTicketCreateArgs>(args: SelectSubset<T, EventTicketCreateArgs<ExtArgs>>): Prisma__EventTicketClient<$Result.GetResult<Prisma.$EventTicketPayload<ExtArgs>, T, "create">, never, ExtArgs>
14840
+
14841
+ /**
14842
+ * Create many EventTickets.
14843
+ * @param {EventTicketCreateManyArgs} args - Arguments to create many EventTickets.
14844
+ * @example
14845
+ * // Create many EventTickets
14846
+ * const eventTicket = await prisma.eventTicket.createMany({
14847
+ * data: [
14848
+ * // ... provide data here
14849
+ * ]
14850
+ * })
14851
+ *
14852
+ */
14853
+ createMany<T extends EventTicketCreateManyArgs>(args?: SelectSubset<T, EventTicketCreateManyArgs<ExtArgs>>): Prisma.PrismaPromise<BatchPayload>
14854
+
14855
+ /**
14856
+ * Create many EventTickets and returns the data saved in the database.
14857
+ * @param {EventTicketCreateManyAndReturnArgs} args - Arguments to create many EventTickets.
14858
+ * @example
14859
+ * // Create many EventTickets
14860
+ * const eventTicket = await prisma.eventTicket.createManyAndReturn({
14861
+ * data: [
14862
+ * // ... provide data here
14863
+ * ]
14864
+ * })
14865
+ *
14866
+ * // Create many EventTickets and only return the `id`
14867
+ * const eventTicketWithIdOnly = await prisma.eventTicket.createManyAndReturn({
14868
+ * select: { id: true },
14869
+ * data: [
14870
+ * // ... provide data here
14871
+ * ]
14872
+ * })
14873
+ * Note, that providing `undefined` is treated as the value not being there.
14874
+ * Read more here: https://pris.ly/d/null-undefined
14875
+ *
14876
+ */
14877
+ createManyAndReturn<T extends EventTicketCreateManyAndReturnArgs>(args?: SelectSubset<T, EventTicketCreateManyAndReturnArgs<ExtArgs>>): Prisma.PrismaPromise<$Result.GetResult<Prisma.$EventTicketPayload<ExtArgs>, T, "createManyAndReturn">>
14878
+
14879
+ /**
14880
+ * Delete a EventTicket.
14881
+ * @param {EventTicketDeleteArgs} args - Arguments to delete one EventTicket.
14882
+ * @example
14883
+ * // Delete one EventTicket
14884
+ * const EventTicket = await prisma.eventTicket.delete({
14885
+ * where: {
14886
+ * // ... filter to delete one EventTicket
14887
+ * }
14888
+ * })
14889
+ *
14890
+ */
14891
+ delete<T extends EventTicketDeleteArgs>(args: SelectSubset<T, EventTicketDeleteArgs<ExtArgs>>): Prisma__EventTicketClient<$Result.GetResult<Prisma.$EventTicketPayload<ExtArgs>, T, "delete">, never, ExtArgs>
14892
+
14893
+ /**
14894
+ * Update one EventTicket.
14895
+ * @param {EventTicketUpdateArgs} args - Arguments to update one EventTicket.
14896
+ * @example
14897
+ * // Update one EventTicket
14898
+ * const eventTicket = await prisma.eventTicket.update({
14899
+ * where: {
14900
+ * // ... provide filter here
14901
+ * },
14902
+ * data: {
14903
+ * // ... provide data here
14904
+ * }
14905
+ * })
14906
+ *
14907
+ */
14908
+ update<T extends EventTicketUpdateArgs>(args: SelectSubset<T, EventTicketUpdateArgs<ExtArgs>>): Prisma__EventTicketClient<$Result.GetResult<Prisma.$EventTicketPayload<ExtArgs>, T, "update">, never, ExtArgs>
14909
+
14910
+ /**
14911
+ * Delete zero or more EventTickets.
14912
+ * @param {EventTicketDeleteManyArgs} args - Arguments to filter EventTickets to delete.
14913
+ * @example
14914
+ * // Delete a few EventTickets
14915
+ * const { count } = await prisma.eventTicket.deleteMany({
14916
+ * where: {
14917
+ * // ... provide filter here
14918
+ * }
14919
+ * })
14920
+ *
14921
+ */
14922
+ deleteMany<T extends EventTicketDeleteManyArgs>(args?: SelectSubset<T, EventTicketDeleteManyArgs<ExtArgs>>): Prisma.PrismaPromise<BatchPayload>
14923
+
14924
+ /**
14925
+ * Update zero or more EventTickets.
14926
+ * Note, that providing `undefined` is treated as the value not being there.
14927
+ * Read more here: https://pris.ly/d/null-undefined
14928
+ * @param {EventTicketUpdateManyArgs} args - Arguments to update one or more rows.
14929
+ * @example
14930
+ * // Update many EventTickets
14931
+ * const eventTicket = await prisma.eventTicket.updateMany({
14932
+ * where: {
14933
+ * // ... provide filter here
14934
+ * },
14935
+ * data: {
14936
+ * // ... provide data here
14937
+ * }
14938
+ * })
14939
+ *
14940
+ */
14941
+ updateMany<T extends EventTicketUpdateManyArgs>(args: SelectSubset<T, EventTicketUpdateManyArgs<ExtArgs>>): Prisma.PrismaPromise<BatchPayload>
14942
+
14943
+ /**
14944
+ * Create or update one EventTicket.
14945
+ * @param {EventTicketUpsertArgs} args - Arguments to update or create a EventTicket.
14946
+ * @example
14947
+ * // Update or create a EventTicket
14948
+ * const eventTicket = await prisma.eventTicket.upsert({
14949
+ * create: {
14950
+ * // ... data to create a EventTicket
14951
+ * },
14952
+ * update: {
14953
+ * // ... in case it already exists, update
14954
+ * },
14955
+ * where: {
14956
+ * // ... the filter for the EventTicket we want to update
14957
+ * }
14958
+ * })
14959
+ */
14960
+ upsert<T extends EventTicketUpsertArgs>(args: SelectSubset<T, EventTicketUpsertArgs<ExtArgs>>): Prisma__EventTicketClient<$Result.GetResult<Prisma.$EventTicketPayload<ExtArgs>, T, "upsert">, never, ExtArgs>
14961
+
14962
+
14963
+ /**
14964
+ * Count the number of EventTickets.
14965
+ * Note, that providing `undefined` is treated as the value not being there.
14966
+ * Read more here: https://pris.ly/d/null-undefined
14967
+ * @param {EventTicketCountArgs} args - Arguments to filter EventTickets to count.
14968
+ * @example
14969
+ * // Count the number of EventTickets
14970
+ * const count = await prisma.eventTicket.count({
14971
+ * where: {
14972
+ * // ... the filter for the EventTickets we want to count
14973
+ * }
14974
+ * })
14975
+ **/
14976
+ count<T extends EventTicketCountArgs>(
14977
+ args?: Subset<T, EventTicketCountArgs>,
14978
+ ): Prisma.PrismaPromise<
14979
+ T extends $Utils.Record<'select', any>
14980
+ ? T['select'] extends true
14981
+ ? number
14982
+ : GetScalarType<T['select'], EventTicketCountAggregateOutputType>
14983
+ : number
14984
+ >
14985
+
14986
+ /**
14987
+ * Allows you to perform aggregations operations on a EventTicket.
14988
+ * Note, that providing `undefined` is treated as the value not being there.
14989
+ * Read more here: https://pris.ly/d/null-undefined
14990
+ * @param {EventTicketAggregateArgs} args - Select which aggregations you would like to apply and on what fields.
14991
+ * @example
14992
+ * // Ordered by age ascending
14993
+ * // Where email contains prisma.io
14994
+ * // Limited to the 10 users
14995
+ * const aggregations = await prisma.user.aggregate({
14996
+ * _avg: {
14997
+ * age: true,
14998
+ * },
14999
+ * where: {
15000
+ * email: {
15001
+ * contains: "prisma.io",
15002
+ * },
15003
+ * },
15004
+ * orderBy: {
15005
+ * age: "asc",
15006
+ * },
15007
+ * take: 10,
15008
+ * })
15009
+ **/
15010
+ aggregate<T extends EventTicketAggregateArgs>(args: Subset<T, EventTicketAggregateArgs>): Prisma.PrismaPromise<GetEventTicketAggregateType<T>>
15011
+
15012
+ /**
15013
+ * Group by EventTicket.
15014
+ * Note, that providing `undefined` is treated as the value not being there.
15015
+ * Read more here: https://pris.ly/d/null-undefined
15016
+ * @param {EventTicketGroupByArgs} args - Group by arguments.
15017
+ * @example
15018
+ * // Group by city, order by createdAt, get count
15019
+ * const result = await prisma.user.groupBy({
15020
+ * by: ['city', 'createdAt'],
15021
+ * orderBy: {
15022
+ * createdAt: true
15023
+ * },
15024
+ * _count: {
15025
+ * _all: true
15026
+ * },
15027
+ * })
15028
+ *
15029
+ **/
15030
+ groupBy<
15031
+ T extends EventTicketGroupByArgs,
15032
+ HasSelectOrTake extends Or<
15033
+ Extends<'skip', Keys<T>>,
15034
+ Extends<'take', Keys<T>>
15035
+ >,
15036
+ OrderByArg extends True extends HasSelectOrTake
15037
+ ? { orderBy: EventTicketGroupByArgs['orderBy'] }
15038
+ : { orderBy?: EventTicketGroupByArgs['orderBy'] },
15039
+ OrderFields extends ExcludeUnderscoreKeys<Keys<MaybeTupleToUnion<T['orderBy']>>>,
15040
+ ByFields extends MaybeTupleToUnion<T['by']>,
15041
+ ByValid extends Has<ByFields, OrderFields>,
15042
+ HavingFields extends GetHavingFields<T['having']>,
15043
+ HavingValid extends Has<ByFields, HavingFields>,
15044
+ ByEmpty extends T['by'] extends never[] ? True : False,
15045
+ InputErrors extends ByEmpty extends True
15046
+ ? `Error: "by" must not be empty.`
15047
+ : HavingValid extends False
15048
+ ? {
15049
+ [P in HavingFields]: P extends ByFields
15050
+ ? never
15051
+ : P extends string
15052
+ ? `Error: Field "${P}" used in "having" needs to be provided in "by".`
15053
+ : [
15054
+ Error,
15055
+ 'Field ',
15056
+ P,
15057
+ ` in "having" needs to be provided in "by"`,
15058
+ ]
15059
+ }[HavingFields]
15060
+ : 'take' extends Keys<T>
15061
+ ? 'orderBy' extends Keys<T>
15062
+ ? ByValid extends True
15063
+ ? {}
15064
+ : {
15065
+ [P in OrderFields]: P extends ByFields
15066
+ ? never
15067
+ : `Error: Field "${P}" in "orderBy" needs to be provided in "by"`
15068
+ }[OrderFields]
15069
+ : 'Error: If you provide "take", you also need to provide "orderBy"'
15070
+ : 'skip' extends Keys<T>
15071
+ ? 'orderBy' extends Keys<T>
15072
+ ? ByValid extends True
15073
+ ? {}
15074
+ : {
15075
+ [P in OrderFields]: P extends ByFields
15076
+ ? never
15077
+ : `Error: Field "${P}" in "orderBy" needs to be provided in "by"`
15078
+ }[OrderFields]
15079
+ : 'Error: If you provide "skip", you also need to provide "orderBy"'
15080
+ : ByValid extends True
15081
+ ? {}
15082
+ : {
15083
+ [P in OrderFields]: P extends ByFields
15084
+ ? never
15085
+ : `Error: Field "${P}" in "orderBy" needs to be provided in "by"`
15086
+ }[OrderFields]
15087
+ >(args: SubsetIntersection<T, EventTicketGroupByArgs, OrderByArg> & InputErrors): {} extends InputErrors ? GetEventTicketGroupByPayload<T> : Prisma.PrismaPromise<InputErrors>
15088
+ /**
15089
+ * Fields of the EventTicket model
15090
+ */
15091
+ readonly fields: EventTicketFieldRefs;
15092
+ }
15093
+
15094
+ /**
15095
+ * The delegate class that acts as a "Promise-like" for EventTicket.
15096
+ * Why is this prefixed with `Prisma__`?
15097
+ * Because we want to prevent naming conflicts as mentioned in
15098
+ * https://github.com/prisma/prisma-client-js/issues/707
15099
+ */
15100
+ export interface Prisma__EventTicketClient<T, Null = never, ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> extends Prisma.PrismaPromise<T> {
15101
+ readonly [Symbol.toStringTag]: "PrismaPromise"
15102
+ event<T extends EventDefaultArgs<ExtArgs> = {}>(args?: Subset<T, EventDefaultArgs<ExtArgs>>): Prisma__EventClient<$Result.GetResult<Prisma.$EventPayload<ExtArgs>, T, "findUniqueOrThrow"> | Null, Null, ExtArgs>
15103
+ /**
15104
+ * Attaches callbacks for the resolution and/or rejection of the Promise.
15105
+ * @param onfulfilled The callback to execute when the Promise is resolved.
15106
+ * @param onrejected The callback to execute when the Promise is rejected.
15107
+ * @returns A Promise for the completion of which ever callback is executed.
15108
+ */
15109
+ then<TResult1 = T, TResult2 = never>(onfulfilled?: ((value: T) => TResult1 | PromiseLike<TResult1>) | undefined | null, onrejected?: ((reason: any) => TResult2 | PromiseLike<TResult2>) | undefined | null): $Utils.JsPromise<TResult1 | TResult2>
15110
+ /**
15111
+ * Attaches a callback for only the rejection of the Promise.
15112
+ * @param onrejected The callback to execute when the Promise is rejected.
15113
+ * @returns A Promise for the completion of the callback.
15114
+ */
15115
+ catch<TResult = never>(onrejected?: ((reason: any) => TResult | PromiseLike<TResult>) | undefined | null): $Utils.JsPromise<T | TResult>
15116
+ /**
15117
+ * Attaches a callback that is invoked when the Promise is settled (fulfilled or rejected). The
15118
+ * resolved value cannot be modified from the callback.
15119
+ * @param onfinally The callback to execute when the Promise is settled (fulfilled or rejected).
15120
+ * @returns A Promise for the completion of the callback.
15121
+ */
15122
+ finally(onfinally?: (() => void) | undefined | null): $Utils.JsPromise<T>
15123
+ }
15124
+
15125
+
15126
+
15127
+
15128
+ /**
15129
+ * Fields of the EventTicket model
15130
+ */
15131
+ interface EventTicketFieldRefs {
15132
+ readonly id: FieldRef<"EventTicket", 'String'>
15133
+ readonly eventId: FieldRef<"EventTicket", 'String'>
15134
+ readonly amount: FieldRef<"EventTicket", 'Int'>
15135
+ readonly type: FieldRef<"EventTicket", 'TicketType'>
15136
+ readonly price: FieldRef<"EventTicket", 'Float'>
15137
+ readonly created_at: FieldRef<"EventTicket", 'DateTime'>
15138
+ readonly updated_at: FieldRef<"EventTicket", 'DateTime'>
15139
+ }
15140
+
15141
+
15142
+ // Custom InputTypes
15143
+ /**
15144
+ * EventTicket findUnique
15145
+ */
15146
+ export type EventTicketFindUniqueArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
15147
+ /**
15148
+ * Select specific fields to fetch from the EventTicket
15149
+ */
15150
+ select?: EventTicketSelect<ExtArgs> | null
15151
+ /**
15152
+ * Choose, which related nodes to fetch as well
15153
+ */
15154
+ include?: EventTicketInclude<ExtArgs> | null
15155
+ /**
15156
+ * Filter, which EventTicket to fetch.
15157
+ */
15158
+ where: EventTicketWhereUniqueInput
15159
+ }
15160
+
15161
+ /**
15162
+ * EventTicket findUniqueOrThrow
15163
+ */
15164
+ export type EventTicketFindUniqueOrThrowArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
15165
+ /**
15166
+ * Select specific fields to fetch from the EventTicket
15167
+ */
15168
+ select?: EventTicketSelect<ExtArgs> | null
15169
+ /**
15170
+ * Choose, which related nodes to fetch as well
15171
+ */
15172
+ include?: EventTicketInclude<ExtArgs> | null
15173
+ /**
15174
+ * Filter, which EventTicket to fetch.
15175
+ */
15176
+ where: EventTicketWhereUniqueInput
15177
+ }
15178
+
15179
+ /**
15180
+ * EventTicket findFirst
15181
+ */
15182
+ export type EventTicketFindFirstArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
15183
+ /**
15184
+ * Select specific fields to fetch from the EventTicket
15185
+ */
15186
+ select?: EventTicketSelect<ExtArgs> | null
15187
+ /**
15188
+ * Choose, which related nodes to fetch as well
15189
+ */
15190
+ include?: EventTicketInclude<ExtArgs> | null
15191
+ /**
15192
+ * Filter, which EventTicket to fetch.
15193
+ */
15194
+ where?: EventTicketWhereInput
15195
+ /**
15196
+ * {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs}
15197
+ *
15198
+ * Determine the order of EventTickets to fetch.
15199
+ */
15200
+ orderBy?: EventTicketOrderByWithRelationInput | EventTicketOrderByWithRelationInput[]
15201
+ /**
15202
+ * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs}
15203
+ *
15204
+ * Sets the position for searching for EventTickets.
15205
+ */
15206
+ cursor?: EventTicketWhereUniqueInput
15207
+ /**
15208
+ * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
15209
+ *
15210
+ * Take `±n` EventTickets from the position of the cursor.
15211
+ */
15212
+ take?: number
15213
+ /**
15214
+ * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
15215
+ *
15216
+ * Skip the first `n` EventTickets.
15217
+ */
15218
+ skip?: number
15219
+ /**
15220
+ * {@link https://www.prisma.io/docs/concepts/components/prisma-client/distinct Distinct Docs}
15221
+ *
15222
+ * Filter by unique combinations of EventTickets.
15223
+ */
15224
+ distinct?: EventTicketScalarFieldEnum | EventTicketScalarFieldEnum[]
15225
+ }
15226
+
15227
+ /**
15228
+ * EventTicket findFirstOrThrow
15229
+ */
15230
+ export type EventTicketFindFirstOrThrowArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
15231
+ /**
15232
+ * Select specific fields to fetch from the EventTicket
15233
+ */
15234
+ select?: EventTicketSelect<ExtArgs> | null
15235
+ /**
15236
+ * Choose, which related nodes to fetch as well
15237
+ */
15238
+ include?: EventTicketInclude<ExtArgs> | null
15239
+ /**
15240
+ * Filter, which EventTicket to fetch.
15241
+ */
15242
+ where?: EventTicketWhereInput
15243
+ /**
15244
+ * {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs}
15245
+ *
15246
+ * Determine the order of EventTickets to fetch.
15247
+ */
15248
+ orderBy?: EventTicketOrderByWithRelationInput | EventTicketOrderByWithRelationInput[]
15249
+ /**
15250
+ * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs}
15251
+ *
15252
+ * Sets the position for searching for EventTickets.
15253
+ */
15254
+ cursor?: EventTicketWhereUniqueInput
15255
+ /**
15256
+ * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
15257
+ *
15258
+ * Take `±n` EventTickets from the position of the cursor.
15259
+ */
15260
+ take?: number
15261
+ /**
15262
+ * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
15263
+ *
15264
+ * Skip the first `n` EventTickets.
15265
+ */
15266
+ skip?: number
15267
+ /**
15268
+ * {@link https://www.prisma.io/docs/concepts/components/prisma-client/distinct Distinct Docs}
15269
+ *
15270
+ * Filter by unique combinations of EventTickets.
15271
+ */
15272
+ distinct?: EventTicketScalarFieldEnum | EventTicketScalarFieldEnum[]
15273
+ }
15274
+
15275
+ /**
15276
+ * EventTicket findMany
15277
+ */
15278
+ export type EventTicketFindManyArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
15279
+ /**
15280
+ * Select specific fields to fetch from the EventTicket
15281
+ */
15282
+ select?: EventTicketSelect<ExtArgs> | null
15283
+ /**
15284
+ * Choose, which related nodes to fetch as well
15285
+ */
15286
+ include?: EventTicketInclude<ExtArgs> | null
15287
+ /**
15288
+ * Filter, which EventTickets to fetch.
15289
+ */
15290
+ where?: EventTicketWhereInput
15291
+ /**
15292
+ * {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs}
15293
+ *
15294
+ * Determine the order of EventTickets to fetch.
15295
+ */
15296
+ orderBy?: EventTicketOrderByWithRelationInput | EventTicketOrderByWithRelationInput[]
15297
+ /**
15298
+ * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs}
15299
+ *
15300
+ * Sets the position for listing EventTickets.
15301
+ */
15302
+ cursor?: EventTicketWhereUniqueInput
15303
+ /**
15304
+ * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
15305
+ *
15306
+ * Take `±n` EventTickets from the position of the cursor.
15307
+ */
15308
+ take?: number
15309
+ /**
15310
+ * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
15311
+ *
15312
+ * Skip the first `n` EventTickets.
15313
+ */
15314
+ skip?: number
15315
+ distinct?: EventTicketScalarFieldEnum | EventTicketScalarFieldEnum[]
15316
+ }
15317
+
15318
+ /**
15319
+ * EventTicket create
15320
+ */
15321
+ export type EventTicketCreateArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
15322
+ /**
15323
+ * Select specific fields to fetch from the EventTicket
15324
+ */
15325
+ select?: EventTicketSelect<ExtArgs> | null
15326
+ /**
15327
+ * Choose, which related nodes to fetch as well
15328
+ */
15329
+ include?: EventTicketInclude<ExtArgs> | null
15330
+ /**
15331
+ * The data needed to create a EventTicket.
15332
+ */
15333
+ data: XOR<EventTicketCreateInput, EventTicketUncheckedCreateInput>
15334
+ }
15335
+
15336
+ /**
15337
+ * EventTicket createMany
15338
+ */
15339
+ export type EventTicketCreateManyArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
15340
+ /**
15341
+ * The data used to create many EventTickets.
15342
+ */
15343
+ data: EventTicketCreateManyInput | EventTicketCreateManyInput[]
15344
+ skipDuplicates?: boolean
15345
+ }
15346
+
15347
+ /**
15348
+ * EventTicket createManyAndReturn
15349
+ */
15350
+ export type EventTicketCreateManyAndReturnArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
15351
+ /**
15352
+ * Select specific fields to fetch from the EventTicket
15353
+ */
15354
+ select?: EventTicketSelectCreateManyAndReturn<ExtArgs> | null
15355
+ /**
15356
+ * The data used to create many EventTickets.
15357
+ */
15358
+ data: EventTicketCreateManyInput | EventTicketCreateManyInput[]
15359
+ skipDuplicates?: boolean
15360
+ /**
15361
+ * Choose, which related nodes to fetch as well
15362
+ */
15363
+ include?: EventTicketIncludeCreateManyAndReturn<ExtArgs> | null
15364
+ }
15365
+
15366
+ /**
15367
+ * EventTicket update
15368
+ */
15369
+ export type EventTicketUpdateArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
15370
+ /**
15371
+ * Select specific fields to fetch from the EventTicket
15372
+ */
15373
+ select?: EventTicketSelect<ExtArgs> | null
15374
+ /**
15375
+ * Choose, which related nodes to fetch as well
15376
+ */
15377
+ include?: EventTicketInclude<ExtArgs> | null
15378
+ /**
15379
+ * The data needed to update a EventTicket.
15380
+ */
15381
+ data: XOR<EventTicketUpdateInput, EventTicketUncheckedUpdateInput>
15382
+ /**
15383
+ * Choose, which EventTicket to update.
15384
+ */
15385
+ where: EventTicketWhereUniqueInput
15386
+ }
15387
+
15388
+ /**
15389
+ * EventTicket updateMany
15390
+ */
15391
+ export type EventTicketUpdateManyArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
15392
+ /**
15393
+ * The data used to update EventTickets.
15394
+ */
15395
+ data: XOR<EventTicketUpdateManyMutationInput, EventTicketUncheckedUpdateManyInput>
15396
+ /**
15397
+ * Filter which EventTickets to update
15398
+ */
15399
+ where?: EventTicketWhereInput
15400
+ }
15401
+
15402
+ /**
15403
+ * EventTicket upsert
15404
+ */
15405
+ export type EventTicketUpsertArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
15406
+ /**
15407
+ * Select specific fields to fetch from the EventTicket
15408
+ */
15409
+ select?: EventTicketSelect<ExtArgs> | null
15410
+ /**
15411
+ * Choose, which related nodes to fetch as well
15412
+ */
15413
+ include?: EventTicketInclude<ExtArgs> | null
15414
+ /**
15415
+ * The filter to search for the EventTicket to update in case it exists.
15416
+ */
15417
+ where: EventTicketWhereUniqueInput
15418
+ /**
15419
+ * In case the EventTicket found by the `where` argument doesn't exist, create a new EventTicket with this data.
15420
+ */
15421
+ create: XOR<EventTicketCreateInput, EventTicketUncheckedCreateInput>
15422
+ /**
15423
+ * In case the EventTicket was found with the provided `where` argument, update it with this data.
15424
+ */
15425
+ update: XOR<EventTicketUpdateInput, EventTicketUncheckedUpdateInput>
15426
+ }
15427
+
15428
+ /**
15429
+ * EventTicket delete
15430
+ */
15431
+ export type EventTicketDeleteArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
15432
+ /**
15433
+ * Select specific fields to fetch from the EventTicket
15434
+ */
15435
+ select?: EventTicketSelect<ExtArgs> | null
15436
+ /**
15437
+ * Choose, which related nodes to fetch as well
15438
+ */
15439
+ include?: EventTicketInclude<ExtArgs> | null
15440
+ /**
15441
+ * Filter which EventTicket to delete.
15442
+ */
15443
+ where: EventTicketWhereUniqueInput
15444
+ }
15445
+
15446
+ /**
15447
+ * EventTicket deleteMany
15448
+ */
15449
+ export type EventTicketDeleteManyArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
15450
+ /**
15451
+ * Filter which EventTickets to delete
15452
+ */
15453
+ where?: EventTicketWhereInput
15454
+ }
15455
+
15456
+ /**
15457
+ * EventTicket without action
15458
+ */
15459
+ export type EventTicketDefaultArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
15460
+ /**
15461
+ * Select specific fields to fetch from the EventTicket
15462
+ */
15463
+ select?: EventTicketSelect<ExtArgs> | null
15464
+ /**
15465
+ * Choose, which related nodes to fetch as well
15466
+ */
15467
+ include?: EventTicketInclude<ExtArgs> | null
15468
+ }
15469
+
15470
+
15471
+ /**
15472
+ * Enums
15473
+ */
15474
+
15475
+ export const TransactionIsolationLevel: {
15476
+ ReadUncommitted: 'ReadUncommitted',
15477
+ ReadCommitted: 'ReadCommitted',
15478
+ RepeatableRead: 'RepeatableRead',
15479
+ Serializable: 'Serializable'
15480
+ };
15481
+
15482
+ export type TransactionIsolationLevel = (typeof TransactionIsolationLevel)[keyof typeof TransactionIsolationLevel]
15483
+
15484
+
15485
+ export const AccountScalarFieldEnum: {
15486
+ id: 'id',
15487
+ username: 'username',
15488
+ password: 'password',
15489
+ role: 'role',
15490
+ isGlobalFilterActive: 'isGlobalFilterActive',
15491
+ fcmToken: 'fcmToken',
15492
+ created_at: 'created_at',
15493
+ updated_at: 'updated_at'
15494
+ };
15495
+
15496
+ export type AccountScalarFieldEnum = (typeof AccountScalarFieldEnum)[keyof typeof AccountScalarFieldEnum]
14333
15497
 
14334
- export type CommentScalarFieldEnum = (typeof CommentScalarFieldEnum)[keyof typeof CommentScalarFieldEnum]
15498
+
15499
+ export const ProfileScalarFieldEnum: {
15500
+ id: 'id',
15501
+ shortId: 'shortId',
15502
+ phoneNumber: 'phoneNumber',
15503
+ secondaryPhoneNumber: 'secondaryPhoneNumber',
15504
+ fullName: 'fullName',
15505
+ firstName: 'firstName',
15506
+ gender: 'gender',
15507
+ birthDate: 'birthDate',
15508
+ profilePictureUrl: 'profilePictureUrl',
15509
+ instagram: 'instagram',
15510
+ mail: 'mail',
15511
+ dni: 'dni',
15512
+ alternativeNames: 'alternativeNames',
15513
+ birthLocationId: 'birthLocationId',
15514
+ residenceLocationId: 'residenceLocationId',
15515
+ isInTrash: 'isInTrash',
15516
+ movedToTrashDate: 'movedToTrashDate',
15517
+ created_at: 'created_at',
15518
+ updated_at: 'updated_at'
15519
+ };
15520
+
15521
+ export type ProfileScalarFieldEnum = (typeof ProfileScalarFieldEnum)[keyof typeof ProfileScalarFieldEnum]
15522
+
15523
+
15524
+ export const LocationScalarFieldEnum: {
15525
+ id: 'id',
15526
+ latitude: 'latitude',
15527
+ longitude: 'longitude',
15528
+ country: 'country',
15529
+ state: 'state',
15530
+ city: 'city',
15531
+ created_at: 'created_at',
15532
+ updated_at: 'updated_at'
15533
+ };
15534
+
15535
+ export type LocationScalarFieldEnum = (typeof LocationScalarFieldEnum)[keyof typeof LocationScalarFieldEnum]
15536
+
15537
+
15538
+ export const CommentScalarFieldEnum: {
15539
+ id: 'id',
15540
+ content: 'content',
15541
+ createdBy: 'createdBy',
15542
+ profileId: 'profileId',
15543
+ isSolvable: 'isSolvable',
15544
+ isSolved: 'isSolved',
15545
+ solvedAt: 'solvedAt',
15546
+ solvedById: 'solvedById',
15547
+ created_at: 'created_at',
15548
+ updated_at: 'updated_at'
15549
+ };
15550
+
15551
+ export type CommentScalarFieldEnum = (typeof CommentScalarFieldEnum)[keyof typeof CommentScalarFieldEnum]
14335
15552
 
14336
15553
 
14337
15554
  export const TagScalarFieldEnum: {
@@ -14362,11 +15579,14 @@ export namespace Prisma {
14362
15579
  id: 'id',
14363
15580
  name: 'name',
14364
15581
  date: 'date',
15582
+ startingDate: 'startingDate',
15583
+ endingDate: 'endingDate',
14365
15584
  location: 'location',
14366
15585
  folderId: 'folderId',
14367
15586
  tagAssistedId: 'tagAssistedId',
14368
15587
  tagConfirmedId: 'tagConfirmedId',
14369
15588
  supraEventId: 'supraEventId',
15589
+ active: 'active',
14370
15590
  created_at: 'created_at',
14371
15591
  updated_at: 'updated_at'
14372
15592
  };
@@ -14432,6 +15652,19 @@ export namespace Prisma {
14432
15652
  export type EnumsScalarFieldEnum = (typeof EnumsScalarFieldEnum)[keyof typeof EnumsScalarFieldEnum]
14433
15653
 
14434
15654
 
15655
+ export const EventTicketScalarFieldEnum: {
15656
+ id: 'id',
15657
+ eventId: 'eventId',
15658
+ amount: 'amount',
15659
+ type: 'type',
15660
+ price: 'price',
15661
+ created_at: 'created_at',
15662
+ updated_at: 'updated_at'
15663
+ };
15664
+
15665
+ export type EventTicketScalarFieldEnum = (typeof EventTicketScalarFieldEnum)[keyof typeof EventTicketScalarFieldEnum]
15666
+
15667
+
14435
15668
  export const SortOrder: {
14436
15669
  asc: 'asc',
14437
15670
  desc: 'desc'
@@ -15044,6 +16277,7 @@ export namespace Prisma {
15044
16277
  accounts?: AccountListRelationFilter
15045
16278
  profiles?: ProfileListRelationFilter
15046
16279
  accountsGlobalFilter?: AccountListRelationFilter
16280
+ Event?: EventListRelationFilter
15047
16281
  }
15048
16282
 
15049
16283
  export type TagOrderByWithRelationInput = {
@@ -15059,6 +16293,7 @@ export namespace Prisma {
15059
16293
  accounts?: AccountOrderByRelationAggregateInput
15060
16294
  profiles?: ProfileOrderByRelationAggregateInput
15061
16295
  accountsGlobalFilter?: AccountOrderByRelationAggregateInput
16296
+ Event?: EventOrderByRelationAggregateInput
15062
16297
  }
15063
16298
 
15064
16299
  export type TagWhereUniqueInput = Prisma.AtLeast<{
@@ -15077,6 +16312,7 @@ export namespace Prisma {
15077
16312
  accounts?: AccountListRelationFilter
15078
16313
  profiles?: ProfileListRelationFilter
15079
16314
  accountsGlobalFilter?: AccountListRelationFilter
16315
+ Event?: EventListRelationFilter
15080
16316
  }, "id">
15081
16317
 
15082
16318
  export type TagOrderByWithAggregationInput = {
@@ -15170,38 +16406,48 @@ export namespace Prisma {
15170
16406
  id?: StringFilter<"Event"> | string
15171
16407
  name?: StringFilter<"Event"> | string
15172
16408
  date?: DateTimeFilter<"Event"> | Date | string
16409
+ startingDate?: DateTimeFilter<"Event"> | Date | string
16410
+ endingDate?: DateTimeFilter<"Event"> | Date | string
15173
16411
  location?: StringFilter<"Event"> | string
15174
16412
  folderId?: StringNullableFilter<"Event"> | string | null
15175
16413
  tagAssistedId?: StringFilter<"Event"> | string
15176
16414
  tagConfirmedId?: StringFilter<"Event"> | string
15177
16415
  supraEventId?: StringNullableFilter<"Event"> | string | null
16416
+ active?: BoolFilter<"Event"> | boolean
15178
16417
  created_at?: DateTimeFilter<"Event"> | Date | string
15179
16418
  updated_at?: DateTimeFilter<"Event"> | Date | string
15180
16419
  folder?: XOR<EventFolderNullableRelationFilter, EventFolderWhereInput> | null
15181
16420
  tagAssisted?: XOR<TagRelationFilter, TagWhereInput>
15182
16421
  tagConfirmed?: XOR<TagRelationFilter, TagWhereInput>
15183
16422
  supraEvent?: XOR<EventNullableRelationFilter, EventWhereInput> | null
15184
- subEvents?: EventListRelationFilter
15185
16423
  tickets?: TicketListRelationFilter
16424
+ subEvents?: EventListRelationFilter
16425
+ tags?: TagListRelationFilter
16426
+ eventTickets?: EventTicketListRelationFilter
15186
16427
  }
15187
16428
 
15188
16429
  export type EventOrderByWithRelationInput = {
15189
16430
  id?: SortOrder
15190
16431
  name?: SortOrder
15191
16432
  date?: SortOrder
16433
+ startingDate?: SortOrder
16434
+ endingDate?: SortOrder
15192
16435
  location?: SortOrder
15193
16436
  folderId?: SortOrderInput | SortOrder
15194
16437
  tagAssistedId?: SortOrder
15195
16438
  tagConfirmedId?: SortOrder
15196
16439
  supraEventId?: SortOrderInput | SortOrder
16440
+ active?: SortOrder
15197
16441
  created_at?: SortOrder
15198
16442
  updated_at?: SortOrder
15199
16443
  folder?: EventFolderOrderByWithRelationInput
15200
16444
  tagAssisted?: TagOrderByWithRelationInput
15201
16445
  tagConfirmed?: TagOrderByWithRelationInput
15202
16446
  supraEvent?: EventOrderByWithRelationInput
15203
- subEvents?: EventOrderByRelationAggregateInput
15204
16447
  tickets?: TicketOrderByRelationAggregateInput
16448
+ subEvents?: EventOrderByRelationAggregateInput
16449
+ tags?: TagOrderByRelationAggregateInput
16450
+ eventTickets?: EventTicketOrderByRelationAggregateInput
15205
16451
  }
15206
16452
 
15207
16453
  export type EventWhereUniqueInput = Prisma.AtLeast<{
@@ -15213,28 +16459,36 @@ export namespace Prisma {
15213
16459
  NOT?: EventWhereInput | EventWhereInput[]
15214
16460
  name?: StringFilter<"Event"> | string
15215
16461
  date?: DateTimeFilter<"Event"> | Date | string
16462
+ startingDate?: DateTimeFilter<"Event"> | Date | string
16463
+ endingDate?: DateTimeFilter<"Event"> | Date | string
15216
16464
  location?: StringFilter<"Event"> | string
15217
16465
  folderId?: StringNullableFilter<"Event"> | string | null
15218
16466
  supraEventId?: StringNullableFilter<"Event"> | string | null
16467
+ active?: BoolFilter<"Event"> | boolean
15219
16468
  created_at?: DateTimeFilter<"Event"> | Date | string
15220
16469
  updated_at?: DateTimeFilter<"Event"> | Date | string
15221
16470
  folder?: XOR<EventFolderNullableRelationFilter, EventFolderWhereInput> | null
15222
16471
  tagAssisted?: XOR<TagRelationFilter, TagWhereInput>
15223
16472
  tagConfirmed?: XOR<TagRelationFilter, TagWhereInput>
15224
16473
  supraEvent?: XOR<EventNullableRelationFilter, EventWhereInput> | null
15225
- subEvents?: EventListRelationFilter
15226
16474
  tickets?: TicketListRelationFilter
16475
+ subEvents?: EventListRelationFilter
16476
+ tags?: TagListRelationFilter
16477
+ eventTickets?: EventTicketListRelationFilter
15227
16478
  }, "id" | "tagAssistedId" | "tagConfirmedId">
15228
16479
 
15229
16480
  export type EventOrderByWithAggregationInput = {
15230
16481
  id?: SortOrder
15231
16482
  name?: SortOrder
15232
16483
  date?: SortOrder
16484
+ startingDate?: SortOrder
16485
+ endingDate?: SortOrder
15233
16486
  location?: SortOrder
15234
16487
  folderId?: SortOrderInput | SortOrder
15235
16488
  tagAssistedId?: SortOrder
15236
16489
  tagConfirmedId?: SortOrder
15237
16490
  supraEventId?: SortOrderInput | SortOrder
16491
+ active?: SortOrder
15238
16492
  created_at?: SortOrder
15239
16493
  updated_at?: SortOrder
15240
16494
  _count?: EventCountOrderByAggregateInput
@@ -15249,11 +16503,14 @@ export namespace Prisma {
15249
16503
  id?: StringWithAggregatesFilter<"Event"> | string
15250
16504
  name?: StringWithAggregatesFilter<"Event"> | string
15251
16505
  date?: DateTimeWithAggregatesFilter<"Event"> | Date | string
16506
+ startingDate?: DateTimeWithAggregatesFilter<"Event"> | Date | string
16507
+ endingDate?: DateTimeWithAggregatesFilter<"Event"> | Date | string
15252
16508
  location?: StringWithAggregatesFilter<"Event"> | string
15253
16509
  folderId?: StringNullableWithAggregatesFilter<"Event"> | string | null
15254
16510
  tagAssistedId?: StringWithAggregatesFilter<"Event"> | string
15255
16511
  tagConfirmedId?: StringWithAggregatesFilter<"Event"> | string
15256
16512
  supraEventId?: StringNullableWithAggregatesFilter<"Event"> | string | null
16513
+ active?: BoolWithAggregatesFilter<"Event"> | boolean
15257
16514
  created_at?: DateTimeWithAggregatesFilter<"Event"> | Date | string
15258
16515
  updated_at?: DateTimeWithAggregatesFilter<"Event"> | Date | string
15259
16516
  }
@@ -15542,6 +16799,73 @@ export namespace Prisma {
15542
16799
  templateCategory?: EnumTemplateCategoryWithAggregatesFilter<"Enums"> | $Enums.TemplateCategory
15543
16800
  }
15544
16801
 
16802
+ export type EventTicketWhereInput = {
16803
+ AND?: EventTicketWhereInput | EventTicketWhereInput[]
16804
+ OR?: EventTicketWhereInput[]
16805
+ NOT?: EventTicketWhereInput | EventTicketWhereInput[]
16806
+ id?: StringFilter<"EventTicket"> | string
16807
+ eventId?: StringFilter<"EventTicket"> | string
16808
+ amount?: IntFilter<"EventTicket"> | number
16809
+ type?: EnumTicketTypeFilter<"EventTicket"> | $Enums.TicketType
16810
+ price?: FloatNullableFilter<"EventTicket"> | number | null
16811
+ created_at?: DateTimeFilter<"EventTicket"> | Date | string
16812
+ updated_at?: DateTimeFilter<"EventTicket"> | Date | string
16813
+ event?: XOR<EventRelationFilter, EventWhereInput>
16814
+ }
16815
+
16816
+ export type EventTicketOrderByWithRelationInput = {
16817
+ id?: SortOrder
16818
+ eventId?: SortOrder
16819
+ amount?: SortOrder
16820
+ type?: SortOrder
16821
+ price?: SortOrderInput | SortOrder
16822
+ created_at?: SortOrder
16823
+ updated_at?: SortOrder
16824
+ event?: EventOrderByWithRelationInput
16825
+ }
16826
+
16827
+ export type EventTicketWhereUniqueInput = Prisma.AtLeast<{
16828
+ id?: string
16829
+ AND?: EventTicketWhereInput | EventTicketWhereInput[]
16830
+ OR?: EventTicketWhereInput[]
16831
+ NOT?: EventTicketWhereInput | EventTicketWhereInput[]
16832
+ eventId?: StringFilter<"EventTicket"> | string
16833
+ amount?: IntFilter<"EventTicket"> | number
16834
+ type?: EnumTicketTypeFilter<"EventTicket"> | $Enums.TicketType
16835
+ price?: FloatNullableFilter<"EventTicket"> | number | null
16836
+ created_at?: DateTimeFilter<"EventTicket"> | Date | string
16837
+ updated_at?: DateTimeFilter<"EventTicket"> | Date | string
16838
+ event?: XOR<EventRelationFilter, EventWhereInput>
16839
+ }, "id">
16840
+
16841
+ export type EventTicketOrderByWithAggregationInput = {
16842
+ id?: SortOrder
16843
+ eventId?: SortOrder
16844
+ amount?: SortOrder
16845
+ type?: SortOrder
16846
+ price?: SortOrderInput | SortOrder
16847
+ created_at?: SortOrder
16848
+ updated_at?: SortOrder
16849
+ _count?: EventTicketCountOrderByAggregateInput
16850
+ _avg?: EventTicketAvgOrderByAggregateInput
16851
+ _max?: EventTicketMaxOrderByAggregateInput
16852
+ _min?: EventTicketMinOrderByAggregateInput
16853
+ _sum?: EventTicketSumOrderByAggregateInput
16854
+ }
16855
+
16856
+ export type EventTicketScalarWhereWithAggregatesInput = {
16857
+ AND?: EventTicketScalarWhereWithAggregatesInput | EventTicketScalarWhereWithAggregatesInput[]
16858
+ OR?: EventTicketScalarWhereWithAggregatesInput[]
16859
+ NOT?: EventTicketScalarWhereWithAggregatesInput | EventTicketScalarWhereWithAggregatesInput[]
16860
+ id?: StringWithAggregatesFilter<"EventTicket"> | string
16861
+ eventId?: StringWithAggregatesFilter<"EventTicket"> | string
16862
+ amount?: IntWithAggregatesFilter<"EventTicket"> | number
16863
+ type?: EnumTicketTypeWithAggregatesFilter<"EventTicket"> | $Enums.TicketType
16864
+ price?: FloatNullableWithAggregatesFilter<"EventTicket"> | number | null
16865
+ created_at?: DateTimeWithAggregatesFilter<"EventTicket"> | Date | string
16866
+ updated_at?: DateTimeWithAggregatesFilter<"EventTicket"> | Date | string
16867
+ }
16868
+
15545
16869
  export type AccountCreateInput = {
15546
16870
  id?: string
15547
16871
  username: string
@@ -15984,6 +17308,7 @@ export namespace Prisma {
15984
17308
  accounts?: AccountCreateNestedManyWithoutTagsInput
15985
17309
  profiles?: ProfileCreateNestedManyWithoutTagsInput
15986
17310
  accountsGlobalFilter?: AccountCreateNestedManyWithoutGlobalFilterInput
17311
+ Event?: EventCreateNestedManyWithoutTagsInput
15987
17312
  }
15988
17313
 
15989
17314
  export type TagUncheckedCreateInput = {
@@ -15998,6 +17323,7 @@ export namespace Prisma {
15998
17323
  accounts?: AccountUncheckedCreateNestedManyWithoutTagsInput
15999
17324
  profiles?: ProfileUncheckedCreateNestedManyWithoutTagsInput
16000
17325
  accountsGlobalFilter?: AccountUncheckedCreateNestedManyWithoutGlobalFilterInput
17326
+ Event?: EventUncheckedCreateNestedManyWithoutTagsInput
16001
17327
  }
16002
17328
 
16003
17329
  export type TagUpdateInput = {
@@ -16012,6 +17338,7 @@ export namespace Prisma {
16012
17338
  accounts?: AccountUpdateManyWithoutTagsNestedInput
16013
17339
  profiles?: ProfileUpdateManyWithoutTagsNestedInput
16014
17340
  accountsGlobalFilter?: AccountUpdateManyWithoutGlobalFilterNestedInput
17341
+ Event?: EventUpdateManyWithoutTagsNestedInput
16015
17342
  }
16016
17343
 
16017
17344
  export type TagUncheckedUpdateInput = {
@@ -16026,6 +17353,7 @@ export namespace Prisma {
16026
17353
  accounts?: AccountUncheckedUpdateManyWithoutTagsNestedInput
16027
17354
  profiles?: ProfileUncheckedUpdateManyWithoutTagsNestedInput
16028
17355
  accountsGlobalFilter?: AccountUncheckedUpdateManyWithoutGlobalFilterNestedInput
17356
+ Event?: EventUncheckedUpdateManyWithoutTagsNestedInput
16029
17357
  }
16030
17358
 
16031
17359
  export type TagCreateManyInput = {
@@ -16125,71 +17453,94 @@ export namespace Prisma {
16125
17453
  id?: string
16126
17454
  name: string
16127
17455
  date: Date | string
17456
+ startingDate: Date | string
17457
+ endingDate: Date | string
16128
17458
  location: string
17459
+ active?: boolean
16129
17460
  created_at?: Date | string
16130
17461
  updated_at?: Date | string
16131
17462
  folder?: EventFolderCreateNestedOneWithoutEventsInput
16132
17463
  tagAssisted: TagCreateNestedOneWithoutAssistedEventInput
16133
17464
  tagConfirmed: TagCreateNestedOneWithoutConfirmedEventInput
16134
17465
  supraEvent?: EventCreateNestedOneWithoutSubEventsInput
16135
- subEvents?: EventCreateNestedManyWithoutSupraEventInput
16136
17466
  tickets?: TicketCreateNestedManyWithoutEventInput
17467
+ subEvents?: EventCreateNestedManyWithoutSupraEventInput
17468
+ tags?: TagCreateNestedManyWithoutEventInput
17469
+ eventTickets?: EventTicketCreateNestedManyWithoutEventInput
16137
17470
  }
16138
17471
 
16139
17472
  export type EventUncheckedCreateInput = {
16140
17473
  id?: string
16141
17474
  name: string
16142
17475
  date: Date | string
17476
+ startingDate: Date | string
17477
+ endingDate: Date | string
16143
17478
  location: string
16144
17479
  folderId?: string | null
16145
17480
  tagAssistedId: string
16146
17481
  tagConfirmedId: string
16147
17482
  supraEventId?: string | null
17483
+ active?: boolean
16148
17484
  created_at?: Date | string
16149
17485
  updated_at?: Date | string
16150
- subEvents?: EventUncheckedCreateNestedManyWithoutSupraEventInput
16151
17486
  tickets?: TicketUncheckedCreateNestedManyWithoutEventInput
17487
+ subEvents?: EventUncheckedCreateNestedManyWithoutSupraEventInput
17488
+ tags?: TagUncheckedCreateNestedManyWithoutEventInput
17489
+ eventTickets?: EventTicketUncheckedCreateNestedManyWithoutEventInput
16152
17490
  }
16153
17491
 
16154
17492
  export type EventUpdateInput = {
16155
17493
  id?: StringFieldUpdateOperationsInput | string
16156
17494
  name?: StringFieldUpdateOperationsInput | string
16157
17495
  date?: DateTimeFieldUpdateOperationsInput | Date | string
17496
+ startingDate?: DateTimeFieldUpdateOperationsInput | Date | string
17497
+ endingDate?: DateTimeFieldUpdateOperationsInput | Date | string
16158
17498
  location?: StringFieldUpdateOperationsInput | string
17499
+ active?: BoolFieldUpdateOperationsInput | boolean
16159
17500
  created_at?: DateTimeFieldUpdateOperationsInput | Date | string
16160
17501
  updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
16161
17502
  folder?: EventFolderUpdateOneWithoutEventsNestedInput
16162
17503
  tagAssisted?: TagUpdateOneRequiredWithoutAssistedEventNestedInput
16163
17504
  tagConfirmed?: TagUpdateOneRequiredWithoutConfirmedEventNestedInput
16164
17505
  supraEvent?: EventUpdateOneWithoutSubEventsNestedInput
16165
- subEvents?: EventUpdateManyWithoutSupraEventNestedInput
16166
17506
  tickets?: TicketUpdateManyWithoutEventNestedInput
17507
+ subEvents?: EventUpdateManyWithoutSupraEventNestedInput
17508
+ tags?: TagUpdateManyWithoutEventNestedInput
17509
+ eventTickets?: EventTicketUpdateManyWithoutEventNestedInput
16167
17510
  }
16168
17511
 
16169
17512
  export type EventUncheckedUpdateInput = {
16170
17513
  id?: StringFieldUpdateOperationsInput | string
16171
17514
  name?: StringFieldUpdateOperationsInput | string
16172
17515
  date?: DateTimeFieldUpdateOperationsInput | Date | string
17516
+ startingDate?: DateTimeFieldUpdateOperationsInput | Date | string
17517
+ endingDate?: DateTimeFieldUpdateOperationsInput | Date | string
16173
17518
  location?: StringFieldUpdateOperationsInput | string
16174
17519
  folderId?: NullableStringFieldUpdateOperationsInput | string | null
16175
17520
  tagAssistedId?: StringFieldUpdateOperationsInput | string
16176
17521
  tagConfirmedId?: StringFieldUpdateOperationsInput | string
16177
17522
  supraEventId?: NullableStringFieldUpdateOperationsInput | string | null
17523
+ active?: BoolFieldUpdateOperationsInput | boolean
16178
17524
  created_at?: DateTimeFieldUpdateOperationsInput | Date | string
16179
17525
  updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
16180
- subEvents?: EventUncheckedUpdateManyWithoutSupraEventNestedInput
16181
17526
  tickets?: TicketUncheckedUpdateManyWithoutEventNestedInput
17527
+ subEvents?: EventUncheckedUpdateManyWithoutSupraEventNestedInput
17528
+ tags?: TagUncheckedUpdateManyWithoutEventNestedInput
17529
+ eventTickets?: EventTicketUncheckedUpdateManyWithoutEventNestedInput
16182
17530
  }
16183
17531
 
16184
17532
  export type EventCreateManyInput = {
16185
17533
  id?: string
16186
17534
  name: string
16187
17535
  date: Date | string
17536
+ startingDate: Date | string
17537
+ endingDate: Date | string
16188
17538
  location: string
16189
17539
  folderId?: string | null
16190
17540
  tagAssistedId: string
16191
17541
  tagConfirmedId: string
16192
17542
  supraEventId?: string | null
17543
+ active?: boolean
16193
17544
  created_at?: Date | string
16194
17545
  updated_at?: Date | string
16195
17546
  }
@@ -16198,7 +17549,10 @@ export namespace Prisma {
16198
17549
  id?: StringFieldUpdateOperationsInput | string
16199
17550
  name?: StringFieldUpdateOperationsInput | string
16200
17551
  date?: DateTimeFieldUpdateOperationsInput | Date | string
17552
+ startingDate?: DateTimeFieldUpdateOperationsInput | Date | string
17553
+ endingDate?: DateTimeFieldUpdateOperationsInput | Date | string
16201
17554
  location?: StringFieldUpdateOperationsInput | string
17555
+ active?: BoolFieldUpdateOperationsInput | boolean
16202
17556
  created_at?: DateTimeFieldUpdateOperationsInput | Date | string
16203
17557
  updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
16204
17558
  }
@@ -16207,11 +17561,14 @@ export namespace Prisma {
16207
17561
  id?: StringFieldUpdateOperationsInput | string
16208
17562
  name?: StringFieldUpdateOperationsInput | string
16209
17563
  date?: DateTimeFieldUpdateOperationsInput | Date | string
17564
+ startingDate?: DateTimeFieldUpdateOperationsInput | Date | string
17565
+ endingDate?: DateTimeFieldUpdateOperationsInput | Date | string
16210
17566
  location?: StringFieldUpdateOperationsInput | string
16211
17567
  folderId?: NullableStringFieldUpdateOperationsInput | string | null
16212
17568
  tagAssistedId?: StringFieldUpdateOperationsInput | string
16213
17569
  tagConfirmedId?: StringFieldUpdateOperationsInput | string
16214
17570
  supraEventId?: NullableStringFieldUpdateOperationsInput | string | null
17571
+ active?: BoolFieldUpdateOperationsInput | boolean
16215
17572
  created_at?: DateTimeFieldUpdateOperationsInput | Date | string
16216
17573
  updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
16217
17574
  }
@@ -16519,6 +17876,75 @@ export namespace Prisma {
16519
17876
  templateCategory?: EnumTemplateCategoryFieldUpdateOperationsInput | $Enums.TemplateCategory
16520
17877
  }
16521
17878
 
17879
+ export type EventTicketCreateInput = {
17880
+ id?: string
17881
+ amount: number
17882
+ type: $Enums.TicketType
17883
+ price?: number | null
17884
+ created_at?: Date | string
17885
+ updated_at?: Date | string
17886
+ event: EventCreateNestedOneWithoutEventTicketsInput
17887
+ }
17888
+
17889
+ export type EventTicketUncheckedCreateInput = {
17890
+ id?: string
17891
+ eventId: string
17892
+ amount: number
17893
+ type: $Enums.TicketType
17894
+ price?: number | null
17895
+ created_at?: Date | string
17896
+ updated_at?: Date | string
17897
+ }
17898
+
17899
+ export type EventTicketUpdateInput = {
17900
+ id?: StringFieldUpdateOperationsInput | string
17901
+ amount?: IntFieldUpdateOperationsInput | number
17902
+ type?: EnumTicketTypeFieldUpdateOperationsInput | $Enums.TicketType
17903
+ price?: NullableFloatFieldUpdateOperationsInput | number | null
17904
+ created_at?: DateTimeFieldUpdateOperationsInput | Date | string
17905
+ updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
17906
+ event?: EventUpdateOneRequiredWithoutEventTicketsNestedInput
17907
+ }
17908
+
17909
+ export type EventTicketUncheckedUpdateInput = {
17910
+ id?: StringFieldUpdateOperationsInput | string
17911
+ eventId?: StringFieldUpdateOperationsInput | string
17912
+ amount?: IntFieldUpdateOperationsInput | number
17913
+ type?: EnumTicketTypeFieldUpdateOperationsInput | $Enums.TicketType
17914
+ price?: NullableFloatFieldUpdateOperationsInput | number | null
17915
+ created_at?: DateTimeFieldUpdateOperationsInput | Date | string
17916
+ updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
17917
+ }
17918
+
17919
+ export type EventTicketCreateManyInput = {
17920
+ id?: string
17921
+ eventId: string
17922
+ amount: number
17923
+ type: $Enums.TicketType
17924
+ price?: number | null
17925
+ created_at?: Date | string
17926
+ updated_at?: Date | string
17927
+ }
17928
+
17929
+ export type EventTicketUpdateManyMutationInput = {
17930
+ id?: StringFieldUpdateOperationsInput | string
17931
+ amount?: IntFieldUpdateOperationsInput | number
17932
+ type?: EnumTicketTypeFieldUpdateOperationsInput | $Enums.TicketType
17933
+ price?: NullableFloatFieldUpdateOperationsInput | number | null
17934
+ created_at?: DateTimeFieldUpdateOperationsInput | Date | string
17935
+ updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
17936
+ }
17937
+
17938
+ export type EventTicketUncheckedUpdateManyInput = {
17939
+ id?: StringFieldUpdateOperationsInput | string
17940
+ eventId?: StringFieldUpdateOperationsInput | string
17941
+ amount?: IntFieldUpdateOperationsInput | number
17942
+ type?: EnumTicketTypeFieldUpdateOperationsInput | $Enums.TicketType
17943
+ price?: NullableFloatFieldUpdateOperationsInput | number | null
17944
+ created_at?: DateTimeFieldUpdateOperationsInput | Date | string
17945
+ updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
17946
+ }
17947
+
16522
17948
  export type StringFilter<$PrismaModel = never> = {
16523
17949
  equals?: string | StringFieldRefInput<$PrismaModel>
16524
17950
  in?: string[] | ListStringFieldRefInput<$PrismaModel>
@@ -17005,10 +18431,20 @@ export namespace Prisma {
17005
18431
  none?: AccountWhereInput
17006
18432
  }
17007
18433
 
18434
+ export type EventListRelationFilter = {
18435
+ every?: EventWhereInput
18436
+ some?: EventWhereInput
18437
+ none?: EventWhereInput
18438
+ }
18439
+
17008
18440
  export type AccountOrderByRelationAggregateInput = {
17009
18441
  _count?: SortOrder
17010
18442
  }
17011
18443
 
18444
+ export type EventOrderByRelationAggregateInput = {
18445
+ _count?: SortOrder
18446
+ }
18447
+
17012
18448
  export type TagCountOrderByAggregateInput = {
17013
18449
  id?: SortOrder
17014
18450
  name?: SortOrder
@@ -17083,35 +18519,38 @@ export namespace Prisma {
17083
18519
  isNot?: TagWhereInput
17084
18520
  }
17085
18521
 
17086
- export type EventListRelationFilter = {
17087
- every?: EventWhereInput
17088
- some?: EventWhereInput
17089
- none?: EventWhereInput
17090
- }
17091
-
17092
18522
  export type TicketListRelationFilter = {
17093
18523
  every?: TicketWhereInput
17094
18524
  some?: TicketWhereInput
17095
18525
  none?: TicketWhereInput
17096
18526
  }
17097
18527
 
17098
- export type EventOrderByRelationAggregateInput = {
17099
- _count?: SortOrder
18528
+ export type EventTicketListRelationFilter = {
18529
+ every?: EventTicketWhereInput
18530
+ some?: EventTicketWhereInput
18531
+ none?: EventTicketWhereInput
17100
18532
  }
17101
18533
 
17102
18534
  export type TicketOrderByRelationAggregateInput = {
17103
18535
  _count?: SortOrder
17104
18536
  }
17105
18537
 
18538
+ export type EventTicketOrderByRelationAggregateInput = {
18539
+ _count?: SortOrder
18540
+ }
18541
+
17106
18542
  export type EventCountOrderByAggregateInput = {
17107
18543
  id?: SortOrder
17108
18544
  name?: SortOrder
17109
18545
  date?: SortOrder
18546
+ startingDate?: SortOrder
18547
+ endingDate?: SortOrder
17110
18548
  location?: SortOrder
17111
18549
  folderId?: SortOrder
17112
18550
  tagAssistedId?: SortOrder
17113
18551
  tagConfirmedId?: SortOrder
17114
18552
  supraEventId?: SortOrder
18553
+ active?: SortOrder
17115
18554
  created_at?: SortOrder
17116
18555
  updated_at?: SortOrder
17117
18556
  }
@@ -17120,11 +18559,14 @@ export namespace Prisma {
17120
18559
  id?: SortOrder
17121
18560
  name?: SortOrder
17122
18561
  date?: SortOrder
18562
+ startingDate?: SortOrder
18563
+ endingDate?: SortOrder
17123
18564
  location?: SortOrder
17124
18565
  folderId?: SortOrder
17125
18566
  tagAssistedId?: SortOrder
17126
18567
  tagConfirmedId?: SortOrder
17127
18568
  supraEventId?: SortOrder
18569
+ active?: SortOrder
17128
18570
  created_at?: SortOrder
17129
18571
  updated_at?: SortOrder
17130
18572
  }
@@ -17133,11 +18575,14 @@ export namespace Prisma {
17133
18575
  id?: SortOrder
17134
18576
  name?: SortOrder
17135
18577
  date?: SortOrder
18578
+ startingDate?: SortOrder
18579
+ endingDate?: SortOrder
17136
18580
  location?: SortOrder
17137
18581
  folderId?: SortOrder
17138
18582
  tagAssistedId?: SortOrder
17139
18583
  tagConfirmedId?: SortOrder
17140
18584
  supraEventId?: SortOrder
18585
+ active?: SortOrder
17141
18586
  created_at?: SortOrder
17142
18587
  updated_at?: SortOrder
17143
18588
  }
@@ -17406,6 +18851,73 @@ export namespace Prisma {
17406
18851
  _max?: NestedEnumTemplateCategoryFilter<$PrismaModel>
17407
18852
  }
17408
18853
 
18854
+ export type FloatNullableFilter<$PrismaModel = never> = {
18855
+ equals?: number | FloatFieldRefInput<$PrismaModel> | null
18856
+ in?: number[] | ListFloatFieldRefInput<$PrismaModel> | null
18857
+ notIn?: number[] | ListFloatFieldRefInput<$PrismaModel> | null
18858
+ lt?: number | FloatFieldRefInput<$PrismaModel>
18859
+ lte?: number | FloatFieldRefInput<$PrismaModel>
18860
+ gt?: number | FloatFieldRefInput<$PrismaModel>
18861
+ gte?: number | FloatFieldRefInput<$PrismaModel>
18862
+ not?: NestedFloatNullableFilter<$PrismaModel> | number | null
18863
+ }
18864
+
18865
+ export type EventTicketCountOrderByAggregateInput = {
18866
+ id?: SortOrder
18867
+ eventId?: SortOrder
18868
+ amount?: SortOrder
18869
+ type?: SortOrder
18870
+ price?: SortOrder
18871
+ created_at?: SortOrder
18872
+ updated_at?: SortOrder
18873
+ }
18874
+
18875
+ export type EventTicketAvgOrderByAggregateInput = {
18876
+ amount?: SortOrder
18877
+ price?: SortOrder
18878
+ }
18879
+
18880
+ export type EventTicketMaxOrderByAggregateInput = {
18881
+ id?: SortOrder
18882
+ eventId?: SortOrder
18883
+ amount?: SortOrder
18884
+ type?: SortOrder
18885
+ price?: SortOrder
18886
+ created_at?: SortOrder
18887
+ updated_at?: SortOrder
18888
+ }
18889
+
18890
+ export type EventTicketMinOrderByAggregateInput = {
18891
+ id?: SortOrder
18892
+ eventId?: SortOrder
18893
+ amount?: SortOrder
18894
+ type?: SortOrder
18895
+ price?: SortOrder
18896
+ created_at?: SortOrder
18897
+ updated_at?: SortOrder
18898
+ }
18899
+
18900
+ export type EventTicketSumOrderByAggregateInput = {
18901
+ amount?: SortOrder
18902
+ price?: SortOrder
18903
+ }
18904
+
18905
+ export type FloatNullableWithAggregatesFilter<$PrismaModel = never> = {
18906
+ equals?: number | FloatFieldRefInput<$PrismaModel> | null
18907
+ in?: number[] | ListFloatFieldRefInput<$PrismaModel> | null
18908
+ notIn?: number[] | ListFloatFieldRefInput<$PrismaModel> | null
18909
+ lt?: number | FloatFieldRefInput<$PrismaModel>
18910
+ lte?: number | FloatFieldRefInput<$PrismaModel>
18911
+ gt?: number | FloatFieldRefInput<$PrismaModel>
18912
+ gte?: number | FloatFieldRefInput<$PrismaModel>
18913
+ not?: NestedFloatNullableWithAggregatesFilter<$PrismaModel> | number | null
18914
+ _count?: NestedIntNullableFilter<$PrismaModel>
18915
+ _avg?: NestedFloatNullableFilter<$PrismaModel>
18916
+ _sum?: NestedFloatNullableFilter<$PrismaModel>
18917
+ _min?: NestedFloatNullableFilter<$PrismaModel>
18918
+ _max?: NestedFloatNullableFilter<$PrismaModel>
18919
+ }
18920
+
17409
18921
  export type AccountCreatefcmTokenInput = {
17410
18922
  set: string[]
17411
18923
  }
@@ -17942,6 +19454,12 @@ export namespace Prisma {
17942
19454
  connect?: AccountWhereUniqueInput | AccountWhereUniqueInput[]
17943
19455
  }
17944
19456
 
19457
+ export type EventCreateNestedManyWithoutTagsInput = {
19458
+ create?: XOR<EventCreateWithoutTagsInput, EventUncheckedCreateWithoutTagsInput> | EventCreateWithoutTagsInput[] | EventUncheckedCreateWithoutTagsInput[]
19459
+ connectOrCreate?: EventCreateOrConnectWithoutTagsInput | EventCreateOrConnectWithoutTagsInput[]
19460
+ connect?: EventWhereUniqueInput | EventWhereUniqueInput[]
19461
+ }
19462
+
17945
19463
  export type EventUncheckedCreateNestedOneWithoutTagAssistedInput = {
17946
19464
  create?: XOR<EventCreateWithoutTagAssistedInput, EventUncheckedCreateWithoutTagAssistedInput>
17947
19465
  connectOrCreate?: EventCreateOrConnectWithoutTagAssistedInput
@@ -17972,6 +19490,12 @@ export namespace Prisma {
17972
19490
  connect?: AccountWhereUniqueInput | AccountWhereUniqueInput[]
17973
19491
  }
17974
19492
 
19493
+ export type EventUncheckedCreateNestedManyWithoutTagsInput = {
19494
+ create?: XOR<EventCreateWithoutTagsInput, EventUncheckedCreateWithoutTagsInput> | EventCreateWithoutTagsInput[] | EventUncheckedCreateWithoutTagsInput[]
19495
+ connectOrCreate?: EventCreateOrConnectWithoutTagsInput | EventCreateOrConnectWithoutTagsInput[]
19496
+ connect?: EventWhereUniqueInput | EventWhereUniqueInput[]
19497
+ }
19498
+
17975
19499
  export type EnumTagTypeFieldUpdateOperationsInput = {
17976
19500
  set?: $Enums.TagType
17977
19501
  }
@@ -18043,6 +19567,19 @@ export namespace Prisma {
18043
19567
  deleteMany?: AccountScalarWhereInput | AccountScalarWhereInput[]
18044
19568
  }
18045
19569
 
19570
+ export type EventUpdateManyWithoutTagsNestedInput = {
19571
+ create?: XOR<EventCreateWithoutTagsInput, EventUncheckedCreateWithoutTagsInput> | EventCreateWithoutTagsInput[] | EventUncheckedCreateWithoutTagsInput[]
19572
+ connectOrCreate?: EventCreateOrConnectWithoutTagsInput | EventCreateOrConnectWithoutTagsInput[]
19573
+ upsert?: EventUpsertWithWhereUniqueWithoutTagsInput | EventUpsertWithWhereUniqueWithoutTagsInput[]
19574
+ set?: EventWhereUniqueInput | EventWhereUniqueInput[]
19575
+ disconnect?: EventWhereUniqueInput | EventWhereUniqueInput[]
19576
+ delete?: EventWhereUniqueInput | EventWhereUniqueInput[]
19577
+ connect?: EventWhereUniqueInput | EventWhereUniqueInput[]
19578
+ update?: EventUpdateWithWhereUniqueWithoutTagsInput | EventUpdateWithWhereUniqueWithoutTagsInput[]
19579
+ updateMany?: EventUpdateManyWithWhereWithoutTagsInput | EventUpdateManyWithWhereWithoutTagsInput[]
19580
+ deleteMany?: EventScalarWhereInput | EventScalarWhereInput[]
19581
+ }
19582
+
18046
19583
  export type EventUncheckedUpdateOneWithoutTagAssistedNestedInput = {
18047
19584
  create?: XOR<EventCreateWithoutTagAssistedInput, EventUncheckedCreateWithoutTagAssistedInput>
18048
19585
  connectOrCreate?: EventCreateOrConnectWithoutTagAssistedInput
@@ -18102,6 +19639,19 @@ export namespace Prisma {
18102
19639
  deleteMany?: AccountScalarWhereInput | AccountScalarWhereInput[]
18103
19640
  }
18104
19641
 
19642
+ export type EventUncheckedUpdateManyWithoutTagsNestedInput = {
19643
+ create?: XOR<EventCreateWithoutTagsInput, EventUncheckedCreateWithoutTagsInput> | EventCreateWithoutTagsInput[] | EventUncheckedCreateWithoutTagsInput[]
19644
+ connectOrCreate?: EventCreateOrConnectWithoutTagsInput | EventCreateOrConnectWithoutTagsInput[]
19645
+ upsert?: EventUpsertWithWhereUniqueWithoutTagsInput | EventUpsertWithWhereUniqueWithoutTagsInput[]
19646
+ set?: EventWhereUniqueInput | EventWhereUniqueInput[]
19647
+ disconnect?: EventWhereUniqueInput | EventWhereUniqueInput[]
19648
+ delete?: EventWhereUniqueInput | EventWhereUniqueInput[]
19649
+ connect?: EventWhereUniqueInput | EventWhereUniqueInput[]
19650
+ update?: EventUpdateWithWhereUniqueWithoutTagsInput | EventUpdateWithWhereUniqueWithoutTagsInput[]
19651
+ updateMany?: EventUpdateManyWithWhereWithoutTagsInput | EventUpdateManyWithWhereWithoutTagsInput[]
19652
+ deleteMany?: EventScalarWhereInput | EventScalarWhereInput[]
19653
+ }
19654
+
18105
19655
  export type TagCreateNestedManyWithoutGroupInput = {
18106
19656
  create?: XOR<TagCreateWithoutGroupInput, TagUncheckedCreateWithoutGroupInput> | TagCreateWithoutGroupInput[] | TagUncheckedCreateWithoutGroupInput[]
18107
19657
  connectOrCreate?: TagCreateOrConnectWithoutGroupInput | TagCreateOrConnectWithoutGroupInput[]
@@ -18168,6 +19718,13 @@ export namespace Prisma {
18168
19718
  connect?: EventWhereUniqueInput
18169
19719
  }
18170
19720
 
19721
+ export type TicketCreateNestedManyWithoutEventInput = {
19722
+ create?: XOR<TicketCreateWithoutEventInput, TicketUncheckedCreateWithoutEventInput> | TicketCreateWithoutEventInput[] | TicketUncheckedCreateWithoutEventInput[]
19723
+ connectOrCreate?: TicketCreateOrConnectWithoutEventInput | TicketCreateOrConnectWithoutEventInput[]
19724
+ createMany?: TicketCreateManyEventInputEnvelope
19725
+ connect?: TicketWhereUniqueInput | TicketWhereUniqueInput[]
19726
+ }
19727
+
18171
19728
  export type EventCreateNestedManyWithoutSupraEventInput = {
18172
19729
  create?: XOR<EventCreateWithoutSupraEventInput, EventUncheckedCreateWithoutSupraEventInput> | EventCreateWithoutSupraEventInput[] | EventUncheckedCreateWithoutSupraEventInput[]
18173
19730
  connectOrCreate?: EventCreateOrConnectWithoutSupraEventInput | EventCreateOrConnectWithoutSupraEventInput[]
@@ -18175,7 +19732,20 @@ export namespace Prisma {
18175
19732
  connect?: EventWhereUniqueInput | EventWhereUniqueInput[]
18176
19733
  }
18177
19734
 
18178
- export type TicketCreateNestedManyWithoutEventInput = {
19735
+ export type TagCreateNestedManyWithoutEventInput = {
19736
+ create?: XOR<TagCreateWithoutEventInput, TagUncheckedCreateWithoutEventInput> | TagCreateWithoutEventInput[] | TagUncheckedCreateWithoutEventInput[]
19737
+ connectOrCreate?: TagCreateOrConnectWithoutEventInput | TagCreateOrConnectWithoutEventInput[]
19738
+ connect?: TagWhereUniqueInput | TagWhereUniqueInput[]
19739
+ }
19740
+
19741
+ export type EventTicketCreateNestedManyWithoutEventInput = {
19742
+ create?: XOR<EventTicketCreateWithoutEventInput, EventTicketUncheckedCreateWithoutEventInput> | EventTicketCreateWithoutEventInput[] | EventTicketUncheckedCreateWithoutEventInput[]
19743
+ connectOrCreate?: EventTicketCreateOrConnectWithoutEventInput | EventTicketCreateOrConnectWithoutEventInput[]
19744
+ createMany?: EventTicketCreateManyEventInputEnvelope
19745
+ connect?: EventTicketWhereUniqueInput | EventTicketWhereUniqueInput[]
19746
+ }
19747
+
19748
+ export type TicketUncheckedCreateNestedManyWithoutEventInput = {
18179
19749
  create?: XOR<TicketCreateWithoutEventInput, TicketUncheckedCreateWithoutEventInput> | TicketCreateWithoutEventInput[] | TicketUncheckedCreateWithoutEventInput[]
18180
19750
  connectOrCreate?: TicketCreateOrConnectWithoutEventInput | TicketCreateOrConnectWithoutEventInput[]
18181
19751
  createMany?: TicketCreateManyEventInputEnvelope
@@ -18189,11 +19759,17 @@ export namespace Prisma {
18189
19759
  connect?: EventWhereUniqueInput | EventWhereUniqueInput[]
18190
19760
  }
18191
19761
 
18192
- export type TicketUncheckedCreateNestedManyWithoutEventInput = {
18193
- create?: XOR<TicketCreateWithoutEventInput, TicketUncheckedCreateWithoutEventInput> | TicketCreateWithoutEventInput[] | TicketUncheckedCreateWithoutEventInput[]
18194
- connectOrCreate?: TicketCreateOrConnectWithoutEventInput | TicketCreateOrConnectWithoutEventInput[]
18195
- createMany?: TicketCreateManyEventInputEnvelope
18196
- connect?: TicketWhereUniqueInput | TicketWhereUniqueInput[]
19762
+ export type TagUncheckedCreateNestedManyWithoutEventInput = {
19763
+ create?: XOR<TagCreateWithoutEventInput, TagUncheckedCreateWithoutEventInput> | TagCreateWithoutEventInput[] | TagUncheckedCreateWithoutEventInput[]
19764
+ connectOrCreate?: TagCreateOrConnectWithoutEventInput | TagCreateOrConnectWithoutEventInput[]
19765
+ connect?: TagWhereUniqueInput | TagWhereUniqueInput[]
19766
+ }
19767
+
19768
+ export type EventTicketUncheckedCreateNestedManyWithoutEventInput = {
19769
+ create?: XOR<EventTicketCreateWithoutEventInput, EventTicketUncheckedCreateWithoutEventInput> | EventTicketCreateWithoutEventInput[] | EventTicketUncheckedCreateWithoutEventInput[]
19770
+ connectOrCreate?: EventTicketCreateOrConnectWithoutEventInput | EventTicketCreateOrConnectWithoutEventInput[]
19771
+ createMany?: EventTicketCreateManyEventInputEnvelope
19772
+ connect?: EventTicketWhereUniqueInput | EventTicketWhereUniqueInput[]
18197
19773
  }
18198
19774
 
18199
19775
  export type EventFolderUpdateOneWithoutEventsNestedInput = {
@@ -18232,6 +19808,20 @@ export namespace Prisma {
18232
19808
  update?: XOR<XOR<EventUpdateToOneWithWhereWithoutSubEventsInput, EventUpdateWithoutSubEventsInput>, EventUncheckedUpdateWithoutSubEventsInput>
18233
19809
  }
18234
19810
 
19811
+ export type TicketUpdateManyWithoutEventNestedInput = {
19812
+ create?: XOR<TicketCreateWithoutEventInput, TicketUncheckedCreateWithoutEventInput> | TicketCreateWithoutEventInput[] | TicketUncheckedCreateWithoutEventInput[]
19813
+ connectOrCreate?: TicketCreateOrConnectWithoutEventInput | TicketCreateOrConnectWithoutEventInput[]
19814
+ upsert?: TicketUpsertWithWhereUniqueWithoutEventInput | TicketUpsertWithWhereUniqueWithoutEventInput[]
19815
+ createMany?: TicketCreateManyEventInputEnvelope
19816
+ set?: TicketWhereUniqueInput | TicketWhereUniqueInput[]
19817
+ disconnect?: TicketWhereUniqueInput | TicketWhereUniqueInput[]
19818
+ delete?: TicketWhereUniqueInput | TicketWhereUniqueInput[]
19819
+ connect?: TicketWhereUniqueInput | TicketWhereUniqueInput[]
19820
+ update?: TicketUpdateWithWhereUniqueWithoutEventInput | TicketUpdateWithWhereUniqueWithoutEventInput[]
19821
+ updateMany?: TicketUpdateManyWithWhereWithoutEventInput | TicketUpdateManyWithWhereWithoutEventInput[]
19822
+ deleteMany?: TicketScalarWhereInput | TicketScalarWhereInput[]
19823
+ }
19824
+
18235
19825
  export type EventUpdateManyWithoutSupraEventNestedInput = {
18236
19826
  create?: XOR<EventCreateWithoutSupraEventInput, EventUncheckedCreateWithoutSupraEventInput> | EventCreateWithoutSupraEventInput[] | EventUncheckedCreateWithoutSupraEventInput[]
18237
19827
  connectOrCreate?: EventCreateOrConnectWithoutSupraEventInput | EventCreateOrConnectWithoutSupraEventInput[]
@@ -18246,7 +19836,34 @@ export namespace Prisma {
18246
19836
  deleteMany?: EventScalarWhereInput | EventScalarWhereInput[]
18247
19837
  }
18248
19838
 
18249
- export type TicketUpdateManyWithoutEventNestedInput = {
19839
+ export type TagUpdateManyWithoutEventNestedInput = {
19840
+ create?: XOR<TagCreateWithoutEventInput, TagUncheckedCreateWithoutEventInput> | TagCreateWithoutEventInput[] | TagUncheckedCreateWithoutEventInput[]
19841
+ connectOrCreate?: TagCreateOrConnectWithoutEventInput | TagCreateOrConnectWithoutEventInput[]
19842
+ upsert?: TagUpsertWithWhereUniqueWithoutEventInput | TagUpsertWithWhereUniqueWithoutEventInput[]
19843
+ set?: TagWhereUniqueInput | TagWhereUniqueInput[]
19844
+ disconnect?: TagWhereUniqueInput | TagWhereUniqueInput[]
19845
+ delete?: TagWhereUniqueInput | TagWhereUniqueInput[]
19846
+ connect?: TagWhereUniqueInput | TagWhereUniqueInput[]
19847
+ update?: TagUpdateWithWhereUniqueWithoutEventInput | TagUpdateWithWhereUniqueWithoutEventInput[]
19848
+ updateMany?: TagUpdateManyWithWhereWithoutEventInput | TagUpdateManyWithWhereWithoutEventInput[]
19849
+ deleteMany?: TagScalarWhereInput | TagScalarWhereInput[]
19850
+ }
19851
+
19852
+ export type EventTicketUpdateManyWithoutEventNestedInput = {
19853
+ create?: XOR<EventTicketCreateWithoutEventInput, EventTicketUncheckedCreateWithoutEventInput> | EventTicketCreateWithoutEventInput[] | EventTicketUncheckedCreateWithoutEventInput[]
19854
+ connectOrCreate?: EventTicketCreateOrConnectWithoutEventInput | EventTicketCreateOrConnectWithoutEventInput[]
19855
+ upsert?: EventTicketUpsertWithWhereUniqueWithoutEventInput | EventTicketUpsertWithWhereUniqueWithoutEventInput[]
19856
+ createMany?: EventTicketCreateManyEventInputEnvelope
19857
+ set?: EventTicketWhereUniqueInput | EventTicketWhereUniqueInput[]
19858
+ disconnect?: EventTicketWhereUniqueInput | EventTicketWhereUniqueInput[]
19859
+ delete?: EventTicketWhereUniqueInput | EventTicketWhereUniqueInput[]
19860
+ connect?: EventTicketWhereUniqueInput | EventTicketWhereUniqueInput[]
19861
+ update?: EventTicketUpdateWithWhereUniqueWithoutEventInput | EventTicketUpdateWithWhereUniqueWithoutEventInput[]
19862
+ updateMany?: EventTicketUpdateManyWithWhereWithoutEventInput | EventTicketUpdateManyWithWhereWithoutEventInput[]
19863
+ deleteMany?: EventTicketScalarWhereInput | EventTicketScalarWhereInput[]
19864
+ }
19865
+
19866
+ export type TicketUncheckedUpdateManyWithoutEventNestedInput = {
18250
19867
  create?: XOR<TicketCreateWithoutEventInput, TicketUncheckedCreateWithoutEventInput> | TicketCreateWithoutEventInput[] | TicketUncheckedCreateWithoutEventInput[]
18251
19868
  connectOrCreate?: TicketCreateOrConnectWithoutEventInput | TicketCreateOrConnectWithoutEventInput[]
18252
19869
  upsert?: TicketUpsertWithWhereUniqueWithoutEventInput | TicketUpsertWithWhereUniqueWithoutEventInput[]
@@ -18274,18 +19891,31 @@ export namespace Prisma {
18274
19891
  deleteMany?: EventScalarWhereInput | EventScalarWhereInput[]
18275
19892
  }
18276
19893
 
18277
- export type TicketUncheckedUpdateManyWithoutEventNestedInput = {
18278
- create?: XOR<TicketCreateWithoutEventInput, TicketUncheckedCreateWithoutEventInput> | TicketCreateWithoutEventInput[] | TicketUncheckedCreateWithoutEventInput[]
18279
- connectOrCreate?: TicketCreateOrConnectWithoutEventInput | TicketCreateOrConnectWithoutEventInput[]
18280
- upsert?: TicketUpsertWithWhereUniqueWithoutEventInput | TicketUpsertWithWhereUniqueWithoutEventInput[]
18281
- createMany?: TicketCreateManyEventInputEnvelope
18282
- set?: TicketWhereUniqueInput | TicketWhereUniqueInput[]
18283
- disconnect?: TicketWhereUniqueInput | TicketWhereUniqueInput[]
18284
- delete?: TicketWhereUniqueInput | TicketWhereUniqueInput[]
18285
- connect?: TicketWhereUniqueInput | TicketWhereUniqueInput[]
18286
- update?: TicketUpdateWithWhereUniqueWithoutEventInput | TicketUpdateWithWhereUniqueWithoutEventInput[]
18287
- updateMany?: TicketUpdateManyWithWhereWithoutEventInput | TicketUpdateManyWithWhereWithoutEventInput[]
18288
- deleteMany?: TicketScalarWhereInput | TicketScalarWhereInput[]
19894
+ export type TagUncheckedUpdateManyWithoutEventNestedInput = {
19895
+ create?: XOR<TagCreateWithoutEventInput, TagUncheckedCreateWithoutEventInput> | TagCreateWithoutEventInput[] | TagUncheckedCreateWithoutEventInput[]
19896
+ connectOrCreate?: TagCreateOrConnectWithoutEventInput | TagCreateOrConnectWithoutEventInput[]
19897
+ upsert?: TagUpsertWithWhereUniqueWithoutEventInput | TagUpsertWithWhereUniqueWithoutEventInput[]
19898
+ set?: TagWhereUniqueInput | TagWhereUniqueInput[]
19899
+ disconnect?: TagWhereUniqueInput | TagWhereUniqueInput[]
19900
+ delete?: TagWhereUniqueInput | TagWhereUniqueInput[]
19901
+ connect?: TagWhereUniqueInput | TagWhereUniqueInput[]
19902
+ update?: TagUpdateWithWhereUniqueWithoutEventInput | TagUpdateWithWhereUniqueWithoutEventInput[]
19903
+ updateMany?: TagUpdateManyWithWhereWithoutEventInput | TagUpdateManyWithWhereWithoutEventInput[]
19904
+ deleteMany?: TagScalarWhereInput | TagScalarWhereInput[]
19905
+ }
19906
+
19907
+ export type EventTicketUncheckedUpdateManyWithoutEventNestedInput = {
19908
+ create?: XOR<EventTicketCreateWithoutEventInput, EventTicketUncheckedCreateWithoutEventInput> | EventTicketCreateWithoutEventInput[] | EventTicketUncheckedCreateWithoutEventInput[]
19909
+ connectOrCreate?: EventTicketCreateOrConnectWithoutEventInput | EventTicketCreateOrConnectWithoutEventInput[]
19910
+ upsert?: EventTicketUpsertWithWhereUniqueWithoutEventInput | EventTicketUpsertWithWhereUniqueWithoutEventInput[]
19911
+ createMany?: EventTicketCreateManyEventInputEnvelope
19912
+ set?: EventTicketWhereUniqueInput | EventTicketWhereUniqueInput[]
19913
+ disconnect?: EventTicketWhereUniqueInput | EventTicketWhereUniqueInput[]
19914
+ delete?: EventTicketWhereUniqueInput | EventTicketWhereUniqueInput[]
19915
+ connect?: EventTicketWhereUniqueInput | EventTicketWhereUniqueInput[]
19916
+ update?: EventTicketUpdateWithWhereUniqueWithoutEventInput | EventTicketUpdateWithWhereUniqueWithoutEventInput[]
19917
+ updateMany?: EventTicketUpdateManyWithWhereWithoutEventInput | EventTicketUpdateManyWithWhereWithoutEventInput[]
19918
+ deleteMany?: EventTicketScalarWhereInput | EventTicketScalarWhereInput[]
18289
19919
  }
18290
19920
 
18291
19921
  export type EventCreateNestedManyWithoutFolderInput = {
@@ -18378,6 +20008,28 @@ export namespace Prisma {
18378
20008
  set?: $Enums.TemplateCategory
18379
20009
  }
18380
20010
 
20011
+ export type EventCreateNestedOneWithoutEventTicketsInput = {
20012
+ create?: XOR<EventCreateWithoutEventTicketsInput, EventUncheckedCreateWithoutEventTicketsInput>
20013
+ connectOrCreate?: EventCreateOrConnectWithoutEventTicketsInput
20014
+ connect?: EventWhereUniqueInput
20015
+ }
20016
+
20017
+ export type NullableFloatFieldUpdateOperationsInput = {
20018
+ set?: number | null
20019
+ increment?: number
20020
+ decrement?: number
20021
+ multiply?: number
20022
+ divide?: number
20023
+ }
20024
+
20025
+ export type EventUpdateOneRequiredWithoutEventTicketsNestedInput = {
20026
+ create?: XOR<EventCreateWithoutEventTicketsInput, EventUncheckedCreateWithoutEventTicketsInput>
20027
+ connectOrCreate?: EventCreateOrConnectWithoutEventTicketsInput
20028
+ upsert?: EventUpsertWithoutEventTicketsInput
20029
+ connect?: EventWhereUniqueInput
20030
+ update?: XOR<XOR<EventUpdateToOneWithWhereWithoutEventTicketsInput, EventUpdateWithoutEventTicketsInput>, EventUncheckedUpdateWithoutEventTicketsInput>
20031
+ }
20032
+
18381
20033
  export type NestedStringFilter<$PrismaModel = never> = {
18382
20034
  equals?: string | StringFieldRefInput<$PrismaModel>
18383
20035
  in?: string[] | ListStringFieldRefInput<$PrismaModel>
@@ -18709,6 +20361,33 @@ export namespace Prisma {
18709
20361
  _max?: NestedEnumTemplateCategoryFilter<$PrismaModel>
18710
20362
  }
18711
20363
 
20364
+ export type NestedFloatNullableFilter<$PrismaModel = never> = {
20365
+ equals?: number | FloatFieldRefInput<$PrismaModel> | null
20366
+ in?: number[] | ListFloatFieldRefInput<$PrismaModel> | null
20367
+ notIn?: number[] | ListFloatFieldRefInput<$PrismaModel> | null
20368
+ lt?: number | FloatFieldRefInput<$PrismaModel>
20369
+ lte?: number | FloatFieldRefInput<$PrismaModel>
20370
+ gt?: number | FloatFieldRefInput<$PrismaModel>
20371
+ gte?: number | FloatFieldRefInput<$PrismaModel>
20372
+ not?: NestedFloatNullableFilter<$PrismaModel> | number | null
20373
+ }
20374
+
20375
+ export type NestedFloatNullableWithAggregatesFilter<$PrismaModel = never> = {
20376
+ equals?: number | FloatFieldRefInput<$PrismaModel> | null
20377
+ in?: number[] | ListFloatFieldRefInput<$PrismaModel> | null
20378
+ notIn?: number[] | ListFloatFieldRefInput<$PrismaModel> | null
20379
+ lt?: number | FloatFieldRefInput<$PrismaModel>
20380
+ lte?: number | FloatFieldRefInput<$PrismaModel>
20381
+ gt?: number | FloatFieldRefInput<$PrismaModel>
20382
+ gte?: number | FloatFieldRefInput<$PrismaModel>
20383
+ not?: NestedFloatNullableWithAggregatesFilter<$PrismaModel> | number | null
20384
+ _count?: NestedIntNullableFilter<$PrismaModel>
20385
+ _avg?: NestedFloatNullableFilter<$PrismaModel>
20386
+ _sum?: NestedFloatNullableFilter<$PrismaModel>
20387
+ _min?: NestedFloatNullableFilter<$PrismaModel>
20388
+ _max?: NestedFloatNullableFilter<$PrismaModel>
20389
+ }
20390
+
18712
20391
  export type CommentCreateWithoutAccountInput = {
18713
20392
  id?: string
18714
20393
  content: string
@@ -18788,6 +20467,7 @@ export namespace Prisma {
18788
20467
  confirmedEvent?: EventCreateNestedOneWithoutTagConfirmedInput
18789
20468
  profiles?: ProfileCreateNestedManyWithoutTagsInput
18790
20469
  accountsGlobalFilter?: AccountCreateNestedManyWithoutGlobalFilterInput
20470
+ Event?: EventCreateNestedManyWithoutTagsInput
18791
20471
  }
18792
20472
 
18793
20473
  export type TagUncheckedCreateWithoutAccountsInput = {
@@ -18801,6 +20481,7 @@ export namespace Prisma {
18801
20481
  confirmedEvent?: EventUncheckedCreateNestedOneWithoutTagConfirmedInput
18802
20482
  profiles?: ProfileUncheckedCreateNestedManyWithoutTagsInput
18803
20483
  accountsGlobalFilter?: AccountUncheckedCreateNestedManyWithoutGlobalFilterInput
20484
+ Event?: EventUncheckedCreateNestedManyWithoutTagsInput
18804
20485
  }
18805
20486
 
18806
20487
  export type TagCreateOrConnectWithoutAccountsInput = {
@@ -18819,6 +20500,7 @@ export namespace Prisma {
18819
20500
  confirmedEvent?: EventCreateNestedOneWithoutTagConfirmedInput
18820
20501
  accounts?: AccountCreateNestedManyWithoutTagsInput
18821
20502
  profiles?: ProfileCreateNestedManyWithoutTagsInput
20503
+ Event?: EventCreateNestedManyWithoutTagsInput
18822
20504
  }
18823
20505
 
18824
20506
  export type TagUncheckedCreateWithoutAccountsGlobalFilterInput = {
@@ -18832,6 +20514,7 @@ export namespace Prisma {
18832
20514
  confirmedEvent?: EventUncheckedCreateNestedOneWithoutTagConfirmedInput
18833
20515
  accounts?: AccountUncheckedCreateNestedManyWithoutTagsInput
18834
20516
  profiles?: ProfileUncheckedCreateNestedManyWithoutTagsInput
20517
+ Event?: EventUncheckedCreateNestedManyWithoutTagsInput
18835
20518
  }
18836
20519
 
18837
20520
  export type TagCreateOrConnectWithoutAccountsGlobalFilterInput = {
@@ -19004,6 +20687,7 @@ export namespace Prisma {
19004
20687
  confirmedEvent?: EventCreateNestedOneWithoutTagConfirmedInput
19005
20688
  accounts?: AccountCreateNestedManyWithoutTagsInput
19006
20689
  accountsGlobalFilter?: AccountCreateNestedManyWithoutGlobalFilterInput
20690
+ Event?: EventCreateNestedManyWithoutTagsInput
19007
20691
  }
19008
20692
 
19009
20693
  export type TagUncheckedCreateWithoutProfilesInput = {
@@ -19017,6 +20701,7 @@ export namespace Prisma {
19017
20701
  confirmedEvent?: EventUncheckedCreateNestedOneWithoutTagConfirmedInput
19018
20702
  accounts?: AccountUncheckedCreateNestedManyWithoutTagsInput
19019
20703
  accountsGlobalFilter?: AccountUncheckedCreateNestedManyWithoutGlobalFilterInput
20704
+ Event?: EventUncheckedCreateNestedManyWithoutTagsInput
19020
20705
  }
19021
20706
 
19022
20707
  export type TagCreateOrConnectWithoutProfilesInput = {
@@ -19669,28 +21354,38 @@ export namespace Prisma {
19669
21354
  id?: string
19670
21355
  name: string
19671
21356
  date: Date | string
21357
+ startingDate: Date | string
21358
+ endingDate: Date | string
19672
21359
  location: string
21360
+ active?: boolean
19673
21361
  created_at?: Date | string
19674
21362
  updated_at?: Date | string
19675
21363
  folder?: EventFolderCreateNestedOneWithoutEventsInput
19676
21364
  tagConfirmed: TagCreateNestedOneWithoutConfirmedEventInput
19677
21365
  supraEvent?: EventCreateNestedOneWithoutSubEventsInput
19678
- subEvents?: EventCreateNestedManyWithoutSupraEventInput
19679
21366
  tickets?: TicketCreateNestedManyWithoutEventInput
21367
+ subEvents?: EventCreateNestedManyWithoutSupraEventInput
21368
+ tags?: TagCreateNestedManyWithoutEventInput
21369
+ eventTickets?: EventTicketCreateNestedManyWithoutEventInput
19680
21370
  }
19681
21371
 
19682
21372
  export type EventUncheckedCreateWithoutTagAssistedInput = {
19683
21373
  id?: string
19684
21374
  name: string
19685
21375
  date: Date | string
21376
+ startingDate: Date | string
21377
+ endingDate: Date | string
19686
21378
  location: string
19687
21379
  folderId?: string | null
19688
21380
  tagConfirmedId: string
19689
21381
  supraEventId?: string | null
21382
+ active?: boolean
19690
21383
  created_at?: Date | string
19691
21384
  updated_at?: Date | string
19692
- subEvents?: EventUncheckedCreateNestedManyWithoutSupraEventInput
19693
21385
  tickets?: TicketUncheckedCreateNestedManyWithoutEventInput
21386
+ subEvents?: EventUncheckedCreateNestedManyWithoutSupraEventInput
21387
+ tags?: TagUncheckedCreateNestedManyWithoutEventInput
21388
+ eventTickets?: EventTicketUncheckedCreateNestedManyWithoutEventInput
19694
21389
  }
19695
21390
 
19696
21391
  export type EventCreateOrConnectWithoutTagAssistedInput = {
@@ -19702,28 +21397,38 @@ export namespace Prisma {
19702
21397
  id?: string
19703
21398
  name: string
19704
21399
  date: Date | string
21400
+ startingDate: Date | string
21401
+ endingDate: Date | string
19705
21402
  location: string
21403
+ active?: boolean
19706
21404
  created_at?: Date | string
19707
21405
  updated_at?: Date | string
19708
21406
  folder?: EventFolderCreateNestedOneWithoutEventsInput
19709
21407
  tagAssisted: TagCreateNestedOneWithoutAssistedEventInput
19710
21408
  supraEvent?: EventCreateNestedOneWithoutSubEventsInput
19711
- subEvents?: EventCreateNestedManyWithoutSupraEventInput
19712
21409
  tickets?: TicketCreateNestedManyWithoutEventInput
21410
+ subEvents?: EventCreateNestedManyWithoutSupraEventInput
21411
+ tags?: TagCreateNestedManyWithoutEventInput
21412
+ eventTickets?: EventTicketCreateNestedManyWithoutEventInput
19713
21413
  }
19714
21414
 
19715
21415
  export type EventUncheckedCreateWithoutTagConfirmedInput = {
19716
21416
  id?: string
19717
21417
  name: string
19718
21418
  date: Date | string
21419
+ startingDate: Date | string
21420
+ endingDate: Date | string
19719
21421
  location: string
19720
21422
  folderId?: string | null
19721
21423
  tagAssistedId: string
19722
21424
  supraEventId?: string | null
21425
+ active?: boolean
19723
21426
  created_at?: Date | string
19724
21427
  updated_at?: Date | string
19725
- subEvents?: EventUncheckedCreateNestedManyWithoutSupraEventInput
19726
21428
  tickets?: TicketUncheckedCreateNestedManyWithoutEventInput
21429
+ subEvents?: EventUncheckedCreateNestedManyWithoutSupraEventInput
21430
+ tags?: TagUncheckedCreateNestedManyWithoutEventInput
21431
+ eventTickets?: EventTicketUncheckedCreateNestedManyWithoutEventInput
19727
21432
  }
19728
21433
 
19729
21434
  export type EventCreateOrConnectWithoutTagConfirmedInput = {
@@ -19850,6 +21555,49 @@ export namespace Prisma {
19850
21555
  create: XOR<AccountCreateWithoutGlobalFilterInput, AccountUncheckedCreateWithoutGlobalFilterInput>
19851
21556
  }
19852
21557
 
21558
+ export type EventCreateWithoutTagsInput = {
21559
+ id?: string
21560
+ name: string
21561
+ date: Date | string
21562
+ startingDate: Date | string
21563
+ endingDate: Date | string
21564
+ location: string
21565
+ active?: boolean
21566
+ created_at?: Date | string
21567
+ updated_at?: Date | string
21568
+ folder?: EventFolderCreateNestedOneWithoutEventsInput
21569
+ tagAssisted: TagCreateNestedOneWithoutAssistedEventInput
21570
+ tagConfirmed: TagCreateNestedOneWithoutConfirmedEventInput
21571
+ supraEvent?: EventCreateNestedOneWithoutSubEventsInput
21572
+ tickets?: TicketCreateNestedManyWithoutEventInput
21573
+ subEvents?: EventCreateNestedManyWithoutSupraEventInput
21574
+ eventTickets?: EventTicketCreateNestedManyWithoutEventInput
21575
+ }
21576
+
21577
+ export type EventUncheckedCreateWithoutTagsInput = {
21578
+ id?: string
21579
+ name: string
21580
+ date: Date | string
21581
+ startingDate: Date | string
21582
+ endingDate: Date | string
21583
+ location: string
21584
+ folderId?: string | null
21585
+ tagAssistedId: string
21586
+ tagConfirmedId: string
21587
+ supraEventId?: string | null
21588
+ active?: boolean
21589
+ created_at?: Date | string
21590
+ updated_at?: Date | string
21591
+ tickets?: TicketUncheckedCreateNestedManyWithoutEventInput
21592
+ subEvents?: EventUncheckedCreateNestedManyWithoutSupraEventInput
21593
+ eventTickets?: EventTicketUncheckedCreateNestedManyWithoutEventInput
21594
+ }
21595
+
21596
+ export type EventCreateOrConnectWithoutTagsInput = {
21597
+ where: EventWhereUniqueInput
21598
+ create: XOR<EventCreateWithoutTagsInput, EventUncheckedCreateWithoutTagsInput>
21599
+ }
21600
+
19853
21601
  export type TagGroupUpsertWithoutTagsInput = {
19854
21602
  update: XOR<TagGroupUpdateWithoutTagsInput, TagGroupUncheckedUpdateWithoutTagsInput>
19855
21603
  create: XOR<TagGroupCreateWithoutTagsInput, TagGroupUncheckedCreateWithoutTagsInput>
@@ -19894,28 +21642,38 @@ export namespace Prisma {
19894
21642
  id?: StringFieldUpdateOperationsInput | string
19895
21643
  name?: StringFieldUpdateOperationsInput | string
19896
21644
  date?: DateTimeFieldUpdateOperationsInput | Date | string
21645
+ startingDate?: DateTimeFieldUpdateOperationsInput | Date | string
21646
+ endingDate?: DateTimeFieldUpdateOperationsInput | Date | string
19897
21647
  location?: StringFieldUpdateOperationsInput | string
21648
+ active?: BoolFieldUpdateOperationsInput | boolean
19898
21649
  created_at?: DateTimeFieldUpdateOperationsInput | Date | string
19899
21650
  updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
19900
21651
  folder?: EventFolderUpdateOneWithoutEventsNestedInput
19901
21652
  tagConfirmed?: TagUpdateOneRequiredWithoutConfirmedEventNestedInput
19902
21653
  supraEvent?: EventUpdateOneWithoutSubEventsNestedInput
19903
- subEvents?: EventUpdateManyWithoutSupraEventNestedInput
19904
21654
  tickets?: TicketUpdateManyWithoutEventNestedInput
21655
+ subEvents?: EventUpdateManyWithoutSupraEventNestedInput
21656
+ tags?: TagUpdateManyWithoutEventNestedInput
21657
+ eventTickets?: EventTicketUpdateManyWithoutEventNestedInput
19905
21658
  }
19906
21659
 
19907
21660
  export type EventUncheckedUpdateWithoutTagAssistedInput = {
19908
21661
  id?: StringFieldUpdateOperationsInput | string
19909
21662
  name?: StringFieldUpdateOperationsInput | string
19910
21663
  date?: DateTimeFieldUpdateOperationsInput | Date | string
21664
+ startingDate?: DateTimeFieldUpdateOperationsInput | Date | string
21665
+ endingDate?: DateTimeFieldUpdateOperationsInput | Date | string
19911
21666
  location?: StringFieldUpdateOperationsInput | string
19912
21667
  folderId?: NullableStringFieldUpdateOperationsInput | string | null
19913
21668
  tagConfirmedId?: StringFieldUpdateOperationsInput | string
19914
21669
  supraEventId?: NullableStringFieldUpdateOperationsInput | string | null
21670
+ active?: BoolFieldUpdateOperationsInput | boolean
19915
21671
  created_at?: DateTimeFieldUpdateOperationsInput | Date | string
19916
21672
  updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
19917
- subEvents?: EventUncheckedUpdateManyWithoutSupraEventNestedInput
19918
21673
  tickets?: TicketUncheckedUpdateManyWithoutEventNestedInput
21674
+ subEvents?: EventUncheckedUpdateManyWithoutSupraEventNestedInput
21675
+ tags?: TagUncheckedUpdateManyWithoutEventNestedInput
21676
+ eventTickets?: EventTicketUncheckedUpdateManyWithoutEventNestedInput
19919
21677
  }
19920
21678
 
19921
21679
  export type EventUpsertWithoutTagConfirmedInput = {
@@ -19933,28 +21691,38 @@ export namespace Prisma {
19933
21691
  id?: StringFieldUpdateOperationsInput | string
19934
21692
  name?: StringFieldUpdateOperationsInput | string
19935
21693
  date?: DateTimeFieldUpdateOperationsInput | Date | string
21694
+ startingDate?: DateTimeFieldUpdateOperationsInput | Date | string
21695
+ endingDate?: DateTimeFieldUpdateOperationsInput | Date | string
19936
21696
  location?: StringFieldUpdateOperationsInput | string
21697
+ active?: BoolFieldUpdateOperationsInput | boolean
19937
21698
  created_at?: DateTimeFieldUpdateOperationsInput | Date | string
19938
21699
  updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
19939
21700
  folder?: EventFolderUpdateOneWithoutEventsNestedInput
19940
21701
  tagAssisted?: TagUpdateOneRequiredWithoutAssistedEventNestedInput
19941
21702
  supraEvent?: EventUpdateOneWithoutSubEventsNestedInput
19942
- subEvents?: EventUpdateManyWithoutSupraEventNestedInput
19943
21703
  tickets?: TicketUpdateManyWithoutEventNestedInput
21704
+ subEvents?: EventUpdateManyWithoutSupraEventNestedInput
21705
+ tags?: TagUpdateManyWithoutEventNestedInput
21706
+ eventTickets?: EventTicketUpdateManyWithoutEventNestedInput
19944
21707
  }
19945
21708
 
19946
21709
  export type EventUncheckedUpdateWithoutTagConfirmedInput = {
19947
21710
  id?: StringFieldUpdateOperationsInput | string
19948
21711
  name?: StringFieldUpdateOperationsInput | string
19949
21712
  date?: DateTimeFieldUpdateOperationsInput | Date | string
21713
+ startingDate?: DateTimeFieldUpdateOperationsInput | Date | string
21714
+ endingDate?: DateTimeFieldUpdateOperationsInput | Date | string
19950
21715
  location?: StringFieldUpdateOperationsInput | string
19951
21716
  folderId?: NullableStringFieldUpdateOperationsInput | string | null
19952
21717
  tagAssistedId?: StringFieldUpdateOperationsInput | string
19953
21718
  supraEventId?: NullableStringFieldUpdateOperationsInput | string | null
21719
+ active?: BoolFieldUpdateOperationsInput | boolean
19954
21720
  created_at?: DateTimeFieldUpdateOperationsInput | Date | string
19955
21721
  updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
19956
- subEvents?: EventUncheckedUpdateManyWithoutSupraEventNestedInput
19957
21722
  tickets?: TicketUncheckedUpdateManyWithoutEventNestedInput
21723
+ subEvents?: EventUncheckedUpdateManyWithoutSupraEventNestedInput
21724
+ tags?: TagUncheckedUpdateManyWithoutEventNestedInput
21725
+ eventTickets?: EventTicketUncheckedUpdateManyWithoutEventNestedInput
19958
21726
  }
19959
21727
 
19960
21728
  export type AccountUpsertWithWhereUniqueWithoutTagsInput = {
@@ -20019,6 +21787,41 @@ export namespace Prisma {
20019
21787
  data: XOR<AccountUpdateManyMutationInput, AccountUncheckedUpdateManyWithoutGlobalFilterInput>
20020
21788
  }
20021
21789
 
21790
+ export type EventUpsertWithWhereUniqueWithoutTagsInput = {
21791
+ where: EventWhereUniqueInput
21792
+ update: XOR<EventUpdateWithoutTagsInput, EventUncheckedUpdateWithoutTagsInput>
21793
+ create: XOR<EventCreateWithoutTagsInput, EventUncheckedCreateWithoutTagsInput>
21794
+ }
21795
+
21796
+ export type EventUpdateWithWhereUniqueWithoutTagsInput = {
21797
+ where: EventWhereUniqueInput
21798
+ data: XOR<EventUpdateWithoutTagsInput, EventUncheckedUpdateWithoutTagsInput>
21799
+ }
21800
+
21801
+ export type EventUpdateManyWithWhereWithoutTagsInput = {
21802
+ where: EventScalarWhereInput
21803
+ data: XOR<EventUpdateManyMutationInput, EventUncheckedUpdateManyWithoutTagsInput>
21804
+ }
21805
+
21806
+ export type EventScalarWhereInput = {
21807
+ AND?: EventScalarWhereInput | EventScalarWhereInput[]
21808
+ OR?: EventScalarWhereInput[]
21809
+ NOT?: EventScalarWhereInput | EventScalarWhereInput[]
21810
+ id?: StringFilter<"Event"> | string
21811
+ name?: StringFilter<"Event"> | string
21812
+ date?: DateTimeFilter<"Event"> | Date | string
21813
+ startingDate?: DateTimeFilter<"Event"> | Date | string
21814
+ endingDate?: DateTimeFilter<"Event"> | Date | string
21815
+ location?: StringFilter<"Event"> | string
21816
+ folderId?: StringNullableFilter<"Event"> | string | null
21817
+ tagAssistedId?: StringFilter<"Event"> | string
21818
+ tagConfirmedId?: StringFilter<"Event"> | string
21819
+ supraEventId?: StringNullableFilter<"Event"> | string | null
21820
+ active?: BoolFilter<"Event"> | boolean
21821
+ created_at?: DateTimeFilter<"Event"> | Date | string
21822
+ updated_at?: DateTimeFilter<"Event"> | Date | string
21823
+ }
21824
+
20022
21825
  export type TagCreateWithoutGroupInput = {
20023
21826
  id?: string
20024
21827
  name: string
@@ -20030,6 +21833,7 @@ export namespace Prisma {
20030
21833
  accounts?: AccountCreateNestedManyWithoutTagsInput
20031
21834
  profiles?: ProfileCreateNestedManyWithoutTagsInput
20032
21835
  accountsGlobalFilter?: AccountCreateNestedManyWithoutGlobalFilterInput
21836
+ Event?: EventCreateNestedManyWithoutTagsInput
20033
21837
  }
20034
21838
 
20035
21839
  export type TagUncheckedCreateWithoutGroupInput = {
@@ -20043,6 +21847,7 @@ export namespace Prisma {
20043
21847
  accounts?: AccountUncheckedCreateNestedManyWithoutTagsInput
20044
21848
  profiles?: ProfileUncheckedCreateNestedManyWithoutTagsInput
20045
21849
  accountsGlobalFilter?: AccountUncheckedCreateNestedManyWithoutGlobalFilterInput
21850
+ Event?: EventUncheckedCreateNestedManyWithoutTagsInput
20046
21851
  }
20047
21852
 
20048
21853
  export type TagCreateOrConnectWithoutGroupInput = {
@@ -20103,6 +21908,7 @@ export namespace Prisma {
20103
21908
  accounts?: AccountCreateNestedManyWithoutTagsInput
20104
21909
  profiles?: ProfileCreateNestedManyWithoutTagsInput
20105
21910
  accountsGlobalFilter?: AccountCreateNestedManyWithoutGlobalFilterInput
21911
+ Event?: EventCreateNestedManyWithoutTagsInput
20106
21912
  }
20107
21913
 
20108
21914
  export type TagUncheckedCreateWithoutAssistedEventInput = {
@@ -20116,6 +21922,7 @@ export namespace Prisma {
20116
21922
  accounts?: AccountUncheckedCreateNestedManyWithoutTagsInput
20117
21923
  profiles?: ProfileUncheckedCreateNestedManyWithoutTagsInput
20118
21924
  accountsGlobalFilter?: AccountUncheckedCreateNestedManyWithoutGlobalFilterInput
21925
+ Event?: EventUncheckedCreateNestedManyWithoutTagsInput
20119
21926
  }
20120
21927
 
20121
21928
  export type TagCreateOrConnectWithoutAssistedEventInput = {
@@ -20134,6 +21941,7 @@ export namespace Prisma {
20134
21941
  accounts?: AccountCreateNestedManyWithoutTagsInput
20135
21942
  profiles?: ProfileCreateNestedManyWithoutTagsInput
20136
21943
  accountsGlobalFilter?: AccountCreateNestedManyWithoutGlobalFilterInput
21944
+ Event?: EventCreateNestedManyWithoutTagsInput
20137
21945
  }
20138
21946
 
20139
21947
  export type TagUncheckedCreateWithoutConfirmedEventInput = {
@@ -20147,6 +21955,7 @@ export namespace Prisma {
20147
21955
  accounts?: AccountUncheckedCreateNestedManyWithoutTagsInput
20148
21956
  profiles?: ProfileUncheckedCreateNestedManyWithoutTagsInput
20149
21957
  accountsGlobalFilter?: AccountUncheckedCreateNestedManyWithoutGlobalFilterInput
21958
+ Event?: EventUncheckedCreateNestedManyWithoutTagsInput
20150
21959
  }
20151
21960
 
20152
21961
  export type TagCreateOrConnectWithoutConfirmedEventInput = {
@@ -20158,7 +21967,10 @@ export namespace Prisma {
20158
21967
  id?: string
20159
21968
  name: string
20160
21969
  date: Date | string
21970
+ startingDate: Date | string
21971
+ endingDate: Date | string
20161
21972
  location: string
21973
+ active?: boolean
20162
21974
  created_at?: Date | string
20163
21975
  updated_at?: Date | string
20164
21976
  folder?: EventFolderCreateNestedOneWithoutEventsInput
@@ -20166,20 +21978,27 @@ export namespace Prisma {
20166
21978
  tagConfirmed: TagCreateNestedOneWithoutConfirmedEventInput
20167
21979
  supraEvent?: EventCreateNestedOneWithoutSubEventsInput
20168
21980
  tickets?: TicketCreateNestedManyWithoutEventInput
21981
+ tags?: TagCreateNestedManyWithoutEventInput
21982
+ eventTickets?: EventTicketCreateNestedManyWithoutEventInput
20169
21983
  }
20170
21984
 
20171
21985
  export type EventUncheckedCreateWithoutSubEventsInput = {
20172
21986
  id?: string
20173
21987
  name: string
20174
21988
  date: Date | string
21989
+ startingDate: Date | string
21990
+ endingDate: Date | string
20175
21991
  location: string
20176
21992
  folderId?: string | null
20177
21993
  tagAssistedId: string
20178
21994
  tagConfirmedId: string
20179
21995
  supraEventId?: string | null
21996
+ active?: boolean
20180
21997
  created_at?: Date | string
20181
21998
  updated_at?: Date | string
20182
21999
  tickets?: TicketUncheckedCreateNestedManyWithoutEventInput
22000
+ tags?: TagUncheckedCreateNestedManyWithoutEventInput
22001
+ eventTickets?: EventTicketUncheckedCreateNestedManyWithoutEventInput
20183
22002
  }
20184
22003
 
20185
22004
  export type EventCreateOrConnectWithoutSubEventsInput = {
@@ -20187,32 +22006,72 @@ export namespace Prisma {
20187
22006
  create: XOR<EventCreateWithoutSubEventsInput, EventUncheckedCreateWithoutSubEventsInput>
20188
22007
  }
20189
22008
 
22009
+ export type TicketCreateWithoutEventInput = {
22010
+ id?: string
22011
+ type: $Enums.TicketType
22012
+ status: $Enums.TicketStatus
22013
+ fullName: string
22014
+ mail: string
22015
+ created_at?: Date | string
22016
+ updated_at?: Date | string
22017
+ }
22018
+
22019
+ export type TicketUncheckedCreateWithoutEventInput = {
22020
+ id?: string
22021
+ type: $Enums.TicketType
22022
+ status: $Enums.TicketStatus
22023
+ fullName: string
22024
+ mail: string
22025
+ created_at?: Date | string
22026
+ updated_at?: Date | string
22027
+ }
22028
+
22029
+ export type TicketCreateOrConnectWithoutEventInput = {
22030
+ where: TicketWhereUniqueInput
22031
+ create: XOR<TicketCreateWithoutEventInput, TicketUncheckedCreateWithoutEventInput>
22032
+ }
22033
+
22034
+ export type TicketCreateManyEventInputEnvelope = {
22035
+ data: TicketCreateManyEventInput | TicketCreateManyEventInput[]
22036
+ skipDuplicates?: boolean
22037
+ }
22038
+
20190
22039
  export type EventCreateWithoutSupraEventInput = {
20191
22040
  id?: string
20192
22041
  name: string
20193
22042
  date: Date | string
22043
+ startingDate: Date | string
22044
+ endingDate: Date | string
20194
22045
  location: string
22046
+ active?: boolean
20195
22047
  created_at?: Date | string
20196
22048
  updated_at?: Date | string
20197
22049
  folder?: EventFolderCreateNestedOneWithoutEventsInput
20198
22050
  tagAssisted: TagCreateNestedOneWithoutAssistedEventInput
20199
22051
  tagConfirmed: TagCreateNestedOneWithoutConfirmedEventInput
20200
- subEvents?: EventCreateNestedManyWithoutSupraEventInput
20201
22052
  tickets?: TicketCreateNestedManyWithoutEventInput
22053
+ subEvents?: EventCreateNestedManyWithoutSupraEventInput
22054
+ tags?: TagCreateNestedManyWithoutEventInput
22055
+ eventTickets?: EventTicketCreateNestedManyWithoutEventInput
20202
22056
  }
20203
22057
 
20204
22058
  export type EventUncheckedCreateWithoutSupraEventInput = {
20205
22059
  id?: string
20206
22060
  name: string
20207
22061
  date: Date | string
22062
+ startingDate: Date | string
22063
+ endingDate: Date | string
20208
22064
  location: string
20209
22065
  folderId?: string | null
20210
22066
  tagAssistedId: string
20211
22067
  tagConfirmedId: string
22068
+ active?: boolean
20212
22069
  created_at?: Date | string
20213
22070
  updated_at?: Date | string
20214
- subEvents?: EventUncheckedCreateNestedManyWithoutSupraEventInput
20215
22071
  tickets?: TicketUncheckedCreateNestedManyWithoutEventInput
22072
+ subEvents?: EventUncheckedCreateNestedManyWithoutSupraEventInput
22073
+ tags?: TagUncheckedCreateNestedManyWithoutEventInput
22074
+ eventTickets?: EventTicketUncheckedCreateNestedManyWithoutEventInput
20216
22075
  }
20217
22076
 
20218
22077
  export type EventCreateOrConnectWithoutSupraEventInput = {
@@ -20225,33 +22084,64 @@ export namespace Prisma {
20225
22084
  skipDuplicates?: boolean
20226
22085
  }
20227
22086
 
20228
- export type TicketCreateWithoutEventInput = {
22087
+ export type TagCreateWithoutEventInput = {
22088
+ id?: string
22089
+ name: string
22090
+ type?: $Enums.TagType
22091
+ created_at?: Date | string
22092
+ updated_at?: Date | string
22093
+ group: TagGroupCreateNestedOneWithoutTagsInput
22094
+ assistedEvent?: EventCreateNestedOneWithoutTagAssistedInput
22095
+ confirmedEvent?: EventCreateNestedOneWithoutTagConfirmedInput
22096
+ accounts?: AccountCreateNestedManyWithoutTagsInput
22097
+ profiles?: ProfileCreateNestedManyWithoutTagsInput
22098
+ accountsGlobalFilter?: AccountCreateNestedManyWithoutGlobalFilterInput
22099
+ }
22100
+
22101
+ export type TagUncheckedCreateWithoutEventInput = {
22102
+ id?: string
22103
+ name: string
22104
+ type?: $Enums.TagType
22105
+ groupId: string
22106
+ created_at?: Date | string
22107
+ updated_at?: Date | string
22108
+ assistedEvent?: EventUncheckedCreateNestedOneWithoutTagAssistedInput
22109
+ confirmedEvent?: EventUncheckedCreateNestedOneWithoutTagConfirmedInput
22110
+ accounts?: AccountUncheckedCreateNestedManyWithoutTagsInput
22111
+ profiles?: ProfileUncheckedCreateNestedManyWithoutTagsInput
22112
+ accountsGlobalFilter?: AccountUncheckedCreateNestedManyWithoutGlobalFilterInput
22113
+ }
22114
+
22115
+ export type TagCreateOrConnectWithoutEventInput = {
22116
+ where: TagWhereUniqueInput
22117
+ create: XOR<TagCreateWithoutEventInput, TagUncheckedCreateWithoutEventInput>
22118
+ }
22119
+
22120
+ export type EventTicketCreateWithoutEventInput = {
20229
22121
  id?: string
22122
+ amount: number
20230
22123
  type: $Enums.TicketType
20231
- status: $Enums.TicketStatus
20232
- fullName: string
20233
- mail: string
22124
+ price?: number | null
20234
22125
  created_at?: Date | string
20235
22126
  updated_at?: Date | string
20236
22127
  }
20237
22128
 
20238
- export type TicketUncheckedCreateWithoutEventInput = {
22129
+ export type EventTicketUncheckedCreateWithoutEventInput = {
20239
22130
  id?: string
22131
+ amount: number
20240
22132
  type: $Enums.TicketType
20241
- status: $Enums.TicketStatus
20242
- fullName: string
20243
- mail: string
22133
+ price?: number | null
20244
22134
  created_at?: Date | string
20245
22135
  updated_at?: Date | string
20246
22136
  }
20247
22137
 
20248
- export type TicketCreateOrConnectWithoutEventInput = {
20249
- where: TicketWhereUniqueInput
20250
- create: XOR<TicketCreateWithoutEventInput, TicketUncheckedCreateWithoutEventInput>
22138
+ export type EventTicketCreateOrConnectWithoutEventInput = {
22139
+ where: EventTicketWhereUniqueInput
22140
+ create: XOR<EventTicketCreateWithoutEventInput, EventTicketUncheckedCreateWithoutEventInput>
20251
22141
  }
20252
22142
 
20253
- export type TicketCreateManyEventInputEnvelope = {
20254
- data: TicketCreateManyEventInput | TicketCreateManyEventInput[]
22143
+ export type EventTicketCreateManyEventInputEnvelope = {
22144
+ data: EventTicketCreateManyEventInput | EventTicketCreateManyEventInput[]
20255
22145
  skipDuplicates?: boolean
20256
22146
  }
20257
22147
 
@@ -20304,6 +22194,7 @@ export namespace Prisma {
20304
22194
  accounts?: AccountUpdateManyWithoutTagsNestedInput
20305
22195
  profiles?: ProfileUpdateManyWithoutTagsNestedInput
20306
22196
  accountsGlobalFilter?: AccountUpdateManyWithoutGlobalFilterNestedInput
22197
+ Event?: EventUpdateManyWithoutTagsNestedInput
20307
22198
  }
20308
22199
 
20309
22200
  export type TagUncheckedUpdateWithoutAssistedEventInput = {
@@ -20317,6 +22208,7 @@ export namespace Prisma {
20317
22208
  accounts?: AccountUncheckedUpdateManyWithoutTagsNestedInput
20318
22209
  profiles?: ProfileUncheckedUpdateManyWithoutTagsNestedInput
20319
22210
  accountsGlobalFilter?: AccountUncheckedUpdateManyWithoutGlobalFilterNestedInput
22211
+ Event?: EventUncheckedUpdateManyWithoutTagsNestedInput
20320
22212
  }
20321
22213
 
20322
22214
  export type TagUpsertWithoutConfirmedEventInput = {
@@ -20341,6 +22233,7 @@ export namespace Prisma {
20341
22233
  accounts?: AccountUpdateManyWithoutTagsNestedInput
20342
22234
  profiles?: ProfileUpdateManyWithoutTagsNestedInput
20343
22235
  accountsGlobalFilter?: AccountUpdateManyWithoutGlobalFilterNestedInput
22236
+ Event?: EventUpdateManyWithoutTagsNestedInput
20344
22237
  }
20345
22238
 
20346
22239
  export type TagUncheckedUpdateWithoutConfirmedEventInput = {
@@ -20354,6 +22247,7 @@ export namespace Prisma {
20354
22247
  accounts?: AccountUncheckedUpdateManyWithoutTagsNestedInput
20355
22248
  profiles?: ProfileUncheckedUpdateManyWithoutTagsNestedInput
20356
22249
  accountsGlobalFilter?: AccountUncheckedUpdateManyWithoutGlobalFilterNestedInput
22250
+ Event?: EventUncheckedUpdateManyWithoutTagsNestedInput
20357
22251
  }
20358
22252
 
20359
22253
  export type EventUpsertWithoutSubEventsInput = {
@@ -20371,7 +22265,10 @@ export namespace Prisma {
20371
22265
  id?: StringFieldUpdateOperationsInput | string
20372
22266
  name?: StringFieldUpdateOperationsInput | string
20373
22267
  date?: DateTimeFieldUpdateOperationsInput | Date | string
22268
+ startingDate?: DateTimeFieldUpdateOperationsInput | Date | string
22269
+ endingDate?: DateTimeFieldUpdateOperationsInput | Date | string
20374
22270
  location?: StringFieldUpdateOperationsInput | string
22271
+ active?: BoolFieldUpdateOperationsInput | boolean
20375
22272
  created_at?: DateTimeFieldUpdateOperationsInput | Date | string
20376
22273
  updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
20377
22274
  folder?: EventFolderUpdateOneWithoutEventsNestedInput
@@ -20379,54 +22276,29 @@ export namespace Prisma {
20379
22276
  tagConfirmed?: TagUpdateOneRequiredWithoutConfirmedEventNestedInput
20380
22277
  supraEvent?: EventUpdateOneWithoutSubEventsNestedInput
20381
22278
  tickets?: TicketUpdateManyWithoutEventNestedInput
22279
+ tags?: TagUpdateManyWithoutEventNestedInput
22280
+ eventTickets?: EventTicketUpdateManyWithoutEventNestedInput
22281
+ }
22282
+
22283
+ export type EventUncheckedUpdateWithoutSubEventsInput = {
22284
+ id?: StringFieldUpdateOperationsInput | string
22285
+ name?: StringFieldUpdateOperationsInput | string
22286
+ date?: DateTimeFieldUpdateOperationsInput | Date | string
22287
+ startingDate?: DateTimeFieldUpdateOperationsInput | Date | string
22288
+ endingDate?: DateTimeFieldUpdateOperationsInput | Date | string
22289
+ location?: StringFieldUpdateOperationsInput | string
22290
+ folderId?: NullableStringFieldUpdateOperationsInput | string | null
22291
+ tagAssistedId?: StringFieldUpdateOperationsInput | string
22292
+ tagConfirmedId?: StringFieldUpdateOperationsInput | string
22293
+ supraEventId?: NullableStringFieldUpdateOperationsInput | string | null
22294
+ active?: BoolFieldUpdateOperationsInput | boolean
22295
+ created_at?: DateTimeFieldUpdateOperationsInput | Date | string
22296
+ updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
22297
+ tickets?: TicketUncheckedUpdateManyWithoutEventNestedInput
22298
+ tags?: TagUncheckedUpdateManyWithoutEventNestedInput
22299
+ eventTickets?: EventTicketUncheckedUpdateManyWithoutEventNestedInput
20382
22300
  }
20383
22301
 
20384
- export type EventUncheckedUpdateWithoutSubEventsInput = {
20385
- id?: StringFieldUpdateOperationsInput | string
20386
- name?: StringFieldUpdateOperationsInput | string
20387
- date?: DateTimeFieldUpdateOperationsInput | Date | string
20388
- location?: StringFieldUpdateOperationsInput | string
20389
- folderId?: NullableStringFieldUpdateOperationsInput | string | null
20390
- tagAssistedId?: StringFieldUpdateOperationsInput | string
20391
- tagConfirmedId?: StringFieldUpdateOperationsInput | string
20392
- supraEventId?: NullableStringFieldUpdateOperationsInput | string | null
20393
- created_at?: DateTimeFieldUpdateOperationsInput | Date | string
20394
- updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
20395
- tickets?: TicketUncheckedUpdateManyWithoutEventNestedInput
20396
- }
20397
-
20398
- export type EventUpsertWithWhereUniqueWithoutSupraEventInput = {
20399
- where: EventWhereUniqueInput
20400
- update: XOR<EventUpdateWithoutSupraEventInput, EventUncheckedUpdateWithoutSupraEventInput>
20401
- create: XOR<EventCreateWithoutSupraEventInput, EventUncheckedCreateWithoutSupraEventInput>
20402
- }
20403
-
20404
- export type EventUpdateWithWhereUniqueWithoutSupraEventInput = {
20405
- where: EventWhereUniqueInput
20406
- data: XOR<EventUpdateWithoutSupraEventInput, EventUncheckedUpdateWithoutSupraEventInput>
20407
- }
20408
-
20409
- export type EventUpdateManyWithWhereWithoutSupraEventInput = {
20410
- where: EventScalarWhereInput
20411
- data: XOR<EventUpdateManyMutationInput, EventUncheckedUpdateManyWithoutSupraEventInput>
20412
- }
20413
-
20414
- export type EventScalarWhereInput = {
20415
- AND?: EventScalarWhereInput | EventScalarWhereInput[]
20416
- OR?: EventScalarWhereInput[]
20417
- NOT?: EventScalarWhereInput | EventScalarWhereInput[]
20418
- id?: StringFilter<"Event"> | string
20419
- name?: StringFilter<"Event"> | string
20420
- date?: DateTimeFilter<"Event"> | Date | string
20421
- location?: StringFilter<"Event"> | string
20422
- folderId?: StringNullableFilter<"Event"> | string | null
20423
- tagAssistedId?: StringFilter<"Event"> | string
20424
- tagConfirmedId?: StringFilter<"Event"> | string
20425
- supraEventId?: StringNullableFilter<"Event"> | string | null
20426
- created_at?: DateTimeFilter<"Event"> | Date | string
20427
- updated_at?: DateTimeFilter<"Event"> | Date | string
20428
- }
20429
-
20430
22302
  export type TicketUpsertWithWhereUniqueWithoutEventInput = {
20431
22303
  where: TicketWhereUniqueInput
20432
22304
  update: XOR<TicketUpdateWithoutEventInput, TicketUncheckedUpdateWithoutEventInput>
@@ -20457,32 +22329,103 @@ export namespace Prisma {
20457
22329
  updated_at?: DateTimeFilter<"Ticket"> | Date | string
20458
22330
  }
20459
22331
 
22332
+ export type EventUpsertWithWhereUniqueWithoutSupraEventInput = {
22333
+ where: EventWhereUniqueInput
22334
+ update: XOR<EventUpdateWithoutSupraEventInput, EventUncheckedUpdateWithoutSupraEventInput>
22335
+ create: XOR<EventCreateWithoutSupraEventInput, EventUncheckedCreateWithoutSupraEventInput>
22336
+ }
22337
+
22338
+ export type EventUpdateWithWhereUniqueWithoutSupraEventInput = {
22339
+ where: EventWhereUniqueInput
22340
+ data: XOR<EventUpdateWithoutSupraEventInput, EventUncheckedUpdateWithoutSupraEventInput>
22341
+ }
22342
+
22343
+ export type EventUpdateManyWithWhereWithoutSupraEventInput = {
22344
+ where: EventScalarWhereInput
22345
+ data: XOR<EventUpdateManyMutationInput, EventUncheckedUpdateManyWithoutSupraEventInput>
22346
+ }
22347
+
22348
+ export type TagUpsertWithWhereUniqueWithoutEventInput = {
22349
+ where: TagWhereUniqueInput
22350
+ update: XOR<TagUpdateWithoutEventInput, TagUncheckedUpdateWithoutEventInput>
22351
+ create: XOR<TagCreateWithoutEventInput, TagUncheckedCreateWithoutEventInput>
22352
+ }
22353
+
22354
+ export type TagUpdateWithWhereUniqueWithoutEventInput = {
22355
+ where: TagWhereUniqueInput
22356
+ data: XOR<TagUpdateWithoutEventInput, TagUncheckedUpdateWithoutEventInput>
22357
+ }
22358
+
22359
+ export type TagUpdateManyWithWhereWithoutEventInput = {
22360
+ where: TagScalarWhereInput
22361
+ data: XOR<TagUpdateManyMutationInput, TagUncheckedUpdateManyWithoutEventInput>
22362
+ }
22363
+
22364
+ export type EventTicketUpsertWithWhereUniqueWithoutEventInput = {
22365
+ where: EventTicketWhereUniqueInput
22366
+ update: XOR<EventTicketUpdateWithoutEventInput, EventTicketUncheckedUpdateWithoutEventInput>
22367
+ create: XOR<EventTicketCreateWithoutEventInput, EventTicketUncheckedCreateWithoutEventInput>
22368
+ }
22369
+
22370
+ export type EventTicketUpdateWithWhereUniqueWithoutEventInput = {
22371
+ where: EventTicketWhereUniqueInput
22372
+ data: XOR<EventTicketUpdateWithoutEventInput, EventTicketUncheckedUpdateWithoutEventInput>
22373
+ }
22374
+
22375
+ export type EventTicketUpdateManyWithWhereWithoutEventInput = {
22376
+ where: EventTicketScalarWhereInput
22377
+ data: XOR<EventTicketUpdateManyMutationInput, EventTicketUncheckedUpdateManyWithoutEventInput>
22378
+ }
22379
+
22380
+ export type EventTicketScalarWhereInput = {
22381
+ AND?: EventTicketScalarWhereInput | EventTicketScalarWhereInput[]
22382
+ OR?: EventTicketScalarWhereInput[]
22383
+ NOT?: EventTicketScalarWhereInput | EventTicketScalarWhereInput[]
22384
+ id?: StringFilter<"EventTicket"> | string
22385
+ eventId?: StringFilter<"EventTicket"> | string
22386
+ amount?: IntFilter<"EventTicket"> | number
22387
+ type?: EnumTicketTypeFilter<"EventTicket"> | $Enums.TicketType
22388
+ price?: FloatNullableFilter<"EventTicket"> | number | null
22389
+ created_at?: DateTimeFilter<"EventTicket"> | Date | string
22390
+ updated_at?: DateTimeFilter<"EventTicket"> | Date | string
22391
+ }
22392
+
20460
22393
  export type EventCreateWithoutFolderInput = {
20461
22394
  id?: string
20462
22395
  name: string
20463
22396
  date: Date | string
22397
+ startingDate: Date | string
22398
+ endingDate: Date | string
20464
22399
  location: string
22400
+ active?: boolean
20465
22401
  created_at?: Date | string
20466
22402
  updated_at?: Date | string
20467
22403
  tagAssisted: TagCreateNestedOneWithoutAssistedEventInput
20468
22404
  tagConfirmed: TagCreateNestedOneWithoutConfirmedEventInput
20469
22405
  supraEvent?: EventCreateNestedOneWithoutSubEventsInput
20470
- subEvents?: EventCreateNestedManyWithoutSupraEventInput
20471
22406
  tickets?: TicketCreateNestedManyWithoutEventInput
22407
+ subEvents?: EventCreateNestedManyWithoutSupraEventInput
22408
+ tags?: TagCreateNestedManyWithoutEventInput
22409
+ eventTickets?: EventTicketCreateNestedManyWithoutEventInput
20472
22410
  }
20473
22411
 
20474
22412
  export type EventUncheckedCreateWithoutFolderInput = {
20475
22413
  id?: string
20476
22414
  name: string
20477
22415
  date: Date | string
22416
+ startingDate: Date | string
22417
+ endingDate: Date | string
20478
22418
  location: string
20479
22419
  tagAssistedId: string
20480
22420
  tagConfirmedId: string
20481
22421
  supraEventId?: string | null
22422
+ active?: boolean
20482
22423
  created_at?: Date | string
20483
22424
  updated_at?: Date | string
20484
- subEvents?: EventUncheckedCreateNestedManyWithoutSupraEventInput
20485
22425
  tickets?: TicketUncheckedCreateNestedManyWithoutEventInput
22426
+ subEvents?: EventUncheckedCreateNestedManyWithoutSupraEventInput
22427
+ tags?: TagUncheckedCreateNestedManyWithoutEventInput
22428
+ eventTickets?: EventTicketUncheckedCreateNestedManyWithoutEventInput
20486
22429
  }
20487
22430
 
20488
22431
  export type EventCreateOrConnectWithoutFolderInput = {
@@ -20627,7 +22570,10 @@ export namespace Prisma {
20627
22570
  id?: string
20628
22571
  name: string
20629
22572
  date: Date | string
22573
+ startingDate: Date | string
22574
+ endingDate: Date | string
20630
22575
  location: string
22576
+ active?: boolean
20631
22577
  created_at?: Date | string
20632
22578
  updated_at?: Date | string
20633
22579
  folder?: EventFolderCreateNestedOneWithoutEventsInput
@@ -20635,20 +22581,27 @@ export namespace Prisma {
20635
22581
  tagConfirmed: TagCreateNestedOneWithoutConfirmedEventInput
20636
22582
  supraEvent?: EventCreateNestedOneWithoutSubEventsInput
20637
22583
  subEvents?: EventCreateNestedManyWithoutSupraEventInput
22584
+ tags?: TagCreateNestedManyWithoutEventInput
22585
+ eventTickets?: EventTicketCreateNestedManyWithoutEventInput
20638
22586
  }
20639
22587
 
20640
22588
  export type EventUncheckedCreateWithoutTicketsInput = {
20641
22589
  id?: string
20642
22590
  name: string
20643
22591
  date: Date | string
22592
+ startingDate: Date | string
22593
+ endingDate: Date | string
20644
22594
  location: string
20645
22595
  folderId?: string | null
20646
22596
  tagAssistedId: string
20647
22597
  tagConfirmedId: string
20648
22598
  supraEventId?: string | null
22599
+ active?: boolean
20649
22600
  created_at?: Date | string
20650
22601
  updated_at?: Date | string
20651
22602
  subEvents?: EventUncheckedCreateNestedManyWithoutSupraEventInput
22603
+ tags?: TagUncheckedCreateNestedManyWithoutEventInput
22604
+ eventTickets?: EventTicketUncheckedCreateNestedManyWithoutEventInput
20652
22605
  }
20653
22606
 
20654
22607
  export type EventCreateOrConnectWithoutTicketsInput = {
@@ -20671,7 +22624,10 @@ export namespace Prisma {
20671
22624
  id?: StringFieldUpdateOperationsInput | string
20672
22625
  name?: StringFieldUpdateOperationsInput | string
20673
22626
  date?: DateTimeFieldUpdateOperationsInput | Date | string
22627
+ startingDate?: DateTimeFieldUpdateOperationsInput | Date | string
22628
+ endingDate?: DateTimeFieldUpdateOperationsInput | Date | string
20674
22629
  location?: StringFieldUpdateOperationsInput | string
22630
+ active?: BoolFieldUpdateOperationsInput | boolean
20675
22631
  created_at?: DateTimeFieldUpdateOperationsInput | Date | string
20676
22632
  updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
20677
22633
  folder?: EventFolderUpdateOneWithoutEventsNestedInput
@@ -20679,20 +22635,119 @@ export namespace Prisma {
20679
22635
  tagConfirmed?: TagUpdateOneRequiredWithoutConfirmedEventNestedInput
20680
22636
  supraEvent?: EventUpdateOneWithoutSubEventsNestedInput
20681
22637
  subEvents?: EventUpdateManyWithoutSupraEventNestedInput
22638
+ tags?: TagUpdateManyWithoutEventNestedInput
22639
+ eventTickets?: EventTicketUpdateManyWithoutEventNestedInput
20682
22640
  }
20683
22641
 
20684
22642
  export type EventUncheckedUpdateWithoutTicketsInput = {
20685
22643
  id?: StringFieldUpdateOperationsInput | string
20686
22644
  name?: StringFieldUpdateOperationsInput | string
20687
22645
  date?: DateTimeFieldUpdateOperationsInput | Date | string
22646
+ startingDate?: DateTimeFieldUpdateOperationsInput | Date | string
22647
+ endingDate?: DateTimeFieldUpdateOperationsInput | Date | string
22648
+ location?: StringFieldUpdateOperationsInput | string
22649
+ folderId?: NullableStringFieldUpdateOperationsInput | string | null
22650
+ tagAssistedId?: StringFieldUpdateOperationsInput | string
22651
+ tagConfirmedId?: StringFieldUpdateOperationsInput | string
22652
+ supraEventId?: NullableStringFieldUpdateOperationsInput | string | null
22653
+ active?: BoolFieldUpdateOperationsInput | boolean
22654
+ created_at?: DateTimeFieldUpdateOperationsInput | Date | string
22655
+ updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
22656
+ subEvents?: EventUncheckedUpdateManyWithoutSupraEventNestedInput
22657
+ tags?: TagUncheckedUpdateManyWithoutEventNestedInput
22658
+ eventTickets?: EventTicketUncheckedUpdateManyWithoutEventNestedInput
22659
+ }
22660
+
22661
+ export type EventCreateWithoutEventTicketsInput = {
22662
+ id?: string
22663
+ name: string
22664
+ date: Date | string
22665
+ startingDate: Date | string
22666
+ endingDate: Date | string
22667
+ location: string
22668
+ active?: boolean
22669
+ created_at?: Date | string
22670
+ updated_at?: Date | string
22671
+ folder?: EventFolderCreateNestedOneWithoutEventsInput
22672
+ tagAssisted: TagCreateNestedOneWithoutAssistedEventInput
22673
+ tagConfirmed: TagCreateNestedOneWithoutConfirmedEventInput
22674
+ supraEvent?: EventCreateNestedOneWithoutSubEventsInput
22675
+ tickets?: TicketCreateNestedManyWithoutEventInput
22676
+ subEvents?: EventCreateNestedManyWithoutSupraEventInput
22677
+ tags?: TagCreateNestedManyWithoutEventInput
22678
+ }
22679
+
22680
+ export type EventUncheckedCreateWithoutEventTicketsInput = {
22681
+ id?: string
22682
+ name: string
22683
+ date: Date | string
22684
+ startingDate: Date | string
22685
+ endingDate: Date | string
22686
+ location: string
22687
+ folderId?: string | null
22688
+ tagAssistedId: string
22689
+ tagConfirmedId: string
22690
+ supraEventId?: string | null
22691
+ active?: boolean
22692
+ created_at?: Date | string
22693
+ updated_at?: Date | string
22694
+ tickets?: TicketUncheckedCreateNestedManyWithoutEventInput
22695
+ subEvents?: EventUncheckedCreateNestedManyWithoutSupraEventInput
22696
+ tags?: TagUncheckedCreateNestedManyWithoutEventInput
22697
+ }
22698
+
22699
+ export type EventCreateOrConnectWithoutEventTicketsInput = {
22700
+ where: EventWhereUniqueInput
22701
+ create: XOR<EventCreateWithoutEventTicketsInput, EventUncheckedCreateWithoutEventTicketsInput>
22702
+ }
22703
+
22704
+ export type EventUpsertWithoutEventTicketsInput = {
22705
+ update: XOR<EventUpdateWithoutEventTicketsInput, EventUncheckedUpdateWithoutEventTicketsInput>
22706
+ create: XOR<EventCreateWithoutEventTicketsInput, EventUncheckedCreateWithoutEventTicketsInput>
22707
+ where?: EventWhereInput
22708
+ }
22709
+
22710
+ export type EventUpdateToOneWithWhereWithoutEventTicketsInput = {
22711
+ where?: EventWhereInput
22712
+ data: XOR<EventUpdateWithoutEventTicketsInput, EventUncheckedUpdateWithoutEventTicketsInput>
22713
+ }
22714
+
22715
+ export type EventUpdateWithoutEventTicketsInput = {
22716
+ id?: StringFieldUpdateOperationsInput | string
22717
+ name?: StringFieldUpdateOperationsInput | string
22718
+ date?: DateTimeFieldUpdateOperationsInput | Date | string
22719
+ startingDate?: DateTimeFieldUpdateOperationsInput | Date | string
22720
+ endingDate?: DateTimeFieldUpdateOperationsInput | Date | string
22721
+ location?: StringFieldUpdateOperationsInput | string
22722
+ active?: BoolFieldUpdateOperationsInput | boolean
22723
+ created_at?: DateTimeFieldUpdateOperationsInput | Date | string
22724
+ updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
22725
+ folder?: EventFolderUpdateOneWithoutEventsNestedInput
22726
+ tagAssisted?: TagUpdateOneRequiredWithoutAssistedEventNestedInput
22727
+ tagConfirmed?: TagUpdateOneRequiredWithoutConfirmedEventNestedInput
22728
+ supraEvent?: EventUpdateOneWithoutSubEventsNestedInput
22729
+ tickets?: TicketUpdateManyWithoutEventNestedInput
22730
+ subEvents?: EventUpdateManyWithoutSupraEventNestedInput
22731
+ tags?: TagUpdateManyWithoutEventNestedInput
22732
+ }
22733
+
22734
+ export type EventUncheckedUpdateWithoutEventTicketsInput = {
22735
+ id?: StringFieldUpdateOperationsInput | string
22736
+ name?: StringFieldUpdateOperationsInput | string
22737
+ date?: DateTimeFieldUpdateOperationsInput | Date | string
22738
+ startingDate?: DateTimeFieldUpdateOperationsInput | Date | string
22739
+ endingDate?: DateTimeFieldUpdateOperationsInput | Date | string
20688
22740
  location?: StringFieldUpdateOperationsInput | string
20689
22741
  folderId?: NullableStringFieldUpdateOperationsInput | string | null
20690
22742
  tagAssistedId?: StringFieldUpdateOperationsInput | string
20691
22743
  tagConfirmedId?: StringFieldUpdateOperationsInput | string
20692
22744
  supraEventId?: NullableStringFieldUpdateOperationsInput | string | null
22745
+ active?: BoolFieldUpdateOperationsInput | boolean
20693
22746
  created_at?: DateTimeFieldUpdateOperationsInput | Date | string
20694
22747
  updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
22748
+ tickets?: TicketUncheckedUpdateManyWithoutEventNestedInput
20695
22749
  subEvents?: EventUncheckedUpdateManyWithoutSupraEventNestedInput
22750
+ tags?: TagUncheckedUpdateManyWithoutEventNestedInput
20696
22751
  }
20697
22752
 
20698
22753
  export type CommentCreateManyAccountInput = {
@@ -20802,6 +22857,7 @@ export namespace Prisma {
20802
22857
  confirmedEvent?: EventUpdateOneWithoutTagConfirmedNestedInput
20803
22858
  profiles?: ProfileUpdateManyWithoutTagsNestedInput
20804
22859
  accountsGlobalFilter?: AccountUpdateManyWithoutGlobalFilterNestedInput
22860
+ Event?: EventUpdateManyWithoutTagsNestedInput
20805
22861
  }
20806
22862
 
20807
22863
  export type TagUncheckedUpdateWithoutAccountsInput = {
@@ -20815,6 +22871,7 @@ export namespace Prisma {
20815
22871
  confirmedEvent?: EventUncheckedUpdateOneWithoutTagConfirmedNestedInput
20816
22872
  profiles?: ProfileUncheckedUpdateManyWithoutTagsNestedInput
20817
22873
  accountsGlobalFilter?: AccountUncheckedUpdateManyWithoutGlobalFilterNestedInput
22874
+ Event?: EventUncheckedUpdateManyWithoutTagsNestedInput
20818
22875
  }
20819
22876
 
20820
22877
  export type TagUncheckedUpdateManyWithoutAccountsInput = {
@@ -20837,6 +22894,7 @@ export namespace Prisma {
20837
22894
  confirmedEvent?: EventUpdateOneWithoutTagConfirmedNestedInput
20838
22895
  accounts?: AccountUpdateManyWithoutTagsNestedInput
20839
22896
  profiles?: ProfileUpdateManyWithoutTagsNestedInput
22897
+ Event?: EventUpdateManyWithoutTagsNestedInput
20840
22898
  }
20841
22899
 
20842
22900
  export type TagUncheckedUpdateWithoutAccountsGlobalFilterInput = {
@@ -20850,6 +22908,7 @@ export namespace Prisma {
20850
22908
  confirmedEvent?: EventUncheckedUpdateOneWithoutTagConfirmedNestedInput
20851
22909
  accounts?: AccountUncheckedUpdateManyWithoutTagsNestedInput
20852
22910
  profiles?: ProfileUncheckedUpdateManyWithoutTagsNestedInput
22911
+ Event?: EventUncheckedUpdateManyWithoutTagsNestedInput
20853
22912
  }
20854
22913
 
20855
22914
  export type TagUncheckedUpdateManyWithoutAccountsGlobalFilterInput = {
@@ -20956,6 +23015,7 @@ export namespace Prisma {
20956
23015
  confirmedEvent?: EventUpdateOneWithoutTagConfirmedNestedInput
20957
23016
  accounts?: AccountUpdateManyWithoutTagsNestedInput
20958
23017
  accountsGlobalFilter?: AccountUpdateManyWithoutGlobalFilterNestedInput
23018
+ Event?: EventUpdateManyWithoutTagsNestedInput
20959
23019
  }
20960
23020
 
20961
23021
  export type TagUncheckedUpdateWithoutProfilesInput = {
@@ -20969,6 +23029,7 @@ export namespace Prisma {
20969
23029
  confirmedEvent?: EventUncheckedUpdateOneWithoutTagConfirmedNestedInput
20970
23030
  accounts?: AccountUncheckedUpdateManyWithoutTagsNestedInput
20971
23031
  accountsGlobalFilter?: AccountUncheckedUpdateManyWithoutGlobalFilterNestedInput
23032
+ Event?: EventUncheckedUpdateManyWithoutTagsNestedInput
20972
23033
  }
20973
23034
 
20974
23035
  export type TagUncheckedUpdateManyWithoutProfilesInput = {
@@ -21308,6 +23369,60 @@ export namespace Prisma {
21308
23369
  updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
21309
23370
  }
21310
23371
 
23372
+ export type EventUpdateWithoutTagsInput = {
23373
+ id?: StringFieldUpdateOperationsInput | string
23374
+ name?: StringFieldUpdateOperationsInput | string
23375
+ date?: DateTimeFieldUpdateOperationsInput | Date | string
23376
+ startingDate?: DateTimeFieldUpdateOperationsInput | Date | string
23377
+ endingDate?: DateTimeFieldUpdateOperationsInput | Date | string
23378
+ location?: StringFieldUpdateOperationsInput | string
23379
+ active?: BoolFieldUpdateOperationsInput | boolean
23380
+ created_at?: DateTimeFieldUpdateOperationsInput | Date | string
23381
+ updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
23382
+ folder?: EventFolderUpdateOneWithoutEventsNestedInput
23383
+ tagAssisted?: TagUpdateOneRequiredWithoutAssistedEventNestedInput
23384
+ tagConfirmed?: TagUpdateOneRequiredWithoutConfirmedEventNestedInput
23385
+ supraEvent?: EventUpdateOneWithoutSubEventsNestedInput
23386
+ tickets?: TicketUpdateManyWithoutEventNestedInput
23387
+ subEvents?: EventUpdateManyWithoutSupraEventNestedInput
23388
+ eventTickets?: EventTicketUpdateManyWithoutEventNestedInput
23389
+ }
23390
+
23391
+ export type EventUncheckedUpdateWithoutTagsInput = {
23392
+ id?: StringFieldUpdateOperationsInput | string
23393
+ name?: StringFieldUpdateOperationsInput | string
23394
+ date?: DateTimeFieldUpdateOperationsInput | Date | string
23395
+ startingDate?: DateTimeFieldUpdateOperationsInput | Date | string
23396
+ endingDate?: DateTimeFieldUpdateOperationsInput | Date | string
23397
+ location?: StringFieldUpdateOperationsInput | string
23398
+ folderId?: NullableStringFieldUpdateOperationsInput | string | null
23399
+ tagAssistedId?: StringFieldUpdateOperationsInput | string
23400
+ tagConfirmedId?: StringFieldUpdateOperationsInput | string
23401
+ supraEventId?: NullableStringFieldUpdateOperationsInput | string | null
23402
+ active?: BoolFieldUpdateOperationsInput | boolean
23403
+ created_at?: DateTimeFieldUpdateOperationsInput | Date | string
23404
+ updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
23405
+ tickets?: TicketUncheckedUpdateManyWithoutEventNestedInput
23406
+ subEvents?: EventUncheckedUpdateManyWithoutSupraEventNestedInput
23407
+ eventTickets?: EventTicketUncheckedUpdateManyWithoutEventNestedInput
23408
+ }
23409
+
23410
+ export type EventUncheckedUpdateManyWithoutTagsInput = {
23411
+ id?: StringFieldUpdateOperationsInput | string
23412
+ name?: StringFieldUpdateOperationsInput | string
23413
+ date?: DateTimeFieldUpdateOperationsInput | Date | string
23414
+ startingDate?: DateTimeFieldUpdateOperationsInput | Date | string
23415
+ endingDate?: DateTimeFieldUpdateOperationsInput | Date | string
23416
+ location?: StringFieldUpdateOperationsInput | string
23417
+ folderId?: NullableStringFieldUpdateOperationsInput | string | null
23418
+ tagAssistedId?: StringFieldUpdateOperationsInput | string
23419
+ tagConfirmedId?: StringFieldUpdateOperationsInput | string
23420
+ supraEventId?: NullableStringFieldUpdateOperationsInput | string | null
23421
+ active?: BoolFieldUpdateOperationsInput | boolean
23422
+ created_at?: DateTimeFieldUpdateOperationsInput | Date | string
23423
+ updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
23424
+ }
23425
+
21311
23426
  export type TagCreateManyGroupInput = {
21312
23427
  id?: string
21313
23428
  name: string
@@ -21327,6 +23442,7 @@ export namespace Prisma {
21327
23442
  accounts?: AccountUpdateManyWithoutTagsNestedInput
21328
23443
  profiles?: ProfileUpdateManyWithoutTagsNestedInput
21329
23444
  accountsGlobalFilter?: AccountUpdateManyWithoutGlobalFilterNestedInput
23445
+ Event?: EventUpdateManyWithoutTagsNestedInput
21330
23446
  }
21331
23447
 
21332
23448
  export type TagUncheckedUpdateWithoutGroupInput = {
@@ -21340,6 +23456,7 @@ export namespace Prisma {
21340
23456
  accounts?: AccountUncheckedUpdateManyWithoutTagsNestedInput
21341
23457
  profiles?: ProfileUncheckedUpdateManyWithoutTagsNestedInput
21342
23458
  accountsGlobalFilter?: AccountUncheckedUpdateManyWithoutGlobalFilterNestedInput
23459
+ Event?: EventUncheckedUpdateManyWithoutTagsNestedInput
21343
23460
  }
21344
23461
 
21345
23462
  export type TagUncheckedUpdateManyWithoutGroupInput = {
@@ -21350,94 +23467,183 @@ export namespace Prisma {
21350
23467
  updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
21351
23468
  }
21352
23469
 
23470
+ export type TicketCreateManyEventInput = {
23471
+ id?: string
23472
+ type: $Enums.TicketType
23473
+ status: $Enums.TicketStatus
23474
+ fullName: string
23475
+ mail: string
23476
+ created_at?: Date | string
23477
+ updated_at?: Date | string
23478
+ }
23479
+
21353
23480
  export type EventCreateManySupraEventInput = {
21354
23481
  id?: string
21355
23482
  name: string
21356
23483
  date: Date | string
23484
+ startingDate: Date | string
23485
+ endingDate: Date | string
21357
23486
  location: string
21358
23487
  folderId?: string | null
21359
23488
  tagAssistedId: string
21360
23489
  tagConfirmedId: string
23490
+ active?: boolean
21361
23491
  created_at?: Date | string
21362
23492
  updated_at?: Date | string
21363
23493
  }
21364
23494
 
21365
- export type TicketCreateManyEventInput = {
23495
+ export type EventTicketCreateManyEventInput = {
21366
23496
  id?: string
23497
+ amount: number
21367
23498
  type: $Enums.TicketType
21368
- status: $Enums.TicketStatus
21369
- fullName: string
21370
- mail: string
23499
+ price?: number | null
21371
23500
  created_at?: Date | string
21372
23501
  updated_at?: Date | string
21373
23502
  }
21374
23503
 
23504
+ export type TicketUpdateWithoutEventInput = {
23505
+ id?: StringFieldUpdateOperationsInput | string
23506
+ type?: EnumTicketTypeFieldUpdateOperationsInput | $Enums.TicketType
23507
+ status?: EnumTicketStatusFieldUpdateOperationsInput | $Enums.TicketStatus
23508
+ fullName?: StringFieldUpdateOperationsInput | string
23509
+ mail?: StringFieldUpdateOperationsInput | string
23510
+ created_at?: DateTimeFieldUpdateOperationsInput | Date | string
23511
+ updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
23512
+ }
23513
+
23514
+ export type TicketUncheckedUpdateWithoutEventInput = {
23515
+ id?: StringFieldUpdateOperationsInput | string
23516
+ type?: EnumTicketTypeFieldUpdateOperationsInput | $Enums.TicketType
23517
+ status?: EnumTicketStatusFieldUpdateOperationsInput | $Enums.TicketStatus
23518
+ fullName?: StringFieldUpdateOperationsInput | string
23519
+ mail?: StringFieldUpdateOperationsInput | string
23520
+ created_at?: DateTimeFieldUpdateOperationsInput | Date | string
23521
+ updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
23522
+ }
23523
+
23524
+ export type TicketUncheckedUpdateManyWithoutEventInput = {
23525
+ id?: StringFieldUpdateOperationsInput | string
23526
+ type?: EnumTicketTypeFieldUpdateOperationsInput | $Enums.TicketType
23527
+ status?: EnumTicketStatusFieldUpdateOperationsInput | $Enums.TicketStatus
23528
+ fullName?: StringFieldUpdateOperationsInput | string
23529
+ mail?: StringFieldUpdateOperationsInput | string
23530
+ created_at?: DateTimeFieldUpdateOperationsInput | Date | string
23531
+ updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
23532
+ }
23533
+
21375
23534
  export type EventUpdateWithoutSupraEventInput = {
21376
23535
  id?: StringFieldUpdateOperationsInput | string
21377
23536
  name?: StringFieldUpdateOperationsInput | string
21378
23537
  date?: DateTimeFieldUpdateOperationsInput | Date | string
23538
+ startingDate?: DateTimeFieldUpdateOperationsInput | Date | string
23539
+ endingDate?: DateTimeFieldUpdateOperationsInput | Date | string
21379
23540
  location?: StringFieldUpdateOperationsInput | string
23541
+ active?: BoolFieldUpdateOperationsInput | boolean
21380
23542
  created_at?: DateTimeFieldUpdateOperationsInput | Date | string
21381
23543
  updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
21382
23544
  folder?: EventFolderUpdateOneWithoutEventsNestedInput
21383
23545
  tagAssisted?: TagUpdateOneRequiredWithoutAssistedEventNestedInput
21384
23546
  tagConfirmed?: TagUpdateOneRequiredWithoutConfirmedEventNestedInput
21385
- subEvents?: EventUpdateManyWithoutSupraEventNestedInput
21386
23547
  tickets?: TicketUpdateManyWithoutEventNestedInput
23548
+ subEvents?: EventUpdateManyWithoutSupraEventNestedInput
23549
+ tags?: TagUpdateManyWithoutEventNestedInput
23550
+ eventTickets?: EventTicketUpdateManyWithoutEventNestedInput
21387
23551
  }
21388
23552
 
21389
23553
  export type EventUncheckedUpdateWithoutSupraEventInput = {
21390
23554
  id?: StringFieldUpdateOperationsInput | string
21391
23555
  name?: StringFieldUpdateOperationsInput | string
21392
23556
  date?: DateTimeFieldUpdateOperationsInput | Date | string
23557
+ startingDate?: DateTimeFieldUpdateOperationsInput | Date | string
23558
+ endingDate?: DateTimeFieldUpdateOperationsInput | Date | string
21393
23559
  location?: StringFieldUpdateOperationsInput | string
21394
23560
  folderId?: NullableStringFieldUpdateOperationsInput | string | null
21395
23561
  tagAssistedId?: StringFieldUpdateOperationsInput | string
21396
23562
  tagConfirmedId?: StringFieldUpdateOperationsInput | string
23563
+ active?: BoolFieldUpdateOperationsInput | boolean
21397
23564
  created_at?: DateTimeFieldUpdateOperationsInput | Date | string
21398
23565
  updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
21399
- subEvents?: EventUncheckedUpdateManyWithoutSupraEventNestedInput
21400
23566
  tickets?: TicketUncheckedUpdateManyWithoutEventNestedInput
23567
+ subEvents?: EventUncheckedUpdateManyWithoutSupraEventNestedInput
23568
+ tags?: TagUncheckedUpdateManyWithoutEventNestedInput
23569
+ eventTickets?: EventTicketUncheckedUpdateManyWithoutEventNestedInput
21401
23570
  }
21402
23571
 
21403
23572
  export type EventUncheckedUpdateManyWithoutSupraEventInput = {
21404
23573
  id?: StringFieldUpdateOperationsInput | string
21405
23574
  name?: StringFieldUpdateOperationsInput | string
21406
23575
  date?: DateTimeFieldUpdateOperationsInput | Date | string
23576
+ startingDate?: DateTimeFieldUpdateOperationsInput | Date | string
23577
+ endingDate?: DateTimeFieldUpdateOperationsInput | Date | string
21407
23578
  location?: StringFieldUpdateOperationsInput | string
21408
23579
  folderId?: NullableStringFieldUpdateOperationsInput | string | null
21409
23580
  tagAssistedId?: StringFieldUpdateOperationsInput | string
21410
23581
  tagConfirmedId?: StringFieldUpdateOperationsInput | string
23582
+ active?: BoolFieldUpdateOperationsInput | boolean
21411
23583
  created_at?: DateTimeFieldUpdateOperationsInput | Date | string
21412
23584
  updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
21413
23585
  }
21414
23586
 
21415
- export type TicketUpdateWithoutEventInput = {
23587
+ export type TagUpdateWithoutEventInput = {
23588
+ id?: StringFieldUpdateOperationsInput | string
23589
+ name?: StringFieldUpdateOperationsInput | string
23590
+ type?: EnumTagTypeFieldUpdateOperationsInput | $Enums.TagType
23591
+ created_at?: DateTimeFieldUpdateOperationsInput | Date | string
23592
+ updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
23593
+ group?: TagGroupUpdateOneRequiredWithoutTagsNestedInput
23594
+ assistedEvent?: EventUpdateOneWithoutTagAssistedNestedInput
23595
+ confirmedEvent?: EventUpdateOneWithoutTagConfirmedNestedInput
23596
+ accounts?: AccountUpdateManyWithoutTagsNestedInput
23597
+ profiles?: ProfileUpdateManyWithoutTagsNestedInput
23598
+ accountsGlobalFilter?: AccountUpdateManyWithoutGlobalFilterNestedInput
23599
+ }
23600
+
23601
+ export type TagUncheckedUpdateWithoutEventInput = {
23602
+ id?: StringFieldUpdateOperationsInput | string
23603
+ name?: StringFieldUpdateOperationsInput | string
23604
+ type?: EnumTagTypeFieldUpdateOperationsInput | $Enums.TagType
23605
+ groupId?: StringFieldUpdateOperationsInput | string
23606
+ created_at?: DateTimeFieldUpdateOperationsInput | Date | string
23607
+ updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
23608
+ assistedEvent?: EventUncheckedUpdateOneWithoutTagAssistedNestedInput
23609
+ confirmedEvent?: EventUncheckedUpdateOneWithoutTagConfirmedNestedInput
23610
+ accounts?: AccountUncheckedUpdateManyWithoutTagsNestedInput
23611
+ profiles?: ProfileUncheckedUpdateManyWithoutTagsNestedInput
23612
+ accountsGlobalFilter?: AccountUncheckedUpdateManyWithoutGlobalFilterNestedInput
23613
+ }
23614
+
23615
+ export type TagUncheckedUpdateManyWithoutEventInput = {
23616
+ id?: StringFieldUpdateOperationsInput | string
23617
+ name?: StringFieldUpdateOperationsInput | string
23618
+ type?: EnumTagTypeFieldUpdateOperationsInput | $Enums.TagType
23619
+ groupId?: StringFieldUpdateOperationsInput | string
23620
+ created_at?: DateTimeFieldUpdateOperationsInput | Date | string
23621
+ updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
23622
+ }
23623
+
23624
+ export type EventTicketUpdateWithoutEventInput = {
21416
23625
  id?: StringFieldUpdateOperationsInput | string
23626
+ amount?: IntFieldUpdateOperationsInput | number
21417
23627
  type?: EnumTicketTypeFieldUpdateOperationsInput | $Enums.TicketType
21418
- status?: EnumTicketStatusFieldUpdateOperationsInput | $Enums.TicketStatus
21419
- fullName?: StringFieldUpdateOperationsInput | string
21420
- mail?: StringFieldUpdateOperationsInput | string
23628
+ price?: NullableFloatFieldUpdateOperationsInput | number | null
21421
23629
  created_at?: DateTimeFieldUpdateOperationsInput | Date | string
21422
23630
  updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
21423
23631
  }
21424
23632
 
21425
- export type TicketUncheckedUpdateWithoutEventInput = {
23633
+ export type EventTicketUncheckedUpdateWithoutEventInput = {
21426
23634
  id?: StringFieldUpdateOperationsInput | string
23635
+ amount?: IntFieldUpdateOperationsInput | number
21427
23636
  type?: EnumTicketTypeFieldUpdateOperationsInput | $Enums.TicketType
21428
- status?: EnumTicketStatusFieldUpdateOperationsInput | $Enums.TicketStatus
21429
- fullName?: StringFieldUpdateOperationsInput | string
21430
- mail?: StringFieldUpdateOperationsInput | string
23637
+ price?: NullableFloatFieldUpdateOperationsInput | number | null
21431
23638
  created_at?: DateTimeFieldUpdateOperationsInput | Date | string
21432
23639
  updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
21433
23640
  }
21434
23641
 
21435
- export type TicketUncheckedUpdateManyWithoutEventInput = {
23642
+ export type EventTicketUncheckedUpdateManyWithoutEventInput = {
21436
23643
  id?: StringFieldUpdateOperationsInput | string
23644
+ amount?: IntFieldUpdateOperationsInput | number
21437
23645
  type?: EnumTicketTypeFieldUpdateOperationsInput | $Enums.TicketType
21438
- status?: EnumTicketStatusFieldUpdateOperationsInput | $Enums.TicketStatus
21439
- fullName?: StringFieldUpdateOperationsInput | string
21440
- mail?: StringFieldUpdateOperationsInput | string
23646
+ price?: NullableFloatFieldUpdateOperationsInput | number | null
21441
23647
  created_at?: DateTimeFieldUpdateOperationsInput | Date | string
21442
23648
  updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
21443
23649
  }
@@ -21446,10 +23652,13 @@ export namespace Prisma {
21446
23652
  id?: string
21447
23653
  name: string
21448
23654
  date: Date | string
23655
+ startingDate: Date | string
23656
+ endingDate: Date | string
21449
23657
  location: string
21450
23658
  tagAssistedId: string
21451
23659
  tagConfirmedId: string
21452
23660
  supraEventId?: string | null
23661
+ active?: boolean
21453
23662
  created_at?: Date | string
21454
23663
  updated_at?: Date | string
21455
23664
  }
@@ -21458,38 +23667,51 @@ export namespace Prisma {
21458
23667
  id?: StringFieldUpdateOperationsInput | string
21459
23668
  name?: StringFieldUpdateOperationsInput | string
21460
23669
  date?: DateTimeFieldUpdateOperationsInput | Date | string
23670
+ startingDate?: DateTimeFieldUpdateOperationsInput | Date | string
23671
+ endingDate?: DateTimeFieldUpdateOperationsInput | Date | string
21461
23672
  location?: StringFieldUpdateOperationsInput | string
23673
+ active?: BoolFieldUpdateOperationsInput | boolean
21462
23674
  created_at?: DateTimeFieldUpdateOperationsInput | Date | string
21463
23675
  updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
21464
23676
  tagAssisted?: TagUpdateOneRequiredWithoutAssistedEventNestedInput
21465
23677
  tagConfirmed?: TagUpdateOneRequiredWithoutConfirmedEventNestedInput
21466
23678
  supraEvent?: EventUpdateOneWithoutSubEventsNestedInput
21467
- subEvents?: EventUpdateManyWithoutSupraEventNestedInput
21468
23679
  tickets?: TicketUpdateManyWithoutEventNestedInput
23680
+ subEvents?: EventUpdateManyWithoutSupraEventNestedInput
23681
+ tags?: TagUpdateManyWithoutEventNestedInput
23682
+ eventTickets?: EventTicketUpdateManyWithoutEventNestedInput
21469
23683
  }
21470
23684
 
21471
23685
  export type EventUncheckedUpdateWithoutFolderInput = {
21472
23686
  id?: StringFieldUpdateOperationsInput | string
21473
23687
  name?: StringFieldUpdateOperationsInput | string
21474
23688
  date?: DateTimeFieldUpdateOperationsInput | Date | string
23689
+ startingDate?: DateTimeFieldUpdateOperationsInput | Date | string
23690
+ endingDate?: DateTimeFieldUpdateOperationsInput | Date | string
21475
23691
  location?: StringFieldUpdateOperationsInput | string
21476
23692
  tagAssistedId?: StringFieldUpdateOperationsInput | string
21477
23693
  tagConfirmedId?: StringFieldUpdateOperationsInput | string
21478
23694
  supraEventId?: NullableStringFieldUpdateOperationsInput | string | null
23695
+ active?: BoolFieldUpdateOperationsInput | boolean
21479
23696
  created_at?: DateTimeFieldUpdateOperationsInput | Date | string
21480
23697
  updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
21481
- subEvents?: EventUncheckedUpdateManyWithoutSupraEventNestedInput
21482
23698
  tickets?: TicketUncheckedUpdateManyWithoutEventNestedInput
23699
+ subEvents?: EventUncheckedUpdateManyWithoutSupraEventNestedInput
23700
+ tags?: TagUncheckedUpdateManyWithoutEventNestedInput
23701
+ eventTickets?: EventTicketUncheckedUpdateManyWithoutEventNestedInput
21483
23702
  }
21484
23703
 
21485
23704
  export type EventUncheckedUpdateManyWithoutFolderInput = {
21486
23705
  id?: StringFieldUpdateOperationsInput | string
21487
23706
  name?: StringFieldUpdateOperationsInput | string
21488
23707
  date?: DateTimeFieldUpdateOperationsInput | Date | string
23708
+ startingDate?: DateTimeFieldUpdateOperationsInput | Date | string
23709
+ endingDate?: DateTimeFieldUpdateOperationsInput | Date | string
21489
23710
  location?: StringFieldUpdateOperationsInput | string
21490
23711
  tagAssistedId?: StringFieldUpdateOperationsInput | string
21491
23712
  tagConfirmedId?: StringFieldUpdateOperationsInput | string
21492
23713
  supraEventId?: NullableStringFieldUpdateOperationsInput | string | null
23714
+ active?: BoolFieldUpdateOperationsInput | boolean
21493
23715
  created_at?: DateTimeFieldUpdateOperationsInput | Date | string
21494
23716
  updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
21495
23717
  }
@@ -21575,6 +23797,10 @@ export namespace Prisma {
21575
23797
  * @deprecated Use EnumsDefaultArgs instead
21576
23798
  */
21577
23799
  export type EnumsArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = EnumsDefaultArgs<ExtArgs>
23800
+ /**
23801
+ * @deprecated Use EventTicketDefaultArgs instead
23802
+ */
23803
+ export type EventTicketArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = EventTicketDefaultArgs<ExtArgs>
21578
23804
 
21579
23805
  /**
21580
23806
  * Batch Payload for updateMany & deleteMany & createMany