expo-backend-types 0.31.0-EXPO-311-EB-Modificar-DB-schema.1 → 0.31.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/src/event/dto/create-event.dto.d.ts +2 -186
- package/dist/src/event/dto/create-event.dto.js +0 -12
- package/dist/src/event/dto/delete-event.dto.d.ts +0 -12
- package/dist/src/event/dto/event.dto.d.ts +0 -6
- package/dist/src/event/dto/event.dto.js +0 -8
- package/dist/src/event/dto/get-all-event.dto.d.ts +0 -176
- package/dist/src/event/dto/get-by-id-event.dto.d.ts +0 -64
- package/dist/src/event/dto/update-event.dto.d.ts +2 -46
- package/dist/src/event/dto/update-event.dto.js +0 -4
- package/dist/src/event-folder/dto/get-all-event-folder.dto.d.ts +0 -28
- package/dist/src/event-folder/dto/get-by-id-event-folder.dto.d.ts +0 -20
- package/dist/src/exports.d.ts +1 -0
- package/dist/src/exports.js +1 -0
- package/dist/src/i18n/es.d.ts +0 -9
- package/dist/src/i18n/es.js +0 -9
- package/dist/src/i18n/es.js.map +1 -1
- package/dist/types/prisma-schema/edge.js +4 -23
- package/dist/types/prisma-schema/index-browser.js +1 -20
- package/dist/types/prisma-schema/index.d.ts +76 -2281
- package/dist/types/prisma-schema/index.js +4 -23
- package/dist/types/prisma-schema/package.json +1 -1
- package/dist/types/prisma-schema/schema.prisma +5 -30
- package/dist/types/prisma-schema/wasm.js +1 -20
- package/dist/types/schema.d.ts +4 -53
- package/package.json +1 -1
@@ -68,11 +68,6 @@ export type CannedResponse = $Result.DefaultSelection<Prisma.$CannedResponsePayl
|
|
68
68
|
*
|
69
69
|
*/
|
70
70
|
export type Enums = $Result.DefaultSelection<Prisma.$EnumsPayload>
|
71
|
-
/**
|
72
|
-
* Model EventTicket
|
73
|
-
*
|
74
|
-
*/
|
75
|
-
export type EventTicket = $Result.DefaultSelection<Prisma.$EventTicketPayload>
|
76
71
|
|
77
72
|
/**
|
78
73
|
* Enums
|
@@ -123,15 +118,6 @@ export const TemplateCategory: {
|
|
123
118
|
|
124
119
|
export type TemplateCategory = (typeof TemplateCategory)[keyof typeof TemplateCategory]
|
125
120
|
|
126
|
-
|
127
|
-
export const TicketType: {
|
128
|
-
PARTICIPANT: 'PARTICIPANT',
|
129
|
-
STAFF: 'STAFF',
|
130
|
-
SPECTATOR: 'SPECTATOR'
|
131
|
-
};
|
132
|
-
|
133
|
-
export type TicketType = (typeof TicketType)[keyof typeof TicketType]
|
134
|
-
|
135
121
|
}
|
136
122
|
|
137
123
|
export type Role = $Enums.Role
|
@@ -154,10 +140,6 @@ export type TemplateCategory = $Enums.TemplateCategory
|
|
154
140
|
|
155
141
|
export const TemplateCategory: typeof $Enums.TemplateCategory
|
156
142
|
|
157
|
-
export type TicketType = $Enums.TicketType
|
158
|
-
|
159
|
-
export const TicketType: typeof $Enums.TicketType
|
160
|
-
|
161
143
|
/**
|
162
144
|
* ## Prisma Client ʲˢ
|
163
145
|
*
|
@@ -390,16 +372,6 @@ export class PrismaClient<
|
|
390
372
|
* ```
|
391
373
|
*/
|
392
374
|
get enums(): Prisma.EnumsDelegate<ExtArgs>;
|
393
|
-
|
394
|
-
/**
|
395
|
-
* `prisma.eventTicket`: Exposes CRUD operations for the **EventTicket** model.
|
396
|
-
* Example usage:
|
397
|
-
* ```ts
|
398
|
-
* // Fetch zero or more EventTickets
|
399
|
-
* const eventTickets = await prisma.eventTicket.findMany()
|
400
|
-
* ```
|
401
|
-
*/
|
402
|
-
get eventTicket(): Prisma.EventTicketDelegate<ExtArgs>;
|
403
375
|
}
|
404
376
|
|
405
377
|
export namespace Prisma {
|
@@ -851,8 +823,7 @@ export namespace Prisma {
|
|
851
823
|
EventFolder: 'EventFolder',
|
852
824
|
Message: 'Message',
|
853
825
|
CannedResponse: 'CannedResponse',
|
854
|
-
Enums: 'Enums'
|
855
|
-
EventTicket: 'EventTicket'
|
826
|
+
Enums: 'Enums'
|
856
827
|
};
|
857
828
|
|
858
829
|
export type ModelName = (typeof ModelName)[keyof typeof ModelName]
|
@@ -868,7 +839,7 @@ export namespace Prisma {
|
|
868
839
|
|
869
840
|
export type TypeMap<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs, ClientOptions = {}> = {
|
870
841
|
meta: {
|
871
|
-
modelProps: "account" | "profile" | "location" | "comment" | "tag" | "tagGroup" | "event" | "eventFolder" | "message" | "cannedResponse" | "enums"
|
842
|
+
modelProps: "account" | "profile" | "location" | "comment" | "tag" | "tagGroup" | "event" | "eventFolder" | "message" | "cannedResponse" | "enums"
|
872
843
|
txIsolationLevel: Prisma.TransactionIsolationLevel
|
873
844
|
}
|
874
845
|
model: {
|
@@ -1642,76 +1613,6 @@ export namespace Prisma {
|
|
1642
1613
|
}
|
1643
1614
|
}
|
1644
1615
|
}
|
1645
|
-
EventTicket: {
|
1646
|
-
payload: Prisma.$EventTicketPayload<ExtArgs>
|
1647
|
-
fields: Prisma.EventTicketFieldRefs
|
1648
|
-
operations: {
|
1649
|
-
findUnique: {
|
1650
|
-
args: Prisma.EventTicketFindUniqueArgs<ExtArgs>
|
1651
|
-
result: $Utils.PayloadToResult<Prisma.$EventTicketPayload> | null
|
1652
|
-
}
|
1653
|
-
findUniqueOrThrow: {
|
1654
|
-
args: Prisma.EventTicketFindUniqueOrThrowArgs<ExtArgs>
|
1655
|
-
result: $Utils.PayloadToResult<Prisma.$EventTicketPayload>
|
1656
|
-
}
|
1657
|
-
findFirst: {
|
1658
|
-
args: Prisma.EventTicketFindFirstArgs<ExtArgs>
|
1659
|
-
result: $Utils.PayloadToResult<Prisma.$EventTicketPayload> | null
|
1660
|
-
}
|
1661
|
-
findFirstOrThrow: {
|
1662
|
-
args: Prisma.EventTicketFindFirstOrThrowArgs<ExtArgs>
|
1663
|
-
result: $Utils.PayloadToResult<Prisma.$EventTicketPayload>
|
1664
|
-
}
|
1665
|
-
findMany: {
|
1666
|
-
args: Prisma.EventTicketFindManyArgs<ExtArgs>
|
1667
|
-
result: $Utils.PayloadToResult<Prisma.$EventTicketPayload>[]
|
1668
|
-
}
|
1669
|
-
create: {
|
1670
|
-
args: Prisma.EventTicketCreateArgs<ExtArgs>
|
1671
|
-
result: $Utils.PayloadToResult<Prisma.$EventTicketPayload>
|
1672
|
-
}
|
1673
|
-
createMany: {
|
1674
|
-
args: Prisma.EventTicketCreateManyArgs<ExtArgs>
|
1675
|
-
result: BatchPayload
|
1676
|
-
}
|
1677
|
-
createManyAndReturn: {
|
1678
|
-
args: Prisma.EventTicketCreateManyAndReturnArgs<ExtArgs>
|
1679
|
-
result: $Utils.PayloadToResult<Prisma.$EventTicketPayload>[]
|
1680
|
-
}
|
1681
|
-
delete: {
|
1682
|
-
args: Prisma.EventTicketDeleteArgs<ExtArgs>
|
1683
|
-
result: $Utils.PayloadToResult<Prisma.$EventTicketPayload>
|
1684
|
-
}
|
1685
|
-
update: {
|
1686
|
-
args: Prisma.EventTicketUpdateArgs<ExtArgs>
|
1687
|
-
result: $Utils.PayloadToResult<Prisma.$EventTicketPayload>
|
1688
|
-
}
|
1689
|
-
deleteMany: {
|
1690
|
-
args: Prisma.EventTicketDeleteManyArgs<ExtArgs>
|
1691
|
-
result: BatchPayload
|
1692
|
-
}
|
1693
|
-
updateMany: {
|
1694
|
-
args: Prisma.EventTicketUpdateManyArgs<ExtArgs>
|
1695
|
-
result: BatchPayload
|
1696
|
-
}
|
1697
|
-
upsert: {
|
1698
|
-
args: Prisma.EventTicketUpsertArgs<ExtArgs>
|
1699
|
-
result: $Utils.PayloadToResult<Prisma.$EventTicketPayload>
|
1700
|
-
}
|
1701
|
-
aggregate: {
|
1702
|
-
args: Prisma.EventTicketAggregateArgs<ExtArgs>
|
1703
|
-
result: $Utils.Optional<AggregateEventTicket>
|
1704
|
-
}
|
1705
|
-
groupBy: {
|
1706
|
-
args: Prisma.EventTicketGroupByArgs<ExtArgs>
|
1707
|
-
result: $Utils.Optional<EventTicketGroupByOutputType>[]
|
1708
|
-
}
|
1709
|
-
count: {
|
1710
|
-
args: Prisma.EventTicketCountArgs<ExtArgs>
|
1711
|
-
result: $Utils.Optional<EventTicketCountAggregateOutputType> | number
|
1712
|
-
}
|
1713
|
-
}
|
1714
|
-
}
|
1715
1616
|
}
|
1716
1617
|
} & {
|
1717
1618
|
other: {
|
@@ -2023,14 +1924,12 @@ export namespace Prisma {
|
|
2023
1924
|
accounts: number
|
2024
1925
|
profiles: number
|
2025
1926
|
accountsGlobalFilter: number
|
2026
|
-
Event: number
|
2027
1927
|
}
|
2028
1928
|
|
2029
1929
|
export type TagCountOutputTypeSelect<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
2030
1930
|
accounts?: boolean | TagCountOutputTypeCountAccountsArgs
|
2031
1931
|
profiles?: boolean | TagCountOutputTypeCountProfilesArgs
|
2032
1932
|
accountsGlobalFilter?: boolean | TagCountOutputTypeCountAccountsGlobalFilterArgs
|
2033
|
-
Event?: boolean | TagCountOutputTypeCountEventArgs
|
2034
1933
|
}
|
2035
1934
|
|
2036
1935
|
// Custom InputTypes
|
@@ -2065,13 +1964,6 @@ export namespace Prisma {
|
|
2065
1964
|
where?: AccountWhereInput
|
2066
1965
|
}
|
2067
1966
|
|
2068
|
-
/**
|
2069
|
-
* TagCountOutputType without action
|
2070
|
-
*/
|
2071
|
-
export type TagCountOutputTypeCountEventArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
2072
|
-
where?: EventWhereInput
|
2073
|
-
}
|
2074
|
-
|
2075
1967
|
|
2076
1968
|
/**
|
2077
1969
|
* Count Type TagGroupCountOutputType
|
@@ -2110,14 +2002,10 @@ export namespace Prisma {
|
|
2110
2002
|
|
2111
2003
|
export type EventCountOutputType = {
|
2112
2004
|
subEvents: number
|
2113
|
-
tags: number
|
2114
|
-
eventTickets: number
|
2115
2005
|
}
|
2116
2006
|
|
2117
2007
|
export type EventCountOutputTypeSelect<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
2118
2008
|
subEvents?: boolean | EventCountOutputTypeCountSubEventsArgs
|
2119
|
-
tags?: boolean | EventCountOutputTypeCountTagsArgs
|
2120
|
-
eventTickets?: boolean | EventCountOutputTypeCountEventTicketsArgs
|
2121
2009
|
}
|
2122
2010
|
|
2123
2011
|
// Custom InputTypes
|
@@ -2138,20 +2026,6 @@ export namespace Prisma {
|
|
2138
2026
|
where?: EventWhereInput
|
2139
2027
|
}
|
2140
2028
|
|
2141
|
-
/**
|
2142
|
-
* EventCountOutputType without action
|
2143
|
-
*/
|
2144
|
-
export type EventCountOutputTypeCountTagsArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
2145
|
-
where?: TagWhereInput
|
2146
|
-
}
|
2147
|
-
|
2148
|
-
/**
|
2149
|
-
* EventCountOutputType without action
|
2150
|
-
*/
|
2151
|
-
export type EventCountOutputTypeCountEventTicketsArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
2152
|
-
where?: EventTicketWhereInput
|
2153
|
-
}
|
2154
|
-
|
2155
2029
|
|
2156
2030
|
/**
|
2157
2031
|
* Count Type EventFolderCountOutputType
|
@@ -6725,7 +6599,6 @@ export namespace Prisma {
|
|
6725
6599
|
accounts?: boolean | Tag$accountsArgs<ExtArgs>
|
6726
6600
|
profiles?: boolean | Tag$profilesArgs<ExtArgs>
|
6727
6601
|
accountsGlobalFilter?: boolean | Tag$accountsGlobalFilterArgs<ExtArgs>
|
6728
|
-
Event?: boolean | Tag$EventArgs<ExtArgs>
|
6729
6602
|
_count?: boolean | TagCountOutputTypeDefaultArgs<ExtArgs>
|
6730
6603
|
}, ExtArgs["result"]["tag"]>
|
6731
6604
|
|
@@ -6755,7 +6628,6 @@ export namespace Prisma {
|
|
6755
6628
|
accounts?: boolean | Tag$accountsArgs<ExtArgs>
|
6756
6629
|
profiles?: boolean | Tag$profilesArgs<ExtArgs>
|
6757
6630
|
accountsGlobalFilter?: boolean | Tag$accountsGlobalFilterArgs<ExtArgs>
|
6758
|
-
Event?: boolean | Tag$EventArgs<ExtArgs>
|
6759
6631
|
_count?: boolean | TagCountOutputTypeDefaultArgs<ExtArgs>
|
6760
6632
|
}
|
6761
6633
|
export type TagIncludeCreateManyAndReturn<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
@@ -6771,7 +6643,6 @@ export namespace Prisma {
|
|
6771
6643
|
accounts: Prisma.$AccountPayload<ExtArgs>[]
|
6772
6644
|
profiles: Prisma.$ProfilePayload<ExtArgs>[]
|
6773
6645
|
accountsGlobalFilter: Prisma.$AccountPayload<ExtArgs>[]
|
6774
|
-
Event: Prisma.$EventPayload<ExtArgs>[]
|
6775
6646
|
}
|
6776
6647
|
scalars: $Extensions.GetPayloadResult<{
|
6777
6648
|
id: string
|
@@ -7150,7 +7021,6 @@ export namespace Prisma {
|
|
7150
7021
|
accounts<T extends Tag$accountsArgs<ExtArgs> = {}>(args?: Subset<T, Tag$accountsArgs<ExtArgs>>): Prisma.PrismaPromise<$Result.GetResult<Prisma.$AccountPayload<ExtArgs>, T, "findMany"> | Null>
|
7151
7022
|
profiles<T extends Tag$profilesArgs<ExtArgs> = {}>(args?: Subset<T, Tag$profilesArgs<ExtArgs>>): Prisma.PrismaPromise<$Result.GetResult<Prisma.$ProfilePayload<ExtArgs>, T, "findMany"> | Null>
|
7152
7023
|
accountsGlobalFilter<T extends Tag$accountsGlobalFilterArgs<ExtArgs> = {}>(args?: Subset<T, Tag$accountsGlobalFilterArgs<ExtArgs>>): Prisma.PrismaPromise<$Result.GetResult<Prisma.$AccountPayload<ExtArgs>, T, "findMany"> | Null>
|
7153
|
-
Event<T extends Tag$EventArgs<ExtArgs> = {}>(args?: Subset<T, Tag$EventArgs<ExtArgs>>): Prisma.PrismaPromise<$Result.GetResult<Prisma.$EventPayload<ExtArgs>, T, "findMany"> | Null>
|
7154
7024
|
/**
|
7155
7025
|
* Attaches callbacks for the resolution and/or rejection of the Promise.
|
7156
7026
|
* @param onfulfilled The callback to execute when the Promise is resolved.
|
@@ -7593,26 +7463,6 @@ export namespace Prisma {
|
|
7593
7463
|
distinct?: AccountScalarFieldEnum | AccountScalarFieldEnum[]
|
7594
7464
|
}
|
7595
7465
|
|
7596
|
-
/**
|
7597
|
-
* Tag.Event
|
7598
|
-
*/
|
7599
|
-
export type Tag$EventArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
7600
|
-
/**
|
7601
|
-
* Select specific fields to fetch from the Event
|
7602
|
-
*/
|
7603
|
-
select?: EventSelect<ExtArgs> | null
|
7604
|
-
/**
|
7605
|
-
* Choose, which related nodes to fetch as well
|
7606
|
-
*/
|
7607
|
-
include?: EventInclude<ExtArgs> | null
|
7608
|
-
where?: EventWhereInput
|
7609
|
-
orderBy?: EventOrderByWithRelationInput | EventOrderByWithRelationInput[]
|
7610
|
-
cursor?: EventWhereUniqueInput
|
7611
|
-
take?: number
|
7612
|
-
skip?: number
|
7613
|
-
distinct?: EventScalarFieldEnum | EventScalarFieldEnum[]
|
7614
|
-
}
|
7615
|
-
|
7616
7466
|
/**
|
7617
7467
|
* Tag without action
|
7618
7468
|
*/
|
@@ -8602,8 +8452,6 @@ export namespace Prisma {
|
|
8602
8452
|
id: string | null
|
8603
8453
|
name: string | null
|
8604
8454
|
date: Date | null
|
8605
|
-
starting_date: Date | null
|
8606
|
-
ending_date: Date | null
|
8607
8455
|
location: string | null
|
8608
8456
|
folderId: string | null
|
8609
8457
|
tagAssistedId: string | null
|
@@ -8617,8 +8465,6 @@ export namespace Prisma {
|
|
8617
8465
|
id: string | null
|
8618
8466
|
name: string | null
|
8619
8467
|
date: Date | null
|
8620
|
-
starting_date: Date | null
|
8621
|
-
ending_date: Date | null
|
8622
8468
|
location: string | null
|
8623
8469
|
folderId: string | null
|
8624
8470
|
tagAssistedId: string | null
|
@@ -8632,8 +8478,6 @@ export namespace Prisma {
|
|
8632
8478
|
id: number
|
8633
8479
|
name: number
|
8634
8480
|
date: number
|
8635
|
-
starting_date: number
|
8636
|
-
ending_date: number
|
8637
8481
|
location: number
|
8638
8482
|
folderId: number
|
8639
8483
|
tagAssistedId: number
|
@@ -8649,8 +8493,6 @@ export namespace Prisma {
|
|
8649
8493
|
id?: true
|
8650
8494
|
name?: true
|
8651
8495
|
date?: true
|
8652
|
-
starting_date?: true
|
8653
|
-
ending_date?: true
|
8654
8496
|
location?: true
|
8655
8497
|
folderId?: true
|
8656
8498
|
tagAssistedId?: true
|
@@ -8664,8 +8506,6 @@ export namespace Prisma {
|
|
8664
8506
|
id?: true
|
8665
8507
|
name?: true
|
8666
8508
|
date?: true
|
8667
|
-
starting_date?: true
|
8668
|
-
ending_date?: true
|
8669
8509
|
location?: true
|
8670
8510
|
folderId?: true
|
8671
8511
|
tagAssistedId?: true
|
@@ -8679,8 +8519,6 @@ export namespace Prisma {
|
|
8679
8519
|
id?: true
|
8680
8520
|
name?: true
|
8681
8521
|
date?: true
|
8682
|
-
starting_date?: true
|
8683
|
-
ending_date?: true
|
8684
8522
|
location?: true
|
8685
8523
|
folderId?: true
|
8686
8524
|
tagAssistedId?: true
|
@@ -8767,8 +8605,6 @@ export namespace Prisma {
|
|
8767
8605
|
id: string
|
8768
8606
|
name: string
|
8769
8607
|
date: Date
|
8770
|
-
starting_date: Date
|
8771
|
-
ending_date: Date
|
8772
8608
|
location: string
|
8773
8609
|
folderId: string | null
|
8774
8610
|
tagAssistedId: string
|
@@ -8799,8 +8635,6 @@ export namespace Prisma {
|
|
8799
8635
|
id?: boolean
|
8800
8636
|
name?: boolean
|
8801
8637
|
date?: boolean
|
8802
|
-
starting_date?: boolean
|
8803
|
-
ending_date?: boolean
|
8804
8638
|
location?: boolean
|
8805
8639
|
folderId?: boolean
|
8806
8640
|
tagAssistedId?: boolean
|
@@ -8813,8 +8647,6 @@ export namespace Prisma {
|
|
8813
8647
|
tagConfirmed?: boolean | TagDefaultArgs<ExtArgs>
|
8814
8648
|
supraEvent?: boolean | Event$supraEventArgs<ExtArgs>
|
8815
8649
|
subEvents?: boolean | Event$subEventsArgs<ExtArgs>
|
8816
|
-
tags?: boolean | Event$tagsArgs<ExtArgs>
|
8817
|
-
eventTickets?: boolean | Event$eventTicketsArgs<ExtArgs>
|
8818
8650
|
_count?: boolean | EventCountOutputTypeDefaultArgs<ExtArgs>
|
8819
8651
|
}, ExtArgs["result"]["event"]>
|
8820
8652
|
|
@@ -8822,8 +8654,6 @@ export namespace Prisma {
|
|
8822
8654
|
id?: boolean
|
8823
8655
|
name?: boolean
|
8824
8656
|
date?: boolean
|
8825
|
-
starting_date?: boolean
|
8826
|
-
ending_date?: boolean
|
8827
8657
|
location?: boolean
|
8828
8658
|
folderId?: boolean
|
8829
8659
|
tagAssistedId?: boolean
|
@@ -8841,8 +8671,6 @@ export namespace Prisma {
|
|
8841
8671
|
id?: boolean
|
8842
8672
|
name?: boolean
|
8843
8673
|
date?: boolean
|
8844
|
-
starting_date?: boolean
|
8845
|
-
ending_date?: boolean
|
8846
8674
|
location?: boolean
|
8847
8675
|
folderId?: boolean
|
8848
8676
|
tagAssistedId?: boolean
|
@@ -8858,8 +8686,6 @@ export namespace Prisma {
|
|
8858
8686
|
tagConfirmed?: boolean | TagDefaultArgs<ExtArgs>
|
8859
8687
|
supraEvent?: boolean | Event$supraEventArgs<ExtArgs>
|
8860
8688
|
subEvents?: boolean | Event$subEventsArgs<ExtArgs>
|
8861
|
-
tags?: boolean | Event$tagsArgs<ExtArgs>
|
8862
|
-
eventTickets?: boolean | Event$eventTicketsArgs<ExtArgs>
|
8863
8689
|
_count?: boolean | EventCountOutputTypeDefaultArgs<ExtArgs>
|
8864
8690
|
}
|
8865
8691
|
export type EventIncludeCreateManyAndReturn<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
@@ -8877,15 +8703,11 @@ export namespace Prisma {
|
|
8877
8703
|
tagConfirmed: Prisma.$TagPayload<ExtArgs>
|
8878
8704
|
supraEvent: Prisma.$EventPayload<ExtArgs> | null
|
8879
8705
|
subEvents: Prisma.$EventPayload<ExtArgs>[]
|
8880
|
-
tags: Prisma.$TagPayload<ExtArgs>[]
|
8881
|
-
eventTickets: Prisma.$EventTicketPayload<ExtArgs>[]
|
8882
8706
|
}
|
8883
8707
|
scalars: $Extensions.GetPayloadResult<{
|
8884
8708
|
id: string
|
8885
8709
|
name: string
|
8886
8710
|
date: Date
|
8887
|
-
starting_date: Date
|
8888
|
-
ending_date: Date
|
8889
8711
|
location: string
|
8890
8712
|
folderId: string | null
|
8891
8713
|
tagAssistedId: string
|
@@ -9262,8 +9084,6 @@ export namespace Prisma {
|
|
9262
9084
|
tagConfirmed<T extends TagDefaultArgs<ExtArgs> = {}>(args?: Subset<T, TagDefaultArgs<ExtArgs>>): Prisma__TagClient<$Result.GetResult<Prisma.$TagPayload<ExtArgs>, T, "findUniqueOrThrow"> | Null, Null, ExtArgs>
|
9263
9085
|
supraEvent<T extends Event$supraEventArgs<ExtArgs> = {}>(args?: Subset<T, Event$supraEventArgs<ExtArgs>>): Prisma__EventClient<$Result.GetResult<Prisma.$EventPayload<ExtArgs>, T, "findUniqueOrThrow"> | null, null, ExtArgs>
|
9264
9086
|
subEvents<T extends Event$subEventsArgs<ExtArgs> = {}>(args?: Subset<T, Event$subEventsArgs<ExtArgs>>): Prisma.PrismaPromise<$Result.GetResult<Prisma.$EventPayload<ExtArgs>, T, "findMany"> | Null>
|
9265
|
-
tags<T extends Event$tagsArgs<ExtArgs> = {}>(args?: Subset<T, Event$tagsArgs<ExtArgs>>): Prisma.PrismaPromise<$Result.GetResult<Prisma.$TagPayload<ExtArgs>, T, "findMany"> | Null>
|
9266
|
-
eventTickets<T extends Event$eventTicketsArgs<ExtArgs> = {}>(args?: Subset<T, Event$eventTicketsArgs<ExtArgs>>): Prisma.PrismaPromise<$Result.GetResult<Prisma.$EventTicketPayload<ExtArgs>, T, "findMany"> | Null>
|
9267
9087
|
/**
|
9268
9088
|
* Attaches callbacks for the resolution and/or rejection of the Promise.
|
9269
9089
|
* @param onfulfilled The callback to execute when the Promise is resolved.
|
@@ -9296,8 +9116,6 @@ export namespace Prisma {
|
|
9296
9116
|
readonly id: FieldRef<"Event", 'String'>
|
9297
9117
|
readonly name: FieldRef<"Event", 'String'>
|
9298
9118
|
readonly date: FieldRef<"Event", 'DateTime'>
|
9299
|
-
readonly starting_date: FieldRef<"Event", 'DateTime'>
|
9300
|
-
readonly ending_date: FieldRef<"Event", 'DateTime'>
|
9301
9119
|
readonly location: FieldRef<"Event", 'String'>
|
9302
9120
|
readonly folderId: FieldRef<"Event", 'String'>
|
9303
9121
|
readonly tagAssistedId: FieldRef<"Event", 'String'>
|
@@ -9672,46 +9490,6 @@ export namespace Prisma {
|
|
9672
9490
|
distinct?: EventScalarFieldEnum | EventScalarFieldEnum[]
|
9673
9491
|
}
|
9674
9492
|
|
9675
|
-
/**
|
9676
|
-
* Event.tags
|
9677
|
-
*/
|
9678
|
-
export type Event$tagsArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
9679
|
-
/**
|
9680
|
-
* Select specific fields to fetch from the Tag
|
9681
|
-
*/
|
9682
|
-
select?: TagSelect<ExtArgs> | null
|
9683
|
-
/**
|
9684
|
-
* Choose, which related nodes to fetch as well
|
9685
|
-
*/
|
9686
|
-
include?: TagInclude<ExtArgs> | null
|
9687
|
-
where?: TagWhereInput
|
9688
|
-
orderBy?: TagOrderByWithRelationInput | TagOrderByWithRelationInput[]
|
9689
|
-
cursor?: TagWhereUniqueInput
|
9690
|
-
take?: number
|
9691
|
-
skip?: number
|
9692
|
-
distinct?: TagScalarFieldEnum | TagScalarFieldEnum[]
|
9693
|
-
}
|
9694
|
-
|
9695
|
-
/**
|
9696
|
-
* Event.eventTickets
|
9697
|
-
*/
|
9698
|
-
export type Event$eventTicketsArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
9699
|
-
/**
|
9700
|
-
* Select specific fields to fetch from the EventTicket
|
9701
|
-
*/
|
9702
|
-
select?: EventTicketSelect<ExtArgs> | null
|
9703
|
-
/**
|
9704
|
-
* Choose, which related nodes to fetch as well
|
9705
|
-
*/
|
9706
|
-
include?: EventTicketInclude<ExtArgs> | null
|
9707
|
-
where?: EventTicketWhereInput
|
9708
|
-
orderBy?: EventTicketOrderByWithRelationInput | EventTicketOrderByWithRelationInput[]
|
9709
|
-
cursor?: EventTicketWhereUniqueInput
|
9710
|
-
take?: number
|
9711
|
-
skip?: number
|
9712
|
-
distinct?: EventTicketScalarFieldEnum | EventTicketScalarFieldEnum[]
|
9713
|
-
}
|
9714
|
-
|
9715
9493
|
/**
|
9716
9494
|
* Event without action
|
9717
9495
|
*/
|
@@ -13361,1065 +13139,70 @@ export namespace Prisma {
|
|
13361
13139
|
|
13362
13140
|
|
13363
13141
|
/**
|
13364
|
-
*
|
13142
|
+
* Enums
|
13365
13143
|
*/
|
13366
13144
|
|
13367
|
-
export
|
13368
|
-
|
13369
|
-
|
13370
|
-
|
13371
|
-
|
13372
|
-
|
13373
|
-
}
|
13374
|
-
|
13375
|
-
export type EventTicketAvgAggregateOutputType = {
|
13376
|
-
amount: number | null
|
13377
|
-
price: number | null
|
13378
|
-
}
|
13145
|
+
export const TransactionIsolationLevel: {
|
13146
|
+
ReadUncommitted: 'ReadUncommitted',
|
13147
|
+
ReadCommitted: 'ReadCommitted',
|
13148
|
+
RepeatableRead: 'RepeatableRead',
|
13149
|
+
Serializable: 'Serializable'
|
13150
|
+
};
|
13379
13151
|
|
13380
|
-
export type
|
13381
|
-
amount: number | null
|
13382
|
-
price: number | null
|
13383
|
-
}
|
13152
|
+
export type TransactionIsolationLevel = (typeof TransactionIsolationLevel)[keyof typeof TransactionIsolationLevel]
|
13384
13153
|
|
13385
|
-
export type EventTicketMinAggregateOutputType = {
|
13386
|
-
id: string | null
|
13387
|
-
eventId: string | null
|
13388
|
-
amount: number | null
|
13389
|
-
type: $Enums.TicketType | null
|
13390
|
-
price: number | null
|
13391
|
-
created_at: Date | null
|
13392
|
-
updated_at: Date | null
|
13393
|
-
}
|
13394
13154
|
|
13395
|
-
export
|
13396
|
-
id:
|
13397
|
-
|
13398
|
-
|
13399
|
-
|
13400
|
-
|
13401
|
-
|
13402
|
-
|
13403
|
-
|
13155
|
+
export const AccountScalarFieldEnum: {
|
13156
|
+
id: 'id',
|
13157
|
+
username: 'username',
|
13158
|
+
password: 'password',
|
13159
|
+
role: 'role',
|
13160
|
+
isGlobalFilterActive: 'isGlobalFilterActive',
|
13161
|
+
fcmToken: 'fcmToken',
|
13162
|
+
created_at: 'created_at',
|
13163
|
+
updated_at: 'updated_at'
|
13164
|
+
};
|
13404
13165
|
|
13405
|
-
export type
|
13406
|
-
id: number
|
13407
|
-
eventId: number
|
13408
|
-
amount: number
|
13409
|
-
type: number
|
13410
|
-
price: number
|
13411
|
-
created_at: number
|
13412
|
-
updated_at: number
|
13413
|
-
_all: number
|
13414
|
-
}
|
13166
|
+
export type AccountScalarFieldEnum = (typeof AccountScalarFieldEnum)[keyof typeof AccountScalarFieldEnum]
|
13415
13167
|
|
13416
13168
|
|
13417
|
-
export
|
13418
|
-
|
13419
|
-
|
13420
|
-
|
13169
|
+
export const ProfileScalarFieldEnum: {
|
13170
|
+
id: 'id',
|
13171
|
+
shortId: 'shortId',
|
13172
|
+
phoneNumber: 'phoneNumber',
|
13173
|
+
secondaryPhoneNumber: 'secondaryPhoneNumber',
|
13174
|
+
fullName: 'fullName',
|
13175
|
+
firstName: 'firstName',
|
13176
|
+
gender: 'gender',
|
13177
|
+
birthDate: 'birthDate',
|
13178
|
+
profilePictureUrl: 'profilePictureUrl',
|
13179
|
+
instagram: 'instagram',
|
13180
|
+
mail: 'mail',
|
13181
|
+
dni: 'dni',
|
13182
|
+
alternativeNames: 'alternativeNames',
|
13183
|
+
birthLocationId: 'birthLocationId',
|
13184
|
+
residenceLocationId: 'residenceLocationId',
|
13185
|
+
isInTrash: 'isInTrash',
|
13186
|
+
movedToTrashDate: 'movedToTrashDate',
|
13187
|
+
created_at: 'created_at',
|
13188
|
+
updated_at: 'updated_at'
|
13189
|
+
};
|
13421
13190
|
|
13422
|
-
export type
|
13423
|
-
amount?: true
|
13424
|
-
price?: true
|
13425
|
-
}
|
13191
|
+
export type ProfileScalarFieldEnum = (typeof ProfileScalarFieldEnum)[keyof typeof ProfileScalarFieldEnum]
|
13426
13192
|
|
13427
|
-
export type EventTicketMinAggregateInputType = {
|
13428
|
-
id?: true
|
13429
|
-
eventId?: true
|
13430
|
-
amount?: true
|
13431
|
-
type?: true
|
13432
|
-
price?: true
|
13433
|
-
created_at?: true
|
13434
|
-
updated_at?: true
|
13435
|
-
}
|
13436
13193
|
|
13437
|
-
export
|
13438
|
-
id
|
13439
|
-
|
13440
|
-
|
13441
|
-
|
13442
|
-
|
13443
|
-
|
13444
|
-
|
13445
|
-
|
13194
|
+
export const LocationScalarFieldEnum: {
|
13195
|
+
id: 'id',
|
13196
|
+
latitude: 'latitude',
|
13197
|
+
longitude: 'longitude',
|
13198
|
+
country: 'country',
|
13199
|
+
state: 'state',
|
13200
|
+
city: 'city',
|
13201
|
+
created_at: 'created_at',
|
13202
|
+
updated_at: 'updated_at'
|
13203
|
+
};
|
13446
13204
|
|
13447
|
-
export type
|
13448
|
-
id?: true
|
13449
|
-
eventId?: true
|
13450
|
-
amount?: true
|
13451
|
-
type?: true
|
13452
|
-
price?: true
|
13453
|
-
created_at?: true
|
13454
|
-
updated_at?: true
|
13455
|
-
_all?: true
|
13456
|
-
}
|
13457
|
-
|
13458
|
-
export type EventTicketAggregateArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
13459
|
-
/**
|
13460
|
-
* Filter which EventTicket to aggregate.
|
13461
|
-
*/
|
13462
|
-
where?: EventTicketWhereInput
|
13463
|
-
/**
|
13464
|
-
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs}
|
13465
|
-
*
|
13466
|
-
* Determine the order of EventTickets to fetch.
|
13467
|
-
*/
|
13468
|
-
orderBy?: EventTicketOrderByWithRelationInput | EventTicketOrderByWithRelationInput[]
|
13469
|
-
/**
|
13470
|
-
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs}
|
13471
|
-
*
|
13472
|
-
* Sets the start position
|
13473
|
-
*/
|
13474
|
-
cursor?: EventTicketWhereUniqueInput
|
13475
|
-
/**
|
13476
|
-
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
13477
|
-
*
|
13478
|
-
* Take `±n` EventTickets from the position of the cursor.
|
13479
|
-
*/
|
13480
|
-
take?: number
|
13481
|
-
/**
|
13482
|
-
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
13483
|
-
*
|
13484
|
-
* Skip the first `n` EventTickets.
|
13485
|
-
*/
|
13486
|
-
skip?: number
|
13487
|
-
/**
|
13488
|
-
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
|
13489
|
-
*
|
13490
|
-
* Count returned EventTickets
|
13491
|
-
**/
|
13492
|
-
_count?: true | EventTicketCountAggregateInputType
|
13493
|
-
/**
|
13494
|
-
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
|
13495
|
-
*
|
13496
|
-
* Select which fields to average
|
13497
|
-
**/
|
13498
|
-
_avg?: EventTicketAvgAggregateInputType
|
13499
|
-
/**
|
13500
|
-
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
|
13501
|
-
*
|
13502
|
-
* Select which fields to sum
|
13503
|
-
**/
|
13504
|
-
_sum?: EventTicketSumAggregateInputType
|
13505
|
-
/**
|
13506
|
-
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
|
13507
|
-
*
|
13508
|
-
* Select which fields to find the minimum value
|
13509
|
-
**/
|
13510
|
-
_min?: EventTicketMinAggregateInputType
|
13511
|
-
/**
|
13512
|
-
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
|
13513
|
-
*
|
13514
|
-
* Select which fields to find the maximum value
|
13515
|
-
**/
|
13516
|
-
_max?: EventTicketMaxAggregateInputType
|
13517
|
-
}
|
13518
|
-
|
13519
|
-
export type GetEventTicketAggregateType<T extends EventTicketAggregateArgs> = {
|
13520
|
-
[P in keyof T & keyof AggregateEventTicket]: P extends '_count' | 'count'
|
13521
|
-
? T[P] extends true
|
13522
|
-
? number
|
13523
|
-
: GetScalarType<T[P], AggregateEventTicket[P]>
|
13524
|
-
: GetScalarType<T[P], AggregateEventTicket[P]>
|
13525
|
-
}
|
13526
|
-
|
13527
|
-
|
13528
|
-
|
13529
|
-
|
13530
|
-
export type EventTicketGroupByArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
13531
|
-
where?: EventTicketWhereInput
|
13532
|
-
orderBy?: EventTicketOrderByWithAggregationInput | EventTicketOrderByWithAggregationInput[]
|
13533
|
-
by: EventTicketScalarFieldEnum[] | EventTicketScalarFieldEnum
|
13534
|
-
having?: EventTicketScalarWhereWithAggregatesInput
|
13535
|
-
take?: number
|
13536
|
-
skip?: number
|
13537
|
-
_count?: EventTicketCountAggregateInputType | true
|
13538
|
-
_avg?: EventTicketAvgAggregateInputType
|
13539
|
-
_sum?: EventTicketSumAggregateInputType
|
13540
|
-
_min?: EventTicketMinAggregateInputType
|
13541
|
-
_max?: EventTicketMaxAggregateInputType
|
13542
|
-
}
|
13543
|
-
|
13544
|
-
export type EventTicketGroupByOutputType = {
|
13545
|
-
id: string
|
13546
|
-
eventId: string
|
13547
|
-
amount: number
|
13548
|
-
type: $Enums.TicketType
|
13549
|
-
price: number | null
|
13550
|
-
created_at: Date
|
13551
|
-
updated_at: Date
|
13552
|
-
_count: EventTicketCountAggregateOutputType | null
|
13553
|
-
_avg: EventTicketAvgAggregateOutputType | null
|
13554
|
-
_sum: EventTicketSumAggregateOutputType | null
|
13555
|
-
_min: EventTicketMinAggregateOutputType | null
|
13556
|
-
_max: EventTicketMaxAggregateOutputType | null
|
13557
|
-
}
|
13558
|
-
|
13559
|
-
type GetEventTicketGroupByPayload<T extends EventTicketGroupByArgs> = Prisma.PrismaPromise<
|
13560
|
-
Array<
|
13561
|
-
PickEnumerable<EventTicketGroupByOutputType, T['by']> &
|
13562
|
-
{
|
13563
|
-
[P in ((keyof T) & (keyof EventTicketGroupByOutputType))]: P extends '_count'
|
13564
|
-
? T[P] extends boolean
|
13565
|
-
? number
|
13566
|
-
: GetScalarType<T[P], EventTicketGroupByOutputType[P]>
|
13567
|
-
: GetScalarType<T[P], EventTicketGroupByOutputType[P]>
|
13568
|
-
}
|
13569
|
-
>
|
13570
|
-
>
|
13571
|
-
|
13572
|
-
|
13573
|
-
export type EventTicketSelect<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetSelect<{
|
13574
|
-
id?: boolean
|
13575
|
-
eventId?: boolean
|
13576
|
-
amount?: boolean
|
13577
|
-
type?: boolean
|
13578
|
-
price?: boolean
|
13579
|
-
created_at?: boolean
|
13580
|
-
updated_at?: boolean
|
13581
|
-
event?: boolean | EventDefaultArgs<ExtArgs>
|
13582
|
-
}, ExtArgs["result"]["eventTicket"]>
|
13583
|
-
|
13584
|
-
export type EventTicketSelectCreateManyAndReturn<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetSelect<{
|
13585
|
-
id?: boolean
|
13586
|
-
eventId?: boolean
|
13587
|
-
amount?: boolean
|
13588
|
-
type?: boolean
|
13589
|
-
price?: boolean
|
13590
|
-
created_at?: boolean
|
13591
|
-
updated_at?: boolean
|
13592
|
-
event?: boolean | EventDefaultArgs<ExtArgs>
|
13593
|
-
}, ExtArgs["result"]["eventTicket"]>
|
13594
|
-
|
13595
|
-
export type EventTicketSelectScalar = {
|
13596
|
-
id?: boolean
|
13597
|
-
eventId?: boolean
|
13598
|
-
amount?: boolean
|
13599
|
-
type?: boolean
|
13600
|
-
price?: boolean
|
13601
|
-
created_at?: boolean
|
13602
|
-
updated_at?: boolean
|
13603
|
-
}
|
13604
|
-
|
13605
|
-
export type EventTicketInclude<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
13606
|
-
event?: boolean | EventDefaultArgs<ExtArgs>
|
13607
|
-
}
|
13608
|
-
export type EventTicketIncludeCreateManyAndReturn<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
13609
|
-
event?: boolean | EventDefaultArgs<ExtArgs>
|
13610
|
-
}
|
13611
|
-
|
13612
|
-
export type $EventTicketPayload<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
13613
|
-
name: "EventTicket"
|
13614
|
-
objects: {
|
13615
|
-
event: Prisma.$EventPayload<ExtArgs>
|
13616
|
-
}
|
13617
|
-
scalars: $Extensions.GetPayloadResult<{
|
13618
|
-
id: string
|
13619
|
-
eventId: string
|
13620
|
-
amount: number
|
13621
|
-
type: $Enums.TicketType
|
13622
|
-
price: number | null
|
13623
|
-
created_at: Date
|
13624
|
-
updated_at: Date
|
13625
|
-
}, ExtArgs["result"]["eventTicket"]>
|
13626
|
-
composites: {}
|
13627
|
-
}
|
13628
|
-
|
13629
|
-
type EventTicketGetPayload<S extends boolean | null | undefined | EventTicketDefaultArgs> = $Result.GetResult<Prisma.$EventTicketPayload, S>
|
13630
|
-
|
13631
|
-
type EventTicketCountArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> =
|
13632
|
-
Omit<EventTicketFindManyArgs, 'select' | 'include' | 'distinct'> & {
|
13633
|
-
select?: EventTicketCountAggregateInputType | true
|
13634
|
-
}
|
13635
|
-
|
13636
|
-
export interface EventTicketDelegate<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> {
|
13637
|
-
[K: symbol]: { types: Prisma.TypeMap<ExtArgs>['model']['EventTicket'], meta: { name: 'EventTicket' } }
|
13638
|
-
/**
|
13639
|
-
* Find zero or one EventTicket that matches the filter.
|
13640
|
-
* @param {EventTicketFindUniqueArgs} args - Arguments to find a EventTicket
|
13641
|
-
* @example
|
13642
|
-
* // Get one EventTicket
|
13643
|
-
* const eventTicket = await prisma.eventTicket.findUnique({
|
13644
|
-
* where: {
|
13645
|
-
* // ... provide filter here
|
13646
|
-
* }
|
13647
|
-
* })
|
13648
|
-
*/
|
13649
|
-
findUnique<T extends EventTicketFindUniqueArgs>(args: SelectSubset<T, EventTicketFindUniqueArgs<ExtArgs>>): Prisma__EventTicketClient<$Result.GetResult<Prisma.$EventTicketPayload<ExtArgs>, T, "findUnique"> | null, null, ExtArgs>
|
13650
|
-
|
13651
|
-
/**
|
13652
|
-
* Find one EventTicket that matches the filter or throw an error with `error.code='P2025'`
|
13653
|
-
* if no matches were found.
|
13654
|
-
* @param {EventTicketFindUniqueOrThrowArgs} args - Arguments to find a EventTicket
|
13655
|
-
* @example
|
13656
|
-
* // Get one EventTicket
|
13657
|
-
* const eventTicket = await prisma.eventTicket.findUniqueOrThrow({
|
13658
|
-
* where: {
|
13659
|
-
* // ... provide filter here
|
13660
|
-
* }
|
13661
|
-
* })
|
13662
|
-
*/
|
13663
|
-
findUniqueOrThrow<T extends EventTicketFindUniqueOrThrowArgs>(args: SelectSubset<T, EventTicketFindUniqueOrThrowArgs<ExtArgs>>): Prisma__EventTicketClient<$Result.GetResult<Prisma.$EventTicketPayload<ExtArgs>, T, "findUniqueOrThrow">, never, ExtArgs>
|
13664
|
-
|
13665
|
-
/**
|
13666
|
-
* Find the first EventTicket that matches the filter.
|
13667
|
-
* Note, that providing `undefined` is treated as the value not being there.
|
13668
|
-
* Read more here: https://pris.ly/d/null-undefined
|
13669
|
-
* @param {EventTicketFindFirstArgs} args - Arguments to find a EventTicket
|
13670
|
-
* @example
|
13671
|
-
* // Get one EventTicket
|
13672
|
-
* const eventTicket = await prisma.eventTicket.findFirst({
|
13673
|
-
* where: {
|
13674
|
-
* // ... provide filter here
|
13675
|
-
* }
|
13676
|
-
* })
|
13677
|
-
*/
|
13678
|
-
findFirst<T extends EventTicketFindFirstArgs>(args?: SelectSubset<T, EventTicketFindFirstArgs<ExtArgs>>): Prisma__EventTicketClient<$Result.GetResult<Prisma.$EventTicketPayload<ExtArgs>, T, "findFirst"> | null, null, ExtArgs>
|
13679
|
-
|
13680
|
-
/**
|
13681
|
-
* Find the first EventTicket that matches the filter or
|
13682
|
-
* throw `PrismaKnownClientError` with `P2025` code if no matches were found.
|
13683
|
-
* Note, that providing `undefined` is treated as the value not being there.
|
13684
|
-
* Read more here: https://pris.ly/d/null-undefined
|
13685
|
-
* @param {EventTicketFindFirstOrThrowArgs} args - Arguments to find a EventTicket
|
13686
|
-
* @example
|
13687
|
-
* // Get one EventTicket
|
13688
|
-
* const eventTicket = await prisma.eventTicket.findFirstOrThrow({
|
13689
|
-
* where: {
|
13690
|
-
* // ... provide filter here
|
13691
|
-
* }
|
13692
|
-
* })
|
13693
|
-
*/
|
13694
|
-
findFirstOrThrow<T extends EventTicketFindFirstOrThrowArgs>(args?: SelectSubset<T, EventTicketFindFirstOrThrowArgs<ExtArgs>>): Prisma__EventTicketClient<$Result.GetResult<Prisma.$EventTicketPayload<ExtArgs>, T, "findFirstOrThrow">, never, ExtArgs>
|
13695
|
-
|
13696
|
-
/**
|
13697
|
-
* Find zero or more EventTickets that matches the filter.
|
13698
|
-
* Note, that providing `undefined` is treated as the value not being there.
|
13699
|
-
* Read more here: https://pris.ly/d/null-undefined
|
13700
|
-
* @param {EventTicketFindManyArgs} args - Arguments to filter and select certain fields only.
|
13701
|
-
* @example
|
13702
|
-
* // Get all EventTickets
|
13703
|
-
* const eventTickets = await prisma.eventTicket.findMany()
|
13704
|
-
*
|
13705
|
-
* // Get first 10 EventTickets
|
13706
|
-
* const eventTickets = await prisma.eventTicket.findMany({ take: 10 })
|
13707
|
-
*
|
13708
|
-
* // Only select the `id`
|
13709
|
-
* const eventTicketWithIdOnly = await prisma.eventTicket.findMany({ select: { id: true } })
|
13710
|
-
*
|
13711
|
-
*/
|
13712
|
-
findMany<T extends EventTicketFindManyArgs>(args?: SelectSubset<T, EventTicketFindManyArgs<ExtArgs>>): Prisma.PrismaPromise<$Result.GetResult<Prisma.$EventTicketPayload<ExtArgs>, T, "findMany">>
|
13713
|
-
|
13714
|
-
/**
|
13715
|
-
* Create a EventTicket.
|
13716
|
-
* @param {EventTicketCreateArgs} args - Arguments to create a EventTicket.
|
13717
|
-
* @example
|
13718
|
-
* // Create one EventTicket
|
13719
|
-
* const EventTicket = await prisma.eventTicket.create({
|
13720
|
-
* data: {
|
13721
|
-
* // ... data to create a EventTicket
|
13722
|
-
* }
|
13723
|
-
* })
|
13724
|
-
*
|
13725
|
-
*/
|
13726
|
-
create<T extends EventTicketCreateArgs>(args: SelectSubset<T, EventTicketCreateArgs<ExtArgs>>): Prisma__EventTicketClient<$Result.GetResult<Prisma.$EventTicketPayload<ExtArgs>, T, "create">, never, ExtArgs>
|
13727
|
-
|
13728
|
-
/**
|
13729
|
-
* Create many EventTickets.
|
13730
|
-
* @param {EventTicketCreateManyArgs} args - Arguments to create many EventTickets.
|
13731
|
-
* @example
|
13732
|
-
* // Create many EventTickets
|
13733
|
-
* const eventTicket = await prisma.eventTicket.createMany({
|
13734
|
-
* data: [
|
13735
|
-
* // ... provide data here
|
13736
|
-
* ]
|
13737
|
-
* })
|
13738
|
-
*
|
13739
|
-
*/
|
13740
|
-
createMany<T extends EventTicketCreateManyArgs>(args?: SelectSubset<T, EventTicketCreateManyArgs<ExtArgs>>): Prisma.PrismaPromise<BatchPayload>
|
13741
|
-
|
13742
|
-
/**
|
13743
|
-
* Create many EventTickets and returns the data saved in the database.
|
13744
|
-
* @param {EventTicketCreateManyAndReturnArgs} args - Arguments to create many EventTickets.
|
13745
|
-
* @example
|
13746
|
-
* // Create many EventTickets
|
13747
|
-
* const eventTicket = await prisma.eventTicket.createManyAndReturn({
|
13748
|
-
* data: [
|
13749
|
-
* // ... provide data here
|
13750
|
-
* ]
|
13751
|
-
* })
|
13752
|
-
*
|
13753
|
-
* // Create many EventTickets and only return the `id`
|
13754
|
-
* const eventTicketWithIdOnly = await prisma.eventTicket.createManyAndReturn({
|
13755
|
-
* select: { id: true },
|
13756
|
-
* data: [
|
13757
|
-
* // ... provide data here
|
13758
|
-
* ]
|
13759
|
-
* })
|
13760
|
-
* Note, that providing `undefined` is treated as the value not being there.
|
13761
|
-
* Read more here: https://pris.ly/d/null-undefined
|
13762
|
-
*
|
13763
|
-
*/
|
13764
|
-
createManyAndReturn<T extends EventTicketCreateManyAndReturnArgs>(args?: SelectSubset<T, EventTicketCreateManyAndReturnArgs<ExtArgs>>): Prisma.PrismaPromise<$Result.GetResult<Prisma.$EventTicketPayload<ExtArgs>, T, "createManyAndReturn">>
|
13765
|
-
|
13766
|
-
/**
|
13767
|
-
* Delete a EventTicket.
|
13768
|
-
* @param {EventTicketDeleteArgs} args - Arguments to delete one EventTicket.
|
13769
|
-
* @example
|
13770
|
-
* // Delete one EventTicket
|
13771
|
-
* const EventTicket = await prisma.eventTicket.delete({
|
13772
|
-
* where: {
|
13773
|
-
* // ... filter to delete one EventTicket
|
13774
|
-
* }
|
13775
|
-
* })
|
13776
|
-
*
|
13777
|
-
*/
|
13778
|
-
delete<T extends EventTicketDeleteArgs>(args: SelectSubset<T, EventTicketDeleteArgs<ExtArgs>>): Prisma__EventTicketClient<$Result.GetResult<Prisma.$EventTicketPayload<ExtArgs>, T, "delete">, never, ExtArgs>
|
13779
|
-
|
13780
|
-
/**
|
13781
|
-
* Update one EventTicket.
|
13782
|
-
* @param {EventTicketUpdateArgs} args - Arguments to update one EventTicket.
|
13783
|
-
* @example
|
13784
|
-
* // Update one EventTicket
|
13785
|
-
* const eventTicket = await prisma.eventTicket.update({
|
13786
|
-
* where: {
|
13787
|
-
* // ... provide filter here
|
13788
|
-
* },
|
13789
|
-
* data: {
|
13790
|
-
* // ... provide data here
|
13791
|
-
* }
|
13792
|
-
* })
|
13793
|
-
*
|
13794
|
-
*/
|
13795
|
-
update<T extends EventTicketUpdateArgs>(args: SelectSubset<T, EventTicketUpdateArgs<ExtArgs>>): Prisma__EventTicketClient<$Result.GetResult<Prisma.$EventTicketPayload<ExtArgs>, T, "update">, never, ExtArgs>
|
13796
|
-
|
13797
|
-
/**
|
13798
|
-
* Delete zero or more EventTickets.
|
13799
|
-
* @param {EventTicketDeleteManyArgs} args - Arguments to filter EventTickets to delete.
|
13800
|
-
* @example
|
13801
|
-
* // Delete a few EventTickets
|
13802
|
-
* const { count } = await prisma.eventTicket.deleteMany({
|
13803
|
-
* where: {
|
13804
|
-
* // ... provide filter here
|
13805
|
-
* }
|
13806
|
-
* })
|
13807
|
-
*
|
13808
|
-
*/
|
13809
|
-
deleteMany<T extends EventTicketDeleteManyArgs>(args?: SelectSubset<T, EventTicketDeleteManyArgs<ExtArgs>>): Prisma.PrismaPromise<BatchPayload>
|
13810
|
-
|
13811
|
-
/**
|
13812
|
-
* Update zero or more EventTickets.
|
13813
|
-
* Note, that providing `undefined` is treated as the value not being there.
|
13814
|
-
* Read more here: https://pris.ly/d/null-undefined
|
13815
|
-
* @param {EventTicketUpdateManyArgs} args - Arguments to update one or more rows.
|
13816
|
-
* @example
|
13817
|
-
* // Update many EventTickets
|
13818
|
-
* const eventTicket = await prisma.eventTicket.updateMany({
|
13819
|
-
* where: {
|
13820
|
-
* // ... provide filter here
|
13821
|
-
* },
|
13822
|
-
* data: {
|
13823
|
-
* // ... provide data here
|
13824
|
-
* }
|
13825
|
-
* })
|
13826
|
-
*
|
13827
|
-
*/
|
13828
|
-
updateMany<T extends EventTicketUpdateManyArgs>(args: SelectSubset<T, EventTicketUpdateManyArgs<ExtArgs>>): Prisma.PrismaPromise<BatchPayload>
|
13829
|
-
|
13830
|
-
/**
|
13831
|
-
* Create or update one EventTicket.
|
13832
|
-
* @param {EventTicketUpsertArgs} args - Arguments to update or create a EventTicket.
|
13833
|
-
* @example
|
13834
|
-
* // Update or create a EventTicket
|
13835
|
-
* const eventTicket = await prisma.eventTicket.upsert({
|
13836
|
-
* create: {
|
13837
|
-
* // ... data to create a EventTicket
|
13838
|
-
* },
|
13839
|
-
* update: {
|
13840
|
-
* // ... in case it already exists, update
|
13841
|
-
* },
|
13842
|
-
* where: {
|
13843
|
-
* // ... the filter for the EventTicket we want to update
|
13844
|
-
* }
|
13845
|
-
* })
|
13846
|
-
*/
|
13847
|
-
upsert<T extends EventTicketUpsertArgs>(args: SelectSubset<T, EventTicketUpsertArgs<ExtArgs>>): Prisma__EventTicketClient<$Result.GetResult<Prisma.$EventTicketPayload<ExtArgs>, T, "upsert">, never, ExtArgs>
|
13848
|
-
|
13849
|
-
|
13850
|
-
/**
|
13851
|
-
* Count the number of EventTickets.
|
13852
|
-
* Note, that providing `undefined` is treated as the value not being there.
|
13853
|
-
* Read more here: https://pris.ly/d/null-undefined
|
13854
|
-
* @param {EventTicketCountArgs} args - Arguments to filter EventTickets to count.
|
13855
|
-
* @example
|
13856
|
-
* // Count the number of EventTickets
|
13857
|
-
* const count = await prisma.eventTicket.count({
|
13858
|
-
* where: {
|
13859
|
-
* // ... the filter for the EventTickets we want to count
|
13860
|
-
* }
|
13861
|
-
* })
|
13862
|
-
**/
|
13863
|
-
count<T extends EventTicketCountArgs>(
|
13864
|
-
args?: Subset<T, EventTicketCountArgs>,
|
13865
|
-
): Prisma.PrismaPromise<
|
13866
|
-
T extends $Utils.Record<'select', any>
|
13867
|
-
? T['select'] extends true
|
13868
|
-
? number
|
13869
|
-
: GetScalarType<T['select'], EventTicketCountAggregateOutputType>
|
13870
|
-
: number
|
13871
|
-
>
|
13872
|
-
|
13873
|
-
/**
|
13874
|
-
* Allows you to perform aggregations operations on a EventTicket.
|
13875
|
-
* Note, that providing `undefined` is treated as the value not being there.
|
13876
|
-
* Read more here: https://pris.ly/d/null-undefined
|
13877
|
-
* @param {EventTicketAggregateArgs} args - Select which aggregations you would like to apply and on what fields.
|
13878
|
-
* @example
|
13879
|
-
* // Ordered by age ascending
|
13880
|
-
* // Where email contains prisma.io
|
13881
|
-
* // Limited to the 10 users
|
13882
|
-
* const aggregations = await prisma.user.aggregate({
|
13883
|
-
* _avg: {
|
13884
|
-
* age: true,
|
13885
|
-
* },
|
13886
|
-
* where: {
|
13887
|
-
* email: {
|
13888
|
-
* contains: "prisma.io",
|
13889
|
-
* },
|
13890
|
-
* },
|
13891
|
-
* orderBy: {
|
13892
|
-
* age: "asc",
|
13893
|
-
* },
|
13894
|
-
* take: 10,
|
13895
|
-
* })
|
13896
|
-
**/
|
13897
|
-
aggregate<T extends EventTicketAggregateArgs>(args: Subset<T, EventTicketAggregateArgs>): Prisma.PrismaPromise<GetEventTicketAggregateType<T>>
|
13898
|
-
|
13899
|
-
/**
|
13900
|
-
* Group by EventTicket.
|
13901
|
-
* Note, that providing `undefined` is treated as the value not being there.
|
13902
|
-
* Read more here: https://pris.ly/d/null-undefined
|
13903
|
-
* @param {EventTicketGroupByArgs} args - Group by arguments.
|
13904
|
-
* @example
|
13905
|
-
* // Group by city, order by createdAt, get count
|
13906
|
-
* const result = await prisma.user.groupBy({
|
13907
|
-
* by: ['city', 'createdAt'],
|
13908
|
-
* orderBy: {
|
13909
|
-
* createdAt: true
|
13910
|
-
* },
|
13911
|
-
* _count: {
|
13912
|
-
* _all: true
|
13913
|
-
* },
|
13914
|
-
* })
|
13915
|
-
*
|
13916
|
-
**/
|
13917
|
-
groupBy<
|
13918
|
-
T extends EventTicketGroupByArgs,
|
13919
|
-
HasSelectOrTake extends Or<
|
13920
|
-
Extends<'skip', Keys<T>>,
|
13921
|
-
Extends<'take', Keys<T>>
|
13922
|
-
>,
|
13923
|
-
OrderByArg extends True extends HasSelectOrTake
|
13924
|
-
? { orderBy: EventTicketGroupByArgs['orderBy'] }
|
13925
|
-
: { orderBy?: EventTicketGroupByArgs['orderBy'] },
|
13926
|
-
OrderFields extends ExcludeUnderscoreKeys<Keys<MaybeTupleToUnion<T['orderBy']>>>,
|
13927
|
-
ByFields extends MaybeTupleToUnion<T['by']>,
|
13928
|
-
ByValid extends Has<ByFields, OrderFields>,
|
13929
|
-
HavingFields extends GetHavingFields<T['having']>,
|
13930
|
-
HavingValid extends Has<ByFields, HavingFields>,
|
13931
|
-
ByEmpty extends T['by'] extends never[] ? True : False,
|
13932
|
-
InputErrors extends ByEmpty extends True
|
13933
|
-
? `Error: "by" must not be empty.`
|
13934
|
-
: HavingValid extends False
|
13935
|
-
? {
|
13936
|
-
[P in HavingFields]: P extends ByFields
|
13937
|
-
? never
|
13938
|
-
: P extends string
|
13939
|
-
? `Error: Field "${P}" used in "having" needs to be provided in "by".`
|
13940
|
-
: [
|
13941
|
-
Error,
|
13942
|
-
'Field ',
|
13943
|
-
P,
|
13944
|
-
` in "having" needs to be provided in "by"`,
|
13945
|
-
]
|
13946
|
-
}[HavingFields]
|
13947
|
-
: 'take' extends Keys<T>
|
13948
|
-
? 'orderBy' extends Keys<T>
|
13949
|
-
? ByValid extends True
|
13950
|
-
? {}
|
13951
|
-
: {
|
13952
|
-
[P in OrderFields]: P extends ByFields
|
13953
|
-
? never
|
13954
|
-
: `Error: Field "${P}" in "orderBy" needs to be provided in "by"`
|
13955
|
-
}[OrderFields]
|
13956
|
-
: 'Error: If you provide "take", you also need to provide "orderBy"'
|
13957
|
-
: 'skip' extends Keys<T>
|
13958
|
-
? 'orderBy' extends Keys<T>
|
13959
|
-
? ByValid extends True
|
13960
|
-
? {}
|
13961
|
-
: {
|
13962
|
-
[P in OrderFields]: P extends ByFields
|
13963
|
-
? never
|
13964
|
-
: `Error: Field "${P}" in "orderBy" needs to be provided in "by"`
|
13965
|
-
}[OrderFields]
|
13966
|
-
: 'Error: If you provide "skip", you also need to provide "orderBy"'
|
13967
|
-
: ByValid extends True
|
13968
|
-
? {}
|
13969
|
-
: {
|
13970
|
-
[P in OrderFields]: P extends ByFields
|
13971
|
-
? never
|
13972
|
-
: `Error: Field "${P}" in "orderBy" needs to be provided in "by"`
|
13973
|
-
}[OrderFields]
|
13974
|
-
>(args: SubsetIntersection<T, EventTicketGroupByArgs, OrderByArg> & InputErrors): {} extends InputErrors ? GetEventTicketGroupByPayload<T> : Prisma.PrismaPromise<InputErrors>
|
13975
|
-
/**
|
13976
|
-
* Fields of the EventTicket model
|
13977
|
-
*/
|
13978
|
-
readonly fields: EventTicketFieldRefs;
|
13979
|
-
}
|
13980
|
-
|
13981
|
-
/**
|
13982
|
-
* The delegate class that acts as a "Promise-like" for EventTicket.
|
13983
|
-
* Why is this prefixed with `Prisma__`?
|
13984
|
-
* Because we want to prevent naming conflicts as mentioned in
|
13985
|
-
* https://github.com/prisma/prisma-client-js/issues/707
|
13986
|
-
*/
|
13987
|
-
export interface Prisma__EventTicketClient<T, Null = never, ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> extends Prisma.PrismaPromise<T> {
|
13988
|
-
readonly [Symbol.toStringTag]: "PrismaPromise"
|
13989
|
-
event<T extends EventDefaultArgs<ExtArgs> = {}>(args?: Subset<T, EventDefaultArgs<ExtArgs>>): Prisma__EventClient<$Result.GetResult<Prisma.$EventPayload<ExtArgs>, T, "findUniqueOrThrow"> | Null, Null, ExtArgs>
|
13990
|
-
/**
|
13991
|
-
* Attaches callbacks for the resolution and/or rejection of the Promise.
|
13992
|
-
* @param onfulfilled The callback to execute when the Promise is resolved.
|
13993
|
-
* @param onrejected The callback to execute when the Promise is rejected.
|
13994
|
-
* @returns A Promise for the completion of which ever callback is executed.
|
13995
|
-
*/
|
13996
|
-
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>
|
13997
|
-
/**
|
13998
|
-
* Attaches a callback for only the rejection of the Promise.
|
13999
|
-
* @param onrejected The callback to execute when the Promise is rejected.
|
14000
|
-
* @returns A Promise for the completion of the callback.
|
14001
|
-
*/
|
14002
|
-
catch<TResult = never>(onrejected?: ((reason: any) => TResult | PromiseLike<TResult>) | undefined | null): $Utils.JsPromise<T | TResult>
|
14003
|
-
/**
|
14004
|
-
* Attaches a callback that is invoked when the Promise is settled (fulfilled or rejected). The
|
14005
|
-
* resolved value cannot be modified from the callback.
|
14006
|
-
* @param onfinally The callback to execute when the Promise is settled (fulfilled or rejected).
|
14007
|
-
* @returns A Promise for the completion of the callback.
|
14008
|
-
*/
|
14009
|
-
finally(onfinally?: (() => void) | undefined | null): $Utils.JsPromise<T>
|
14010
|
-
}
|
14011
|
-
|
14012
|
-
|
14013
|
-
|
14014
|
-
|
14015
|
-
/**
|
14016
|
-
* Fields of the EventTicket model
|
14017
|
-
*/
|
14018
|
-
interface EventTicketFieldRefs {
|
14019
|
-
readonly id: FieldRef<"EventTicket", 'String'>
|
14020
|
-
readonly eventId: FieldRef<"EventTicket", 'String'>
|
14021
|
-
readonly amount: FieldRef<"EventTicket", 'Int'>
|
14022
|
-
readonly type: FieldRef<"EventTicket", 'TicketType'>
|
14023
|
-
readonly price: FieldRef<"EventTicket", 'Float'>
|
14024
|
-
readonly created_at: FieldRef<"EventTicket", 'DateTime'>
|
14025
|
-
readonly updated_at: FieldRef<"EventTicket", 'DateTime'>
|
14026
|
-
}
|
14027
|
-
|
14028
|
-
|
14029
|
-
// Custom InputTypes
|
14030
|
-
/**
|
14031
|
-
* EventTicket findUnique
|
14032
|
-
*/
|
14033
|
-
export type EventTicketFindUniqueArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
14034
|
-
/**
|
14035
|
-
* Select specific fields to fetch from the EventTicket
|
14036
|
-
*/
|
14037
|
-
select?: EventTicketSelect<ExtArgs> | null
|
14038
|
-
/**
|
14039
|
-
* Choose, which related nodes to fetch as well
|
14040
|
-
*/
|
14041
|
-
include?: EventTicketInclude<ExtArgs> | null
|
14042
|
-
/**
|
14043
|
-
* Filter, which EventTicket to fetch.
|
14044
|
-
*/
|
14045
|
-
where: EventTicketWhereUniqueInput
|
14046
|
-
}
|
14047
|
-
|
14048
|
-
/**
|
14049
|
-
* EventTicket findUniqueOrThrow
|
14050
|
-
*/
|
14051
|
-
export type EventTicketFindUniqueOrThrowArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
14052
|
-
/**
|
14053
|
-
* Select specific fields to fetch from the EventTicket
|
14054
|
-
*/
|
14055
|
-
select?: EventTicketSelect<ExtArgs> | null
|
14056
|
-
/**
|
14057
|
-
* Choose, which related nodes to fetch as well
|
14058
|
-
*/
|
14059
|
-
include?: EventTicketInclude<ExtArgs> | null
|
14060
|
-
/**
|
14061
|
-
* Filter, which EventTicket to fetch.
|
14062
|
-
*/
|
14063
|
-
where: EventTicketWhereUniqueInput
|
14064
|
-
}
|
14065
|
-
|
14066
|
-
/**
|
14067
|
-
* EventTicket findFirst
|
14068
|
-
*/
|
14069
|
-
export type EventTicketFindFirstArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
14070
|
-
/**
|
14071
|
-
* Select specific fields to fetch from the EventTicket
|
14072
|
-
*/
|
14073
|
-
select?: EventTicketSelect<ExtArgs> | null
|
14074
|
-
/**
|
14075
|
-
* Choose, which related nodes to fetch as well
|
14076
|
-
*/
|
14077
|
-
include?: EventTicketInclude<ExtArgs> | null
|
14078
|
-
/**
|
14079
|
-
* Filter, which EventTicket to fetch.
|
14080
|
-
*/
|
14081
|
-
where?: EventTicketWhereInput
|
14082
|
-
/**
|
14083
|
-
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs}
|
14084
|
-
*
|
14085
|
-
* Determine the order of EventTickets to fetch.
|
14086
|
-
*/
|
14087
|
-
orderBy?: EventTicketOrderByWithRelationInput | EventTicketOrderByWithRelationInput[]
|
14088
|
-
/**
|
14089
|
-
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs}
|
14090
|
-
*
|
14091
|
-
* Sets the position for searching for EventTickets.
|
14092
|
-
*/
|
14093
|
-
cursor?: EventTicketWhereUniqueInput
|
14094
|
-
/**
|
14095
|
-
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
14096
|
-
*
|
14097
|
-
* Take `±n` EventTickets from the position of the cursor.
|
14098
|
-
*/
|
14099
|
-
take?: number
|
14100
|
-
/**
|
14101
|
-
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
14102
|
-
*
|
14103
|
-
* Skip the first `n` EventTickets.
|
14104
|
-
*/
|
14105
|
-
skip?: number
|
14106
|
-
/**
|
14107
|
-
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/distinct Distinct Docs}
|
14108
|
-
*
|
14109
|
-
* Filter by unique combinations of EventTickets.
|
14110
|
-
*/
|
14111
|
-
distinct?: EventTicketScalarFieldEnum | EventTicketScalarFieldEnum[]
|
14112
|
-
}
|
14113
|
-
|
14114
|
-
/**
|
14115
|
-
* EventTicket findFirstOrThrow
|
14116
|
-
*/
|
14117
|
-
export type EventTicketFindFirstOrThrowArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
14118
|
-
/**
|
14119
|
-
* Select specific fields to fetch from the EventTicket
|
14120
|
-
*/
|
14121
|
-
select?: EventTicketSelect<ExtArgs> | null
|
14122
|
-
/**
|
14123
|
-
* Choose, which related nodes to fetch as well
|
14124
|
-
*/
|
14125
|
-
include?: EventTicketInclude<ExtArgs> | null
|
14126
|
-
/**
|
14127
|
-
* Filter, which EventTicket to fetch.
|
14128
|
-
*/
|
14129
|
-
where?: EventTicketWhereInput
|
14130
|
-
/**
|
14131
|
-
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs}
|
14132
|
-
*
|
14133
|
-
* Determine the order of EventTickets to fetch.
|
14134
|
-
*/
|
14135
|
-
orderBy?: EventTicketOrderByWithRelationInput | EventTicketOrderByWithRelationInput[]
|
14136
|
-
/**
|
14137
|
-
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs}
|
14138
|
-
*
|
14139
|
-
* Sets the position for searching for EventTickets.
|
14140
|
-
*/
|
14141
|
-
cursor?: EventTicketWhereUniqueInput
|
14142
|
-
/**
|
14143
|
-
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
14144
|
-
*
|
14145
|
-
* Take `±n` EventTickets from the position of the cursor.
|
14146
|
-
*/
|
14147
|
-
take?: number
|
14148
|
-
/**
|
14149
|
-
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
14150
|
-
*
|
14151
|
-
* Skip the first `n` EventTickets.
|
14152
|
-
*/
|
14153
|
-
skip?: number
|
14154
|
-
/**
|
14155
|
-
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/distinct Distinct Docs}
|
14156
|
-
*
|
14157
|
-
* Filter by unique combinations of EventTickets.
|
14158
|
-
*/
|
14159
|
-
distinct?: EventTicketScalarFieldEnum | EventTicketScalarFieldEnum[]
|
14160
|
-
}
|
14161
|
-
|
14162
|
-
/**
|
14163
|
-
* EventTicket findMany
|
14164
|
-
*/
|
14165
|
-
export type EventTicketFindManyArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
14166
|
-
/**
|
14167
|
-
* Select specific fields to fetch from the EventTicket
|
14168
|
-
*/
|
14169
|
-
select?: EventTicketSelect<ExtArgs> | null
|
14170
|
-
/**
|
14171
|
-
* Choose, which related nodes to fetch as well
|
14172
|
-
*/
|
14173
|
-
include?: EventTicketInclude<ExtArgs> | null
|
14174
|
-
/**
|
14175
|
-
* Filter, which EventTickets to fetch.
|
14176
|
-
*/
|
14177
|
-
where?: EventTicketWhereInput
|
14178
|
-
/**
|
14179
|
-
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs}
|
14180
|
-
*
|
14181
|
-
* Determine the order of EventTickets to fetch.
|
14182
|
-
*/
|
14183
|
-
orderBy?: EventTicketOrderByWithRelationInput | EventTicketOrderByWithRelationInput[]
|
14184
|
-
/**
|
14185
|
-
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs}
|
14186
|
-
*
|
14187
|
-
* Sets the position for listing EventTickets.
|
14188
|
-
*/
|
14189
|
-
cursor?: EventTicketWhereUniqueInput
|
14190
|
-
/**
|
14191
|
-
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
14192
|
-
*
|
14193
|
-
* Take `±n` EventTickets from the position of the cursor.
|
14194
|
-
*/
|
14195
|
-
take?: number
|
14196
|
-
/**
|
14197
|
-
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
14198
|
-
*
|
14199
|
-
* Skip the first `n` EventTickets.
|
14200
|
-
*/
|
14201
|
-
skip?: number
|
14202
|
-
distinct?: EventTicketScalarFieldEnum | EventTicketScalarFieldEnum[]
|
14203
|
-
}
|
14204
|
-
|
14205
|
-
/**
|
14206
|
-
* EventTicket create
|
14207
|
-
*/
|
14208
|
-
export type EventTicketCreateArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
14209
|
-
/**
|
14210
|
-
* Select specific fields to fetch from the EventTicket
|
14211
|
-
*/
|
14212
|
-
select?: EventTicketSelect<ExtArgs> | null
|
14213
|
-
/**
|
14214
|
-
* Choose, which related nodes to fetch as well
|
14215
|
-
*/
|
14216
|
-
include?: EventTicketInclude<ExtArgs> | null
|
14217
|
-
/**
|
14218
|
-
* The data needed to create a EventTicket.
|
14219
|
-
*/
|
14220
|
-
data: XOR<EventTicketCreateInput, EventTicketUncheckedCreateInput>
|
14221
|
-
}
|
14222
|
-
|
14223
|
-
/**
|
14224
|
-
* EventTicket createMany
|
14225
|
-
*/
|
14226
|
-
export type EventTicketCreateManyArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
14227
|
-
/**
|
14228
|
-
* The data used to create many EventTickets.
|
14229
|
-
*/
|
14230
|
-
data: EventTicketCreateManyInput | EventTicketCreateManyInput[]
|
14231
|
-
skipDuplicates?: boolean
|
14232
|
-
}
|
14233
|
-
|
14234
|
-
/**
|
14235
|
-
* EventTicket createManyAndReturn
|
14236
|
-
*/
|
14237
|
-
export type EventTicketCreateManyAndReturnArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
14238
|
-
/**
|
14239
|
-
* Select specific fields to fetch from the EventTicket
|
14240
|
-
*/
|
14241
|
-
select?: EventTicketSelectCreateManyAndReturn<ExtArgs> | null
|
14242
|
-
/**
|
14243
|
-
* The data used to create many EventTickets.
|
14244
|
-
*/
|
14245
|
-
data: EventTicketCreateManyInput | EventTicketCreateManyInput[]
|
14246
|
-
skipDuplicates?: boolean
|
14247
|
-
/**
|
14248
|
-
* Choose, which related nodes to fetch as well
|
14249
|
-
*/
|
14250
|
-
include?: EventTicketIncludeCreateManyAndReturn<ExtArgs> | null
|
14251
|
-
}
|
14252
|
-
|
14253
|
-
/**
|
14254
|
-
* EventTicket update
|
14255
|
-
*/
|
14256
|
-
export type EventTicketUpdateArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
14257
|
-
/**
|
14258
|
-
* Select specific fields to fetch from the EventTicket
|
14259
|
-
*/
|
14260
|
-
select?: EventTicketSelect<ExtArgs> | null
|
14261
|
-
/**
|
14262
|
-
* Choose, which related nodes to fetch as well
|
14263
|
-
*/
|
14264
|
-
include?: EventTicketInclude<ExtArgs> | null
|
14265
|
-
/**
|
14266
|
-
* The data needed to update a EventTicket.
|
14267
|
-
*/
|
14268
|
-
data: XOR<EventTicketUpdateInput, EventTicketUncheckedUpdateInput>
|
14269
|
-
/**
|
14270
|
-
* Choose, which EventTicket to update.
|
14271
|
-
*/
|
14272
|
-
where: EventTicketWhereUniqueInput
|
14273
|
-
}
|
14274
|
-
|
14275
|
-
/**
|
14276
|
-
* EventTicket updateMany
|
14277
|
-
*/
|
14278
|
-
export type EventTicketUpdateManyArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
14279
|
-
/**
|
14280
|
-
* The data used to update EventTickets.
|
14281
|
-
*/
|
14282
|
-
data: XOR<EventTicketUpdateManyMutationInput, EventTicketUncheckedUpdateManyInput>
|
14283
|
-
/**
|
14284
|
-
* Filter which EventTickets to update
|
14285
|
-
*/
|
14286
|
-
where?: EventTicketWhereInput
|
14287
|
-
}
|
14288
|
-
|
14289
|
-
/**
|
14290
|
-
* EventTicket upsert
|
14291
|
-
*/
|
14292
|
-
export type EventTicketUpsertArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
14293
|
-
/**
|
14294
|
-
* Select specific fields to fetch from the EventTicket
|
14295
|
-
*/
|
14296
|
-
select?: EventTicketSelect<ExtArgs> | null
|
14297
|
-
/**
|
14298
|
-
* Choose, which related nodes to fetch as well
|
14299
|
-
*/
|
14300
|
-
include?: EventTicketInclude<ExtArgs> | null
|
14301
|
-
/**
|
14302
|
-
* The filter to search for the EventTicket to update in case it exists.
|
14303
|
-
*/
|
14304
|
-
where: EventTicketWhereUniqueInput
|
14305
|
-
/**
|
14306
|
-
* In case the EventTicket found by the `where` argument doesn't exist, create a new EventTicket with this data.
|
14307
|
-
*/
|
14308
|
-
create: XOR<EventTicketCreateInput, EventTicketUncheckedCreateInput>
|
14309
|
-
/**
|
14310
|
-
* In case the EventTicket was found with the provided `where` argument, update it with this data.
|
14311
|
-
*/
|
14312
|
-
update: XOR<EventTicketUpdateInput, EventTicketUncheckedUpdateInput>
|
14313
|
-
}
|
14314
|
-
|
14315
|
-
/**
|
14316
|
-
* EventTicket delete
|
14317
|
-
*/
|
14318
|
-
export type EventTicketDeleteArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
14319
|
-
/**
|
14320
|
-
* Select specific fields to fetch from the EventTicket
|
14321
|
-
*/
|
14322
|
-
select?: EventTicketSelect<ExtArgs> | null
|
14323
|
-
/**
|
14324
|
-
* Choose, which related nodes to fetch as well
|
14325
|
-
*/
|
14326
|
-
include?: EventTicketInclude<ExtArgs> | null
|
14327
|
-
/**
|
14328
|
-
* Filter which EventTicket to delete.
|
14329
|
-
*/
|
14330
|
-
where: EventTicketWhereUniqueInput
|
14331
|
-
}
|
14332
|
-
|
14333
|
-
/**
|
14334
|
-
* EventTicket deleteMany
|
14335
|
-
*/
|
14336
|
-
export type EventTicketDeleteManyArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
14337
|
-
/**
|
14338
|
-
* Filter which EventTickets to delete
|
14339
|
-
*/
|
14340
|
-
where?: EventTicketWhereInput
|
14341
|
-
}
|
14342
|
-
|
14343
|
-
/**
|
14344
|
-
* EventTicket without action
|
14345
|
-
*/
|
14346
|
-
export type EventTicketDefaultArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
14347
|
-
/**
|
14348
|
-
* Select specific fields to fetch from the EventTicket
|
14349
|
-
*/
|
14350
|
-
select?: EventTicketSelect<ExtArgs> | null
|
14351
|
-
/**
|
14352
|
-
* Choose, which related nodes to fetch as well
|
14353
|
-
*/
|
14354
|
-
include?: EventTicketInclude<ExtArgs> | null
|
14355
|
-
}
|
14356
|
-
|
14357
|
-
|
14358
|
-
/**
|
14359
|
-
* Enums
|
14360
|
-
*/
|
14361
|
-
|
14362
|
-
export const TransactionIsolationLevel: {
|
14363
|
-
ReadUncommitted: 'ReadUncommitted',
|
14364
|
-
ReadCommitted: 'ReadCommitted',
|
14365
|
-
RepeatableRead: 'RepeatableRead',
|
14366
|
-
Serializable: 'Serializable'
|
14367
|
-
};
|
14368
|
-
|
14369
|
-
export type TransactionIsolationLevel = (typeof TransactionIsolationLevel)[keyof typeof TransactionIsolationLevel]
|
14370
|
-
|
14371
|
-
|
14372
|
-
export const AccountScalarFieldEnum: {
|
14373
|
-
id: 'id',
|
14374
|
-
username: 'username',
|
14375
|
-
password: 'password',
|
14376
|
-
role: 'role',
|
14377
|
-
isGlobalFilterActive: 'isGlobalFilterActive',
|
14378
|
-
fcmToken: 'fcmToken',
|
14379
|
-
created_at: 'created_at',
|
14380
|
-
updated_at: 'updated_at'
|
14381
|
-
};
|
14382
|
-
|
14383
|
-
export type AccountScalarFieldEnum = (typeof AccountScalarFieldEnum)[keyof typeof AccountScalarFieldEnum]
|
14384
|
-
|
14385
|
-
|
14386
|
-
export const ProfileScalarFieldEnum: {
|
14387
|
-
id: 'id',
|
14388
|
-
shortId: 'shortId',
|
14389
|
-
phoneNumber: 'phoneNumber',
|
14390
|
-
secondaryPhoneNumber: 'secondaryPhoneNumber',
|
14391
|
-
fullName: 'fullName',
|
14392
|
-
firstName: 'firstName',
|
14393
|
-
gender: 'gender',
|
14394
|
-
birthDate: 'birthDate',
|
14395
|
-
profilePictureUrl: 'profilePictureUrl',
|
14396
|
-
instagram: 'instagram',
|
14397
|
-
mail: 'mail',
|
14398
|
-
dni: 'dni',
|
14399
|
-
alternativeNames: 'alternativeNames',
|
14400
|
-
birthLocationId: 'birthLocationId',
|
14401
|
-
residenceLocationId: 'residenceLocationId',
|
14402
|
-
isInTrash: 'isInTrash',
|
14403
|
-
movedToTrashDate: 'movedToTrashDate',
|
14404
|
-
created_at: 'created_at',
|
14405
|
-
updated_at: 'updated_at'
|
14406
|
-
};
|
14407
|
-
|
14408
|
-
export type ProfileScalarFieldEnum = (typeof ProfileScalarFieldEnum)[keyof typeof ProfileScalarFieldEnum]
|
14409
|
-
|
14410
|
-
|
14411
|
-
export const LocationScalarFieldEnum: {
|
14412
|
-
id: 'id',
|
14413
|
-
latitude: 'latitude',
|
14414
|
-
longitude: 'longitude',
|
14415
|
-
country: 'country',
|
14416
|
-
state: 'state',
|
14417
|
-
city: 'city',
|
14418
|
-
created_at: 'created_at',
|
14419
|
-
updated_at: 'updated_at'
|
14420
|
-
};
|
14421
|
-
|
14422
|
-
export type LocationScalarFieldEnum = (typeof LocationScalarFieldEnum)[keyof typeof LocationScalarFieldEnum]
|
13205
|
+
export type LocationScalarFieldEnum = (typeof LocationScalarFieldEnum)[keyof typeof LocationScalarFieldEnum]
|
14423
13206
|
|
14424
13207
|
|
14425
13208
|
export const CommentScalarFieldEnum: {
|
@@ -14466,8 +13249,6 @@ export namespace Prisma {
|
|
14466
13249
|
id: 'id',
|
14467
13250
|
name: 'name',
|
14468
13251
|
date: 'date',
|
14469
|
-
starting_date: 'starting_date',
|
14470
|
-
ending_date: 'ending_date',
|
14471
13252
|
location: 'location',
|
14472
13253
|
folderId: 'folderId',
|
14473
13254
|
tagAssistedId: 'tagAssistedId',
|
@@ -14524,19 +13305,6 @@ export namespace Prisma {
|
|
14524
13305
|
export type EnumsScalarFieldEnum = (typeof EnumsScalarFieldEnum)[keyof typeof EnumsScalarFieldEnum]
|
14525
13306
|
|
14526
13307
|
|
14527
|
-
export const EventTicketScalarFieldEnum: {
|
14528
|
-
id: 'id',
|
14529
|
-
eventId: 'eventId',
|
14530
|
-
amount: 'amount',
|
14531
|
-
type: 'type',
|
14532
|
-
price: 'price',
|
14533
|
-
created_at: 'created_at',
|
14534
|
-
updated_at: 'updated_at'
|
14535
|
-
};
|
14536
|
-
|
14537
|
-
export type EventTicketScalarFieldEnum = (typeof EventTicketScalarFieldEnum)[keyof typeof EventTicketScalarFieldEnum]
|
14538
|
-
|
14539
|
-
|
14540
13308
|
export const SortOrder: {
|
14541
13309
|
asc: 'asc',
|
14542
13310
|
desc: 'desc'
|
@@ -14720,20 +13488,6 @@ export namespace Prisma {
|
|
14720
13488
|
*/
|
14721
13489
|
export type ListEnumTemplateCategoryFieldRefInput<$PrismaModel> = FieldRefInputType<$PrismaModel, 'TemplateCategory[]'>
|
14722
13490
|
|
14723
|
-
|
14724
|
-
|
14725
|
-
/**
|
14726
|
-
* Reference to a field of type 'TicketType'
|
14727
|
-
*/
|
14728
|
-
export type EnumTicketTypeFieldRefInput<$PrismaModel> = FieldRefInputType<$PrismaModel, 'TicketType'>
|
14729
|
-
|
14730
|
-
|
14731
|
-
|
14732
|
-
/**
|
14733
|
-
* Reference to a field of type 'TicketType[]'
|
14734
|
-
*/
|
14735
|
-
export type ListEnumTicketTypeFieldRefInput<$PrismaModel> = FieldRefInputType<$PrismaModel, 'TicketType[]'>
|
14736
|
-
|
14737
13491
|
/**
|
14738
13492
|
* Deep Input Types
|
14739
13493
|
*/
|
@@ -15135,7 +13889,6 @@ export namespace Prisma {
|
|
15135
13889
|
accounts?: AccountListRelationFilter
|
15136
13890
|
profiles?: ProfileListRelationFilter
|
15137
13891
|
accountsGlobalFilter?: AccountListRelationFilter
|
15138
|
-
Event?: EventListRelationFilter
|
15139
13892
|
}
|
15140
13893
|
|
15141
13894
|
export type TagOrderByWithRelationInput = {
|
@@ -15151,7 +13904,6 @@ export namespace Prisma {
|
|
15151
13904
|
accounts?: AccountOrderByRelationAggregateInput
|
15152
13905
|
profiles?: ProfileOrderByRelationAggregateInput
|
15153
13906
|
accountsGlobalFilter?: AccountOrderByRelationAggregateInput
|
15154
|
-
Event?: EventOrderByRelationAggregateInput
|
15155
13907
|
}
|
15156
13908
|
|
15157
13909
|
export type TagWhereUniqueInput = Prisma.AtLeast<{
|
@@ -15170,7 +13922,6 @@ export namespace Prisma {
|
|
15170
13922
|
accounts?: AccountListRelationFilter
|
15171
13923
|
profiles?: ProfileListRelationFilter
|
15172
13924
|
accountsGlobalFilter?: AccountListRelationFilter
|
15173
|
-
Event?: EventListRelationFilter
|
15174
13925
|
}, "id">
|
15175
13926
|
|
15176
13927
|
export type TagOrderByWithAggregationInput = {
|
@@ -15264,8 +14015,6 @@ export namespace Prisma {
|
|
15264
14015
|
id?: StringFilter<"Event"> | string
|
15265
14016
|
name?: StringFilter<"Event"> | string
|
15266
14017
|
date?: DateTimeFilter<"Event"> | Date | string
|
15267
|
-
starting_date?: DateTimeFilter<"Event"> | Date | string
|
15268
|
-
ending_date?: DateTimeFilter<"Event"> | Date | string
|
15269
14018
|
location?: StringFilter<"Event"> | string
|
15270
14019
|
folderId?: StringNullableFilter<"Event"> | string | null
|
15271
14020
|
tagAssistedId?: StringFilter<"Event"> | string
|
@@ -15278,16 +14027,12 @@ export namespace Prisma {
|
|
15278
14027
|
tagConfirmed?: XOR<TagRelationFilter, TagWhereInput>
|
15279
14028
|
supraEvent?: XOR<EventNullableRelationFilter, EventWhereInput> | null
|
15280
14029
|
subEvents?: EventListRelationFilter
|
15281
|
-
tags?: TagListRelationFilter
|
15282
|
-
eventTickets?: EventTicketListRelationFilter
|
15283
14030
|
}
|
15284
14031
|
|
15285
14032
|
export type EventOrderByWithRelationInput = {
|
15286
14033
|
id?: SortOrder
|
15287
14034
|
name?: SortOrder
|
15288
14035
|
date?: SortOrder
|
15289
|
-
starting_date?: SortOrder
|
15290
|
-
ending_date?: SortOrder
|
15291
14036
|
location?: SortOrder
|
15292
14037
|
folderId?: SortOrderInput | SortOrder
|
15293
14038
|
tagAssistedId?: SortOrder
|
@@ -15300,8 +14045,6 @@ export namespace Prisma {
|
|
15300
14045
|
tagConfirmed?: TagOrderByWithRelationInput
|
15301
14046
|
supraEvent?: EventOrderByWithRelationInput
|
15302
14047
|
subEvents?: EventOrderByRelationAggregateInput
|
15303
|
-
tags?: TagOrderByRelationAggregateInput
|
15304
|
-
eventTickets?: EventTicketOrderByRelationAggregateInput
|
15305
14048
|
}
|
15306
14049
|
|
15307
14050
|
export type EventWhereUniqueInput = Prisma.AtLeast<{
|
@@ -15313,8 +14056,6 @@ export namespace Prisma {
|
|
15313
14056
|
NOT?: EventWhereInput | EventWhereInput[]
|
15314
14057
|
name?: StringFilter<"Event"> | string
|
15315
14058
|
date?: DateTimeFilter<"Event"> | Date | string
|
15316
|
-
starting_date?: DateTimeFilter<"Event"> | Date | string
|
15317
|
-
ending_date?: DateTimeFilter<"Event"> | Date | string
|
15318
14059
|
location?: StringFilter<"Event"> | string
|
15319
14060
|
folderId?: StringNullableFilter<"Event"> | string | null
|
15320
14061
|
supraEventId?: StringNullableFilter<"Event"> | string | null
|
@@ -15325,16 +14066,12 @@ export namespace Prisma {
|
|
15325
14066
|
tagConfirmed?: XOR<TagRelationFilter, TagWhereInput>
|
15326
14067
|
supraEvent?: XOR<EventNullableRelationFilter, EventWhereInput> | null
|
15327
14068
|
subEvents?: EventListRelationFilter
|
15328
|
-
tags?: TagListRelationFilter
|
15329
|
-
eventTickets?: EventTicketListRelationFilter
|
15330
14069
|
}, "id" | "tagAssistedId" | "tagConfirmedId">
|
15331
14070
|
|
15332
14071
|
export type EventOrderByWithAggregationInput = {
|
15333
14072
|
id?: SortOrder
|
15334
14073
|
name?: SortOrder
|
15335
14074
|
date?: SortOrder
|
15336
|
-
starting_date?: SortOrder
|
15337
|
-
ending_date?: SortOrder
|
15338
14075
|
location?: SortOrder
|
15339
14076
|
folderId?: SortOrderInput | SortOrder
|
15340
14077
|
tagAssistedId?: SortOrder
|
@@ -15354,8 +14091,6 @@ export namespace Prisma {
|
|
15354
14091
|
id?: StringWithAggregatesFilter<"Event"> | string
|
15355
14092
|
name?: StringWithAggregatesFilter<"Event"> | string
|
15356
14093
|
date?: DateTimeWithAggregatesFilter<"Event"> | Date | string
|
15357
|
-
starting_date?: DateTimeWithAggregatesFilter<"Event"> | Date | string
|
15358
|
-
ending_date?: DateTimeWithAggregatesFilter<"Event"> | Date | string
|
15359
14094
|
location?: StringWithAggregatesFilter<"Event"> | string
|
15360
14095
|
folderId?: StringNullableWithAggregatesFilter<"Event"> | string | null
|
15361
14096
|
tagAssistedId?: StringWithAggregatesFilter<"Event"> | string
|
@@ -15579,73 +14314,6 @@ export namespace Prisma {
|
|
15579
14314
|
templateCategory?: EnumTemplateCategoryWithAggregatesFilter<"Enums"> | $Enums.TemplateCategory
|
15580
14315
|
}
|
15581
14316
|
|
15582
|
-
export type EventTicketWhereInput = {
|
15583
|
-
AND?: EventTicketWhereInput | EventTicketWhereInput[]
|
15584
|
-
OR?: EventTicketWhereInput[]
|
15585
|
-
NOT?: EventTicketWhereInput | EventTicketWhereInput[]
|
15586
|
-
id?: StringFilter<"EventTicket"> | string
|
15587
|
-
eventId?: StringFilter<"EventTicket"> | string
|
15588
|
-
amount?: IntFilter<"EventTicket"> | number
|
15589
|
-
type?: EnumTicketTypeFilter<"EventTicket"> | $Enums.TicketType
|
15590
|
-
price?: FloatNullableFilter<"EventTicket"> | number | null
|
15591
|
-
created_at?: DateTimeFilter<"EventTicket"> | Date | string
|
15592
|
-
updated_at?: DateTimeFilter<"EventTicket"> | Date | string
|
15593
|
-
event?: XOR<EventRelationFilter, EventWhereInput>
|
15594
|
-
}
|
15595
|
-
|
15596
|
-
export type EventTicketOrderByWithRelationInput = {
|
15597
|
-
id?: SortOrder
|
15598
|
-
eventId?: SortOrder
|
15599
|
-
amount?: SortOrder
|
15600
|
-
type?: SortOrder
|
15601
|
-
price?: SortOrderInput | SortOrder
|
15602
|
-
created_at?: SortOrder
|
15603
|
-
updated_at?: SortOrder
|
15604
|
-
event?: EventOrderByWithRelationInput
|
15605
|
-
}
|
15606
|
-
|
15607
|
-
export type EventTicketWhereUniqueInput = Prisma.AtLeast<{
|
15608
|
-
id?: string
|
15609
|
-
AND?: EventTicketWhereInput | EventTicketWhereInput[]
|
15610
|
-
OR?: EventTicketWhereInput[]
|
15611
|
-
NOT?: EventTicketWhereInput | EventTicketWhereInput[]
|
15612
|
-
eventId?: StringFilter<"EventTicket"> | string
|
15613
|
-
amount?: IntFilter<"EventTicket"> | number
|
15614
|
-
type?: EnumTicketTypeFilter<"EventTicket"> | $Enums.TicketType
|
15615
|
-
price?: FloatNullableFilter<"EventTicket"> | number | null
|
15616
|
-
created_at?: DateTimeFilter<"EventTicket"> | Date | string
|
15617
|
-
updated_at?: DateTimeFilter<"EventTicket"> | Date | string
|
15618
|
-
event?: XOR<EventRelationFilter, EventWhereInput>
|
15619
|
-
}, "id">
|
15620
|
-
|
15621
|
-
export type EventTicketOrderByWithAggregationInput = {
|
15622
|
-
id?: SortOrder
|
15623
|
-
eventId?: SortOrder
|
15624
|
-
amount?: SortOrder
|
15625
|
-
type?: SortOrder
|
15626
|
-
price?: SortOrderInput | SortOrder
|
15627
|
-
created_at?: SortOrder
|
15628
|
-
updated_at?: SortOrder
|
15629
|
-
_count?: EventTicketCountOrderByAggregateInput
|
15630
|
-
_avg?: EventTicketAvgOrderByAggregateInput
|
15631
|
-
_max?: EventTicketMaxOrderByAggregateInput
|
15632
|
-
_min?: EventTicketMinOrderByAggregateInput
|
15633
|
-
_sum?: EventTicketSumOrderByAggregateInput
|
15634
|
-
}
|
15635
|
-
|
15636
|
-
export type EventTicketScalarWhereWithAggregatesInput = {
|
15637
|
-
AND?: EventTicketScalarWhereWithAggregatesInput | EventTicketScalarWhereWithAggregatesInput[]
|
15638
|
-
OR?: EventTicketScalarWhereWithAggregatesInput[]
|
15639
|
-
NOT?: EventTicketScalarWhereWithAggregatesInput | EventTicketScalarWhereWithAggregatesInput[]
|
15640
|
-
id?: StringWithAggregatesFilter<"EventTicket"> | string
|
15641
|
-
eventId?: StringWithAggregatesFilter<"EventTicket"> | string
|
15642
|
-
amount?: IntWithAggregatesFilter<"EventTicket"> | number
|
15643
|
-
type?: EnumTicketTypeWithAggregatesFilter<"EventTicket"> | $Enums.TicketType
|
15644
|
-
price?: FloatNullableWithAggregatesFilter<"EventTicket"> | number | null
|
15645
|
-
created_at?: DateTimeWithAggregatesFilter<"EventTicket"> | Date | string
|
15646
|
-
updated_at?: DateTimeWithAggregatesFilter<"EventTicket"> | Date | string
|
15647
|
-
}
|
15648
|
-
|
15649
14317
|
export type AccountCreateInput = {
|
15650
14318
|
id?: string
|
15651
14319
|
username: string
|
@@ -16088,7 +14756,6 @@ export namespace Prisma {
|
|
16088
14756
|
accounts?: AccountCreateNestedManyWithoutTagsInput
|
16089
14757
|
profiles?: ProfileCreateNestedManyWithoutTagsInput
|
16090
14758
|
accountsGlobalFilter?: AccountCreateNestedManyWithoutGlobalFilterInput
|
16091
|
-
Event?: EventCreateNestedManyWithoutTagsInput
|
16092
14759
|
}
|
16093
14760
|
|
16094
14761
|
export type TagUncheckedCreateInput = {
|
@@ -16103,7 +14770,6 @@ export namespace Prisma {
|
|
16103
14770
|
accounts?: AccountUncheckedCreateNestedManyWithoutTagsInput
|
16104
14771
|
profiles?: ProfileUncheckedCreateNestedManyWithoutTagsInput
|
16105
14772
|
accountsGlobalFilter?: AccountUncheckedCreateNestedManyWithoutGlobalFilterInput
|
16106
|
-
Event?: EventUncheckedCreateNestedManyWithoutTagsInput
|
16107
14773
|
}
|
16108
14774
|
|
16109
14775
|
export type TagUpdateInput = {
|
@@ -16118,7 +14784,6 @@ export namespace Prisma {
|
|
16118
14784
|
accounts?: AccountUpdateManyWithoutTagsNestedInput
|
16119
14785
|
profiles?: ProfileUpdateManyWithoutTagsNestedInput
|
16120
14786
|
accountsGlobalFilter?: AccountUpdateManyWithoutGlobalFilterNestedInput
|
16121
|
-
Event?: EventUpdateManyWithoutTagsNestedInput
|
16122
14787
|
}
|
16123
14788
|
|
16124
14789
|
export type TagUncheckedUpdateInput = {
|
@@ -16133,7 +14798,6 @@ export namespace Prisma {
|
|
16133
14798
|
accounts?: AccountUncheckedUpdateManyWithoutTagsNestedInput
|
16134
14799
|
profiles?: ProfileUncheckedUpdateManyWithoutTagsNestedInput
|
16135
14800
|
accountsGlobalFilter?: AccountUncheckedUpdateManyWithoutGlobalFilterNestedInput
|
16136
|
-
Event?: EventUncheckedUpdateManyWithoutTagsNestedInput
|
16137
14801
|
}
|
16138
14802
|
|
16139
14803
|
export type TagCreateManyInput = {
|
@@ -16233,8 +14897,6 @@ export namespace Prisma {
|
|
16233
14897
|
id?: string
|
16234
14898
|
name: string
|
16235
14899
|
date: Date | string
|
16236
|
-
starting_date: Date | string
|
16237
|
-
ending_date: Date | string
|
16238
14900
|
location: string
|
16239
14901
|
created_at?: Date | string
|
16240
14902
|
updated_at?: Date | string
|
@@ -16243,16 +14905,12 @@ export namespace Prisma {
|
|
16243
14905
|
tagConfirmed: TagCreateNestedOneWithoutConfirmedEventInput
|
16244
14906
|
supraEvent?: EventCreateNestedOneWithoutSubEventsInput
|
16245
14907
|
subEvents?: EventCreateNestedManyWithoutSupraEventInput
|
16246
|
-
tags?: TagCreateNestedManyWithoutEventInput
|
16247
|
-
eventTickets?: EventTicketCreateNestedManyWithoutEventInput
|
16248
14908
|
}
|
16249
14909
|
|
16250
14910
|
export type EventUncheckedCreateInput = {
|
16251
14911
|
id?: string
|
16252
14912
|
name: string
|
16253
14913
|
date: Date | string
|
16254
|
-
starting_date: Date | string
|
16255
|
-
ending_date: Date | string
|
16256
14914
|
location: string
|
16257
14915
|
folderId?: string | null
|
16258
14916
|
tagAssistedId: string
|
@@ -16261,16 +14919,12 @@ export namespace Prisma {
|
|
16261
14919
|
created_at?: Date | string
|
16262
14920
|
updated_at?: Date | string
|
16263
14921
|
subEvents?: EventUncheckedCreateNestedManyWithoutSupraEventInput
|
16264
|
-
tags?: TagUncheckedCreateNestedManyWithoutEventInput
|
16265
|
-
eventTickets?: EventTicketUncheckedCreateNestedManyWithoutEventInput
|
16266
14922
|
}
|
16267
14923
|
|
16268
14924
|
export type EventUpdateInput = {
|
16269
14925
|
id?: StringFieldUpdateOperationsInput | string
|
16270
14926
|
name?: StringFieldUpdateOperationsInput | string
|
16271
14927
|
date?: DateTimeFieldUpdateOperationsInput | Date | string
|
16272
|
-
starting_date?: DateTimeFieldUpdateOperationsInput | Date | string
|
16273
|
-
ending_date?: DateTimeFieldUpdateOperationsInput | Date | string
|
16274
14928
|
location?: StringFieldUpdateOperationsInput | string
|
16275
14929
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
16276
14930
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
@@ -16279,16 +14933,12 @@ export namespace Prisma {
|
|
16279
14933
|
tagConfirmed?: TagUpdateOneRequiredWithoutConfirmedEventNestedInput
|
16280
14934
|
supraEvent?: EventUpdateOneWithoutSubEventsNestedInput
|
16281
14935
|
subEvents?: EventUpdateManyWithoutSupraEventNestedInput
|
16282
|
-
tags?: TagUpdateManyWithoutEventNestedInput
|
16283
|
-
eventTickets?: EventTicketUpdateManyWithoutEventNestedInput
|
16284
14936
|
}
|
16285
14937
|
|
16286
14938
|
export type EventUncheckedUpdateInput = {
|
16287
14939
|
id?: StringFieldUpdateOperationsInput | string
|
16288
14940
|
name?: StringFieldUpdateOperationsInput | string
|
16289
14941
|
date?: DateTimeFieldUpdateOperationsInput | Date | string
|
16290
|
-
starting_date?: DateTimeFieldUpdateOperationsInput | Date | string
|
16291
|
-
ending_date?: DateTimeFieldUpdateOperationsInput | Date | string
|
16292
14942
|
location?: StringFieldUpdateOperationsInput | string
|
16293
14943
|
folderId?: NullableStringFieldUpdateOperationsInput | string | null
|
16294
14944
|
tagAssistedId?: StringFieldUpdateOperationsInput | string
|
@@ -16297,16 +14947,12 @@ export namespace Prisma {
|
|
16297
14947
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
16298
14948
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
16299
14949
|
subEvents?: EventUncheckedUpdateManyWithoutSupraEventNestedInput
|
16300
|
-
tags?: TagUncheckedUpdateManyWithoutEventNestedInput
|
16301
|
-
eventTickets?: EventTicketUncheckedUpdateManyWithoutEventNestedInput
|
16302
14950
|
}
|
16303
14951
|
|
16304
14952
|
export type EventCreateManyInput = {
|
16305
14953
|
id?: string
|
16306
14954
|
name: string
|
16307
14955
|
date: Date | string
|
16308
|
-
starting_date: Date | string
|
16309
|
-
ending_date: Date | string
|
16310
14956
|
location: string
|
16311
14957
|
folderId?: string | null
|
16312
14958
|
tagAssistedId: string
|
@@ -16320,8 +14966,6 @@ export namespace Prisma {
|
|
16320
14966
|
id?: StringFieldUpdateOperationsInput | string
|
16321
14967
|
name?: StringFieldUpdateOperationsInput | string
|
16322
14968
|
date?: DateTimeFieldUpdateOperationsInput | Date | string
|
16323
|
-
starting_date?: DateTimeFieldUpdateOperationsInput | Date | string
|
16324
|
-
ending_date?: DateTimeFieldUpdateOperationsInput | Date | string
|
16325
14969
|
location?: StringFieldUpdateOperationsInput | string
|
16326
14970
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
16327
14971
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
@@ -16331,8 +14975,6 @@ export namespace Prisma {
|
|
16331
14975
|
id?: StringFieldUpdateOperationsInput | string
|
16332
14976
|
name?: StringFieldUpdateOperationsInput | string
|
16333
14977
|
date?: DateTimeFieldUpdateOperationsInput | Date | string
|
16334
|
-
starting_date?: DateTimeFieldUpdateOperationsInput | Date | string
|
16335
|
-
ending_date?: DateTimeFieldUpdateOperationsInput | Date | string
|
16336
14978
|
location?: StringFieldUpdateOperationsInput | string
|
16337
14979
|
folderId?: NullableStringFieldUpdateOperationsInput | string | null
|
16338
14980
|
tagAssistedId?: StringFieldUpdateOperationsInput | string
|
@@ -16569,75 +15211,6 @@ export namespace Prisma {
|
|
16569
15211
|
templateCategory?: EnumTemplateCategoryFieldUpdateOperationsInput | $Enums.TemplateCategory
|
16570
15212
|
}
|
16571
15213
|
|
16572
|
-
export type EventTicketCreateInput = {
|
16573
|
-
id?: string
|
16574
|
-
amount: number
|
16575
|
-
type: $Enums.TicketType
|
16576
|
-
price?: number | null
|
16577
|
-
created_at?: Date | string
|
16578
|
-
updated_at?: Date | string
|
16579
|
-
event: EventCreateNestedOneWithoutEventTicketsInput
|
16580
|
-
}
|
16581
|
-
|
16582
|
-
export type EventTicketUncheckedCreateInput = {
|
16583
|
-
id?: string
|
16584
|
-
eventId: string
|
16585
|
-
amount: number
|
16586
|
-
type: $Enums.TicketType
|
16587
|
-
price?: number | null
|
16588
|
-
created_at?: Date | string
|
16589
|
-
updated_at?: Date | string
|
16590
|
-
}
|
16591
|
-
|
16592
|
-
export type EventTicketUpdateInput = {
|
16593
|
-
id?: StringFieldUpdateOperationsInput | string
|
16594
|
-
amount?: IntFieldUpdateOperationsInput | number
|
16595
|
-
type?: EnumTicketTypeFieldUpdateOperationsInput | $Enums.TicketType
|
16596
|
-
price?: NullableFloatFieldUpdateOperationsInput | number | null
|
16597
|
-
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
16598
|
-
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
16599
|
-
event?: EventUpdateOneRequiredWithoutEventTicketsNestedInput
|
16600
|
-
}
|
16601
|
-
|
16602
|
-
export type EventTicketUncheckedUpdateInput = {
|
16603
|
-
id?: StringFieldUpdateOperationsInput | string
|
16604
|
-
eventId?: StringFieldUpdateOperationsInput | string
|
16605
|
-
amount?: IntFieldUpdateOperationsInput | number
|
16606
|
-
type?: EnumTicketTypeFieldUpdateOperationsInput | $Enums.TicketType
|
16607
|
-
price?: NullableFloatFieldUpdateOperationsInput | number | null
|
16608
|
-
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
16609
|
-
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
16610
|
-
}
|
16611
|
-
|
16612
|
-
export type EventTicketCreateManyInput = {
|
16613
|
-
id?: string
|
16614
|
-
eventId: string
|
16615
|
-
amount: number
|
16616
|
-
type: $Enums.TicketType
|
16617
|
-
price?: number | null
|
16618
|
-
created_at?: Date | string
|
16619
|
-
updated_at?: Date | string
|
16620
|
-
}
|
16621
|
-
|
16622
|
-
export type EventTicketUpdateManyMutationInput = {
|
16623
|
-
id?: StringFieldUpdateOperationsInput | string
|
16624
|
-
amount?: IntFieldUpdateOperationsInput | number
|
16625
|
-
type?: EnumTicketTypeFieldUpdateOperationsInput | $Enums.TicketType
|
16626
|
-
price?: NullableFloatFieldUpdateOperationsInput | number | null
|
16627
|
-
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
16628
|
-
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
16629
|
-
}
|
16630
|
-
|
16631
|
-
export type EventTicketUncheckedUpdateManyInput = {
|
16632
|
-
id?: StringFieldUpdateOperationsInput | string
|
16633
|
-
eventId?: StringFieldUpdateOperationsInput | string
|
16634
|
-
amount?: IntFieldUpdateOperationsInput | number
|
16635
|
-
type?: EnumTicketTypeFieldUpdateOperationsInput | $Enums.TicketType
|
16636
|
-
price?: NullableFloatFieldUpdateOperationsInput | number | null
|
16637
|
-
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
16638
|
-
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
16639
|
-
}
|
16640
|
-
|
16641
15214
|
export type StringFilter<$PrismaModel = never> = {
|
16642
15215
|
equals?: string | StringFieldRefInput<$PrismaModel>
|
16643
15216
|
in?: string[] | ListStringFieldRefInput<$PrismaModel>
|
@@ -17124,20 +15697,10 @@ export namespace Prisma {
|
|
17124
15697
|
none?: AccountWhereInput
|
17125
15698
|
}
|
17126
15699
|
|
17127
|
-
export type EventListRelationFilter = {
|
17128
|
-
every?: EventWhereInput
|
17129
|
-
some?: EventWhereInput
|
17130
|
-
none?: EventWhereInput
|
17131
|
-
}
|
17132
|
-
|
17133
15700
|
export type AccountOrderByRelationAggregateInput = {
|
17134
15701
|
_count?: SortOrder
|
17135
15702
|
}
|
17136
15703
|
|
17137
|
-
export type EventOrderByRelationAggregateInput = {
|
17138
|
-
_count?: SortOrder
|
17139
|
-
}
|
17140
|
-
|
17141
15704
|
export type TagCountOrderByAggregateInput = {
|
17142
15705
|
id?: SortOrder
|
17143
15706
|
name?: SortOrder
|
@@ -17212,13 +15775,13 @@ export namespace Prisma {
|
|
17212
15775
|
isNot?: TagWhereInput
|
17213
15776
|
}
|
17214
15777
|
|
17215
|
-
export type
|
17216
|
-
every?:
|
17217
|
-
some?:
|
17218
|
-
none?:
|
15778
|
+
export type EventListRelationFilter = {
|
15779
|
+
every?: EventWhereInput
|
15780
|
+
some?: EventWhereInput
|
15781
|
+
none?: EventWhereInput
|
17219
15782
|
}
|
17220
15783
|
|
17221
|
-
export type
|
15784
|
+
export type EventOrderByRelationAggregateInput = {
|
17222
15785
|
_count?: SortOrder
|
17223
15786
|
}
|
17224
15787
|
|
@@ -17226,8 +15789,6 @@ export namespace Prisma {
|
|
17226
15789
|
id?: SortOrder
|
17227
15790
|
name?: SortOrder
|
17228
15791
|
date?: SortOrder
|
17229
|
-
starting_date?: SortOrder
|
17230
|
-
ending_date?: SortOrder
|
17231
15792
|
location?: SortOrder
|
17232
15793
|
folderId?: SortOrder
|
17233
15794
|
tagAssistedId?: SortOrder
|
@@ -17241,8 +15802,6 @@ export namespace Prisma {
|
|
17241
15802
|
id?: SortOrder
|
17242
15803
|
name?: SortOrder
|
17243
15804
|
date?: SortOrder
|
17244
|
-
starting_date?: SortOrder
|
17245
|
-
ending_date?: SortOrder
|
17246
15805
|
location?: SortOrder
|
17247
15806
|
folderId?: SortOrder
|
17248
15807
|
tagAssistedId?: SortOrder
|
@@ -17256,8 +15815,6 @@ export namespace Prisma {
|
|
17256
15815
|
id?: SortOrder
|
17257
15816
|
name?: SortOrder
|
17258
15817
|
date?: SortOrder
|
17259
|
-
starting_date?: SortOrder
|
17260
|
-
ending_date?: SortOrder
|
17261
15818
|
location?: SortOrder
|
17262
15819
|
folderId?: SortOrder
|
17263
15820
|
tagAssistedId?: SortOrder
|
@@ -17459,95 +16016,6 @@ export namespace Prisma {
|
|
17459
16016
|
_max?: NestedEnumTemplateCategoryFilter<$PrismaModel>
|
17460
16017
|
}
|
17461
16018
|
|
17462
|
-
export type EnumTicketTypeFilter<$PrismaModel = never> = {
|
17463
|
-
equals?: $Enums.TicketType | EnumTicketTypeFieldRefInput<$PrismaModel>
|
17464
|
-
in?: $Enums.TicketType[] | ListEnumTicketTypeFieldRefInput<$PrismaModel>
|
17465
|
-
notIn?: $Enums.TicketType[] | ListEnumTicketTypeFieldRefInput<$PrismaModel>
|
17466
|
-
not?: NestedEnumTicketTypeFilter<$PrismaModel> | $Enums.TicketType
|
17467
|
-
}
|
17468
|
-
|
17469
|
-
export type FloatNullableFilter<$PrismaModel = never> = {
|
17470
|
-
equals?: number | FloatFieldRefInput<$PrismaModel> | null
|
17471
|
-
in?: number[] | ListFloatFieldRefInput<$PrismaModel> | null
|
17472
|
-
notIn?: number[] | ListFloatFieldRefInput<$PrismaModel> | null
|
17473
|
-
lt?: number | FloatFieldRefInput<$PrismaModel>
|
17474
|
-
lte?: number | FloatFieldRefInput<$PrismaModel>
|
17475
|
-
gt?: number | FloatFieldRefInput<$PrismaModel>
|
17476
|
-
gte?: number | FloatFieldRefInput<$PrismaModel>
|
17477
|
-
not?: NestedFloatNullableFilter<$PrismaModel> | number | null
|
17478
|
-
}
|
17479
|
-
|
17480
|
-
export type EventRelationFilter = {
|
17481
|
-
is?: EventWhereInput
|
17482
|
-
isNot?: EventWhereInput
|
17483
|
-
}
|
17484
|
-
|
17485
|
-
export type EventTicketCountOrderByAggregateInput = {
|
17486
|
-
id?: SortOrder
|
17487
|
-
eventId?: SortOrder
|
17488
|
-
amount?: SortOrder
|
17489
|
-
type?: SortOrder
|
17490
|
-
price?: SortOrder
|
17491
|
-
created_at?: SortOrder
|
17492
|
-
updated_at?: SortOrder
|
17493
|
-
}
|
17494
|
-
|
17495
|
-
export type EventTicketAvgOrderByAggregateInput = {
|
17496
|
-
amount?: SortOrder
|
17497
|
-
price?: SortOrder
|
17498
|
-
}
|
17499
|
-
|
17500
|
-
export type EventTicketMaxOrderByAggregateInput = {
|
17501
|
-
id?: SortOrder
|
17502
|
-
eventId?: SortOrder
|
17503
|
-
amount?: SortOrder
|
17504
|
-
type?: SortOrder
|
17505
|
-
price?: SortOrder
|
17506
|
-
created_at?: SortOrder
|
17507
|
-
updated_at?: SortOrder
|
17508
|
-
}
|
17509
|
-
|
17510
|
-
export type EventTicketMinOrderByAggregateInput = {
|
17511
|
-
id?: SortOrder
|
17512
|
-
eventId?: SortOrder
|
17513
|
-
amount?: SortOrder
|
17514
|
-
type?: SortOrder
|
17515
|
-
price?: SortOrder
|
17516
|
-
created_at?: SortOrder
|
17517
|
-
updated_at?: SortOrder
|
17518
|
-
}
|
17519
|
-
|
17520
|
-
export type EventTicketSumOrderByAggregateInput = {
|
17521
|
-
amount?: SortOrder
|
17522
|
-
price?: SortOrder
|
17523
|
-
}
|
17524
|
-
|
17525
|
-
export type EnumTicketTypeWithAggregatesFilter<$PrismaModel = never> = {
|
17526
|
-
equals?: $Enums.TicketType | EnumTicketTypeFieldRefInput<$PrismaModel>
|
17527
|
-
in?: $Enums.TicketType[] | ListEnumTicketTypeFieldRefInput<$PrismaModel>
|
17528
|
-
notIn?: $Enums.TicketType[] | ListEnumTicketTypeFieldRefInput<$PrismaModel>
|
17529
|
-
not?: NestedEnumTicketTypeWithAggregatesFilter<$PrismaModel> | $Enums.TicketType
|
17530
|
-
_count?: NestedIntFilter<$PrismaModel>
|
17531
|
-
_min?: NestedEnumTicketTypeFilter<$PrismaModel>
|
17532
|
-
_max?: NestedEnumTicketTypeFilter<$PrismaModel>
|
17533
|
-
}
|
17534
|
-
|
17535
|
-
export type FloatNullableWithAggregatesFilter<$PrismaModel = never> = {
|
17536
|
-
equals?: number | FloatFieldRefInput<$PrismaModel> | null
|
17537
|
-
in?: number[] | ListFloatFieldRefInput<$PrismaModel> | null
|
17538
|
-
notIn?: number[] | ListFloatFieldRefInput<$PrismaModel> | null
|
17539
|
-
lt?: number | FloatFieldRefInput<$PrismaModel>
|
17540
|
-
lte?: number | FloatFieldRefInput<$PrismaModel>
|
17541
|
-
gt?: number | FloatFieldRefInput<$PrismaModel>
|
17542
|
-
gte?: number | FloatFieldRefInput<$PrismaModel>
|
17543
|
-
not?: NestedFloatNullableWithAggregatesFilter<$PrismaModel> | number | null
|
17544
|
-
_count?: NestedIntNullableFilter<$PrismaModel>
|
17545
|
-
_avg?: NestedFloatNullableFilter<$PrismaModel>
|
17546
|
-
_sum?: NestedFloatNullableFilter<$PrismaModel>
|
17547
|
-
_min?: NestedFloatNullableFilter<$PrismaModel>
|
17548
|
-
_max?: NestedFloatNullableFilter<$PrismaModel>
|
17549
|
-
}
|
17550
|
-
|
17551
16019
|
export type AccountCreatefcmTokenInput = {
|
17552
16020
|
set: string[]
|
17553
16021
|
}
|
@@ -18084,12 +16552,6 @@ export namespace Prisma {
|
|
18084
16552
|
connect?: AccountWhereUniqueInput | AccountWhereUniqueInput[]
|
18085
16553
|
}
|
18086
16554
|
|
18087
|
-
export type EventCreateNestedManyWithoutTagsInput = {
|
18088
|
-
create?: XOR<EventCreateWithoutTagsInput, EventUncheckedCreateWithoutTagsInput> | EventCreateWithoutTagsInput[] | EventUncheckedCreateWithoutTagsInput[]
|
18089
|
-
connectOrCreate?: EventCreateOrConnectWithoutTagsInput | EventCreateOrConnectWithoutTagsInput[]
|
18090
|
-
connect?: EventWhereUniqueInput | EventWhereUniqueInput[]
|
18091
|
-
}
|
18092
|
-
|
18093
16555
|
export type EventUncheckedCreateNestedOneWithoutTagAssistedInput = {
|
18094
16556
|
create?: XOR<EventCreateWithoutTagAssistedInput, EventUncheckedCreateWithoutTagAssistedInput>
|
18095
16557
|
connectOrCreate?: EventCreateOrConnectWithoutTagAssistedInput
|
@@ -18120,12 +16582,6 @@ export namespace Prisma {
|
|
18120
16582
|
connect?: AccountWhereUniqueInput | AccountWhereUniqueInput[]
|
18121
16583
|
}
|
18122
16584
|
|
18123
|
-
export type EventUncheckedCreateNestedManyWithoutTagsInput = {
|
18124
|
-
create?: XOR<EventCreateWithoutTagsInput, EventUncheckedCreateWithoutTagsInput> | EventCreateWithoutTagsInput[] | EventUncheckedCreateWithoutTagsInput[]
|
18125
|
-
connectOrCreate?: EventCreateOrConnectWithoutTagsInput | EventCreateOrConnectWithoutTagsInput[]
|
18126
|
-
connect?: EventWhereUniqueInput | EventWhereUniqueInput[]
|
18127
|
-
}
|
18128
|
-
|
18129
16585
|
export type EnumTagTypeFieldUpdateOperationsInput = {
|
18130
16586
|
set?: $Enums.TagType
|
18131
16587
|
}
|
@@ -18197,19 +16653,6 @@ export namespace Prisma {
|
|
18197
16653
|
deleteMany?: AccountScalarWhereInput | AccountScalarWhereInput[]
|
18198
16654
|
}
|
18199
16655
|
|
18200
|
-
export type EventUpdateManyWithoutTagsNestedInput = {
|
18201
|
-
create?: XOR<EventCreateWithoutTagsInput, EventUncheckedCreateWithoutTagsInput> | EventCreateWithoutTagsInput[] | EventUncheckedCreateWithoutTagsInput[]
|
18202
|
-
connectOrCreate?: EventCreateOrConnectWithoutTagsInput | EventCreateOrConnectWithoutTagsInput[]
|
18203
|
-
upsert?: EventUpsertWithWhereUniqueWithoutTagsInput | EventUpsertWithWhereUniqueWithoutTagsInput[]
|
18204
|
-
set?: EventWhereUniqueInput | EventWhereUniqueInput[]
|
18205
|
-
disconnect?: EventWhereUniqueInput | EventWhereUniqueInput[]
|
18206
|
-
delete?: EventWhereUniqueInput | EventWhereUniqueInput[]
|
18207
|
-
connect?: EventWhereUniqueInput | EventWhereUniqueInput[]
|
18208
|
-
update?: EventUpdateWithWhereUniqueWithoutTagsInput | EventUpdateWithWhereUniqueWithoutTagsInput[]
|
18209
|
-
updateMany?: EventUpdateManyWithWhereWithoutTagsInput | EventUpdateManyWithWhereWithoutTagsInput[]
|
18210
|
-
deleteMany?: EventScalarWhereInput | EventScalarWhereInput[]
|
18211
|
-
}
|
18212
|
-
|
18213
16656
|
export type EventUncheckedUpdateOneWithoutTagAssistedNestedInput = {
|
18214
16657
|
create?: XOR<EventCreateWithoutTagAssistedInput, EventUncheckedCreateWithoutTagAssistedInput>
|
18215
16658
|
connectOrCreate?: EventCreateOrConnectWithoutTagAssistedInput
|
@@ -18269,19 +16712,6 @@ export namespace Prisma {
|
|
18269
16712
|
deleteMany?: AccountScalarWhereInput | AccountScalarWhereInput[]
|
18270
16713
|
}
|
18271
16714
|
|
18272
|
-
export type EventUncheckedUpdateManyWithoutTagsNestedInput = {
|
18273
|
-
create?: XOR<EventCreateWithoutTagsInput, EventUncheckedCreateWithoutTagsInput> | EventCreateWithoutTagsInput[] | EventUncheckedCreateWithoutTagsInput[]
|
18274
|
-
connectOrCreate?: EventCreateOrConnectWithoutTagsInput | EventCreateOrConnectWithoutTagsInput[]
|
18275
|
-
upsert?: EventUpsertWithWhereUniqueWithoutTagsInput | EventUpsertWithWhereUniqueWithoutTagsInput[]
|
18276
|
-
set?: EventWhereUniqueInput | EventWhereUniqueInput[]
|
18277
|
-
disconnect?: EventWhereUniqueInput | EventWhereUniqueInput[]
|
18278
|
-
delete?: EventWhereUniqueInput | EventWhereUniqueInput[]
|
18279
|
-
connect?: EventWhereUniqueInput | EventWhereUniqueInput[]
|
18280
|
-
update?: EventUpdateWithWhereUniqueWithoutTagsInput | EventUpdateWithWhereUniqueWithoutTagsInput[]
|
18281
|
-
updateMany?: EventUpdateManyWithWhereWithoutTagsInput | EventUpdateManyWithWhereWithoutTagsInput[]
|
18282
|
-
deleteMany?: EventScalarWhereInput | EventScalarWhereInput[]
|
18283
|
-
}
|
18284
|
-
|
18285
16715
|
export type TagCreateNestedManyWithoutGroupInput = {
|
18286
16716
|
create?: XOR<TagCreateWithoutGroupInput, TagUncheckedCreateWithoutGroupInput> | TagCreateWithoutGroupInput[] | TagUncheckedCreateWithoutGroupInput[]
|
18287
16717
|
connectOrCreate?: TagCreateOrConnectWithoutGroupInput | TagCreateOrConnectWithoutGroupInput[]
|
@@ -18355,19 +16785,6 @@ export namespace Prisma {
|
|
18355
16785
|
connect?: EventWhereUniqueInput | EventWhereUniqueInput[]
|
18356
16786
|
}
|
18357
16787
|
|
18358
|
-
export type TagCreateNestedManyWithoutEventInput = {
|
18359
|
-
create?: XOR<TagCreateWithoutEventInput, TagUncheckedCreateWithoutEventInput> | TagCreateWithoutEventInput[] | TagUncheckedCreateWithoutEventInput[]
|
18360
|
-
connectOrCreate?: TagCreateOrConnectWithoutEventInput | TagCreateOrConnectWithoutEventInput[]
|
18361
|
-
connect?: TagWhereUniqueInput | TagWhereUniqueInput[]
|
18362
|
-
}
|
18363
|
-
|
18364
|
-
export type EventTicketCreateNestedManyWithoutEventInput = {
|
18365
|
-
create?: XOR<EventTicketCreateWithoutEventInput, EventTicketUncheckedCreateWithoutEventInput> | EventTicketCreateWithoutEventInput[] | EventTicketUncheckedCreateWithoutEventInput[]
|
18366
|
-
connectOrCreate?: EventTicketCreateOrConnectWithoutEventInput | EventTicketCreateOrConnectWithoutEventInput[]
|
18367
|
-
createMany?: EventTicketCreateManyEventInputEnvelope
|
18368
|
-
connect?: EventTicketWhereUniqueInput | EventTicketWhereUniqueInput[]
|
18369
|
-
}
|
18370
|
-
|
18371
16788
|
export type EventUncheckedCreateNestedManyWithoutSupraEventInput = {
|
18372
16789
|
create?: XOR<EventCreateWithoutSupraEventInput, EventUncheckedCreateWithoutSupraEventInput> | EventCreateWithoutSupraEventInput[] | EventUncheckedCreateWithoutSupraEventInput[]
|
18373
16790
|
connectOrCreate?: EventCreateOrConnectWithoutSupraEventInput | EventCreateOrConnectWithoutSupraEventInput[]
|
@@ -18375,19 +16792,6 @@ export namespace Prisma {
|
|
18375
16792
|
connect?: EventWhereUniqueInput | EventWhereUniqueInput[]
|
18376
16793
|
}
|
18377
16794
|
|
18378
|
-
export type TagUncheckedCreateNestedManyWithoutEventInput = {
|
18379
|
-
create?: XOR<TagCreateWithoutEventInput, TagUncheckedCreateWithoutEventInput> | TagCreateWithoutEventInput[] | TagUncheckedCreateWithoutEventInput[]
|
18380
|
-
connectOrCreate?: TagCreateOrConnectWithoutEventInput | TagCreateOrConnectWithoutEventInput[]
|
18381
|
-
connect?: TagWhereUniqueInput | TagWhereUniqueInput[]
|
18382
|
-
}
|
18383
|
-
|
18384
|
-
export type EventTicketUncheckedCreateNestedManyWithoutEventInput = {
|
18385
|
-
create?: XOR<EventTicketCreateWithoutEventInput, EventTicketUncheckedCreateWithoutEventInput> | EventTicketCreateWithoutEventInput[] | EventTicketUncheckedCreateWithoutEventInput[]
|
18386
|
-
connectOrCreate?: EventTicketCreateOrConnectWithoutEventInput | EventTicketCreateOrConnectWithoutEventInput[]
|
18387
|
-
createMany?: EventTicketCreateManyEventInputEnvelope
|
18388
|
-
connect?: EventTicketWhereUniqueInput | EventTicketWhereUniqueInput[]
|
18389
|
-
}
|
18390
|
-
|
18391
16795
|
export type EventFolderUpdateOneWithoutEventsNestedInput = {
|
18392
16796
|
create?: XOR<EventFolderCreateWithoutEventsInput, EventFolderUncheckedCreateWithoutEventsInput>
|
18393
16797
|
connectOrCreate?: EventFolderCreateOrConnectWithoutEventsInput
|
@@ -18438,33 +16842,6 @@ export namespace Prisma {
|
|
18438
16842
|
deleteMany?: EventScalarWhereInput | EventScalarWhereInput[]
|
18439
16843
|
}
|
18440
16844
|
|
18441
|
-
export type TagUpdateManyWithoutEventNestedInput = {
|
18442
|
-
create?: XOR<TagCreateWithoutEventInput, TagUncheckedCreateWithoutEventInput> | TagCreateWithoutEventInput[] | TagUncheckedCreateWithoutEventInput[]
|
18443
|
-
connectOrCreate?: TagCreateOrConnectWithoutEventInput | TagCreateOrConnectWithoutEventInput[]
|
18444
|
-
upsert?: TagUpsertWithWhereUniqueWithoutEventInput | TagUpsertWithWhereUniqueWithoutEventInput[]
|
18445
|
-
set?: TagWhereUniqueInput | TagWhereUniqueInput[]
|
18446
|
-
disconnect?: TagWhereUniqueInput | TagWhereUniqueInput[]
|
18447
|
-
delete?: TagWhereUniqueInput | TagWhereUniqueInput[]
|
18448
|
-
connect?: TagWhereUniqueInput | TagWhereUniqueInput[]
|
18449
|
-
update?: TagUpdateWithWhereUniqueWithoutEventInput | TagUpdateWithWhereUniqueWithoutEventInput[]
|
18450
|
-
updateMany?: TagUpdateManyWithWhereWithoutEventInput | TagUpdateManyWithWhereWithoutEventInput[]
|
18451
|
-
deleteMany?: TagScalarWhereInput | TagScalarWhereInput[]
|
18452
|
-
}
|
18453
|
-
|
18454
|
-
export type EventTicketUpdateManyWithoutEventNestedInput = {
|
18455
|
-
create?: XOR<EventTicketCreateWithoutEventInput, EventTicketUncheckedCreateWithoutEventInput> | EventTicketCreateWithoutEventInput[] | EventTicketUncheckedCreateWithoutEventInput[]
|
18456
|
-
connectOrCreate?: EventTicketCreateOrConnectWithoutEventInput | EventTicketCreateOrConnectWithoutEventInput[]
|
18457
|
-
upsert?: EventTicketUpsertWithWhereUniqueWithoutEventInput | EventTicketUpsertWithWhereUniqueWithoutEventInput[]
|
18458
|
-
createMany?: EventTicketCreateManyEventInputEnvelope
|
18459
|
-
set?: EventTicketWhereUniqueInput | EventTicketWhereUniqueInput[]
|
18460
|
-
disconnect?: EventTicketWhereUniqueInput | EventTicketWhereUniqueInput[]
|
18461
|
-
delete?: EventTicketWhereUniqueInput | EventTicketWhereUniqueInput[]
|
18462
|
-
connect?: EventTicketWhereUniqueInput | EventTicketWhereUniqueInput[]
|
18463
|
-
update?: EventTicketUpdateWithWhereUniqueWithoutEventInput | EventTicketUpdateWithWhereUniqueWithoutEventInput[]
|
18464
|
-
updateMany?: EventTicketUpdateManyWithWhereWithoutEventInput | EventTicketUpdateManyWithWhereWithoutEventInput[]
|
18465
|
-
deleteMany?: EventTicketScalarWhereInput | EventTicketScalarWhereInput[]
|
18466
|
-
}
|
18467
|
-
|
18468
16845
|
export type EventUncheckedUpdateManyWithoutSupraEventNestedInput = {
|
18469
16846
|
create?: XOR<EventCreateWithoutSupraEventInput, EventUncheckedCreateWithoutSupraEventInput> | EventCreateWithoutSupraEventInput[] | EventUncheckedCreateWithoutSupraEventInput[]
|
18470
16847
|
connectOrCreate?: EventCreateOrConnectWithoutSupraEventInput | EventCreateOrConnectWithoutSupraEventInput[]
|
@@ -18479,33 +16856,6 @@ export namespace Prisma {
|
|
18479
16856
|
deleteMany?: EventScalarWhereInput | EventScalarWhereInput[]
|
18480
16857
|
}
|
18481
16858
|
|
18482
|
-
export type TagUncheckedUpdateManyWithoutEventNestedInput = {
|
18483
|
-
create?: XOR<TagCreateWithoutEventInput, TagUncheckedCreateWithoutEventInput> | TagCreateWithoutEventInput[] | TagUncheckedCreateWithoutEventInput[]
|
18484
|
-
connectOrCreate?: TagCreateOrConnectWithoutEventInput | TagCreateOrConnectWithoutEventInput[]
|
18485
|
-
upsert?: TagUpsertWithWhereUniqueWithoutEventInput | TagUpsertWithWhereUniqueWithoutEventInput[]
|
18486
|
-
set?: TagWhereUniqueInput | TagWhereUniqueInput[]
|
18487
|
-
disconnect?: TagWhereUniqueInput | TagWhereUniqueInput[]
|
18488
|
-
delete?: TagWhereUniqueInput | TagWhereUniqueInput[]
|
18489
|
-
connect?: TagWhereUniqueInput | TagWhereUniqueInput[]
|
18490
|
-
update?: TagUpdateWithWhereUniqueWithoutEventInput | TagUpdateWithWhereUniqueWithoutEventInput[]
|
18491
|
-
updateMany?: TagUpdateManyWithWhereWithoutEventInput | TagUpdateManyWithWhereWithoutEventInput[]
|
18492
|
-
deleteMany?: TagScalarWhereInput | TagScalarWhereInput[]
|
18493
|
-
}
|
18494
|
-
|
18495
|
-
export type EventTicketUncheckedUpdateManyWithoutEventNestedInput = {
|
18496
|
-
create?: XOR<EventTicketCreateWithoutEventInput, EventTicketUncheckedCreateWithoutEventInput> | EventTicketCreateWithoutEventInput[] | EventTicketUncheckedCreateWithoutEventInput[]
|
18497
|
-
connectOrCreate?: EventTicketCreateOrConnectWithoutEventInput | EventTicketCreateOrConnectWithoutEventInput[]
|
18498
|
-
upsert?: EventTicketUpsertWithWhereUniqueWithoutEventInput | EventTicketUpsertWithWhereUniqueWithoutEventInput[]
|
18499
|
-
createMany?: EventTicketCreateManyEventInputEnvelope
|
18500
|
-
set?: EventTicketWhereUniqueInput | EventTicketWhereUniqueInput[]
|
18501
|
-
disconnect?: EventTicketWhereUniqueInput | EventTicketWhereUniqueInput[]
|
18502
|
-
delete?: EventTicketWhereUniqueInput | EventTicketWhereUniqueInput[]
|
18503
|
-
connect?: EventTicketWhereUniqueInput | EventTicketWhereUniqueInput[]
|
18504
|
-
update?: EventTicketUpdateWithWhereUniqueWithoutEventInput | EventTicketUpdateWithWhereUniqueWithoutEventInput[]
|
18505
|
-
updateMany?: EventTicketUpdateManyWithWhereWithoutEventInput | EventTicketUpdateManyWithWhereWithoutEventInput[]
|
18506
|
-
deleteMany?: EventTicketScalarWhereInput | EventTicketScalarWhereInput[]
|
18507
|
-
}
|
18508
|
-
|
18509
16859
|
export type EventCreateNestedManyWithoutFolderInput = {
|
18510
16860
|
create?: XOR<EventCreateWithoutFolderInput, EventUncheckedCreateWithoutFolderInput> | EventCreateWithoutFolderInput[] | EventUncheckedCreateWithoutFolderInput[]
|
18511
16861
|
connectOrCreate?: EventCreateOrConnectWithoutFolderInput | EventCreateOrConnectWithoutFolderInput[]
|
@@ -18574,32 +16924,6 @@ export namespace Prisma {
|
|
18574
16924
|
set?: $Enums.TemplateCategory
|
18575
16925
|
}
|
18576
16926
|
|
18577
|
-
export type EventCreateNestedOneWithoutEventTicketsInput = {
|
18578
|
-
create?: XOR<EventCreateWithoutEventTicketsInput, EventUncheckedCreateWithoutEventTicketsInput>
|
18579
|
-
connectOrCreate?: EventCreateOrConnectWithoutEventTicketsInput
|
18580
|
-
connect?: EventWhereUniqueInput
|
18581
|
-
}
|
18582
|
-
|
18583
|
-
export type EnumTicketTypeFieldUpdateOperationsInput = {
|
18584
|
-
set?: $Enums.TicketType
|
18585
|
-
}
|
18586
|
-
|
18587
|
-
export type NullableFloatFieldUpdateOperationsInput = {
|
18588
|
-
set?: number | null
|
18589
|
-
increment?: number
|
18590
|
-
decrement?: number
|
18591
|
-
multiply?: number
|
18592
|
-
divide?: number
|
18593
|
-
}
|
18594
|
-
|
18595
|
-
export type EventUpdateOneRequiredWithoutEventTicketsNestedInput = {
|
18596
|
-
create?: XOR<EventCreateWithoutEventTicketsInput, EventUncheckedCreateWithoutEventTicketsInput>
|
18597
|
-
connectOrCreate?: EventCreateOrConnectWithoutEventTicketsInput
|
18598
|
-
upsert?: EventUpsertWithoutEventTicketsInput
|
18599
|
-
connect?: EventWhereUniqueInput
|
18600
|
-
update?: XOR<XOR<EventUpdateToOneWithWhereWithoutEventTicketsInput, EventUpdateWithoutEventTicketsInput>, EventUncheckedUpdateWithoutEventTicketsInput>
|
18601
|
-
}
|
18602
|
-
|
18603
16927
|
export type NestedStringFilter<$PrismaModel = never> = {
|
18604
16928
|
equals?: string | StringFieldRefInput<$PrismaModel>
|
18605
16929
|
in?: string[] | ListStringFieldRefInput<$PrismaModel>
|
@@ -18897,50 +17221,6 @@ export namespace Prisma {
|
|
18897
17221
|
_max?: NestedEnumTemplateCategoryFilter<$PrismaModel>
|
18898
17222
|
}
|
18899
17223
|
|
18900
|
-
export type NestedEnumTicketTypeFilter<$PrismaModel = never> = {
|
18901
|
-
equals?: $Enums.TicketType | EnumTicketTypeFieldRefInput<$PrismaModel>
|
18902
|
-
in?: $Enums.TicketType[] | ListEnumTicketTypeFieldRefInput<$PrismaModel>
|
18903
|
-
notIn?: $Enums.TicketType[] | ListEnumTicketTypeFieldRefInput<$PrismaModel>
|
18904
|
-
not?: NestedEnumTicketTypeFilter<$PrismaModel> | $Enums.TicketType
|
18905
|
-
}
|
18906
|
-
|
18907
|
-
export type NestedFloatNullableFilter<$PrismaModel = never> = {
|
18908
|
-
equals?: number | FloatFieldRefInput<$PrismaModel> | null
|
18909
|
-
in?: number[] | ListFloatFieldRefInput<$PrismaModel> | null
|
18910
|
-
notIn?: number[] | ListFloatFieldRefInput<$PrismaModel> | null
|
18911
|
-
lt?: number | FloatFieldRefInput<$PrismaModel>
|
18912
|
-
lte?: number | FloatFieldRefInput<$PrismaModel>
|
18913
|
-
gt?: number | FloatFieldRefInput<$PrismaModel>
|
18914
|
-
gte?: number | FloatFieldRefInput<$PrismaModel>
|
18915
|
-
not?: NestedFloatNullableFilter<$PrismaModel> | number | null
|
18916
|
-
}
|
18917
|
-
|
18918
|
-
export type NestedEnumTicketTypeWithAggregatesFilter<$PrismaModel = never> = {
|
18919
|
-
equals?: $Enums.TicketType | EnumTicketTypeFieldRefInput<$PrismaModel>
|
18920
|
-
in?: $Enums.TicketType[] | ListEnumTicketTypeFieldRefInput<$PrismaModel>
|
18921
|
-
notIn?: $Enums.TicketType[] | ListEnumTicketTypeFieldRefInput<$PrismaModel>
|
18922
|
-
not?: NestedEnumTicketTypeWithAggregatesFilter<$PrismaModel> | $Enums.TicketType
|
18923
|
-
_count?: NestedIntFilter<$PrismaModel>
|
18924
|
-
_min?: NestedEnumTicketTypeFilter<$PrismaModel>
|
18925
|
-
_max?: NestedEnumTicketTypeFilter<$PrismaModel>
|
18926
|
-
}
|
18927
|
-
|
18928
|
-
export type NestedFloatNullableWithAggregatesFilter<$PrismaModel = never> = {
|
18929
|
-
equals?: number | FloatFieldRefInput<$PrismaModel> | null
|
18930
|
-
in?: number[] | ListFloatFieldRefInput<$PrismaModel> | null
|
18931
|
-
notIn?: number[] | ListFloatFieldRefInput<$PrismaModel> | null
|
18932
|
-
lt?: number | FloatFieldRefInput<$PrismaModel>
|
18933
|
-
lte?: number | FloatFieldRefInput<$PrismaModel>
|
18934
|
-
gt?: number | FloatFieldRefInput<$PrismaModel>
|
18935
|
-
gte?: number | FloatFieldRefInput<$PrismaModel>
|
18936
|
-
not?: NestedFloatNullableWithAggregatesFilter<$PrismaModel> | number | null
|
18937
|
-
_count?: NestedIntNullableFilter<$PrismaModel>
|
18938
|
-
_avg?: NestedFloatNullableFilter<$PrismaModel>
|
18939
|
-
_sum?: NestedFloatNullableFilter<$PrismaModel>
|
18940
|
-
_min?: NestedFloatNullableFilter<$PrismaModel>
|
18941
|
-
_max?: NestedFloatNullableFilter<$PrismaModel>
|
18942
|
-
}
|
18943
|
-
|
18944
17224
|
export type CommentCreateWithoutAccountInput = {
|
18945
17225
|
id?: string
|
18946
17226
|
content: string
|
@@ -19020,7 +17300,6 @@ export namespace Prisma {
|
|
19020
17300
|
confirmedEvent?: EventCreateNestedOneWithoutTagConfirmedInput
|
19021
17301
|
profiles?: ProfileCreateNestedManyWithoutTagsInput
|
19022
17302
|
accountsGlobalFilter?: AccountCreateNestedManyWithoutGlobalFilterInput
|
19023
|
-
Event?: EventCreateNestedManyWithoutTagsInput
|
19024
17303
|
}
|
19025
17304
|
|
19026
17305
|
export type TagUncheckedCreateWithoutAccountsInput = {
|
@@ -19034,7 +17313,6 @@ export namespace Prisma {
|
|
19034
17313
|
confirmedEvent?: EventUncheckedCreateNestedOneWithoutTagConfirmedInput
|
19035
17314
|
profiles?: ProfileUncheckedCreateNestedManyWithoutTagsInput
|
19036
17315
|
accountsGlobalFilter?: AccountUncheckedCreateNestedManyWithoutGlobalFilterInput
|
19037
|
-
Event?: EventUncheckedCreateNestedManyWithoutTagsInput
|
19038
17316
|
}
|
19039
17317
|
|
19040
17318
|
export type TagCreateOrConnectWithoutAccountsInput = {
|
@@ -19053,7 +17331,6 @@ export namespace Prisma {
|
|
19053
17331
|
confirmedEvent?: EventCreateNestedOneWithoutTagConfirmedInput
|
19054
17332
|
accounts?: AccountCreateNestedManyWithoutTagsInput
|
19055
17333
|
profiles?: ProfileCreateNestedManyWithoutTagsInput
|
19056
|
-
Event?: EventCreateNestedManyWithoutTagsInput
|
19057
17334
|
}
|
19058
17335
|
|
19059
17336
|
export type TagUncheckedCreateWithoutAccountsGlobalFilterInput = {
|
@@ -19067,7 +17344,6 @@ export namespace Prisma {
|
|
19067
17344
|
confirmedEvent?: EventUncheckedCreateNestedOneWithoutTagConfirmedInput
|
19068
17345
|
accounts?: AccountUncheckedCreateNestedManyWithoutTagsInput
|
19069
17346
|
profiles?: ProfileUncheckedCreateNestedManyWithoutTagsInput
|
19070
|
-
Event?: EventUncheckedCreateNestedManyWithoutTagsInput
|
19071
17347
|
}
|
19072
17348
|
|
19073
17349
|
export type TagCreateOrConnectWithoutAccountsGlobalFilterInput = {
|
@@ -19240,7 +17516,6 @@ export namespace Prisma {
|
|
19240
17516
|
confirmedEvent?: EventCreateNestedOneWithoutTagConfirmedInput
|
19241
17517
|
accounts?: AccountCreateNestedManyWithoutTagsInput
|
19242
17518
|
accountsGlobalFilter?: AccountCreateNestedManyWithoutGlobalFilterInput
|
19243
|
-
Event?: EventCreateNestedManyWithoutTagsInput
|
19244
17519
|
}
|
19245
17520
|
|
19246
17521
|
export type TagUncheckedCreateWithoutProfilesInput = {
|
@@ -19254,7 +17529,6 @@ export namespace Prisma {
|
|
19254
17529
|
confirmedEvent?: EventUncheckedCreateNestedOneWithoutTagConfirmedInput
|
19255
17530
|
accounts?: AccountUncheckedCreateNestedManyWithoutTagsInput
|
19256
17531
|
accountsGlobalFilter?: AccountUncheckedCreateNestedManyWithoutGlobalFilterInput
|
19257
|
-
Event?: EventUncheckedCreateNestedManyWithoutTagsInput
|
19258
17532
|
}
|
19259
17533
|
|
19260
17534
|
export type TagCreateOrConnectWithoutProfilesInput = {
|
@@ -19907,8 +18181,6 @@ export namespace Prisma {
|
|
19907
18181
|
id?: string
|
19908
18182
|
name: string
|
19909
18183
|
date: Date | string
|
19910
|
-
starting_date: Date | string
|
19911
|
-
ending_date: Date | string
|
19912
18184
|
location: string
|
19913
18185
|
created_at?: Date | string
|
19914
18186
|
updated_at?: Date | string
|
@@ -19916,16 +18188,12 @@ export namespace Prisma {
|
|
19916
18188
|
tagConfirmed: TagCreateNestedOneWithoutConfirmedEventInput
|
19917
18189
|
supraEvent?: EventCreateNestedOneWithoutSubEventsInput
|
19918
18190
|
subEvents?: EventCreateNestedManyWithoutSupraEventInput
|
19919
|
-
tags?: TagCreateNestedManyWithoutEventInput
|
19920
|
-
eventTickets?: EventTicketCreateNestedManyWithoutEventInput
|
19921
18191
|
}
|
19922
18192
|
|
19923
18193
|
export type EventUncheckedCreateWithoutTagAssistedInput = {
|
19924
18194
|
id?: string
|
19925
18195
|
name: string
|
19926
18196
|
date: Date | string
|
19927
|
-
starting_date: Date | string
|
19928
|
-
ending_date: Date | string
|
19929
18197
|
location: string
|
19930
18198
|
folderId?: string | null
|
19931
18199
|
tagConfirmedId: string
|
@@ -19933,8 +18201,6 @@ export namespace Prisma {
|
|
19933
18201
|
created_at?: Date | string
|
19934
18202
|
updated_at?: Date | string
|
19935
18203
|
subEvents?: EventUncheckedCreateNestedManyWithoutSupraEventInput
|
19936
|
-
tags?: TagUncheckedCreateNestedManyWithoutEventInput
|
19937
|
-
eventTickets?: EventTicketUncheckedCreateNestedManyWithoutEventInput
|
19938
18204
|
}
|
19939
18205
|
|
19940
18206
|
export type EventCreateOrConnectWithoutTagAssistedInput = {
|
@@ -19946,8 +18212,6 @@ export namespace Prisma {
|
|
19946
18212
|
id?: string
|
19947
18213
|
name: string
|
19948
18214
|
date: Date | string
|
19949
|
-
starting_date: Date | string
|
19950
|
-
ending_date: Date | string
|
19951
18215
|
location: string
|
19952
18216
|
created_at?: Date | string
|
19953
18217
|
updated_at?: Date | string
|
@@ -19955,16 +18219,12 @@ export namespace Prisma {
|
|
19955
18219
|
tagAssisted: TagCreateNestedOneWithoutAssistedEventInput
|
19956
18220
|
supraEvent?: EventCreateNestedOneWithoutSubEventsInput
|
19957
18221
|
subEvents?: EventCreateNestedManyWithoutSupraEventInput
|
19958
|
-
tags?: TagCreateNestedManyWithoutEventInput
|
19959
|
-
eventTickets?: EventTicketCreateNestedManyWithoutEventInput
|
19960
18222
|
}
|
19961
18223
|
|
19962
18224
|
export type EventUncheckedCreateWithoutTagConfirmedInput = {
|
19963
18225
|
id?: string
|
19964
18226
|
name: string
|
19965
18227
|
date: Date | string
|
19966
|
-
starting_date: Date | string
|
19967
|
-
ending_date: Date | string
|
19968
18228
|
location: string
|
19969
18229
|
folderId?: string | null
|
19970
18230
|
tagAssistedId: string
|
@@ -19972,8 +18232,6 @@ export namespace Prisma {
|
|
19972
18232
|
created_at?: Date | string
|
19973
18233
|
updated_at?: Date | string
|
19974
18234
|
subEvents?: EventUncheckedCreateNestedManyWithoutSupraEventInput
|
19975
|
-
tags?: TagUncheckedCreateNestedManyWithoutEventInput
|
19976
|
-
eventTickets?: EventTicketUncheckedCreateNestedManyWithoutEventInput
|
19977
18235
|
}
|
19978
18236
|
|
19979
18237
|
export type EventCreateOrConnectWithoutTagConfirmedInput = {
|
@@ -20095,48 +18353,9 @@ export namespace Prisma {
|
|
20095
18353
|
tags?: TagUncheckedCreateNestedManyWithoutAccountsInput
|
20096
18354
|
}
|
20097
18355
|
|
20098
|
-
export type AccountCreateOrConnectWithoutGlobalFilterInput = {
|
20099
|
-
where: AccountWhereUniqueInput
|
20100
|
-
create: XOR<AccountCreateWithoutGlobalFilterInput, AccountUncheckedCreateWithoutGlobalFilterInput>
|
20101
|
-
}
|
20102
|
-
|
20103
|
-
export type EventCreateWithoutTagsInput = {
|
20104
|
-
id?: string
|
20105
|
-
name: string
|
20106
|
-
date: Date | string
|
20107
|
-
starting_date: Date | string
|
20108
|
-
ending_date: Date | string
|
20109
|
-
location: string
|
20110
|
-
created_at?: Date | string
|
20111
|
-
updated_at?: Date | string
|
20112
|
-
folder?: EventFolderCreateNestedOneWithoutEventsInput
|
20113
|
-
tagAssisted: TagCreateNestedOneWithoutAssistedEventInput
|
20114
|
-
tagConfirmed: TagCreateNestedOneWithoutConfirmedEventInput
|
20115
|
-
supraEvent?: EventCreateNestedOneWithoutSubEventsInput
|
20116
|
-
subEvents?: EventCreateNestedManyWithoutSupraEventInput
|
20117
|
-
eventTickets?: EventTicketCreateNestedManyWithoutEventInput
|
20118
|
-
}
|
20119
|
-
|
20120
|
-
export type EventUncheckedCreateWithoutTagsInput = {
|
20121
|
-
id?: string
|
20122
|
-
name: string
|
20123
|
-
date: Date | string
|
20124
|
-
starting_date: Date | string
|
20125
|
-
ending_date: Date | string
|
20126
|
-
location: string
|
20127
|
-
folderId?: string | null
|
20128
|
-
tagAssistedId: string
|
20129
|
-
tagConfirmedId: string
|
20130
|
-
supraEventId?: string | null
|
20131
|
-
created_at?: Date | string
|
20132
|
-
updated_at?: Date | string
|
20133
|
-
subEvents?: EventUncheckedCreateNestedManyWithoutSupraEventInput
|
20134
|
-
eventTickets?: EventTicketUncheckedCreateNestedManyWithoutEventInput
|
20135
|
-
}
|
20136
|
-
|
20137
|
-
export type EventCreateOrConnectWithoutTagsInput = {
|
20138
|
-
where: EventWhereUniqueInput
|
20139
|
-
create: XOR<EventCreateWithoutTagsInput, EventUncheckedCreateWithoutTagsInput>
|
18356
|
+
export type AccountCreateOrConnectWithoutGlobalFilterInput = {
|
18357
|
+
where: AccountWhereUniqueInput
|
18358
|
+
create: XOR<AccountCreateWithoutGlobalFilterInput, AccountUncheckedCreateWithoutGlobalFilterInput>
|
20140
18359
|
}
|
20141
18360
|
|
20142
18361
|
export type TagGroupUpsertWithoutTagsInput = {
|
@@ -20183,8 +18402,6 @@ export namespace Prisma {
|
|
20183
18402
|
id?: StringFieldUpdateOperationsInput | string
|
20184
18403
|
name?: StringFieldUpdateOperationsInput | string
|
20185
18404
|
date?: DateTimeFieldUpdateOperationsInput | Date | string
|
20186
|
-
starting_date?: DateTimeFieldUpdateOperationsInput | Date | string
|
20187
|
-
ending_date?: DateTimeFieldUpdateOperationsInput | Date | string
|
20188
18405
|
location?: StringFieldUpdateOperationsInput | string
|
20189
18406
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
20190
18407
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
@@ -20192,16 +18409,12 @@ export namespace Prisma {
|
|
20192
18409
|
tagConfirmed?: TagUpdateOneRequiredWithoutConfirmedEventNestedInput
|
20193
18410
|
supraEvent?: EventUpdateOneWithoutSubEventsNestedInput
|
20194
18411
|
subEvents?: EventUpdateManyWithoutSupraEventNestedInput
|
20195
|
-
tags?: TagUpdateManyWithoutEventNestedInput
|
20196
|
-
eventTickets?: EventTicketUpdateManyWithoutEventNestedInput
|
20197
18412
|
}
|
20198
18413
|
|
20199
18414
|
export type EventUncheckedUpdateWithoutTagAssistedInput = {
|
20200
18415
|
id?: StringFieldUpdateOperationsInput | string
|
20201
18416
|
name?: StringFieldUpdateOperationsInput | string
|
20202
18417
|
date?: DateTimeFieldUpdateOperationsInput | Date | string
|
20203
|
-
starting_date?: DateTimeFieldUpdateOperationsInput | Date | string
|
20204
|
-
ending_date?: DateTimeFieldUpdateOperationsInput | Date | string
|
20205
18418
|
location?: StringFieldUpdateOperationsInput | string
|
20206
18419
|
folderId?: NullableStringFieldUpdateOperationsInput | string | null
|
20207
18420
|
tagConfirmedId?: StringFieldUpdateOperationsInput | string
|
@@ -20209,8 +18422,6 @@ export namespace Prisma {
|
|
20209
18422
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
20210
18423
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
20211
18424
|
subEvents?: EventUncheckedUpdateManyWithoutSupraEventNestedInput
|
20212
|
-
tags?: TagUncheckedUpdateManyWithoutEventNestedInput
|
20213
|
-
eventTickets?: EventTicketUncheckedUpdateManyWithoutEventNestedInput
|
20214
18425
|
}
|
20215
18426
|
|
20216
18427
|
export type EventUpsertWithoutTagConfirmedInput = {
|
@@ -20228,8 +18439,6 @@ export namespace Prisma {
|
|
20228
18439
|
id?: StringFieldUpdateOperationsInput | string
|
20229
18440
|
name?: StringFieldUpdateOperationsInput | string
|
20230
18441
|
date?: DateTimeFieldUpdateOperationsInput | Date | string
|
20231
|
-
starting_date?: DateTimeFieldUpdateOperationsInput | Date | string
|
20232
|
-
ending_date?: DateTimeFieldUpdateOperationsInput | Date | string
|
20233
18442
|
location?: StringFieldUpdateOperationsInput | string
|
20234
18443
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
20235
18444
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
@@ -20237,16 +18446,12 @@ export namespace Prisma {
|
|
20237
18446
|
tagAssisted?: TagUpdateOneRequiredWithoutAssistedEventNestedInput
|
20238
18447
|
supraEvent?: EventUpdateOneWithoutSubEventsNestedInput
|
20239
18448
|
subEvents?: EventUpdateManyWithoutSupraEventNestedInput
|
20240
|
-
tags?: TagUpdateManyWithoutEventNestedInput
|
20241
|
-
eventTickets?: EventTicketUpdateManyWithoutEventNestedInput
|
20242
18449
|
}
|
20243
18450
|
|
20244
18451
|
export type EventUncheckedUpdateWithoutTagConfirmedInput = {
|
20245
18452
|
id?: StringFieldUpdateOperationsInput | string
|
20246
18453
|
name?: StringFieldUpdateOperationsInput | string
|
20247
18454
|
date?: DateTimeFieldUpdateOperationsInput | Date | string
|
20248
|
-
starting_date?: DateTimeFieldUpdateOperationsInput | Date | string
|
20249
|
-
ending_date?: DateTimeFieldUpdateOperationsInput | Date | string
|
20250
18455
|
location?: StringFieldUpdateOperationsInput | string
|
20251
18456
|
folderId?: NullableStringFieldUpdateOperationsInput | string | null
|
20252
18457
|
tagAssistedId?: StringFieldUpdateOperationsInput | string
|
@@ -20254,8 +18459,6 @@ export namespace Prisma {
|
|
20254
18459
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
20255
18460
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
20256
18461
|
subEvents?: EventUncheckedUpdateManyWithoutSupraEventNestedInput
|
20257
|
-
tags?: TagUncheckedUpdateManyWithoutEventNestedInput
|
20258
|
-
eventTickets?: EventTicketUncheckedUpdateManyWithoutEventNestedInput
|
20259
18462
|
}
|
20260
18463
|
|
20261
18464
|
export type AccountUpsertWithWhereUniqueWithoutTagsInput = {
|
@@ -20320,40 +18523,6 @@ export namespace Prisma {
|
|
20320
18523
|
data: XOR<AccountUpdateManyMutationInput, AccountUncheckedUpdateManyWithoutGlobalFilterInput>
|
20321
18524
|
}
|
20322
18525
|
|
20323
|
-
export type EventUpsertWithWhereUniqueWithoutTagsInput = {
|
20324
|
-
where: EventWhereUniqueInput
|
20325
|
-
update: XOR<EventUpdateWithoutTagsInput, EventUncheckedUpdateWithoutTagsInput>
|
20326
|
-
create: XOR<EventCreateWithoutTagsInput, EventUncheckedCreateWithoutTagsInput>
|
20327
|
-
}
|
20328
|
-
|
20329
|
-
export type EventUpdateWithWhereUniqueWithoutTagsInput = {
|
20330
|
-
where: EventWhereUniqueInput
|
20331
|
-
data: XOR<EventUpdateWithoutTagsInput, EventUncheckedUpdateWithoutTagsInput>
|
20332
|
-
}
|
20333
|
-
|
20334
|
-
export type EventUpdateManyWithWhereWithoutTagsInput = {
|
20335
|
-
where: EventScalarWhereInput
|
20336
|
-
data: XOR<EventUpdateManyMutationInput, EventUncheckedUpdateManyWithoutTagsInput>
|
20337
|
-
}
|
20338
|
-
|
20339
|
-
export type EventScalarWhereInput = {
|
20340
|
-
AND?: EventScalarWhereInput | EventScalarWhereInput[]
|
20341
|
-
OR?: EventScalarWhereInput[]
|
20342
|
-
NOT?: EventScalarWhereInput | EventScalarWhereInput[]
|
20343
|
-
id?: StringFilter<"Event"> | string
|
20344
|
-
name?: StringFilter<"Event"> | string
|
20345
|
-
date?: DateTimeFilter<"Event"> | Date | string
|
20346
|
-
starting_date?: DateTimeFilter<"Event"> | Date | string
|
20347
|
-
ending_date?: DateTimeFilter<"Event"> | Date | string
|
20348
|
-
location?: StringFilter<"Event"> | string
|
20349
|
-
folderId?: StringNullableFilter<"Event"> | string | null
|
20350
|
-
tagAssistedId?: StringFilter<"Event"> | string
|
20351
|
-
tagConfirmedId?: StringFilter<"Event"> | string
|
20352
|
-
supraEventId?: StringNullableFilter<"Event"> | string | null
|
20353
|
-
created_at?: DateTimeFilter<"Event"> | Date | string
|
20354
|
-
updated_at?: DateTimeFilter<"Event"> | Date | string
|
20355
|
-
}
|
20356
|
-
|
20357
18526
|
export type TagCreateWithoutGroupInput = {
|
20358
18527
|
id?: string
|
20359
18528
|
name: string
|
@@ -20365,7 +18534,6 @@ export namespace Prisma {
|
|
20365
18534
|
accounts?: AccountCreateNestedManyWithoutTagsInput
|
20366
18535
|
profiles?: ProfileCreateNestedManyWithoutTagsInput
|
20367
18536
|
accountsGlobalFilter?: AccountCreateNestedManyWithoutGlobalFilterInput
|
20368
|
-
Event?: EventCreateNestedManyWithoutTagsInput
|
20369
18537
|
}
|
20370
18538
|
|
20371
18539
|
export type TagUncheckedCreateWithoutGroupInput = {
|
@@ -20379,7 +18547,6 @@ export namespace Prisma {
|
|
20379
18547
|
accounts?: AccountUncheckedCreateNestedManyWithoutTagsInput
|
20380
18548
|
profiles?: ProfileUncheckedCreateNestedManyWithoutTagsInput
|
20381
18549
|
accountsGlobalFilter?: AccountUncheckedCreateNestedManyWithoutGlobalFilterInput
|
20382
|
-
Event?: EventUncheckedCreateNestedManyWithoutTagsInput
|
20383
18550
|
}
|
20384
18551
|
|
20385
18552
|
export type TagCreateOrConnectWithoutGroupInput = {
|
@@ -20440,7 +18607,6 @@ export namespace Prisma {
|
|
20440
18607
|
accounts?: AccountCreateNestedManyWithoutTagsInput
|
20441
18608
|
profiles?: ProfileCreateNestedManyWithoutTagsInput
|
20442
18609
|
accountsGlobalFilter?: AccountCreateNestedManyWithoutGlobalFilterInput
|
20443
|
-
Event?: EventCreateNestedManyWithoutTagsInput
|
20444
18610
|
}
|
20445
18611
|
|
20446
18612
|
export type TagUncheckedCreateWithoutAssistedEventInput = {
|
@@ -20454,7 +18620,6 @@ export namespace Prisma {
|
|
20454
18620
|
accounts?: AccountUncheckedCreateNestedManyWithoutTagsInput
|
20455
18621
|
profiles?: ProfileUncheckedCreateNestedManyWithoutTagsInput
|
20456
18622
|
accountsGlobalFilter?: AccountUncheckedCreateNestedManyWithoutGlobalFilterInput
|
20457
|
-
Event?: EventUncheckedCreateNestedManyWithoutTagsInput
|
20458
18623
|
}
|
20459
18624
|
|
20460
18625
|
export type TagCreateOrConnectWithoutAssistedEventInput = {
|
@@ -20473,7 +18638,6 @@ export namespace Prisma {
|
|
20473
18638
|
accounts?: AccountCreateNestedManyWithoutTagsInput
|
20474
18639
|
profiles?: ProfileCreateNestedManyWithoutTagsInput
|
20475
18640
|
accountsGlobalFilter?: AccountCreateNestedManyWithoutGlobalFilterInput
|
20476
|
-
Event?: EventCreateNestedManyWithoutTagsInput
|
20477
18641
|
}
|
20478
18642
|
|
20479
18643
|
export type TagUncheckedCreateWithoutConfirmedEventInput = {
|
@@ -20487,7 +18651,6 @@ export namespace Prisma {
|
|
20487
18651
|
accounts?: AccountUncheckedCreateNestedManyWithoutTagsInput
|
20488
18652
|
profiles?: ProfileUncheckedCreateNestedManyWithoutTagsInput
|
20489
18653
|
accountsGlobalFilter?: AccountUncheckedCreateNestedManyWithoutGlobalFilterInput
|
20490
|
-
Event?: EventUncheckedCreateNestedManyWithoutTagsInput
|
20491
18654
|
}
|
20492
18655
|
|
20493
18656
|
export type TagCreateOrConnectWithoutConfirmedEventInput = {
|
@@ -20499,8 +18662,6 @@ export namespace Prisma {
|
|
20499
18662
|
id?: string
|
20500
18663
|
name: string
|
20501
18664
|
date: Date | string
|
20502
|
-
starting_date: Date | string
|
20503
|
-
ending_date: Date | string
|
20504
18665
|
location: string
|
20505
18666
|
created_at?: Date | string
|
20506
18667
|
updated_at?: Date | string
|
@@ -20508,16 +18669,12 @@ export namespace Prisma {
|
|
20508
18669
|
tagAssisted: TagCreateNestedOneWithoutAssistedEventInput
|
20509
18670
|
tagConfirmed: TagCreateNestedOneWithoutConfirmedEventInput
|
20510
18671
|
supraEvent?: EventCreateNestedOneWithoutSubEventsInput
|
20511
|
-
tags?: TagCreateNestedManyWithoutEventInput
|
20512
|
-
eventTickets?: EventTicketCreateNestedManyWithoutEventInput
|
20513
18672
|
}
|
20514
18673
|
|
20515
18674
|
export type EventUncheckedCreateWithoutSubEventsInput = {
|
20516
18675
|
id?: string
|
20517
18676
|
name: string
|
20518
18677
|
date: Date | string
|
20519
|
-
starting_date: Date | string
|
20520
|
-
ending_date: Date | string
|
20521
18678
|
location: string
|
20522
18679
|
folderId?: string | null
|
20523
18680
|
tagAssistedId: string
|
@@ -20525,8 +18682,6 @@ export namespace Prisma {
|
|
20525
18682
|
supraEventId?: string | null
|
20526
18683
|
created_at?: Date | string
|
20527
18684
|
updated_at?: Date | string
|
20528
|
-
tags?: TagUncheckedCreateNestedManyWithoutEventInput
|
20529
|
-
eventTickets?: EventTicketUncheckedCreateNestedManyWithoutEventInput
|
20530
18685
|
}
|
20531
18686
|
|
20532
18687
|
export type EventCreateOrConnectWithoutSubEventsInput = {
|
@@ -20538,8 +18693,6 @@ export namespace Prisma {
|
|
20538
18693
|
id?: string
|
20539
18694
|
name: string
|
20540
18695
|
date: Date | string
|
20541
|
-
starting_date: Date | string
|
20542
|
-
ending_date: Date | string
|
20543
18696
|
location: string
|
20544
18697
|
created_at?: Date | string
|
20545
18698
|
updated_at?: Date | string
|
@@ -20547,16 +18700,12 @@ export namespace Prisma {
|
|
20547
18700
|
tagAssisted: TagCreateNestedOneWithoutAssistedEventInput
|
20548
18701
|
tagConfirmed: TagCreateNestedOneWithoutConfirmedEventInput
|
20549
18702
|
subEvents?: EventCreateNestedManyWithoutSupraEventInput
|
20550
|
-
tags?: TagCreateNestedManyWithoutEventInput
|
20551
|
-
eventTickets?: EventTicketCreateNestedManyWithoutEventInput
|
20552
18703
|
}
|
20553
18704
|
|
20554
18705
|
export type EventUncheckedCreateWithoutSupraEventInput = {
|
20555
18706
|
id?: string
|
20556
18707
|
name: string
|
20557
18708
|
date: Date | string
|
20558
|
-
starting_date: Date | string
|
20559
|
-
ending_date: Date | string
|
20560
18709
|
location: string
|
20561
18710
|
folderId?: string | null
|
20562
18711
|
tagAssistedId: string
|
@@ -20564,8 +18713,6 @@ export namespace Prisma {
|
|
20564
18713
|
created_at?: Date | string
|
20565
18714
|
updated_at?: Date | string
|
20566
18715
|
subEvents?: EventUncheckedCreateNestedManyWithoutSupraEventInput
|
20567
|
-
tags?: TagUncheckedCreateNestedManyWithoutEventInput
|
20568
|
-
eventTickets?: EventTicketUncheckedCreateNestedManyWithoutEventInput
|
20569
18716
|
}
|
20570
18717
|
|
20571
18718
|
export type EventCreateOrConnectWithoutSupraEventInput = {
|
@@ -20578,67 +18725,6 @@ export namespace Prisma {
|
|
20578
18725
|
skipDuplicates?: boolean
|
20579
18726
|
}
|
20580
18727
|
|
20581
|
-
export type TagCreateWithoutEventInput = {
|
20582
|
-
id?: string
|
20583
|
-
name: string
|
20584
|
-
type?: $Enums.TagType
|
20585
|
-
created_at?: Date | string
|
20586
|
-
updated_at?: Date | string
|
20587
|
-
group: TagGroupCreateNestedOneWithoutTagsInput
|
20588
|
-
assistedEvent?: EventCreateNestedOneWithoutTagAssistedInput
|
20589
|
-
confirmedEvent?: EventCreateNestedOneWithoutTagConfirmedInput
|
20590
|
-
accounts?: AccountCreateNestedManyWithoutTagsInput
|
20591
|
-
profiles?: ProfileCreateNestedManyWithoutTagsInput
|
20592
|
-
accountsGlobalFilter?: AccountCreateNestedManyWithoutGlobalFilterInput
|
20593
|
-
}
|
20594
|
-
|
20595
|
-
export type TagUncheckedCreateWithoutEventInput = {
|
20596
|
-
id?: string
|
20597
|
-
name: string
|
20598
|
-
type?: $Enums.TagType
|
20599
|
-
groupId: string
|
20600
|
-
created_at?: Date | string
|
20601
|
-
updated_at?: Date | string
|
20602
|
-
assistedEvent?: EventUncheckedCreateNestedOneWithoutTagAssistedInput
|
20603
|
-
confirmedEvent?: EventUncheckedCreateNestedOneWithoutTagConfirmedInput
|
20604
|
-
accounts?: AccountUncheckedCreateNestedManyWithoutTagsInput
|
20605
|
-
profiles?: ProfileUncheckedCreateNestedManyWithoutTagsInput
|
20606
|
-
accountsGlobalFilter?: AccountUncheckedCreateNestedManyWithoutGlobalFilterInput
|
20607
|
-
}
|
20608
|
-
|
20609
|
-
export type TagCreateOrConnectWithoutEventInput = {
|
20610
|
-
where: TagWhereUniqueInput
|
20611
|
-
create: XOR<TagCreateWithoutEventInput, TagUncheckedCreateWithoutEventInput>
|
20612
|
-
}
|
20613
|
-
|
20614
|
-
export type EventTicketCreateWithoutEventInput = {
|
20615
|
-
id?: string
|
20616
|
-
amount: number
|
20617
|
-
type: $Enums.TicketType
|
20618
|
-
price?: number | null
|
20619
|
-
created_at?: Date | string
|
20620
|
-
updated_at?: Date | string
|
20621
|
-
}
|
20622
|
-
|
20623
|
-
export type EventTicketUncheckedCreateWithoutEventInput = {
|
20624
|
-
id?: string
|
20625
|
-
amount: number
|
20626
|
-
type: $Enums.TicketType
|
20627
|
-
price?: number | null
|
20628
|
-
created_at?: Date | string
|
20629
|
-
updated_at?: Date | string
|
20630
|
-
}
|
20631
|
-
|
20632
|
-
export type EventTicketCreateOrConnectWithoutEventInput = {
|
20633
|
-
where: EventTicketWhereUniqueInput
|
20634
|
-
create: XOR<EventTicketCreateWithoutEventInput, EventTicketUncheckedCreateWithoutEventInput>
|
20635
|
-
}
|
20636
|
-
|
20637
|
-
export type EventTicketCreateManyEventInputEnvelope = {
|
20638
|
-
data: EventTicketCreateManyEventInput | EventTicketCreateManyEventInput[]
|
20639
|
-
skipDuplicates?: boolean
|
20640
|
-
}
|
20641
|
-
|
20642
18728
|
export type EventFolderUpsertWithoutEventsInput = {
|
20643
18729
|
update: XOR<EventFolderUpdateWithoutEventsInput, EventFolderUncheckedUpdateWithoutEventsInput>
|
20644
18730
|
create: XOR<EventFolderCreateWithoutEventsInput, EventFolderUncheckedCreateWithoutEventsInput>
|
@@ -20688,7 +18774,6 @@ export namespace Prisma {
|
|
20688
18774
|
accounts?: AccountUpdateManyWithoutTagsNestedInput
|
20689
18775
|
profiles?: ProfileUpdateManyWithoutTagsNestedInput
|
20690
18776
|
accountsGlobalFilter?: AccountUpdateManyWithoutGlobalFilterNestedInput
|
20691
|
-
Event?: EventUpdateManyWithoutTagsNestedInput
|
20692
18777
|
}
|
20693
18778
|
|
20694
18779
|
export type TagUncheckedUpdateWithoutAssistedEventInput = {
|
@@ -20702,7 +18787,6 @@ export namespace Prisma {
|
|
20702
18787
|
accounts?: AccountUncheckedUpdateManyWithoutTagsNestedInput
|
20703
18788
|
profiles?: ProfileUncheckedUpdateManyWithoutTagsNestedInput
|
20704
18789
|
accountsGlobalFilter?: AccountUncheckedUpdateManyWithoutGlobalFilterNestedInput
|
20705
|
-
Event?: EventUncheckedUpdateManyWithoutTagsNestedInput
|
20706
18790
|
}
|
20707
18791
|
|
20708
18792
|
export type TagUpsertWithoutConfirmedEventInput = {
|
@@ -20727,7 +18811,6 @@ export namespace Prisma {
|
|
20727
18811
|
accounts?: AccountUpdateManyWithoutTagsNestedInput
|
20728
18812
|
profiles?: ProfileUpdateManyWithoutTagsNestedInput
|
20729
18813
|
accountsGlobalFilter?: AccountUpdateManyWithoutGlobalFilterNestedInput
|
20730
|
-
Event?: EventUpdateManyWithoutTagsNestedInput
|
20731
18814
|
}
|
20732
18815
|
|
20733
18816
|
export type TagUncheckedUpdateWithoutConfirmedEventInput = {
|
@@ -20741,7 +18824,6 @@ export namespace Prisma {
|
|
20741
18824
|
accounts?: AccountUncheckedUpdateManyWithoutTagsNestedInput
|
20742
18825
|
profiles?: ProfileUncheckedUpdateManyWithoutTagsNestedInput
|
20743
18826
|
accountsGlobalFilter?: AccountUncheckedUpdateManyWithoutGlobalFilterNestedInput
|
20744
|
-
Event?: EventUncheckedUpdateManyWithoutTagsNestedInput
|
20745
18827
|
}
|
20746
18828
|
|
20747
18829
|
export type EventUpsertWithoutSubEventsInput = {
|
@@ -20759,8 +18841,6 @@ export namespace Prisma {
|
|
20759
18841
|
id?: StringFieldUpdateOperationsInput | string
|
20760
18842
|
name?: StringFieldUpdateOperationsInput | string
|
20761
18843
|
date?: DateTimeFieldUpdateOperationsInput | Date | string
|
20762
|
-
starting_date?: DateTimeFieldUpdateOperationsInput | Date | string
|
20763
|
-
ending_date?: DateTimeFieldUpdateOperationsInput | Date | string
|
20764
18844
|
location?: StringFieldUpdateOperationsInput | string
|
20765
18845
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
20766
18846
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
@@ -20768,16 +18848,12 @@ export namespace Prisma {
|
|
20768
18848
|
tagAssisted?: TagUpdateOneRequiredWithoutAssistedEventNestedInput
|
20769
18849
|
tagConfirmed?: TagUpdateOneRequiredWithoutConfirmedEventNestedInput
|
20770
18850
|
supraEvent?: EventUpdateOneWithoutSubEventsNestedInput
|
20771
|
-
tags?: TagUpdateManyWithoutEventNestedInput
|
20772
|
-
eventTickets?: EventTicketUpdateManyWithoutEventNestedInput
|
20773
18851
|
}
|
20774
18852
|
|
20775
18853
|
export type EventUncheckedUpdateWithoutSubEventsInput = {
|
20776
18854
|
id?: StringFieldUpdateOperationsInput | string
|
20777
18855
|
name?: StringFieldUpdateOperationsInput | string
|
20778
18856
|
date?: DateTimeFieldUpdateOperationsInput | Date | string
|
20779
|
-
starting_date?: DateTimeFieldUpdateOperationsInput | Date | string
|
20780
|
-
ending_date?: DateTimeFieldUpdateOperationsInput | Date | string
|
20781
18857
|
location?: StringFieldUpdateOperationsInput | string
|
20782
18858
|
folderId?: NullableStringFieldUpdateOperationsInput | string | null
|
20783
18859
|
tagAssistedId?: StringFieldUpdateOperationsInput | string
|
@@ -20785,8 +18861,6 @@ export namespace Prisma {
|
|
20785
18861
|
supraEventId?: NullableStringFieldUpdateOperationsInput | string | null
|
20786
18862
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
20787
18863
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
20788
|
-
tags?: TagUncheckedUpdateManyWithoutEventNestedInput
|
20789
|
-
eventTickets?: EventTicketUncheckedUpdateManyWithoutEventNestedInput
|
20790
18864
|
}
|
20791
18865
|
|
20792
18866
|
export type EventUpsertWithWhereUniqueWithoutSupraEventInput = {
|
@@ -20805,57 +18879,26 @@ export namespace Prisma {
|
|
20805
18879
|
data: XOR<EventUpdateManyMutationInput, EventUncheckedUpdateManyWithoutSupraEventInput>
|
20806
18880
|
}
|
20807
18881
|
|
20808
|
-
export type
|
20809
|
-
|
20810
|
-
|
20811
|
-
|
20812
|
-
|
20813
|
-
|
20814
|
-
|
20815
|
-
|
20816
|
-
|
20817
|
-
|
20818
|
-
|
20819
|
-
|
20820
|
-
|
20821
|
-
|
20822
|
-
}
|
20823
|
-
|
20824
|
-
export type EventTicketUpsertWithWhereUniqueWithoutEventInput = {
|
20825
|
-
where: EventTicketWhereUniqueInput
|
20826
|
-
update: XOR<EventTicketUpdateWithoutEventInput, EventTicketUncheckedUpdateWithoutEventInput>
|
20827
|
-
create: XOR<EventTicketCreateWithoutEventInput, EventTicketUncheckedCreateWithoutEventInput>
|
20828
|
-
}
|
20829
|
-
|
20830
|
-
export type EventTicketUpdateWithWhereUniqueWithoutEventInput = {
|
20831
|
-
where: EventTicketWhereUniqueInput
|
20832
|
-
data: XOR<EventTicketUpdateWithoutEventInput, EventTicketUncheckedUpdateWithoutEventInput>
|
20833
|
-
}
|
20834
|
-
|
20835
|
-
export type EventTicketUpdateManyWithWhereWithoutEventInput = {
|
20836
|
-
where: EventTicketScalarWhereInput
|
20837
|
-
data: XOR<EventTicketUpdateManyMutationInput, EventTicketUncheckedUpdateManyWithoutEventInput>
|
20838
|
-
}
|
20839
|
-
|
20840
|
-
export type EventTicketScalarWhereInput = {
|
20841
|
-
AND?: EventTicketScalarWhereInput | EventTicketScalarWhereInput[]
|
20842
|
-
OR?: EventTicketScalarWhereInput[]
|
20843
|
-
NOT?: EventTicketScalarWhereInput | EventTicketScalarWhereInput[]
|
20844
|
-
id?: StringFilter<"EventTicket"> | string
|
20845
|
-
eventId?: StringFilter<"EventTicket"> | string
|
20846
|
-
amount?: IntFilter<"EventTicket"> | number
|
20847
|
-
type?: EnumTicketTypeFilter<"EventTicket"> | $Enums.TicketType
|
20848
|
-
price?: FloatNullableFilter<"EventTicket"> | number | null
|
20849
|
-
created_at?: DateTimeFilter<"EventTicket"> | Date | string
|
20850
|
-
updated_at?: DateTimeFilter<"EventTicket"> | Date | string
|
18882
|
+
export type EventScalarWhereInput = {
|
18883
|
+
AND?: EventScalarWhereInput | EventScalarWhereInput[]
|
18884
|
+
OR?: EventScalarWhereInput[]
|
18885
|
+
NOT?: EventScalarWhereInput | EventScalarWhereInput[]
|
18886
|
+
id?: StringFilter<"Event"> | string
|
18887
|
+
name?: StringFilter<"Event"> | string
|
18888
|
+
date?: DateTimeFilter<"Event"> | Date | string
|
18889
|
+
location?: StringFilter<"Event"> | string
|
18890
|
+
folderId?: StringNullableFilter<"Event"> | string | null
|
18891
|
+
tagAssistedId?: StringFilter<"Event"> | string
|
18892
|
+
tagConfirmedId?: StringFilter<"Event"> | string
|
18893
|
+
supraEventId?: StringNullableFilter<"Event"> | string | null
|
18894
|
+
created_at?: DateTimeFilter<"Event"> | Date | string
|
18895
|
+
updated_at?: DateTimeFilter<"Event"> | Date | string
|
20851
18896
|
}
|
20852
18897
|
|
20853
18898
|
export type EventCreateWithoutFolderInput = {
|
20854
18899
|
id?: string
|
20855
18900
|
name: string
|
20856
18901
|
date: Date | string
|
20857
|
-
starting_date: Date | string
|
20858
|
-
ending_date: Date | string
|
20859
18902
|
location: string
|
20860
18903
|
created_at?: Date | string
|
20861
18904
|
updated_at?: Date | string
|
@@ -20863,16 +18906,12 @@ export namespace Prisma {
|
|
20863
18906
|
tagConfirmed: TagCreateNestedOneWithoutConfirmedEventInput
|
20864
18907
|
supraEvent?: EventCreateNestedOneWithoutSubEventsInput
|
20865
18908
|
subEvents?: EventCreateNestedManyWithoutSupraEventInput
|
20866
|
-
tags?: TagCreateNestedManyWithoutEventInput
|
20867
|
-
eventTickets?: EventTicketCreateNestedManyWithoutEventInput
|
20868
18909
|
}
|
20869
18910
|
|
20870
18911
|
export type EventUncheckedCreateWithoutFolderInput = {
|
20871
18912
|
id?: string
|
20872
18913
|
name: string
|
20873
18914
|
date: Date | string
|
20874
|
-
starting_date: Date | string
|
20875
|
-
ending_date: Date | string
|
20876
18915
|
location: string
|
20877
18916
|
tagAssistedId: string
|
20878
18917
|
tagConfirmedId: string
|
@@ -20880,8 +18919,6 @@ export namespace Prisma {
|
|
20880
18919
|
created_at?: Date | string
|
20881
18920
|
updated_at?: Date | string
|
20882
18921
|
subEvents?: EventUncheckedCreateNestedManyWithoutSupraEventInput
|
20883
|
-
tags?: TagUncheckedCreateNestedManyWithoutEventInput
|
20884
|
-
eventTickets?: EventTicketUncheckedCreateNestedManyWithoutEventInput
|
20885
18922
|
}
|
20886
18923
|
|
20887
18924
|
export type EventCreateOrConnectWithoutFolderInput = {
|
@@ -21022,90 +19059,6 @@ export namespace Prisma {
|
|
21022
19059
|
tags?: TagUncheckedUpdateManyWithoutProfilesNestedInput
|
21023
19060
|
}
|
21024
19061
|
|
21025
|
-
export type EventCreateWithoutEventTicketsInput = {
|
21026
|
-
id?: string
|
21027
|
-
name: string
|
21028
|
-
date: Date | string
|
21029
|
-
starting_date: Date | string
|
21030
|
-
ending_date: Date | string
|
21031
|
-
location: string
|
21032
|
-
created_at?: Date | string
|
21033
|
-
updated_at?: Date | string
|
21034
|
-
folder?: EventFolderCreateNestedOneWithoutEventsInput
|
21035
|
-
tagAssisted: TagCreateNestedOneWithoutAssistedEventInput
|
21036
|
-
tagConfirmed: TagCreateNestedOneWithoutConfirmedEventInput
|
21037
|
-
supraEvent?: EventCreateNestedOneWithoutSubEventsInput
|
21038
|
-
subEvents?: EventCreateNestedManyWithoutSupraEventInput
|
21039
|
-
tags?: TagCreateNestedManyWithoutEventInput
|
21040
|
-
}
|
21041
|
-
|
21042
|
-
export type EventUncheckedCreateWithoutEventTicketsInput = {
|
21043
|
-
id?: string
|
21044
|
-
name: string
|
21045
|
-
date: Date | string
|
21046
|
-
starting_date: Date | string
|
21047
|
-
ending_date: Date | string
|
21048
|
-
location: string
|
21049
|
-
folderId?: string | null
|
21050
|
-
tagAssistedId: string
|
21051
|
-
tagConfirmedId: string
|
21052
|
-
supraEventId?: string | null
|
21053
|
-
created_at?: Date | string
|
21054
|
-
updated_at?: Date | string
|
21055
|
-
subEvents?: EventUncheckedCreateNestedManyWithoutSupraEventInput
|
21056
|
-
tags?: TagUncheckedCreateNestedManyWithoutEventInput
|
21057
|
-
}
|
21058
|
-
|
21059
|
-
export type EventCreateOrConnectWithoutEventTicketsInput = {
|
21060
|
-
where: EventWhereUniqueInput
|
21061
|
-
create: XOR<EventCreateWithoutEventTicketsInput, EventUncheckedCreateWithoutEventTicketsInput>
|
21062
|
-
}
|
21063
|
-
|
21064
|
-
export type EventUpsertWithoutEventTicketsInput = {
|
21065
|
-
update: XOR<EventUpdateWithoutEventTicketsInput, EventUncheckedUpdateWithoutEventTicketsInput>
|
21066
|
-
create: XOR<EventCreateWithoutEventTicketsInput, EventUncheckedCreateWithoutEventTicketsInput>
|
21067
|
-
where?: EventWhereInput
|
21068
|
-
}
|
21069
|
-
|
21070
|
-
export type EventUpdateToOneWithWhereWithoutEventTicketsInput = {
|
21071
|
-
where?: EventWhereInput
|
21072
|
-
data: XOR<EventUpdateWithoutEventTicketsInput, EventUncheckedUpdateWithoutEventTicketsInput>
|
21073
|
-
}
|
21074
|
-
|
21075
|
-
export type EventUpdateWithoutEventTicketsInput = {
|
21076
|
-
id?: StringFieldUpdateOperationsInput | string
|
21077
|
-
name?: StringFieldUpdateOperationsInput | string
|
21078
|
-
date?: DateTimeFieldUpdateOperationsInput | Date | string
|
21079
|
-
starting_date?: DateTimeFieldUpdateOperationsInput | Date | string
|
21080
|
-
ending_date?: DateTimeFieldUpdateOperationsInput | Date | string
|
21081
|
-
location?: StringFieldUpdateOperationsInput | string
|
21082
|
-
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
21083
|
-
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
21084
|
-
folder?: EventFolderUpdateOneWithoutEventsNestedInput
|
21085
|
-
tagAssisted?: TagUpdateOneRequiredWithoutAssistedEventNestedInput
|
21086
|
-
tagConfirmed?: TagUpdateOneRequiredWithoutConfirmedEventNestedInput
|
21087
|
-
supraEvent?: EventUpdateOneWithoutSubEventsNestedInput
|
21088
|
-
subEvents?: EventUpdateManyWithoutSupraEventNestedInput
|
21089
|
-
tags?: TagUpdateManyWithoutEventNestedInput
|
21090
|
-
}
|
21091
|
-
|
21092
|
-
export type EventUncheckedUpdateWithoutEventTicketsInput = {
|
21093
|
-
id?: StringFieldUpdateOperationsInput | string
|
21094
|
-
name?: StringFieldUpdateOperationsInput | string
|
21095
|
-
date?: DateTimeFieldUpdateOperationsInput | Date | string
|
21096
|
-
starting_date?: DateTimeFieldUpdateOperationsInput | Date | string
|
21097
|
-
ending_date?: DateTimeFieldUpdateOperationsInput | Date | string
|
21098
|
-
location?: StringFieldUpdateOperationsInput | string
|
21099
|
-
folderId?: NullableStringFieldUpdateOperationsInput | string | null
|
21100
|
-
tagAssistedId?: StringFieldUpdateOperationsInput | string
|
21101
|
-
tagConfirmedId?: StringFieldUpdateOperationsInput | string
|
21102
|
-
supraEventId?: NullableStringFieldUpdateOperationsInput | string | null
|
21103
|
-
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
21104
|
-
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
21105
|
-
subEvents?: EventUncheckedUpdateManyWithoutSupraEventNestedInput
|
21106
|
-
tags?: TagUncheckedUpdateManyWithoutEventNestedInput
|
21107
|
-
}
|
21108
|
-
|
21109
19062
|
export type CommentCreateManyAccountInput = {
|
21110
19063
|
id?: string
|
21111
19064
|
content: string
|
@@ -21213,7 +19166,6 @@ export namespace Prisma {
|
|
21213
19166
|
confirmedEvent?: EventUpdateOneWithoutTagConfirmedNestedInput
|
21214
19167
|
profiles?: ProfileUpdateManyWithoutTagsNestedInput
|
21215
19168
|
accountsGlobalFilter?: AccountUpdateManyWithoutGlobalFilterNestedInput
|
21216
|
-
Event?: EventUpdateManyWithoutTagsNestedInput
|
21217
19169
|
}
|
21218
19170
|
|
21219
19171
|
export type TagUncheckedUpdateWithoutAccountsInput = {
|
@@ -21227,7 +19179,6 @@ export namespace Prisma {
|
|
21227
19179
|
confirmedEvent?: EventUncheckedUpdateOneWithoutTagConfirmedNestedInput
|
21228
19180
|
profiles?: ProfileUncheckedUpdateManyWithoutTagsNestedInput
|
21229
19181
|
accountsGlobalFilter?: AccountUncheckedUpdateManyWithoutGlobalFilterNestedInput
|
21230
|
-
Event?: EventUncheckedUpdateManyWithoutTagsNestedInput
|
21231
19182
|
}
|
21232
19183
|
|
21233
19184
|
export type TagUncheckedUpdateManyWithoutAccountsInput = {
|
@@ -21250,7 +19201,6 @@ export namespace Prisma {
|
|
21250
19201
|
confirmedEvent?: EventUpdateOneWithoutTagConfirmedNestedInput
|
21251
19202
|
accounts?: AccountUpdateManyWithoutTagsNestedInput
|
21252
19203
|
profiles?: ProfileUpdateManyWithoutTagsNestedInput
|
21253
|
-
Event?: EventUpdateManyWithoutTagsNestedInput
|
21254
19204
|
}
|
21255
19205
|
|
21256
19206
|
export type TagUncheckedUpdateWithoutAccountsGlobalFilterInput = {
|
@@ -21264,7 +19214,6 @@ export namespace Prisma {
|
|
21264
19214
|
confirmedEvent?: EventUncheckedUpdateOneWithoutTagConfirmedNestedInput
|
21265
19215
|
accounts?: AccountUncheckedUpdateManyWithoutTagsNestedInput
|
21266
19216
|
profiles?: ProfileUncheckedUpdateManyWithoutTagsNestedInput
|
21267
|
-
Event?: EventUncheckedUpdateManyWithoutTagsNestedInput
|
21268
19217
|
}
|
21269
19218
|
|
21270
19219
|
export type TagUncheckedUpdateManyWithoutAccountsGlobalFilterInput = {
|
@@ -21371,7 +19320,6 @@ export namespace Prisma {
|
|
21371
19320
|
confirmedEvent?: EventUpdateOneWithoutTagConfirmedNestedInput
|
21372
19321
|
accounts?: AccountUpdateManyWithoutTagsNestedInput
|
21373
19322
|
accountsGlobalFilter?: AccountUpdateManyWithoutGlobalFilterNestedInput
|
21374
|
-
Event?: EventUpdateManyWithoutTagsNestedInput
|
21375
19323
|
}
|
21376
19324
|
|
21377
19325
|
export type TagUncheckedUpdateWithoutProfilesInput = {
|
@@ -21385,7 +19333,6 @@ export namespace Prisma {
|
|
21385
19333
|
confirmedEvent?: EventUncheckedUpdateOneWithoutTagConfirmedNestedInput
|
21386
19334
|
accounts?: AccountUncheckedUpdateManyWithoutTagsNestedInput
|
21387
19335
|
accountsGlobalFilter?: AccountUncheckedUpdateManyWithoutGlobalFilterNestedInput
|
21388
|
-
Event?: EventUncheckedUpdateManyWithoutTagsNestedInput
|
21389
19336
|
}
|
21390
19337
|
|
21391
19338
|
export type TagUncheckedUpdateManyWithoutProfilesInput = {
|
@@ -21725,55 +19672,6 @@ export namespace Prisma {
|
|
21725
19672
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
21726
19673
|
}
|
21727
19674
|
|
21728
|
-
export type EventUpdateWithoutTagsInput = {
|
21729
|
-
id?: StringFieldUpdateOperationsInput | string
|
21730
|
-
name?: StringFieldUpdateOperationsInput | string
|
21731
|
-
date?: DateTimeFieldUpdateOperationsInput | Date | string
|
21732
|
-
starting_date?: DateTimeFieldUpdateOperationsInput | Date | string
|
21733
|
-
ending_date?: DateTimeFieldUpdateOperationsInput | Date | string
|
21734
|
-
location?: StringFieldUpdateOperationsInput | string
|
21735
|
-
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
21736
|
-
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
21737
|
-
folder?: EventFolderUpdateOneWithoutEventsNestedInput
|
21738
|
-
tagAssisted?: TagUpdateOneRequiredWithoutAssistedEventNestedInput
|
21739
|
-
tagConfirmed?: TagUpdateOneRequiredWithoutConfirmedEventNestedInput
|
21740
|
-
supraEvent?: EventUpdateOneWithoutSubEventsNestedInput
|
21741
|
-
subEvents?: EventUpdateManyWithoutSupraEventNestedInput
|
21742
|
-
eventTickets?: EventTicketUpdateManyWithoutEventNestedInput
|
21743
|
-
}
|
21744
|
-
|
21745
|
-
export type EventUncheckedUpdateWithoutTagsInput = {
|
21746
|
-
id?: StringFieldUpdateOperationsInput | string
|
21747
|
-
name?: StringFieldUpdateOperationsInput | string
|
21748
|
-
date?: DateTimeFieldUpdateOperationsInput | Date | string
|
21749
|
-
starting_date?: DateTimeFieldUpdateOperationsInput | Date | string
|
21750
|
-
ending_date?: DateTimeFieldUpdateOperationsInput | Date | string
|
21751
|
-
location?: StringFieldUpdateOperationsInput | string
|
21752
|
-
folderId?: NullableStringFieldUpdateOperationsInput | string | null
|
21753
|
-
tagAssistedId?: StringFieldUpdateOperationsInput | string
|
21754
|
-
tagConfirmedId?: StringFieldUpdateOperationsInput | string
|
21755
|
-
supraEventId?: NullableStringFieldUpdateOperationsInput | string | null
|
21756
|
-
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
21757
|
-
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
21758
|
-
subEvents?: EventUncheckedUpdateManyWithoutSupraEventNestedInput
|
21759
|
-
eventTickets?: EventTicketUncheckedUpdateManyWithoutEventNestedInput
|
21760
|
-
}
|
21761
|
-
|
21762
|
-
export type EventUncheckedUpdateManyWithoutTagsInput = {
|
21763
|
-
id?: StringFieldUpdateOperationsInput | string
|
21764
|
-
name?: StringFieldUpdateOperationsInput | string
|
21765
|
-
date?: DateTimeFieldUpdateOperationsInput | Date | string
|
21766
|
-
starting_date?: DateTimeFieldUpdateOperationsInput | Date | string
|
21767
|
-
ending_date?: DateTimeFieldUpdateOperationsInput | Date | string
|
21768
|
-
location?: StringFieldUpdateOperationsInput | string
|
21769
|
-
folderId?: NullableStringFieldUpdateOperationsInput | string | null
|
21770
|
-
tagAssistedId?: StringFieldUpdateOperationsInput | string
|
21771
|
-
tagConfirmedId?: StringFieldUpdateOperationsInput | string
|
21772
|
-
supraEventId?: NullableStringFieldUpdateOperationsInput | string | null
|
21773
|
-
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
21774
|
-
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
21775
|
-
}
|
21776
|
-
|
21777
19675
|
export type TagCreateManyGroupInput = {
|
21778
19676
|
id?: string
|
21779
19677
|
name: string
|
@@ -21793,7 +19691,6 @@ export namespace Prisma {
|
|
21793
19691
|
accounts?: AccountUpdateManyWithoutTagsNestedInput
|
21794
19692
|
profiles?: ProfileUpdateManyWithoutTagsNestedInput
|
21795
19693
|
accountsGlobalFilter?: AccountUpdateManyWithoutGlobalFilterNestedInput
|
21796
|
-
Event?: EventUpdateManyWithoutTagsNestedInput
|
21797
19694
|
}
|
21798
19695
|
|
21799
19696
|
export type TagUncheckedUpdateWithoutGroupInput = {
|
@@ -21807,7 +19704,6 @@ export namespace Prisma {
|
|
21807
19704
|
accounts?: AccountUncheckedUpdateManyWithoutTagsNestedInput
|
21808
19705
|
profiles?: ProfileUncheckedUpdateManyWithoutTagsNestedInput
|
21809
19706
|
accountsGlobalFilter?: AccountUncheckedUpdateManyWithoutGlobalFilterNestedInput
|
21810
|
-
Event?: EventUncheckedUpdateManyWithoutTagsNestedInput
|
21811
19707
|
}
|
21812
19708
|
|
21813
19709
|
export type TagUncheckedUpdateManyWithoutGroupInput = {
|
@@ -21822,8 +19718,6 @@ export namespace Prisma {
|
|
21822
19718
|
id?: string
|
21823
19719
|
name: string
|
21824
19720
|
date: Date | string
|
21825
|
-
starting_date: Date | string
|
21826
|
-
ending_date: Date | string
|
21827
19721
|
location: string
|
21828
19722
|
folderId?: string | null
|
21829
19723
|
tagAssistedId: string
|
@@ -21832,21 +19726,10 @@ export namespace Prisma {
|
|
21832
19726
|
updated_at?: Date | string
|
21833
19727
|
}
|
21834
19728
|
|
21835
|
-
export type EventTicketCreateManyEventInput = {
|
21836
|
-
id?: string
|
21837
|
-
amount: number
|
21838
|
-
type: $Enums.TicketType
|
21839
|
-
price?: number | null
|
21840
|
-
created_at?: Date | string
|
21841
|
-
updated_at?: Date | string
|
21842
|
-
}
|
21843
|
-
|
21844
19729
|
export type EventUpdateWithoutSupraEventInput = {
|
21845
19730
|
id?: StringFieldUpdateOperationsInput | string
|
21846
19731
|
name?: StringFieldUpdateOperationsInput | string
|
21847
19732
|
date?: DateTimeFieldUpdateOperationsInput | Date | string
|
21848
|
-
starting_date?: DateTimeFieldUpdateOperationsInput | Date | string
|
21849
|
-
ending_date?: DateTimeFieldUpdateOperationsInput | Date | string
|
21850
19733
|
location?: StringFieldUpdateOperationsInput | string
|
21851
19734
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
21852
19735
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
@@ -21854,16 +19737,12 @@ export namespace Prisma {
|
|
21854
19737
|
tagAssisted?: TagUpdateOneRequiredWithoutAssistedEventNestedInput
|
21855
19738
|
tagConfirmed?: TagUpdateOneRequiredWithoutConfirmedEventNestedInput
|
21856
19739
|
subEvents?: EventUpdateManyWithoutSupraEventNestedInput
|
21857
|
-
tags?: TagUpdateManyWithoutEventNestedInput
|
21858
|
-
eventTickets?: EventTicketUpdateManyWithoutEventNestedInput
|
21859
19740
|
}
|
21860
19741
|
|
21861
19742
|
export type EventUncheckedUpdateWithoutSupraEventInput = {
|
21862
19743
|
id?: StringFieldUpdateOperationsInput | string
|
21863
19744
|
name?: StringFieldUpdateOperationsInput | string
|
21864
19745
|
date?: DateTimeFieldUpdateOperationsInput | Date | string
|
21865
|
-
starting_date?: DateTimeFieldUpdateOperationsInput | Date | string
|
21866
|
-
ending_date?: DateTimeFieldUpdateOperationsInput | Date | string
|
21867
19746
|
location?: StringFieldUpdateOperationsInput | string
|
21868
19747
|
folderId?: NullableStringFieldUpdateOperationsInput | string | null
|
21869
19748
|
tagAssistedId?: StringFieldUpdateOperationsInput | string
|
@@ -21871,16 +19750,12 @@ export namespace Prisma {
|
|
21871
19750
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
21872
19751
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
21873
19752
|
subEvents?: EventUncheckedUpdateManyWithoutSupraEventNestedInput
|
21874
|
-
tags?: TagUncheckedUpdateManyWithoutEventNestedInput
|
21875
|
-
eventTickets?: EventTicketUncheckedUpdateManyWithoutEventNestedInput
|
21876
19753
|
}
|
21877
19754
|
|
21878
19755
|
export type EventUncheckedUpdateManyWithoutSupraEventInput = {
|
21879
19756
|
id?: StringFieldUpdateOperationsInput | string
|
21880
19757
|
name?: StringFieldUpdateOperationsInput | string
|
21881
19758
|
date?: DateTimeFieldUpdateOperationsInput | Date | string
|
21882
|
-
starting_date?: DateTimeFieldUpdateOperationsInput | Date | string
|
21883
|
-
ending_date?: DateTimeFieldUpdateOperationsInput | Date | string
|
21884
19759
|
location?: StringFieldUpdateOperationsInput | string
|
21885
19760
|
folderId?: NullableStringFieldUpdateOperationsInput | string | null
|
21886
19761
|
tagAssistedId?: StringFieldUpdateOperationsInput | string
|
@@ -21889,76 +19764,10 @@ export namespace Prisma {
|
|
21889
19764
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
21890
19765
|
}
|
21891
19766
|
|
21892
|
-
export type TagUpdateWithoutEventInput = {
|
21893
|
-
id?: StringFieldUpdateOperationsInput | string
|
21894
|
-
name?: StringFieldUpdateOperationsInput | string
|
21895
|
-
type?: EnumTagTypeFieldUpdateOperationsInput | $Enums.TagType
|
21896
|
-
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
21897
|
-
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
21898
|
-
group?: TagGroupUpdateOneRequiredWithoutTagsNestedInput
|
21899
|
-
assistedEvent?: EventUpdateOneWithoutTagAssistedNestedInput
|
21900
|
-
confirmedEvent?: EventUpdateOneWithoutTagConfirmedNestedInput
|
21901
|
-
accounts?: AccountUpdateManyWithoutTagsNestedInput
|
21902
|
-
profiles?: ProfileUpdateManyWithoutTagsNestedInput
|
21903
|
-
accountsGlobalFilter?: AccountUpdateManyWithoutGlobalFilterNestedInput
|
21904
|
-
}
|
21905
|
-
|
21906
|
-
export type TagUncheckedUpdateWithoutEventInput = {
|
21907
|
-
id?: StringFieldUpdateOperationsInput | string
|
21908
|
-
name?: StringFieldUpdateOperationsInput | string
|
21909
|
-
type?: EnumTagTypeFieldUpdateOperationsInput | $Enums.TagType
|
21910
|
-
groupId?: StringFieldUpdateOperationsInput | string
|
21911
|
-
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
21912
|
-
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
21913
|
-
assistedEvent?: EventUncheckedUpdateOneWithoutTagAssistedNestedInput
|
21914
|
-
confirmedEvent?: EventUncheckedUpdateOneWithoutTagConfirmedNestedInput
|
21915
|
-
accounts?: AccountUncheckedUpdateManyWithoutTagsNestedInput
|
21916
|
-
profiles?: ProfileUncheckedUpdateManyWithoutTagsNestedInput
|
21917
|
-
accountsGlobalFilter?: AccountUncheckedUpdateManyWithoutGlobalFilterNestedInput
|
21918
|
-
}
|
21919
|
-
|
21920
|
-
export type TagUncheckedUpdateManyWithoutEventInput = {
|
21921
|
-
id?: StringFieldUpdateOperationsInput | string
|
21922
|
-
name?: StringFieldUpdateOperationsInput | string
|
21923
|
-
type?: EnumTagTypeFieldUpdateOperationsInput | $Enums.TagType
|
21924
|
-
groupId?: StringFieldUpdateOperationsInput | string
|
21925
|
-
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
21926
|
-
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
21927
|
-
}
|
21928
|
-
|
21929
|
-
export type EventTicketUpdateWithoutEventInput = {
|
21930
|
-
id?: StringFieldUpdateOperationsInput | string
|
21931
|
-
amount?: IntFieldUpdateOperationsInput | number
|
21932
|
-
type?: EnumTicketTypeFieldUpdateOperationsInput | $Enums.TicketType
|
21933
|
-
price?: NullableFloatFieldUpdateOperationsInput | number | null
|
21934
|
-
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
21935
|
-
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
21936
|
-
}
|
21937
|
-
|
21938
|
-
export type EventTicketUncheckedUpdateWithoutEventInput = {
|
21939
|
-
id?: StringFieldUpdateOperationsInput | string
|
21940
|
-
amount?: IntFieldUpdateOperationsInput | number
|
21941
|
-
type?: EnumTicketTypeFieldUpdateOperationsInput | $Enums.TicketType
|
21942
|
-
price?: NullableFloatFieldUpdateOperationsInput | number | null
|
21943
|
-
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
21944
|
-
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
21945
|
-
}
|
21946
|
-
|
21947
|
-
export type EventTicketUncheckedUpdateManyWithoutEventInput = {
|
21948
|
-
id?: StringFieldUpdateOperationsInput | string
|
21949
|
-
amount?: IntFieldUpdateOperationsInput | number
|
21950
|
-
type?: EnumTicketTypeFieldUpdateOperationsInput | $Enums.TicketType
|
21951
|
-
price?: NullableFloatFieldUpdateOperationsInput | number | null
|
21952
|
-
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
21953
|
-
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
21954
|
-
}
|
21955
|
-
|
21956
19767
|
export type EventCreateManyFolderInput = {
|
21957
19768
|
id?: string
|
21958
19769
|
name: string
|
21959
19770
|
date: Date | string
|
21960
|
-
starting_date: Date | string
|
21961
|
-
ending_date: Date | string
|
21962
19771
|
location: string
|
21963
19772
|
tagAssistedId: string
|
21964
19773
|
tagConfirmedId: string
|
@@ -21971,8 +19780,6 @@ export namespace Prisma {
|
|
21971
19780
|
id?: StringFieldUpdateOperationsInput | string
|
21972
19781
|
name?: StringFieldUpdateOperationsInput | string
|
21973
19782
|
date?: DateTimeFieldUpdateOperationsInput | Date | string
|
21974
|
-
starting_date?: DateTimeFieldUpdateOperationsInput | Date | string
|
21975
|
-
ending_date?: DateTimeFieldUpdateOperationsInput | Date | string
|
21976
19783
|
location?: StringFieldUpdateOperationsInput | string
|
21977
19784
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
21978
19785
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
@@ -21980,16 +19787,12 @@ export namespace Prisma {
|
|
21980
19787
|
tagConfirmed?: TagUpdateOneRequiredWithoutConfirmedEventNestedInput
|
21981
19788
|
supraEvent?: EventUpdateOneWithoutSubEventsNestedInput
|
21982
19789
|
subEvents?: EventUpdateManyWithoutSupraEventNestedInput
|
21983
|
-
tags?: TagUpdateManyWithoutEventNestedInput
|
21984
|
-
eventTickets?: EventTicketUpdateManyWithoutEventNestedInput
|
21985
19790
|
}
|
21986
19791
|
|
21987
19792
|
export type EventUncheckedUpdateWithoutFolderInput = {
|
21988
19793
|
id?: StringFieldUpdateOperationsInput | string
|
21989
19794
|
name?: StringFieldUpdateOperationsInput | string
|
21990
19795
|
date?: DateTimeFieldUpdateOperationsInput | Date | string
|
21991
|
-
starting_date?: DateTimeFieldUpdateOperationsInput | Date | string
|
21992
|
-
ending_date?: DateTimeFieldUpdateOperationsInput | Date | string
|
21993
19796
|
location?: StringFieldUpdateOperationsInput | string
|
21994
19797
|
tagAssistedId?: StringFieldUpdateOperationsInput | string
|
21995
19798
|
tagConfirmedId?: StringFieldUpdateOperationsInput | string
|
@@ -21997,16 +19800,12 @@ export namespace Prisma {
|
|
21997
19800
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
21998
19801
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
21999
19802
|
subEvents?: EventUncheckedUpdateManyWithoutSupraEventNestedInput
|
22000
|
-
tags?: TagUncheckedUpdateManyWithoutEventNestedInput
|
22001
|
-
eventTickets?: EventTicketUncheckedUpdateManyWithoutEventNestedInput
|
22002
19803
|
}
|
22003
19804
|
|
22004
19805
|
export type EventUncheckedUpdateManyWithoutFolderInput = {
|
22005
19806
|
id?: StringFieldUpdateOperationsInput | string
|
22006
19807
|
name?: StringFieldUpdateOperationsInput | string
|
22007
19808
|
date?: DateTimeFieldUpdateOperationsInput | Date | string
|
22008
|
-
starting_date?: DateTimeFieldUpdateOperationsInput | Date | string
|
22009
|
-
ending_date?: DateTimeFieldUpdateOperationsInput | Date | string
|
22010
19809
|
location?: StringFieldUpdateOperationsInput | string
|
22011
19810
|
tagAssistedId?: StringFieldUpdateOperationsInput | string
|
22012
19811
|
tagConfirmedId?: StringFieldUpdateOperationsInput | string
|
@@ -22092,10 +19891,6 @@ export namespace Prisma {
|
|
22092
19891
|
* @deprecated Use EnumsDefaultArgs instead
|
22093
19892
|
*/
|
22094
19893
|
export type EnumsArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = EnumsDefaultArgs<ExtArgs>
|
22095
|
-
/**
|
22096
|
-
* @deprecated Use EventTicketDefaultArgs instead
|
22097
|
-
*/
|
22098
|
-
export type EventTicketArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = EventTicketDefaultArgs<ExtArgs>
|
22099
19894
|
|
22100
19895
|
/**
|
22101
19896
|
* Batch Payload for updateMany & deleteMany & createMany
|