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