expo-backend-types 0.31.0 → 0.32.0

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 (32) 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 +24 -0
  22. package/dist/src/i18n/es.js +24 -0
  23. package/dist/src/i18n/es.js.map +1 -1
  24. package/dist/types/prisma-schema/edge.js +24 -4
  25. package/dist/types/prisma-schema/index-browser.js +21 -1
  26. package/dist/types/prisma-schema/index.d.ts +2389 -122
  27. package/dist/types/prisma-schema/index.js +24 -4
  28. package/dist/types/prisma-schema/package.json +1 -1
  29. package/dist/types/prisma-schema/schema.prisma +32 -5
  30. package/dist/types/prisma-schema/wasm.js +21 -1
  31. package/dist/types/schema.d.ts +192 -0
  32. package/package.json +1 -1
@@ -68,6 +68,11 @@ export type CannedResponse = $Result.DefaultSelection<Prisma.$CannedResponsePayl
68
68
  *
69
69
  */
70
70
  export type Enums = $Result.DefaultSelection<Prisma.$EnumsPayload>
71
+ /**
72
+ * Model EventTicket
73
+ *
74
+ */
75
+ export type EventTicket = $Result.DefaultSelection<Prisma.$EventTicketPayload>
71
76
 
72
77
  /**
73
78
  * Enums
@@ -118,6 +123,15 @@ export const TemplateCategory: {
118
123
 
119
124
  export type TemplateCategory = (typeof TemplateCategory)[keyof typeof TemplateCategory]
120
125
 
126
+
127
+ export const TicketType: {
128
+ PARTICIPANT: 'PARTICIPANT',
129
+ STAFF: 'STAFF',
130
+ SPECTATOR: 'SPECTATOR'
131
+ };
132
+
133
+ export type TicketType = (typeof TicketType)[keyof typeof TicketType]
134
+
121
135
  }
122
136
 
123
137
  export type Role = $Enums.Role
@@ -140,6 +154,10 @@ export type TemplateCategory = $Enums.TemplateCategory
140
154
 
141
155
  export const TemplateCategory: typeof $Enums.TemplateCategory
142
156
 
157
+ export type TicketType = $Enums.TicketType
158
+
159
+ export const TicketType: typeof $Enums.TicketType
160
+
143
161
  /**
144
162
  * ## Prisma Client ʲˢ
145
163
  *
@@ -372,6 +390,16 @@ export class PrismaClient<
372
390
  * ```
373
391
  */
374
392
  get enums(): Prisma.EnumsDelegate<ExtArgs>;
393
+
394
+ /**
395
+ * `prisma.eventTicket`: Exposes CRUD operations for the **EventTicket** model.
396
+ * Example usage:
397
+ * ```ts
398
+ * // Fetch zero or more EventTickets
399
+ * const eventTickets = await prisma.eventTicket.findMany()
400
+ * ```
401
+ */
402
+ get eventTicket(): Prisma.EventTicketDelegate<ExtArgs>;
375
403
  }
376
404
 
377
405
  export namespace Prisma {
@@ -823,7 +851,8 @@ export namespace Prisma {
823
851
  EventFolder: 'EventFolder',
824
852
  Message: 'Message',
825
853
  CannedResponse: 'CannedResponse',
826
- Enums: 'Enums'
854
+ Enums: 'Enums',
855
+ EventTicket: 'EventTicket'
827
856
  };
828
857
 
829
858
  export type ModelName = (typeof ModelName)[keyof typeof ModelName]
@@ -839,7 +868,7 @@ export namespace Prisma {
839
868
 
840
869
  export type TypeMap<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs, ClientOptions = {}> = {
841
870
  meta: {
842
- modelProps: "account" | "profile" | "location" | "comment" | "tag" | "tagGroup" | "event" | "eventFolder" | "message" | "cannedResponse" | "enums"
871
+ modelProps: "account" | "profile" | "location" | "comment" | "tag" | "tagGroup" | "event" | "eventFolder" | "message" | "cannedResponse" | "enums" | "eventTicket"
843
872
  txIsolationLevel: Prisma.TransactionIsolationLevel
844
873
  }
845
874
  model: {
@@ -1613,6 +1642,76 @@ export namespace Prisma {
1613
1642
  }
1614
1643
  }
1615
1644
  }
1645
+ EventTicket: {
1646
+ payload: Prisma.$EventTicketPayload<ExtArgs>
1647
+ fields: Prisma.EventTicketFieldRefs
1648
+ operations: {
1649
+ findUnique: {
1650
+ args: Prisma.EventTicketFindUniqueArgs<ExtArgs>
1651
+ result: $Utils.PayloadToResult<Prisma.$EventTicketPayload> | null
1652
+ }
1653
+ findUniqueOrThrow: {
1654
+ args: Prisma.EventTicketFindUniqueOrThrowArgs<ExtArgs>
1655
+ result: $Utils.PayloadToResult<Prisma.$EventTicketPayload>
1656
+ }
1657
+ findFirst: {
1658
+ args: Prisma.EventTicketFindFirstArgs<ExtArgs>
1659
+ result: $Utils.PayloadToResult<Prisma.$EventTicketPayload> | null
1660
+ }
1661
+ findFirstOrThrow: {
1662
+ args: Prisma.EventTicketFindFirstOrThrowArgs<ExtArgs>
1663
+ result: $Utils.PayloadToResult<Prisma.$EventTicketPayload>
1664
+ }
1665
+ findMany: {
1666
+ args: Prisma.EventTicketFindManyArgs<ExtArgs>
1667
+ result: $Utils.PayloadToResult<Prisma.$EventTicketPayload>[]
1668
+ }
1669
+ create: {
1670
+ args: Prisma.EventTicketCreateArgs<ExtArgs>
1671
+ result: $Utils.PayloadToResult<Prisma.$EventTicketPayload>
1672
+ }
1673
+ createMany: {
1674
+ args: Prisma.EventTicketCreateManyArgs<ExtArgs>
1675
+ result: BatchPayload
1676
+ }
1677
+ createManyAndReturn: {
1678
+ args: Prisma.EventTicketCreateManyAndReturnArgs<ExtArgs>
1679
+ result: $Utils.PayloadToResult<Prisma.$EventTicketPayload>[]
1680
+ }
1681
+ delete: {
1682
+ args: Prisma.EventTicketDeleteArgs<ExtArgs>
1683
+ result: $Utils.PayloadToResult<Prisma.$EventTicketPayload>
1684
+ }
1685
+ update: {
1686
+ args: Prisma.EventTicketUpdateArgs<ExtArgs>
1687
+ result: $Utils.PayloadToResult<Prisma.$EventTicketPayload>
1688
+ }
1689
+ deleteMany: {
1690
+ args: Prisma.EventTicketDeleteManyArgs<ExtArgs>
1691
+ result: BatchPayload
1692
+ }
1693
+ updateMany: {
1694
+ args: Prisma.EventTicketUpdateManyArgs<ExtArgs>
1695
+ result: BatchPayload
1696
+ }
1697
+ upsert: {
1698
+ args: Prisma.EventTicketUpsertArgs<ExtArgs>
1699
+ result: $Utils.PayloadToResult<Prisma.$EventTicketPayload>
1700
+ }
1701
+ aggregate: {
1702
+ args: Prisma.EventTicketAggregateArgs<ExtArgs>
1703
+ result: $Utils.Optional<AggregateEventTicket>
1704
+ }
1705
+ groupBy: {
1706
+ args: Prisma.EventTicketGroupByArgs<ExtArgs>
1707
+ result: $Utils.Optional<EventTicketGroupByOutputType>[]
1708
+ }
1709
+ count: {
1710
+ args: Prisma.EventTicketCountArgs<ExtArgs>
1711
+ result: $Utils.Optional<EventTicketCountAggregateOutputType> | number
1712
+ }
1713
+ }
1714
+ }
1616
1715
  }
1617
1716
  } & {
1618
1717
  other: {
@@ -1924,12 +2023,14 @@ export namespace Prisma {
1924
2023
  accounts: number
1925
2024
  profiles: number
1926
2025
  accountsGlobalFilter: number
2026
+ Event: number
1927
2027
  }
1928
2028
 
1929
2029
  export type TagCountOutputTypeSelect<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
1930
2030
  accounts?: boolean | TagCountOutputTypeCountAccountsArgs
1931
2031
  profiles?: boolean | TagCountOutputTypeCountProfilesArgs
1932
2032
  accountsGlobalFilter?: boolean | TagCountOutputTypeCountAccountsGlobalFilterArgs
2033
+ Event?: boolean | TagCountOutputTypeCountEventArgs
1933
2034
  }
1934
2035
 
1935
2036
  // Custom InputTypes
@@ -1964,6 +2065,13 @@ export namespace Prisma {
1964
2065
  where?: AccountWhereInput
1965
2066
  }
1966
2067
 
2068
+ /**
2069
+ * TagCountOutputType without action
2070
+ */
2071
+ export type TagCountOutputTypeCountEventArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
2072
+ where?: EventWhereInput
2073
+ }
2074
+
1967
2075
 
1968
2076
  /**
1969
2077
  * Count Type TagGroupCountOutputType
@@ -2002,10 +2110,14 @@ export namespace Prisma {
2002
2110
 
2003
2111
  export type EventCountOutputType = {
2004
2112
  subEvents: number
2113
+ tags: number
2114
+ eventTickets: number
2005
2115
  }
2006
2116
 
2007
2117
  export type EventCountOutputTypeSelect<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
2008
2118
  subEvents?: boolean | EventCountOutputTypeCountSubEventsArgs
2119
+ tags?: boolean | EventCountOutputTypeCountTagsArgs
2120
+ eventTickets?: boolean | EventCountOutputTypeCountEventTicketsArgs
2009
2121
  }
2010
2122
 
2011
2123
  // Custom InputTypes
@@ -2026,6 +2138,20 @@ export namespace Prisma {
2026
2138
  where?: EventWhereInput
2027
2139
  }
2028
2140
 
2141
+ /**
2142
+ * EventCountOutputType without action
2143
+ */
2144
+ export type EventCountOutputTypeCountTagsArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
2145
+ where?: TagWhereInput
2146
+ }
2147
+
2148
+ /**
2149
+ * EventCountOutputType without action
2150
+ */
2151
+ export type EventCountOutputTypeCountEventTicketsArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
2152
+ where?: EventTicketWhereInput
2153
+ }
2154
+
2029
2155
 
2030
2156
  /**
2031
2157
  * Count Type EventFolderCountOutputType
@@ -6599,6 +6725,7 @@ export namespace Prisma {
6599
6725
  accounts?: boolean | Tag$accountsArgs<ExtArgs>
6600
6726
  profiles?: boolean | Tag$profilesArgs<ExtArgs>
6601
6727
  accountsGlobalFilter?: boolean | Tag$accountsGlobalFilterArgs<ExtArgs>
6728
+ Event?: boolean | Tag$EventArgs<ExtArgs>
6602
6729
  _count?: boolean | TagCountOutputTypeDefaultArgs<ExtArgs>
6603
6730
  }, ExtArgs["result"]["tag"]>
6604
6731
 
@@ -6628,6 +6755,7 @@ export namespace Prisma {
6628
6755
  accounts?: boolean | Tag$accountsArgs<ExtArgs>
6629
6756
  profiles?: boolean | Tag$profilesArgs<ExtArgs>
6630
6757
  accountsGlobalFilter?: boolean | Tag$accountsGlobalFilterArgs<ExtArgs>
6758
+ Event?: boolean | Tag$EventArgs<ExtArgs>
6631
6759
  _count?: boolean | TagCountOutputTypeDefaultArgs<ExtArgs>
6632
6760
  }
6633
6761
  export type TagIncludeCreateManyAndReturn<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
@@ -6643,6 +6771,7 @@ export namespace Prisma {
6643
6771
  accounts: Prisma.$AccountPayload<ExtArgs>[]
6644
6772
  profiles: Prisma.$ProfilePayload<ExtArgs>[]
6645
6773
  accountsGlobalFilter: Prisma.$AccountPayload<ExtArgs>[]
6774
+ Event: Prisma.$EventPayload<ExtArgs>[]
6646
6775
  }
6647
6776
  scalars: $Extensions.GetPayloadResult<{
6648
6777
  id: string
@@ -7021,6 +7150,7 @@ export namespace Prisma {
7021
7150
  accounts<T extends Tag$accountsArgs<ExtArgs> = {}>(args?: Subset<T, Tag$accountsArgs<ExtArgs>>): Prisma.PrismaPromise<$Result.GetResult<Prisma.$AccountPayload<ExtArgs>, T, "findMany"> | Null>
7022
7151
  profiles<T extends Tag$profilesArgs<ExtArgs> = {}>(args?: Subset<T, Tag$profilesArgs<ExtArgs>>): Prisma.PrismaPromise<$Result.GetResult<Prisma.$ProfilePayload<ExtArgs>, T, "findMany"> | Null>
7023
7152
  accountsGlobalFilter<T extends Tag$accountsGlobalFilterArgs<ExtArgs> = {}>(args?: Subset<T, Tag$accountsGlobalFilterArgs<ExtArgs>>): Prisma.PrismaPromise<$Result.GetResult<Prisma.$AccountPayload<ExtArgs>, T, "findMany"> | Null>
7153
+ Event<T extends Tag$EventArgs<ExtArgs> = {}>(args?: Subset<T, Tag$EventArgs<ExtArgs>>): Prisma.PrismaPromise<$Result.GetResult<Prisma.$EventPayload<ExtArgs>, T, "findMany"> | Null>
7024
7154
  /**
7025
7155
  * Attaches callbacks for the resolution and/or rejection of the Promise.
7026
7156
  * @param onfulfilled The callback to execute when the Promise is resolved.
@@ -7463,6 +7593,26 @@ export namespace Prisma {
7463
7593
  distinct?: AccountScalarFieldEnum | AccountScalarFieldEnum[]
7464
7594
  }
7465
7595
 
7596
+ /**
7597
+ * Tag.Event
7598
+ */
7599
+ export type Tag$EventArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
7600
+ /**
7601
+ * Select specific fields to fetch from the Event
7602
+ */
7603
+ select?: EventSelect<ExtArgs> | null
7604
+ /**
7605
+ * Choose, which related nodes to fetch as well
7606
+ */
7607
+ include?: EventInclude<ExtArgs> | null
7608
+ where?: EventWhereInput
7609
+ orderBy?: EventOrderByWithRelationInput | EventOrderByWithRelationInput[]
7610
+ cursor?: EventWhereUniqueInput
7611
+ take?: number
7612
+ skip?: number
7613
+ distinct?: EventScalarFieldEnum | EventScalarFieldEnum[]
7614
+ }
7615
+
7466
7616
  /**
7467
7617
  * Tag without action
7468
7618
  */
@@ -8452,11 +8602,14 @@ export namespace Prisma {
8452
8602
  id: string | null
8453
8603
  name: string | null
8454
8604
  date: Date | null
8605
+ startingDate: Date | null
8606
+ endingDate: Date | null
8455
8607
  location: string | null
8456
8608
  folderId: string | null
8457
8609
  tagAssistedId: string | null
8458
8610
  tagConfirmedId: string | null
8459
8611
  supraEventId: string | null
8612
+ active: boolean | null
8460
8613
  created_at: Date | null
8461
8614
  updated_at: Date | null
8462
8615
  }
@@ -8465,11 +8618,14 @@ export namespace Prisma {
8465
8618
  id: string | null
8466
8619
  name: string | null
8467
8620
  date: Date | null
8621
+ startingDate: Date | null
8622
+ endingDate: Date | null
8468
8623
  location: string | null
8469
8624
  folderId: string | null
8470
8625
  tagAssistedId: string | null
8471
8626
  tagConfirmedId: string | null
8472
8627
  supraEventId: string | null
8628
+ active: boolean | null
8473
8629
  created_at: Date | null
8474
8630
  updated_at: Date | null
8475
8631
  }
@@ -8478,11 +8634,14 @@ export namespace Prisma {
8478
8634
  id: number
8479
8635
  name: number
8480
8636
  date: number
8637
+ startingDate: number
8638
+ endingDate: number
8481
8639
  location: number
8482
8640
  folderId: number
8483
8641
  tagAssistedId: number
8484
8642
  tagConfirmedId: number
8485
8643
  supraEventId: number
8644
+ active: number
8486
8645
  created_at: number
8487
8646
  updated_at: number
8488
8647
  _all: number
@@ -8493,11 +8652,14 @@ export namespace Prisma {
8493
8652
  id?: true
8494
8653
  name?: true
8495
8654
  date?: true
8655
+ startingDate?: true
8656
+ endingDate?: true
8496
8657
  location?: true
8497
8658
  folderId?: true
8498
8659
  tagAssistedId?: true
8499
8660
  tagConfirmedId?: true
8500
8661
  supraEventId?: true
8662
+ active?: true
8501
8663
  created_at?: true
8502
8664
  updated_at?: true
8503
8665
  }
@@ -8506,11 +8668,14 @@ export namespace Prisma {
8506
8668
  id?: true
8507
8669
  name?: true
8508
8670
  date?: true
8671
+ startingDate?: true
8672
+ endingDate?: true
8509
8673
  location?: true
8510
8674
  folderId?: true
8511
8675
  tagAssistedId?: true
8512
8676
  tagConfirmedId?: true
8513
8677
  supraEventId?: true
8678
+ active?: true
8514
8679
  created_at?: true
8515
8680
  updated_at?: true
8516
8681
  }
@@ -8519,11 +8684,14 @@ export namespace Prisma {
8519
8684
  id?: true
8520
8685
  name?: true
8521
8686
  date?: true
8687
+ startingDate?: true
8688
+ endingDate?: true
8522
8689
  location?: true
8523
8690
  folderId?: true
8524
8691
  tagAssistedId?: true
8525
8692
  tagConfirmedId?: true
8526
8693
  supraEventId?: true
8694
+ active?: true
8527
8695
  created_at?: true
8528
8696
  updated_at?: true
8529
8697
  _all?: true
@@ -8605,11 +8773,14 @@ export namespace Prisma {
8605
8773
  id: string
8606
8774
  name: string
8607
8775
  date: Date
8776
+ startingDate: Date
8777
+ endingDate: Date
8608
8778
  location: string
8609
8779
  folderId: string | null
8610
8780
  tagAssistedId: string
8611
8781
  tagConfirmedId: string
8612
8782
  supraEventId: string | null
8783
+ active: boolean
8613
8784
  created_at: Date
8614
8785
  updated_at: Date
8615
8786
  _count: EventCountAggregateOutputType | null
@@ -8635,11 +8806,14 @@ export namespace Prisma {
8635
8806
  id?: boolean
8636
8807
  name?: boolean
8637
8808
  date?: boolean
8809
+ startingDate?: boolean
8810
+ endingDate?: boolean
8638
8811
  location?: boolean
8639
8812
  folderId?: boolean
8640
8813
  tagAssistedId?: boolean
8641
8814
  tagConfirmedId?: boolean
8642
8815
  supraEventId?: boolean
8816
+ active?: boolean
8643
8817
  created_at?: boolean
8644
8818
  updated_at?: boolean
8645
8819
  folder?: boolean | Event$folderArgs<ExtArgs>
@@ -8647,6 +8821,8 @@ export namespace Prisma {
8647
8821
  tagConfirmed?: boolean | TagDefaultArgs<ExtArgs>
8648
8822
  supraEvent?: boolean | Event$supraEventArgs<ExtArgs>
8649
8823
  subEvents?: boolean | Event$subEventsArgs<ExtArgs>
8824
+ tags?: boolean | Event$tagsArgs<ExtArgs>
8825
+ eventTickets?: boolean | Event$eventTicketsArgs<ExtArgs>
8650
8826
  _count?: boolean | EventCountOutputTypeDefaultArgs<ExtArgs>
8651
8827
  }, ExtArgs["result"]["event"]>
8652
8828
 
@@ -8654,11 +8830,14 @@ export namespace Prisma {
8654
8830
  id?: boolean
8655
8831
  name?: boolean
8656
8832
  date?: boolean
8833
+ startingDate?: boolean
8834
+ endingDate?: boolean
8657
8835
  location?: boolean
8658
8836
  folderId?: boolean
8659
8837
  tagAssistedId?: boolean
8660
8838
  tagConfirmedId?: boolean
8661
8839
  supraEventId?: boolean
8840
+ active?: boolean
8662
8841
  created_at?: boolean
8663
8842
  updated_at?: boolean
8664
8843
  folder?: boolean | Event$folderArgs<ExtArgs>
@@ -8671,11 +8850,14 @@ export namespace Prisma {
8671
8850
  id?: boolean
8672
8851
  name?: boolean
8673
8852
  date?: boolean
8853
+ startingDate?: boolean
8854
+ endingDate?: boolean
8674
8855
  location?: boolean
8675
8856
  folderId?: boolean
8676
8857
  tagAssistedId?: boolean
8677
8858
  tagConfirmedId?: boolean
8678
8859
  supraEventId?: boolean
8860
+ active?: boolean
8679
8861
  created_at?: boolean
8680
8862
  updated_at?: boolean
8681
8863
  }
@@ -8686,6 +8868,8 @@ export namespace Prisma {
8686
8868
  tagConfirmed?: boolean | TagDefaultArgs<ExtArgs>
8687
8869
  supraEvent?: boolean | Event$supraEventArgs<ExtArgs>
8688
8870
  subEvents?: boolean | Event$subEventsArgs<ExtArgs>
8871
+ tags?: boolean | Event$tagsArgs<ExtArgs>
8872
+ eventTickets?: boolean | Event$eventTicketsArgs<ExtArgs>
8689
8873
  _count?: boolean | EventCountOutputTypeDefaultArgs<ExtArgs>
8690
8874
  }
8691
8875
  export type EventIncludeCreateManyAndReturn<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
@@ -8703,16 +8887,21 @@ export namespace Prisma {
8703
8887
  tagConfirmed: Prisma.$TagPayload<ExtArgs>
8704
8888
  supraEvent: Prisma.$EventPayload<ExtArgs> | null
8705
8889
  subEvents: Prisma.$EventPayload<ExtArgs>[]
8890
+ tags: Prisma.$TagPayload<ExtArgs>[]
8891
+ eventTickets: Prisma.$EventTicketPayload<ExtArgs>[]
8706
8892
  }
8707
8893
  scalars: $Extensions.GetPayloadResult<{
8708
8894
  id: string
8709
8895
  name: string
8710
8896
  date: Date
8897
+ startingDate: Date
8898
+ endingDate: Date
8711
8899
  location: string
8712
8900
  folderId: string | null
8713
8901
  tagAssistedId: string
8714
8902
  tagConfirmedId: string
8715
8903
  supraEventId: string | null
8904
+ active: boolean
8716
8905
  created_at: Date
8717
8906
  updated_at: Date
8718
8907
  }, ExtArgs["result"]["event"]>
@@ -9084,6 +9273,8 @@ export namespace Prisma {
9084
9273
  tagConfirmed<T extends TagDefaultArgs<ExtArgs> = {}>(args?: Subset<T, TagDefaultArgs<ExtArgs>>): Prisma__TagClient<$Result.GetResult<Prisma.$TagPayload<ExtArgs>, T, "findUniqueOrThrow"> | Null, Null, ExtArgs>
9085
9274
  supraEvent<T extends Event$supraEventArgs<ExtArgs> = {}>(args?: Subset<T, Event$supraEventArgs<ExtArgs>>): Prisma__EventClient<$Result.GetResult<Prisma.$EventPayload<ExtArgs>, T, "findUniqueOrThrow"> | null, null, ExtArgs>
9086
9275
  subEvents<T extends Event$subEventsArgs<ExtArgs> = {}>(args?: Subset<T, Event$subEventsArgs<ExtArgs>>): Prisma.PrismaPromise<$Result.GetResult<Prisma.$EventPayload<ExtArgs>, T, "findMany"> | Null>
9276
+ tags<T extends Event$tagsArgs<ExtArgs> = {}>(args?: Subset<T, Event$tagsArgs<ExtArgs>>): Prisma.PrismaPromise<$Result.GetResult<Prisma.$TagPayload<ExtArgs>, T, "findMany"> | Null>
9277
+ eventTickets<T extends Event$eventTicketsArgs<ExtArgs> = {}>(args?: Subset<T, Event$eventTicketsArgs<ExtArgs>>): Prisma.PrismaPromise<$Result.GetResult<Prisma.$EventTicketPayload<ExtArgs>, T, "findMany"> | Null>
9087
9278
  /**
9088
9279
  * Attaches callbacks for the resolution and/or rejection of the Promise.
9089
9280
  * @param onfulfilled The callback to execute when the Promise is resolved.
@@ -9116,11 +9307,14 @@ export namespace Prisma {
9116
9307
  readonly id: FieldRef<"Event", 'String'>
9117
9308
  readonly name: FieldRef<"Event", 'String'>
9118
9309
  readonly date: FieldRef<"Event", 'DateTime'>
9310
+ readonly startingDate: FieldRef<"Event", 'DateTime'>
9311
+ readonly endingDate: FieldRef<"Event", 'DateTime'>
9119
9312
  readonly location: FieldRef<"Event", 'String'>
9120
9313
  readonly folderId: FieldRef<"Event", 'String'>
9121
9314
  readonly tagAssistedId: FieldRef<"Event", 'String'>
9122
9315
  readonly tagConfirmedId: FieldRef<"Event", 'String'>
9123
9316
  readonly supraEventId: FieldRef<"Event", 'String'>
9317
+ readonly active: FieldRef<"Event", 'Boolean'>
9124
9318
  readonly created_at: FieldRef<"Event", 'DateTime'>
9125
9319
  readonly updated_at: FieldRef<"Event", 'DateTime'>
9126
9320
  }
@@ -9490,6 +9684,46 @@ export namespace Prisma {
9490
9684
  distinct?: EventScalarFieldEnum | EventScalarFieldEnum[]
9491
9685
  }
9492
9686
 
9687
+ /**
9688
+ * Event.tags
9689
+ */
9690
+ export type Event$tagsArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
9691
+ /**
9692
+ * Select specific fields to fetch from the Tag
9693
+ */
9694
+ select?: TagSelect<ExtArgs> | null
9695
+ /**
9696
+ * Choose, which related nodes to fetch as well
9697
+ */
9698
+ include?: TagInclude<ExtArgs> | null
9699
+ where?: TagWhereInput
9700
+ orderBy?: TagOrderByWithRelationInput | TagOrderByWithRelationInput[]
9701
+ cursor?: TagWhereUniqueInput
9702
+ take?: number
9703
+ skip?: number
9704
+ distinct?: TagScalarFieldEnum | TagScalarFieldEnum[]
9705
+ }
9706
+
9707
+ /**
9708
+ * Event.eventTickets
9709
+ */
9710
+ export type Event$eventTicketsArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
9711
+ /**
9712
+ * Select specific fields to fetch from the EventTicket
9713
+ */
9714
+ select?: EventTicketSelect<ExtArgs> | null
9715
+ /**
9716
+ * Choose, which related nodes to fetch as well
9717
+ */
9718
+ include?: EventTicketInclude<ExtArgs> | null
9719
+ where?: EventTicketWhereInput
9720
+ orderBy?: EventTicketOrderByWithRelationInput | EventTicketOrderByWithRelationInput[]
9721
+ cursor?: EventTicketWhereUniqueInput
9722
+ take?: number
9723
+ skip?: number
9724
+ distinct?: EventTicketScalarFieldEnum | EventTicketScalarFieldEnum[]
9725
+ }
9726
+
9493
9727
  /**
9494
9728
  * Event without action
9495
9729
  */
@@ -13139,121 +13373,1119 @@ export namespace Prisma {
13139
13373
 
13140
13374
 
13141
13375
  /**
13142
- * Enums
13376
+ * Model EventTicket
13143
13377
  */
13144
13378
 
13145
- export const TransactionIsolationLevel: {
13146
- ReadUncommitted: 'ReadUncommitted',
13147
- ReadCommitted: 'ReadCommitted',
13148
- RepeatableRead: 'RepeatableRead',
13149
- Serializable: 'Serializable'
13150
- };
13151
-
13152
- export type TransactionIsolationLevel = (typeof TransactionIsolationLevel)[keyof typeof TransactionIsolationLevel]
13153
-
13154
-
13155
- export const AccountScalarFieldEnum: {
13156
- id: 'id',
13157
- username: 'username',
13158
- password: 'password',
13159
- role: 'role',
13160
- isGlobalFilterActive: 'isGlobalFilterActive',
13161
- fcmToken: 'fcmToken',
13162
- created_at: 'created_at',
13163
- updated_at: 'updated_at'
13164
- };
13165
-
13166
- export type AccountScalarFieldEnum = (typeof AccountScalarFieldEnum)[keyof typeof AccountScalarFieldEnum]
13167
-
13168
-
13169
- export const ProfileScalarFieldEnum: {
13170
- id: 'id',
13171
- shortId: 'shortId',
13172
- phoneNumber: 'phoneNumber',
13173
- secondaryPhoneNumber: 'secondaryPhoneNumber',
13174
- fullName: 'fullName',
13175
- firstName: 'firstName',
13176
- gender: 'gender',
13177
- birthDate: 'birthDate',
13178
- profilePictureUrl: 'profilePictureUrl',
13179
- instagram: 'instagram',
13180
- mail: 'mail',
13181
- dni: 'dni',
13182
- alternativeNames: 'alternativeNames',
13183
- birthLocationId: 'birthLocationId',
13184
- residenceLocationId: 'residenceLocationId',
13185
- isInTrash: 'isInTrash',
13186
- movedToTrashDate: 'movedToTrashDate',
13187
- created_at: 'created_at',
13188
- updated_at: 'updated_at'
13189
- };
13190
-
13191
- export type ProfileScalarFieldEnum = (typeof ProfileScalarFieldEnum)[keyof typeof ProfileScalarFieldEnum]
13192
-
13193
-
13194
- export const LocationScalarFieldEnum: {
13195
- id: 'id',
13196
- latitude: 'latitude',
13197
- longitude: 'longitude',
13198
- country: 'country',
13199
- state: 'state',
13200
- city: 'city',
13201
- created_at: 'created_at',
13202
- updated_at: 'updated_at'
13203
- };
13379
+ export type AggregateEventTicket = {
13380
+ _count: EventTicketCountAggregateOutputType | null
13381
+ _avg: EventTicketAvgAggregateOutputType | null
13382
+ _sum: EventTicketSumAggregateOutputType | null
13383
+ _min: EventTicketMinAggregateOutputType | null
13384
+ _max: EventTicketMaxAggregateOutputType | null
13385
+ }
13204
13386
 
13205
- export type LocationScalarFieldEnum = (typeof LocationScalarFieldEnum)[keyof typeof LocationScalarFieldEnum]
13387
+ export type EventTicketAvgAggregateOutputType = {
13388
+ amount: number | null
13389
+ price: number | null
13390
+ }
13206
13391
 
13392
+ export type EventTicketSumAggregateOutputType = {
13393
+ amount: number | null
13394
+ price: number | null
13395
+ }
13207
13396
 
13208
- export const CommentScalarFieldEnum: {
13209
- id: 'id',
13210
- content: 'content',
13211
- createdBy: 'createdBy',
13212
- profileId: 'profileId',
13213
- isSolvable: 'isSolvable',
13214
- isSolved: 'isSolved',
13215
- solvedAt: 'solvedAt',
13216
- solvedById: 'solvedById',
13217
- created_at: 'created_at',
13218
- updated_at: 'updated_at'
13219
- };
13397
+ export type EventTicketMinAggregateOutputType = {
13398
+ id: string | null
13399
+ eventId: string | null
13400
+ amount: number | null
13401
+ type: $Enums.TicketType | null
13402
+ price: number | null
13403
+ created_at: Date | null
13404
+ updated_at: Date | null
13405
+ }
13220
13406
 
13221
- export type CommentScalarFieldEnum = (typeof CommentScalarFieldEnum)[keyof typeof CommentScalarFieldEnum]
13407
+ export type EventTicketMaxAggregateOutputType = {
13408
+ id: string | null
13409
+ eventId: string | null
13410
+ amount: number | null
13411
+ type: $Enums.TicketType | null
13412
+ price: number | null
13413
+ created_at: Date | null
13414
+ updated_at: Date | null
13415
+ }
13222
13416
 
13417
+ export type EventTicketCountAggregateOutputType = {
13418
+ id: number
13419
+ eventId: number
13420
+ amount: number
13421
+ type: number
13422
+ price: number
13423
+ created_at: number
13424
+ updated_at: number
13425
+ _all: number
13426
+ }
13223
13427
 
13224
- export const TagScalarFieldEnum: {
13225
- id: 'id',
13226
- name: 'name',
13227
- type: 'type',
13228
- groupId: 'groupId',
13229
- created_at: 'created_at',
13230
- updated_at: 'updated_at'
13231
- };
13232
13428
 
13233
- export type TagScalarFieldEnum = (typeof TagScalarFieldEnum)[keyof typeof TagScalarFieldEnum]
13429
+ export type EventTicketAvgAggregateInputType = {
13430
+ amount?: true
13431
+ price?: true
13432
+ }
13234
13433
 
13434
+ export type EventTicketSumAggregateInputType = {
13435
+ amount?: true
13436
+ price?: true
13437
+ }
13235
13438
 
13236
- export const TagGroupScalarFieldEnum: {
13237
- id: 'id',
13238
- name: 'name',
13239
- color: 'color',
13240
- isExclusive: 'isExclusive',
13241
- created_at: 'created_at',
13242
- updated_at: 'updated_at'
13243
- };
13439
+ export type EventTicketMinAggregateInputType = {
13440
+ id?: true
13441
+ eventId?: true
13442
+ amount?: true
13443
+ type?: true
13444
+ price?: true
13445
+ created_at?: true
13446
+ updated_at?: true
13447
+ }
13244
13448
 
13245
- export type TagGroupScalarFieldEnum = (typeof TagGroupScalarFieldEnum)[keyof typeof TagGroupScalarFieldEnum]
13449
+ export type EventTicketMaxAggregateInputType = {
13450
+ id?: true
13451
+ eventId?: true
13452
+ amount?: true
13453
+ type?: true
13454
+ price?: true
13455
+ created_at?: true
13456
+ updated_at?: true
13457
+ }
13246
13458
 
13459
+ export type EventTicketCountAggregateInputType = {
13460
+ id?: true
13461
+ eventId?: true
13462
+ amount?: true
13463
+ type?: true
13464
+ price?: true
13465
+ created_at?: true
13466
+ updated_at?: true
13467
+ _all?: true
13468
+ }
13247
13469
 
13248
- export const EventScalarFieldEnum: {
13249
- id: 'id',
13250
- name: 'name',
13251
- date: 'date',
13252
- location: 'location',
13253
- folderId: 'folderId',
13254
- tagAssistedId: 'tagAssistedId',
13255
- tagConfirmedId: 'tagConfirmedId',
13256
- supraEventId: 'supraEventId',
13470
+ export type EventTicketAggregateArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
13471
+ /**
13472
+ * Filter which EventTicket to aggregate.
13473
+ */
13474
+ where?: EventTicketWhereInput
13475
+ /**
13476
+ * {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs}
13477
+ *
13478
+ * Determine the order of EventTickets to fetch.
13479
+ */
13480
+ orderBy?: EventTicketOrderByWithRelationInput | EventTicketOrderByWithRelationInput[]
13481
+ /**
13482
+ * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs}
13483
+ *
13484
+ * Sets the start position
13485
+ */
13486
+ cursor?: EventTicketWhereUniqueInput
13487
+ /**
13488
+ * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
13489
+ *
13490
+ * Take `±n` EventTickets from the position of the cursor.
13491
+ */
13492
+ take?: number
13493
+ /**
13494
+ * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
13495
+ *
13496
+ * Skip the first `n` EventTickets.
13497
+ */
13498
+ skip?: number
13499
+ /**
13500
+ * {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
13501
+ *
13502
+ * Count returned EventTickets
13503
+ **/
13504
+ _count?: true | EventTicketCountAggregateInputType
13505
+ /**
13506
+ * {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
13507
+ *
13508
+ * Select which fields to average
13509
+ **/
13510
+ _avg?: EventTicketAvgAggregateInputType
13511
+ /**
13512
+ * {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
13513
+ *
13514
+ * Select which fields to sum
13515
+ **/
13516
+ _sum?: EventTicketSumAggregateInputType
13517
+ /**
13518
+ * {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
13519
+ *
13520
+ * Select which fields to find the minimum value
13521
+ **/
13522
+ _min?: EventTicketMinAggregateInputType
13523
+ /**
13524
+ * {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
13525
+ *
13526
+ * Select which fields to find the maximum value
13527
+ **/
13528
+ _max?: EventTicketMaxAggregateInputType
13529
+ }
13530
+
13531
+ export type GetEventTicketAggregateType<T extends EventTicketAggregateArgs> = {
13532
+ [P in keyof T & keyof AggregateEventTicket]: P extends '_count' | 'count'
13533
+ ? T[P] extends true
13534
+ ? number
13535
+ : GetScalarType<T[P], AggregateEventTicket[P]>
13536
+ : GetScalarType<T[P], AggregateEventTicket[P]>
13537
+ }
13538
+
13539
+
13540
+
13541
+
13542
+ export type EventTicketGroupByArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
13543
+ where?: EventTicketWhereInput
13544
+ orderBy?: EventTicketOrderByWithAggregationInput | EventTicketOrderByWithAggregationInput[]
13545
+ by: EventTicketScalarFieldEnum[] | EventTicketScalarFieldEnum
13546
+ having?: EventTicketScalarWhereWithAggregatesInput
13547
+ take?: number
13548
+ skip?: number
13549
+ _count?: EventTicketCountAggregateInputType | true
13550
+ _avg?: EventTicketAvgAggregateInputType
13551
+ _sum?: EventTicketSumAggregateInputType
13552
+ _min?: EventTicketMinAggregateInputType
13553
+ _max?: EventTicketMaxAggregateInputType
13554
+ }
13555
+
13556
+ export type EventTicketGroupByOutputType = {
13557
+ id: string
13558
+ eventId: string
13559
+ amount: number
13560
+ type: $Enums.TicketType
13561
+ price: number | null
13562
+ created_at: Date
13563
+ updated_at: Date
13564
+ _count: EventTicketCountAggregateOutputType | null
13565
+ _avg: EventTicketAvgAggregateOutputType | null
13566
+ _sum: EventTicketSumAggregateOutputType | null
13567
+ _min: EventTicketMinAggregateOutputType | null
13568
+ _max: EventTicketMaxAggregateOutputType | null
13569
+ }
13570
+
13571
+ type GetEventTicketGroupByPayload<T extends EventTicketGroupByArgs> = Prisma.PrismaPromise<
13572
+ Array<
13573
+ PickEnumerable<EventTicketGroupByOutputType, T['by']> &
13574
+ {
13575
+ [P in ((keyof T) & (keyof EventTicketGroupByOutputType))]: P extends '_count'
13576
+ ? T[P] extends boolean
13577
+ ? number
13578
+ : GetScalarType<T[P], EventTicketGroupByOutputType[P]>
13579
+ : GetScalarType<T[P], EventTicketGroupByOutputType[P]>
13580
+ }
13581
+ >
13582
+ >
13583
+
13584
+
13585
+ export type EventTicketSelect<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetSelect<{
13586
+ id?: boolean
13587
+ eventId?: boolean
13588
+ amount?: boolean
13589
+ type?: boolean
13590
+ price?: boolean
13591
+ created_at?: boolean
13592
+ updated_at?: boolean
13593
+ event?: boolean | EventDefaultArgs<ExtArgs>
13594
+ }, ExtArgs["result"]["eventTicket"]>
13595
+
13596
+ export type EventTicketSelectCreateManyAndReturn<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetSelect<{
13597
+ id?: boolean
13598
+ eventId?: boolean
13599
+ amount?: boolean
13600
+ type?: boolean
13601
+ price?: boolean
13602
+ created_at?: boolean
13603
+ updated_at?: boolean
13604
+ event?: boolean | EventDefaultArgs<ExtArgs>
13605
+ }, ExtArgs["result"]["eventTicket"]>
13606
+
13607
+ export type EventTicketSelectScalar = {
13608
+ id?: boolean
13609
+ eventId?: boolean
13610
+ amount?: boolean
13611
+ type?: boolean
13612
+ price?: boolean
13613
+ created_at?: boolean
13614
+ updated_at?: boolean
13615
+ }
13616
+
13617
+ export type EventTicketInclude<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
13618
+ event?: boolean | EventDefaultArgs<ExtArgs>
13619
+ }
13620
+ export type EventTicketIncludeCreateManyAndReturn<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
13621
+ event?: boolean | EventDefaultArgs<ExtArgs>
13622
+ }
13623
+
13624
+ export type $EventTicketPayload<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
13625
+ name: "EventTicket"
13626
+ objects: {
13627
+ event: Prisma.$EventPayload<ExtArgs>
13628
+ }
13629
+ scalars: $Extensions.GetPayloadResult<{
13630
+ id: string
13631
+ eventId: string
13632
+ amount: number
13633
+ type: $Enums.TicketType
13634
+ price: number | null
13635
+ created_at: Date
13636
+ updated_at: Date
13637
+ }, ExtArgs["result"]["eventTicket"]>
13638
+ composites: {}
13639
+ }
13640
+
13641
+ type EventTicketGetPayload<S extends boolean | null | undefined | EventTicketDefaultArgs> = $Result.GetResult<Prisma.$EventTicketPayload, S>
13642
+
13643
+ type EventTicketCountArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> =
13644
+ Omit<EventTicketFindManyArgs, 'select' | 'include' | 'distinct'> & {
13645
+ select?: EventTicketCountAggregateInputType | true
13646
+ }
13647
+
13648
+ export interface EventTicketDelegate<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> {
13649
+ [K: symbol]: { types: Prisma.TypeMap<ExtArgs>['model']['EventTicket'], meta: { name: 'EventTicket' } }
13650
+ /**
13651
+ * Find zero or one EventTicket that matches the filter.
13652
+ * @param {EventTicketFindUniqueArgs} args - Arguments to find a EventTicket
13653
+ * @example
13654
+ * // Get one EventTicket
13655
+ * const eventTicket = await prisma.eventTicket.findUnique({
13656
+ * where: {
13657
+ * // ... provide filter here
13658
+ * }
13659
+ * })
13660
+ */
13661
+ findUnique<T extends EventTicketFindUniqueArgs>(args: SelectSubset<T, EventTicketFindUniqueArgs<ExtArgs>>): Prisma__EventTicketClient<$Result.GetResult<Prisma.$EventTicketPayload<ExtArgs>, T, "findUnique"> | null, null, ExtArgs>
13662
+
13663
+ /**
13664
+ * Find one EventTicket that matches the filter or throw an error with `error.code='P2025'`
13665
+ * if no matches were found.
13666
+ * @param {EventTicketFindUniqueOrThrowArgs} args - Arguments to find a EventTicket
13667
+ * @example
13668
+ * // Get one EventTicket
13669
+ * const eventTicket = await prisma.eventTicket.findUniqueOrThrow({
13670
+ * where: {
13671
+ * // ... provide filter here
13672
+ * }
13673
+ * })
13674
+ */
13675
+ findUniqueOrThrow<T extends EventTicketFindUniqueOrThrowArgs>(args: SelectSubset<T, EventTicketFindUniqueOrThrowArgs<ExtArgs>>): Prisma__EventTicketClient<$Result.GetResult<Prisma.$EventTicketPayload<ExtArgs>, T, "findUniqueOrThrow">, never, ExtArgs>
13676
+
13677
+ /**
13678
+ * Find the first EventTicket that matches the filter.
13679
+ * Note, that providing `undefined` is treated as the value not being there.
13680
+ * Read more here: https://pris.ly/d/null-undefined
13681
+ * @param {EventTicketFindFirstArgs} args - Arguments to find a EventTicket
13682
+ * @example
13683
+ * // Get one EventTicket
13684
+ * const eventTicket = await prisma.eventTicket.findFirst({
13685
+ * where: {
13686
+ * // ... provide filter here
13687
+ * }
13688
+ * })
13689
+ */
13690
+ findFirst<T extends EventTicketFindFirstArgs>(args?: SelectSubset<T, EventTicketFindFirstArgs<ExtArgs>>): Prisma__EventTicketClient<$Result.GetResult<Prisma.$EventTicketPayload<ExtArgs>, T, "findFirst"> | null, null, ExtArgs>
13691
+
13692
+ /**
13693
+ * Find the first EventTicket that matches the filter or
13694
+ * throw `PrismaKnownClientError` with `P2025` code if no matches were found.
13695
+ * Note, that providing `undefined` is treated as the value not being there.
13696
+ * Read more here: https://pris.ly/d/null-undefined
13697
+ * @param {EventTicketFindFirstOrThrowArgs} args - Arguments to find a EventTicket
13698
+ * @example
13699
+ * // Get one EventTicket
13700
+ * const eventTicket = await prisma.eventTicket.findFirstOrThrow({
13701
+ * where: {
13702
+ * // ... provide filter here
13703
+ * }
13704
+ * })
13705
+ */
13706
+ findFirstOrThrow<T extends EventTicketFindFirstOrThrowArgs>(args?: SelectSubset<T, EventTicketFindFirstOrThrowArgs<ExtArgs>>): Prisma__EventTicketClient<$Result.GetResult<Prisma.$EventTicketPayload<ExtArgs>, T, "findFirstOrThrow">, never, ExtArgs>
13707
+
13708
+ /**
13709
+ * Find zero or more EventTickets that matches the filter.
13710
+ * Note, that providing `undefined` is treated as the value not being there.
13711
+ * Read more here: https://pris.ly/d/null-undefined
13712
+ * @param {EventTicketFindManyArgs} args - Arguments to filter and select certain fields only.
13713
+ * @example
13714
+ * // Get all EventTickets
13715
+ * const eventTickets = await prisma.eventTicket.findMany()
13716
+ *
13717
+ * // Get first 10 EventTickets
13718
+ * const eventTickets = await prisma.eventTicket.findMany({ take: 10 })
13719
+ *
13720
+ * // Only select the `id`
13721
+ * const eventTicketWithIdOnly = await prisma.eventTicket.findMany({ select: { id: true } })
13722
+ *
13723
+ */
13724
+ findMany<T extends EventTicketFindManyArgs>(args?: SelectSubset<T, EventTicketFindManyArgs<ExtArgs>>): Prisma.PrismaPromise<$Result.GetResult<Prisma.$EventTicketPayload<ExtArgs>, T, "findMany">>
13725
+
13726
+ /**
13727
+ * Create a EventTicket.
13728
+ * @param {EventTicketCreateArgs} args - Arguments to create a EventTicket.
13729
+ * @example
13730
+ * // Create one EventTicket
13731
+ * const EventTicket = await prisma.eventTicket.create({
13732
+ * data: {
13733
+ * // ... data to create a EventTicket
13734
+ * }
13735
+ * })
13736
+ *
13737
+ */
13738
+ create<T extends EventTicketCreateArgs>(args: SelectSubset<T, EventTicketCreateArgs<ExtArgs>>): Prisma__EventTicketClient<$Result.GetResult<Prisma.$EventTicketPayload<ExtArgs>, T, "create">, never, ExtArgs>
13739
+
13740
+ /**
13741
+ * Create many EventTickets.
13742
+ * @param {EventTicketCreateManyArgs} args - Arguments to create many EventTickets.
13743
+ * @example
13744
+ * // Create many EventTickets
13745
+ * const eventTicket = await prisma.eventTicket.createMany({
13746
+ * data: [
13747
+ * // ... provide data here
13748
+ * ]
13749
+ * })
13750
+ *
13751
+ */
13752
+ createMany<T extends EventTicketCreateManyArgs>(args?: SelectSubset<T, EventTicketCreateManyArgs<ExtArgs>>): Prisma.PrismaPromise<BatchPayload>
13753
+
13754
+ /**
13755
+ * Create many EventTickets and returns the data saved in the database.
13756
+ * @param {EventTicketCreateManyAndReturnArgs} args - Arguments to create many EventTickets.
13757
+ * @example
13758
+ * // Create many EventTickets
13759
+ * const eventTicket = await prisma.eventTicket.createManyAndReturn({
13760
+ * data: [
13761
+ * // ... provide data here
13762
+ * ]
13763
+ * })
13764
+ *
13765
+ * // Create many EventTickets and only return the `id`
13766
+ * const eventTicketWithIdOnly = await prisma.eventTicket.createManyAndReturn({
13767
+ * select: { id: true },
13768
+ * data: [
13769
+ * // ... provide data here
13770
+ * ]
13771
+ * })
13772
+ * Note, that providing `undefined` is treated as the value not being there.
13773
+ * Read more here: https://pris.ly/d/null-undefined
13774
+ *
13775
+ */
13776
+ createManyAndReturn<T extends EventTicketCreateManyAndReturnArgs>(args?: SelectSubset<T, EventTicketCreateManyAndReturnArgs<ExtArgs>>): Prisma.PrismaPromise<$Result.GetResult<Prisma.$EventTicketPayload<ExtArgs>, T, "createManyAndReturn">>
13777
+
13778
+ /**
13779
+ * Delete a EventTicket.
13780
+ * @param {EventTicketDeleteArgs} args - Arguments to delete one EventTicket.
13781
+ * @example
13782
+ * // Delete one EventTicket
13783
+ * const EventTicket = await prisma.eventTicket.delete({
13784
+ * where: {
13785
+ * // ... filter to delete one EventTicket
13786
+ * }
13787
+ * })
13788
+ *
13789
+ */
13790
+ delete<T extends EventTicketDeleteArgs>(args: SelectSubset<T, EventTicketDeleteArgs<ExtArgs>>): Prisma__EventTicketClient<$Result.GetResult<Prisma.$EventTicketPayload<ExtArgs>, T, "delete">, never, ExtArgs>
13791
+
13792
+ /**
13793
+ * Update one EventTicket.
13794
+ * @param {EventTicketUpdateArgs} args - Arguments to update one EventTicket.
13795
+ * @example
13796
+ * // Update one EventTicket
13797
+ * const eventTicket = await prisma.eventTicket.update({
13798
+ * where: {
13799
+ * // ... provide filter here
13800
+ * },
13801
+ * data: {
13802
+ * // ... provide data here
13803
+ * }
13804
+ * })
13805
+ *
13806
+ */
13807
+ update<T extends EventTicketUpdateArgs>(args: SelectSubset<T, EventTicketUpdateArgs<ExtArgs>>): Prisma__EventTicketClient<$Result.GetResult<Prisma.$EventTicketPayload<ExtArgs>, T, "update">, never, ExtArgs>
13808
+
13809
+ /**
13810
+ * Delete zero or more EventTickets.
13811
+ * @param {EventTicketDeleteManyArgs} args - Arguments to filter EventTickets to delete.
13812
+ * @example
13813
+ * // Delete a few EventTickets
13814
+ * const { count } = await prisma.eventTicket.deleteMany({
13815
+ * where: {
13816
+ * // ... provide filter here
13817
+ * }
13818
+ * })
13819
+ *
13820
+ */
13821
+ deleteMany<T extends EventTicketDeleteManyArgs>(args?: SelectSubset<T, EventTicketDeleteManyArgs<ExtArgs>>): Prisma.PrismaPromise<BatchPayload>
13822
+
13823
+ /**
13824
+ * Update zero or more EventTickets.
13825
+ * Note, that providing `undefined` is treated as the value not being there.
13826
+ * Read more here: https://pris.ly/d/null-undefined
13827
+ * @param {EventTicketUpdateManyArgs} args - Arguments to update one or more rows.
13828
+ * @example
13829
+ * // Update many EventTickets
13830
+ * const eventTicket = await prisma.eventTicket.updateMany({
13831
+ * where: {
13832
+ * // ... provide filter here
13833
+ * },
13834
+ * data: {
13835
+ * // ... provide data here
13836
+ * }
13837
+ * })
13838
+ *
13839
+ */
13840
+ updateMany<T extends EventTicketUpdateManyArgs>(args: SelectSubset<T, EventTicketUpdateManyArgs<ExtArgs>>): Prisma.PrismaPromise<BatchPayload>
13841
+
13842
+ /**
13843
+ * Create or update one EventTicket.
13844
+ * @param {EventTicketUpsertArgs} args - Arguments to update or create a EventTicket.
13845
+ * @example
13846
+ * // Update or create a EventTicket
13847
+ * const eventTicket = await prisma.eventTicket.upsert({
13848
+ * create: {
13849
+ * // ... data to create a EventTicket
13850
+ * },
13851
+ * update: {
13852
+ * // ... in case it already exists, update
13853
+ * },
13854
+ * where: {
13855
+ * // ... the filter for the EventTicket we want to update
13856
+ * }
13857
+ * })
13858
+ */
13859
+ upsert<T extends EventTicketUpsertArgs>(args: SelectSubset<T, EventTicketUpsertArgs<ExtArgs>>): Prisma__EventTicketClient<$Result.GetResult<Prisma.$EventTicketPayload<ExtArgs>, T, "upsert">, never, ExtArgs>
13860
+
13861
+
13862
+ /**
13863
+ * Count the number of EventTickets.
13864
+ * Note, that providing `undefined` is treated as the value not being there.
13865
+ * Read more here: https://pris.ly/d/null-undefined
13866
+ * @param {EventTicketCountArgs} args - Arguments to filter EventTickets to count.
13867
+ * @example
13868
+ * // Count the number of EventTickets
13869
+ * const count = await prisma.eventTicket.count({
13870
+ * where: {
13871
+ * // ... the filter for the EventTickets we want to count
13872
+ * }
13873
+ * })
13874
+ **/
13875
+ count<T extends EventTicketCountArgs>(
13876
+ args?: Subset<T, EventTicketCountArgs>,
13877
+ ): Prisma.PrismaPromise<
13878
+ T extends $Utils.Record<'select', any>
13879
+ ? T['select'] extends true
13880
+ ? number
13881
+ : GetScalarType<T['select'], EventTicketCountAggregateOutputType>
13882
+ : number
13883
+ >
13884
+
13885
+ /**
13886
+ * Allows you to perform aggregations operations on a EventTicket.
13887
+ * Note, that providing `undefined` is treated as the value not being there.
13888
+ * Read more here: https://pris.ly/d/null-undefined
13889
+ * @param {EventTicketAggregateArgs} args - Select which aggregations you would like to apply and on what fields.
13890
+ * @example
13891
+ * // Ordered by age ascending
13892
+ * // Where email contains prisma.io
13893
+ * // Limited to the 10 users
13894
+ * const aggregations = await prisma.user.aggregate({
13895
+ * _avg: {
13896
+ * age: true,
13897
+ * },
13898
+ * where: {
13899
+ * email: {
13900
+ * contains: "prisma.io",
13901
+ * },
13902
+ * },
13903
+ * orderBy: {
13904
+ * age: "asc",
13905
+ * },
13906
+ * take: 10,
13907
+ * })
13908
+ **/
13909
+ aggregate<T extends EventTicketAggregateArgs>(args: Subset<T, EventTicketAggregateArgs>): Prisma.PrismaPromise<GetEventTicketAggregateType<T>>
13910
+
13911
+ /**
13912
+ * Group by EventTicket.
13913
+ * Note, that providing `undefined` is treated as the value not being there.
13914
+ * Read more here: https://pris.ly/d/null-undefined
13915
+ * @param {EventTicketGroupByArgs} args - Group by arguments.
13916
+ * @example
13917
+ * // Group by city, order by createdAt, get count
13918
+ * const result = await prisma.user.groupBy({
13919
+ * by: ['city', 'createdAt'],
13920
+ * orderBy: {
13921
+ * createdAt: true
13922
+ * },
13923
+ * _count: {
13924
+ * _all: true
13925
+ * },
13926
+ * })
13927
+ *
13928
+ **/
13929
+ groupBy<
13930
+ T extends EventTicketGroupByArgs,
13931
+ HasSelectOrTake extends Or<
13932
+ Extends<'skip', Keys<T>>,
13933
+ Extends<'take', Keys<T>>
13934
+ >,
13935
+ OrderByArg extends True extends HasSelectOrTake
13936
+ ? { orderBy: EventTicketGroupByArgs['orderBy'] }
13937
+ : { orderBy?: EventTicketGroupByArgs['orderBy'] },
13938
+ OrderFields extends ExcludeUnderscoreKeys<Keys<MaybeTupleToUnion<T['orderBy']>>>,
13939
+ ByFields extends MaybeTupleToUnion<T['by']>,
13940
+ ByValid extends Has<ByFields, OrderFields>,
13941
+ HavingFields extends GetHavingFields<T['having']>,
13942
+ HavingValid extends Has<ByFields, HavingFields>,
13943
+ ByEmpty extends T['by'] extends never[] ? True : False,
13944
+ InputErrors extends ByEmpty extends True
13945
+ ? `Error: "by" must not be empty.`
13946
+ : HavingValid extends False
13947
+ ? {
13948
+ [P in HavingFields]: P extends ByFields
13949
+ ? never
13950
+ : P extends string
13951
+ ? `Error: Field "${P}" used in "having" needs to be provided in "by".`
13952
+ : [
13953
+ Error,
13954
+ 'Field ',
13955
+ P,
13956
+ ` in "having" needs to be provided in "by"`,
13957
+ ]
13958
+ }[HavingFields]
13959
+ : 'take' extends Keys<T>
13960
+ ? 'orderBy' extends Keys<T>
13961
+ ? ByValid extends True
13962
+ ? {}
13963
+ : {
13964
+ [P in OrderFields]: P extends ByFields
13965
+ ? never
13966
+ : `Error: Field "${P}" in "orderBy" needs to be provided in "by"`
13967
+ }[OrderFields]
13968
+ : 'Error: If you provide "take", you also need to provide "orderBy"'
13969
+ : 'skip' extends Keys<T>
13970
+ ? 'orderBy' extends Keys<T>
13971
+ ? ByValid extends True
13972
+ ? {}
13973
+ : {
13974
+ [P in OrderFields]: P extends ByFields
13975
+ ? never
13976
+ : `Error: Field "${P}" in "orderBy" needs to be provided in "by"`
13977
+ }[OrderFields]
13978
+ : 'Error: If you provide "skip", you also need to provide "orderBy"'
13979
+ : ByValid extends True
13980
+ ? {}
13981
+ : {
13982
+ [P in OrderFields]: P extends ByFields
13983
+ ? never
13984
+ : `Error: Field "${P}" in "orderBy" needs to be provided in "by"`
13985
+ }[OrderFields]
13986
+ >(args: SubsetIntersection<T, EventTicketGroupByArgs, OrderByArg> & InputErrors): {} extends InputErrors ? GetEventTicketGroupByPayload<T> : Prisma.PrismaPromise<InputErrors>
13987
+ /**
13988
+ * Fields of the EventTicket model
13989
+ */
13990
+ readonly fields: EventTicketFieldRefs;
13991
+ }
13992
+
13993
+ /**
13994
+ * The delegate class that acts as a "Promise-like" for EventTicket.
13995
+ * Why is this prefixed with `Prisma__`?
13996
+ * Because we want to prevent naming conflicts as mentioned in
13997
+ * https://github.com/prisma/prisma-client-js/issues/707
13998
+ */
13999
+ export interface Prisma__EventTicketClient<T, Null = never, ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> extends Prisma.PrismaPromise<T> {
14000
+ readonly [Symbol.toStringTag]: "PrismaPromise"
14001
+ event<T extends EventDefaultArgs<ExtArgs> = {}>(args?: Subset<T, EventDefaultArgs<ExtArgs>>): Prisma__EventClient<$Result.GetResult<Prisma.$EventPayload<ExtArgs>, T, "findUniqueOrThrow"> | Null, Null, ExtArgs>
14002
+ /**
14003
+ * Attaches callbacks for the resolution and/or rejection of the Promise.
14004
+ * @param onfulfilled The callback to execute when the Promise is resolved.
14005
+ * @param onrejected The callback to execute when the Promise is rejected.
14006
+ * @returns A Promise for the completion of which ever callback is executed.
14007
+ */
14008
+ 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>
14009
+ /**
14010
+ * Attaches a callback for only the rejection of the Promise.
14011
+ * @param onrejected The callback to execute when the Promise is rejected.
14012
+ * @returns A Promise for the completion of the callback.
14013
+ */
14014
+ catch<TResult = never>(onrejected?: ((reason: any) => TResult | PromiseLike<TResult>) | undefined | null): $Utils.JsPromise<T | TResult>
14015
+ /**
14016
+ * Attaches a callback that is invoked when the Promise is settled (fulfilled or rejected). The
14017
+ * resolved value cannot be modified from the callback.
14018
+ * @param onfinally The callback to execute when the Promise is settled (fulfilled or rejected).
14019
+ * @returns A Promise for the completion of the callback.
14020
+ */
14021
+ finally(onfinally?: (() => void) | undefined | null): $Utils.JsPromise<T>
14022
+ }
14023
+
14024
+
14025
+
14026
+
14027
+ /**
14028
+ * Fields of the EventTicket model
14029
+ */
14030
+ interface EventTicketFieldRefs {
14031
+ readonly id: FieldRef<"EventTicket", 'String'>
14032
+ readonly eventId: FieldRef<"EventTicket", 'String'>
14033
+ readonly amount: FieldRef<"EventTicket", 'Int'>
14034
+ readonly type: FieldRef<"EventTicket", 'TicketType'>
14035
+ readonly price: FieldRef<"EventTicket", 'Float'>
14036
+ readonly created_at: FieldRef<"EventTicket", 'DateTime'>
14037
+ readonly updated_at: FieldRef<"EventTicket", 'DateTime'>
14038
+ }
14039
+
14040
+
14041
+ // Custom InputTypes
14042
+ /**
14043
+ * EventTicket findUnique
14044
+ */
14045
+ export type EventTicketFindUniqueArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
14046
+ /**
14047
+ * Select specific fields to fetch from the EventTicket
14048
+ */
14049
+ select?: EventTicketSelect<ExtArgs> | null
14050
+ /**
14051
+ * Choose, which related nodes to fetch as well
14052
+ */
14053
+ include?: EventTicketInclude<ExtArgs> | null
14054
+ /**
14055
+ * Filter, which EventTicket to fetch.
14056
+ */
14057
+ where: EventTicketWhereUniqueInput
14058
+ }
14059
+
14060
+ /**
14061
+ * EventTicket findUniqueOrThrow
14062
+ */
14063
+ export type EventTicketFindUniqueOrThrowArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
14064
+ /**
14065
+ * Select specific fields to fetch from the EventTicket
14066
+ */
14067
+ select?: EventTicketSelect<ExtArgs> | null
14068
+ /**
14069
+ * Choose, which related nodes to fetch as well
14070
+ */
14071
+ include?: EventTicketInclude<ExtArgs> | null
14072
+ /**
14073
+ * Filter, which EventTicket to fetch.
14074
+ */
14075
+ where: EventTicketWhereUniqueInput
14076
+ }
14077
+
14078
+ /**
14079
+ * EventTicket findFirst
14080
+ */
14081
+ export type EventTicketFindFirstArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
14082
+ /**
14083
+ * Select specific fields to fetch from the EventTicket
14084
+ */
14085
+ select?: EventTicketSelect<ExtArgs> | null
14086
+ /**
14087
+ * Choose, which related nodes to fetch as well
14088
+ */
14089
+ include?: EventTicketInclude<ExtArgs> | null
14090
+ /**
14091
+ * Filter, which EventTicket to fetch.
14092
+ */
14093
+ where?: EventTicketWhereInput
14094
+ /**
14095
+ * {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs}
14096
+ *
14097
+ * Determine the order of EventTickets to fetch.
14098
+ */
14099
+ orderBy?: EventTicketOrderByWithRelationInput | EventTicketOrderByWithRelationInput[]
14100
+ /**
14101
+ * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs}
14102
+ *
14103
+ * Sets the position for searching for EventTickets.
14104
+ */
14105
+ cursor?: EventTicketWhereUniqueInput
14106
+ /**
14107
+ * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
14108
+ *
14109
+ * Take `±n` EventTickets from the position of the cursor.
14110
+ */
14111
+ take?: number
14112
+ /**
14113
+ * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
14114
+ *
14115
+ * Skip the first `n` EventTickets.
14116
+ */
14117
+ skip?: number
14118
+ /**
14119
+ * {@link https://www.prisma.io/docs/concepts/components/prisma-client/distinct Distinct Docs}
14120
+ *
14121
+ * Filter by unique combinations of EventTickets.
14122
+ */
14123
+ distinct?: EventTicketScalarFieldEnum | EventTicketScalarFieldEnum[]
14124
+ }
14125
+
14126
+ /**
14127
+ * EventTicket findFirstOrThrow
14128
+ */
14129
+ export type EventTicketFindFirstOrThrowArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
14130
+ /**
14131
+ * Select specific fields to fetch from the EventTicket
14132
+ */
14133
+ select?: EventTicketSelect<ExtArgs> | null
14134
+ /**
14135
+ * Choose, which related nodes to fetch as well
14136
+ */
14137
+ include?: EventTicketInclude<ExtArgs> | null
14138
+ /**
14139
+ * Filter, which EventTicket to fetch.
14140
+ */
14141
+ where?: EventTicketWhereInput
14142
+ /**
14143
+ * {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs}
14144
+ *
14145
+ * Determine the order of EventTickets to fetch.
14146
+ */
14147
+ orderBy?: EventTicketOrderByWithRelationInput | EventTicketOrderByWithRelationInput[]
14148
+ /**
14149
+ * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs}
14150
+ *
14151
+ * Sets the position for searching for EventTickets.
14152
+ */
14153
+ cursor?: EventTicketWhereUniqueInput
14154
+ /**
14155
+ * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
14156
+ *
14157
+ * Take `±n` EventTickets from the position of the cursor.
14158
+ */
14159
+ take?: number
14160
+ /**
14161
+ * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
14162
+ *
14163
+ * Skip the first `n` EventTickets.
14164
+ */
14165
+ skip?: number
14166
+ /**
14167
+ * {@link https://www.prisma.io/docs/concepts/components/prisma-client/distinct Distinct Docs}
14168
+ *
14169
+ * Filter by unique combinations of EventTickets.
14170
+ */
14171
+ distinct?: EventTicketScalarFieldEnum | EventTicketScalarFieldEnum[]
14172
+ }
14173
+
14174
+ /**
14175
+ * EventTicket findMany
14176
+ */
14177
+ export type EventTicketFindManyArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
14178
+ /**
14179
+ * Select specific fields to fetch from the EventTicket
14180
+ */
14181
+ select?: EventTicketSelect<ExtArgs> | null
14182
+ /**
14183
+ * Choose, which related nodes to fetch as well
14184
+ */
14185
+ include?: EventTicketInclude<ExtArgs> | null
14186
+ /**
14187
+ * Filter, which EventTickets to fetch.
14188
+ */
14189
+ where?: EventTicketWhereInput
14190
+ /**
14191
+ * {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs}
14192
+ *
14193
+ * Determine the order of EventTickets to fetch.
14194
+ */
14195
+ orderBy?: EventTicketOrderByWithRelationInput | EventTicketOrderByWithRelationInput[]
14196
+ /**
14197
+ * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs}
14198
+ *
14199
+ * Sets the position for listing EventTickets.
14200
+ */
14201
+ cursor?: EventTicketWhereUniqueInput
14202
+ /**
14203
+ * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
14204
+ *
14205
+ * Take `±n` EventTickets from the position of the cursor.
14206
+ */
14207
+ take?: number
14208
+ /**
14209
+ * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
14210
+ *
14211
+ * Skip the first `n` EventTickets.
14212
+ */
14213
+ skip?: number
14214
+ distinct?: EventTicketScalarFieldEnum | EventTicketScalarFieldEnum[]
14215
+ }
14216
+
14217
+ /**
14218
+ * EventTicket create
14219
+ */
14220
+ export type EventTicketCreateArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
14221
+ /**
14222
+ * Select specific fields to fetch from the EventTicket
14223
+ */
14224
+ select?: EventTicketSelect<ExtArgs> | null
14225
+ /**
14226
+ * Choose, which related nodes to fetch as well
14227
+ */
14228
+ include?: EventTicketInclude<ExtArgs> | null
14229
+ /**
14230
+ * The data needed to create a EventTicket.
14231
+ */
14232
+ data: XOR<EventTicketCreateInput, EventTicketUncheckedCreateInput>
14233
+ }
14234
+
14235
+ /**
14236
+ * EventTicket createMany
14237
+ */
14238
+ export type EventTicketCreateManyArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
14239
+ /**
14240
+ * The data used to create many EventTickets.
14241
+ */
14242
+ data: EventTicketCreateManyInput | EventTicketCreateManyInput[]
14243
+ skipDuplicates?: boolean
14244
+ }
14245
+
14246
+ /**
14247
+ * EventTicket createManyAndReturn
14248
+ */
14249
+ export type EventTicketCreateManyAndReturnArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
14250
+ /**
14251
+ * Select specific fields to fetch from the EventTicket
14252
+ */
14253
+ select?: EventTicketSelectCreateManyAndReturn<ExtArgs> | null
14254
+ /**
14255
+ * The data used to create many EventTickets.
14256
+ */
14257
+ data: EventTicketCreateManyInput | EventTicketCreateManyInput[]
14258
+ skipDuplicates?: boolean
14259
+ /**
14260
+ * Choose, which related nodes to fetch as well
14261
+ */
14262
+ include?: EventTicketIncludeCreateManyAndReturn<ExtArgs> | null
14263
+ }
14264
+
14265
+ /**
14266
+ * EventTicket update
14267
+ */
14268
+ export type EventTicketUpdateArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
14269
+ /**
14270
+ * Select specific fields to fetch from the EventTicket
14271
+ */
14272
+ select?: EventTicketSelect<ExtArgs> | null
14273
+ /**
14274
+ * Choose, which related nodes to fetch as well
14275
+ */
14276
+ include?: EventTicketInclude<ExtArgs> | null
14277
+ /**
14278
+ * The data needed to update a EventTicket.
14279
+ */
14280
+ data: XOR<EventTicketUpdateInput, EventTicketUncheckedUpdateInput>
14281
+ /**
14282
+ * Choose, which EventTicket to update.
14283
+ */
14284
+ where: EventTicketWhereUniqueInput
14285
+ }
14286
+
14287
+ /**
14288
+ * EventTicket updateMany
14289
+ */
14290
+ export type EventTicketUpdateManyArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
14291
+ /**
14292
+ * The data used to update EventTickets.
14293
+ */
14294
+ data: XOR<EventTicketUpdateManyMutationInput, EventTicketUncheckedUpdateManyInput>
14295
+ /**
14296
+ * Filter which EventTickets to update
14297
+ */
14298
+ where?: EventTicketWhereInput
14299
+ }
14300
+
14301
+ /**
14302
+ * EventTicket upsert
14303
+ */
14304
+ export type EventTicketUpsertArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
14305
+ /**
14306
+ * Select specific fields to fetch from the EventTicket
14307
+ */
14308
+ select?: EventTicketSelect<ExtArgs> | null
14309
+ /**
14310
+ * Choose, which related nodes to fetch as well
14311
+ */
14312
+ include?: EventTicketInclude<ExtArgs> | null
14313
+ /**
14314
+ * The filter to search for the EventTicket to update in case it exists.
14315
+ */
14316
+ where: EventTicketWhereUniqueInput
14317
+ /**
14318
+ * In case the EventTicket found by the `where` argument doesn't exist, create a new EventTicket with this data.
14319
+ */
14320
+ create: XOR<EventTicketCreateInput, EventTicketUncheckedCreateInput>
14321
+ /**
14322
+ * In case the EventTicket was found with the provided `where` argument, update it with this data.
14323
+ */
14324
+ update: XOR<EventTicketUpdateInput, EventTicketUncheckedUpdateInput>
14325
+ }
14326
+
14327
+ /**
14328
+ * EventTicket delete
14329
+ */
14330
+ export type EventTicketDeleteArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
14331
+ /**
14332
+ * Select specific fields to fetch from the EventTicket
14333
+ */
14334
+ select?: EventTicketSelect<ExtArgs> | null
14335
+ /**
14336
+ * Choose, which related nodes to fetch as well
14337
+ */
14338
+ include?: EventTicketInclude<ExtArgs> | null
14339
+ /**
14340
+ * Filter which EventTicket to delete.
14341
+ */
14342
+ where: EventTicketWhereUniqueInput
14343
+ }
14344
+
14345
+ /**
14346
+ * EventTicket deleteMany
14347
+ */
14348
+ export type EventTicketDeleteManyArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
14349
+ /**
14350
+ * Filter which EventTickets to delete
14351
+ */
14352
+ where?: EventTicketWhereInput
14353
+ }
14354
+
14355
+ /**
14356
+ * EventTicket without action
14357
+ */
14358
+ export type EventTicketDefaultArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
14359
+ /**
14360
+ * Select specific fields to fetch from the EventTicket
14361
+ */
14362
+ select?: EventTicketSelect<ExtArgs> | null
14363
+ /**
14364
+ * Choose, which related nodes to fetch as well
14365
+ */
14366
+ include?: EventTicketInclude<ExtArgs> | null
14367
+ }
14368
+
14369
+
14370
+ /**
14371
+ * Enums
14372
+ */
14373
+
14374
+ export const TransactionIsolationLevel: {
14375
+ ReadUncommitted: 'ReadUncommitted',
14376
+ ReadCommitted: 'ReadCommitted',
14377
+ RepeatableRead: 'RepeatableRead',
14378
+ Serializable: 'Serializable'
14379
+ };
14380
+
14381
+ export type TransactionIsolationLevel = (typeof TransactionIsolationLevel)[keyof typeof TransactionIsolationLevel]
14382
+
14383
+
14384
+ export const AccountScalarFieldEnum: {
14385
+ id: 'id',
14386
+ username: 'username',
14387
+ password: 'password',
14388
+ role: 'role',
14389
+ isGlobalFilterActive: 'isGlobalFilterActive',
14390
+ fcmToken: 'fcmToken',
14391
+ created_at: 'created_at',
14392
+ updated_at: 'updated_at'
14393
+ };
14394
+
14395
+ export type AccountScalarFieldEnum = (typeof AccountScalarFieldEnum)[keyof typeof AccountScalarFieldEnum]
14396
+
14397
+
14398
+ export const ProfileScalarFieldEnum: {
14399
+ id: 'id',
14400
+ shortId: 'shortId',
14401
+ phoneNumber: 'phoneNumber',
14402
+ secondaryPhoneNumber: 'secondaryPhoneNumber',
14403
+ fullName: 'fullName',
14404
+ firstName: 'firstName',
14405
+ gender: 'gender',
14406
+ birthDate: 'birthDate',
14407
+ profilePictureUrl: 'profilePictureUrl',
14408
+ instagram: 'instagram',
14409
+ mail: 'mail',
14410
+ dni: 'dni',
14411
+ alternativeNames: 'alternativeNames',
14412
+ birthLocationId: 'birthLocationId',
14413
+ residenceLocationId: 'residenceLocationId',
14414
+ isInTrash: 'isInTrash',
14415
+ movedToTrashDate: 'movedToTrashDate',
14416
+ created_at: 'created_at',
14417
+ updated_at: 'updated_at'
14418
+ };
14419
+
14420
+ export type ProfileScalarFieldEnum = (typeof ProfileScalarFieldEnum)[keyof typeof ProfileScalarFieldEnum]
14421
+
14422
+
14423
+ export const LocationScalarFieldEnum: {
14424
+ id: 'id',
14425
+ latitude: 'latitude',
14426
+ longitude: 'longitude',
14427
+ country: 'country',
14428
+ state: 'state',
14429
+ city: 'city',
14430
+ created_at: 'created_at',
14431
+ updated_at: 'updated_at'
14432
+ };
14433
+
14434
+ export type LocationScalarFieldEnum = (typeof LocationScalarFieldEnum)[keyof typeof LocationScalarFieldEnum]
14435
+
14436
+
14437
+ export const CommentScalarFieldEnum: {
14438
+ id: 'id',
14439
+ content: 'content',
14440
+ createdBy: 'createdBy',
14441
+ profileId: 'profileId',
14442
+ isSolvable: 'isSolvable',
14443
+ isSolved: 'isSolved',
14444
+ solvedAt: 'solvedAt',
14445
+ solvedById: 'solvedById',
14446
+ created_at: 'created_at',
14447
+ updated_at: 'updated_at'
14448
+ };
14449
+
14450
+ export type CommentScalarFieldEnum = (typeof CommentScalarFieldEnum)[keyof typeof CommentScalarFieldEnum]
14451
+
14452
+
14453
+ export const TagScalarFieldEnum: {
14454
+ id: 'id',
14455
+ name: 'name',
14456
+ type: 'type',
14457
+ groupId: 'groupId',
14458
+ created_at: 'created_at',
14459
+ updated_at: 'updated_at'
14460
+ };
14461
+
14462
+ export type TagScalarFieldEnum = (typeof TagScalarFieldEnum)[keyof typeof TagScalarFieldEnum]
14463
+
14464
+
14465
+ export const TagGroupScalarFieldEnum: {
14466
+ id: 'id',
14467
+ name: 'name',
14468
+ color: 'color',
14469
+ isExclusive: 'isExclusive',
14470
+ created_at: 'created_at',
14471
+ updated_at: 'updated_at'
14472
+ };
14473
+
14474
+ export type TagGroupScalarFieldEnum = (typeof TagGroupScalarFieldEnum)[keyof typeof TagGroupScalarFieldEnum]
14475
+
14476
+
14477
+ export const EventScalarFieldEnum: {
14478
+ id: 'id',
14479
+ name: 'name',
14480
+ date: 'date',
14481
+ startingDate: 'startingDate',
14482
+ endingDate: 'endingDate',
14483
+ location: 'location',
14484
+ folderId: 'folderId',
14485
+ tagAssistedId: 'tagAssistedId',
14486
+ tagConfirmedId: 'tagConfirmedId',
14487
+ supraEventId: 'supraEventId',
14488
+ active: 'active',
13257
14489
  created_at: 'created_at',
13258
14490
  updated_at: 'updated_at'
13259
14491
  };
@@ -13305,6 +14537,19 @@ export namespace Prisma {
13305
14537
  export type EnumsScalarFieldEnum = (typeof EnumsScalarFieldEnum)[keyof typeof EnumsScalarFieldEnum]
13306
14538
 
13307
14539
 
14540
+ export const EventTicketScalarFieldEnum: {
14541
+ id: 'id',
14542
+ eventId: 'eventId',
14543
+ amount: 'amount',
14544
+ type: 'type',
14545
+ price: 'price',
14546
+ created_at: 'created_at',
14547
+ updated_at: 'updated_at'
14548
+ };
14549
+
14550
+ export type EventTicketScalarFieldEnum = (typeof EventTicketScalarFieldEnum)[keyof typeof EventTicketScalarFieldEnum]
14551
+
14552
+
13308
14553
  export const SortOrder: {
13309
14554
  asc: 'asc',
13310
14555
  desc: 'desc'
@@ -13488,6 +14733,20 @@ export namespace Prisma {
13488
14733
  */
13489
14734
  export type ListEnumTemplateCategoryFieldRefInput<$PrismaModel> = FieldRefInputType<$PrismaModel, 'TemplateCategory[]'>
13490
14735
 
14736
+
14737
+
14738
+ /**
14739
+ * Reference to a field of type 'TicketType'
14740
+ */
14741
+ export type EnumTicketTypeFieldRefInput<$PrismaModel> = FieldRefInputType<$PrismaModel, 'TicketType'>
14742
+
14743
+
14744
+
14745
+ /**
14746
+ * Reference to a field of type 'TicketType[]'
14747
+ */
14748
+ export type ListEnumTicketTypeFieldRefInput<$PrismaModel> = FieldRefInputType<$PrismaModel, 'TicketType[]'>
14749
+
13491
14750
  /**
13492
14751
  * Deep Input Types
13493
14752
  */
@@ -13889,6 +15148,7 @@ export namespace Prisma {
13889
15148
  accounts?: AccountListRelationFilter
13890
15149
  profiles?: ProfileListRelationFilter
13891
15150
  accountsGlobalFilter?: AccountListRelationFilter
15151
+ Event?: EventListRelationFilter
13892
15152
  }
13893
15153
 
13894
15154
  export type TagOrderByWithRelationInput = {
@@ -13904,6 +15164,7 @@ export namespace Prisma {
13904
15164
  accounts?: AccountOrderByRelationAggregateInput
13905
15165
  profiles?: ProfileOrderByRelationAggregateInput
13906
15166
  accountsGlobalFilter?: AccountOrderByRelationAggregateInput
15167
+ Event?: EventOrderByRelationAggregateInput
13907
15168
  }
13908
15169
 
13909
15170
  export type TagWhereUniqueInput = Prisma.AtLeast<{
@@ -13922,6 +15183,7 @@ export namespace Prisma {
13922
15183
  accounts?: AccountListRelationFilter
13923
15184
  profiles?: ProfileListRelationFilter
13924
15185
  accountsGlobalFilter?: AccountListRelationFilter
15186
+ Event?: EventListRelationFilter
13925
15187
  }, "id">
13926
15188
 
13927
15189
  export type TagOrderByWithAggregationInput = {
@@ -14015,11 +15277,14 @@ export namespace Prisma {
14015
15277
  id?: StringFilter<"Event"> | string
14016
15278
  name?: StringFilter<"Event"> | string
14017
15279
  date?: DateTimeFilter<"Event"> | Date | string
15280
+ startingDate?: DateTimeFilter<"Event"> | Date | string
15281
+ endingDate?: DateTimeFilter<"Event"> | Date | string
14018
15282
  location?: StringFilter<"Event"> | string
14019
15283
  folderId?: StringNullableFilter<"Event"> | string | null
14020
15284
  tagAssistedId?: StringFilter<"Event"> | string
14021
15285
  tagConfirmedId?: StringFilter<"Event"> | string
14022
15286
  supraEventId?: StringNullableFilter<"Event"> | string | null
15287
+ active?: BoolFilter<"Event"> | boolean
14023
15288
  created_at?: DateTimeFilter<"Event"> | Date | string
14024
15289
  updated_at?: DateTimeFilter<"Event"> | Date | string
14025
15290
  folder?: XOR<EventFolderNullableRelationFilter, EventFolderWhereInput> | null
@@ -14027,17 +15292,22 @@ export namespace Prisma {
14027
15292
  tagConfirmed?: XOR<TagRelationFilter, TagWhereInput>
14028
15293
  supraEvent?: XOR<EventNullableRelationFilter, EventWhereInput> | null
14029
15294
  subEvents?: EventListRelationFilter
15295
+ tags?: TagListRelationFilter
15296
+ eventTickets?: EventTicketListRelationFilter
14030
15297
  }
14031
15298
 
14032
15299
  export type EventOrderByWithRelationInput = {
14033
15300
  id?: SortOrder
14034
15301
  name?: SortOrder
14035
15302
  date?: SortOrder
15303
+ startingDate?: SortOrder
15304
+ endingDate?: SortOrder
14036
15305
  location?: SortOrder
14037
15306
  folderId?: SortOrderInput | SortOrder
14038
15307
  tagAssistedId?: SortOrder
14039
15308
  tagConfirmedId?: SortOrder
14040
15309
  supraEventId?: SortOrderInput | SortOrder
15310
+ active?: SortOrder
14041
15311
  created_at?: SortOrder
14042
15312
  updated_at?: SortOrder
14043
15313
  folder?: EventFolderOrderByWithRelationInput
@@ -14045,6 +15315,8 @@ export namespace Prisma {
14045
15315
  tagConfirmed?: TagOrderByWithRelationInput
14046
15316
  supraEvent?: EventOrderByWithRelationInput
14047
15317
  subEvents?: EventOrderByRelationAggregateInput
15318
+ tags?: TagOrderByRelationAggregateInput
15319
+ eventTickets?: EventTicketOrderByRelationAggregateInput
14048
15320
  }
14049
15321
 
14050
15322
  export type EventWhereUniqueInput = Prisma.AtLeast<{
@@ -14056,9 +15328,12 @@ export namespace Prisma {
14056
15328
  NOT?: EventWhereInput | EventWhereInput[]
14057
15329
  name?: StringFilter<"Event"> | string
14058
15330
  date?: DateTimeFilter<"Event"> | Date | string
15331
+ startingDate?: DateTimeFilter<"Event"> | Date | string
15332
+ endingDate?: DateTimeFilter<"Event"> | Date | string
14059
15333
  location?: StringFilter<"Event"> | string
14060
15334
  folderId?: StringNullableFilter<"Event"> | string | null
14061
15335
  supraEventId?: StringNullableFilter<"Event"> | string | null
15336
+ active?: BoolFilter<"Event"> | boolean
14062
15337
  created_at?: DateTimeFilter<"Event"> | Date | string
14063
15338
  updated_at?: DateTimeFilter<"Event"> | Date | string
14064
15339
  folder?: XOR<EventFolderNullableRelationFilter, EventFolderWhereInput> | null
@@ -14066,17 +15341,22 @@ export namespace Prisma {
14066
15341
  tagConfirmed?: XOR<TagRelationFilter, TagWhereInput>
14067
15342
  supraEvent?: XOR<EventNullableRelationFilter, EventWhereInput> | null
14068
15343
  subEvents?: EventListRelationFilter
15344
+ tags?: TagListRelationFilter
15345
+ eventTickets?: EventTicketListRelationFilter
14069
15346
  }, "id" | "tagAssistedId" | "tagConfirmedId">
14070
15347
 
14071
15348
  export type EventOrderByWithAggregationInput = {
14072
15349
  id?: SortOrder
14073
15350
  name?: SortOrder
14074
15351
  date?: SortOrder
15352
+ startingDate?: SortOrder
15353
+ endingDate?: SortOrder
14075
15354
  location?: SortOrder
14076
15355
  folderId?: SortOrderInput | SortOrder
14077
15356
  tagAssistedId?: SortOrder
14078
15357
  tagConfirmedId?: SortOrder
14079
15358
  supraEventId?: SortOrderInput | SortOrder
15359
+ active?: SortOrder
14080
15360
  created_at?: SortOrder
14081
15361
  updated_at?: SortOrder
14082
15362
  _count?: EventCountOrderByAggregateInput
@@ -14091,11 +15371,14 @@ export namespace Prisma {
14091
15371
  id?: StringWithAggregatesFilter<"Event"> | string
14092
15372
  name?: StringWithAggregatesFilter<"Event"> | string
14093
15373
  date?: DateTimeWithAggregatesFilter<"Event"> | Date | string
15374
+ startingDate?: DateTimeWithAggregatesFilter<"Event"> | Date | string
15375
+ endingDate?: DateTimeWithAggregatesFilter<"Event"> | Date | string
14094
15376
  location?: StringWithAggregatesFilter<"Event"> | string
14095
15377
  folderId?: StringNullableWithAggregatesFilter<"Event"> | string | null
14096
15378
  tagAssistedId?: StringWithAggregatesFilter<"Event"> | string
14097
15379
  tagConfirmedId?: StringWithAggregatesFilter<"Event"> | string
14098
15380
  supraEventId?: StringNullableWithAggregatesFilter<"Event"> | string | null
15381
+ active?: BoolWithAggregatesFilter<"Event"> | boolean
14099
15382
  created_at?: DateTimeWithAggregatesFilter<"Event"> | Date | string
14100
15383
  updated_at?: DateTimeWithAggregatesFilter<"Event"> | Date | string
14101
15384
  }
@@ -14314,6 +15597,73 @@ export namespace Prisma {
14314
15597
  templateCategory?: EnumTemplateCategoryWithAggregatesFilter<"Enums"> | $Enums.TemplateCategory
14315
15598
  }
14316
15599
 
15600
+ export type EventTicketWhereInput = {
15601
+ AND?: EventTicketWhereInput | EventTicketWhereInput[]
15602
+ OR?: EventTicketWhereInput[]
15603
+ NOT?: EventTicketWhereInput | EventTicketWhereInput[]
15604
+ id?: StringFilter<"EventTicket"> | string
15605
+ eventId?: StringFilter<"EventTicket"> | string
15606
+ amount?: IntFilter<"EventTicket"> | number
15607
+ type?: EnumTicketTypeFilter<"EventTicket"> | $Enums.TicketType
15608
+ price?: FloatNullableFilter<"EventTicket"> | number | null
15609
+ created_at?: DateTimeFilter<"EventTicket"> | Date | string
15610
+ updated_at?: DateTimeFilter<"EventTicket"> | Date | string
15611
+ event?: XOR<EventRelationFilter, EventWhereInput>
15612
+ }
15613
+
15614
+ export type EventTicketOrderByWithRelationInput = {
15615
+ id?: SortOrder
15616
+ eventId?: SortOrder
15617
+ amount?: SortOrder
15618
+ type?: SortOrder
15619
+ price?: SortOrderInput | SortOrder
15620
+ created_at?: SortOrder
15621
+ updated_at?: SortOrder
15622
+ event?: EventOrderByWithRelationInput
15623
+ }
15624
+
15625
+ export type EventTicketWhereUniqueInput = Prisma.AtLeast<{
15626
+ id?: string
15627
+ AND?: EventTicketWhereInput | EventTicketWhereInput[]
15628
+ OR?: EventTicketWhereInput[]
15629
+ NOT?: EventTicketWhereInput | EventTicketWhereInput[]
15630
+ eventId?: StringFilter<"EventTicket"> | string
15631
+ amount?: IntFilter<"EventTicket"> | number
15632
+ type?: EnumTicketTypeFilter<"EventTicket"> | $Enums.TicketType
15633
+ price?: FloatNullableFilter<"EventTicket"> | number | null
15634
+ created_at?: DateTimeFilter<"EventTicket"> | Date | string
15635
+ updated_at?: DateTimeFilter<"EventTicket"> | Date | string
15636
+ event?: XOR<EventRelationFilter, EventWhereInput>
15637
+ }, "id">
15638
+
15639
+ export type EventTicketOrderByWithAggregationInput = {
15640
+ id?: SortOrder
15641
+ eventId?: SortOrder
15642
+ amount?: SortOrder
15643
+ type?: SortOrder
15644
+ price?: SortOrderInput | SortOrder
15645
+ created_at?: SortOrder
15646
+ updated_at?: SortOrder
15647
+ _count?: EventTicketCountOrderByAggregateInput
15648
+ _avg?: EventTicketAvgOrderByAggregateInput
15649
+ _max?: EventTicketMaxOrderByAggregateInput
15650
+ _min?: EventTicketMinOrderByAggregateInput
15651
+ _sum?: EventTicketSumOrderByAggregateInput
15652
+ }
15653
+
15654
+ export type EventTicketScalarWhereWithAggregatesInput = {
15655
+ AND?: EventTicketScalarWhereWithAggregatesInput | EventTicketScalarWhereWithAggregatesInput[]
15656
+ OR?: EventTicketScalarWhereWithAggregatesInput[]
15657
+ NOT?: EventTicketScalarWhereWithAggregatesInput | EventTicketScalarWhereWithAggregatesInput[]
15658
+ id?: StringWithAggregatesFilter<"EventTicket"> | string
15659
+ eventId?: StringWithAggregatesFilter<"EventTicket"> | string
15660
+ amount?: IntWithAggregatesFilter<"EventTicket"> | number
15661
+ type?: EnumTicketTypeWithAggregatesFilter<"EventTicket"> | $Enums.TicketType
15662
+ price?: FloatNullableWithAggregatesFilter<"EventTicket"> | number | null
15663
+ created_at?: DateTimeWithAggregatesFilter<"EventTicket"> | Date | string
15664
+ updated_at?: DateTimeWithAggregatesFilter<"EventTicket"> | Date | string
15665
+ }
15666
+
14317
15667
  export type AccountCreateInput = {
14318
15668
  id?: string
14319
15669
  username: string
@@ -14756,6 +16106,7 @@ export namespace Prisma {
14756
16106
  accounts?: AccountCreateNestedManyWithoutTagsInput
14757
16107
  profiles?: ProfileCreateNestedManyWithoutTagsInput
14758
16108
  accountsGlobalFilter?: AccountCreateNestedManyWithoutGlobalFilterInput
16109
+ Event?: EventCreateNestedManyWithoutTagsInput
14759
16110
  }
14760
16111
 
14761
16112
  export type TagUncheckedCreateInput = {
@@ -14770,6 +16121,7 @@ export namespace Prisma {
14770
16121
  accounts?: AccountUncheckedCreateNestedManyWithoutTagsInput
14771
16122
  profiles?: ProfileUncheckedCreateNestedManyWithoutTagsInput
14772
16123
  accountsGlobalFilter?: AccountUncheckedCreateNestedManyWithoutGlobalFilterInput
16124
+ Event?: EventUncheckedCreateNestedManyWithoutTagsInput
14773
16125
  }
14774
16126
 
14775
16127
  export type TagUpdateInput = {
@@ -14784,6 +16136,7 @@ export namespace Prisma {
14784
16136
  accounts?: AccountUpdateManyWithoutTagsNestedInput
14785
16137
  profiles?: ProfileUpdateManyWithoutTagsNestedInput
14786
16138
  accountsGlobalFilter?: AccountUpdateManyWithoutGlobalFilterNestedInput
16139
+ Event?: EventUpdateManyWithoutTagsNestedInput
14787
16140
  }
14788
16141
 
14789
16142
  export type TagUncheckedUpdateInput = {
@@ -14798,6 +16151,7 @@ export namespace Prisma {
14798
16151
  accounts?: AccountUncheckedUpdateManyWithoutTagsNestedInput
14799
16152
  profiles?: ProfileUncheckedUpdateManyWithoutTagsNestedInput
14800
16153
  accountsGlobalFilter?: AccountUncheckedUpdateManyWithoutGlobalFilterNestedInput
16154
+ Event?: EventUncheckedUpdateManyWithoutTagsNestedInput
14801
16155
  }
14802
16156
 
14803
16157
  export type TagCreateManyInput = {
@@ -14897,7 +16251,10 @@ export namespace Prisma {
14897
16251
  id?: string
14898
16252
  name: string
14899
16253
  date: Date | string
16254
+ startingDate: Date | string
16255
+ endingDate: Date | string
14900
16256
  location: string
16257
+ active?: boolean
14901
16258
  created_at?: Date | string
14902
16259
  updated_at?: Date | string
14903
16260
  folder?: EventFolderCreateNestedOneWithoutEventsInput
@@ -14905,27 +16262,37 @@ export namespace Prisma {
14905
16262
  tagConfirmed: TagCreateNestedOneWithoutConfirmedEventInput
14906
16263
  supraEvent?: EventCreateNestedOneWithoutSubEventsInput
14907
16264
  subEvents?: EventCreateNestedManyWithoutSupraEventInput
16265
+ tags?: TagCreateNestedManyWithoutEventInput
16266
+ eventTickets?: EventTicketCreateNestedManyWithoutEventInput
14908
16267
  }
14909
16268
 
14910
16269
  export type EventUncheckedCreateInput = {
14911
16270
  id?: string
14912
16271
  name: string
14913
16272
  date: Date | string
16273
+ startingDate: Date | string
16274
+ endingDate: Date | string
14914
16275
  location: string
14915
16276
  folderId?: string | null
14916
16277
  tagAssistedId: string
14917
16278
  tagConfirmedId: string
14918
16279
  supraEventId?: string | null
16280
+ active?: boolean
14919
16281
  created_at?: Date | string
14920
16282
  updated_at?: Date | string
14921
16283
  subEvents?: EventUncheckedCreateNestedManyWithoutSupraEventInput
16284
+ tags?: TagUncheckedCreateNestedManyWithoutEventInput
16285
+ eventTickets?: EventTicketUncheckedCreateNestedManyWithoutEventInput
14922
16286
  }
14923
16287
 
14924
16288
  export type EventUpdateInput = {
14925
16289
  id?: StringFieldUpdateOperationsInput | string
14926
16290
  name?: StringFieldUpdateOperationsInput | string
14927
16291
  date?: DateTimeFieldUpdateOperationsInput | Date | string
16292
+ startingDate?: DateTimeFieldUpdateOperationsInput | Date | string
16293
+ endingDate?: DateTimeFieldUpdateOperationsInput | Date | string
14928
16294
  location?: StringFieldUpdateOperationsInput | string
16295
+ active?: BoolFieldUpdateOperationsInput | boolean
14929
16296
  created_at?: DateTimeFieldUpdateOperationsInput | Date | string
14930
16297
  updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
14931
16298
  folder?: EventFolderUpdateOneWithoutEventsNestedInput
@@ -14933,31 +16300,41 @@ export namespace Prisma {
14933
16300
  tagConfirmed?: TagUpdateOneRequiredWithoutConfirmedEventNestedInput
14934
16301
  supraEvent?: EventUpdateOneWithoutSubEventsNestedInput
14935
16302
  subEvents?: EventUpdateManyWithoutSupraEventNestedInput
16303
+ tags?: TagUpdateManyWithoutEventNestedInput
16304
+ eventTickets?: EventTicketUpdateManyWithoutEventNestedInput
14936
16305
  }
14937
16306
 
14938
16307
  export type EventUncheckedUpdateInput = {
14939
16308
  id?: StringFieldUpdateOperationsInput | string
14940
16309
  name?: StringFieldUpdateOperationsInput | string
14941
16310
  date?: DateTimeFieldUpdateOperationsInput | Date | string
16311
+ startingDate?: DateTimeFieldUpdateOperationsInput | Date | string
16312
+ endingDate?: DateTimeFieldUpdateOperationsInput | Date | string
14942
16313
  location?: StringFieldUpdateOperationsInput | string
14943
16314
  folderId?: NullableStringFieldUpdateOperationsInput | string | null
14944
16315
  tagAssistedId?: StringFieldUpdateOperationsInput | string
14945
16316
  tagConfirmedId?: StringFieldUpdateOperationsInput | string
14946
16317
  supraEventId?: NullableStringFieldUpdateOperationsInput | string | null
16318
+ active?: BoolFieldUpdateOperationsInput | boolean
14947
16319
  created_at?: DateTimeFieldUpdateOperationsInput | Date | string
14948
16320
  updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
14949
16321
  subEvents?: EventUncheckedUpdateManyWithoutSupraEventNestedInput
16322
+ tags?: TagUncheckedUpdateManyWithoutEventNestedInput
16323
+ eventTickets?: EventTicketUncheckedUpdateManyWithoutEventNestedInput
14950
16324
  }
14951
16325
 
14952
16326
  export type EventCreateManyInput = {
14953
16327
  id?: string
14954
16328
  name: string
14955
16329
  date: Date | string
16330
+ startingDate: Date | string
16331
+ endingDate: Date | string
14956
16332
  location: string
14957
16333
  folderId?: string | null
14958
16334
  tagAssistedId: string
14959
16335
  tagConfirmedId: string
14960
16336
  supraEventId?: string | null
16337
+ active?: boolean
14961
16338
  created_at?: Date | string
14962
16339
  updated_at?: Date | string
14963
16340
  }
@@ -14966,7 +16343,10 @@ export namespace Prisma {
14966
16343
  id?: StringFieldUpdateOperationsInput | string
14967
16344
  name?: StringFieldUpdateOperationsInput | string
14968
16345
  date?: DateTimeFieldUpdateOperationsInput | Date | string
16346
+ startingDate?: DateTimeFieldUpdateOperationsInput | Date | string
16347
+ endingDate?: DateTimeFieldUpdateOperationsInput | Date | string
14969
16348
  location?: StringFieldUpdateOperationsInput | string
16349
+ active?: BoolFieldUpdateOperationsInput | boolean
14970
16350
  created_at?: DateTimeFieldUpdateOperationsInput | Date | string
14971
16351
  updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
14972
16352
  }
@@ -14975,11 +16355,14 @@ export namespace Prisma {
14975
16355
  id?: StringFieldUpdateOperationsInput | string
14976
16356
  name?: StringFieldUpdateOperationsInput | string
14977
16357
  date?: DateTimeFieldUpdateOperationsInput | Date | string
16358
+ startingDate?: DateTimeFieldUpdateOperationsInput | Date | string
16359
+ endingDate?: DateTimeFieldUpdateOperationsInput | Date | string
14978
16360
  location?: StringFieldUpdateOperationsInput | string
14979
16361
  folderId?: NullableStringFieldUpdateOperationsInput | string | null
14980
16362
  tagAssistedId?: StringFieldUpdateOperationsInput | string
14981
16363
  tagConfirmedId?: StringFieldUpdateOperationsInput | string
14982
16364
  supraEventId?: NullableStringFieldUpdateOperationsInput | string | null
16365
+ active?: BoolFieldUpdateOperationsInput | boolean
14983
16366
  created_at?: DateTimeFieldUpdateOperationsInput | Date | string
14984
16367
  updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
14985
16368
  }
@@ -15211,6 +16594,75 @@ export namespace Prisma {
15211
16594
  templateCategory?: EnumTemplateCategoryFieldUpdateOperationsInput | $Enums.TemplateCategory
15212
16595
  }
15213
16596
 
16597
+ export type EventTicketCreateInput = {
16598
+ id?: string
16599
+ amount: number
16600
+ type: $Enums.TicketType
16601
+ price?: number | null
16602
+ created_at?: Date | string
16603
+ updated_at?: Date | string
16604
+ event: EventCreateNestedOneWithoutEventTicketsInput
16605
+ }
16606
+
16607
+ export type EventTicketUncheckedCreateInput = {
16608
+ id?: string
16609
+ eventId: string
16610
+ amount: number
16611
+ type: $Enums.TicketType
16612
+ price?: number | null
16613
+ created_at?: Date | string
16614
+ updated_at?: Date | string
16615
+ }
16616
+
16617
+ export type EventTicketUpdateInput = {
16618
+ id?: StringFieldUpdateOperationsInput | string
16619
+ amount?: IntFieldUpdateOperationsInput | number
16620
+ type?: EnumTicketTypeFieldUpdateOperationsInput | $Enums.TicketType
16621
+ price?: NullableFloatFieldUpdateOperationsInput | number | null
16622
+ created_at?: DateTimeFieldUpdateOperationsInput | Date | string
16623
+ updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
16624
+ event?: EventUpdateOneRequiredWithoutEventTicketsNestedInput
16625
+ }
16626
+
16627
+ export type EventTicketUncheckedUpdateInput = {
16628
+ id?: StringFieldUpdateOperationsInput | string
16629
+ eventId?: StringFieldUpdateOperationsInput | string
16630
+ amount?: IntFieldUpdateOperationsInput | number
16631
+ type?: EnumTicketTypeFieldUpdateOperationsInput | $Enums.TicketType
16632
+ price?: NullableFloatFieldUpdateOperationsInput | number | null
16633
+ created_at?: DateTimeFieldUpdateOperationsInput | Date | string
16634
+ updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
16635
+ }
16636
+
16637
+ export type EventTicketCreateManyInput = {
16638
+ id?: string
16639
+ eventId: string
16640
+ amount: number
16641
+ type: $Enums.TicketType
16642
+ price?: number | null
16643
+ created_at?: Date | string
16644
+ updated_at?: Date | string
16645
+ }
16646
+
16647
+ export type EventTicketUpdateManyMutationInput = {
16648
+ id?: StringFieldUpdateOperationsInput | string
16649
+ amount?: IntFieldUpdateOperationsInput | number
16650
+ type?: EnumTicketTypeFieldUpdateOperationsInput | $Enums.TicketType
16651
+ price?: NullableFloatFieldUpdateOperationsInput | number | null
16652
+ created_at?: DateTimeFieldUpdateOperationsInput | Date | string
16653
+ updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
16654
+ }
16655
+
16656
+ export type EventTicketUncheckedUpdateManyInput = {
16657
+ id?: StringFieldUpdateOperationsInput | string
16658
+ eventId?: StringFieldUpdateOperationsInput | string
16659
+ amount?: IntFieldUpdateOperationsInput | number
16660
+ type?: EnumTicketTypeFieldUpdateOperationsInput | $Enums.TicketType
16661
+ price?: NullableFloatFieldUpdateOperationsInput | number | null
16662
+ created_at?: DateTimeFieldUpdateOperationsInput | Date | string
16663
+ updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
16664
+ }
16665
+
15214
16666
  export type StringFilter<$PrismaModel = never> = {
15215
16667
  equals?: string | StringFieldRefInput<$PrismaModel>
15216
16668
  in?: string[] | ListStringFieldRefInput<$PrismaModel>
@@ -15697,10 +17149,20 @@ export namespace Prisma {
15697
17149
  none?: AccountWhereInput
15698
17150
  }
15699
17151
 
17152
+ export type EventListRelationFilter = {
17153
+ every?: EventWhereInput
17154
+ some?: EventWhereInput
17155
+ none?: EventWhereInput
17156
+ }
17157
+
15700
17158
  export type AccountOrderByRelationAggregateInput = {
15701
17159
  _count?: SortOrder
15702
17160
  }
15703
17161
 
17162
+ export type EventOrderByRelationAggregateInput = {
17163
+ _count?: SortOrder
17164
+ }
17165
+
15704
17166
  export type TagCountOrderByAggregateInput = {
15705
17167
  id?: SortOrder
15706
17168
  name?: SortOrder
@@ -15775,13 +17237,13 @@ export namespace Prisma {
15775
17237
  isNot?: TagWhereInput
15776
17238
  }
15777
17239
 
15778
- export type EventListRelationFilter = {
15779
- every?: EventWhereInput
15780
- some?: EventWhereInput
15781
- none?: EventWhereInput
17240
+ export type EventTicketListRelationFilter = {
17241
+ every?: EventTicketWhereInput
17242
+ some?: EventTicketWhereInput
17243
+ none?: EventTicketWhereInput
15782
17244
  }
15783
17245
 
15784
- export type EventOrderByRelationAggregateInput = {
17246
+ export type EventTicketOrderByRelationAggregateInput = {
15785
17247
  _count?: SortOrder
15786
17248
  }
15787
17249
 
@@ -15789,11 +17251,14 @@ export namespace Prisma {
15789
17251
  id?: SortOrder
15790
17252
  name?: SortOrder
15791
17253
  date?: SortOrder
17254
+ startingDate?: SortOrder
17255
+ endingDate?: SortOrder
15792
17256
  location?: SortOrder
15793
17257
  folderId?: SortOrder
15794
17258
  tagAssistedId?: SortOrder
15795
17259
  tagConfirmedId?: SortOrder
15796
17260
  supraEventId?: SortOrder
17261
+ active?: SortOrder
15797
17262
  created_at?: SortOrder
15798
17263
  updated_at?: SortOrder
15799
17264
  }
@@ -15802,11 +17267,14 @@ export namespace Prisma {
15802
17267
  id?: SortOrder
15803
17268
  name?: SortOrder
15804
17269
  date?: SortOrder
17270
+ startingDate?: SortOrder
17271
+ endingDate?: SortOrder
15805
17272
  location?: SortOrder
15806
17273
  folderId?: SortOrder
15807
17274
  tagAssistedId?: SortOrder
15808
17275
  tagConfirmedId?: SortOrder
15809
17276
  supraEventId?: SortOrder
17277
+ active?: SortOrder
15810
17278
  created_at?: SortOrder
15811
17279
  updated_at?: SortOrder
15812
17280
  }
@@ -15815,11 +17283,14 @@ export namespace Prisma {
15815
17283
  id?: SortOrder
15816
17284
  name?: SortOrder
15817
17285
  date?: SortOrder
17286
+ startingDate?: SortOrder
17287
+ endingDate?: SortOrder
15818
17288
  location?: SortOrder
15819
17289
  folderId?: SortOrder
15820
17290
  tagAssistedId?: SortOrder
15821
17291
  tagConfirmedId?: SortOrder
15822
17292
  supraEventId?: SortOrder
17293
+ active?: SortOrder
15823
17294
  created_at?: SortOrder
15824
17295
  updated_at?: SortOrder
15825
17296
  }
@@ -16016,6 +17487,95 @@ export namespace Prisma {
16016
17487
  _max?: NestedEnumTemplateCategoryFilter<$PrismaModel>
16017
17488
  }
16018
17489
 
17490
+ export type EnumTicketTypeFilter<$PrismaModel = never> = {
17491
+ equals?: $Enums.TicketType | EnumTicketTypeFieldRefInput<$PrismaModel>
17492
+ in?: $Enums.TicketType[] | ListEnumTicketTypeFieldRefInput<$PrismaModel>
17493
+ notIn?: $Enums.TicketType[] | ListEnumTicketTypeFieldRefInput<$PrismaModel>
17494
+ not?: NestedEnumTicketTypeFilter<$PrismaModel> | $Enums.TicketType
17495
+ }
17496
+
17497
+ export type FloatNullableFilter<$PrismaModel = never> = {
17498
+ equals?: number | FloatFieldRefInput<$PrismaModel> | null
17499
+ in?: number[] | ListFloatFieldRefInput<$PrismaModel> | null
17500
+ notIn?: number[] | ListFloatFieldRefInput<$PrismaModel> | null
17501
+ lt?: number | FloatFieldRefInput<$PrismaModel>
17502
+ lte?: number | FloatFieldRefInput<$PrismaModel>
17503
+ gt?: number | FloatFieldRefInput<$PrismaModel>
17504
+ gte?: number | FloatFieldRefInput<$PrismaModel>
17505
+ not?: NestedFloatNullableFilter<$PrismaModel> | number | null
17506
+ }
17507
+
17508
+ export type EventRelationFilter = {
17509
+ is?: EventWhereInput
17510
+ isNot?: EventWhereInput
17511
+ }
17512
+
17513
+ export type EventTicketCountOrderByAggregateInput = {
17514
+ id?: SortOrder
17515
+ eventId?: SortOrder
17516
+ amount?: SortOrder
17517
+ type?: SortOrder
17518
+ price?: SortOrder
17519
+ created_at?: SortOrder
17520
+ updated_at?: SortOrder
17521
+ }
17522
+
17523
+ export type EventTicketAvgOrderByAggregateInput = {
17524
+ amount?: SortOrder
17525
+ price?: SortOrder
17526
+ }
17527
+
17528
+ export type EventTicketMaxOrderByAggregateInput = {
17529
+ id?: SortOrder
17530
+ eventId?: SortOrder
17531
+ amount?: SortOrder
17532
+ type?: SortOrder
17533
+ price?: SortOrder
17534
+ created_at?: SortOrder
17535
+ updated_at?: SortOrder
17536
+ }
17537
+
17538
+ export type EventTicketMinOrderByAggregateInput = {
17539
+ id?: SortOrder
17540
+ eventId?: SortOrder
17541
+ amount?: SortOrder
17542
+ type?: SortOrder
17543
+ price?: SortOrder
17544
+ created_at?: SortOrder
17545
+ updated_at?: SortOrder
17546
+ }
17547
+
17548
+ export type EventTicketSumOrderByAggregateInput = {
17549
+ amount?: SortOrder
17550
+ price?: SortOrder
17551
+ }
17552
+
17553
+ export type EnumTicketTypeWithAggregatesFilter<$PrismaModel = never> = {
17554
+ equals?: $Enums.TicketType | EnumTicketTypeFieldRefInput<$PrismaModel>
17555
+ in?: $Enums.TicketType[] | ListEnumTicketTypeFieldRefInput<$PrismaModel>
17556
+ notIn?: $Enums.TicketType[] | ListEnumTicketTypeFieldRefInput<$PrismaModel>
17557
+ not?: NestedEnumTicketTypeWithAggregatesFilter<$PrismaModel> | $Enums.TicketType
17558
+ _count?: NestedIntFilter<$PrismaModel>
17559
+ _min?: NestedEnumTicketTypeFilter<$PrismaModel>
17560
+ _max?: NestedEnumTicketTypeFilter<$PrismaModel>
17561
+ }
17562
+
17563
+ export type FloatNullableWithAggregatesFilter<$PrismaModel = never> = {
17564
+ equals?: number | FloatFieldRefInput<$PrismaModel> | null
17565
+ in?: number[] | ListFloatFieldRefInput<$PrismaModel> | null
17566
+ notIn?: number[] | ListFloatFieldRefInput<$PrismaModel> | null
17567
+ lt?: number | FloatFieldRefInput<$PrismaModel>
17568
+ lte?: number | FloatFieldRefInput<$PrismaModel>
17569
+ gt?: number | FloatFieldRefInput<$PrismaModel>
17570
+ gte?: number | FloatFieldRefInput<$PrismaModel>
17571
+ not?: NestedFloatNullableWithAggregatesFilter<$PrismaModel> | number | null
17572
+ _count?: NestedIntNullableFilter<$PrismaModel>
17573
+ _avg?: NestedFloatNullableFilter<$PrismaModel>
17574
+ _sum?: NestedFloatNullableFilter<$PrismaModel>
17575
+ _min?: NestedFloatNullableFilter<$PrismaModel>
17576
+ _max?: NestedFloatNullableFilter<$PrismaModel>
17577
+ }
17578
+
16019
17579
  export type AccountCreatefcmTokenInput = {
16020
17580
  set: string[]
16021
17581
  }
@@ -16552,6 +18112,12 @@ export namespace Prisma {
16552
18112
  connect?: AccountWhereUniqueInput | AccountWhereUniqueInput[]
16553
18113
  }
16554
18114
 
18115
+ export type EventCreateNestedManyWithoutTagsInput = {
18116
+ create?: XOR<EventCreateWithoutTagsInput, EventUncheckedCreateWithoutTagsInput> | EventCreateWithoutTagsInput[] | EventUncheckedCreateWithoutTagsInput[]
18117
+ connectOrCreate?: EventCreateOrConnectWithoutTagsInput | EventCreateOrConnectWithoutTagsInput[]
18118
+ connect?: EventWhereUniqueInput | EventWhereUniqueInput[]
18119
+ }
18120
+
16555
18121
  export type EventUncheckedCreateNestedOneWithoutTagAssistedInput = {
16556
18122
  create?: XOR<EventCreateWithoutTagAssistedInput, EventUncheckedCreateWithoutTagAssistedInput>
16557
18123
  connectOrCreate?: EventCreateOrConnectWithoutTagAssistedInput
@@ -16582,6 +18148,12 @@ export namespace Prisma {
16582
18148
  connect?: AccountWhereUniqueInput | AccountWhereUniqueInput[]
16583
18149
  }
16584
18150
 
18151
+ export type EventUncheckedCreateNestedManyWithoutTagsInput = {
18152
+ create?: XOR<EventCreateWithoutTagsInput, EventUncheckedCreateWithoutTagsInput> | EventCreateWithoutTagsInput[] | EventUncheckedCreateWithoutTagsInput[]
18153
+ connectOrCreate?: EventCreateOrConnectWithoutTagsInput | EventCreateOrConnectWithoutTagsInput[]
18154
+ connect?: EventWhereUniqueInput | EventWhereUniqueInput[]
18155
+ }
18156
+
16585
18157
  export type EnumTagTypeFieldUpdateOperationsInput = {
16586
18158
  set?: $Enums.TagType
16587
18159
  }
@@ -16653,6 +18225,19 @@ export namespace Prisma {
16653
18225
  deleteMany?: AccountScalarWhereInput | AccountScalarWhereInput[]
16654
18226
  }
16655
18227
 
18228
+ export type EventUpdateManyWithoutTagsNestedInput = {
18229
+ create?: XOR<EventCreateWithoutTagsInput, EventUncheckedCreateWithoutTagsInput> | EventCreateWithoutTagsInput[] | EventUncheckedCreateWithoutTagsInput[]
18230
+ connectOrCreate?: EventCreateOrConnectWithoutTagsInput | EventCreateOrConnectWithoutTagsInput[]
18231
+ upsert?: EventUpsertWithWhereUniqueWithoutTagsInput | EventUpsertWithWhereUniqueWithoutTagsInput[]
18232
+ set?: EventWhereUniqueInput | EventWhereUniqueInput[]
18233
+ disconnect?: EventWhereUniqueInput | EventWhereUniqueInput[]
18234
+ delete?: EventWhereUniqueInput | EventWhereUniqueInput[]
18235
+ connect?: EventWhereUniqueInput | EventWhereUniqueInput[]
18236
+ update?: EventUpdateWithWhereUniqueWithoutTagsInput | EventUpdateWithWhereUniqueWithoutTagsInput[]
18237
+ updateMany?: EventUpdateManyWithWhereWithoutTagsInput | EventUpdateManyWithWhereWithoutTagsInput[]
18238
+ deleteMany?: EventScalarWhereInput | EventScalarWhereInput[]
18239
+ }
18240
+
16656
18241
  export type EventUncheckedUpdateOneWithoutTagAssistedNestedInput = {
16657
18242
  create?: XOR<EventCreateWithoutTagAssistedInput, EventUncheckedCreateWithoutTagAssistedInput>
16658
18243
  connectOrCreate?: EventCreateOrConnectWithoutTagAssistedInput
@@ -16712,6 +18297,19 @@ export namespace Prisma {
16712
18297
  deleteMany?: AccountScalarWhereInput | AccountScalarWhereInput[]
16713
18298
  }
16714
18299
 
18300
+ export type EventUncheckedUpdateManyWithoutTagsNestedInput = {
18301
+ create?: XOR<EventCreateWithoutTagsInput, EventUncheckedCreateWithoutTagsInput> | EventCreateWithoutTagsInput[] | EventUncheckedCreateWithoutTagsInput[]
18302
+ connectOrCreate?: EventCreateOrConnectWithoutTagsInput | EventCreateOrConnectWithoutTagsInput[]
18303
+ upsert?: EventUpsertWithWhereUniqueWithoutTagsInput | EventUpsertWithWhereUniqueWithoutTagsInput[]
18304
+ set?: EventWhereUniqueInput | EventWhereUniqueInput[]
18305
+ disconnect?: EventWhereUniqueInput | EventWhereUniqueInput[]
18306
+ delete?: EventWhereUniqueInput | EventWhereUniqueInput[]
18307
+ connect?: EventWhereUniqueInput | EventWhereUniqueInput[]
18308
+ update?: EventUpdateWithWhereUniqueWithoutTagsInput | EventUpdateWithWhereUniqueWithoutTagsInput[]
18309
+ updateMany?: EventUpdateManyWithWhereWithoutTagsInput | EventUpdateManyWithWhereWithoutTagsInput[]
18310
+ deleteMany?: EventScalarWhereInput | EventScalarWhereInput[]
18311
+ }
18312
+
16715
18313
  export type TagCreateNestedManyWithoutGroupInput = {
16716
18314
  create?: XOR<TagCreateWithoutGroupInput, TagUncheckedCreateWithoutGroupInput> | TagCreateWithoutGroupInput[] | TagUncheckedCreateWithoutGroupInput[]
16717
18315
  connectOrCreate?: TagCreateOrConnectWithoutGroupInput | TagCreateOrConnectWithoutGroupInput[]
@@ -16785,6 +18383,19 @@ export namespace Prisma {
16785
18383
  connect?: EventWhereUniqueInput | EventWhereUniqueInput[]
16786
18384
  }
16787
18385
 
18386
+ export type TagCreateNestedManyWithoutEventInput = {
18387
+ create?: XOR<TagCreateWithoutEventInput, TagUncheckedCreateWithoutEventInput> | TagCreateWithoutEventInput[] | TagUncheckedCreateWithoutEventInput[]
18388
+ connectOrCreate?: TagCreateOrConnectWithoutEventInput | TagCreateOrConnectWithoutEventInput[]
18389
+ connect?: TagWhereUniqueInput | TagWhereUniqueInput[]
18390
+ }
18391
+
18392
+ export type EventTicketCreateNestedManyWithoutEventInput = {
18393
+ create?: XOR<EventTicketCreateWithoutEventInput, EventTicketUncheckedCreateWithoutEventInput> | EventTicketCreateWithoutEventInput[] | EventTicketUncheckedCreateWithoutEventInput[]
18394
+ connectOrCreate?: EventTicketCreateOrConnectWithoutEventInput | EventTicketCreateOrConnectWithoutEventInput[]
18395
+ createMany?: EventTicketCreateManyEventInputEnvelope
18396
+ connect?: EventTicketWhereUniqueInput | EventTicketWhereUniqueInput[]
18397
+ }
18398
+
16788
18399
  export type EventUncheckedCreateNestedManyWithoutSupraEventInput = {
16789
18400
  create?: XOR<EventCreateWithoutSupraEventInput, EventUncheckedCreateWithoutSupraEventInput> | EventCreateWithoutSupraEventInput[] | EventUncheckedCreateWithoutSupraEventInput[]
16790
18401
  connectOrCreate?: EventCreateOrConnectWithoutSupraEventInput | EventCreateOrConnectWithoutSupraEventInput[]
@@ -16792,6 +18403,19 @@ export namespace Prisma {
16792
18403
  connect?: EventWhereUniqueInput | EventWhereUniqueInput[]
16793
18404
  }
16794
18405
 
18406
+ export type TagUncheckedCreateNestedManyWithoutEventInput = {
18407
+ create?: XOR<TagCreateWithoutEventInput, TagUncheckedCreateWithoutEventInput> | TagCreateWithoutEventInput[] | TagUncheckedCreateWithoutEventInput[]
18408
+ connectOrCreate?: TagCreateOrConnectWithoutEventInput | TagCreateOrConnectWithoutEventInput[]
18409
+ connect?: TagWhereUniqueInput | TagWhereUniqueInput[]
18410
+ }
18411
+
18412
+ export type EventTicketUncheckedCreateNestedManyWithoutEventInput = {
18413
+ create?: XOR<EventTicketCreateWithoutEventInput, EventTicketUncheckedCreateWithoutEventInput> | EventTicketCreateWithoutEventInput[] | EventTicketUncheckedCreateWithoutEventInput[]
18414
+ connectOrCreate?: EventTicketCreateOrConnectWithoutEventInput | EventTicketCreateOrConnectWithoutEventInput[]
18415
+ createMany?: EventTicketCreateManyEventInputEnvelope
18416
+ connect?: EventTicketWhereUniqueInput | EventTicketWhereUniqueInput[]
18417
+ }
18418
+
16795
18419
  export type EventFolderUpdateOneWithoutEventsNestedInput = {
16796
18420
  create?: XOR<EventFolderCreateWithoutEventsInput, EventFolderUncheckedCreateWithoutEventsInput>
16797
18421
  connectOrCreate?: EventFolderCreateOrConnectWithoutEventsInput
@@ -16842,6 +18466,33 @@ export namespace Prisma {
16842
18466
  deleteMany?: EventScalarWhereInput | EventScalarWhereInput[]
16843
18467
  }
16844
18468
 
18469
+ export type TagUpdateManyWithoutEventNestedInput = {
18470
+ create?: XOR<TagCreateWithoutEventInput, TagUncheckedCreateWithoutEventInput> | TagCreateWithoutEventInput[] | TagUncheckedCreateWithoutEventInput[]
18471
+ connectOrCreate?: TagCreateOrConnectWithoutEventInput | TagCreateOrConnectWithoutEventInput[]
18472
+ upsert?: TagUpsertWithWhereUniqueWithoutEventInput | TagUpsertWithWhereUniqueWithoutEventInput[]
18473
+ set?: TagWhereUniqueInput | TagWhereUniqueInput[]
18474
+ disconnect?: TagWhereUniqueInput | TagWhereUniqueInput[]
18475
+ delete?: TagWhereUniqueInput | TagWhereUniqueInput[]
18476
+ connect?: TagWhereUniqueInput | TagWhereUniqueInput[]
18477
+ update?: TagUpdateWithWhereUniqueWithoutEventInput | TagUpdateWithWhereUniqueWithoutEventInput[]
18478
+ updateMany?: TagUpdateManyWithWhereWithoutEventInput | TagUpdateManyWithWhereWithoutEventInput[]
18479
+ deleteMany?: TagScalarWhereInput | TagScalarWhereInput[]
18480
+ }
18481
+
18482
+ export type EventTicketUpdateManyWithoutEventNestedInput = {
18483
+ create?: XOR<EventTicketCreateWithoutEventInput, EventTicketUncheckedCreateWithoutEventInput> | EventTicketCreateWithoutEventInput[] | EventTicketUncheckedCreateWithoutEventInput[]
18484
+ connectOrCreate?: EventTicketCreateOrConnectWithoutEventInput | EventTicketCreateOrConnectWithoutEventInput[]
18485
+ upsert?: EventTicketUpsertWithWhereUniqueWithoutEventInput | EventTicketUpsertWithWhereUniqueWithoutEventInput[]
18486
+ createMany?: EventTicketCreateManyEventInputEnvelope
18487
+ set?: EventTicketWhereUniqueInput | EventTicketWhereUniqueInput[]
18488
+ disconnect?: EventTicketWhereUniqueInput | EventTicketWhereUniqueInput[]
18489
+ delete?: EventTicketWhereUniqueInput | EventTicketWhereUniqueInput[]
18490
+ connect?: EventTicketWhereUniqueInput | EventTicketWhereUniqueInput[]
18491
+ update?: EventTicketUpdateWithWhereUniqueWithoutEventInput | EventTicketUpdateWithWhereUniqueWithoutEventInput[]
18492
+ updateMany?: EventTicketUpdateManyWithWhereWithoutEventInput | EventTicketUpdateManyWithWhereWithoutEventInput[]
18493
+ deleteMany?: EventTicketScalarWhereInput | EventTicketScalarWhereInput[]
18494
+ }
18495
+
16845
18496
  export type EventUncheckedUpdateManyWithoutSupraEventNestedInput = {
16846
18497
  create?: XOR<EventCreateWithoutSupraEventInput, EventUncheckedCreateWithoutSupraEventInput> | EventCreateWithoutSupraEventInput[] | EventUncheckedCreateWithoutSupraEventInput[]
16847
18498
  connectOrCreate?: EventCreateOrConnectWithoutSupraEventInput | EventCreateOrConnectWithoutSupraEventInput[]
@@ -16856,6 +18507,33 @@ export namespace Prisma {
16856
18507
  deleteMany?: EventScalarWhereInput | EventScalarWhereInput[]
16857
18508
  }
16858
18509
 
18510
+ export type TagUncheckedUpdateManyWithoutEventNestedInput = {
18511
+ create?: XOR<TagCreateWithoutEventInput, TagUncheckedCreateWithoutEventInput> | TagCreateWithoutEventInput[] | TagUncheckedCreateWithoutEventInput[]
18512
+ connectOrCreate?: TagCreateOrConnectWithoutEventInput | TagCreateOrConnectWithoutEventInput[]
18513
+ upsert?: TagUpsertWithWhereUniqueWithoutEventInput | TagUpsertWithWhereUniqueWithoutEventInput[]
18514
+ set?: TagWhereUniqueInput | TagWhereUniqueInput[]
18515
+ disconnect?: TagWhereUniqueInput | TagWhereUniqueInput[]
18516
+ delete?: TagWhereUniqueInput | TagWhereUniqueInput[]
18517
+ connect?: TagWhereUniqueInput | TagWhereUniqueInput[]
18518
+ update?: TagUpdateWithWhereUniqueWithoutEventInput | TagUpdateWithWhereUniqueWithoutEventInput[]
18519
+ updateMany?: TagUpdateManyWithWhereWithoutEventInput | TagUpdateManyWithWhereWithoutEventInput[]
18520
+ deleteMany?: TagScalarWhereInput | TagScalarWhereInput[]
18521
+ }
18522
+
18523
+ export type EventTicketUncheckedUpdateManyWithoutEventNestedInput = {
18524
+ create?: XOR<EventTicketCreateWithoutEventInput, EventTicketUncheckedCreateWithoutEventInput> | EventTicketCreateWithoutEventInput[] | EventTicketUncheckedCreateWithoutEventInput[]
18525
+ connectOrCreate?: EventTicketCreateOrConnectWithoutEventInput | EventTicketCreateOrConnectWithoutEventInput[]
18526
+ upsert?: EventTicketUpsertWithWhereUniqueWithoutEventInput | EventTicketUpsertWithWhereUniqueWithoutEventInput[]
18527
+ createMany?: EventTicketCreateManyEventInputEnvelope
18528
+ set?: EventTicketWhereUniqueInput | EventTicketWhereUniqueInput[]
18529
+ disconnect?: EventTicketWhereUniqueInput | EventTicketWhereUniqueInput[]
18530
+ delete?: EventTicketWhereUniqueInput | EventTicketWhereUniqueInput[]
18531
+ connect?: EventTicketWhereUniqueInput | EventTicketWhereUniqueInput[]
18532
+ update?: EventTicketUpdateWithWhereUniqueWithoutEventInput | EventTicketUpdateWithWhereUniqueWithoutEventInput[]
18533
+ updateMany?: EventTicketUpdateManyWithWhereWithoutEventInput | EventTicketUpdateManyWithWhereWithoutEventInput[]
18534
+ deleteMany?: EventTicketScalarWhereInput | EventTicketScalarWhereInput[]
18535
+ }
18536
+
16859
18537
  export type EventCreateNestedManyWithoutFolderInput = {
16860
18538
  create?: XOR<EventCreateWithoutFolderInput, EventUncheckedCreateWithoutFolderInput> | EventCreateWithoutFolderInput[] | EventUncheckedCreateWithoutFolderInput[]
16861
18539
  connectOrCreate?: EventCreateOrConnectWithoutFolderInput | EventCreateOrConnectWithoutFolderInput[]
@@ -16924,6 +18602,32 @@ export namespace Prisma {
16924
18602
  set?: $Enums.TemplateCategory
16925
18603
  }
16926
18604
 
18605
+ export type EventCreateNestedOneWithoutEventTicketsInput = {
18606
+ create?: XOR<EventCreateWithoutEventTicketsInput, EventUncheckedCreateWithoutEventTicketsInput>
18607
+ connectOrCreate?: EventCreateOrConnectWithoutEventTicketsInput
18608
+ connect?: EventWhereUniqueInput
18609
+ }
18610
+
18611
+ export type EnumTicketTypeFieldUpdateOperationsInput = {
18612
+ set?: $Enums.TicketType
18613
+ }
18614
+
18615
+ export type NullableFloatFieldUpdateOperationsInput = {
18616
+ set?: number | null
18617
+ increment?: number
18618
+ decrement?: number
18619
+ multiply?: number
18620
+ divide?: number
18621
+ }
18622
+
18623
+ export type EventUpdateOneRequiredWithoutEventTicketsNestedInput = {
18624
+ create?: XOR<EventCreateWithoutEventTicketsInput, EventUncheckedCreateWithoutEventTicketsInput>
18625
+ connectOrCreate?: EventCreateOrConnectWithoutEventTicketsInput
18626
+ upsert?: EventUpsertWithoutEventTicketsInput
18627
+ connect?: EventWhereUniqueInput
18628
+ update?: XOR<XOR<EventUpdateToOneWithWhereWithoutEventTicketsInput, EventUpdateWithoutEventTicketsInput>, EventUncheckedUpdateWithoutEventTicketsInput>
18629
+ }
18630
+
16927
18631
  export type NestedStringFilter<$PrismaModel = never> = {
16928
18632
  equals?: string | StringFieldRefInput<$PrismaModel>
16929
18633
  in?: string[] | ListStringFieldRefInput<$PrismaModel>
@@ -17221,6 +18925,50 @@ export namespace Prisma {
17221
18925
  _max?: NestedEnumTemplateCategoryFilter<$PrismaModel>
17222
18926
  }
17223
18927
 
18928
+ export type NestedEnumTicketTypeFilter<$PrismaModel = never> = {
18929
+ equals?: $Enums.TicketType | EnumTicketTypeFieldRefInput<$PrismaModel>
18930
+ in?: $Enums.TicketType[] | ListEnumTicketTypeFieldRefInput<$PrismaModel>
18931
+ notIn?: $Enums.TicketType[] | ListEnumTicketTypeFieldRefInput<$PrismaModel>
18932
+ not?: NestedEnumTicketTypeFilter<$PrismaModel> | $Enums.TicketType
18933
+ }
18934
+
18935
+ export type NestedFloatNullableFilter<$PrismaModel = never> = {
18936
+ equals?: number | FloatFieldRefInput<$PrismaModel> | null
18937
+ in?: number[] | ListFloatFieldRefInput<$PrismaModel> | null
18938
+ notIn?: number[] | ListFloatFieldRefInput<$PrismaModel> | null
18939
+ lt?: number | FloatFieldRefInput<$PrismaModel>
18940
+ lte?: number | FloatFieldRefInput<$PrismaModel>
18941
+ gt?: number | FloatFieldRefInput<$PrismaModel>
18942
+ gte?: number | FloatFieldRefInput<$PrismaModel>
18943
+ not?: NestedFloatNullableFilter<$PrismaModel> | number | null
18944
+ }
18945
+
18946
+ export type NestedEnumTicketTypeWithAggregatesFilter<$PrismaModel = never> = {
18947
+ equals?: $Enums.TicketType | EnumTicketTypeFieldRefInput<$PrismaModel>
18948
+ in?: $Enums.TicketType[] | ListEnumTicketTypeFieldRefInput<$PrismaModel>
18949
+ notIn?: $Enums.TicketType[] | ListEnumTicketTypeFieldRefInput<$PrismaModel>
18950
+ not?: NestedEnumTicketTypeWithAggregatesFilter<$PrismaModel> | $Enums.TicketType
18951
+ _count?: NestedIntFilter<$PrismaModel>
18952
+ _min?: NestedEnumTicketTypeFilter<$PrismaModel>
18953
+ _max?: NestedEnumTicketTypeFilter<$PrismaModel>
18954
+ }
18955
+
18956
+ export type NestedFloatNullableWithAggregatesFilter<$PrismaModel = never> = {
18957
+ equals?: number | FloatFieldRefInput<$PrismaModel> | null
18958
+ in?: number[] | ListFloatFieldRefInput<$PrismaModel> | null
18959
+ notIn?: number[] | ListFloatFieldRefInput<$PrismaModel> | null
18960
+ lt?: number | FloatFieldRefInput<$PrismaModel>
18961
+ lte?: number | FloatFieldRefInput<$PrismaModel>
18962
+ gt?: number | FloatFieldRefInput<$PrismaModel>
18963
+ gte?: number | FloatFieldRefInput<$PrismaModel>
18964
+ not?: NestedFloatNullableWithAggregatesFilter<$PrismaModel> | number | null
18965
+ _count?: NestedIntNullableFilter<$PrismaModel>
18966
+ _avg?: NestedFloatNullableFilter<$PrismaModel>
18967
+ _sum?: NestedFloatNullableFilter<$PrismaModel>
18968
+ _min?: NestedFloatNullableFilter<$PrismaModel>
18969
+ _max?: NestedFloatNullableFilter<$PrismaModel>
18970
+ }
18971
+
17224
18972
  export type CommentCreateWithoutAccountInput = {
17225
18973
  id?: string
17226
18974
  content: string
@@ -17300,6 +19048,7 @@ export namespace Prisma {
17300
19048
  confirmedEvent?: EventCreateNestedOneWithoutTagConfirmedInput
17301
19049
  profiles?: ProfileCreateNestedManyWithoutTagsInput
17302
19050
  accountsGlobalFilter?: AccountCreateNestedManyWithoutGlobalFilterInput
19051
+ Event?: EventCreateNestedManyWithoutTagsInput
17303
19052
  }
17304
19053
 
17305
19054
  export type TagUncheckedCreateWithoutAccountsInput = {
@@ -17313,6 +19062,7 @@ export namespace Prisma {
17313
19062
  confirmedEvent?: EventUncheckedCreateNestedOneWithoutTagConfirmedInput
17314
19063
  profiles?: ProfileUncheckedCreateNestedManyWithoutTagsInput
17315
19064
  accountsGlobalFilter?: AccountUncheckedCreateNestedManyWithoutGlobalFilterInput
19065
+ Event?: EventUncheckedCreateNestedManyWithoutTagsInput
17316
19066
  }
17317
19067
 
17318
19068
  export type TagCreateOrConnectWithoutAccountsInput = {
@@ -17331,6 +19081,7 @@ export namespace Prisma {
17331
19081
  confirmedEvent?: EventCreateNestedOneWithoutTagConfirmedInput
17332
19082
  accounts?: AccountCreateNestedManyWithoutTagsInput
17333
19083
  profiles?: ProfileCreateNestedManyWithoutTagsInput
19084
+ Event?: EventCreateNestedManyWithoutTagsInput
17334
19085
  }
17335
19086
 
17336
19087
  export type TagUncheckedCreateWithoutAccountsGlobalFilterInput = {
@@ -17344,6 +19095,7 @@ export namespace Prisma {
17344
19095
  confirmedEvent?: EventUncheckedCreateNestedOneWithoutTagConfirmedInput
17345
19096
  accounts?: AccountUncheckedCreateNestedManyWithoutTagsInput
17346
19097
  profiles?: ProfileUncheckedCreateNestedManyWithoutTagsInput
19098
+ Event?: EventUncheckedCreateNestedManyWithoutTagsInput
17347
19099
  }
17348
19100
 
17349
19101
  export type TagCreateOrConnectWithoutAccountsGlobalFilterInput = {
@@ -17516,6 +19268,7 @@ export namespace Prisma {
17516
19268
  confirmedEvent?: EventCreateNestedOneWithoutTagConfirmedInput
17517
19269
  accounts?: AccountCreateNestedManyWithoutTagsInput
17518
19270
  accountsGlobalFilter?: AccountCreateNestedManyWithoutGlobalFilterInput
19271
+ Event?: EventCreateNestedManyWithoutTagsInput
17519
19272
  }
17520
19273
 
17521
19274
  export type TagUncheckedCreateWithoutProfilesInput = {
@@ -17529,6 +19282,7 @@ export namespace Prisma {
17529
19282
  confirmedEvent?: EventUncheckedCreateNestedOneWithoutTagConfirmedInput
17530
19283
  accounts?: AccountUncheckedCreateNestedManyWithoutTagsInput
17531
19284
  accountsGlobalFilter?: AccountUncheckedCreateNestedManyWithoutGlobalFilterInput
19285
+ Event?: EventUncheckedCreateNestedManyWithoutTagsInput
17532
19286
  }
17533
19287
 
17534
19288
  export type TagCreateOrConnectWithoutProfilesInput = {
@@ -18181,26 +19935,36 @@ export namespace Prisma {
18181
19935
  id?: string
18182
19936
  name: string
18183
19937
  date: Date | string
19938
+ startingDate: Date | string
19939
+ endingDate: Date | string
18184
19940
  location: string
19941
+ active?: boolean
18185
19942
  created_at?: Date | string
18186
19943
  updated_at?: Date | string
18187
19944
  folder?: EventFolderCreateNestedOneWithoutEventsInput
18188
19945
  tagConfirmed: TagCreateNestedOneWithoutConfirmedEventInput
18189
19946
  supraEvent?: EventCreateNestedOneWithoutSubEventsInput
18190
19947
  subEvents?: EventCreateNestedManyWithoutSupraEventInput
19948
+ tags?: TagCreateNestedManyWithoutEventInput
19949
+ eventTickets?: EventTicketCreateNestedManyWithoutEventInput
18191
19950
  }
18192
19951
 
18193
19952
  export type EventUncheckedCreateWithoutTagAssistedInput = {
18194
19953
  id?: string
18195
19954
  name: string
18196
19955
  date: Date | string
19956
+ startingDate: Date | string
19957
+ endingDate: Date | string
18197
19958
  location: string
18198
19959
  folderId?: string | null
18199
19960
  tagConfirmedId: string
18200
19961
  supraEventId?: string | null
19962
+ active?: boolean
18201
19963
  created_at?: Date | string
18202
19964
  updated_at?: Date | string
18203
19965
  subEvents?: EventUncheckedCreateNestedManyWithoutSupraEventInput
19966
+ tags?: TagUncheckedCreateNestedManyWithoutEventInput
19967
+ eventTickets?: EventTicketUncheckedCreateNestedManyWithoutEventInput
18204
19968
  }
18205
19969
 
18206
19970
  export type EventCreateOrConnectWithoutTagAssistedInput = {
@@ -18212,26 +19976,36 @@ export namespace Prisma {
18212
19976
  id?: string
18213
19977
  name: string
18214
19978
  date: Date | string
19979
+ startingDate: Date | string
19980
+ endingDate: Date | string
18215
19981
  location: string
19982
+ active?: boolean
18216
19983
  created_at?: Date | string
18217
19984
  updated_at?: Date | string
18218
19985
  folder?: EventFolderCreateNestedOneWithoutEventsInput
18219
19986
  tagAssisted: TagCreateNestedOneWithoutAssistedEventInput
18220
19987
  supraEvent?: EventCreateNestedOneWithoutSubEventsInput
18221
19988
  subEvents?: EventCreateNestedManyWithoutSupraEventInput
19989
+ tags?: TagCreateNestedManyWithoutEventInput
19990
+ eventTickets?: EventTicketCreateNestedManyWithoutEventInput
18222
19991
  }
18223
19992
 
18224
19993
  export type EventUncheckedCreateWithoutTagConfirmedInput = {
18225
19994
  id?: string
18226
19995
  name: string
18227
19996
  date: Date | string
19997
+ startingDate: Date | string
19998
+ endingDate: Date | string
18228
19999
  location: string
18229
20000
  folderId?: string | null
18230
20001
  tagAssistedId: string
18231
20002
  supraEventId?: string | null
20003
+ active?: boolean
18232
20004
  created_at?: Date | string
18233
20005
  updated_at?: Date | string
18234
20006
  subEvents?: EventUncheckedCreateNestedManyWithoutSupraEventInput
20007
+ tags?: TagUncheckedCreateNestedManyWithoutEventInput
20008
+ eventTickets?: EventTicketUncheckedCreateNestedManyWithoutEventInput
18235
20009
  }
18236
20010
 
18237
20011
  export type EventCreateOrConnectWithoutTagConfirmedInput = {
@@ -18358,6 +20132,47 @@ export namespace Prisma {
18358
20132
  create: XOR<AccountCreateWithoutGlobalFilterInput, AccountUncheckedCreateWithoutGlobalFilterInput>
18359
20133
  }
18360
20134
 
20135
+ export type EventCreateWithoutTagsInput = {
20136
+ id?: string
20137
+ name: string
20138
+ date: Date | string
20139
+ startingDate: Date | string
20140
+ endingDate: Date | string
20141
+ location: string
20142
+ active?: boolean
20143
+ created_at?: Date | string
20144
+ updated_at?: Date | string
20145
+ folder?: EventFolderCreateNestedOneWithoutEventsInput
20146
+ tagAssisted: TagCreateNestedOneWithoutAssistedEventInput
20147
+ tagConfirmed: TagCreateNestedOneWithoutConfirmedEventInput
20148
+ supraEvent?: EventCreateNestedOneWithoutSubEventsInput
20149
+ subEvents?: EventCreateNestedManyWithoutSupraEventInput
20150
+ eventTickets?: EventTicketCreateNestedManyWithoutEventInput
20151
+ }
20152
+
20153
+ export type EventUncheckedCreateWithoutTagsInput = {
20154
+ id?: string
20155
+ name: string
20156
+ date: Date | string
20157
+ startingDate: Date | string
20158
+ endingDate: Date | string
20159
+ location: string
20160
+ folderId?: string | null
20161
+ tagAssistedId: string
20162
+ tagConfirmedId: string
20163
+ supraEventId?: string | null
20164
+ active?: boolean
20165
+ created_at?: Date | string
20166
+ updated_at?: Date | string
20167
+ subEvents?: EventUncheckedCreateNestedManyWithoutSupraEventInput
20168
+ eventTickets?: EventTicketUncheckedCreateNestedManyWithoutEventInput
20169
+ }
20170
+
20171
+ export type EventCreateOrConnectWithoutTagsInput = {
20172
+ where: EventWhereUniqueInput
20173
+ create: XOR<EventCreateWithoutTagsInput, EventUncheckedCreateWithoutTagsInput>
20174
+ }
20175
+
18361
20176
  export type TagGroupUpsertWithoutTagsInput = {
18362
20177
  update: XOR<TagGroupUpdateWithoutTagsInput, TagGroupUncheckedUpdateWithoutTagsInput>
18363
20178
  create: XOR<TagGroupCreateWithoutTagsInput, TagGroupUncheckedCreateWithoutTagsInput>
@@ -18402,26 +20217,36 @@ export namespace Prisma {
18402
20217
  id?: StringFieldUpdateOperationsInput | string
18403
20218
  name?: StringFieldUpdateOperationsInput | string
18404
20219
  date?: DateTimeFieldUpdateOperationsInput | Date | string
20220
+ startingDate?: DateTimeFieldUpdateOperationsInput | Date | string
20221
+ endingDate?: DateTimeFieldUpdateOperationsInput | Date | string
18405
20222
  location?: StringFieldUpdateOperationsInput | string
20223
+ active?: BoolFieldUpdateOperationsInput | boolean
18406
20224
  created_at?: DateTimeFieldUpdateOperationsInput | Date | string
18407
20225
  updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
18408
20226
  folder?: EventFolderUpdateOneWithoutEventsNestedInput
18409
20227
  tagConfirmed?: TagUpdateOneRequiredWithoutConfirmedEventNestedInput
18410
20228
  supraEvent?: EventUpdateOneWithoutSubEventsNestedInput
18411
20229
  subEvents?: EventUpdateManyWithoutSupraEventNestedInput
20230
+ tags?: TagUpdateManyWithoutEventNestedInput
20231
+ eventTickets?: EventTicketUpdateManyWithoutEventNestedInput
18412
20232
  }
18413
20233
 
18414
20234
  export type EventUncheckedUpdateWithoutTagAssistedInput = {
18415
20235
  id?: StringFieldUpdateOperationsInput | string
18416
20236
  name?: StringFieldUpdateOperationsInput | string
18417
20237
  date?: DateTimeFieldUpdateOperationsInput | Date | string
20238
+ startingDate?: DateTimeFieldUpdateOperationsInput | Date | string
20239
+ endingDate?: DateTimeFieldUpdateOperationsInput | Date | string
18418
20240
  location?: StringFieldUpdateOperationsInput | string
18419
20241
  folderId?: NullableStringFieldUpdateOperationsInput | string | null
18420
20242
  tagConfirmedId?: StringFieldUpdateOperationsInput | string
18421
20243
  supraEventId?: NullableStringFieldUpdateOperationsInput | string | null
20244
+ active?: BoolFieldUpdateOperationsInput | boolean
18422
20245
  created_at?: DateTimeFieldUpdateOperationsInput | Date | string
18423
20246
  updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
18424
20247
  subEvents?: EventUncheckedUpdateManyWithoutSupraEventNestedInput
20248
+ tags?: TagUncheckedUpdateManyWithoutEventNestedInput
20249
+ eventTickets?: EventTicketUncheckedUpdateManyWithoutEventNestedInput
18425
20250
  }
18426
20251
 
18427
20252
  export type EventUpsertWithoutTagConfirmedInput = {
@@ -18439,26 +20264,36 @@ export namespace Prisma {
18439
20264
  id?: StringFieldUpdateOperationsInput | string
18440
20265
  name?: StringFieldUpdateOperationsInput | string
18441
20266
  date?: DateTimeFieldUpdateOperationsInput | Date | string
20267
+ startingDate?: DateTimeFieldUpdateOperationsInput | Date | string
20268
+ endingDate?: DateTimeFieldUpdateOperationsInput | Date | string
18442
20269
  location?: StringFieldUpdateOperationsInput | string
20270
+ active?: BoolFieldUpdateOperationsInput | boolean
18443
20271
  created_at?: DateTimeFieldUpdateOperationsInput | Date | string
18444
20272
  updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
18445
20273
  folder?: EventFolderUpdateOneWithoutEventsNestedInput
18446
20274
  tagAssisted?: TagUpdateOneRequiredWithoutAssistedEventNestedInput
18447
20275
  supraEvent?: EventUpdateOneWithoutSubEventsNestedInput
18448
20276
  subEvents?: EventUpdateManyWithoutSupraEventNestedInput
20277
+ tags?: TagUpdateManyWithoutEventNestedInput
20278
+ eventTickets?: EventTicketUpdateManyWithoutEventNestedInput
18449
20279
  }
18450
20280
 
18451
20281
  export type EventUncheckedUpdateWithoutTagConfirmedInput = {
18452
20282
  id?: StringFieldUpdateOperationsInput | string
18453
20283
  name?: StringFieldUpdateOperationsInput | string
18454
20284
  date?: DateTimeFieldUpdateOperationsInput | Date | string
20285
+ startingDate?: DateTimeFieldUpdateOperationsInput | Date | string
20286
+ endingDate?: DateTimeFieldUpdateOperationsInput | Date | string
18455
20287
  location?: StringFieldUpdateOperationsInput | string
18456
20288
  folderId?: NullableStringFieldUpdateOperationsInput | string | null
18457
20289
  tagAssistedId?: StringFieldUpdateOperationsInput | string
18458
20290
  supraEventId?: NullableStringFieldUpdateOperationsInput | string | null
20291
+ active?: BoolFieldUpdateOperationsInput | boolean
18459
20292
  created_at?: DateTimeFieldUpdateOperationsInput | Date | string
18460
20293
  updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
18461
20294
  subEvents?: EventUncheckedUpdateManyWithoutSupraEventNestedInput
20295
+ tags?: TagUncheckedUpdateManyWithoutEventNestedInput
20296
+ eventTickets?: EventTicketUncheckedUpdateManyWithoutEventNestedInput
18462
20297
  }
18463
20298
 
18464
20299
  export type AccountUpsertWithWhereUniqueWithoutTagsInput = {
@@ -18523,6 +20358,41 @@ export namespace Prisma {
18523
20358
  data: XOR<AccountUpdateManyMutationInput, AccountUncheckedUpdateManyWithoutGlobalFilterInput>
18524
20359
  }
18525
20360
 
20361
+ export type EventUpsertWithWhereUniqueWithoutTagsInput = {
20362
+ where: EventWhereUniqueInput
20363
+ update: XOR<EventUpdateWithoutTagsInput, EventUncheckedUpdateWithoutTagsInput>
20364
+ create: XOR<EventCreateWithoutTagsInput, EventUncheckedCreateWithoutTagsInput>
20365
+ }
20366
+
20367
+ export type EventUpdateWithWhereUniqueWithoutTagsInput = {
20368
+ where: EventWhereUniqueInput
20369
+ data: XOR<EventUpdateWithoutTagsInput, EventUncheckedUpdateWithoutTagsInput>
20370
+ }
20371
+
20372
+ export type EventUpdateManyWithWhereWithoutTagsInput = {
20373
+ where: EventScalarWhereInput
20374
+ data: XOR<EventUpdateManyMutationInput, EventUncheckedUpdateManyWithoutTagsInput>
20375
+ }
20376
+
20377
+ export type EventScalarWhereInput = {
20378
+ AND?: EventScalarWhereInput | EventScalarWhereInput[]
20379
+ OR?: EventScalarWhereInput[]
20380
+ NOT?: EventScalarWhereInput | EventScalarWhereInput[]
20381
+ id?: StringFilter<"Event"> | string
20382
+ name?: StringFilter<"Event"> | string
20383
+ date?: DateTimeFilter<"Event"> | Date | string
20384
+ startingDate?: DateTimeFilter<"Event"> | Date | string
20385
+ endingDate?: DateTimeFilter<"Event"> | Date | string
20386
+ location?: StringFilter<"Event"> | string
20387
+ folderId?: StringNullableFilter<"Event"> | string | null
20388
+ tagAssistedId?: StringFilter<"Event"> | string
20389
+ tagConfirmedId?: StringFilter<"Event"> | string
20390
+ supraEventId?: StringNullableFilter<"Event"> | string | null
20391
+ active?: BoolFilter<"Event"> | boolean
20392
+ created_at?: DateTimeFilter<"Event"> | Date | string
20393
+ updated_at?: DateTimeFilter<"Event"> | Date | string
20394
+ }
20395
+
18526
20396
  export type TagCreateWithoutGroupInput = {
18527
20397
  id?: string
18528
20398
  name: string
@@ -18534,6 +20404,7 @@ export namespace Prisma {
18534
20404
  accounts?: AccountCreateNestedManyWithoutTagsInput
18535
20405
  profiles?: ProfileCreateNestedManyWithoutTagsInput
18536
20406
  accountsGlobalFilter?: AccountCreateNestedManyWithoutGlobalFilterInput
20407
+ Event?: EventCreateNestedManyWithoutTagsInput
18537
20408
  }
18538
20409
 
18539
20410
  export type TagUncheckedCreateWithoutGroupInput = {
@@ -18547,6 +20418,7 @@ export namespace Prisma {
18547
20418
  accounts?: AccountUncheckedCreateNestedManyWithoutTagsInput
18548
20419
  profiles?: ProfileUncheckedCreateNestedManyWithoutTagsInput
18549
20420
  accountsGlobalFilter?: AccountUncheckedCreateNestedManyWithoutGlobalFilterInput
20421
+ Event?: EventUncheckedCreateNestedManyWithoutTagsInput
18550
20422
  }
18551
20423
 
18552
20424
  export type TagCreateOrConnectWithoutGroupInput = {
@@ -18607,6 +20479,7 @@ export namespace Prisma {
18607
20479
  accounts?: AccountCreateNestedManyWithoutTagsInput
18608
20480
  profiles?: ProfileCreateNestedManyWithoutTagsInput
18609
20481
  accountsGlobalFilter?: AccountCreateNestedManyWithoutGlobalFilterInput
20482
+ Event?: EventCreateNestedManyWithoutTagsInput
18610
20483
  }
18611
20484
 
18612
20485
  export type TagUncheckedCreateWithoutAssistedEventInput = {
@@ -18620,6 +20493,7 @@ export namespace Prisma {
18620
20493
  accounts?: AccountUncheckedCreateNestedManyWithoutTagsInput
18621
20494
  profiles?: ProfileUncheckedCreateNestedManyWithoutTagsInput
18622
20495
  accountsGlobalFilter?: AccountUncheckedCreateNestedManyWithoutGlobalFilterInput
20496
+ Event?: EventUncheckedCreateNestedManyWithoutTagsInput
18623
20497
  }
18624
20498
 
18625
20499
  export type TagCreateOrConnectWithoutAssistedEventInput = {
@@ -18638,6 +20512,7 @@ export namespace Prisma {
18638
20512
  accounts?: AccountCreateNestedManyWithoutTagsInput
18639
20513
  profiles?: ProfileCreateNestedManyWithoutTagsInput
18640
20514
  accountsGlobalFilter?: AccountCreateNestedManyWithoutGlobalFilterInput
20515
+ Event?: EventCreateNestedManyWithoutTagsInput
18641
20516
  }
18642
20517
 
18643
20518
  export type TagUncheckedCreateWithoutConfirmedEventInput = {
@@ -18651,6 +20526,7 @@ export namespace Prisma {
18651
20526
  accounts?: AccountUncheckedCreateNestedManyWithoutTagsInput
18652
20527
  profiles?: ProfileUncheckedCreateNestedManyWithoutTagsInput
18653
20528
  accountsGlobalFilter?: AccountUncheckedCreateNestedManyWithoutGlobalFilterInput
20529
+ Event?: EventUncheckedCreateNestedManyWithoutTagsInput
18654
20530
  }
18655
20531
 
18656
20532
  export type TagCreateOrConnectWithoutConfirmedEventInput = {
@@ -18662,26 +20538,36 @@ export namespace Prisma {
18662
20538
  id?: string
18663
20539
  name: string
18664
20540
  date: Date | string
20541
+ startingDate: Date | string
20542
+ endingDate: Date | string
18665
20543
  location: string
20544
+ active?: boolean
18666
20545
  created_at?: Date | string
18667
20546
  updated_at?: Date | string
18668
20547
  folder?: EventFolderCreateNestedOneWithoutEventsInput
18669
20548
  tagAssisted: TagCreateNestedOneWithoutAssistedEventInput
18670
20549
  tagConfirmed: TagCreateNestedOneWithoutConfirmedEventInput
18671
20550
  supraEvent?: EventCreateNestedOneWithoutSubEventsInput
20551
+ tags?: TagCreateNestedManyWithoutEventInput
20552
+ eventTickets?: EventTicketCreateNestedManyWithoutEventInput
18672
20553
  }
18673
20554
 
18674
20555
  export type EventUncheckedCreateWithoutSubEventsInput = {
18675
20556
  id?: string
18676
20557
  name: string
18677
20558
  date: Date | string
20559
+ startingDate: Date | string
20560
+ endingDate: Date | string
18678
20561
  location: string
18679
20562
  folderId?: string | null
18680
20563
  tagAssistedId: string
18681
20564
  tagConfirmedId: string
18682
20565
  supraEventId?: string | null
20566
+ active?: boolean
18683
20567
  created_at?: Date | string
18684
20568
  updated_at?: Date | string
20569
+ tags?: TagUncheckedCreateNestedManyWithoutEventInput
20570
+ eventTickets?: EventTicketUncheckedCreateNestedManyWithoutEventInput
18685
20571
  }
18686
20572
 
18687
20573
  export type EventCreateOrConnectWithoutSubEventsInput = {
@@ -18693,26 +20579,36 @@ export namespace Prisma {
18693
20579
  id?: string
18694
20580
  name: string
18695
20581
  date: Date | string
20582
+ startingDate: Date | string
20583
+ endingDate: Date | string
18696
20584
  location: string
20585
+ active?: boolean
18697
20586
  created_at?: Date | string
18698
20587
  updated_at?: Date | string
18699
20588
  folder?: EventFolderCreateNestedOneWithoutEventsInput
18700
20589
  tagAssisted: TagCreateNestedOneWithoutAssistedEventInput
18701
20590
  tagConfirmed: TagCreateNestedOneWithoutConfirmedEventInput
18702
20591
  subEvents?: EventCreateNestedManyWithoutSupraEventInput
20592
+ tags?: TagCreateNestedManyWithoutEventInput
20593
+ eventTickets?: EventTicketCreateNestedManyWithoutEventInput
18703
20594
  }
18704
20595
 
18705
20596
  export type EventUncheckedCreateWithoutSupraEventInput = {
18706
20597
  id?: string
18707
20598
  name: string
18708
20599
  date: Date | string
20600
+ startingDate: Date | string
20601
+ endingDate: Date | string
18709
20602
  location: string
18710
20603
  folderId?: string | null
18711
20604
  tagAssistedId: string
18712
20605
  tagConfirmedId: string
20606
+ active?: boolean
18713
20607
  created_at?: Date | string
18714
20608
  updated_at?: Date | string
18715
20609
  subEvents?: EventUncheckedCreateNestedManyWithoutSupraEventInput
20610
+ tags?: TagUncheckedCreateNestedManyWithoutEventInput
20611
+ eventTickets?: EventTicketUncheckedCreateNestedManyWithoutEventInput
18716
20612
  }
18717
20613
 
18718
20614
  export type EventCreateOrConnectWithoutSupraEventInput = {
@@ -18725,6 +20621,67 @@ export namespace Prisma {
18725
20621
  skipDuplicates?: boolean
18726
20622
  }
18727
20623
 
20624
+ export type TagCreateWithoutEventInput = {
20625
+ id?: string
20626
+ name: string
20627
+ type?: $Enums.TagType
20628
+ created_at?: Date | string
20629
+ updated_at?: Date | string
20630
+ group: TagGroupCreateNestedOneWithoutTagsInput
20631
+ assistedEvent?: EventCreateNestedOneWithoutTagAssistedInput
20632
+ confirmedEvent?: EventCreateNestedOneWithoutTagConfirmedInput
20633
+ accounts?: AccountCreateNestedManyWithoutTagsInput
20634
+ profiles?: ProfileCreateNestedManyWithoutTagsInput
20635
+ accountsGlobalFilter?: AccountCreateNestedManyWithoutGlobalFilterInput
20636
+ }
20637
+
20638
+ export type TagUncheckedCreateWithoutEventInput = {
20639
+ id?: string
20640
+ name: string
20641
+ type?: $Enums.TagType
20642
+ groupId: string
20643
+ created_at?: Date | string
20644
+ updated_at?: Date | string
20645
+ assistedEvent?: EventUncheckedCreateNestedOneWithoutTagAssistedInput
20646
+ confirmedEvent?: EventUncheckedCreateNestedOneWithoutTagConfirmedInput
20647
+ accounts?: AccountUncheckedCreateNestedManyWithoutTagsInput
20648
+ profiles?: ProfileUncheckedCreateNestedManyWithoutTagsInput
20649
+ accountsGlobalFilter?: AccountUncheckedCreateNestedManyWithoutGlobalFilterInput
20650
+ }
20651
+
20652
+ export type TagCreateOrConnectWithoutEventInput = {
20653
+ where: TagWhereUniqueInput
20654
+ create: XOR<TagCreateWithoutEventInput, TagUncheckedCreateWithoutEventInput>
20655
+ }
20656
+
20657
+ export type EventTicketCreateWithoutEventInput = {
20658
+ id?: string
20659
+ amount: number
20660
+ type: $Enums.TicketType
20661
+ price?: number | null
20662
+ created_at?: Date | string
20663
+ updated_at?: Date | string
20664
+ }
20665
+
20666
+ export type EventTicketUncheckedCreateWithoutEventInput = {
20667
+ id?: string
20668
+ amount: number
20669
+ type: $Enums.TicketType
20670
+ price?: number | null
20671
+ created_at?: Date | string
20672
+ updated_at?: Date | string
20673
+ }
20674
+
20675
+ export type EventTicketCreateOrConnectWithoutEventInput = {
20676
+ where: EventTicketWhereUniqueInput
20677
+ create: XOR<EventTicketCreateWithoutEventInput, EventTicketUncheckedCreateWithoutEventInput>
20678
+ }
20679
+
20680
+ export type EventTicketCreateManyEventInputEnvelope = {
20681
+ data: EventTicketCreateManyEventInput | EventTicketCreateManyEventInput[]
20682
+ skipDuplicates?: boolean
20683
+ }
20684
+
18728
20685
  export type EventFolderUpsertWithoutEventsInput = {
18729
20686
  update: XOR<EventFolderUpdateWithoutEventsInput, EventFolderUncheckedUpdateWithoutEventsInput>
18730
20687
  create: XOR<EventFolderCreateWithoutEventsInput, EventFolderUncheckedCreateWithoutEventsInput>
@@ -18774,6 +20731,7 @@ export namespace Prisma {
18774
20731
  accounts?: AccountUpdateManyWithoutTagsNestedInput
18775
20732
  profiles?: ProfileUpdateManyWithoutTagsNestedInput
18776
20733
  accountsGlobalFilter?: AccountUpdateManyWithoutGlobalFilterNestedInput
20734
+ Event?: EventUpdateManyWithoutTagsNestedInput
18777
20735
  }
18778
20736
 
18779
20737
  export type TagUncheckedUpdateWithoutAssistedEventInput = {
@@ -18787,6 +20745,7 @@ export namespace Prisma {
18787
20745
  accounts?: AccountUncheckedUpdateManyWithoutTagsNestedInput
18788
20746
  profiles?: ProfileUncheckedUpdateManyWithoutTagsNestedInput
18789
20747
  accountsGlobalFilter?: AccountUncheckedUpdateManyWithoutGlobalFilterNestedInput
20748
+ Event?: EventUncheckedUpdateManyWithoutTagsNestedInput
18790
20749
  }
18791
20750
 
18792
20751
  export type TagUpsertWithoutConfirmedEventInput = {
@@ -18811,6 +20770,7 @@ export namespace Prisma {
18811
20770
  accounts?: AccountUpdateManyWithoutTagsNestedInput
18812
20771
  profiles?: ProfileUpdateManyWithoutTagsNestedInput
18813
20772
  accountsGlobalFilter?: AccountUpdateManyWithoutGlobalFilterNestedInput
20773
+ Event?: EventUpdateManyWithoutTagsNestedInput
18814
20774
  }
18815
20775
 
18816
20776
  export type TagUncheckedUpdateWithoutConfirmedEventInput = {
@@ -18824,6 +20784,7 @@ export namespace Prisma {
18824
20784
  accounts?: AccountUncheckedUpdateManyWithoutTagsNestedInput
18825
20785
  profiles?: ProfileUncheckedUpdateManyWithoutTagsNestedInput
18826
20786
  accountsGlobalFilter?: AccountUncheckedUpdateManyWithoutGlobalFilterNestedInput
20787
+ Event?: EventUncheckedUpdateManyWithoutTagsNestedInput
18827
20788
  }
18828
20789
 
18829
20790
  export type EventUpsertWithoutSubEventsInput = {
@@ -18841,26 +20802,36 @@ export namespace Prisma {
18841
20802
  id?: StringFieldUpdateOperationsInput | string
18842
20803
  name?: StringFieldUpdateOperationsInput | string
18843
20804
  date?: DateTimeFieldUpdateOperationsInput | Date | string
20805
+ startingDate?: DateTimeFieldUpdateOperationsInput | Date | string
20806
+ endingDate?: DateTimeFieldUpdateOperationsInput | Date | string
18844
20807
  location?: StringFieldUpdateOperationsInput | string
20808
+ active?: BoolFieldUpdateOperationsInput | boolean
18845
20809
  created_at?: DateTimeFieldUpdateOperationsInput | Date | string
18846
20810
  updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
18847
20811
  folder?: EventFolderUpdateOneWithoutEventsNestedInput
18848
20812
  tagAssisted?: TagUpdateOneRequiredWithoutAssistedEventNestedInput
18849
20813
  tagConfirmed?: TagUpdateOneRequiredWithoutConfirmedEventNestedInput
18850
20814
  supraEvent?: EventUpdateOneWithoutSubEventsNestedInput
20815
+ tags?: TagUpdateManyWithoutEventNestedInput
20816
+ eventTickets?: EventTicketUpdateManyWithoutEventNestedInput
18851
20817
  }
18852
20818
 
18853
20819
  export type EventUncheckedUpdateWithoutSubEventsInput = {
18854
20820
  id?: StringFieldUpdateOperationsInput | string
18855
20821
  name?: StringFieldUpdateOperationsInput | string
18856
20822
  date?: DateTimeFieldUpdateOperationsInput | Date | string
20823
+ startingDate?: DateTimeFieldUpdateOperationsInput | Date | string
20824
+ endingDate?: DateTimeFieldUpdateOperationsInput | Date | string
18857
20825
  location?: StringFieldUpdateOperationsInput | string
18858
20826
  folderId?: NullableStringFieldUpdateOperationsInput | string | null
18859
20827
  tagAssistedId?: StringFieldUpdateOperationsInput | string
18860
20828
  tagConfirmedId?: StringFieldUpdateOperationsInput | string
18861
20829
  supraEventId?: NullableStringFieldUpdateOperationsInput | string | null
20830
+ active?: BoolFieldUpdateOperationsInput | boolean
18862
20831
  created_at?: DateTimeFieldUpdateOperationsInput | Date | string
18863
20832
  updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
20833
+ tags?: TagUncheckedUpdateManyWithoutEventNestedInput
20834
+ eventTickets?: EventTicketUncheckedUpdateManyWithoutEventNestedInput
18864
20835
  }
18865
20836
 
18866
20837
  export type EventUpsertWithWhereUniqueWithoutSupraEventInput = {
@@ -18879,46 +20850,85 @@ export namespace Prisma {
18879
20850
  data: XOR<EventUpdateManyMutationInput, EventUncheckedUpdateManyWithoutSupraEventInput>
18880
20851
  }
18881
20852
 
18882
- export type EventScalarWhereInput = {
18883
- AND?: EventScalarWhereInput | EventScalarWhereInput[]
18884
- OR?: EventScalarWhereInput[]
18885
- NOT?: EventScalarWhereInput | EventScalarWhereInput[]
18886
- id?: StringFilter<"Event"> | string
18887
- name?: StringFilter<"Event"> | string
18888
- date?: DateTimeFilter<"Event"> | Date | string
18889
- location?: StringFilter<"Event"> | string
18890
- folderId?: StringNullableFilter<"Event"> | string | null
18891
- tagAssistedId?: StringFilter<"Event"> | string
18892
- tagConfirmedId?: StringFilter<"Event"> | string
18893
- supraEventId?: StringNullableFilter<"Event"> | string | null
18894
- created_at?: DateTimeFilter<"Event"> | Date | string
18895
- updated_at?: DateTimeFilter<"Event"> | Date | string
20853
+ export type TagUpsertWithWhereUniqueWithoutEventInput = {
20854
+ where: TagWhereUniqueInput
20855
+ update: XOR<TagUpdateWithoutEventInput, TagUncheckedUpdateWithoutEventInput>
20856
+ create: XOR<TagCreateWithoutEventInput, TagUncheckedCreateWithoutEventInput>
20857
+ }
20858
+
20859
+ export type TagUpdateWithWhereUniqueWithoutEventInput = {
20860
+ where: TagWhereUniqueInput
20861
+ data: XOR<TagUpdateWithoutEventInput, TagUncheckedUpdateWithoutEventInput>
20862
+ }
20863
+
20864
+ export type TagUpdateManyWithWhereWithoutEventInput = {
20865
+ where: TagScalarWhereInput
20866
+ data: XOR<TagUpdateManyMutationInput, TagUncheckedUpdateManyWithoutEventInput>
20867
+ }
20868
+
20869
+ export type EventTicketUpsertWithWhereUniqueWithoutEventInput = {
20870
+ where: EventTicketWhereUniqueInput
20871
+ update: XOR<EventTicketUpdateWithoutEventInput, EventTicketUncheckedUpdateWithoutEventInput>
20872
+ create: XOR<EventTicketCreateWithoutEventInput, EventTicketUncheckedCreateWithoutEventInput>
20873
+ }
20874
+
20875
+ export type EventTicketUpdateWithWhereUniqueWithoutEventInput = {
20876
+ where: EventTicketWhereUniqueInput
20877
+ data: XOR<EventTicketUpdateWithoutEventInput, EventTicketUncheckedUpdateWithoutEventInput>
20878
+ }
20879
+
20880
+ export type EventTicketUpdateManyWithWhereWithoutEventInput = {
20881
+ where: EventTicketScalarWhereInput
20882
+ data: XOR<EventTicketUpdateManyMutationInput, EventTicketUncheckedUpdateManyWithoutEventInput>
20883
+ }
20884
+
20885
+ export type EventTicketScalarWhereInput = {
20886
+ AND?: EventTicketScalarWhereInput | EventTicketScalarWhereInput[]
20887
+ OR?: EventTicketScalarWhereInput[]
20888
+ NOT?: EventTicketScalarWhereInput | EventTicketScalarWhereInput[]
20889
+ id?: StringFilter<"EventTicket"> | string
20890
+ eventId?: StringFilter<"EventTicket"> | string
20891
+ amount?: IntFilter<"EventTicket"> | number
20892
+ type?: EnumTicketTypeFilter<"EventTicket"> | $Enums.TicketType
20893
+ price?: FloatNullableFilter<"EventTicket"> | number | null
20894
+ created_at?: DateTimeFilter<"EventTicket"> | Date | string
20895
+ updated_at?: DateTimeFilter<"EventTicket"> | Date | string
18896
20896
  }
18897
20897
 
18898
20898
  export type EventCreateWithoutFolderInput = {
18899
20899
  id?: string
18900
20900
  name: string
18901
20901
  date: Date | string
20902
+ startingDate: Date | string
20903
+ endingDate: Date | string
18902
20904
  location: string
20905
+ active?: boolean
18903
20906
  created_at?: Date | string
18904
20907
  updated_at?: Date | string
18905
20908
  tagAssisted: TagCreateNestedOneWithoutAssistedEventInput
18906
20909
  tagConfirmed: TagCreateNestedOneWithoutConfirmedEventInput
18907
20910
  supraEvent?: EventCreateNestedOneWithoutSubEventsInput
18908
20911
  subEvents?: EventCreateNestedManyWithoutSupraEventInput
20912
+ tags?: TagCreateNestedManyWithoutEventInput
20913
+ eventTickets?: EventTicketCreateNestedManyWithoutEventInput
18909
20914
  }
18910
20915
 
18911
20916
  export type EventUncheckedCreateWithoutFolderInput = {
18912
20917
  id?: string
18913
20918
  name: string
18914
20919
  date: Date | string
20920
+ startingDate: Date | string
20921
+ endingDate: Date | string
18915
20922
  location: string
18916
20923
  tagAssistedId: string
18917
20924
  tagConfirmedId: string
18918
20925
  supraEventId?: string | null
20926
+ active?: boolean
18919
20927
  created_at?: Date | string
18920
20928
  updated_at?: Date | string
18921
20929
  subEvents?: EventUncheckedCreateNestedManyWithoutSupraEventInput
20930
+ tags?: TagUncheckedCreateNestedManyWithoutEventInput
20931
+ eventTickets?: EventTicketUncheckedCreateNestedManyWithoutEventInput
18922
20932
  }
18923
20933
 
18924
20934
  export type EventCreateOrConnectWithoutFolderInput = {
@@ -19059,6 +21069,94 @@ export namespace Prisma {
19059
21069
  tags?: TagUncheckedUpdateManyWithoutProfilesNestedInput
19060
21070
  }
19061
21071
 
21072
+ export type EventCreateWithoutEventTicketsInput = {
21073
+ id?: string
21074
+ name: string
21075
+ date: Date | string
21076
+ startingDate: Date | string
21077
+ endingDate: Date | string
21078
+ location: string
21079
+ active?: boolean
21080
+ created_at?: Date | string
21081
+ updated_at?: Date | string
21082
+ folder?: EventFolderCreateNestedOneWithoutEventsInput
21083
+ tagAssisted: TagCreateNestedOneWithoutAssistedEventInput
21084
+ tagConfirmed: TagCreateNestedOneWithoutConfirmedEventInput
21085
+ supraEvent?: EventCreateNestedOneWithoutSubEventsInput
21086
+ subEvents?: EventCreateNestedManyWithoutSupraEventInput
21087
+ tags?: TagCreateNestedManyWithoutEventInput
21088
+ }
21089
+
21090
+ export type EventUncheckedCreateWithoutEventTicketsInput = {
21091
+ id?: string
21092
+ name: string
21093
+ date: Date | string
21094
+ startingDate: Date | string
21095
+ endingDate: Date | string
21096
+ location: string
21097
+ folderId?: string | null
21098
+ tagAssistedId: string
21099
+ tagConfirmedId: string
21100
+ supraEventId?: string | null
21101
+ active?: boolean
21102
+ created_at?: Date | string
21103
+ updated_at?: Date | string
21104
+ subEvents?: EventUncheckedCreateNestedManyWithoutSupraEventInput
21105
+ tags?: TagUncheckedCreateNestedManyWithoutEventInput
21106
+ }
21107
+
21108
+ export type EventCreateOrConnectWithoutEventTicketsInput = {
21109
+ where: EventWhereUniqueInput
21110
+ create: XOR<EventCreateWithoutEventTicketsInput, EventUncheckedCreateWithoutEventTicketsInput>
21111
+ }
21112
+
21113
+ export type EventUpsertWithoutEventTicketsInput = {
21114
+ update: XOR<EventUpdateWithoutEventTicketsInput, EventUncheckedUpdateWithoutEventTicketsInput>
21115
+ create: XOR<EventCreateWithoutEventTicketsInput, EventUncheckedCreateWithoutEventTicketsInput>
21116
+ where?: EventWhereInput
21117
+ }
21118
+
21119
+ export type EventUpdateToOneWithWhereWithoutEventTicketsInput = {
21120
+ where?: EventWhereInput
21121
+ data: XOR<EventUpdateWithoutEventTicketsInput, EventUncheckedUpdateWithoutEventTicketsInput>
21122
+ }
21123
+
21124
+ export type EventUpdateWithoutEventTicketsInput = {
21125
+ id?: StringFieldUpdateOperationsInput | string
21126
+ name?: StringFieldUpdateOperationsInput | string
21127
+ date?: DateTimeFieldUpdateOperationsInput | Date | string
21128
+ startingDate?: DateTimeFieldUpdateOperationsInput | Date | string
21129
+ endingDate?: DateTimeFieldUpdateOperationsInput | Date | string
21130
+ location?: StringFieldUpdateOperationsInput | string
21131
+ active?: BoolFieldUpdateOperationsInput | boolean
21132
+ created_at?: DateTimeFieldUpdateOperationsInput | Date | string
21133
+ updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
21134
+ folder?: EventFolderUpdateOneWithoutEventsNestedInput
21135
+ tagAssisted?: TagUpdateOneRequiredWithoutAssistedEventNestedInput
21136
+ tagConfirmed?: TagUpdateOneRequiredWithoutConfirmedEventNestedInput
21137
+ supraEvent?: EventUpdateOneWithoutSubEventsNestedInput
21138
+ subEvents?: EventUpdateManyWithoutSupraEventNestedInput
21139
+ tags?: TagUpdateManyWithoutEventNestedInput
21140
+ }
21141
+
21142
+ export type EventUncheckedUpdateWithoutEventTicketsInput = {
21143
+ id?: StringFieldUpdateOperationsInput | string
21144
+ name?: StringFieldUpdateOperationsInput | string
21145
+ date?: DateTimeFieldUpdateOperationsInput | Date | string
21146
+ startingDate?: DateTimeFieldUpdateOperationsInput | Date | string
21147
+ endingDate?: DateTimeFieldUpdateOperationsInput | Date | string
21148
+ location?: StringFieldUpdateOperationsInput | string
21149
+ folderId?: NullableStringFieldUpdateOperationsInput | string | null
21150
+ tagAssistedId?: StringFieldUpdateOperationsInput | string
21151
+ tagConfirmedId?: StringFieldUpdateOperationsInput | string
21152
+ supraEventId?: NullableStringFieldUpdateOperationsInput | string | null
21153
+ active?: BoolFieldUpdateOperationsInput | boolean
21154
+ created_at?: DateTimeFieldUpdateOperationsInput | Date | string
21155
+ updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
21156
+ subEvents?: EventUncheckedUpdateManyWithoutSupraEventNestedInput
21157
+ tags?: TagUncheckedUpdateManyWithoutEventNestedInput
21158
+ }
21159
+
19062
21160
  export type CommentCreateManyAccountInput = {
19063
21161
  id?: string
19064
21162
  content: string
@@ -19166,6 +21264,7 @@ export namespace Prisma {
19166
21264
  confirmedEvent?: EventUpdateOneWithoutTagConfirmedNestedInput
19167
21265
  profiles?: ProfileUpdateManyWithoutTagsNestedInput
19168
21266
  accountsGlobalFilter?: AccountUpdateManyWithoutGlobalFilterNestedInput
21267
+ Event?: EventUpdateManyWithoutTagsNestedInput
19169
21268
  }
19170
21269
 
19171
21270
  export type TagUncheckedUpdateWithoutAccountsInput = {
@@ -19179,6 +21278,7 @@ export namespace Prisma {
19179
21278
  confirmedEvent?: EventUncheckedUpdateOneWithoutTagConfirmedNestedInput
19180
21279
  profiles?: ProfileUncheckedUpdateManyWithoutTagsNestedInput
19181
21280
  accountsGlobalFilter?: AccountUncheckedUpdateManyWithoutGlobalFilterNestedInput
21281
+ Event?: EventUncheckedUpdateManyWithoutTagsNestedInput
19182
21282
  }
19183
21283
 
19184
21284
  export type TagUncheckedUpdateManyWithoutAccountsInput = {
@@ -19201,6 +21301,7 @@ export namespace Prisma {
19201
21301
  confirmedEvent?: EventUpdateOneWithoutTagConfirmedNestedInput
19202
21302
  accounts?: AccountUpdateManyWithoutTagsNestedInput
19203
21303
  profiles?: ProfileUpdateManyWithoutTagsNestedInput
21304
+ Event?: EventUpdateManyWithoutTagsNestedInput
19204
21305
  }
19205
21306
 
19206
21307
  export type TagUncheckedUpdateWithoutAccountsGlobalFilterInput = {
@@ -19214,6 +21315,7 @@ export namespace Prisma {
19214
21315
  confirmedEvent?: EventUncheckedUpdateOneWithoutTagConfirmedNestedInput
19215
21316
  accounts?: AccountUncheckedUpdateManyWithoutTagsNestedInput
19216
21317
  profiles?: ProfileUncheckedUpdateManyWithoutTagsNestedInput
21318
+ Event?: EventUncheckedUpdateManyWithoutTagsNestedInput
19217
21319
  }
19218
21320
 
19219
21321
  export type TagUncheckedUpdateManyWithoutAccountsGlobalFilterInput = {
@@ -19320,6 +21422,7 @@ export namespace Prisma {
19320
21422
  confirmedEvent?: EventUpdateOneWithoutTagConfirmedNestedInput
19321
21423
  accounts?: AccountUpdateManyWithoutTagsNestedInput
19322
21424
  accountsGlobalFilter?: AccountUpdateManyWithoutGlobalFilterNestedInput
21425
+ Event?: EventUpdateManyWithoutTagsNestedInput
19323
21426
  }
19324
21427
 
19325
21428
  export type TagUncheckedUpdateWithoutProfilesInput = {
@@ -19333,6 +21436,7 @@ export namespace Prisma {
19333
21436
  confirmedEvent?: EventUncheckedUpdateOneWithoutTagConfirmedNestedInput
19334
21437
  accounts?: AccountUncheckedUpdateManyWithoutTagsNestedInput
19335
21438
  accountsGlobalFilter?: AccountUncheckedUpdateManyWithoutGlobalFilterNestedInput
21439
+ Event?: EventUncheckedUpdateManyWithoutTagsNestedInput
19336
21440
  }
19337
21441
 
19338
21442
  export type TagUncheckedUpdateManyWithoutProfilesInput = {
@@ -19672,6 +21776,58 @@ export namespace Prisma {
19672
21776
  updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
19673
21777
  }
19674
21778
 
21779
+ export type EventUpdateWithoutTagsInput = {
21780
+ id?: StringFieldUpdateOperationsInput | string
21781
+ name?: StringFieldUpdateOperationsInput | string
21782
+ date?: DateTimeFieldUpdateOperationsInput | Date | string
21783
+ startingDate?: DateTimeFieldUpdateOperationsInput | Date | string
21784
+ endingDate?: DateTimeFieldUpdateOperationsInput | Date | string
21785
+ location?: StringFieldUpdateOperationsInput | string
21786
+ active?: BoolFieldUpdateOperationsInput | boolean
21787
+ created_at?: DateTimeFieldUpdateOperationsInput | Date | string
21788
+ updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
21789
+ folder?: EventFolderUpdateOneWithoutEventsNestedInput
21790
+ tagAssisted?: TagUpdateOneRequiredWithoutAssistedEventNestedInput
21791
+ tagConfirmed?: TagUpdateOneRequiredWithoutConfirmedEventNestedInput
21792
+ supraEvent?: EventUpdateOneWithoutSubEventsNestedInput
21793
+ subEvents?: EventUpdateManyWithoutSupraEventNestedInput
21794
+ eventTickets?: EventTicketUpdateManyWithoutEventNestedInput
21795
+ }
21796
+
21797
+ export type EventUncheckedUpdateWithoutTagsInput = {
21798
+ id?: StringFieldUpdateOperationsInput | string
21799
+ name?: StringFieldUpdateOperationsInput | string
21800
+ date?: DateTimeFieldUpdateOperationsInput | Date | string
21801
+ startingDate?: DateTimeFieldUpdateOperationsInput | Date | string
21802
+ endingDate?: DateTimeFieldUpdateOperationsInput | Date | string
21803
+ location?: StringFieldUpdateOperationsInput | string
21804
+ folderId?: NullableStringFieldUpdateOperationsInput | string | null
21805
+ tagAssistedId?: StringFieldUpdateOperationsInput | string
21806
+ tagConfirmedId?: StringFieldUpdateOperationsInput | string
21807
+ supraEventId?: NullableStringFieldUpdateOperationsInput | string | null
21808
+ active?: BoolFieldUpdateOperationsInput | boolean
21809
+ created_at?: DateTimeFieldUpdateOperationsInput | Date | string
21810
+ updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
21811
+ subEvents?: EventUncheckedUpdateManyWithoutSupraEventNestedInput
21812
+ eventTickets?: EventTicketUncheckedUpdateManyWithoutEventNestedInput
21813
+ }
21814
+
21815
+ export type EventUncheckedUpdateManyWithoutTagsInput = {
21816
+ id?: StringFieldUpdateOperationsInput | string
21817
+ name?: StringFieldUpdateOperationsInput | string
21818
+ date?: DateTimeFieldUpdateOperationsInput | Date | string
21819
+ startingDate?: DateTimeFieldUpdateOperationsInput | Date | string
21820
+ endingDate?: DateTimeFieldUpdateOperationsInput | Date | string
21821
+ location?: StringFieldUpdateOperationsInput | string
21822
+ folderId?: NullableStringFieldUpdateOperationsInput | string | null
21823
+ tagAssistedId?: StringFieldUpdateOperationsInput | string
21824
+ tagConfirmedId?: StringFieldUpdateOperationsInput | string
21825
+ supraEventId?: NullableStringFieldUpdateOperationsInput | string | null
21826
+ active?: BoolFieldUpdateOperationsInput | boolean
21827
+ created_at?: DateTimeFieldUpdateOperationsInput | Date | string
21828
+ updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
21829
+ }
21830
+
19675
21831
  export type TagCreateManyGroupInput = {
19676
21832
  id?: string
19677
21833
  name: string
@@ -19691,6 +21847,7 @@ export namespace Prisma {
19691
21847
  accounts?: AccountUpdateManyWithoutTagsNestedInput
19692
21848
  profiles?: ProfileUpdateManyWithoutTagsNestedInput
19693
21849
  accountsGlobalFilter?: AccountUpdateManyWithoutGlobalFilterNestedInput
21850
+ Event?: EventUpdateManyWithoutTagsNestedInput
19694
21851
  }
19695
21852
 
19696
21853
  export type TagUncheckedUpdateWithoutGroupInput = {
@@ -19704,6 +21861,7 @@ export namespace Prisma {
19704
21861
  accounts?: AccountUncheckedUpdateManyWithoutTagsNestedInput
19705
21862
  profiles?: ProfileUncheckedUpdateManyWithoutTagsNestedInput
19706
21863
  accountsGlobalFilter?: AccountUncheckedUpdateManyWithoutGlobalFilterNestedInput
21864
+ Event?: EventUncheckedUpdateManyWithoutTagsNestedInput
19707
21865
  }
19708
21866
 
19709
21867
  export type TagUncheckedUpdateManyWithoutGroupInput = {
@@ -19718,10 +21876,22 @@ export namespace Prisma {
19718
21876
  id?: string
19719
21877
  name: string
19720
21878
  date: Date | string
21879
+ startingDate: Date | string
21880
+ endingDate: Date | string
19721
21881
  location: string
19722
21882
  folderId?: string | null
19723
21883
  tagAssistedId: string
19724
21884
  tagConfirmedId: string
21885
+ active?: boolean
21886
+ created_at?: Date | string
21887
+ updated_at?: Date | string
21888
+ }
21889
+
21890
+ export type EventTicketCreateManyEventInput = {
21891
+ id?: string
21892
+ amount: number
21893
+ type: $Enums.TicketType
21894
+ price?: number | null
19725
21895
  created_at?: Date | string
19726
21896
  updated_at?: Date | string
19727
21897
  }
@@ -19730,36 +21900,113 @@ export namespace Prisma {
19730
21900
  id?: StringFieldUpdateOperationsInput | string
19731
21901
  name?: StringFieldUpdateOperationsInput | string
19732
21902
  date?: DateTimeFieldUpdateOperationsInput | Date | string
21903
+ startingDate?: DateTimeFieldUpdateOperationsInput | Date | string
21904
+ endingDate?: DateTimeFieldUpdateOperationsInput | Date | string
19733
21905
  location?: StringFieldUpdateOperationsInput | string
21906
+ active?: BoolFieldUpdateOperationsInput | boolean
19734
21907
  created_at?: DateTimeFieldUpdateOperationsInput | Date | string
19735
21908
  updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
19736
21909
  folder?: EventFolderUpdateOneWithoutEventsNestedInput
19737
21910
  tagAssisted?: TagUpdateOneRequiredWithoutAssistedEventNestedInput
19738
21911
  tagConfirmed?: TagUpdateOneRequiredWithoutConfirmedEventNestedInput
19739
21912
  subEvents?: EventUpdateManyWithoutSupraEventNestedInput
21913
+ tags?: TagUpdateManyWithoutEventNestedInput
21914
+ eventTickets?: EventTicketUpdateManyWithoutEventNestedInput
19740
21915
  }
19741
21916
 
19742
21917
  export type EventUncheckedUpdateWithoutSupraEventInput = {
19743
21918
  id?: StringFieldUpdateOperationsInput | string
19744
21919
  name?: StringFieldUpdateOperationsInput | string
19745
21920
  date?: DateTimeFieldUpdateOperationsInput | Date | string
21921
+ startingDate?: DateTimeFieldUpdateOperationsInput | Date | string
21922
+ endingDate?: DateTimeFieldUpdateOperationsInput | Date | string
19746
21923
  location?: StringFieldUpdateOperationsInput | string
19747
21924
  folderId?: NullableStringFieldUpdateOperationsInput | string | null
19748
21925
  tagAssistedId?: StringFieldUpdateOperationsInput | string
19749
21926
  tagConfirmedId?: StringFieldUpdateOperationsInput | string
21927
+ active?: BoolFieldUpdateOperationsInput | boolean
19750
21928
  created_at?: DateTimeFieldUpdateOperationsInput | Date | string
19751
21929
  updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
19752
21930
  subEvents?: EventUncheckedUpdateManyWithoutSupraEventNestedInput
21931
+ tags?: TagUncheckedUpdateManyWithoutEventNestedInput
21932
+ eventTickets?: EventTicketUncheckedUpdateManyWithoutEventNestedInput
19753
21933
  }
19754
21934
 
19755
21935
  export type EventUncheckedUpdateManyWithoutSupraEventInput = {
19756
21936
  id?: StringFieldUpdateOperationsInput | string
19757
21937
  name?: StringFieldUpdateOperationsInput | string
19758
21938
  date?: DateTimeFieldUpdateOperationsInput | Date | string
21939
+ startingDate?: DateTimeFieldUpdateOperationsInput | Date | string
21940
+ endingDate?: DateTimeFieldUpdateOperationsInput | Date | string
19759
21941
  location?: StringFieldUpdateOperationsInput | string
19760
21942
  folderId?: NullableStringFieldUpdateOperationsInput | string | null
19761
21943
  tagAssistedId?: StringFieldUpdateOperationsInput | string
19762
21944
  tagConfirmedId?: StringFieldUpdateOperationsInput | string
21945
+ active?: BoolFieldUpdateOperationsInput | boolean
21946
+ created_at?: DateTimeFieldUpdateOperationsInput | Date | string
21947
+ updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
21948
+ }
21949
+
21950
+ export type TagUpdateWithoutEventInput = {
21951
+ id?: StringFieldUpdateOperationsInput | string
21952
+ name?: StringFieldUpdateOperationsInput | string
21953
+ type?: EnumTagTypeFieldUpdateOperationsInput | $Enums.TagType
21954
+ created_at?: DateTimeFieldUpdateOperationsInput | Date | string
21955
+ updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
21956
+ group?: TagGroupUpdateOneRequiredWithoutTagsNestedInput
21957
+ assistedEvent?: EventUpdateOneWithoutTagAssistedNestedInput
21958
+ confirmedEvent?: EventUpdateOneWithoutTagConfirmedNestedInput
21959
+ accounts?: AccountUpdateManyWithoutTagsNestedInput
21960
+ profiles?: ProfileUpdateManyWithoutTagsNestedInput
21961
+ accountsGlobalFilter?: AccountUpdateManyWithoutGlobalFilterNestedInput
21962
+ }
21963
+
21964
+ export type TagUncheckedUpdateWithoutEventInput = {
21965
+ id?: StringFieldUpdateOperationsInput | string
21966
+ name?: StringFieldUpdateOperationsInput | string
21967
+ type?: EnumTagTypeFieldUpdateOperationsInput | $Enums.TagType
21968
+ groupId?: StringFieldUpdateOperationsInput | string
21969
+ created_at?: DateTimeFieldUpdateOperationsInput | Date | string
21970
+ updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
21971
+ assistedEvent?: EventUncheckedUpdateOneWithoutTagAssistedNestedInput
21972
+ confirmedEvent?: EventUncheckedUpdateOneWithoutTagConfirmedNestedInput
21973
+ accounts?: AccountUncheckedUpdateManyWithoutTagsNestedInput
21974
+ profiles?: ProfileUncheckedUpdateManyWithoutTagsNestedInput
21975
+ accountsGlobalFilter?: AccountUncheckedUpdateManyWithoutGlobalFilterNestedInput
21976
+ }
21977
+
21978
+ export type TagUncheckedUpdateManyWithoutEventInput = {
21979
+ id?: StringFieldUpdateOperationsInput | string
21980
+ name?: StringFieldUpdateOperationsInput | string
21981
+ type?: EnumTagTypeFieldUpdateOperationsInput | $Enums.TagType
21982
+ groupId?: StringFieldUpdateOperationsInput | string
21983
+ created_at?: DateTimeFieldUpdateOperationsInput | Date | string
21984
+ updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
21985
+ }
21986
+
21987
+ export type EventTicketUpdateWithoutEventInput = {
21988
+ id?: StringFieldUpdateOperationsInput | string
21989
+ amount?: IntFieldUpdateOperationsInput | number
21990
+ type?: EnumTicketTypeFieldUpdateOperationsInput | $Enums.TicketType
21991
+ price?: NullableFloatFieldUpdateOperationsInput | number | null
21992
+ created_at?: DateTimeFieldUpdateOperationsInput | Date | string
21993
+ updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
21994
+ }
21995
+
21996
+ export type EventTicketUncheckedUpdateWithoutEventInput = {
21997
+ id?: StringFieldUpdateOperationsInput | string
21998
+ amount?: IntFieldUpdateOperationsInput | number
21999
+ type?: EnumTicketTypeFieldUpdateOperationsInput | $Enums.TicketType
22000
+ price?: NullableFloatFieldUpdateOperationsInput | number | null
22001
+ created_at?: DateTimeFieldUpdateOperationsInput | Date | string
22002
+ updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
22003
+ }
22004
+
22005
+ export type EventTicketUncheckedUpdateManyWithoutEventInput = {
22006
+ id?: StringFieldUpdateOperationsInput | string
22007
+ amount?: IntFieldUpdateOperationsInput | number
22008
+ type?: EnumTicketTypeFieldUpdateOperationsInput | $Enums.TicketType
22009
+ price?: NullableFloatFieldUpdateOperationsInput | number | null
19763
22010
  created_at?: DateTimeFieldUpdateOperationsInput | Date | string
19764
22011
  updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
19765
22012
  }
@@ -19768,10 +22015,13 @@ export namespace Prisma {
19768
22015
  id?: string
19769
22016
  name: string
19770
22017
  date: Date | string
22018
+ startingDate: Date | string
22019
+ endingDate: Date | string
19771
22020
  location: string
19772
22021
  tagAssistedId: string
19773
22022
  tagConfirmedId: string
19774
22023
  supraEventId?: string | null
22024
+ active?: boolean
19775
22025
  created_at?: Date | string
19776
22026
  updated_at?: Date | string
19777
22027
  }
@@ -19780,36 +22030,49 @@ export namespace Prisma {
19780
22030
  id?: StringFieldUpdateOperationsInput | string
19781
22031
  name?: StringFieldUpdateOperationsInput | string
19782
22032
  date?: DateTimeFieldUpdateOperationsInput | Date | string
22033
+ startingDate?: DateTimeFieldUpdateOperationsInput | Date | string
22034
+ endingDate?: DateTimeFieldUpdateOperationsInput | Date | string
19783
22035
  location?: StringFieldUpdateOperationsInput | string
22036
+ active?: BoolFieldUpdateOperationsInput | boolean
19784
22037
  created_at?: DateTimeFieldUpdateOperationsInput | Date | string
19785
22038
  updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
19786
22039
  tagAssisted?: TagUpdateOneRequiredWithoutAssistedEventNestedInput
19787
22040
  tagConfirmed?: TagUpdateOneRequiredWithoutConfirmedEventNestedInput
19788
22041
  supraEvent?: EventUpdateOneWithoutSubEventsNestedInput
19789
22042
  subEvents?: EventUpdateManyWithoutSupraEventNestedInput
22043
+ tags?: TagUpdateManyWithoutEventNestedInput
22044
+ eventTickets?: EventTicketUpdateManyWithoutEventNestedInput
19790
22045
  }
19791
22046
 
19792
22047
  export type EventUncheckedUpdateWithoutFolderInput = {
19793
22048
  id?: StringFieldUpdateOperationsInput | string
19794
22049
  name?: StringFieldUpdateOperationsInput | string
19795
22050
  date?: DateTimeFieldUpdateOperationsInput | Date | string
22051
+ startingDate?: DateTimeFieldUpdateOperationsInput | Date | string
22052
+ endingDate?: DateTimeFieldUpdateOperationsInput | Date | string
19796
22053
  location?: StringFieldUpdateOperationsInput | string
19797
22054
  tagAssistedId?: StringFieldUpdateOperationsInput | string
19798
22055
  tagConfirmedId?: StringFieldUpdateOperationsInput | string
19799
22056
  supraEventId?: NullableStringFieldUpdateOperationsInput | string | null
22057
+ active?: BoolFieldUpdateOperationsInput | boolean
19800
22058
  created_at?: DateTimeFieldUpdateOperationsInput | Date | string
19801
22059
  updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
19802
22060
  subEvents?: EventUncheckedUpdateManyWithoutSupraEventNestedInput
22061
+ tags?: TagUncheckedUpdateManyWithoutEventNestedInput
22062
+ eventTickets?: EventTicketUncheckedUpdateManyWithoutEventNestedInput
19803
22063
  }
19804
22064
 
19805
22065
  export type EventUncheckedUpdateManyWithoutFolderInput = {
19806
22066
  id?: StringFieldUpdateOperationsInput | string
19807
22067
  name?: StringFieldUpdateOperationsInput | string
19808
22068
  date?: DateTimeFieldUpdateOperationsInput | Date | string
22069
+ startingDate?: DateTimeFieldUpdateOperationsInput | Date | string
22070
+ endingDate?: DateTimeFieldUpdateOperationsInput | Date | string
19809
22071
  location?: StringFieldUpdateOperationsInput | string
19810
22072
  tagAssistedId?: StringFieldUpdateOperationsInput | string
19811
22073
  tagConfirmedId?: StringFieldUpdateOperationsInput | string
19812
22074
  supraEventId?: NullableStringFieldUpdateOperationsInput | string | null
22075
+ active?: BoolFieldUpdateOperationsInput | boolean
19813
22076
  created_at?: DateTimeFieldUpdateOperationsInput | Date | string
19814
22077
  updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
19815
22078
  }
@@ -19891,6 +22154,10 @@ export namespace Prisma {
19891
22154
  * @deprecated Use EnumsDefaultArgs instead
19892
22155
  */
19893
22156
  export type EnumsArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = EnumsDefaultArgs<ExtArgs>
22157
+ /**
22158
+ * @deprecated Use EventTicketDefaultArgs instead
22159
+ */
22160
+ export type EventTicketArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = EventTicketDefaultArgs<ExtArgs>
19894
22161
 
19895
22162
  /**
19896
22163
  * Batch Payload for updateMany & deleteMany & createMany