expo-backend-types 0.36.0-EXPO-323-Enviar-mail-ticket.7 → 0.37.0-EXPO-325-ExpoBackend-Emision-de-multiples-tickets.1
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/account/dto/get-global-filter.dto.d.ts +8 -8
- package/dist/src/account/dto/get-me.dto.d.ts +16 -16
- package/dist/src/account/dto/update-global-filter.dto.d.ts +8 -8
- package/dist/src/event/dto/create-event.dto.d.ts +8 -8
- package/dist/src/event/dto/event-tickets.dto.d.ts +2 -2
- package/dist/src/event/dto/get-active-events.dto.d.ts +12 -12
- package/dist/src/event/dto/get-all-event.dto.d.ts +56 -56
- package/dist/src/event/dto/get-by-id-event.dto.d.ts +50 -78
- package/dist/src/event/dto/update-event.dto.d.ts +24 -24
- package/dist/src/exports.d.ts +1 -0
- package/dist/src/exports.js +1 -0
- package/dist/src/i18n/es.d.ts +31 -22
- package/dist/src/i18n/es.js +31 -22
- package/dist/src/i18n/es.js.map +1 -1
- package/dist/src/mi-expo/dto/get-me.dto.d.ts +5 -5
- package/dist/src/mi-expo/dto/login-with-phone.dto.d.ts +9 -9
- package/dist/src/mi-expo/dto/login.dto.d.ts +9 -9
- package/dist/src/mi-expo/dto/update-me.dto.d.ts +11 -11
- package/dist/src/otp/dto/verify-otp.dto.d.ts +8 -8
- package/dist/src/profile/dto/create-profile.dto.d.ts +10 -10
- package/dist/src/profile/dto/delete-profile.dto.d.ts +4 -4
- package/dist/src/profile/dto/find-all-profile.dto.d.ts +20 -20
- package/dist/src/profile/dto/find-by-date-range-profile.dto.d.ts +32 -32
- package/dist/src/profile/dto/find-by-id-profile.dto.d.ts +13 -13
- package/dist/src/profile/dto/find-by-phone-number.dto.d.ts +4 -4
- package/dist/src/profile/dto/find-by-tag-groups-profile.dto.d.ts +20 -20
- package/dist/src/profile/dto/find-by-tags-profile.dto.d.ts +20 -20
- package/dist/src/profile/dto/find-with-active-chat.dto.d.ts +20 -20
- package/dist/src/profile/dto/profile.dto.d.ts +2 -2
- package/dist/src/profile/dto/update-profile.dto.d.ts +10 -10
- package/dist/src/schema/profile.schema.d.ts +2 -2
- package/dist/src/tag/dto/create-tag.dto.d.ts +4 -4
- package/dist/src/tag/dto/delete-tag.dto.d.ts +4 -4
- package/dist/src/tag/dto/find-all-tag.dto.d.ts +8 -8
- package/dist/src/tag/dto/find-by-group-tag.dto.d.ts +8 -8
- package/dist/src/tag/dto/find-one-tag.dto.d.ts +4 -4
- package/dist/src/tag/dto/massive-allocation.dto.d.ts +8 -8
- package/dist/src/tag/dto/massive-deallocation.dto.d.ts +8 -8
- package/dist/src/tag/dto/tag.dto.d.ts +4 -4
- package/dist/src/tag/dto/update-tag.dto.d.ts +4 -4
- package/dist/src/tag-group/dto/find-all-tag-group.dto.d.ts +12 -12
- package/dist/src/tag-group/dto/find-all-with-tags.dto.d.ts +12 -12
- package/dist/src/tag-group/dto/find-one-tag-group.dto.d.ts +8 -8
- package/dist/src/ticket/constants.d.ts +14 -12
- package/dist/src/ticket/constants.js +248 -355
- package/dist/src/ticket/dto/create-many-ticket.dto.d.ts +704 -0
- package/dist/src/ticket/dto/create-many-ticket.dto.js +58 -0
- package/dist/src/ticket/dto/create-ticket.dto.d.ts +21 -56
- package/dist/src/ticket/dto/create-ticket.dto.js +1 -2
- package/dist/src/ticket/dto/delete-ticket.dto.d.ts +10 -30
- package/dist/src/ticket/dto/find-all-tickets.dto.d.ts +18 -46
- package/dist/src/ticket/dto/find-by-event-ticket.dto.d.ts +30 -58
- package/dist/src/ticket/dto/find-by-id-ticket.dto.d.ts +30 -58
- package/dist/src/ticket/dto/find-by-mail-ticket.dto.d.ts +30 -58
- package/dist/src/ticket/dto/find-by-profile-id-ticket.dto.d.ts +18 -46
- package/dist/src/ticket/dto/find-ticket.dto.d.ts +10 -30
- package/dist/src/ticket/dto/ticket.dto.d.ts +10 -30
- package/dist/src/ticket/dto/ticket.dto.js +2 -5
- package/dist/src/ticket/dto/update-ticket.dto.d.ts +20 -48
- package/dist/src/ticket/dto/update-ticket.dto.js +1 -1
- package/dist/src/ticket-group/dto/create-ticket-group.dto.d.ts +346 -0
- package/dist/src/ticket-group/dto/create-ticket-group.dto.js +27 -0
- package/dist/src/ticket-group/dto/delete-ticket-group.dto.d.ts +55 -0
- package/dist/src/ticket-group/dto/delete-ticket-group.dto.js +10 -0
- package/dist/src/ticket-group/dto/find-tickets-by-event.dto.d.ts +8 -0
- package/dist/src/ticket-group/dto/find-tickets-by-event.dto.js +11 -0
- package/dist/src/ticket-group/dto/ticket-group.dto.d.ts +56 -0
- package/dist/src/ticket-group/dto/ticket-group.dto.js +27 -0
- package/dist/src/ticket-group/dto/update-ticket-group.dto.d.ts +79 -0
- package/dist/src/ticket-group/dto/update-ticket-group.dto.js +18 -0
- package/dist/src/ticket-group/exports.d.ts +5 -0
- package/dist/src/ticket-group/exports.js +22 -0
- package/dist/types/prisma-schema/edge.js +15 -7
- package/dist/types/prisma-schema/index-browser.js +12 -4
- package/dist/types/prisma-schema/index.d.ts +2216 -366
- package/dist/types/prisma-schema/index.js +15 -7
- package/dist/types/prisma-schema/package.json +1 -1
- package/dist/types/prisma-schema/schema.prisma +22 -7
- package/dist/types/prisma-schema/wasm.js +12 -4
- package/dist/types/schema.d.ts +308 -40
- package/package.json +6 -6
- package/dist/src/ticket/dto/send-email.dto.d.ts +0 -18
- package/dist/src/ticket/dto/send-email.dto.js +0 -15
@@ -73,6 +73,11 @@ export type CannedResponse = $Result.DefaultSelection<Prisma.$CannedResponsePayl
|
|
73
73
|
*
|
74
74
|
*/
|
75
75
|
export type Ticket = $Result.DefaultSelection<Prisma.$TicketPayload>
|
76
|
+
/**
|
77
|
+
* Model TicketGroup
|
78
|
+
*
|
79
|
+
*/
|
80
|
+
export type TicketGroup = $Result.DefaultSelection<Prisma.$TicketGroupPayload>
|
76
81
|
/**
|
77
82
|
* Model Enums
|
78
83
|
*
|
@@ -145,13 +150,13 @@ export const TicketType: {
|
|
145
150
|
export type TicketType = (typeof TicketType)[keyof typeof TicketType]
|
146
151
|
|
147
152
|
|
148
|
-
export const
|
153
|
+
export const TicketGroupStatus: {
|
149
154
|
BOOKED: 'BOOKED',
|
150
155
|
PAID: 'PAID',
|
151
156
|
FREE: 'FREE'
|
152
157
|
};
|
153
158
|
|
154
|
-
export type
|
159
|
+
export type TicketGroupStatus = (typeof TicketGroupStatus)[keyof typeof TicketGroupStatus]
|
155
160
|
|
156
161
|
}
|
157
162
|
|
@@ -179,9 +184,9 @@ export type TicketType = $Enums.TicketType
|
|
179
184
|
|
180
185
|
export const TicketType: typeof $Enums.TicketType
|
181
186
|
|
182
|
-
export type
|
187
|
+
export type TicketGroupStatus = $Enums.TicketGroupStatus
|
183
188
|
|
184
|
-
export const
|
189
|
+
export const TicketGroupStatus: typeof $Enums.TicketGroupStatus
|
185
190
|
|
186
191
|
/**
|
187
192
|
* ## Prisma Client ʲˢ
|
@@ -428,6 +433,16 @@ export class PrismaClient<
|
|
428
433
|
*/
|
429
434
|
get ticket(): Prisma.TicketDelegate<ExtArgs, ClientOptions>;
|
430
435
|
|
436
|
+
/**
|
437
|
+
* `prisma.ticketGroup`: Exposes CRUD operations for the **TicketGroup** model.
|
438
|
+
* Example usage:
|
439
|
+
* ```ts
|
440
|
+
* // Fetch zero or more TicketGroups
|
441
|
+
* const ticketGroups = await prisma.ticketGroup.findMany()
|
442
|
+
* ```
|
443
|
+
*/
|
444
|
+
get ticketGroup(): Prisma.TicketGroupDelegate<ExtArgs, ClientOptions>;
|
445
|
+
|
431
446
|
/**
|
432
447
|
* `prisma.enums`: Exposes CRUD operations for the **Enums** model.
|
433
448
|
* Example usage:
|
@@ -899,6 +914,7 @@ export namespace Prisma {
|
|
899
914
|
Message: 'Message',
|
900
915
|
CannedResponse: 'CannedResponse',
|
901
916
|
Ticket: 'Ticket',
|
917
|
+
TicketGroup: 'TicketGroup',
|
902
918
|
Enums: 'Enums',
|
903
919
|
EventTicket: 'EventTicket'
|
904
920
|
};
|
@@ -916,7 +932,7 @@ export namespace Prisma {
|
|
916
932
|
|
917
933
|
export type TypeMap<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs, ClientOptions = {}> = {
|
918
934
|
meta: {
|
919
|
-
modelProps: "account" | "profile" | "otp" | "location" | "comment" | "tag" | "tagGroup" | "event" | "eventFolder" | "message" | "cannedResponse" | "ticket" | "enums" | "eventTicket"
|
935
|
+
modelProps: "account" | "profile" | "otp" | "location" | "comment" | "tag" | "tagGroup" | "event" | "eventFolder" | "message" | "cannedResponse" | "ticket" | "ticketGroup" | "enums" | "eventTicket"
|
920
936
|
txIsolationLevel: Prisma.TransactionIsolationLevel
|
921
937
|
}
|
922
938
|
model: {
|
@@ -1808,6 +1824,80 @@ export namespace Prisma {
|
|
1808
1824
|
}
|
1809
1825
|
}
|
1810
1826
|
}
|
1827
|
+
TicketGroup: {
|
1828
|
+
payload: Prisma.$TicketGroupPayload<ExtArgs>
|
1829
|
+
fields: Prisma.TicketGroupFieldRefs
|
1830
|
+
operations: {
|
1831
|
+
findUnique: {
|
1832
|
+
args: Prisma.TicketGroupFindUniqueArgs<ExtArgs>
|
1833
|
+
result: $Utils.PayloadToResult<Prisma.$TicketGroupPayload> | null
|
1834
|
+
}
|
1835
|
+
findUniqueOrThrow: {
|
1836
|
+
args: Prisma.TicketGroupFindUniqueOrThrowArgs<ExtArgs>
|
1837
|
+
result: $Utils.PayloadToResult<Prisma.$TicketGroupPayload>
|
1838
|
+
}
|
1839
|
+
findFirst: {
|
1840
|
+
args: Prisma.TicketGroupFindFirstArgs<ExtArgs>
|
1841
|
+
result: $Utils.PayloadToResult<Prisma.$TicketGroupPayload> | null
|
1842
|
+
}
|
1843
|
+
findFirstOrThrow: {
|
1844
|
+
args: Prisma.TicketGroupFindFirstOrThrowArgs<ExtArgs>
|
1845
|
+
result: $Utils.PayloadToResult<Prisma.$TicketGroupPayload>
|
1846
|
+
}
|
1847
|
+
findMany: {
|
1848
|
+
args: Prisma.TicketGroupFindManyArgs<ExtArgs>
|
1849
|
+
result: $Utils.PayloadToResult<Prisma.$TicketGroupPayload>[]
|
1850
|
+
}
|
1851
|
+
create: {
|
1852
|
+
args: Prisma.TicketGroupCreateArgs<ExtArgs>
|
1853
|
+
result: $Utils.PayloadToResult<Prisma.$TicketGroupPayload>
|
1854
|
+
}
|
1855
|
+
createMany: {
|
1856
|
+
args: Prisma.TicketGroupCreateManyArgs<ExtArgs>
|
1857
|
+
result: BatchPayload
|
1858
|
+
}
|
1859
|
+
createManyAndReturn: {
|
1860
|
+
args: Prisma.TicketGroupCreateManyAndReturnArgs<ExtArgs>
|
1861
|
+
result: $Utils.PayloadToResult<Prisma.$TicketGroupPayload>[]
|
1862
|
+
}
|
1863
|
+
delete: {
|
1864
|
+
args: Prisma.TicketGroupDeleteArgs<ExtArgs>
|
1865
|
+
result: $Utils.PayloadToResult<Prisma.$TicketGroupPayload>
|
1866
|
+
}
|
1867
|
+
update: {
|
1868
|
+
args: Prisma.TicketGroupUpdateArgs<ExtArgs>
|
1869
|
+
result: $Utils.PayloadToResult<Prisma.$TicketGroupPayload>
|
1870
|
+
}
|
1871
|
+
deleteMany: {
|
1872
|
+
args: Prisma.TicketGroupDeleteManyArgs<ExtArgs>
|
1873
|
+
result: BatchPayload
|
1874
|
+
}
|
1875
|
+
updateMany: {
|
1876
|
+
args: Prisma.TicketGroupUpdateManyArgs<ExtArgs>
|
1877
|
+
result: BatchPayload
|
1878
|
+
}
|
1879
|
+
updateManyAndReturn: {
|
1880
|
+
args: Prisma.TicketGroupUpdateManyAndReturnArgs<ExtArgs>
|
1881
|
+
result: $Utils.PayloadToResult<Prisma.$TicketGroupPayload>[]
|
1882
|
+
}
|
1883
|
+
upsert: {
|
1884
|
+
args: Prisma.TicketGroupUpsertArgs<ExtArgs>
|
1885
|
+
result: $Utils.PayloadToResult<Prisma.$TicketGroupPayload>
|
1886
|
+
}
|
1887
|
+
aggregate: {
|
1888
|
+
args: Prisma.TicketGroupAggregateArgs<ExtArgs>
|
1889
|
+
result: $Utils.Optional<AggregateTicketGroup>
|
1890
|
+
}
|
1891
|
+
groupBy: {
|
1892
|
+
args: Prisma.TicketGroupGroupByArgs<ExtArgs>
|
1893
|
+
result: $Utils.Optional<TicketGroupGroupByOutputType>[]
|
1894
|
+
}
|
1895
|
+
count: {
|
1896
|
+
args: Prisma.TicketGroupCountArgs<ExtArgs>
|
1897
|
+
result: $Utils.Optional<TicketGroupCountAggregateOutputType> | number
|
1898
|
+
}
|
1899
|
+
}
|
1900
|
+
}
|
1811
1901
|
Enums: {
|
1812
1902
|
payload: Prisma.$EnumsPayload<ExtArgs>
|
1813
1903
|
fields: Prisma.EnumsFieldRefs
|
@@ -2052,6 +2142,7 @@ export namespace Prisma {
|
|
2052
2142
|
message?: MessageOmit
|
2053
2143
|
cannedResponse?: CannedResponseOmit
|
2054
2144
|
ticket?: TicketOmit
|
2145
|
+
ticketGroup?: TicketGroupOmit
|
2055
2146
|
enums?: EnumsOmit
|
2056
2147
|
eventTicket?: EventTicketOmit
|
2057
2148
|
}
|
@@ -2403,6 +2494,7 @@ export namespace Prisma {
|
|
2403
2494
|
|
2404
2495
|
export type EventCountOutputType = {
|
2405
2496
|
tickets: number
|
2497
|
+
ticketGroups: number
|
2406
2498
|
subEvents: number
|
2407
2499
|
tags: number
|
2408
2500
|
eventTickets: number
|
@@ -2410,6 +2502,7 @@ export namespace Prisma {
|
|
2410
2502
|
|
2411
2503
|
export type EventCountOutputTypeSelect<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
2412
2504
|
tickets?: boolean | EventCountOutputTypeCountTicketsArgs
|
2505
|
+
ticketGroups?: boolean | EventCountOutputTypeCountTicketGroupsArgs
|
2413
2506
|
subEvents?: boolean | EventCountOutputTypeCountSubEventsArgs
|
2414
2507
|
tags?: boolean | EventCountOutputTypeCountTagsArgs
|
2415
2508
|
eventTickets?: boolean | EventCountOutputTypeCountEventTicketsArgs
|
@@ -2433,6 +2526,13 @@ export namespace Prisma {
|
|
2433
2526
|
where?: TicketWhereInput
|
2434
2527
|
}
|
2435
2528
|
|
2529
|
+
/**
|
2530
|
+
* EventCountOutputType without action
|
2531
|
+
*/
|
2532
|
+
export type EventCountOutputTypeCountTicketGroupsArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
2533
|
+
where?: TicketGroupWhereInput
|
2534
|
+
}
|
2535
|
+
|
2436
2536
|
/**
|
2437
2537
|
* EventCountOutputType without action
|
2438
2538
|
*/
|
@@ -2486,6 +2586,37 @@ export namespace Prisma {
|
|
2486
2586
|
}
|
2487
2587
|
|
2488
2588
|
|
2589
|
+
/**
|
2590
|
+
* Count Type TicketGroupCountOutputType
|
2591
|
+
*/
|
2592
|
+
|
2593
|
+
export type TicketGroupCountOutputType = {
|
2594
|
+
tickets: number
|
2595
|
+
}
|
2596
|
+
|
2597
|
+
export type TicketGroupCountOutputTypeSelect<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
2598
|
+
tickets?: boolean | TicketGroupCountOutputTypeCountTicketsArgs
|
2599
|
+
}
|
2600
|
+
|
2601
|
+
// Custom InputTypes
|
2602
|
+
/**
|
2603
|
+
* TicketGroupCountOutputType without action
|
2604
|
+
*/
|
2605
|
+
export type TicketGroupCountOutputTypeDefaultArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
2606
|
+
/**
|
2607
|
+
* Select specific fields to fetch from the TicketGroupCountOutputType
|
2608
|
+
*/
|
2609
|
+
select?: TicketGroupCountOutputTypeSelect<ExtArgs> | null
|
2610
|
+
}
|
2611
|
+
|
2612
|
+
/**
|
2613
|
+
* TicketGroupCountOutputType without action
|
2614
|
+
*/
|
2615
|
+
export type TicketGroupCountOutputTypeCountTicketsArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
2616
|
+
where?: TicketWhereInput
|
2617
|
+
}
|
2618
|
+
|
2619
|
+
|
2489
2620
|
/**
|
2490
2621
|
* Models
|
2491
2622
|
*/
|
@@ -11153,6 +11284,7 @@ export namespace Prisma {
|
|
11153
11284
|
tagConfirmed?: boolean | TagDefaultArgs<ExtArgs>
|
11154
11285
|
supraEvent?: boolean | Event$supraEventArgs<ExtArgs>
|
11155
11286
|
tickets?: boolean | Event$ticketsArgs<ExtArgs>
|
11287
|
+
ticketGroups?: boolean | Event$ticketGroupsArgs<ExtArgs>
|
11156
11288
|
subEvents?: boolean | Event$subEventsArgs<ExtArgs>
|
11157
11289
|
tags?: boolean | Event$tagsArgs<ExtArgs>
|
11158
11290
|
eventTickets?: boolean | Event$eventTicketsArgs<ExtArgs>
|
@@ -11222,6 +11354,7 @@ export namespace Prisma {
|
|
11222
11354
|
tagConfirmed?: boolean | TagDefaultArgs<ExtArgs>
|
11223
11355
|
supraEvent?: boolean | Event$supraEventArgs<ExtArgs>
|
11224
11356
|
tickets?: boolean | Event$ticketsArgs<ExtArgs>
|
11357
|
+
ticketGroups?: boolean | Event$ticketGroupsArgs<ExtArgs>
|
11225
11358
|
subEvents?: boolean | Event$subEventsArgs<ExtArgs>
|
11226
11359
|
tags?: boolean | Event$tagsArgs<ExtArgs>
|
11227
11360
|
eventTickets?: boolean | Event$eventTicketsArgs<ExtArgs>
|
@@ -11248,6 +11381,7 @@ export namespace Prisma {
|
|
11248
11381
|
tagConfirmed: Prisma.$TagPayload<ExtArgs>
|
11249
11382
|
supraEvent: Prisma.$EventPayload<ExtArgs> | null
|
11250
11383
|
tickets: Prisma.$TicketPayload<ExtArgs>[]
|
11384
|
+
ticketGroups: Prisma.$TicketGroupPayload<ExtArgs>[]
|
11251
11385
|
subEvents: Prisma.$EventPayload<ExtArgs>[]
|
11252
11386
|
tags: Prisma.$TagPayload<ExtArgs>[]
|
11253
11387
|
eventTickets: Prisma.$EventTicketPayload<ExtArgs>[]
|
@@ -11665,6 +11799,7 @@ export namespace Prisma {
|
|
11665
11799
|
tagConfirmed<T extends TagDefaultArgs<ExtArgs> = {}>(args?: Subset<T, TagDefaultArgs<ExtArgs>>): Prisma__TagClient<$Result.GetResult<Prisma.$TagPayload<ExtArgs>, T, "findUniqueOrThrow", ClientOptions> | Null, Null, ExtArgs, ClientOptions>
|
11666
11800
|
supraEvent<T extends Event$supraEventArgs<ExtArgs> = {}>(args?: Subset<T, Event$supraEventArgs<ExtArgs>>): Prisma__EventClient<$Result.GetResult<Prisma.$EventPayload<ExtArgs>, T, "findUniqueOrThrow", ClientOptions> | null, null, ExtArgs, ClientOptions>
|
11667
11801
|
tickets<T extends Event$ticketsArgs<ExtArgs> = {}>(args?: Subset<T, Event$ticketsArgs<ExtArgs>>): Prisma.PrismaPromise<$Result.GetResult<Prisma.$TicketPayload<ExtArgs>, T, "findMany", ClientOptions> | Null>
|
11802
|
+
ticketGroups<T extends Event$ticketGroupsArgs<ExtArgs> = {}>(args?: Subset<T, Event$ticketGroupsArgs<ExtArgs>>): Prisma.PrismaPromise<$Result.GetResult<Prisma.$TicketGroupPayload<ExtArgs>, T, "findMany", ClientOptions> | Null>
|
11668
11803
|
subEvents<T extends Event$subEventsArgs<ExtArgs> = {}>(args?: Subset<T, Event$subEventsArgs<ExtArgs>>): Prisma.PrismaPromise<$Result.GetResult<Prisma.$EventPayload<ExtArgs>, T, "findMany", ClientOptions> | Null>
|
11669
11804
|
tags<T extends Event$tagsArgs<ExtArgs> = {}>(args?: Subset<T, Event$tagsArgs<ExtArgs>>): Prisma.PrismaPromise<$Result.GetResult<Prisma.$TagPayload<ExtArgs>, T, "findMany", ClientOptions> | Null>
|
11670
11805
|
eventTickets<T extends Event$eventTicketsArgs<ExtArgs> = {}>(args?: Subset<T, Event$eventTicketsArgs<ExtArgs>>): Prisma.PrismaPromise<$Result.GetResult<Prisma.$EventTicketPayload<ExtArgs>, T, "findMany", ClientOptions> | Null>
|
@@ -12167,6 +12302,30 @@ export namespace Prisma {
|
|
12167
12302
|
distinct?: TicketScalarFieldEnum | TicketScalarFieldEnum[]
|
12168
12303
|
}
|
12169
12304
|
|
12305
|
+
/**
|
12306
|
+
* Event.ticketGroups
|
12307
|
+
*/
|
12308
|
+
export type Event$ticketGroupsArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
12309
|
+
/**
|
12310
|
+
* Select specific fields to fetch from the TicketGroup
|
12311
|
+
*/
|
12312
|
+
select?: TicketGroupSelect<ExtArgs> | null
|
12313
|
+
/**
|
12314
|
+
* Omit specific fields from the TicketGroup
|
12315
|
+
*/
|
12316
|
+
omit?: TicketGroupOmit<ExtArgs> | null
|
12317
|
+
/**
|
12318
|
+
* Choose, which related nodes to fetch as well
|
12319
|
+
*/
|
12320
|
+
include?: TicketGroupInclude<ExtArgs> | null
|
12321
|
+
where?: TicketGroupWhereInput
|
12322
|
+
orderBy?: TicketGroupOrderByWithRelationInput | TicketGroupOrderByWithRelationInput[]
|
12323
|
+
cursor?: TicketGroupWhereUniqueInput
|
12324
|
+
take?: number
|
12325
|
+
skip?: number
|
12326
|
+
distinct?: TicketGroupScalarFieldEnum | TicketGroupScalarFieldEnum[]
|
12327
|
+
}
|
12328
|
+
|
12170
12329
|
/**
|
12171
12330
|
* Event.subEvents
|
12172
12331
|
*/
|
@@ -15409,30 +15568,18 @@ export namespace Prisma {
|
|
15409
15568
|
|
15410
15569
|
export type AggregateTicket = {
|
15411
15570
|
_count: TicketCountAggregateOutputType | null
|
15412
|
-
_avg: TicketAvgAggregateOutputType | null
|
15413
|
-
_sum: TicketSumAggregateOutputType | null
|
15414
15571
|
_min: TicketMinAggregateOutputType | null
|
15415
15572
|
_max: TicketMaxAggregateOutputType | null
|
15416
15573
|
}
|
15417
15574
|
|
15418
|
-
export type TicketAvgAggregateOutputType = {
|
15419
|
-
seat: number | null
|
15420
|
-
}
|
15421
|
-
|
15422
|
-
export type TicketSumAggregateOutputType = {
|
15423
|
-
seat: number | null
|
15424
|
-
}
|
15425
|
-
|
15426
15575
|
export type TicketMinAggregateOutputType = {
|
15427
15576
|
id: string | null
|
15428
15577
|
eventId: string | null
|
15429
15578
|
type: $Enums.TicketType | null
|
15430
|
-
status: $Enums.TicketStatus | null
|
15431
15579
|
fullName: string | null
|
15432
15580
|
mail: string | null
|
15433
|
-
dni: string | null
|
15434
|
-
seat: number | null
|
15435
15581
|
profileId: string | null
|
15582
|
+
ticketGroupId: string | null
|
15436
15583
|
created_at: Date | null
|
15437
15584
|
updated_at: Date | null
|
15438
15585
|
}
|
@@ -15441,12 +15588,10 @@ export namespace Prisma {
|
|
15441
15588
|
id: string | null
|
15442
15589
|
eventId: string | null
|
15443
15590
|
type: $Enums.TicketType | null
|
15444
|
-
status: $Enums.TicketStatus | null
|
15445
15591
|
fullName: string | null
|
15446
15592
|
mail: string | null
|
15447
|
-
dni: string | null
|
15448
|
-
seat: number | null
|
15449
15593
|
profileId: string | null
|
15594
|
+
ticketGroupId: string | null
|
15450
15595
|
created_at: Date | null
|
15451
15596
|
updated_at: Date | null
|
15452
15597
|
}
|
@@ -15455,36 +15600,24 @@ export namespace Prisma {
|
|
15455
15600
|
id: number
|
15456
15601
|
eventId: number
|
15457
15602
|
type: number
|
15458
|
-
status: number
|
15459
15603
|
fullName: number
|
15460
15604
|
mail: number
|
15461
|
-
dni: number
|
15462
|
-
seat: number
|
15463
15605
|
profileId: number
|
15606
|
+
ticketGroupId: number
|
15464
15607
|
created_at: number
|
15465
15608
|
updated_at: number
|
15466
15609
|
_all: number
|
15467
15610
|
}
|
15468
15611
|
|
15469
15612
|
|
15470
|
-
export type TicketAvgAggregateInputType = {
|
15471
|
-
seat?: true
|
15472
|
-
}
|
15473
|
-
|
15474
|
-
export type TicketSumAggregateInputType = {
|
15475
|
-
seat?: true
|
15476
|
-
}
|
15477
|
-
|
15478
15613
|
export type TicketMinAggregateInputType = {
|
15479
15614
|
id?: true
|
15480
15615
|
eventId?: true
|
15481
15616
|
type?: true
|
15482
|
-
status?: true
|
15483
15617
|
fullName?: true
|
15484
15618
|
mail?: true
|
15485
|
-
dni?: true
|
15486
|
-
seat?: true
|
15487
15619
|
profileId?: true
|
15620
|
+
ticketGroupId?: true
|
15488
15621
|
created_at?: true
|
15489
15622
|
updated_at?: true
|
15490
15623
|
}
|
@@ -15493,12 +15626,10 @@ export namespace Prisma {
|
|
15493
15626
|
id?: true
|
15494
15627
|
eventId?: true
|
15495
15628
|
type?: true
|
15496
|
-
status?: true
|
15497
15629
|
fullName?: true
|
15498
15630
|
mail?: true
|
15499
|
-
dni?: true
|
15500
|
-
seat?: true
|
15501
15631
|
profileId?: true
|
15632
|
+
ticketGroupId?: true
|
15502
15633
|
created_at?: true
|
15503
15634
|
updated_at?: true
|
15504
15635
|
}
|
@@ -15507,12 +15638,10 @@ export namespace Prisma {
|
|
15507
15638
|
id?: true
|
15508
15639
|
eventId?: true
|
15509
15640
|
type?: true
|
15510
|
-
status?: true
|
15511
15641
|
fullName?: true
|
15512
15642
|
mail?: true
|
15513
|
-
dni?: true
|
15514
|
-
seat?: true
|
15515
15643
|
profileId?: true
|
15644
|
+
ticketGroupId?: true
|
15516
15645
|
created_at?: true
|
15517
15646
|
updated_at?: true
|
15518
15647
|
_all?: true
|
@@ -15553,18 +15682,6 @@ export namespace Prisma {
|
|
15553
15682
|
* Count returned Tickets
|
15554
15683
|
**/
|
15555
15684
|
_count?: true | TicketCountAggregateInputType
|
15556
|
-
/**
|
15557
|
-
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
|
15558
|
-
*
|
15559
|
-
* Select which fields to average
|
15560
|
-
**/
|
15561
|
-
_avg?: TicketAvgAggregateInputType
|
15562
|
-
/**
|
15563
|
-
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
|
15564
|
-
*
|
15565
|
-
* Select which fields to sum
|
15566
|
-
**/
|
15567
|
-
_sum?: TicketSumAggregateInputType
|
15568
15685
|
/**
|
15569
15686
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
|
15570
15687
|
*
|
@@ -15598,8 +15715,6 @@ export namespace Prisma {
|
|
15598
15715
|
take?: number
|
15599
15716
|
skip?: number
|
15600
15717
|
_count?: TicketCountAggregateInputType | true
|
15601
|
-
_avg?: TicketAvgAggregateInputType
|
15602
|
-
_sum?: TicketSumAggregateInputType
|
15603
15718
|
_min?: TicketMinAggregateInputType
|
15604
15719
|
_max?: TicketMaxAggregateInputType
|
15605
15720
|
}
|
@@ -15608,17 +15723,13 @@ export namespace Prisma {
|
|
15608
15723
|
id: string
|
15609
15724
|
eventId: string
|
15610
15725
|
type: $Enums.TicketType
|
15611
|
-
status: $Enums.TicketStatus
|
15612
15726
|
fullName: string
|
15613
15727
|
mail: string
|
15614
|
-
dni: string
|
15615
|
-
seat: number | null
|
15616
15728
|
profileId: string | null
|
15729
|
+
ticketGroupId: string
|
15617
15730
|
created_at: Date
|
15618
15731
|
updated_at: Date
|
15619
15732
|
_count: TicketCountAggregateOutputType | null
|
15620
|
-
_avg: TicketAvgAggregateOutputType | null
|
15621
|
-
_sum: TicketSumAggregateOutputType | null
|
15622
15733
|
_min: TicketMinAggregateOutputType | null
|
15623
15734
|
_max: TicketMaxAggregateOutputType | null
|
15624
15735
|
}
|
@@ -15641,76 +15752,74 @@ export namespace Prisma {
|
|
15641
15752
|
id?: boolean
|
15642
15753
|
eventId?: boolean
|
15643
15754
|
type?: boolean
|
15644
|
-
status?: boolean
|
15645
15755
|
fullName?: boolean
|
15646
15756
|
mail?: boolean
|
15647
|
-
dni?: boolean
|
15648
|
-
seat?: boolean
|
15649
15757
|
profileId?: boolean
|
15758
|
+
ticketGroupId?: boolean
|
15650
15759
|
created_at?: boolean
|
15651
15760
|
updated_at?: boolean
|
15652
15761
|
event?: boolean | EventDefaultArgs<ExtArgs>
|
15653
15762
|
profile?: boolean | Ticket$profileArgs<ExtArgs>
|
15763
|
+
ticketGroup?: boolean | TicketGroupDefaultArgs<ExtArgs>
|
15654
15764
|
}, ExtArgs["result"]["ticket"]>
|
15655
15765
|
|
15656
15766
|
export type TicketSelectCreateManyAndReturn<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetSelect<{
|
15657
15767
|
id?: boolean
|
15658
15768
|
eventId?: boolean
|
15659
15769
|
type?: boolean
|
15660
|
-
status?: boolean
|
15661
15770
|
fullName?: boolean
|
15662
15771
|
mail?: boolean
|
15663
|
-
dni?: boolean
|
15664
|
-
seat?: boolean
|
15665
15772
|
profileId?: boolean
|
15773
|
+
ticketGroupId?: boolean
|
15666
15774
|
created_at?: boolean
|
15667
15775
|
updated_at?: boolean
|
15668
15776
|
event?: boolean | EventDefaultArgs<ExtArgs>
|
15669
15777
|
profile?: boolean | Ticket$profileArgs<ExtArgs>
|
15778
|
+
ticketGroup?: boolean | TicketGroupDefaultArgs<ExtArgs>
|
15670
15779
|
}, ExtArgs["result"]["ticket"]>
|
15671
15780
|
|
15672
15781
|
export type TicketSelectUpdateManyAndReturn<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetSelect<{
|
15673
15782
|
id?: boolean
|
15674
15783
|
eventId?: boolean
|
15675
15784
|
type?: boolean
|
15676
|
-
status?: boolean
|
15677
15785
|
fullName?: boolean
|
15678
15786
|
mail?: boolean
|
15679
|
-
dni?: boolean
|
15680
|
-
seat?: boolean
|
15681
15787
|
profileId?: boolean
|
15788
|
+
ticketGroupId?: boolean
|
15682
15789
|
created_at?: boolean
|
15683
15790
|
updated_at?: boolean
|
15684
15791
|
event?: boolean | EventDefaultArgs<ExtArgs>
|
15685
15792
|
profile?: boolean | Ticket$profileArgs<ExtArgs>
|
15793
|
+
ticketGroup?: boolean | TicketGroupDefaultArgs<ExtArgs>
|
15686
15794
|
}, ExtArgs["result"]["ticket"]>
|
15687
15795
|
|
15688
15796
|
export type TicketSelectScalar = {
|
15689
15797
|
id?: boolean
|
15690
15798
|
eventId?: boolean
|
15691
15799
|
type?: boolean
|
15692
|
-
status?: boolean
|
15693
15800
|
fullName?: boolean
|
15694
15801
|
mail?: boolean
|
15695
|
-
dni?: boolean
|
15696
|
-
seat?: boolean
|
15697
15802
|
profileId?: boolean
|
15803
|
+
ticketGroupId?: boolean
|
15698
15804
|
created_at?: boolean
|
15699
15805
|
updated_at?: boolean
|
15700
15806
|
}
|
15701
15807
|
|
15702
|
-
export type TicketOmit<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetOmit<"id" | "eventId" | "type" | "
|
15808
|
+
export type TicketOmit<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetOmit<"id" | "eventId" | "type" | "fullName" | "mail" | "profileId" | "ticketGroupId" | "created_at" | "updated_at", ExtArgs["result"]["ticket"]>
|
15703
15809
|
export type TicketInclude<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
15704
15810
|
event?: boolean | EventDefaultArgs<ExtArgs>
|
15705
15811
|
profile?: boolean | Ticket$profileArgs<ExtArgs>
|
15812
|
+
ticketGroup?: boolean | TicketGroupDefaultArgs<ExtArgs>
|
15706
15813
|
}
|
15707
15814
|
export type TicketIncludeCreateManyAndReturn<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
15708
15815
|
event?: boolean | EventDefaultArgs<ExtArgs>
|
15709
15816
|
profile?: boolean | Ticket$profileArgs<ExtArgs>
|
15817
|
+
ticketGroup?: boolean | TicketGroupDefaultArgs<ExtArgs>
|
15710
15818
|
}
|
15711
15819
|
export type TicketIncludeUpdateManyAndReturn<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
15712
15820
|
event?: boolean | EventDefaultArgs<ExtArgs>
|
15713
15821
|
profile?: boolean | Ticket$profileArgs<ExtArgs>
|
15822
|
+
ticketGroup?: boolean | TicketGroupDefaultArgs<ExtArgs>
|
15714
15823
|
}
|
15715
15824
|
|
15716
15825
|
export type $TicketPayload<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
@@ -15718,17 +15827,16 @@ export namespace Prisma {
|
|
15718
15827
|
objects: {
|
15719
15828
|
event: Prisma.$EventPayload<ExtArgs>
|
15720
15829
|
profile: Prisma.$ProfilePayload<ExtArgs> | null
|
15830
|
+
ticketGroup: Prisma.$TicketGroupPayload<ExtArgs>
|
15721
15831
|
}
|
15722
15832
|
scalars: $Extensions.GetPayloadResult<{
|
15723
15833
|
id: string
|
15724
15834
|
eventId: string
|
15725
15835
|
type: $Enums.TicketType
|
15726
|
-
status: $Enums.TicketStatus
|
15727
15836
|
fullName: string
|
15728
15837
|
mail: string
|
15729
|
-
dni: string
|
15730
|
-
seat: number | null
|
15731
15838
|
profileId: string | null
|
15839
|
+
ticketGroupId: string
|
15732
15840
|
created_at: Date
|
15733
15841
|
updated_at: Date
|
15734
15842
|
}, ExtArgs["result"]["ticket"]>
|
@@ -16127,6 +16235,7 @@ export namespace Prisma {
|
|
16127
16235
|
readonly [Symbol.toStringTag]: "PrismaPromise"
|
16128
16236
|
event<T extends EventDefaultArgs<ExtArgs> = {}>(args?: Subset<T, EventDefaultArgs<ExtArgs>>): Prisma__EventClient<$Result.GetResult<Prisma.$EventPayload<ExtArgs>, T, "findUniqueOrThrow", ClientOptions> | Null, Null, ExtArgs, ClientOptions>
|
16129
16237
|
profile<T extends Ticket$profileArgs<ExtArgs> = {}>(args?: Subset<T, Ticket$profileArgs<ExtArgs>>): Prisma__ProfileClient<$Result.GetResult<Prisma.$ProfilePayload<ExtArgs>, T, "findUniqueOrThrow", ClientOptions> | null, null, ExtArgs, ClientOptions>
|
16238
|
+
ticketGroup<T extends TicketGroupDefaultArgs<ExtArgs> = {}>(args?: Subset<T, TicketGroupDefaultArgs<ExtArgs>>): Prisma__TicketGroupClient<$Result.GetResult<Prisma.$TicketGroupPayload<ExtArgs>, T, "findUniqueOrThrow", ClientOptions> | Null, Null, ExtArgs, ClientOptions>
|
16130
16239
|
/**
|
16131
16240
|
* Attaches callbacks for the resolution and/or rejection of the Promise.
|
16132
16241
|
* @param onfulfilled The callback to execute when the Promise is resolved.
|
@@ -16159,12 +16268,10 @@ export namespace Prisma {
|
|
16159
16268
|
readonly id: FieldRef<"Ticket", 'String'>
|
16160
16269
|
readonly eventId: FieldRef<"Ticket", 'String'>
|
16161
16270
|
readonly type: FieldRef<"Ticket", 'TicketType'>
|
16162
|
-
readonly status: FieldRef<"Ticket", 'TicketStatus'>
|
16163
16271
|
readonly fullName: FieldRef<"Ticket", 'String'>
|
16164
16272
|
readonly mail: FieldRef<"Ticket", 'String'>
|
16165
|
-
readonly dni: FieldRef<"Ticket", 'String'>
|
16166
|
-
readonly seat: FieldRef<"Ticket", 'Int'>
|
16167
16273
|
readonly profileId: FieldRef<"Ticket", 'String'>
|
16274
|
+
readonly ticketGroupId: FieldRef<"Ticket", 'String'>
|
16168
16275
|
readonly created_at: FieldRef<"Ticket", 'DateTime'>
|
16169
16276
|
readonly updated_at: FieldRef<"Ticket", 'DateTime'>
|
16170
16277
|
}
|
@@ -16601,172 +16708,1307 @@ export namespace Prisma {
|
|
16601
16708
|
|
16602
16709
|
|
16603
16710
|
/**
|
16604
|
-
* Model
|
16711
|
+
* Model TicketGroup
|
16605
16712
|
*/
|
16606
16713
|
|
16607
|
-
export type
|
16608
|
-
_count:
|
16609
|
-
|
16610
|
-
|
16714
|
+
export type AggregateTicketGroup = {
|
16715
|
+
_count: TicketGroupCountAggregateOutputType | null
|
16716
|
+
_avg: TicketGroupAvgAggregateOutputType | null
|
16717
|
+
_sum: TicketGroupSumAggregateOutputType | null
|
16718
|
+
_min: TicketGroupMinAggregateOutputType | null
|
16719
|
+
_max: TicketGroupMaxAggregateOutputType | null
|
16611
16720
|
}
|
16612
16721
|
|
16613
|
-
export type
|
16722
|
+
export type TicketGroupAvgAggregateOutputType = {
|
16723
|
+
amountTickets: number | null
|
16724
|
+
}
|
16725
|
+
|
16726
|
+
export type TicketGroupSumAggregateOutputType = {
|
16727
|
+
amountTickets: number | null
|
16728
|
+
}
|
16729
|
+
|
16730
|
+
export type TicketGroupMinAggregateOutputType = {
|
16614
16731
|
id: string | null
|
16615
|
-
|
16616
|
-
|
16732
|
+
status: $Enums.TicketGroupStatus | null
|
16733
|
+
amountTickets: number | null
|
16734
|
+
eventId: string | null
|
16735
|
+
created_at: Date | null
|
16736
|
+
updated_at: Date | null
|
16617
16737
|
}
|
16618
16738
|
|
16619
|
-
export type
|
16739
|
+
export type TicketGroupMaxAggregateOutputType = {
|
16620
16740
|
id: string | null
|
16621
|
-
|
16622
|
-
|
16741
|
+
status: $Enums.TicketGroupStatus | null
|
16742
|
+
amountTickets: number | null
|
16743
|
+
eventId: string | null
|
16744
|
+
created_at: Date | null
|
16745
|
+
updated_at: Date | null
|
16623
16746
|
}
|
16624
16747
|
|
16625
|
-
export type
|
16748
|
+
export type TicketGroupCountAggregateOutputType = {
|
16626
16749
|
id: number
|
16627
|
-
|
16628
|
-
|
16750
|
+
status: number
|
16751
|
+
amountTickets: number
|
16752
|
+
eventId: number
|
16753
|
+
created_at: number
|
16754
|
+
updated_at: number
|
16629
16755
|
_all: number
|
16630
16756
|
}
|
16631
16757
|
|
16632
16758
|
|
16633
|
-
export type
|
16759
|
+
export type TicketGroupAvgAggregateInputType = {
|
16760
|
+
amountTickets?: true
|
16761
|
+
}
|
16762
|
+
|
16763
|
+
export type TicketGroupSumAggregateInputType = {
|
16764
|
+
amountTickets?: true
|
16765
|
+
}
|
16766
|
+
|
16767
|
+
export type TicketGroupMinAggregateInputType = {
|
16634
16768
|
id?: true
|
16635
|
-
|
16636
|
-
|
16769
|
+
status?: true
|
16770
|
+
amountTickets?: true
|
16771
|
+
eventId?: true
|
16772
|
+
created_at?: true
|
16773
|
+
updated_at?: true
|
16637
16774
|
}
|
16638
16775
|
|
16639
|
-
export type
|
16776
|
+
export type TicketGroupMaxAggregateInputType = {
|
16640
16777
|
id?: true
|
16641
|
-
|
16642
|
-
|
16778
|
+
status?: true
|
16779
|
+
amountTickets?: true
|
16780
|
+
eventId?: true
|
16781
|
+
created_at?: true
|
16782
|
+
updated_at?: true
|
16643
16783
|
}
|
16644
16784
|
|
16645
|
-
export type
|
16785
|
+
export type TicketGroupCountAggregateInputType = {
|
16646
16786
|
id?: true
|
16647
|
-
|
16648
|
-
|
16787
|
+
status?: true
|
16788
|
+
amountTickets?: true
|
16789
|
+
eventId?: true
|
16790
|
+
created_at?: true
|
16791
|
+
updated_at?: true
|
16649
16792
|
_all?: true
|
16650
16793
|
}
|
16651
16794
|
|
16652
|
-
export type
|
16795
|
+
export type TicketGroupAggregateArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
16653
16796
|
/**
|
16654
|
-
* Filter which
|
16797
|
+
* Filter which TicketGroup to aggregate.
|
16655
16798
|
*/
|
16656
|
-
where?:
|
16799
|
+
where?: TicketGroupWhereInput
|
16657
16800
|
/**
|
16658
16801
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs}
|
16659
16802
|
*
|
16660
|
-
* Determine the order of
|
16803
|
+
* Determine the order of TicketGroups to fetch.
|
16661
16804
|
*/
|
16662
|
-
orderBy?:
|
16805
|
+
orderBy?: TicketGroupOrderByWithRelationInput | TicketGroupOrderByWithRelationInput[]
|
16663
16806
|
/**
|
16664
16807
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs}
|
16665
16808
|
*
|
16666
16809
|
* Sets the start position
|
16667
16810
|
*/
|
16668
|
-
cursor?:
|
16811
|
+
cursor?: TicketGroupWhereUniqueInput
|
16669
16812
|
/**
|
16670
16813
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
16671
16814
|
*
|
16672
|
-
* Take `±n`
|
16815
|
+
* Take `±n` TicketGroups from the position of the cursor.
|
16673
16816
|
*/
|
16674
16817
|
take?: number
|
16675
16818
|
/**
|
16676
16819
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
16677
16820
|
*
|
16678
|
-
* Skip the first `n`
|
16821
|
+
* Skip the first `n` TicketGroups.
|
16679
16822
|
*/
|
16680
16823
|
skip?: number
|
16681
16824
|
/**
|
16682
16825
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
|
16683
16826
|
*
|
16684
|
-
* Count returned
|
16827
|
+
* Count returned TicketGroups
|
16685
16828
|
**/
|
16686
|
-
_count?: true |
|
16829
|
+
_count?: true | TicketGroupCountAggregateInputType
|
16830
|
+
/**
|
16831
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
|
16832
|
+
*
|
16833
|
+
* Select which fields to average
|
16834
|
+
**/
|
16835
|
+
_avg?: TicketGroupAvgAggregateInputType
|
16836
|
+
/**
|
16837
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
|
16838
|
+
*
|
16839
|
+
* Select which fields to sum
|
16840
|
+
**/
|
16841
|
+
_sum?: TicketGroupSumAggregateInputType
|
16687
16842
|
/**
|
16688
16843
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
|
16689
16844
|
*
|
16690
16845
|
* Select which fields to find the minimum value
|
16691
16846
|
**/
|
16692
|
-
_min?:
|
16847
|
+
_min?: TicketGroupMinAggregateInputType
|
16693
16848
|
/**
|
16694
16849
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
|
16695
16850
|
*
|
16696
16851
|
* Select which fields to find the maximum value
|
16697
16852
|
**/
|
16698
|
-
_max?:
|
16853
|
+
_max?: TicketGroupMaxAggregateInputType
|
16699
16854
|
}
|
16700
16855
|
|
16701
|
-
export type
|
16702
|
-
[P in keyof T & keyof
|
16856
|
+
export type GetTicketGroupAggregateType<T extends TicketGroupAggregateArgs> = {
|
16857
|
+
[P in keyof T & keyof AggregateTicketGroup]: P extends '_count' | 'count'
|
16703
16858
|
? T[P] extends true
|
16704
16859
|
? number
|
16705
|
-
: GetScalarType<T[P],
|
16706
|
-
: GetScalarType<T[P],
|
16860
|
+
: GetScalarType<T[P], AggregateTicketGroup[P]>
|
16861
|
+
: GetScalarType<T[P], AggregateTicketGroup[P]>
|
16707
16862
|
}
|
16708
16863
|
|
16709
16864
|
|
16710
16865
|
|
16711
16866
|
|
16712
|
-
export type
|
16713
|
-
where?:
|
16714
|
-
orderBy?:
|
16715
|
-
by:
|
16716
|
-
having?:
|
16867
|
+
export type TicketGroupGroupByArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
16868
|
+
where?: TicketGroupWhereInput
|
16869
|
+
orderBy?: TicketGroupOrderByWithAggregationInput | TicketGroupOrderByWithAggregationInput[]
|
16870
|
+
by: TicketGroupScalarFieldEnum[] | TicketGroupScalarFieldEnum
|
16871
|
+
having?: TicketGroupScalarWhereWithAggregatesInput
|
16717
16872
|
take?: number
|
16718
16873
|
skip?: number
|
16719
|
-
_count?:
|
16720
|
-
|
16721
|
-
|
16874
|
+
_count?: TicketGroupCountAggregateInputType | true
|
16875
|
+
_avg?: TicketGroupAvgAggregateInputType
|
16876
|
+
_sum?: TicketGroupSumAggregateInputType
|
16877
|
+
_min?: TicketGroupMinAggregateInputType
|
16878
|
+
_max?: TicketGroupMaxAggregateInputType
|
16722
16879
|
}
|
16723
16880
|
|
16724
|
-
export type
|
16881
|
+
export type TicketGroupGroupByOutputType = {
|
16725
16882
|
id: string
|
16726
|
-
|
16727
|
-
|
16728
|
-
|
16729
|
-
|
16730
|
-
|
16883
|
+
status: $Enums.TicketGroupStatus
|
16884
|
+
amountTickets: number
|
16885
|
+
eventId: string
|
16886
|
+
created_at: Date
|
16887
|
+
updated_at: Date
|
16888
|
+
_count: TicketGroupCountAggregateOutputType | null
|
16889
|
+
_avg: TicketGroupAvgAggregateOutputType | null
|
16890
|
+
_sum: TicketGroupSumAggregateOutputType | null
|
16891
|
+
_min: TicketGroupMinAggregateOutputType | null
|
16892
|
+
_max: TicketGroupMaxAggregateOutputType | null
|
16731
16893
|
}
|
16732
16894
|
|
16733
|
-
type
|
16895
|
+
type GetTicketGroupGroupByPayload<T extends TicketGroupGroupByArgs> = Prisma.PrismaPromise<
|
16734
16896
|
Array<
|
16735
|
-
PickEnumerable<
|
16897
|
+
PickEnumerable<TicketGroupGroupByOutputType, T['by']> &
|
16736
16898
|
{
|
16737
|
-
[P in ((keyof T) & (keyof
|
16899
|
+
[P in ((keyof T) & (keyof TicketGroupGroupByOutputType))]: P extends '_count'
|
16738
16900
|
? T[P] extends boolean
|
16739
16901
|
? number
|
16740
|
-
: GetScalarType<T[P],
|
16741
|
-
: GetScalarType<T[P],
|
16902
|
+
: GetScalarType<T[P], TicketGroupGroupByOutputType[P]>
|
16903
|
+
: GetScalarType<T[P], TicketGroupGroupByOutputType[P]>
|
16742
16904
|
}
|
16743
16905
|
>
|
16744
16906
|
>
|
16745
16907
|
|
16746
16908
|
|
16747
|
-
export type
|
16909
|
+
export type TicketGroupSelect<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetSelect<{
|
16748
16910
|
id?: boolean
|
16749
|
-
|
16750
|
-
|
16751
|
-
|
16911
|
+
status?: boolean
|
16912
|
+
amountTickets?: boolean
|
16913
|
+
eventId?: boolean
|
16914
|
+
created_at?: boolean
|
16915
|
+
updated_at?: boolean
|
16916
|
+
event?: boolean | EventDefaultArgs<ExtArgs>
|
16917
|
+
tickets?: boolean | TicketGroup$ticketsArgs<ExtArgs>
|
16918
|
+
_count?: boolean | TicketGroupCountOutputTypeDefaultArgs<ExtArgs>
|
16919
|
+
}, ExtArgs["result"]["ticketGroup"]>
|
16752
16920
|
|
16753
|
-
export type
|
16921
|
+
export type TicketGroupSelectCreateManyAndReturn<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetSelect<{
|
16754
16922
|
id?: boolean
|
16755
|
-
|
16756
|
-
|
16757
|
-
|
16923
|
+
status?: boolean
|
16924
|
+
amountTickets?: boolean
|
16925
|
+
eventId?: boolean
|
16926
|
+
created_at?: boolean
|
16927
|
+
updated_at?: boolean
|
16928
|
+
event?: boolean | EventDefaultArgs<ExtArgs>
|
16929
|
+
}, ExtArgs["result"]["ticketGroup"]>
|
16758
16930
|
|
16759
|
-
export type
|
16931
|
+
export type TicketGroupSelectUpdateManyAndReturn<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetSelect<{
|
16760
16932
|
id?: boolean
|
16761
|
-
|
16762
|
-
|
16763
|
-
|
16933
|
+
status?: boolean
|
16934
|
+
amountTickets?: boolean
|
16935
|
+
eventId?: boolean
|
16936
|
+
created_at?: boolean
|
16937
|
+
updated_at?: boolean
|
16938
|
+
event?: boolean | EventDefaultArgs<ExtArgs>
|
16939
|
+
}, ExtArgs["result"]["ticketGroup"]>
|
16764
16940
|
|
16765
|
-
export type
|
16941
|
+
export type TicketGroupSelectScalar = {
|
16766
16942
|
id?: boolean
|
16767
|
-
|
16768
|
-
|
16769
|
-
|
16943
|
+
status?: boolean
|
16944
|
+
amountTickets?: boolean
|
16945
|
+
eventId?: boolean
|
16946
|
+
created_at?: boolean
|
16947
|
+
updated_at?: boolean
|
16948
|
+
}
|
16949
|
+
|
16950
|
+
export type TicketGroupOmit<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetOmit<"id" | "status" | "amountTickets" | "eventId" | "created_at" | "updated_at", ExtArgs["result"]["ticketGroup"]>
|
16951
|
+
export type TicketGroupInclude<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
16952
|
+
event?: boolean | EventDefaultArgs<ExtArgs>
|
16953
|
+
tickets?: boolean | TicketGroup$ticketsArgs<ExtArgs>
|
16954
|
+
_count?: boolean | TicketGroupCountOutputTypeDefaultArgs<ExtArgs>
|
16955
|
+
}
|
16956
|
+
export type TicketGroupIncludeCreateManyAndReturn<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
16957
|
+
event?: boolean | EventDefaultArgs<ExtArgs>
|
16958
|
+
}
|
16959
|
+
export type TicketGroupIncludeUpdateManyAndReturn<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
16960
|
+
event?: boolean | EventDefaultArgs<ExtArgs>
|
16961
|
+
}
|
16962
|
+
|
16963
|
+
export type $TicketGroupPayload<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
16964
|
+
name: "TicketGroup"
|
16965
|
+
objects: {
|
16966
|
+
event: Prisma.$EventPayload<ExtArgs>
|
16967
|
+
tickets: Prisma.$TicketPayload<ExtArgs>[]
|
16968
|
+
}
|
16969
|
+
scalars: $Extensions.GetPayloadResult<{
|
16970
|
+
id: string
|
16971
|
+
status: $Enums.TicketGroupStatus
|
16972
|
+
amountTickets: number
|
16973
|
+
eventId: string
|
16974
|
+
created_at: Date
|
16975
|
+
updated_at: Date
|
16976
|
+
}, ExtArgs["result"]["ticketGroup"]>
|
16977
|
+
composites: {}
|
16978
|
+
}
|
16979
|
+
|
16980
|
+
type TicketGroupGetPayload<S extends boolean | null | undefined | TicketGroupDefaultArgs> = $Result.GetResult<Prisma.$TicketGroupPayload, S>
|
16981
|
+
|
16982
|
+
type TicketGroupCountArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> =
|
16983
|
+
Omit<TicketGroupFindManyArgs, 'select' | 'include' | 'distinct' | 'omit'> & {
|
16984
|
+
select?: TicketGroupCountAggregateInputType | true
|
16985
|
+
}
|
16986
|
+
|
16987
|
+
export interface TicketGroupDelegate<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs, ClientOptions = {}> {
|
16988
|
+
[K: symbol]: { types: Prisma.TypeMap<ExtArgs>['model']['TicketGroup'], meta: { name: 'TicketGroup' } }
|
16989
|
+
/**
|
16990
|
+
* Find zero or one TicketGroup that matches the filter.
|
16991
|
+
* @param {TicketGroupFindUniqueArgs} args - Arguments to find a TicketGroup
|
16992
|
+
* @example
|
16993
|
+
* // Get one TicketGroup
|
16994
|
+
* const ticketGroup = await prisma.ticketGroup.findUnique({
|
16995
|
+
* where: {
|
16996
|
+
* // ... provide filter here
|
16997
|
+
* }
|
16998
|
+
* })
|
16999
|
+
*/
|
17000
|
+
findUnique<T extends TicketGroupFindUniqueArgs>(args: SelectSubset<T, TicketGroupFindUniqueArgs<ExtArgs>>): Prisma__TicketGroupClient<$Result.GetResult<Prisma.$TicketGroupPayload<ExtArgs>, T, "findUnique", ClientOptions> | null, null, ExtArgs, ClientOptions>
|
17001
|
+
|
17002
|
+
/**
|
17003
|
+
* Find one TicketGroup that matches the filter or throw an error with `error.code='P2025'`
|
17004
|
+
* if no matches were found.
|
17005
|
+
* @param {TicketGroupFindUniqueOrThrowArgs} args - Arguments to find a TicketGroup
|
17006
|
+
* @example
|
17007
|
+
* // Get one TicketGroup
|
17008
|
+
* const ticketGroup = await prisma.ticketGroup.findUniqueOrThrow({
|
17009
|
+
* where: {
|
17010
|
+
* // ... provide filter here
|
17011
|
+
* }
|
17012
|
+
* })
|
17013
|
+
*/
|
17014
|
+
findUniqueOrThrow<T extends TicketGroupFindUniqueOrThrowArgs>(args: SelectSubset<T, TicketGroupFindUniqueOrThrowArgs<ExtArgs>>): Prisma__TicketGroupClient<$Result.GetResult<Prisma.$TicketGroupPayload<ExtArgs>, T, "findUniqueOrThrow", ClientOptions>, never, ExtArgs, ClientOptions>
|
17015
|
+
|
17016
|
+
/**
|
17017
|
+
* Find the first TicketGroup that matches the filter.
|
17018
|
+
* Note, that providing `undefined` is treated as the value not being there.
|
17019
|
+
* Read more here: https://pris.ly/d/null-undefined
|
17020
|
+
* @param {TicketGroupFindFirstArgs} args - Arguments to find a TicketGroup
|
17021
|
+
* @example
|
17022
|
+
* // Get one TicketGroup
|
17023
|
+
* const ticketGroup = await prisma.ticketGroup.findFirst({
|
17024
|
+
* where: {
|
17025
|
+
* // ... provide filter here
|
17026
|
+
* }
|
17027
|
+
* })
|
17028
|
+
*/
|
17029
|
+
findFirst<T extends TicketGroupFindFirstArgs>(args?: SelectSubset<T, TicketGroupFindFirstArgs<ExtArgs>>): Prisma__TicketGroupClient<$Result.GetResult<Prisma.$TicketGroupPayload<ExtArgs>, T, "findFirst", ClientOptions> | null, null, ExtArgs, ClientOptions>
|
17030
|
+
|
17031
|
+
/**
|
17032
|
+
* Find the first TicketGroup that matches the filter or
|
17033
|
+
* throw `PrismaKnownClientError` with `P2025` code if no matches were found.
|
17034
|
+
* Note, that providing `undefined` is treated as the value not being there.
|
17035
|
+
* Read more here: https://pris.ly/d/null-undefined
|
17036
|
+
* @param {TicketGroupFindFirstOrThrowArgs} args - Arguments to find a TicketGroup
|
17037
|
+
* @example
|
17038
|
+
* // Get one TicketGroup
|
17039
|
+
* const ticketGroup = await prisma.ticketGroup.findFirstOrThrow({
|
17040
|
+
* where: {
|
17041
|
+
* // ... provide filter here
|
17042
|
+
* }
|
17043
|
+
* })
|
17044
|
+
*/
|
17045
|
+
findFirstOrThrow<T extends TicketGroupFindFirstOrThrowArgs>(args?: SelectSubset<T, TicketGroupFindFirstOrThrowArgs<ExtArgs>>): Prisma__TicketGroupClient<$Result.GetResult<Prisma.$TicketGroupPayload<ExtArgs>, T, "findFirstOrThrow", ClientOptions>, never, ExtArgs, ClientOptions>
|
17046
|
+
|
17047
|
+
/**
|
17048
|
+
* Find zero or more TicketGroups that matches the filter.
|
17049
|
+
* Note, that providing `undefined` is treated as the value not being there.
|
17050
|
+
* Read more here: https://pris.ly/d/null-undefined
|
17051
|
+
* @param {TicketGroupFindManyArgs} args - Arguments to filter and select certain fields only.
|
17052
|
+
* @example
|
17053
|
+
* // Get all TicketGroups
|
17054
|
+
* const ticketGroups = await prisma.ticketGroup.findMany()
|
17055
|
+
*
|
17056
|
+
* // Get first 10 TicketGroups
|
17057
|
+
* const ticketGroups = await prisma.ticketGroup.findMany({ take: 10 })
|
17058
|
+
*
|
17059
|
+
* // Only select the `id`
|
17060
|
+
* const ticketGroupWithIdOnly = await prisma.ticketGroup.findMany({ select: { id: true } })
|
17061
|
+
*
|
17062
|
+
*/
|
17063
|
+
findMany<T extends TicketGroupFindManyArgs>(args?: SelectSubset<T, TicketGroupFindManyArgs<ExtArgs>>): Prisma.PrismaPromise<$Result.GetResult<Prisma.$TicketGroupPayload<ExtArgs>, T, "findMany", ClientOptions>>
|
17064
|
+
|
17065
|
+
/**
|
17066
|
+
* Create a TicketGroup.
|
17067
|
+
* @param {TicketGroupCreateArgs} args - Arguments to create a TicketGroup.
|
17068
|
+
* @example
|
17069
|
+
* // Create one TicketGroup
|
17070
|
+
* const TicketGroup = await prisma.ticketGroup.create({
|
17071
|
+
* data: {
|
17072
|
+
* // ... data to create a TicketGroup
|
17073
|
+
* }
|
17074
|
+
* })
|
17075
|
+
*
|
17076
|
+
*/
|
17077
|
+
create<T extends TicketGroupCreateArgs>(args: SelectSubset<T, TicketGroupCreateArgs<ExtArgs>>): Prisma__TicketGroupClient<$Result.GetResult<Prisma.$TicketGroupPayload<ExtArgs>, T, "create", ClientOptions>, never, ExtArgs, ClientOptions>
|
17078
|
+
|
17079
|
+
/**
|
17080
|
+
* Create many TicketGroups.
|
17081
|
+
* @param {TicketGroupCreateManyArgs} args - Arguments to create many TicketGroups.
|
17082
|
+
* @example
|
17083
|
+
* // Create many TicketGroups
|
17084
|
+
* const ticketGroup = await prisma.ticketGroup.createMany({
|
17085
|
+
* data: [
|
17086
|
+
* // ... provide data here
|
17087
|
+
* ]
|
17088
|
+
* })
|
17089
|
+
*
|
17090
|
+
*/
|
17091
|
+
createMany<T extends TicketGroupCreateManyArgs>(args?: SelectSubset<T, TicketGroupCreateManyArgs<ExtArgs>>): Prisma.PrismaPromise<BatchPayload>
|
17092
|
+
|
17093
|
+
/**
|
17094
|
+
* Create many TicketGroups and returns the data saved in the database.
|
17095
|
+
* @param {TicketGroupCreateManyAndReturnArgs} args - Arguments to create many TicketGroups.
|
17096
|
+
* @example
|
17097
|
+
* // Create many TicketGroups
|
17098
|
+
* const ticketGroup = await prisma.ticketGroup.createManyAndReturn({
|
17099
|
+
* data: [
|
17100
|
+
* // ... provide data here
|
17101
|
+
* ]
|
17102
|
+
* })
|
17103
|
+
*
|
17104
|
+
* // Create many TicketGroups and only return the `id`
|
17105
|
+
* const ticketGroupWithIdOnly = await prisma.ticketGroup.createManyAndReturn({
|
17106
|
+
* select: { id: true },
|
17107
|
+
* data: [
|
17108
|
+
* // ... provide data here
|
17109
|
+
* ]
|
17110
|
+
* })
|
17111
|
+
* Note, that providing `undefined` is treated as the value not being there.
|
17112
|
+
* Read more here: https://pris.ly/d/null-undefined
|
17113
|
+
*
|
17114
|
+
*/
|
17115
|
+
createManyAndReturn<T extends TicketGroupCreateManyAndReturnArgs>(args?: SelectSubset<T, TicketGroupCreateManyAndReturnArgs<ExtArgs>>): Prisma.PrismaPromise<$Result.GetResult<Prisma.$TicketGroupPayload<ExtArgs>, T, "createManyAndReturn", ClientOptions>>
|
17116
|
+
|
17117
|
+
/**
|
17118
|
+
* Delete a TicketGroup.
|
17119
|
+
* @param {TicketGroupDeleteArgs} args - Arguments to delete one TicketGroup.
|
17120
|
+
* @example
|
17121
|
+
* // Delete one TicketGroup
|
17122
|
+
* const TicketGroup = await prisma.ticketGroup.delete({
|
17123
|
+
* where: {
|
17124
|
+
* // ... filter to delete one TicketGroup
|
17125
|
+
* }
|
17126
|
+
* })
|
17127
|
+
*
|
17128
|
+
*/
|
17129
|
+
delete<T extends TicketGroupDeleteArgs>(args: SelectSubset<T, TicketGroupDeleteArgs<ExtArgs>>): Prisma__TicketGroupClient<$Result.GetResult<Prisma.$TicketGroupPayload<ExtArgs>, T, "delete", ClientOptions>, never, ExtArgs, ClientOptions>
|
17130
|
+
|
17131
|
+
/**
|
17132
|
+
* Update one TicketGroup.
|
17133
|
+
* @param {TicketGroupUpdateArgs} args - Arguments to update one TicketGroup.
|
17134
|
+
* @example
|
17135
|
+
* // Update one TicketGroup
|
17136
|
+
* const ticketGroup = await prisma.ticketGroup.update({
|
17137
|
+
* where: {
|
17138
|
+
* // ... provide filter here
|
17139
|
+
* },
|
17140
|
+
* data: {
|
17141
|
+
* // ... provide data here
|
17142
|
+
* }
|
17143
|
+
* })
|
17144
|
+
*
|
17145
|
+
*/
|
17146
|
+
update<T extends TicketGroupUpdateArgs>(args: SelectSubset<T, TicketGroupUpdateArgs<ExtArgs>>): Prisma__TicketGroupClient<$Result.GetResult<Prisma.$TicketGroupPayload<ExtArgs>, T, "update", ClientOptions>, never, ExtArgs, ClientOptions>
|
17147
|
+
|
17148
|
+
/**
|
17149
|
+
* Delete zero or more TicketGroups.
|
17150
|
+
* @param {TicketGroupDeleteManyArgs} args - Arguments to filter TicketGroups to delete.
|
17151
|
+
* @example
|
17152
|
+
* // Delete a few TicketGroups
|
17153
|
+
* const { count } = await prisma.ticketGroup.deleteMany({
|
17154
|
+
* where: {
|
17155
|
+
* // ... provide filter here
|
17156
|
+
* }
|
17157
|
+
* })
|
17158
|
+
*
|
17159
|
+
*/
|
17160
|
+
deleteMany<T extends TicketGroupDeleteManyArgs>(args?: SelectSubset<T, TicketGroupDeleteManyArgs<ExtArgs>>): Prisma.PrismaPromise<BatchPayload>
|
17161
|
+
|
17162
|
+
/**
|
17163
|
+
* Update zero or more TicketGroups.
|
17164
|
+
* Note, that providing `undefined` is treated as the value not being there.
|
17165
|
+
* Read more here: https://pris.ly/d/null-undefined
|
17166
|
+
* @param {TicketGroupUpdateManyArgs} args - Arguments to update one or more rows.
|
17167
|
+
* @example
|
17168
|
+
* // Update many TicketGroups
|
17169
|
+
* const ticketGroup = await prisma.ticketGroup.updateMany({
|
17170
|
+
* where: {
|
17171
|
+
* // ... provide filter here
|
17172
|
+
* },
|
17173
|
+
* data: {
|
17174
|
+
* // ... provide data here
|
17175
|
+
* }
|
17176
|
+
* })
|
17177
|
+
*
|
17178
|
+
*/
|
17179
|
+
updateMany<T extends TicketGroupUpdateManyArgs>(args: SelectSubset<T, TicketGroupUpdateManyArgs<ExtArgs>>): Prisma.PrismaPromise<BatchPayload>
|
17180
|
+
|
17181
|
+
/**
|
17182
|
+
* Update zero or more TicketGroups and returns the data updated in the database.
|
17183
|
+
* @param {TicketGroupUpdateManyAndReturnArgs} args - Arguments to update many TicketGroups.
|
17184
|
+
* @example
|
17185
|
+
* // Update many TicketGroups
|
17186
|
+
* const ticketGroup = await prisma.ticketGroup.updateManyAndReturn({
|
17187
|
+
* where: {
|
17188
|
+
* // ... provide filter here
|
17189
|
+
* },
|
17190
|
+
* data: [
|
17191
|
+
* // ... provide data here
|
17192
|
+
* ]
|
17193
|
+
* })
|
17194
|
+
*
|
17195
|
+
* // Update zero or more TicketGroups and only return the `id`
|
17196
|
+
* const ticketGroupWithIdOnly = await prisma.ticketGroup.updateManyAndReturn({
|
17197
|
+
* select: { id: true },
|
17198
|
+
* where: {
|
17199
|
+
* // ... provide filter here
|
17200
|
+
* },
|
17201
|
+
* data: [
|
17202
|
+
* // ... provide data here
|
17203
|
+
* ]
|
17204
|
+
* })
|
17205
|
+
* Note, that providing `undefined` is treated as the value not being there.
|
17206
|
+
* Read more here: https://pris.ly/d/null-undefined
|
17207
|
+
*
|
17208
|
+
*/
|
17209
|
+
updateManyAndReturn<T extends TicketGroupUpdateManyAndReturnArgs>(args: SelectSubset<T, TicketGroupUpdateManyAndReturnArgs<ExtArgs>>): Prisma.PrismaPromise<$Result.GetResult<Prisma.$TicketGroupPayload<ExtArgs>, T, "updateManyAndReturn", ClientOptions>>
|
17210
|
+
|
17211
|
+
/**
|
17212
|
+
* Create or update one TicketGroup.
|
17213
|
+
* @param {TicketGroupUpsertArgs} args - Arguments to update or create a TicketGroup.
|
17214
|
+
* @example
|
17215
|
+
* // Update or create a TicketGroup
|
17216
|
+
* const ticketGroup = await prisma.ticketGroup.upsert({
|
17217
|
+
* create: {
|
17218
|
+
* // ... data to create a TicketGroup
|
17219
|
+
* },
|
17220
|
+
* update: {
|
17221
|
+
* // ... in case it already exists, update
|
17222
|
+
* },
|
17223
|
+
* where: {
|
17224
|
+
* // ... the filter for the TicketGroup we want to update
|
17225
|
+
* }
|
17226
|
+
* })
|
17227
|
+
*/
|
17228
|
+
upsert<T extends TicketGroupUpsertArgs>(args: SelectSubset<T, TicketGroupUpsertArgs<ExtArgs>>): Prisma__TicketGroupClient<$Result.GetResult<Prisma.$TicketGroupPayload<ExtArgs>, T, "upsert", ClientOptions>, never, ExtArgs, ClientOptions>
|
17229
|
+
|
17230
|
+
|
17231
|
+
/**
|
17232
|
+
* Count the number of TicketGroups.
|
17233
|
+
* Note, that providing `undefined` is treated as the value not being there.
|
17234
|
+
* Read more here: https://pris.ly/d/null-undefined
|
17235
|
+
* @param {TicketGroupCountArgs} args - Arguments to filter TicketGroups to count.
|
17236
|
+
* @example
|
17237
|
+
* // Count the number of TicketGroups
|
17238
|
+
* const count = await prisma.ticketGroup.count({
|
17239
|
+
* where: {
|
17240
|
+
* // ... the filter for the TicketGroups we want to count
|
17241
|
+
* }
|
17242
|
+
* })
|
17243
|
+
**/
|
17244
|
+
count<T extends TicketGroupCountArgs>(
|
17245
|
+
args?: Subset<T, TicketGroupCountArgs>,
|
17246
|
+
): Prisma.PrismaPromise<
|
17247
|
+
T extends $Utils.Record<'select', any>
|
17248
|
+
? T['select'] extends true
|
17249
|
+
? number
|
17250
|
+
: GetScalarType<T['select'], TicketGroupCountAggregateOutputType>
|
17251
|
+
: number
|
17252
|
+
>
|
17253
|
+
|
17254
|
+
/**
|
17255
|
+
* Allows you to perform aggregations operations on a TicketGroup.
|
17256
|
+
* Note, that providing `undefined` is treated as the value not being there.
|
17257
|
+
* Read more here: https://pris.ly/d/null-undefined
|
17258
|
+
* @param {TicketGroupAggregateArgs} args - Select which aggregations you would like to apply and on what fields.
|
17259
|
+
* @example
|
17260
|
+
* // Ordered by age ascending
|
17261
|
+
* // Where email contains prisma.io
|
17262
|
+
* // Limited to the 10 users
|
17263
|
+
* const aggregations = await prisma.user.aggregate({
|
17264
|
+
* _avg: {
|
17265
|
+
* age: true,
|
17266
|
+
* },
|
17267
|
+
* where: {
|
17268
|
+
* email: {
|
17269
|
+
* contains: "prisma.io",
|
17270
|
+
* },
|
17271
|
+
* },
|
17272
|
+
* orderBy: {
|
17273
|
+
* age: "asc",
|
17274
|
+
* },
|
17275
|
+
* take: 10,
|
17276
|
+
* })
|
17277
|
+
**/
|
17278
|
+
aggregate<T extends TicketGroupAggregateArgs>(args: Subset<T, TicketGroupAggregateArgs>): Prisma.PrismaPromise<GetTicketGroupAggregateType<T>>
|
17279
|
+
|
17280
|
+
/**
|
17281
|
+
* Group by TicketGroup.
|
17282
|
+
* Note, that providing `undefined` is treated as the value not being there.
|
17283
|
+
* Read more here: https://pris.ly/d/null-undefined
|
17284
|
+
* @param {TicketGroupGroupByArgs} args - Group by arguments.
|
17285
|
+
* @example
|
17286
|
+
* // Group by city, order by createdAt, get count
|
17287
|
+
* const result = await prisma.user.groupBy({
|
17288
|
+
* by: ['city', 'createdAt'],
|
17289
|
+
* orderBy: {
|
17290
|
+
* createdAt: true
|
17291
|
+
* },
|
17292
|
+
* _count: {
|
17293
|
+
* _all: true
|
17294
|
+
* },
|
17295
|
+
* })
|
17296
|
+
*
|
17297
|
+
**/
|
17298
|
+
groupBy<
|
17299
|
+
T extends TicketGroupGroupByArgs,
|
17300
|
+
HasSelectOrTake extends Or<
|
17301
|
+
Extends<'skip', Keys<T>>,
|
17302
|
+
Extends<'take', Keys<T>>
|
17303
|
+
>,
|
17304
|
+
OrderByArg extends True extends HasSelectOrTake
|
17305
|
+
? { orderBy: TicketGroupGroupByArgs['orderBy'] }
|
17306
|
+
: { orderBy?: TicketGroupGroupByArgs['orderBy'] },
|
17307
|
+
OrderFields extends ExcludeUnderscoreKeys<Keys<MaybeTupleToUnion<T['orderBy']>>>,
|
17308
|
+
ByFields extends MaybeTupleToUnion<T['by']>,
|
17309
|
+
ByValid extends Has<ByFields, OrderFields>,
|
17310
|
+
HavingFields extends GetHavingFields<T['having']>,
|
17311
|
+
HavingValid extends Has<ByFields, HavingFields>,
|
17312
|
+
ByEmpty extends T['by'] extends never[] ? True : False,
|
17313
|
+
InputErrors extends ByEmpty extends True
|
17314
|
+
? `Error: "by" must not be empty.`
|
17315
|
+
: HavingValid extends False
|
17316
|
+
? {
|
17317
|
+
[P in HavingFields]: P extends ByFields
|
17318
|
+
? never
|
17319
|
+
: P extends string
|
17320
|
+
? `Error: Field "${P}" used in "having" needs to be provided in "by".`
|
17321
|
+
: [
|
17322
|
+
Error,
|
17323
|
+
'Field ',
|
17324
|
+
P,
|
17325
|
+
` in "having" needs to be provided in "by"`,
|
17326
|
+
]
|
17327
|
+
}[HavingFields]
|
17328
|
+
: 'take' extends Keys<T>
|
17329
|
+
? 'orderBy' extends Keys<T>
|
17330
|
+
? ByValid extends True
|
17331
|
+
? {}
|
17332
|
+
: {
|
17333
|
+
[P in OrderFields]: P extends ByFields
|
17334
|
+
? never
|
17335
|
+
: `Error: Field "${P}" in "orderBy" needs to be provided in "by"`
|
17336
|
+
}[OrderFields]
|
17337
|
+
: 'Error: If you provide "take", you also need to provide "orderBy"'
|
17338
|
+
: 'skip' extends Keys<T>
|
17339
|
+
? 'orderBy' extends Keys<T>
|
17340
|
+
? ByValid extends True
|
17341
|
+
? {}
|
17342
|
+
: {
|
17343
|
+
[P in OrderFields]: P extends ByFields
|
17344
|
+
? never
|
17345
|
+
: `Error: Field "${P}" in "orderBy" needs to be provided in "by"`
|
17346
|
+
}[OrderFields]
|
17347
|
+
: 'Error: If you provide "skip", you also need to provide "orderBy"'
|
17348
|
+
: ByValid extends True
|
17349
|
+
? {}
|
17350
|
+
: {
|
17351
|
+
[P in OrderFields]: P extends ByFields
|
17352
|
+
? never
|
17353
|
+
: `Error: Field "${P}" in "orderBy" needs to be provided in "by"`
|
17354
|
+
}[OrderFields]
|
17355
|
+
>(args: SubsetIntersection<T, TicketGroupGroupByArgs, OrderByArg> & InputErrors): {} extends InputErrors ? GetTicketGroupGroupByPayload<T> : Prisma.PrismaPromise<InputErrors>
|
17356
|
+
/**
|
17357
|
+
* Fields of the TicketGroup model
|
17358
|
+
*/
|
17359
|
+
readonly fields: TicketGroupFieldRefs;
|
17360
|
+
}
|
17361
|
+
|
17362
|
+
/**
|
17363
|
+
* The delegate class that acts as a "Promise-like" for TicketGroup.
|
17364
|
+
* Why is this prefixed with `Prisma__`?
|
17365
|
+
* Because we want to prevent naming conflicts as mentioned in
|
17366
|
+
* https://github.com/prisma/prisma-client-js/issues/707
|
17367
|
+
*/
|
17368
|
+
export interface Prisma__TicketGroupClient<T, Null = never, ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs, ClientOptions = {}> extends Prisma.PrismaPromise<T> {
|
17369
|
+
readonly [Symbol.toStringTag]: "PrismaPromise"
|
17370
|
+
event<T extends EventDefaultArgs<ExtArgs> = {}>(args?: Subset<T, EventDefaultArgs<ExtArgs>>): Prisma__EventClient<$Result.GetResult<Prisma.$EventPayload<ExtArgs>, T, "findUniqueOrThrow", ClientOptions> | Null, Null, ExtArgs, ClientOptions>
|
17371
|
+
tickets<T extends TicketGroup$ticketsArgs<ExtArgs> = {}>(args?: Subset<T, TicketGroup$ticketsArgs<ExtArgs>>): Prisma.PrismaPromise<$Result.GetResult<Prisma.$TicketPayload<ExtArgs>, T, "findMany", ClientOptions> | Null>
|
17372
|
+
/**
|
17373
|
+
* Attaches callbacks for the resolution and/or rejection of the Promise.
|
17374
|
+
* @param onfulfilled The callback to execute when the Promise is resolved.
|
17375
|
+
* @param onrejected The callback to execute when the Promise is rejected.
|
17376
|
+
* @returns A Promise for the completion of which ever callback is executed.
|
17377
|
+
*/
|
17378
|
+
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>
|
17379
|
+
/**
|
17380
|
+
* Attaches a callback for only the rejection of the Promise.
|
17381
|
+
* @param onrejected The callback to execute when the Promise is rejected.
|
17382
|
+
* @returns A Promise for the completion of the callback.
|
17383
|
+
*/
|
17384
|
+
catch<TResult = never>(onrejected?: ((reason: any) => TResult | PromiseLike<TResult>) | undefined | null): $Utils.JsPromise<T | TResult>
|
17385
|
+
/**
|
17386
|
+
* Attaches a callback that is invoked when the Promise is settled (fulfilled or rejected). The
|
17387
|
+
* resolved value cannot be modified from the callback.
|
17388
|
+
* @param onfinally The callback to execute when the Promise is settled (fulfilled or rejected).
|
17389
|
+
* @returns A Promise for the completion of the callback.
|
17390
|
+
*/
|
17391
|
+
finally(onfinally?: (() => void) | undefined | null): $Utils.JsPromise<T>
|
17392
|
+
}
|
17393
|
+
|
17394
|
+
|
17395
|
+
|
17396
|
+
|
17397
|
+
/**
|
17398
|
+
* Fields of the TicketGroup model
|
17399
|
+
*/
|
17400
|
+
interface TicketGroupFieldRefs {
|
17401
|
+
readonly id: FieldRef<"TicketGroup", 'String'>
|
17402
|
+
readonly status: FieldRef<"TicketGroup", 'TicketGroupStatus'>
|
17403
|
+
readonly amountTickets: FieldRef<"TicketGroup", 'Int'>
|
17404
|
+
readonly eventId: FieldRef<"TicketGroup", 'String'>
|
17405
|
+
readonly created_at: FieldRef<"TicketGroup", 'DateTime'>
|
17406
|
+
readonly updated_at: FieldRef<"TicketGroup", 'DateTime'>
|
17407
|
+
}
|
17408
|
+
|
17409
|
+
|
17410
|
+
// Custom InputTypes
|
17411
|
+
/**
|
17412
|
+
* TicketGroup findUnique
|
17413
|
+
*/
|
17414
|
+
export type TicketGroupFindUniqueArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
17415
|
+
/**
|
17416
|
+
* Select specific fields to fetch from the TicketGroup
|
17417
|
+
*/
|
17418
|
+
select?: TicketGroupSelect<ExtArgs> | null
|
17419
|
+
/**
|
17420
|
+
* Omit specific fields from the TicketGroup
|
17421
|
+
*/
|
17422
|
+
omit?: TicketGroupOmit<ExtArgs> | null
|
17423
|
+
/**
|
17424
|
+
* Choose, which related nodes to fetch as well
|
17425
|
+
*/
|
17426
|
+
include?: TicketGroupInclude<ExtArgs> | null
|
17427
|
+
/**
|
17428
|
+
* Filter, which TicketGroup to fetch.
|
17429
|
+
*/
|
17430
|
+
where: TicketGroupWhereUniqueInput
|
17431
|
+
}
|
17432
|
+
|
17433
|
+
/**
|
17434
|
+
* TicketGroup findUniqueOrThrow
|
17435
|
+
*/
|
17436
|
+
export type TicketGroupFindUniqueOrThrowArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
17437
|
+
/**
|
17438
|
+
* Select specific fields to fetch from the TicketGroup
|
17439
|
+
*/
|
17440
|
+
select?: TicketGroupSelect<ExtArgs> | null
|
17441
|
+
/**
|
17442
|
+
* Omit specific fields from the TicketGroup
|
17443
|
+
*/
|
17444
|
+
omit?: TicketGroupOmit<ExtArgs> | null
|
17445
|
+
/**
|
17446
|
+
* Choose, which related nodes to fetch as well
|
17447
|
+
*/
|
17448
|
+
include?: TicketGroupInclude<ExtArgs> | null
|
17449
|
+
/**
|
17450
|
+
* Filter, which TicketGroup to fetch.
|
17451
|
+
*/
|
17452
|
+
where: TicketGroupWhereUniqueInput
|
17453
|
+
}
|
17454
|
+
|
17455
|
+
/**
|
17456
|
+
* TicketGroup findFirst
|
17457
|
+
*/
|
17458
|
+
export type TicketGroupFindFirstArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
17459
|
+
/**
|
17460
|
+
* Select specific fields to fetch from the TicketGroup
|
17461
|
+
*/
|
17462
|
+
select?: TicketGroupSelect<ExtArgs> | null
|
17463
|
+
/**
|
17464
|
+
* Omit specific fields from the TicketGroup
|
17465
|
+
*/
|
17466
|
+
omit?: TicketGroupOmit<ExtArgs> | null
|
17467
|
+
/**
|
17468
|
+
* Choose, which related nodes to fetch as well
|
17469
|
+
*/
|
17470
|
+
include?: TicketGroupInclude<ExtArgs> | null
|
17471
|
+
/**
|
17472
|
+
* Filter, which TicketGroup to fetch.
|
17473
|
+
*/
|
17474
|
+
where?: TicketGroupWhereInput
|
17475
|
+
/**
|
17476
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs}
|
17477
|
+
*
|
17478
|
+
* Determine the order of TicketGroups to fetch.
|
17479
|
+
*/
|
17480
|
+
orderBy?: TicketGroupOrderByWithRelationInput | TicketGroupOrderByWithRelationInput[]
|
17481
|
+
/**
|
17482
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs}
|
17483
|
+
*
|
17484
|
+
* Sets the position for searching for TicketGroups.
|
17485
|
+
*/
|
17486
|
+
cursor?: TicketGroupWhereUniqueInput
|
17487
|
+
/**
|
17488
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
17489
|
+
*
|
17490
|
+
* Take `±n` TicketGroups from the position of the cursor.
|
17491
|
+
*/
|
17492
|
+
take?: number
|
17493
|
+
/**
|
17494
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
17495
|
+
*
|
17496
|
+
* Skip the first `n` TicketGroups.
|
17497
|
+
*/
|
17498
|
+
skip?: number
|
17499
|
+
/**
|
17500
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/distinct Distinct Docs}
|
17501
|
+
*
|
17502
|
+
* Filter by unique combinations of TicketGroups.
|
17503
|
+
*/
|
17504
|
+
distinct?: TicketGroupScalarFieldEnum | TicketGroupScalarFieldEnum[]
|
17505
|
+
}
|
17506
|
+
|
17507
|
+
/**
|
17508
|
+
* TicketGroup findFirstOrThrow
|
17509
|
+
*/
|
17510
|
+
export type TicketGroupFindFirstOrThrowArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
17511
|
+
/**
|
17512
|
+
* Select specific fields to fetch from the TicketGroup
|
17513
|
+
*/
|
17514
|
+
select?: TicketGroupSelect<ExtArgs> | null
|
17515
|
+
/**
|
17516
|
+
* Omit specific fields from the TicketGroup
|
17517
|
+
*/
|
17518
|
+
omit?: TicketGroupOmit<ExtArgs> | null
|
17519
|
+
/**
|
17520
|
+
* Choose, which related nodes to fetch as well
|
17521
|
+
*/
|
17522
|
+
include?: TicketGroupInclude<ExtArgs> | null
|
17523
|
+
/**
|
17524
|
+
* Filter, which TicketGroup to fetch.
|
17525
|
+
*/
|
17526
|
+
where?: TicketGroupWhereInput
|
17527
|
+
/**
|
17528
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs}
|
17529
|
+
*
|
17530
|
+
* Determine the order of TicketGroups to fetch.
|
17531
|
+
*/
|
17532
|
+
orderBy?: TicketGroupOrderByWithRelationInput | TicketGroupOrderByWithRelationInput[]
|
17533
|
+
/**
|
17534
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs}
|
17535
|
+
*
|
17536
|
+
* Sets the position for searching for TicketGroups.
|
17537
|
+
*/
|
17538
|
+
cursor?: TicketGroupWhereUniqueInput
|
17539
|
+
/**
|
17540
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
17541
|
+
*
|
17542
|
+
* Take `±n` TicketGroups from the position of the cursor.
|
17543
|
+
*/
|
17544
|
+
take?: number
|
17545
|
+
/**
|
17546
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
17547
|
+
*
|
17548
|
+
* Skip the first `n` TicketGroups.
|
17549
|
+
*/
|
17550
|
+
skip?: number
|
17551
|
+
/**
|
17552
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/distinct Distinct Docs}
|
17553
|
+
*
|
17554
|
+
* Filter by unique combinations of TicketGroups.
|
17555
|
+
*/
|
17556
|
+
distinct?: TicketGroupScalarFieldEnum | TicketGroupScalarFieldEnum[]
|
17557
|
+
}
|
17558
|
+
|
17559
|
+
/**
|
17560
|
+
* TicketGroup findMany
|
17561
|
+
*/
|
17562
|
+
export type TicketGroupFindManyArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
17563
|
+
/**
|
17564
|
+
* Select specific fields to fetch from the TicketGroup
|
17565
|
+
*/
|
17566
|
+
select?: TicketGroupSelect<ExtArgs> | null
|
17567
|
+
/**
|
17568
|
+
* Omit specific fields from the TicketGroup
|
17569
|
+
*/
|
17570
|
+
omit?: TicketGroupOmit<ExtArgs> | null
|
17571
|
+
/**
|
17572
|
+
* Choose, which related nodes to fetch as well
|
17573
|
+
*/
|
17574
|
+
include?: TicketGroupInclude<ExtArgs> | null
|
17575
|
+
/**
|
17576
|
+
* Filter, which TicketGroups to fetch.
|
17577
|
+
*/
|
17578
|
+
where?: TicketGroupWhereInput
|
17579
|
+
/**
|
17580
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs}
|
17581
|
+
*
|
17582
|
+
* Determine the order of TicketGroups to fetch.
|
17583
|
+
*/
|
17584
|
+
orderBy?: TicketGroupOrderByWithRelationInput | TicketGroupOrderByWithRelationInput[]
|
17585
|
+
/**
|
17586
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs}
|
17587
|
+
*
|
17588
|
+
* Sets the position for listing TicketGroups.
|
17589
|
+
*/
|
17590
|
+
cursor?: TicketGroupWhereUniqueInput
|
17591
|
+
/**
|
17592
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
17593
|
+
*
|
17594
|
+
* Take `±n` TicketGroups from the position of the cursor.
|
17595
|
+
*/
|
17596
|
+
take?: number
|
17597
|
+
/**
|
17598
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
17599
|
+
*
|
17600
|
+
* Skip the first `n` TicketGroups.
|
17601
|
+
*/
|
17602
|
+
skip?: number
|
17603
|
+
distinct?: TicketGroupScalarFieldEnum | TicketGroupScalarFieldEnum[]
|
17604
|
+
}
|
17605
|
+
|
17606
|
+
/**
|
17607
|
+
* TicketGroup create
|
17608
|
+
*/
|
17609
|
+
export type TicketGroupCreateArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
17610
|
+
/**
|
17611
|
+
* Select specific fields to fetch from the TicketGroup
|
17612
|
+
*/
|
17613
|
+
select?: TicketGroupSelect<ExtArgs> | null
|
17614
|
+
/**
|
17615
|
+
* Omit specific fields from the TicketGroup
|
17616
|
+
*/
|
17617
|
+
omit?: TicketGroupOmit<ExtArgs> | null
|
17618
|
+
/**
|
17619
|
+
* Choose, which related nodes to fetch as well
|
17620
|
+
*/
|
17621
|
+
include?: TicketGroupInclude<ExtArgs> | null
|
17622
|
+
/**
|
17623
|
+
* The data needed to create a TicketGroup.
|
17624
|
+
*/
|
17625
|
+
data: XOR<TicketGroupCreateInput, TicketGroupUncheckedCreateInput>
|
17626
|
+
}
|
17627
|
+
|
17628
|
+
/**
|
17629
|
+
* TicketGroup createMany
|
17630
|
+
*/
|
17631
|
+
export type TicketGroupCreateManyArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
17632
|
+
/**
|
17633
|
+
* The data used to create many TicketGroups.
|
17634
|
+
*/
|
17635
|
+
data: TicketGroupCreateManyInput | TicketGroupCreateManyInput[]
|
17636
|
+
skipDuplicates?: boolean
|
17637
|
+
}
|
17638
|
+
|
17639
|
+
/**
|
17640
|
+
* TicketGroup createManyAndReturn
|
17641
|
+
*/
|
17642
|
+
export type TicketGroupCreateManyAndReturnArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
17643
|
+
/**
|
17644
|
+
* Select specific fields to fetch from the TicketGroup
|
17645
|
+
*/
|
17646
|
+
select?: TicketGroupSelectCreateManyAndReturn<ExtArgs> | null
|
17647
|
+
/**
|
17648
|
+
* Omit specific fields from the TicketGroup
|
17649
|
+
*/
|
17650
|
+
omit?: TicketGroupOmit<ExtArgs> | null
|
17651
|
+
/**
|
17652
|
+
* The data used to create many TicketGroups.
|
17653
|
+
*/
|
17654
|
+
data: TicketGroupCreateManyInput | TicketGroupCreateManyInput[]
|
17655
|
+
skipDuplicates?: boolean
|
17656
|
+
/**
|
17657
|
+
* Choose, which related nodes to fetch as well
|
17658
|
+
*/
|
17659
|
+
include?: TicketGroupIncludeCreateManyAndReturn<ExtArgs> | null
|
17660
|
+
}
|
17661
|
+
|
17662
|
+
/**
|
17663
|
+
* TicketGroup update
|
17664
|
+
*/
|
17665
|
+
export type TicketGroupUpdateArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
17666
|
+
/**
|
17667
|
+
* Select specific fields to fetch from the TicketGroup
|
17668
|
+
*/
|
17669
|
+
select?: TicketGroupSelect<ExtArgs> | null
|
17670
|
+
/**
|
17671
|
+
* Omit specific fields from the TicketGroup
|
17672
|
+
*/
|
17673
|
+
omit?: TicketGroupOmit<ExtArgs> | null
|
17674
|
+
/**
|
17675
|
+
* Choose, which related nodes to fetch as well
|
17676
|
+
*/
|
17677
|
+
include?: TicketGroupInclude<ExtArgs> | null
|
17678
|
+
/**
|
17679
|
+
* The data needed to update a TicketGroup.
|
17680
|
+
*/
|
17681
|
+
data: XOR<TicketGroupUpdateInput, TicketGroupUncheckedUpdateInput>
|
17682
|
+
/**
|
17683
|
+
* Choose, which TicketGroup to update.
|
17684
|
+
*/
|
17685
|
+
where: TicketGroupWhereUniqueInput
|
17686
|
+
}
|
17687
|
+
|
17688
|
+
/**
|
17689
|
+
* TicketGroup updateMany
|
17690
|
+
*/
|
17691
|
+
export type TicketGroupUpdateManyArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
17692
|
+
/**
|
17693
|
+
* The data used to update TicketGroups.
|
17694
|
+
*/
|
17695
|
+
data: XOR<TicketGroupUpdateManyMutationInput, TicketGroupUncheckedUpdateManyInput>
|
17696
|
+
/**
|
17697
|
+
* Filter which TicketGroups to update
|
17698
|
+
*/
|
17699
|
+
where?: TicketGroupWhereInput
|
17700
|
+
/**
|
17701
|
+
* Limit how many TicketGroups to update.
|
17702
|
+
*/
|
17703
|
+
limit?: number
|
17704
|
+
}
|
17705
|
+
|
17706
|
+
/**
|
17707
|
+
* TicketGroup updateManyAndReturn
|
17708
|
+
*/
|
17709
|
+
export type TicketGroupUpdateManyAndReturnArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
17710
|
+
/**
|
17711
|
+
* Select specific fields to fetch from the TicketGroup
|
17712
|
+
*/
|
17713
|
+
select?: TicketGroupSelectUpdateManyAndReturn<ExtArgs> | null
|
17714
|
+
/**
|
17715
|
+
* Omit specific fields from the TicketGroup
|
17716
|
+
*/
|
17717
|
+
omit?: TicketGroupOmit<ExtArgs> | null
|
17718
|
+
/**
|
17719
|
+
* The data used to update TicketGroups.
|
17720
|
+
*/
|
17721
|
+
data: XOR<TicketGroupUpdateManyMutationInput, TicketGroupUncheckedUpdateManyInput>
|
17722
|
+
/**
|
17723
|
+
* Filter which TicketGroups to update
|
17724
|
+
*/
|
17725
|
+
where?: TicketGroupWhereInput
|
17726
|
+
/**
|
17727
|
+
* Limit how many TicketGroups to update.
|
17728
|
+
*/
|
17729
|
+
limit?: number
|
17730
|
+
/**
|
17731
|
+
* Choose, which related nodes to fetch as well
|
17732
|
+
*/
|
17733
|
+
include?: TicketGroupIncludeUpdateManyAndReturn<ExtArgs> | null
|
17734
|
+
}
|
17735
|
+
|
17736
|
+
/**
|
17737
|
+
* TicketGroup upsert
|
17738
|
+
*/
|
17739
|
+
export type TicketGroupUpsertArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
17740
|
+
/**
|
17741
|
+
* Select specific fields to fetch from the TicketGroup
|
17742
|
+
*/
|
17743
|
+
select?: TicketGroupSelect<ExtArgs> | null
|
17744
|
+
/**
|
17745
|
+
* Omit specific fields from the TicketGroup
|
17746
|
+
*/
|
17747
|
+
omit?: TicketGroupOmit<ExtArgs> | null
|
17748
|
+
/**
|
17749
|
+
* Choose, which related nodes to fetch as well
|
17750
|
+
*/
|
17751
|
+
include?: TicketGroupInclude<ExtArgs> | null
|
17752
|
+
/**
|
17753
|
+
* The filter to search for the TicketGroup to update in case it exists.
|
17754
|
+
*/
|
17755
|
+
where: TicketGroupWhereUniqueInput
|
17756
|
+
/**
|
17757
|
+
* In case the TicketGroup found by the `where` argument doesn't exist, create a new TicketGroup with this data.
|
17758
|
+
*/
|
17759
|
+
create: XOR<TicketGroupCreateInput, TicketGroupUncheckedCreateInput>
|
17760
|
+
/**
|
17761
|
+
* In case the TicketGroup was found with the provided `where` argument, update it with this data.
|
17762
|
+
*/
|
17763
|
+
update: XOR<TicketGroupUpdateInput, TicketGroupUncheckedUpdateInput>
|
17764
|
+
}
|
17765
|
+
|
17766
|
+
/**
|
17767
|
+
* TicketGroup delete
|
17768
|
+
*/
|
17769
|
+
export type TicketGroupDeleteArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
17770
|
+
/**
|
17771
|
+
* Select specific fields to fetch from the TicketGroup
|
17772
|
+
*/
|
17773
|
+
select?: TicketGroupSelect<ExtArgs> | null
|
17774
|
+
/**
|
17775
|
+
* Omit specific fields from the TicketGroup
|
17776
|
+
*/
|
17777
|
+
omit?: TicketGroupOmit<ExtArgs> | null
|
17778
|
+
/**
|
17779
|
+
* Choose, which related nodes to fetch as well
|
17780
|
+
*/
|
17781
|
+
include?: TicketGroupInclude<ExtArgs> | null
|
17782
|
+
/**
|
17783
|
+
* Filter which TicketGroup to delete.
|
17784
|
+
*/
|
17785
|
+
where: TicketGroupWhereUniqueInput
|
17786
|
+
}
|
17787
|
+
|
17788
|
+
/**
|
17789
|
+
* TicketGroup deleteMany
|
17790
|
+
*/
|
17791
|
+
export type TicketGroupDeleteManyArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
17792
|
+
/**
|
17793
|
+
* Filter which TicketGroups to delete
|
17794
|
+
*/
|
17795
|
+
where?: TicketGroupWhereInput
|
17796
|
+
/**
|
17797
|
+
* Limit how many TicketGroups to delete.
|
17798
|
+
*/
|
17799
|
+
limit?: number
|
17800
|
+
}
|
17801
|
+
|
17802
|
+
/**
|
17803
|
+
* TicketGroup.tickets
|
17804
|
+
*/
|
17805
|
+
export type TicketGroup$ticketsArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
17806
|
+
/**
|
17807
|
+
* Select specific fields to fetch from the Ticket
|
17808
|
+
*/
|
17809
|
+
select?: TicketSelect<ExtArgs> | null
|
17810
|
+
/**
|
17811
|
+
* Omit specific fields from the Ticket
|
17812
|
+
*/
|
17813
|
+
omit?: TicketOmit<ExtArgs> | null
|
17814
|
+
/**
|
17815
|
+
* Choose, which related nodes to fetch as well
|
17816
|
+
*/
|
17817
|
+
include?: TicketInclude<ExtArgs> | null
|
17818
|
+
where?: TicketWhereInput
|
17819
|
+
orderBy?: TicketOrderByWithRelationInput | TicketOrderByWithRelationInput[]
|
17820
|
+
cursor?: TicketWhereUniqueInput
|
17821
|
+
take?: number
|
17822
|
+
skip?: number
|
17823
|
+
distinct?: TicketScalarFieldEnum | TicketScalarFieldEnum[]
|
17824
|
+
}
|
17825
|
+
|
17826
|
+
/**
|
17827
|
+
* TicketGroup without action
|
17828
|
+
*/
|
17829
|
+
export type TicketGroupDefaultArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
17830
|
+
/**
|
17831
|
+
* Select specific fields to fetch from the TicketGroup
|
17832
|
+
*/
|
17833
|
+
select?: TicketGroupSelect<ExtArgs> | null
|
17834
|
+
/**
|
17835
|
+
* Omit specific fields from the TicketGroup
|
17836
|
+
*/
|
17837
|
+
omit?: TicketGroupOmit<ExtArgs> | null
|
17838
|
+
/**
|
17839
|
+
* Choose, which related nodes to fetch as well
|
17840
|
+
*/
|
17841
|
+
include?: TicketGroupInclude<ExtArgs> | null
|
17842
|
+
}
|
17843
|
+
|
17844
|
+
|
17845
|
+
/**
|
17846
|
+
* Model Enums
|
17847
|
+
*/
|
17848
|
+
|
17849
|
+
export type AggregateEnums = {
|
17850
|
+
_count: EnumsCountAggregateOutputType | null
|
17851
|
+
_min: EnumsMinAggregateOutputType | null
|
17852
|
+
_max: EnumsMaxAggregateOutputType | null
|
17853
|
+
}
|
17854
|
+
|
17855
|
+
export type EnumsMinAggregateOutputType = {
|
17856
|
+
id: string | null
|
17857
|
+
templateStatus: $Enums.TemplateStatus | null
|
17858
|
+
templateCategory: $Enums.TemplateCategory | null
|
17859
|
+
}
|
17860
|
+
|
17861
|
+
export type EnumsMaxAggregateOutputType = {
|
17862
|
+
id: string | null
|
17863
|
+
templateStatus: $Enums.TemplateStatus | null
|
17864
|
+
templateCategory: $Enums.TemplateCategory | null
|
17865
|
+
}
|
17866
|
+
|
17867
|
+
export type EnumsCountAggregateOutputType = {
|
17868
|
+
id: number
|
17869
|
+
templateStatus: number
|
17870
|
+
templateCategory: number
|
17871
|
+
_all: number
|
17872
|
+
}
|
17873
|
+
|
17874
|
+
|
17875
|
+
export type EnumsMinAggregateInputType = {
|
17876
|
+
id?: true
|
17877
|
+
templateStatus?: true
|
17878
|
+
templateCategory?: true
|
17879
|
+
}
|
17880
|
+
|
17881
|
+
export type EnumsMaxAggregateInputType = {
|
17882
|
+
id?: true
|
17883
|
+
templateStatus?: true
|
17884
|
+
templateCategory?: true
|
17885
|
+
}
|
17886
|
+
|
17887
|
+
export type EnumsCountAggregateInputType = {
|
17888
|
+
id?: true
|
17889
|
+
templateStatus?: true
|
17890
|
+
templateCategory?: true
|
17891
|
+
_all?: true
|
17892
|
+
}
|
17893
|
+
|
17894
|
+
export type EnumsAggregateArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
17895
|
+
/**
|
17896
|
+
* Filter which Enums to aggregate.
|
17897
|
+
*/
|
17898
|
+
where?: EnumsWhereInput
|
17899
|
+
/**
|
17900
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs}
|
17901
|
+
*
|
17902
|
+
* Determine the order of Enums to fetch.
|
17903
|
+
*/
|
17904
|
+
orderBy?: EnumsOrderByWithRelationInput | EnumsOrderByWithRelationInput[]
|
17905
|
+
/**
|
17906
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs}
|
17907
|
+
*
|
17908
|
+
* Sets the start position
|
17909
|
+
*/
|
17910
|
+
cursor?: EnumsWhereUniqueInput
|
17911
|
+
/**
|
17912
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
17913
|
+
*
|
17914
|
+
* Take `±n` Enums from the position of the cursor.
|
17915
|
+
*/
|
17916
|
+
take?: number
|
17917
|
+
/**
|
17918
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
17919
|
+
*
|
17920
|
+
* Skip the first `n` Enums.
|
17921
|
+
*/
|
17922
|
+
skip?: number
|
17923
|
+
/**
|
17924
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
|
17925
|
+
*
|
17926
|
+
* Count returned Enums
|
17927
|
+
**/
|
17928
|
+
_count?: true | EnumsCountAggregateInputType
|
17929
|
+
/**
|
17930
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
|
17931
|
+
*
|
17932
|
+
* Select which fields to find the minimum value
|
17933
|
+
**/
|
17934
|
+
_min?: EnumsMinAggregateInputType
|
17935
|
+
/**
|
17936
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
|
17937
|
+
*
|
17938
|
+
* Select which fields to find the maximum value
|
17939
|
+
**/
|
17940
|
+
_max?: EnumsMaxAggregateInputType
|
17941
|
+
}
|
17942
|
+
|
17943
|
+
export type GetEnumsAggregateType<T extends EnumsAggregateArgs> = {
|
17944
|
+
[P in keyof T & keyof AggregateEnums]: P extends '_count' | 'count'
|
17945
|
+
? T[P] extends true
|
17946
|
+
? number
|
17947
|
+
: GetScalarType<T[P], AggregateEnums[P]>
|
17948
|
+
: GetScalarType<T[P], AggregateEnums[P]>
|
17949
|
+
}
|
17950
|
+
|
17951
|
+
|
17952
|
+
|
17953
|
+
|
17954
|
+
export type EnumsGroupByArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
17955
|
+
where?: EnumsWhereInput
|
17956
|
+
orderBy?: EnumsOrderByWithAggregationInput | EnumsOrderByWithAggregationInput[]
|
17957
|
+
by: EnumsScalarFieldEnum[] | EnumsScalarFieldEnum
|
17958
|
+
having?: EnumsScalarWhereWithAggregatesInput
|
17959
|
+
take?: number
|
17960
|
+
skip?: number
|
17961
|
+
_count?: EnumsCountAggregateInputType | true
|
17962
|
+
_min?: EnumsMinAggregateInputType
|
17963
|
+
_max?: EnumsMaxAggregateInputType
|
17964
|
+
}
|
17965
|
+
|
17966
|
+
export type EnumsGroupByOutputType = {
|
17967
|
+
id: string
|
17968
|
+
templateStatus: $Enums.TemplateStatus
|
17969
|
+
templateCategory: $Enums.TemplateCategory
|
17970
|
+
_count: EnumsCountAggregateOutputType | null
|
17971
|
+
_min: EnumsMinAggregateOutputType | null
|
17972
|
+
_max: EnumsMaxAggregateOutputType | null
|
17973
|
+
}
|
17974
|
+
|
17975
|
+
type GetEnumsGroupByPayload<T extends EnumsGroupByArgs> = Prisma.PrismaPromise<
|
17976
|
+
Array<
|
17977
|
+
PickEnumerable<EnumsGroupByOutputType, T['by']> &
|
17978
|
+
{
|
17979
|
+
[P in ((keyof T) & (keyof EnumsGroupByOutputType))]: P extends '_count'
|
17980
|
+
? T[P] extends boolean
|
17981
|
+
? number
|
17982
|
+
: GetScalarType<T[P], EnumsGroupByOutputType[P]>
|
17983
|
+
: GetScalarType<T[P], EnumsGroupByOutputType[P]>
|
17984
|
+
}
|
17985
|
+
>
|
17986
|
+
>
|
17987
|
+
|
17988
|
+
|
17989
|
+
export type EnumsSelect<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetSelect<{
|
17990
|
+
id?: boolean
|
17991
|
+
templateStatus?: boolean
|
17992
|
+
templateCategory?: boolean
|
17993
|
+
}, ExtArgs["result"]["enums"]>
|
17994
|
+
|
17995
|
+
export type EnumsSelectCreateManyAndReturn<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetSelect<{
|
17996
|
+
id?: boolean
|
17997
|
+
templateStatus?: boolean
|
17998
|
+
templateCategory?: boolean
|
17999
|
+
}, ExtArgs["result"]["enums"]>
|
18000
|
+
|
18001
|
+
export type EnumsSelectUpdateManyAndReturn<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetSelect<{
|
18002
|
+
id?: boolean
|
18003
|
+
templateStatus?: boolean
|
18004
|
+
templateCategory?: boolean
|
18005
|
+
}, ExtArgs["result"]["enums"]>
|
18006
|
+
|
18007
|
+
export type EnumsSelectScalar = {
|
18008
|
+
id?: boolean
|
18009
|
+
templateStatus?: boolean
|
18010
|
+
templateCategory?: boolean
|
18011
|
+
}
|
16770
18012
|
|
16771
18013
|
export type EnumsOmit<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetOmit<"id" | "templateStatus" | "templateCategory", ExtArgs["result"]["enums"]>
|
16772
18014
|
|
@@ -18873,12 +20115,10 @@ export namespace Prisma {
|
|
18873
20115
|
id: 'id',
|
18874
20116
|
eventId: 'eventId',
|
18875
20117
|
type: 'type',
|
18876
|
-
status: 'status',
|
18877
20118
|
fullName: 'fullName',
|
18878
20119
|
mail: 'mail',
|
18879
|
-
dni: 'dni',
|
18880
|
-
seat: 'seat',
|
18881
20120
|
profileId: 'profileId',
|
20121
|
+
ticketGroupId: 'ticketGroupId',
|
18882
20122
|
created_at: 'created_at',
|
18883
20123
|
updated_at: 'updated_at'
|
18884
20124
|
};
|
@@ -18886,6 +20126,18 @@ export namespace Prisma {
|
|
18886
20126
|
export type TicketScalarFieldEnum = (typeof TicketScalarFieldEnum)[keyof typeof TicketScalarFieldEnum]
|
18887
20127
|
|
18888
20128
|
|
20129
|
+
export const TicketGroupScalarFieldEnum: {
|
20130
|
+
id: 'id',
|
20131
|
+
status: 'status',
|
20132
|
+
amountTickets: 'amountTickets',
|
20133
|
+
eventId: 'eventId',
|
20134
|
+
created_at: 'created_at',
|
20135
|
+
updated_at: 'updated_at'
|
20136
|
+
};
|
20137
|
+
|
20138
|
+
export type TicketGroupScalarFieldEnum = (typeof TicketGroupScalarFieldEnum)[keyof typeof TicketGroupScalarFieldEnum]
|
20139
|
+
|
20140
|
+
|
18889
20141
|
export const EnumsScalarFieldEnum: {
|
18890
20142
|
id: 'id',
|
18891
20143
|
templateStatus: 'templateStatus',
|
@@ -19087,16 +20339,16 @@ export namespace Prisma {
|
|
19087
20339
|
|
19088
20340
|
|
19089
20341
|
/**
|
19090
|
-
* Reference to a field of type '
|
20342
|
+
* Reference to a field of type 'TicketGroupStatus'
|
19091
20343
|
*/
|
19092
|
-
export type
|
20344
|
+
export type EnumTicketGroupStatusFieldRefInput<$PrismaModel> = FieldRefInputType<$PrismaModel, 'TicketGroupStatus'>
|
19093
20345
|
|
19094
20346
|
|
19095
20347
|
|
19096
20348
|
/**
|
19097
|
-
* Reference to a field of type '
|
20349
|
+
* Reference to a field of type 'TicketGroupStatus[]'
|
19098
20350
|
*/
|
19099
|
-
export type
|
20351
|
+
export type ListEnumTicketGroupStatusFieldRefInput<$PrismaModel> = FieldRefInputType<$PrismaModel, 'TicketGroupStatus[]'>
|
19100
20352
|
|
19101
20353
|
|
19102
20354
|
|
@@ -19762,6 +21014,7 @@ export namespace Prisma {
|
|
19762
21014
|
tagConfirmed?: XOR<TagScalarRelationFilter, TagWhereInput>
|
19763
21015
|
supraEvent?: XOR<EventNullableScalarRelationFilter, EventWhereInput> | null
|
19764
21016
|
tickets?: TicketListRelationFilter
|
21017
|
+
ticketGroups?: TicketGroupListRelationFilter
|
19765
21018
|
subEvents?: EventListRelationFilter
|
19766
21019
|
tags?: TagListRelationFilter
|
19767
21020
|
eventTickets?: EventTicketListRelationFilter
|
@@ -19786,6 +21039,7 @@ export namespace Prisma {
|
|
19786
21039
|
tagConfirmed?: TagOrderByWithRelationInput
|
19787
21040
|
supraEvent?: EventOrderByWithRelationInput
|
19788
21041
|
tickets?: TicketOrderByRelationAggregateInput
|
21042
|
+
ticketGroups?: TicketGroupOrderByRelationAggregateInput
|
19789
21043
|
subEvents?: EventOrderByRelationAggregateInput
|
19790
21044
|
tags?: TagOrderByRelationAggregateInput
|
19791
21045
|
eventTickets?: EventTicketOrderByRelationAggregateInput
|
@@ -19813,6 +21067,7 @@ export namespace Prisma {
|
|
19813
21067
|
tagConfirmed?: XOR<TagScalarRelationFilter, TagWhereInput>
|
19814
21068
|
supraEvent?: XOR<EventNullableScalarRelationFilter, EventWhereInput> | null
|
19815
21069
|
tickets?: TicketListRelationFilter
|
21070
|
+
ticketGroups?: TicketGroupListRelationFilter
|
19816
21071
|
subEvents?: EventListRelationFilter
|
19817
21072
|
tags?: TagListRelationFilter
|
19818
21073
|
eventTickets?: EventTicketListRelationFilter
|
@@ -20035,32 +21290,30 @@ export namespace Prisma {
|
|
20035
21290
|
id?: StringFilter<"Ticket"> | string
|
20036
21291
|
eventId?: StringFilter<"Ticket"> | string
|
20037
21292
|
type?: EnumTicketTypeFilter<"Ticket"> | $Enums.TicketType
|
20038
|
-
status?: EnumTicketStatusFilter<"Ticket"> | $Enums.TicketStatus
|
20039
21293
|
fullName?: StringFilter<"Ticket"> | string
|
20040
21294
|
mail?: StringFilter<"Ticket"> | string
|
20041
|
-
dni?: StringFilter<"Ticket"> | string
|
20042
|
-
seat?: IntNullableFilter<"Ticket"> | number | null
|
20043
21295
|
profileId?: StringNullableFilter<"Ticket"> | string | null
|
21296
|
+
ticketGroupId?: StringFilter<"Ticket"> | string
|
20044
21297
|
created_at?: DateTimeFilter<"Ticket"> | Date | string
|
20045
21298
|
updated_at?: DateTimeFilter<"Ticket"> | Date | string
|
20046
21299
|
event?: XOR<EventScalarRelationFilter, EventWhereInput>
|
20047
21300
|
profile?: XOR<ProfileNullableScalarRelationFilter, ProfileWhereInput> | null
|
21301
|
+
ticketGroup?: XOR<TicketGroupScalarRelationFilter, TicketGroupWhereInput>
|
20048
21302
|
}
|
20049
21303
|
|
20050
21304
|
export type TicketOrderByWithRelationInput = {
|
20051
21305
|
id?: SortOrder
|
20052
21306
|
eventId?: SortOrder
|
20053
21307
|
type?: SortOrder
|
20054
|
-
status?: SortOrder
|
20055
21308
|
fullName?: SortOrder
|
20056
21309
|
mail?: SortOrder
|
20057
|
-
dni?: SortOrder
|
20058
|
-
seat?: SortOrderInput | SortOrder
|
20059
21310
|
profileId?: SortOrderInput | SortOrder
|
21311
|
+
ticketGroupId?: SortOrder
|
20060
21312
|
created_at?: SortOrder
|
20061
21313
|
updated_at?: SortOrder
|
20062
21314
|
event?: EventOrderByWithRelationInput
|
20063
21315
|
profile?: ProfileOrderByWithRelationInput
|
21316
|
+
ticketGroup?: TicketGroupOrderByWithRelationInput
|
20064
21317
|
}
|
20065
21318
|
|
20066
21319
|
export type TicketWhereUniqueInput = Prisma.AtLeast<{
|
@@ -20070,52 +21323,110 @@ export namespace Prisma {
|
|
20070
21323
|
NOT?: TicketWhereInput | TicketWhereInput[]
|
20071
21324
|
eventId?: StringFilter<"Ticket"> | string
|
20072
21325
|
type?: EnumTicketTypeFilter<"Ticket"> | $Enums.TicketType
|
20073
|
-
status?: EnumTicketStatusFilter<"Ticket"> | $Enums.TicketStatus
|
20074
21326
|
fullName?: StringFilter<"Ticket"> | string
|
20075
21327
|
mail?: StringFilter<"Ticket"> | string
|
20076
|
-
dni?: StringFilter<"Ticket"> | string
|
20077
|
-
seat?: IntNullableFilter<"Ticket"> | number | null
|
20078
21328
|
profileId?: StringNullableFilter<"Ticket"> | string | null
|
21329
|
+
ticketGroupId?: StringFilter<"Ticket"> | string
|
20079
21330
|
created_at?: DateTimeFilter<"Ticket"> | Date | string
|
20080
21331
|
updated_at?: DateTimeFilter<"Ticket"> | Date | string
|
20081
21332
|
event?: XOR<EventScalarRelationFilter, EventWhereInput>
|
20082
21333
|
profile?: XOR<ProfileNullableScalarRelationFilter, ProfileWhereInput> | null
|
21334
|
+
ticketGroup?: XOR<TicketGroupScalarRelationFilter, TicketGroupWhereInput>
|
20083
21335
|
}, "id">
|
20084
21336
|
|
20085
21337
|
export type TicketOrderByWithAggregationInput = {
|
20086
21338
|
id?: SortOrder
|
20087
21339
|
eventId?: SortOrder
|
20088
21340
|
type?: SortOrder
|
20089
|
-
status?: SortOrder
|
20090
21341
|
fullName?: SortOrder
|
20091
21342
|
mail?: SortOrder
|
20092
|
-
dni?: SortOrder
|
20093
|
-
seat?: SortOrderInput | SortOrder
|
20094
21343
|
profileId?: SortOrderInput | SortOrder
|
21344
|
+
ticketGroupId?: SortOrder
|
20095
21345
|
created_at?: SortOrder
|
20096
21346
|
updated_at?: SortOrder
|
20097
21347
|
_count?: TicketCountOrderByAggregateInput
|
20098
|
-
_avg?: TicketAvgOrderByAggregateInput
|
20099
21348
|
_max?: TicketMaxOrderByAggregateInput
|
20100
21349
|
_min?: TicketMinOrderByAggregateInput
|
20101
|
-
_sum?: TicketSumOrderByAggregateInput
|
20102
21350
|
}
|
20103
21351
|
|
20104
|
-
export type TicketScalarWhereWithAggregatesInput = {
|
20105
|
-
AND?: TicketScalarWhereWithAggregatesInput | TicketScalarWhereWithAggregatesInput[]
|
20106
|
-
OR?: TicketScalarWhereWithAggregatesInput[]
|
20107
|
-
NOT?: TicketScalarWhereWithAggregatesInput | TicketScalarWhereWithAggregatesInput[]
|
20108
|
-
id?: StringWithAggregatesFilter<"Ticket"> | string
|
20109
|
-
eventId?: StringWithAggregatesFilter<"Ticket"> | string
|
20110
|
-
type?: EnumTicketTypeWithAggregatesFilter<"Ticket"> | $Enums.TicketType
|
20111
|
-
|
20112
|
-
|
20113
|
-
|
20114
|
-
|
20115
|
-
|
20116
|
-
|
20117
|
-
|
20118
|
-
|
21352
|
+
export type TicketScalarWhereWithAggregatesInput = {
|
21353
|
+
AND?: TicketScalarWhereWithAggregatesInput | TicketScalarWhereWithAggregatesInput[]
|
21354
|
+
OR?: TicketScalarWhereWithAggregatesInput[]
|
21355
|
+
NOT?: TicketScalarWhereWithAggregatesInput | TicketScalarWhereWithAggregatesInput[]
|
21356
|
+
id?: StringWithAggregatesFilter<"Ticket"> | string
|
21357
|
+
eventId?: StringWithAggregatesFilter<"Ticket"> | string
|
21358
|
+
type?: EnumTicketTypeWithAggregatesFilter<"Ticket"> | $Enums.TicketType
|
21359
|
+
fullName?: StringWithAggregatesFilter<"Ticket"> | string
|
21360
|
+
mail?: StringWithAggregatesFilter<"Ticket"> | string
|
21361
|
+
profileId?: StringNullableWithAggregatesFilter<"Ticket"> | string | null
|
21362
|
+
ticketGroupId?: StringWithAggregatesFilter<"Ticket"> | string
|
21363
|
+
created_at?: DateTimeWithAggregatesFilter<"Ticket"> | Date | string
|
21364
|
+
updated_at?: DateTimeWithAggregatesFilter<"Ticket"> | Date | string
|
21365
|
+
}
|
21366
|
+
|
21367
|
+
export type TicketGroupWhereInput = {
|
21368
|
+
AND?: TicketGroupWhereInput | TicketGroupWhereInput[]
|
21369
|
+
OR?: TicketGroupWhereInput[]
|
21370
|
+
NOT?: TicketGroupWhereInput | TicketGroupWhereInput[]
|
21371
|
+
id?: StringFilter<"TicketGroup"> | string
|
21372
|
+
status?: EnumTicketGroupStatusFilter<"TicketGroup"> | $Enums.TicketGroupStatus
|
21373
|
+
amountTickets?: IntFilter<"TicketGroup"> | number
|
21374
|
+
eventId?: StringFilter<"TicketGroup"> | string
|
21375
|
+
created_at?: DateTimeFilter<"TicketGroup"> | Date | string
|
21376
|
+
updated_at?: DateTimeFilter<"TicketGroup"> | Date | string
|
21377
|
+
event?: XOR<EventScalarRelationFilter, EventWhereInput>
|
21378
|
+
tickets?: TicketListRelationFilter
|
21379
|
+
}
|
21380
|
+
|
21381
|
+
export type TicketGroupOrderByWithRelationInput = {
|
21382
|
+
id?: SortOrder
|
21383
|
+
status?: SortOrder
|
21384
|
+
amountTickets?: SortOrder
|
21385
|
+
eventId?: SortOrder
|
21386
|
+
created_at?: SortOrder
|
21387
|
+
updated_at?: SortOrder
|
21388
|
+
event?: EventOrderByWithRelationInput
|
21389
|
+
tickets?: TicketOrderByRelationAggregateInput
|
21390
|
+
}
|
21391
|
+
|
21392
|
+
export type TicketGroupWhereUniqueInput = Prisma.AtLeast<{
|
21393
|
+
id?: string
|
21394
|
+
AND?: TicketGroupWhereInput | TicketGroupWhereInput[]
|
21395
|
+
OR?: TicketGroupWhereInput[]
|
21396
|
+
NOT?: TicketGroupWhereInput | TicketGroupWhereInput[]
|
21397
|
+
status?: EnumTicketGroupStatusFilter<"TicketGroup"> | $Enums.TicketGroupStatus
|
21398
|
+
amountTickets?: IntFilter<"TicketGroup"> | number
|
21399
|
+
eventId?: StringFilter<"TicketGroup"> | string
|
21400
|
+
created_at?: DateTimeFilter<"TicketGroup"> | Date | string
|
21401
|
+
updated_at?: DateTimeFilter<"TicketGroup"> | Date | string
|
21402
|
+
event?: XOR<EventScalarRelationFilter, EventWhereInput>
|
21403
|
+
tickets?: TicketListRelationFilter
|
21404
|
+
}, "id">
|
21405
|
+
|
21406
|
+
export type TicketGroupOrderByWithAggregationInput = {
|
21407
|
+
id?: SortOrder
|
21408
|
+
status?: SortOrder
|
21409
|
+
amountTickets?: SortOrder
|
21410
|
+
eventId?: SortOrder
|
21411
|
+
created_at?: SortOrder
|
21412
|
+
updated_at?: SortOrder
|
21413
|
+
_count?: TicketGroupCountOrderByAggregateInput
|
21414
|
+
_avg?: TicketGroupAvgOrderByAggregateInput
|
21415
|
+
_max?: TicketGroupMaxOrderByAggregateInput
|
21416
|
+
_min?: TicketGroupMinOrderByAggregateInput
|
21417
|
+
_sum?: TicketGroupSumOrderByAggregateInput
|
21418
|
+
}
|
21419
|
+
|
21420
|
+
export type TicketGroupScalarWhereWithAggregatesInput = {
|
21421
|
+
AND?: TicketGroupScalarWhereWithAggregatesInput | TicketGroupScalarWhereWithAggregatesInput[]
|
21422
|
+
OR?: TicketGroupScalarWhereWithAggregatesInput[]
|
21423
|
+
NOT?: TicketGroupScalarWhereWithAggregatesInput | TicketGroupScalarWhereWithAggregatesInput[]
|
21424
|
+
id?: StringWithAggregatesFilter<"TicketGroup"> | string
|
21425
|
+
status?: EnumTicketGroupStatusWithAggregatesFilter<"TicketGroup"> | $Enums.TicketGroupStatus
|
21426
|
+
amountTickets?: IntWithAggregatesFilter<"TicketGroup"> | number
|
21427
|
+
eventId?: StringWithAggregatesFilter<"TicketGroup"> | string
|
21428
|
+
created_at?: DateTimeWithAggregatesFilter<"TicketGroup"> | Date | string
|
21429
|
+
updated_at?: DateTimeWithAggregatesFilter<"TicketGroup"> | Date | string
|
20119
21430
|
}
|
20120
21431
|
|
20121
21432
|
export type EnumsWhereInput = {
|
@@ -20930,6 +22241,7 @@ export namespace Prisma {
|
|
20930
22241
|
tagConfirmed: TagCreateNestedOneWithoutConfirmedEventInput
|
20931
22242
|
supraEvent?: EventCreateNestedOneWithoutSubEventsInput
|
20932
22243
|
tickets?: TicketCreateNestedManyWithoutEventInput
|
22244
|
+
ticketGroups?: TicketGroupCreateNestedManyWithoutEventInput
|
20933
22245
|
subEvents?: EventCreateNestedManyWithoutSupraEventInput
|
20934
22246
|
tags?: TagCreateNestedManyWithoutEventInput
|
20935
22247
|
eventTickets?: EventTicketCreateNestedManyWithoutEventInput
|
@@ -20950,6 +22262,7 @@ export namespace Prisma {
|
|
20950
22262
|
created_at?: Date | string
|
20951
22263
|
updated_at?: Date | string
|
20952
22264
|
tickets?: TicketUncheckedCreateNestedManyWithoutEventInput
|
22265
|
+
ticketGroups?: TicketGroupUncheckedCreateNestedManyWithoutEventInput
|
20953
22266
|
subEvents?: EventUncheckedCreateNestedManyWithoutSupraEventInput
|
20954
22267
|
tags?: TagUncheckedCreateNestedManyWithoutEventInput
|
20955
22268
|
eventTickets?: EventTicketUncheckedCreateNestedManyWithoutEventInput
|
@@ -20970,6 +22283,7 @@ export namespace Prisma {
|
|
20970
22283
|
tagConfirmed?: TagUpdateOneRequiredWithoutConfirmedEventNestedInput
|
20971
22284
|
supraEvent?: EventUpdateOneWithoutSubEventsNestedInput
|
20972
22285
|
tickets?: TicketUpdateManyWithoutEventNestedInput
|
22286
|
+
ticketGroups?: TicketGroupUpdateManyWithoutEventNestedInput
|
20973
22287
|
subEvents?: EventUpdateManyWithoutSupraEventNestedInput
|
20974
22288
|
tags?: TagUpdateManyWithoutEventNestedInput
|
20975
22289
|
eventTickets?: EventTicketUpdateManyWithoutEventNestedInput
|
@@ -20990,6 +22304,7 @@ export namespace Prisma {
|
|
20990
22304
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
20991
22305
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
20992
22306
|
tickets?: TicketUncheckedUpdateManyWithoutEventNestedInput
|
22307
|
+
ticketGroups?: TicketGroupUncheckedUpdateManyWithoutEventNestedInput
|
20993
22308
|
subEvents?: EventUncheckedUpdateManyWithoutSupraEventNestedInput
|
20994
22309
|
tags?: TagUncheckedUpdateManyWithoutEventNestedInput
|
20995
22310
|
eventTickets?: EventTicketUncheckedUpdateManyWithoutEventNestedInput
|
@@ -21227,27 +22542,23 @@ export namespace Prisma {
|
|
21227
22542
|
export type TicketCreateInput = {
|
21228
22543
|
id?: string
|
21229
22544
|
type: $Enums.TicketType
|
21230
|
-
status: $Enums.TicketStatus
|
21231
22545
|
fullName: string
|
21232
22546
|
mail: string
|
21233
|
-
dni: string
|
21234
|
-
seat?: number | null
|
21235
22547
|
created_at?: Date | string
|
21236
22548
|
updated_at?: Date | string
|
21237
22549
|
event: EventCreateNestedOneWithoutTicketsInput
|
21238
22550
|
profile?: ProfileCreateNestedOneWithoutTicketInput
|
22551
|
+
ticketGroup: TicketGroupCreateNestedOneWithoutTicketsInput
|
21239
22552
|
}
|
21240
22553
|
|
21241
22554
|
export type TicketUncheckedCreateInput = {
|
21242
22555
|
id?: string
|
21243
22556
|
eventId: string
|
21244
22557
|
type: $Enums.TicketType
|
21245
|
-
status: $Enums.TicketStatus
|
21246
22558
|
fullName: string
|
21247
22559
|
mail: string
|
21248
|
-
dni: string
|
21249
|
-
seat?: number | null
|
21250
22560
|
profileId?: string | null
|
22561
|
+
ticketGroupId: string
|
21251
22562
|
created_at?: Date | string
|
21252
22563
|
updated_at?: Date | string
|
21253
22564
|
}
|
@@ -21255,27 +22566,23 @@ export namespace Prisma {
|
|
21255
22566
|
export type TicketUpdateInput = {
|
21256
22567
|
id?: StringFieldUpdateOperationsInput | string
|
21257
22568
|
type?: EnumTicketTypeFieldUpdateOperationsInput | $Enums.TicketType
|
21258
|
-
status?: EnumTicketStatusFieldUpdateOperationsInput | $Enums.TicketStatus
|
21259
22569
|
fullName?: StringFieldUpdateOperationsInput | string
|
21260
22570
|
mail?: StringFieldUpdateOperationsInput | string
|
21261
|
-
dni?: StringFieldUpdateOperationsInput | string
|
21262
|
-
seat?: NullableIntFieldUpdateOperationsInput | number | null
|
21263
22571
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
21264
22572
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
21265
22573
|
event?: EventUpdateOneRequiredWithoutTicketsNestedInput
|
21266
22574
|
profile?: ProfileUpdateOneWithoutTicketNestedInput
|
22575
|
+
ticketGroup?: TicketGroupUpdateOneRequiredWithoutTicketsNestedInput
|
21267
22576
|
}
|
21268
22577
|
|
21269
22578
|
export type TicketUncheckedUpdateInput = {
|
21270
22579
|
id?: StringFieldUpdateOperationsInput | string
|
21271
22580
|
eventId?: StringFieldUpdateOperationsInput | string
|
21272
22581
|
type?: EnumTicketTypeFieldUpdateOperationsInput | $Enums.TicketType
|
21273
|
-
status?: EnumTicketStatusFieldUpdateOperationsInput | $Enums.TicketStatus
|
21274
22582
|
fullName?: StringFieldUpdateOperationsInput | string
|
21275
22583
|
mail?: StringFieldUpdateOperationsInput | string
|
21276
|
-
dni?: StringFieldUpdateOperationsInput | string
|
21277
|
-
seat?: NullableIntFieldUpdateOperationsInput | number | null
|
21278
22584
|
profileId?: NullableStringFieldUpdateOperationsInput | string | null
|
22585
|
+
ticketGroupId?: StringFieldUpdateOperationsInput | string
|
21279
22586
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
21280
22587
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
21281
22588
|
}
|
@@ -21284,12 +22591,10 @@ export namespace Prisma {
|
|
21284
22591
|
id?: string
|
21285
22592
|
eventId: string
|
21286
22593
|
type: $Enums.TicketType
|
21287
|
-
status: $Enums.TicketStatus
|
21288
22594
|
fullName: string
|
21289
22595
|
mail: string
|
21290
|
-
dni: string
|
21291
|
-
seat?: number | null
|
21292
22596
|
profileId?: string | null
|
22597
|
+
ticketGroupId: string
|
21293
22598
|
created_at?: Date | string
|
21294
22599
|
updated_at?: Date | string
|
21295
22600
|
}
|
@@ -21297,11 +22602,8 @@ export namespace Prisma {
|
|
21297
22602
|
export type TicketUpdateManyMutationInput = {
|
21298
22603
|
id?: StringFieldUpdateOperationsInput | string
|
21299
22604
|
type?: EnumTicketTypeFieldUpdateOperationsInput | $Enums.TicketType
|
21300
|
-
status?: EnumTicketStatusFieldUpdateOperationsInput | $Enums.TicketStatus
|
21301
22605
|
fullName?: StringFieldUpdateOperationsInput | string
|
21302
22606
|
mail?: StringFieldUpdateOperationsInput | string
|
21303
|
-
dni?: StringFieldUpdateOperationsInput | string
|
21304
|
-
seat?: NullableIntFieldUpdateOperationsInput | number | null
|
21305
22607
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
21306
22608
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
21307
22609
|
}
|
@@ -21310,12 +22612,76 @@ export namespace Prisma {
|
|
21310
22612
|
id?: StringFieldUpdateOperationsInput | string
|
21311
22613
|
eventId?: StringFieldUpdateOperationsInput | string
|
21312
22614
|
type?: EnumTicketTypeFieldUpdateOperationsInput | $Enums.TicketType
|
21313
|
-
status?: EnumTicketStatusFieldUpdateOperationsInput | $Enums.TicketStatus
|
21314
22615
|
fullName?: StringFieldUpdateOperationsInput | string
|
21315
22616
|
mail?: StringFieldUpdateOperationsInput | string
|
21316
|
-
dni?: StringFieldUpdateOperationsInput | string
|
21317
|
-
seat?: NullableIntFieldUpdateOperationsInput | number | null
|
21318
22617
|
profileId?: NullableStringFieldUpdateOperationsInput | string | null
|
22618
|
+
ticketGroupId?: StringFieldUpdateOperationsInput | string
|
22619
|
+
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
22620
|
+
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
22621
|
+
}
|
22622
|
+
|
22623
|
+
export type TicketGroupCreateInput = {
|
22624
|
+
id?: string
|
22625
|
+
status: $Enums.TicketGroupStatus
|
22626
|
+
amountTickets?: number
|
22627
|
+
created_at?: Date | string
|
22628
|
+
updated_at?: Date | string
|
22629
|
+
event: EventCreateNestedOneWithoutTicketGroupsInput
|
22630
|
+
tickets?: TicketCreateNestedManyWithoutTicketGroupInput
|
22631
|
+
}
|
22632
|
+
|
22633
|
+
export type TicketGroupUncheckedCreateInput = {
|
22634
|
+
id?: string
|
22635
|
+
status: $Enums.TicketGroupStatus
|
22636
|
+
amountTickets?: number
|
22637
|
+
eventId: string
|
22638
|
+
created_at?: Date | string
|
22639
|
+
updated_at?: Date | string
|
22640
|
+
tickets?: TicketUncheckedCreateNestedManyWithoutTicketGroupInput
|
22641
|
+
}
|
22642
|
+
|
22643
|
+
export type TicketGroupUpdateInput = {
|
22644
|
+
id?: StringFieldUpdateOperationsInput | string
|
22645
|
+
status?: EnumTicketGroupStatusFieldUpdateOperationsInput | $Enums.TicketGroupStatus
|
22646
|
+
amountTickets?: IntFieldUpdateOperationsInput | number
|
22647
|
+
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
22648
|
+
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
22649
|
+
event?: EventUpdateOneRequiredWithoutTicketGroupsNestedInput
|
22650
|
+
tickets?: TicketUpdateManyWithoutTicketGroupNestedInput
|
22651
|
+
}
|
22652
|
+
|
22653
|
+
export type TicketGroupUncheckedUpdateInput = {
|
22654
|
+
id?: StringFieldUpdateOperationsInput | string
|
22655
|
+
status?: EnumTicketGroupStatusFieldUpdateOperationsInput | $Enums.TicketGroupStatus
|
22656
|
+
amountTickets?: IntFieldUpdateOperationsInput | number
|
22657
|
+
eventId?: StringFieldUpdateOperationsInput | string
|
22658
|
+
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
22659
|
+
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
22660
|
+
tickets?: TicketUncheckedUpdateManyWithoutTicketGroupNestedInput
|
22661
|
+
}
|
22662
|
+
|
22663
|
+
export type TicketGroupCreateManyInput = {
|
22664
|
+
id?: string
|
22665
|
+
status: $Enums.TicketGroupStatus
|
22666
|
+
amountTickets?: number
|
22667
|
+
eventId: string
|
22668
|
+
created_at?: Date | string
|
22669
|
+
updated_at?: Date | string
|
22670
|
+
}
|
22671
|
+
|
22672
|
+
export type TicketGroupUpdateManyMutationInput = {
|
22673
|
+
id?: StringFieldUpdateOperationsInput | string
|
22674
|
+
status?: EnumTicketGroupStatusFieldUpdateOperationsInput | $Enums.TicketGroupStatus
|
22675
|
+
amountTickets?: IntFieldUpdateOperationsInput | number
|
22676
|
+
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
22677
|
+
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
22678
|
+
}
|
22679
|
+
|
22680
|
+
export type TicketGroupUncheckedUpdateManyInput = {
|
22681
|
+
id?: StringFieldUpdateOperationsInput | string
|
22682
|
+
status?: EnumTicketGroupStatusFieldUpdateOperationsInput | $Enums.TicketGroupStatus
|
22683
|
+
amountTickets?: IntFieldUpdateOperationsInput | number
|
22684
|
+
eventId?: StringFieldUpdateOperationsInput | string
|
21319
22685
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
21320
22686
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
21321
22687
|
}
|
@@ -22067,12 +23433,22 @@ export namespace Prisma {
|
|
22067
23433
|
isNot?: TagWhereInput
|
22068
23434
|
}
|
22069
23435
|
|
23436
|
+
export type TicketGroupListRelationFilter = {
|
23437
|
+
every?: TicketGroupWhereInput
|
23438
|
+
some?: TicketGroupWhereInput
|
23439
|
+
none?: TicketGroupWhereInput
|
23440
|
+
}
|
23441
|
+
|
22070
23442
|
export type EventTicketListRelationFilter = {
|
22071
23443
|
every?: EventTicketWhereInput
|
22072
23444
|
some?: EventTicketWhereInput
|
22073
23445
|
none?: EventTicketWhereInput
|
22074
23446
|
}
|
22075
23447
|
|
23448
|
+
export type TicketGroupOrderByRelationAggregateInput = {
|
23449
|
+
_count?: SortOrder
|
23450
|
+
}
|
23451
|
+
|
22076
23452
|
export type EventTicketOrderByRelationAggregateInput = {
|
22077
23453
|
_count?: SortOrder
|
22078
23454
|
}
|
@@ -22274,24 +23650,6 @@ export namespace Prisma {
|
|
22274
23650
|
not?: NestedEnumTicketTypeFilter<$PrismaModel> | $Enums.TicketType
|
22275
23651
|
}
|
22276
23652
|
|
22277
|
-
export type EnumTicketStatusFilter<$PrismaModel = never> = {
|
22278
|
-
equals?: $Enums.TicketStatus | EnumTicketStatusFieldRefInput<$PrismaModel>
|
22279
|
-
in?: $Enums.TicketStatus[] | ListEnumTicketStatusFieldRefInput<$PrismaModel>
|
22280
|
-
notIn?: $Enums.TicketStatus[] | ListEnumTicketStatusFieldRefInput<$PrismaModel>
|
22281
|
-
not?: NestedEnumTicketStatusFilter<$PrismaModel> | $Enums.TicketStatus
|
22282
|
-
}
|
22283
|
-
|
22284
|
-
export type IntNullableFilter<$PrismaModel = never> = {
|
22285
|
-
equals?: number | IntFieldRefInput<$PrismaModel> | null
|
22286
|
-
in?: number[] | ListIntFieldRefInput<$PrismaModel> | null
|
22287
|
-
notIn?: number[] | ListIntFieldRefInput<$PrismaModel> | null
|
22288
|
-
lt?: number | IntFieldRefInput<$PrismaModel>
|
22289
|
-
lte?: number | IntFieldRefInput<$PrismaModel>
|
22290
|
-
gt?: number | IntFieldRefInput<$PrismaModel>
|
22291
|
-
gte?: number | IntFieldRefInput<$PrismaModel>
|
22292
|
-
not?: NestedIntNullableFilter<$PrismaModel> | number | null
|
22293
|
-
}
|
22294
|
-
|
22295
23653
|
export type EventScalarRelationFilter = {
|
22296
23654
|
is?: EventWhereInput
|
22297
23655
|
isNot?: EventWhereInput
|
@@ -22302,34 +23660,31 @@ export namespace Prisma {
|
|
22302
23660
|
isNot?: ProfileWhereInput | null
|
22303
23661
|
}
|
22304
23662
|
|
23663
|
+
export type TicketGroupScalarRelationFilter = {
|
23664
|
+
is?: TicketGroupWhereInput
|
23665
|
+
isNot?: TicketGroupWhereInput
|
23666
|
+
}
|
23667
|
+
|
22305
23668
|
export type TicketCountOrderByAggregateInput = {
|
22306
23669
|
id?: SortOrder
|
22307
23670
|
eventId?: SortOrder
|
22308
23671
|
type?: SortOrder
|
22309
|
-
status?: SortOrder
|
22310
23672
|
fullName?: SortOrder
|
22311
23673
|
mail?: SortOrder
|
22312
|
-
dni?: SortOrder
|
22313
|
-
seat?: SortOrder
|
22314
23674
|
profileId?: SortOrder
|
23675
|
+
ticketGroupId?: SortOrder
|
22315
23676
|
created_at?: SortOrder
|
22316
23677
|
updated_at?: SortOrder
|
22317
23678
|
}
|
22318
23679
|
|
22319
|
-
export type TicketAvgOrderByAggregateInput = {
|
22320
|
-
seat?: SortOrder
|
22321
|
-
}
|
22322
|
-
|
22323
23680
|
export type TicketMaxOrderByAggregateInput = {
|
22324
23681
|
id?: SortOrder
|
22325
23682
|
eventId?: SortOrder
|
22326
23683
|
type?: SortOrder
|
22327
|
-
status?: SortOrder
|
22328
23684
|
fullName?: SortOrder
|
22329
23685
|
mail?: SortOrder
|
22330
|
-
dni?: SortOrder
|
22331
|
-
seat?: SortOrder
|
22332
23686
|
profileId?: SortOrder
|
23687
|
+
ticketGroupId?: SortOrder
|
22333
23688
|
created_at?: SortOrder
|
22334
23689
|
updated_at?: SortOrder
|
22335
23690
|
}
|
@@ -22338,20 +23693,14 @@ export namespace Prisma {
|
|
22338
23693
|
id?: SortOrder
|
22339
23694
|
eventId?: SortOrder
|
22340
23695
|
type?: SortOrder
|
22341
|
-
status?: SortOrder
|
22342
23696
|
fullName?: SortOrder
|
22343
23697
|
mail?: SortOrder
|
22344
|
-
dni?: SortOrder
|
22345
|
-
seat?: SortOrder
|
22346
23698
|
profileId?: SortOrder
|
23699
|
+
ticketGroupId?: SortOrder
|
22347
23700
|
created_at?: SortOrder
|
22348
23701
|
updated_at?: SortOrder
|
22349
23702
|
}
|
22350
23703
|
|
22351
|
-
export type TicketSumOrderByAggregateInput = {
|
22352
|
-
seat?: SortOrder
|
22353
|
-
}
|
22354
|
-
|
22355
23704
|
export type EnumTicketTypeWithAggregatesFilter<$PrismaModel = never> = {
|
22356
23705
|
equals?: $Enums.TicketType | EnumTicketTypeFieldRefInput<$PrismaModel>
|
22357
23706
|
in?: $Enums.TicketType[] | ListEnumTicketTypeFieldRefInput<$PrismaModel>
|
@@ -22362,30 +23711,56 @@ export namespace Prisma {
|
|
22362
23711
|
_max?: NestedEnumTicketTypeFilter<$PrismaModel>
|
22363
23712
|
}
|
22364
23713
|
|
22365
|
-
export type
|
22366
|
-
equals?: $Enums.
|
22367
|
-
in?: $Enums.
|
22368
|
-
notIn?: $Enums.
|
22369
|
-
not?:
|
22370
|
-
_count?: NestedIntFilter<$PrismaModel>
|
22371
|
-
_min?: NestedEnumTicketStatusFilter<$PrismaModel>
|
22372
|
-
_max?: NestedEnumTicketStatusFilter<$PrismaModel>
|
23714
|
+
export type EnumTicketGroupStatusFilter<$PrismaModel = never> = {
|
23715
|
+
equals?: $Enums.TicketGroupStatus | EnumTicketGroupStatusFieldRefInput<$PrismaModel>
|
23716
|
+
in?: $Enums.TicketGroupStatus[] | ListEnumTicketGroupStatusFieldRefInput<$PrismaModel>
|
23717
|
+
notIn?: $Enums.TicketGroupStatus[] | ListEnumTicketGroupStatusFieldRefInput<$PrismaModel>
|
23718
|
+
not?: NestedEnumTicketGroupStatusFilter<$PrismaModel> | $Enums.TicketGroupStatus
|
22373
23719
|
}
|
22374
23720
|
|
22375
|
-
export type
|
22376
|
-
|
22377
|
-
|
22378
|
-
|
22379
|
-
|
22380
|
-
|
22381
|
-
|
22382
|
-
|
22383
|
-
|
22384
|
-
|
22385
|
-
|
22386
|
-
|
22387
|
-
|
22388
|
-
|
23721
|
+
export type TicketGroupCountOrderByAggregateInput = {
|
23722
|
+
id?: SortOrder
|
23723
|
+
status?: SortOrder
|
23724
|
+
amountTickets?: SortOrder
|
23725
|
+
eventId?: SortOrder
|
23726
|
+
created_at?: SortOrder
|
23727
|
+
updated_at?: SortOrder
|
23728
|
+
}
|
23729
|
+
|
23730
|
+
export type TicketGroupAvgOrderByAggregateInput = {
|
23731
|
+
amountTickets?: SortOrder
|
23732
|
+
}
|
23733
|
+
|
23734
|
+
export type TicketGroupMaxOrderByAggregateInput = {
|
23735
|
+
id?: SortOrder
|
23736
|
+
status?: SortOrder
|
23737
|
+
amountTickets?: SortOrder
|
23738
|
+
eventId?: SortOrder
|
23739
|
+
created_at?: SortOrder
|
23740
|
+
updated_at?: SortOrder
|
23741
|
+
}
|
23742
|
+
|
23743
|
+
export type TicketGroupMinOrderByAggregateInput = {
|
23744
|
+
id?: SortOrder
|
23745
|
+
status?: SortOrder
|
23746
|
+
amountTickets?: SortOrder
|
23747
|
+
eventId?: SortOrder
|
23748
|
+
created_at?: SortOrder
|
23749
|
+
updated_at?: SortOrder
|
23750
|
+
}
|
23751
|
+
|
23752
|
+
export type TicketGroupSumOrderByAggregateInput = {
|
23753
|
+
amountTickets?: SortOrder
|
23754
|
+
}
|
23755
|
+
|
23756
|
+
export type EnumTicketGroupStatusWithAggregatesFilter<$PrismaModel = never> = {
|
23757
|
+
equals?: $Enums.TicketGroupStatus | EnumTicketGroupStatusFieldRefInput<$PrismaModel>
|
23758
|
+
in?: $Enums.TicketGroupStatus[] | ListEnumTicketGroupStatusFieldRefInput<$PrismaModel>
|
23759
|
+
notIn?: $Enums.TicketGroupStatus[] | ListEnumTicketGroupStatusFieldRefInput<$PrismaModel>
|
23760
|
+
not?: NestedEnumTicketGroupStatusWithAggregatesFilter<$PrismaModel> | $Enums.TicketGroupStatus
|
23761
|
+
_count?: NestedIntFilter<$PrismaModel>
|
23762
|
+
_min?: NestedEnumTicketGroupStatusFilter<$PrismaModel>
|
23763
|
+
_max?: NestedEnumTicketGroupStatusFilter<$PrismaModel>
|
22389
23764
|
}
|
22390
23765
|
|
22391
23766
|
export type EnumTemplateStatusFilter<$PrismaModel = never> = {
|
@@ -22440,6 +23815,17 @@ export namespace Prisma {
|
|
22440
23815
|
_max?: NestedEnumTemplateCategoryFilter<$PrismaModel>
|
22441
23816
|
}
|
22442
23817
|
|
23818
|
+
export type IntNullableFilter<$PrismaModel = never> = {
|
23819
|
+
equals?: number | IntFieldRefInput<$PrismaModel> | null
|
23820
|
+
in?: number[] | ListIntFieldRefInput<$PrismaModel> | null
|
23821
|
+
notIn?: number[] | ListIntFieldRefInput<$PrismaModel> | null
|
23822
|
+
lt?: number | IntFieldRefInput<$PrismaModel>
|
23823
|
+
lte?: number | IntFieldRefInput<$PrismaModel>
|
23824
|
+
gt?: number | IntFieldRefInput<$PrismaModel>
|
23825
|
+
gte?: number | IntFieldRefInput<$PrismaModel>
|
23826
|
+
not?: NestedIntNullableFilter<$PrismaModel> | number | null
|
23827
|
+
}
|
23828
|
+
|
22443
23829
|
export type FloatNullableFilter<$PrismaModel = never> = {
|
22444
23830
|
equals?: number | FloatFieldRefInput<$PrismaModel> | null
|
22445
23831
|
in?: number[] | ListFloatFieldRefInput<$PrismaModel> | null
|
@@ -22491,6 +23877,22 @@ export namespace Prisma {
|
|
22491
23877
|
price?: SortOrder
|
22492
23878
|
}
|
22493
23879
|
|
23880
|
+
export type IntNullableWithAggregatesFilter<$PrismaModel = never> = {
|
23881
|
+
equals?: number | IntFieldRefInput<$PrismaModel> | null
|
23882
|
+
in?: number[] | ListIntFieldRefInput<$PrismaModel> | null
|
23883
|
+
notIn?: number[] | ListIntFieldRefInput<$PrismaModel> | null
|
23884
|
+
lt?: number | IntFieldRefInput<$PrismaModel>
|
23885
|
+
lte?: number | IntFieldRefInput<$PrismaModel>
|
23886
|
+
gt?: number | IntFieldRefInput<$PrismaModel>
|
23887
|
+
gte?: number | IntFieldRefInput<$PrismaModel>
|
23888
|
+
not?: NestedIntNullableWithAggregatesFilter<$PrismaModel> | number | null
|
23889
|
+
_count?: NestedIntNullableFilter<$PrismaModel>
|
23890
|
+
_avg?: NestedFloatNullableFilter<$PrismaModel>
|
23891
|
+
_sum?: NestedIntNullableFilter<$PrismaModel>
|
23892
|
+
_min?: NestedIntNullableFilter<$PrismaModel>
|
23893
|
+
_max?: NestedIntNullableFilter<$PrismaModel>
|
23894
|
+
}
|
23895
|
+
|
22494
23896
|
export type FloatNullableWithAggregatesFilter<$PrismaModel = never> = {
|
22495
23897
|
equals?: number | FloatFieldRefInput<$PrismaModel> | null
|
22496
23898
|
in?: number[] | ListFloatFieldRefInput<$PrismaModel> | null
|
@@ -23412,6 +24814,13 @@ export namespace Prisma {
|
|
23412
24814
|
connect?: TicketWhereUniqueInput | TicketWhereUniqueInput[]
|
23413
24815
|
}
|
23414
24816
|
|
24817
|
+
export type TicketGroupCreateNestedManyWithoutEventInput = {
|
24818
|
+
create?: XOR<TicketGroupCreateWithoutEventInput, TicketGroupUncheckedCreateWithoutEventInput> | TicketGroupCreateWithoutEventInput[] | TicketGroupUncheckedCreateWithoutEventInput[]
|
24819
|
+
connectOrCreate?: TicketGroupCreateOrConnectWithoutEventInput | TicketGroupCreateOrConnectWithoutEventInput[]
|
24820
|
+
createMany?: TicketGroupCreateManyEventInputEnvelope
|
24821
|
+
connect?: TicketGroupWhereUniqueInput | TicketGroupWhereUniqueInput[]
|
24822
|
+
}
|
24823
|
+
|
23415
24824
|
export type EventCreateNestedManyWithoutSupraEventInput = {
|
23416
24825
|
create?: XOR<EventCreateWithoutSupraEventInput, EventUncheckedCreateWithoutSupraEventInput> | EventCreateWithoutSupraEventInput[] | EventUncheckedCreateWithoutSupraEventInput[]
|
23417
24826
|
connectOrCreate?: EventCreateOrConnectWithoutSupraEventInput | EventCreateOrConnectWithoutSupraEventInput[]
|
@@ -23439,6 +24848,13 @@ export namespace Prisma {
|
|
23439
24848
|
connect?: TicketWhereUniqueInput | TicketWhereUniqueInput[]
|
23440
24849
|
}
|
23441
24850
|
|
24851
|
+
export type TicketGroupUncheckedCreateNestedManyWithoutEventInput = {
|
24852
|
+
create?: XOR<TicketGroupCreateWithoutEventInput, TicketGroupUncheckedCreateWithoutEventInput> | TicketGroupCreateWithoutEventInput[] | TicketGroupUncheckedCreateWithoutEventInput[]
|
24853
|
+
connectOrCreate?: TicketGroupCreateOrConnectWithoutEventInput | TicketGroupCreateOrConnectWithoutEventInput[]
|
24854
|
+
createMany?: TicketGroupCreateManyEventInputEnvelope
|
24855
|
+
connect?: TicketGroupWhereUniqueInput | TicketGroupWhereUniqueInput[]
|
24856
|
+
}
|
24857
|
+
|
23442
24858
|
export type EventUncheckedCreateNestedManyWithoutSupraEventInput = {
|
23443
24859
|
create?: XOR<EventCreateWithoutSupraEventInput, EventUncheckedCreateWithoutSupraEventInput> | EventCreateWithoutSupraEventInput[] | EventUncheckedCreateWithoutSupraEventInput[]
|
23444
24860
|
connectOrCreate?: EventCreateOrConnectWithoutSupraEventInput | EventCreateOrConnectWithoutSupraEventInput[]
|
@@ -23509,6 +24925,20 @@ export namespace Prisma {
|
|
23509
24925
|
deleteMany?: TicketScalarWhereInput | TicketScalarWhereInput[]
|
23510
24926
|
}
|
23511
24927
|
|
24928
|
+
export type TicketGroupUpdateManyWithoutEventNestedInput = {
|
24929
|
+
create?: XOR<TicketGroupCreateWithoutEventInput, TicketGroupUncheckedCreateWithoutEventInput> | TicketGroupCreateWithoutEventInput[] | TicketGroupUncheckedCreateWithoutEventInput[]
|
24930
|
+
connectOrCreate?: TicketGroupCreateOrConnectWithoutEventInput | TicketGroupCreateOrConnectWithoutEventInput[]
|
24931
|
+
upsert?: TicketGroupUpsertWithWhereUniqueWithoutEventInput | TicketGroupUpsertWithWhereUniqueWithoutEventInput[]
|
24932
|
+
createMany?: TicketGroupCreateManyEventInputEnvelope
|
24933
|
+
set?: TicketGroupWhereUniqueInput | TicketGroupWhereUniqueInput[]
|
24934
|
+
disconnect?: TicketGroupWhereUniqueInput | TicketGroupWhereUniqueInput[]
|
24935
|
+
delete?: TicketGroupWhereUniqueInput | TicketGroupWhereUniqueInput[]
|
24936
|
+
connect?: TicketGroupWhereUniqueInput | TicketGroupWhereUniqueInput[]
|
24937
|
+
update?: TicketGroupUpdateWithWhereUniqueWithoutEventInput | TicketGroupUpdateWithWhereUniqueWithoutEventInput[]
|
24938
|
+
updateMany?: TicketGroupUpdateManyWithWhereWithoutEventInput | TicketGroupUpdateManyWithWhereWithoutEventInput[]
|
24939
|
+
deleteMany?: TicketGroupScalarWhereInput | TicketGroupScalarWhereInput[]
|
24940
|
+
}
|
24941
|
+
|
23512
24942
|
export type EventUpdateManyWithoutSupraEventNestedInput = {
|
23513
24943
|
create?: XOR<EventCreateWithoutSupraEventInput, EventUncheckedCreateWithoutSupraEventInput> | EventCreateWithoutSupraEventInput[] | EventUncheckedCreateWithoutSupraEventInput[]
|
23514
24944
|
connectOrCreate?: EventCreateOrConnectWithoutSupraEventInput | EventCreateOrConnectWithoutSupraEventInput[]
|
@@ -23564,6 +24994,20 @@ export namespace Prisma {
|
|
23564
24994
|
deleteMany?: TicketScalarWhereInput | TicketScalarWhereInput[]
|
23565
24995
|
}
|
23566
24996
|
|
24997
|
+
export type TicketGroupUncheckedUpdateManyWithoutEventNestedInput = {
|
24998
|
+
create?: XOR<TicketGroupCreateWithoutEventInput, TicketGroupUncheckedCreateWithoutEventInput> | TicketGroupCreateWithoutEventInput[] | TicketGroupUncheckedCreateWithoutEventInput[]
|
24999
|
+
connectOrCreate?: TicketGroupCreateOrConnectWithoutEventInput | TicketGroupCreateOrConnectWithoutEventInput[]
|
25000
|
+
upsert?: TicketGroupUpsertWithWhereUniqueWithoutEventInput | TicketGroupUpsertWithWhereUniqueWithoutEventInput[]
|
25001
|
+
createMany?: TicketGroupCreateManyEventInputEnvelope
|
25002
|
+
set?: TicketGroupWhereUniqueInput | TicketGroupWhereUniqueInput[]
|
25003
|
+
disconnect?: TicketGroupWhereUniqueInput | TicketGroupWhereUniqueInput[]
|
25004
|
+
delete?: TicketGroupWhereUniqueInput | TicketGroupWhereUniqueInput[]
|
25005
|
+
connect?: TicketGroupWhereUniqueInput | TicketGroupWhereUniqueInput[]
|
25006
|
+
update?: TicketGroupUpdateWithWhereUniqueWithoutEventInput | TicketGroupUpdateWithWhereUniqueWithoutEventInput[]
|
25007
|
+
updateMany?: TicketGroupUpdateManyWithWhereWithoutEventInput | TicketGroupUpdateManyWithWhereWithoutEventInput[]
|
25008
|
+
deleteMany?: TicketGroupScalarWhereInput | TicketGroupScalarWhereInput[]
|
25009
|
+
}
|
25010
|
+
|
23567
25011
|
export type EventUncheckedUpdateManyWithoutSupraEventNestedInput = {
|
23568
25012
|
create?: XOR<EventCreateWithoutSupraEventInput, EventUncheckedCreateWithoutSupraEventInput> | EventCreateWithoutSupraEventInput[] | EventUncheckedCreateWithoutSupraEventInput[]
|
23569
25013
|
connectOrCreate?: EventCreateOrConnectWithoutSupraEventInput | EventCreateOrConnectWithoutSupraEventInput[]
|
@@ -23677,20 +25121,14 @@ export namespace Prisma {
|
|
23677
25121
|
connect?: ProfileWhereUniqueInput
|
23678
25122
|
}
|
23679
25123
|
|
23680
|
-
export type
|
23681
|
-
|
23682
|
-
|
23683
|
-
|
23684
|
-
export type EnumTicketStatusFieldUpdateOperationsInput = {
|
23685
|
-
set?: $Enums.TicketStatus
|
25124
|
+
export type TicketGroupCreateNestedOneWithoutTicketsInput = {
|
25125
|
+
create?: XOR<TicketGroupCreateWithoutTicketsInput, TicketGroupUncheckedCreateWithoutTicketsInput>
|
25126
|
+
connectOrCreate?: TicketGroupCreateOrConnectWithoutTicketsInput
|
25127
|
+
connect?: TicketGroupWhereUniqueInput
|
23686
25128
|
}
|
23687
25129
|
|
23688
|
-
export type
|
23689
|
-
set?:
|
23690
|
-
increment?: number
|
23691
|
-
decrement?: number
|
23692
|
-
multiply?: number
|
23693
|
-
divide?: number
|
25130
|
+
export type EnumTicketTypeFieldUpdateOperationsInput = {
|
25131
|
+
set?: $Enums.TicketType
|
23694
25132
|
}
|
23695
25133
|
|
23696
25134
|
export type EventUpdateOneRequiredWithoutTicketsNestedInput = {
|
@@ -23711,6 +25149,74 @@ export namespace Prisma {
|
|
23711
25149
|
update?: XOR<XOR<ProfileUpdateToOneWithWhereWithoutTicketInput, ProfileUpdateWithoutTicketInput>, ProfileUncheckedUpdateWithoutTicketInput>
|
23712
25150
|
}
|
23713
25151
|
|
25152
|
+
export type TicketGroupUpdateOneRequiredWithoutTicketsNestedInput = {
|
25153
|
+
create?: XOR<TicketGroupCreateWithoutTicketsInput, TicketGroupUncheckedCreateWithoutTicketsInput>
|
25154
|
+
connectOrCreate?: TicketGroupCreateOrConnectWithoutTicketsInput
|
25155
|
+
upsert?: TicketGroupUpsertWithoutTicketsInput
|
25156
|
+
connect?: TicketGroupWhereUniqueInput
|
25157
|
+
update?: XOR<XOR<TicketGroupUpdateToOneWithWhereWithoutTicketsInput, TicketGroupUpdateWithoutTicketsInput>, TicketGroupUncheckedUpdateWithoutTicketsInput>
|
25158
|
+
}
|
25159
|
+
|
25160
|
+
export type EventCreateNestedOneWithoutTicketGroupsInput = {
|
25161
|
+
create?: XOR<EventCreateWithoutTicketGroupsInput, EventUncheckedCreateWithoutTicketGroupsInput>
|
25162
|
+
connectOrCreate?: EventCreateOrConnectWithoutTicketGroupsInput
|
25163
|
+
connect?: EventWhereUniqueInput
|
25164
|
+
}
|
25165
|
+
|
25166
|
+
export type TicketCreateNestedManyWithoutTicketGroupInput = {
|
25167
|
+
create?: XOR<TicketCreateWithoutTicketGroupInput, TicketUncheckedCreateWithoutTicketGroupInput> | TicketCreateWithoutTicketGroupInput[] | TicketUncheckedCreateWithoutTicketGroupInput[]
|
25168
|
+
connectOrCreate?: TicketCreateOrConnectWithoutTicketGroupInput | TicketCreateOrConnectWithoutTicketGroupInput[]
|
25169
|
+
createMany?: TicketCreateManyTicketGroupInputEnvelope
|
25170
|
+
connect?: TicketWhereUniqueInput | TicketWhereUniqueInput[]
|
25171
|
+
}
|
25172
|
+
|
25173
|
+
export type TicketUncheckedCreateNestedManyWithoutTicketGroupInput = {
|
25174
|
+
create?: XOR<TicketCreateWithoutTicketGroupInput, TicketUncheckedCreateWithoutTicketGroupInput> | TicketCreateWithoutTicketGroupInput[] | TicketUncheckedCreateWithoutTicketGroupInput[]
|
25175
|
+
connectOrCreate?: TicketCreateOrConnectWithoutTicketGroupInput | TicketCreateOrConnectWithoutTicketGroupInput[]
|
25176
|
+
createMany?: TicketCreateManyTicketGroupInputEnvelope
|
25177
|
+
connect?: TicketWhereUniqueInput | TicketWhereUniqueInput[]
|
25178
|
+
}
|
25179
|
+
|
25180
|
+
export type EnumTicketGroupStatusFieldUpdateOperationsInput = {
|
25181
|
+
set?: $Enums.TicketGroupStatus
|
25182
|
+
}
|
25183
|
+
|
25184
|
+
export type EventUpdateOneRequiredWithoutTicketGroupsNestedInput = {
|
25185
|
+
create?: XOR<EventCreateWithoutTicketGroupsInput, EventUncheckedCreateWithoutTicketGroupsInput>
|
25186
|
+
connectOrCreate?: EventCreateOrConnectWithoutTicketGroupsInput
|
25187
|
+
upsert?: EventUpsertWithoutTicketGroupsInput
|
25188
|
+
connect?: EventWhereUniqueInput
|
25189
|
+
update?: XOR<XOR<EventUpdateToOneWithWhereWithoutTicketGroupsInput, EventUpdateWithoutTicketGroupsInput>, EventUncheckedUpdateWithoutTicketGroupsInput>
|
25190
|
+
}
|
25191
|
+
|
25192
|
+
export type TicketUpdateManyWithoutTicketGroupNestedInput = {
|
25193
|
+
create?: XOR<TicketCreateWithoutTicketGroupInput, TicketUncheckedCreateWithoutTicketGroupInput> | TicketCreateWithoutTicketGroupInput[] | TicketUncheckedCreateWithoutTicketGroupInput[]
|
25194
|
+
connectOrCreate?: TicketCreateOrConnectWithoutTicketGroupInput | TicketCreateOrConnectWithoutTicketGroupInput[]
|
25195
|
+
upsert?: TicketUpsertWithWhereUniqueWithoutTicketGroupInput | TicketUpsertWithWhereUniqueWithoutTicketGroupInput[]
|
25196
|
+
createMany?: TicketCreateManyTicketGroupInputEnvelope
|
25197
|
+
set?: TicketWhereUniqueInput | TicketWhereUniqueInput[]
|
25198
|
+
disconnect?: TicketWhereUniqueInput | TicketWhereUniqueInput[]
|
25199
|
+
delete?: TicketWhereUniqueInput | TicketWhereUniqueInput[]
|
25200
|
+
connect?: TicketWhereUniqueInput | TicketWhereUniqueInput[]
|
25201
|
+
update?: TicketUpdateWithWhereUniqueWithoutTicketGroupInput | TicketUpdateWithWhereUniqueWithoutTicketGroupInput[]
|
25202
|
+
updateMany?: TicketUpdateManyWithWhereWithoutTicketGroupInput | TicketUpdateManyWithWhereWithoutTicketGroupInput[]
|
25203
|
+
deleteMany?: TicketScalarWhereInput | TicketScalarWhereInput[]
|
25204
|
+
}
|
25205
|
+
|
25206
|
+
export type TicketUncheckedUpdateManyWithoutTicketGroupNestedInput = {
|
25207
|
+
create?: XOR<TicketCreateWithoutTicketGroupInput, TicketUncheckedCreateWithoutTicketGroupInput> | TicketCreateWithoutTicketGroupInput[] | TicketUncheckedCreateWithoutTicketGroupInput[]
|
25208
|
+
connectOrCreate?: TicketCreateOrConnectWithoutTicketGroupInput | TicketCreateOrConnectWithoutTicketGroupInput[]
|
25209
|
+
upsert?: TicketUpsertWithWhereUniqueWithoutTicketGroupInput | TicketUpsertWithWhereUniqueWithoutTicketGroupInput[]
|
25210
|
+
createMany?: TicketCreateManyTicketGroupInputEnvelope
|
25211
|
+
set?: TicketWhereUniqueInput | TicketWhereUniqueInput[]
|
25212
|
+
disconnect?: TicketWhereUniqueInput | TicketWhereUniqueInput[]
|
25213
|
+
delete?: TicketWhereUniqueInput | TicketWhereUniqueInput[]
|
25214
|
+
connect?: TicketWhereUniqueInput | TicketWhereUniqueInput[]
|
25215
|
+
update?: TicketUpdateWithWhereUniqueWithoutTicketGroupInput | TicketUpdateWithWhereUniqueWithoutTicketGroupInput[]
|
25216
|
+
updateMany?: TicketUpdateManyWithWhereWithoutTicketGroupInput | TicketUpdateManyWithWhereWithoutTicketGroupInput[]
|
25217
|
+
deleteMany?: TicketScalarWhereInput | TicketScalarWhereInput[]
|
25218
|
+
}
|
25219
|
+
|
23714
25220
|
export type EnumTemplateStatusFieldUpdateOperationsInput = {
|
23715
25221
|
set?: $Enums.TemplateStatus
|
23716
25222
|
}
|
@@ -23725,6 +25231,14 @@ export namespace Prisma {
|
|
23725
25231
|
connect?: EventWhereUniqueInput
|
23726
25232
|
}
|
23727
25233
|
|
25234
|
+
export type NullableIntFieldUpdateOperationsInput = {
|
25235
|
+
set?: number | null
|
25236
|
+
increment?: number
|
25237
|
+
decrement?: number
|
25238
|
+
multiply?: number
|
25239
|
+
divide?: number
|
25240
|
+
}
|
25241
|
+
|
23728
25242
|
export type NullableFloatFieldUpdateOperationsInput = {
|
23729
25243
|
set?: number | null
|
23730
25244
|
increment?: number
|
@@ -24012,13 +25526,6 @@ export namespace Prisma {
|
|
24012
25526
|
not?: NestedEnumTicketTypeFilter<$PrismaModel> | $Enums.TicketType
|
24013
25527
|
}
|
24014
25528
|
|
24015
|
-
export type NestedEnumTicketStatusFilter<$PrismaModel = never> = {
|
24016
|
-
equals?: $Enums.TicketStatus | EnumTicketStatusFieldRefInput<$PrismaModel>
|
24017
|
-
in?: $Enums.TicketStatus[] | ListEnumTicketStatusFieldRefInput<$PrismaModel>
|
24018
|
-
notIn?: $Enums.TicketStatus[] | ListEnumTicketStatusFieldRefInput<$PrismaModel>
|
24019
|
-
not?: NestedEnumTicketStatusFilter<$PrismaModel> | $Enums.TicketStatus
|
24020
|
-
}
|
24021
|
-
|
24022
25529
|
export type NestedEnumTicketTypeWithAggregatesFilter<$PrismaModel = never> = {
|
24023
25530
|
equals?: $Enums.TicketType | EnumTicketTypeFieldRefInput<$PrismaModel>
|
24024
25531
|
in?: $Enums.TicketType[] | ListEnumTicketTypeFieldRefInput<$PrismaModel>
|
@@ -24029,41 +25536,21 @@ export namespace Prisma {
|
|
24029
25536
|
_max?: NestedEnumTicketTypeFilter<$PrismaModel>
|
24030
25537
|
}
|
24031
25538
|
|
24032
|
-
export type
|
24033
|
-
equals?: $Enums.
|
24034
|
-
in?: $Enums.
|
24035
|
-
notIn?: $Enums.
|
24036
|
-
not?:
|
24037
|
-
_count?: NestedIntFilter<$PrismaModel>
|
24038
|
-
_min?: NestedEnumTicketStatusFilter<$PrismaModel>
|
24039
|
-
_max?: NestedEnumTicketStatusFilter<$PrismaModel>
|
24040
|
-
}
|
24041
|
-
|
24042
|
-
export type NestedIntNullableWithAggregatesFilter<$PrismaModel = never> = {
|
24043
|
-
equals?: number | IntFieldRefInput<$PrismaModel> | null
|
24044
|
-
in?: number[] | ListIntFieldRefInput<$PrismaModel> | null
|
24045
|
-
notIn?: number[] | ListIntFieldRefInput<$PrismaModel> | null
|
24046
|
-
lt?: number | IntFieldRefInput<$PrismaModel>
|
24047
|
-
lte?: number | IntFieldRefInput<$PrismaModel>
|
24048
|
-
gt?: number | IntFieldRefInput<$PrismaModel>
|
24049
|
-
gte?: number | IntFieldRefInput<$PrismaModel>
|
24050
|
-
not?: NestedIntNullableWithAggregatesFilter<$PrismaModel> | number | null
|
24051
|
-
_count?: NestedIntNullableFilter<$PrismaModel>
|
24052
|
-
_avg?: NestedFloatNullableFilter<$PrismaModel>
|
24053
|
-
_sum?: NestedIntNullableFilter<$PrismaModel>
|
24054
|
-
_min?: NestedIntNullableFilter<$PrismaModel>
|
24055
|
-
_max?: NestedIntNullableFilter<$PrismaModel>
|
25539
|
+
export type NestedEnumTicketGroupStatusFilter<$PrismaModel = never> = {
|
25540
|
+
equals?: $Enums.TicketGroupStatus | EnumTicketGroupStatusFieldRefInput<$PrismaModel>
|
25541
|
+
in?: $Enums.TicketGroupStatus[] | ListEnumTicketGroupStatusFieldRefInput<$PrismaModel>
|
25542
|
+
notIn?: $Enums.TicketGroupStatus[] | ListEnumTicketGroupStatusFieldRefInput<$PrismaModel>
|
25543
|
+
not?: NestedEnumTicketGroupStatusFilter<$PrismaModel> | $Enums.TicketGroupStatus
|
24056
25544
|
}
|
24057
25545
|
|
24058
|
-
export type
|
24059
|
-
equals?:
|
24060
|
-
in?:
|
24061
|
-
notIn?:
|
24062
|
-
|
24063
|
-
|
24064
|
-
|
24065
|
-
|
24066
|
-
not?: NestedFloatNullableFilter<$PrismaModel> | number | null
|
25546
|
+
export type NestedEnumTicketGroupStatusWithAggregatesFilter<$PrismaModel = never> = {
|
25547
|
+
equals?: $Enums.TicketGroupStatus | EnumTicketGroupStatusFieldRefInput<$PrismaModel>
|
25548
|
+
in?: $Enums.TicketGroupStatus[] | ListEnumTicketGroupStatusFieldRefInput<$PrismaModel>
|
25549
|
+
notIn?: $Enums.TicketGroupStatus[] | ListEnumTicketGroupStatusFieldRefInput<$PrismaModel>
|
25550
|
+
not?: NestedEnumTicketGroupStatusWithAggregatesFilter<$PrismaModel> | $Enums.TicketGroupStatus
|
25551
|
+
_count?: NestedIntFilter<$PrismaModel>
|
25552
|
+
_min?: NestedEnumTicketGroupStatusFilter<$PrismaModel>
|
25553
|
+
_max?: NestedEnumTicketGroupStatusFilter<$PrismaModel>
|
24067
25554
|
}
|
24068
25555
|
|
24069
25556
|
export type NestedEnumTemplateStatusFilter<$PrismaModel = never> = {
|
@@ -24090,14 +25577,41 @@ export namespace Prisma {
|
|
24090
25577
|
_max?: NestedEnumTemplateStatusFilter<$PrismaModel>
|
24091
25578
|
}
|
24092
25579
|
|
24093
|
-
export type NestedEnumTemplateCategoryWithAggregatesFilter<$PrismaModel = never> = {
|
24094
|
-
equals?: $Enums.TemplateCategory | EnumTemplateCategoryFieldRefInput<$PrismaModel>
|
24095
|
-
in?: $Enums.TemplateCategory[] | ListEnumTemplateCategoryFieldRefInput<$PrismaModel>
|
24096
|
-
notIn?: $Enums.TemplateCategory[] | ListEnumTemplateCategoryFieldRefInput<$PrismaModel>
|
24097
|
-
not?: NestedEnumTemplateCategoryWithAggregatesFilter<$PrismaModel> | $Enums.TemplateCategory
|
24098
|
-
_count?: NestedIntFilter<$PrismaModel>
|
24099
|
-
_min?: NestedEnumTemplateCategoryFilter<$PrismaModel>
|
24100
|
-
_max?: NestedEnumTemplateCategoryFilter<$PrismaModel>
|
25580
|
+
export type NestedEnumTemplateCategoryWithAggregatesFilter<$PrismaModel = never> = {
|
25581
|
+
equals?: $Enums.TemplateCategory | EnumTemplateCategoryFieldRefInput<$PrismaModel>
|
25582
|
+
in?: $Enums.TemplateCategory[] | ListEnumTemplateCategoryFieldRefInput<$PrismaModel>
|
25583
|
+
notIn?: $Enums.TemplateCategory[] | ListEnumTemplateCategoryFieldRefInput<$PrismaModel>
|
25584
|
+
not?: NestedEnumTemplateCategoryWithAggregatesFilter<$PrismaModel> | $Enums.TemplateCategory
|
25585
|
+
_count?: NestedIntFilter<$PrismaModel>
|
25586
|
+
_min?: NestedEnumTemplateCategoryFilter<$PrismaModel>
|
25587
|
+
_max?: NestedEnumTemplateCategoryFilter<$PrismaModel>
|
25588
|
+
}
|
25589
|
+
|
25590
|
+
export type NestedFloatNullableFilter<$PrismaModel = never> = {
|
25591
|
+
equals?: number | FloatFieldRefInput<$PrismaModel> | null
|
25592
|
+
in?: number[] | ListFloatFieldRefInput<$PrismaModel> | null
|
25593
|
+
notIn?: number[] | ListFloatFieldRefInput<$PrismaModel> | null
|
25594
|
+
lt?: number | FloatFieldRefInput<$PrismaModel>
|
25595
|
+
lte?: number | FloatFieldRefInput<$PrismaModel>
|
25596
|
+
gt?: number | FloatFieldRefInput<$PrismaModel>
|
25597
|
+
gte?: number | FloatFieldRefInput<$PrismaModel>
|
25598
|
+
not?: NestedFloatNullableFilter<$PrismaModel> | number | null
|
25599
|
+
}
|
25600
|
+
|
25601
|
+
export type NestedIntNullableWithAggregatesFilter<$PrismaModel = never> = {
|
25602
|
+
equals?: number | IntFieldRefInput<$PrismaModel> | null
|
25603
|
+
in?: number[] | ListIntFieldRefInput<$PrismaModel> | null
|
25604
|
+
notIn?: number[] | ListIntFieldRefInput<$PrismaModel> | null
|
25605
|
+
lt?: number | IntFieldRefInput<$PrismaModel>
|
25606
|
+
lte?: number | IntFieldRefInput<$PrismaModel>
|
25607
|
+
gt?: number | IntFieldRefInput<$PrismaModel>
|
25608
|
+
gte?: number | IntFieldRefInput<$PrismaModel>
|
25609
|
+
not?: NestedIntNullableWithAggregatesFilter<$PrismaModel> | number | null
|
25610
|
+
_count?: NestedIntNullableFilter<$PrismaModel>
|
25611
|
+
_avg?: NestedFloatNullableFilter<$PrismaModel>
|
25612
|
+
_sum?: NestedIntNullableFilter<$PrismaModel>
|
25613
|
+
_min?: NestedIntNullableFilter<$PrismaModel>
|
25614
|
+
_max?: NestedIntNullableFilter<$PrismaModel>
|
24101
25615
|
}
|
24102
25616
|
|
24103
25617
|
export type NestedFloatNullableWithAggregatesFilter<$PrismaModel = never> = {
|
@@ -24524,25 +26038,21 @@ export namespace Prisma {
|
|
24524
26038
|
export type TicketCreateWithoutProfileInput = {
|
24525
26039
|
id?: string
|
24526
26040
|
type: $Enums.TicketType
|
24527
|
-
status: $Enums.TicketStatus
|
24528
26041
|
fullName: string
|
24529
26042
|
mail: string
|
24530
|
-
dni: string
|
24531
|
-
seat?: number | null
|
24532
26043
|
created_at?: Date | string
|
24533
26044
|
updated_at?: Date | string
|
24534
26045
|
event: EventCreateNestedOneWithoutTicketsInput
|
26046
|
+
ticketGroup: TicketGroupCreateNestedOneWithoutTicketsInput
|
24535
26047
|
}
|
24536
26048
|
|
24537
26049
|
export type TicketUncheckedCreateWithoutProfileInput = {
|
24538
26050
|
id?: string
|
24539
26051
|
eventId: string
|
24540
26052
|
type: $Enums.TicketType
|
24541
|
-
status: $Enums.TicketStatus
|
24542
26053
|
fullName: string
|
24543
26054
|
mail: string
|
24544
|
-
|
24545
|
-
seat?: number | null
|
26055
|
+
ticketGroupId: string
|
24546
26056
|
created_at?: Date | string
|
24547
26057
|
updated_at?: Date | string
|
24548
26058
|
}
|
@@ -24739,12 +26249,10 @@ export namespace Prisma {
|
|
24739
26249
|
id?: StringFilter<"Ticket"> | string
|
24740
26250
|
eventId?: StringFilter<"Ticket"> | string
|
24741
26251
|
type?: EnumTicketTypeFilter<"Ticket"> | $Enums.TicketType
|
24742
|
-
status?: EnumTicketStatusFilter<"Ticket"> | $Enums.TicketStatus
|
24743
26252
|
fullName?: StringFilter<"Ticket"> | string
|
24744
26253
|
mail?: StringFilter<"Ticket"> | string
|
24745
|
-
dni?: StringFilter<"Ticket"> | string
|
24746
|
-
seat?: IntNullableFilter<"Ticket"> | number | null
|
24747
26254
|
profileId?: StringNullableFilter<"Ticket"> | string | null
|
26255
|
+
ticketGroupId?: StringFilter<"Ticket"> | string
|
24748
26256
|
created_at?: DateTimeFilter<"Ticket"> | Date | string
|
24749
26257
|
updated_at?: DateTimeFilter<"Ticket"> | Date | string
|
24750
26258
|
}
|
@@ -25416,6 +26924,7 @@ export namespace Prisma {
|
|
25416
26924
|
tagConfirmed: TagCreateNestedOneWithoutConfirmedEventInput
|
25417
26925
|
supraEvent?: EventCreateNestedOneWithoutSubEventsInput
|
25418
26926
|
tickets?: TicketCreateNestedManyWithoutEventInput
|
26927
|
+
ticketGroups?: TicketGroupCreateNestedManyWithoutEventInput
|
25419
26928
|
subEvents?: EventCreateNestedManyWithoutSupraEventInput
|
25420
26929
|
tags?: TagCreateNestedManyWithoutEventInput
|
25421
26930
|
eventTickets?: EventTicketCreateNestedManyWithoutEventInput
|
@@ -25435,6 +26944,7 @@ export namespace Prisma {
|
|
25435
26944
|
created_at?: Date | string
|
25436
26945
|
updated_at?: Date | string
|
25437
26946
|
tickets?: TicketUncheckedCreateNestedManyWithoutEventInput
|
26947
|
+
ticketGroups?: TicketGroupUncheckedCreateNestedManyWithoutEventInput
|
25438
26948
|
subEvents?: EventUncheckedCreateNestedManyWithoutSupraEventInput
|
25439
26949
|
tags?: TagUncheckedCreateNestedManyWithoutEventInput
|
25440
26950
|
eventTickets?: EventTicketUncheckedCreateNestedManyWithoutEventInput
|
@@ -25459,6 +26969,7 @@ export namespace Prisma {
|
|
25459
26969
|
tagAssisted: TagCreateNestedOneWithoutAssistedEventInput
|
25460
26970
|
supraEvent?: EventCreateNestedOneWithoutSubEventsInput
|
25461
26971
|
tickets?: TicketCreateNestedManyWithoutEventInput
|
26972
|
+
ticketGroups?: TicketGroupCreateNestedManyWithoutEventInput
|
25462
26973
|
subEvents?: EventCreateNestedManyWithoutSupraEventInput
|
25463
26974
|
tags?: TagCreateNestedManyWithoutEventInput
|
25464
26975
|
eventTickets?: EventTicketCreateNestedManyWithoutEventInput
|
@@ -25478,6 +26989,7 @@ export namespace Prisma {
|
|
25478
26989
|
created_at?: Date | string
|
25479
26990
|
updated_at?: Date | string
|
25480
26991
|
tickets?: TicketUncheckedCreateNestedManyWithoutEventInput
|
26992
|
+
ticketGroups?: TicketGroupUncheckedCreateNestedManyWithoutEventInput
|
25481
26993
|
subEvents?: EventUncheckedCreateNestedManyWithoutSupraEventInput
|
25482
26994
|
tags?: TagUncheckedCreateNestedManyWithoutEventInput
|
25483
26995
|
eventTickets?: EventTicketUncheckedCreateNestedManyWithoutEventInput
|
@@ -25636,6 +27148,7 @@ export namespace Prisma {
|
|
25636
27148
|
tagConfirmed: TagCreateNestedOneWithoutConfirmedEventInput
|
25637
27149
|
supraEvent?: EventCreateNestedOneWithoutSubEventsInput
|
25638
27150
|
tickets?: TicketCreateNestedManyWithoutEventInput
|
27151
|
+
ticketGroups?: TicketGroupCreateNestedManyWithoutEventInput
|
25639
27152
|
subEvents?: EventCreateNestedManyWithoutSupraEventInput
|
25640
27153
|
eventTickets?: EventTicketCreateNestedManyWithoutEventInput
|
25641
27154
|
}
|
@@ -25655,6 +27168,7 @@ export namespace Prisma {
|
|
25655
27168
|
created_at?: Date | string
|
25656
27169
|
updated_at?: Date | string
|
25657
27170
|
tickets?: TicketUncheckedCreateNestedManyWithoutEventInput
|
27171
|
+
ticketGroups?: TicketGroupUncheckedCreateNestedManyWithoutEventInput
|
25658
27172
|
subEvents?: EventUncheckedCreateNestedManyWithoutSupraEventInput
|
25659
27173
|
eventTickets?: EventTicketUncheckedCreateNestedManyWithoutEventInput
|
25660
27174
|
}
|
@@ -25718,6 +27232,7 @@ export namespace Prisma {
|
|
25718
27232
|
tagConfirmed?: TagUpdateOneRequiredWithoutConfirmedEventNestedInput
|
25719
27233
|
supraEvent?: EventUpdateOneWithoutSubEventsNestedInput
|
25720
27234
|
tickets?: TicketUpdateManyWithoutEventNestedInput
|
27235
|
+
ticketGroups?: TicketGroupUpdateManyWithoutEventNestedInput
|
25721
27236
|
subEvents?: EventUpdateManyWithoutSupraEventNestedInput
|
25722
27237
|
tags?: TagUpdateManyWithoutEventNestedInput
|
25723
27238
|
eventTickets?: EventTicketUpdateManyWithoutEventNestedInput
|
@@ -25737,6 +27252,7 @@ export namespace Prisma {
|
|
25737
27252
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
25738
27253
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
25739
27254
|
tickets?: TicketUncheckedUpdateManyWithoutEventNestedInput
|
27255
|
+
ticketGroups?: TicketGroupUncheckedUpdateManyWithoutEventNestedInput
|
25740
27256
|
subEvents?: EventUncheckedUpdateManyWithoutSupraEventNestedInput
|
25741
27257
|
tags?: TagUncheckedUpdateManyWithoutEventNestedInput
|
25742
27258
|
eventTickets?: EventTicketUncheckedUpdateManyWithoutEventNestedInput
|
@@ -25767,6 +27283,7 @@ export namespace Prisma {
|
|
25767
27283
|
tagAssisted?: TagUpdateOneRequiredWithoutAssistedEventNestedInput
|
25768
27284
|
supraEvent?: EventUpdateOneWithoutSubEventsNestedInput
|
25769
27285
|
tickets?: TicketUpdateManyWithoutEventNestedInput
|
27286
|
+
ticketGroups?: TicketGroupUpdateManyWithoutEventNestedInput
|
25770
27287
|
subEvents?: EventUpdateManyWithoutSupraEventNestedInput
|
25771
27288
|
tags?: TagUpdateManyWithoutEventNestedInput
|
25772
27289
|
eventTickets?: EventTicketUpdateManyWithoutEventNestedInput
|
@@ -25786,6 +27303,7 @@ export namespace Prisma {
|
|
25786
27303
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
25787
27304
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
25788
27305
|
tickets?: TicketUncheckedUpdateManyWithoutEventNestedInput
|
27306
|
+
ticketGroups?: TicketGroupUncheckedUpdateManyWithoutEventNestedInput
|
25789
27307
|
subEvents?: EventUncheckedUpdateManyWithoutSupraEventNestedInput
|
25790
27308
|
tags?: TagUncheckedUpdateManyWithoutEventNestedInput
|
25791
27309
|
eventTickets?: EventTicketUncheckedUpdateManyWithoutEventNestedInput
|
@@ -26044,6 +27562,7 @@ export namespace Prisma {
|
|
26044
27562
|
tagConfirmed: TagCreateNestedOneWithoutConfirmedEventInput
|
26045
27563
|
supraEvent?: EventCreateNestedOneWithoutSubEventsInput
|
26046
27564
|
tickets?: TicketCreateNestedManyWithoutEventInput
|
27565
|
+
ticketGroups?: TicketGroupCreateNestedManyWithoutEventInput
|
26047
27566
|
tags?: TagCreateNestedManyWithoutEventInput
|
26048
27567
|
eventTickets?: EventTicketCreateNestedManyWithoutEventInput
|
26049
27568
|
}
|
@@ -26063,6 +27582,7 @@ export namespace Prisma {
|
|
26063
27582
|
created_at?: Date | string
|
26064
27583
|
updated_at?: Date | string
|
26065
27584
|
tickets?: TicketUncheckedCreateNestedManyWithoutEventInput
|
27585
|
+
ticketGroups?: TicketGroupUncheckedCreateNestedManyWithoutEventInput
|
26066
27586
|
tags?: TagUncheckedCreateNestedManyWithoutEventInput
|
26067
27587
|
eventTickets?: EventTicketUncheckedCreateNestedManyWithoutEventInput
|
26068
27588
|
}
|
@@ -26075,25 +27595,21 @@ export namespace Prisma {
|
|
26075
27595
|
export type TicketCreateWithoutEventInput = {
|
26076
27596
|
id?: string
|
26077
27597
|
type: $Enums.TicketType
|
26078
|
-
status: $Enums.TicketStatus
|
26079
27598
|
fullName: string
|
26080
27599
|
mail: string
|
26081
|
-
dni: string
|
26082
|
-
seat?: number | null
|
26083
27600
|
created_at?: Date | string
|
26084
27601
|
updated_at?: Date | string
|
26085
27602
|
profile?: ProfileCreateNestedOneWithoutTicketInput
|
27603
|
+
ticketGroup: TicketGroupCreateNestedOneWithoutTicketsInput
|
26086
27604
|
}
|
26087
27605
|
|
26088
27606
|
export type TicketUncheckedCreateWithoutEventInput = {
|
26089
27607
|
id?: string
|
26090
27608
|
type: $Enums.TicketType
|
26091
|
-
status: $Enums.TicketStatus
|
26092
27609
|
fullName: string
|
26093
27610
|
mail: string
|
26094
|
-
dni: string
|
26095
|
-
seat?: number | null
|
26096
27611
|
profileId?: string | null
|
27612
|
+
ticketGroupId: string
|
26097
27613
|
created_at?: Date | string
|
26098
27614
|
updated_at?: Date | string
|
26099
27615
|
}
|
@@ -26108,6 +27624,34 @@ export namespace Prisma {
|
|
26108
27624
|
skipDuplicates?: boolean
|
26109
27625
|
}
|
26110
27626
|
|
27627
|
+
export type TicketGroupCreateWithoutEventInput = {
|
27628
|
+
id?: string
|
27629
|
+
status: $Enums.TicketGroupStatus
|
27630
|
+
amountTickets?: number
|
27631
|
+
created_at?: Date | string
|
27632
|
+
updated_at?: Date | string
|
27633
|
+
tickets?: TicketCreateNestedManyWithoutTicketGroupInput
|
27634
|
+
}
|
27635
|
+
|
27636
|
+
export type TicketGroupUncheckedCreateWithoutEventInput = {
|
27637
|
+
id?: string
|
27638
|
+
status: $Enums.TicketGroupStatus
|
27639
|
+
amountTickets?: number
|
27640
|
+
created_at?: Date | string
|
27641
|
+
updated_at?: Date | string
|
27642
|
+
tickets?: TicketUncheckedCreateNestedManyWithoutTicketGroupInput
|
27643
|
+
}
|
27644
|
+
|
27645
|
+
export type TicketGroupCreateOrConnectWithoutEventInput = {
|
27646
|
+
where: TicketGroupWhereUniqueInput
|
27647
|
+
create: XOR<TicketGroupCreateWithoutEventInput, TicketGroupUncheckedCreateWithoutEventInput>
|
27648
|
+
}
|
27649
|
+
|
27650
|
+
export type TicketGroupCreateManyEventInputEnvelope = {
|
27651
|
+
data: TicketGroupCreateManyEventInput | TicketGroupCreateManyEventInput[]
|
27652
|
+
skipDuplicates?: boolean
|
27653
|
+
}
|
27654
|
+
|
26111
27655
|
export type EventCreateWithoutSupraEventInput = {
|
26112
27656
|
id?: string
|
26113
27657
|
name: string
|
@@ -26122,6 +27666,7 @@ export namespace Prisma {
|
|
26122
27666
|
tagAssisted: TagCreateNestedOneWithoutAssistedEventInput
|
26123
27667
|
tagConfirmed: TagCreateNestedOneWithoutConfirmedEventInput
|
26124
27668
|
tickets?: TicketCreateNestedManyWithoutEventInput
|
27669
|
+
ticketGroups?: TicketGroupCreateNestedManyWithoutEventInput
|
26125
27670
|
subEvents?: EventCreateNestedManyWithoutSupraEventInput
|
26126
27671
|
tags?: TagCreateNestedManyWithoutEventInput
|
26127
27672
|
eventTickets?: EventTicketCreateNestedManyWithoutEventInput
|
@@ -26141,6 +27686,7 @@ export namespace Prisma {
|
|
26141
27686
|
created_at?: Date | string
|
26142
27687
|
updated_at?: Date | string
|
26143
27688
|
tickets?: TicketUncheckedCreateNestedManyWithoutEventInput
|
27689
|
+
ticketGroups?: TicketGroupUncheckedCreateNestedManyWithoutEventInput
|
26144
27690
|
subEvents?: EventUncheckedCreateNestedManyWithoutSupraEventInput
|
26145
27691
|
tags?: TagUncheckedCreateNestedManyWithoutEventInput
|
26146
27692
|
eventTickets?: EventTicketUncheckedCreateNestedManyWithoutEventInput
|
@@ -26348,6 +27894,7 @@ export namespace Prisma {
|
|
26348
27894
|
tagConfirmed?: TagUpdateOneRequiredWithoutConfirmedEventNestedInput
|
26349
27895
|
supraEvent?: EventUpdateOneWithoutSubEventsNestedInput
|
26350
27896
|
tickets?: TicketUpdateManyWithoutEventNestedInput
|
27897
|
+
ticketGroups?: TicketGroupUpdateManyWithoutEventNestedInput
|
26351
27898
|
tags?: TagUpdateManyWithoutEventNestedInput
|
26352
27899
|
eventTickets?: EventTicketUpdateManyWithoutEventNestedInput
|
26353
27900
|
}
|
@@ -26367,6 +27914,7 @@ export namespace Prisma {
|
|
26367
27914
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
26368
27915
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
26369
27916
|
tickets?: TicketUncheckedUpdateManyWithoutEventNestedInput
|
27917
|
+
ticketGroups?: TicketGroupUncheckedUpdateManyWithoutEventNestedInput
|
26370
27918
|
tags?: TagUncheckedUpdateManyWithoutEventNestedInput
|
26371
27919
|
eventTickets?: EventTicketUncheckedUpdateManyWithoutEventNestedInput
|
26372
27920
|
}
|
@@ -26387,6 +27935,34 @@ export namespace Prisma {
|
|
26387
27935
|
data: XOR<TicketUpdateManyMutationInput, TicketUncheckedUpdateManyWithoutEventInput>
|
26388
27936
|
}
|
26389
27937
|
|
27938
|
+
export type TicketGroupUpsertWithWhereUniqueWithoutEventInput = {
|
27939
|
+
where: TicketGroupWhereUniqueInput
|
27940
|
+
update: XOR<TicketGroupUpdateWithoutEventInput, TicketGroupUncheckedUpdateWithoutEventInput>
|
27941
|
+
create: XOR<TicketGroupCreateWithoutEventInput, TicketGroupUncheckedCreateWithoutEventInput>
|
27942
|
+
}
|
27943
|
+
|
27944
|
+
export type TicketGroupUpdateWithWhereUniqueWithoutEventInput = {
|
27945
|
+
where: TicketGroupWhereUniqueInput
|
27946
|
+
data: XOR<TicketGroupUpdateWithoutEventInput, TicketGroupUncheckedUpdateWithoutEventInput>
|
27947
|
+
}
|
27948
|
+
|
27949
|
+
export type TicketGroupUpdateManyWithWhereWithoutEventInput = {
|
27950
|
+
where: TicketGroupScalarWhereInput
|
27951
|
+
data: XOR<TicketGroupUpdateManyMutationInput, TicketGroupUncheckedUpdateManyWithoutEventInput>
|
27952
|
+
}
|
27953
|
+
|
27954
|
+
export type TicketGroupScalarWhereInput = {
|
27955
|
+
AND?: TicketGroupScalarWhereInput | TicketGroupScalarWhereInput[]
|
27956
|
+
OR?: TicketGroupScalarWhereInput[]
|
27957
|
+
NOT?: TicketGroupScalarWhereInput | TicketGroupScalarWhereInput[]
|
27958
|
+
id?: StringFilter<"TicketGroup"> | string
|
27959
|
+
status?: EnumTicketGroupStatusFilter<"TicketGroup"> | $Enums.TicketGroupStatus
|
27960
|
+
amountTickets?: IntFilter<"TicketGroup"> | number
|
27961
|
+
eventId?: StringFilter<"TicketGroup"> | string
|
27962
|
+
created_at?: DateTimeFilter<"TicketGroup"> | Date | string
|
27963
|
+
updated_at?: DateTimeFilter<"TicketGroup"> | Date | string
|
27964
|
+
}
|
27965
|
+
|
26390
27966
|
export type EventUpsertWithWhereUniqueWithoutSupraEventInput = {
|
26391
27967
|
where: EventWhereUniqueInput
|
26392
27968
|
update: XOR<EventUpdateWithoutSupraEventInput, EventUncheckedUpdateWithoutSupraEventInput>
|
@@ -26462,6 +28038,7 @@ export namespace Prisma {
|
|
26462
28038
|
tagConfirmed: TagCreateNestedOneWithoutConfirmedEventInput
|
26463
28039
|
supraEvent?: EventCreateNestedOneWithoutSubEventsInput
|
26464
28040
|
tickets?: TicketCreateNestedManyWithoutEventInput
|
28041
|
+
ticketGroups?: TicketGroupCreateNestedManyWithoutEventInput
|
26465
28042
|
subEvents?: EventCreateNestedManyWithoutSupraEventInput
|
26466
28043
|
tags?: TagCreateNestedManyWithoutEventInput
|
26467
28044
|
eventTickets?: EventTicketCreateNestedManyWithoutEventInput
|
@@ -26481,6 +28058,7 @@ export namespace Prisma {
|
|
26481
28058
|
created_at?: Date | string
|
26482
28059
|
updated_at?: Date | string
|
26483
28060
|
tickets?: TicketUncheckedCreateNestedManyWithoutEventInput
|
28061
|
+
ticketGroups?: TicketGroupUncheckedCreateNestedManyWithoutEventInput
|
26484
28062
|
subEvents?: EventUncheckedCreateNestedManyWithoutSupraEventInput
|
26485
28063
|
tags?: TagUncheckedCreateNestedManyWithoutEventInput
|
26486
28064
|
eventTickets?: EventTicketUncheckedCreateNestedManyWithoutEventInput
|
@@ -26666,6 +28244,7 @@ export namespace Prisma {
|
|
26666
28244
|
tagAssisted: TagCreateNestedOneWithoutAssistedEventInput
|
26667
28245
|
tagConfirmed: TagCreateNestedOneWithoutConfirmedEventInput
|
26668
28246
|
supraEvent?: EventCreateNestedOneWithoutSubEventsInput
|
28247
|
+
ticketGroups?: TicketGroupCreateNestedManyWithoutEventInput
|
26669
28248
|
subEvents?: EventCreateNestedManyWithoutSupraEventInput
|
26670
28249
|
tags?: TagCreateNestedManyWithoutEventInput
|
26671
28250
|
eventTickets?: EventTicketCreateNestedManyWithoutEventInput
|
@@ -26685,6 +28264,7 @@ export namespace Prisma {
|
|
26685
28264
|
active?: boolean
|
26686
28265
|
created_at?: Date | string
|
26687
28266
|
updated_at?: Date | string
|
28267
|
+
ticketGroups?: TicketGroupUncheckedCreateNestedManyWithoutEventInput
|
26688
28268
|
subEvents?: EventUncheckedCreateNestedManyWithoutSupraEventInput
|
26689
28269
|
tags?: TagUncheckedCreateNestedManyWithoutEventInput
|
26690
28270
|
eventTickets?: EventTicketUncheckedCreateNestedManyWithoutEventInput
|
@@ -26762,6 +28342,29 @@ export namespace Prisma {
|
|
26762
28342
|
create: XOR<ProfileCreateWithoutTicketInput, ProfileUncheckedCreateWithoutTicketInput>
|
26763
28343
|
}
|
26764
28344
|
|
28345
|
+
export type TicketGroupCreateWithoutTicketsInput = {
|
28346
|
+
id?: string
|
28347
|
+
status: $Enums.TicketGroupStatus
|
28348
|
+
amountTickets?: number
|
28349
|
+
created_at?: Date | string
|
28350
|
+
updated_at?: Date | string
|
28351
|
+
event: EventCreateNestedOneWithoutTicketGroupsInput
|
28352
|
+
}
|
28353
|
+
|
28354
|
+
export type TicketGroupUncheckedCreateWithoutTicketsInput = {
|
28355
|
+
id?: string
|
28356
|
+
status: $Enums.TicketGroupStatus
|
28357
|
+
amountTickets?: number
|
28358
|
+
eventId: string
|
28359
|
+
created_at?: Date | string
|
28360
|
+
updated_at?: Date | string
|
28361
|
+
}
|
28362
|
+
|
28363
|
+
export type TicketGroupCreateOrConnectWithoutTicketsInput = {
|
28364
|
+
where: TicketGroupWhereUniqueInput
|
28365
|
+
create: XOR<TicketGroupCreateWithoutTicketsInput, TicketGroupUncheckedCreateWithoutTicketsInput>
|
28366
|
+
}
|
28367
|
+
|
26765
28368
|
export type EventUpsertWithoutTicketsInput = {
|
26766
28369
|
update: XOR<EventUpdateWithoutTicketsInput, EventUncheckedUpdateWithoutTicketsInput>
|
26767
28370
|
create: XOR<EventCreateWithoutTicketsInput, EventUncheckedCreateWithoutTicketsInput>
|
@@ -26787,6 +28390,7 @@ export namespace Prisma {
|
|
26787
28390
|
tagAssisted?: TagUpdateOneRequiredWithoutAssistedEventNestedInput
|
26788
28391
|
tagConfirmed?: TagUpdateOneRequiredWithoutConfirmedEventNestedInput
|
26789
28392
|
supraEvent?: EventUpdateOneWithoutSubEventsNestedInput
|
28393
|
+
ticketGroups?: TicketGroupUpdateManyWithoutEventNestedInput
|
26790
28394
|
subEvents?: EventUpdateManyWithoutSupraEventNestedInput
|
26791
28395
|
tags?: TagUpdateManyWithoutEventNestedInput
|
26792
28396
|
eventTickets?: EventTicketUpdateManyWithoutEventNestedInput
|
@@ -26806,6 +28410,7 @@ export namespace Prisma {
|
|
26806
28410
|
active?: BoolFieldUpdateOperationsInput | boolean
|
26807
28411
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
26808
28412
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
28413
|
+
ticketGroups?: TicketGroupUncheckedUpdateManyWithoutEventNestedInput
|
26809
28414
|
subEvents?: EventUncheckedUpdateManyWithoutSupraEventNestedInput
|
26810
28415
|
tags?: TagUncheckedUpdateManyWithoutEventNestedInput
|
26811
28416
|
eventTickets?: EventTicketUncheckedUpdateManyWithoutEventNestedInput
|
@@ -26884,6 +28489,179 @@ export namespace Prisma {
|
|
26884
28489
|
tags?: TagUncheckedUpdateManyWithoutProfilesNestedInput
|
26885
28490
|
}
|
26886
28491
|
|
28492
|
+
export type TicketGroupUpsertWithoutTicketsInput = {
|
28493
|
+
update: XOR<TicketGroupUpdateWithoutTicketsInput, TicketGroupUncheckedUpdateWithoutTicketsInput>
|
28494
|
+
create: XOR<TicketGroupCreateWithoutTicketsInput, TicketGroupUncheckedCreateWithoutTicketsInput>
|
28495
|
+
where?: TicketGroupWhereInput
|
28496
|
+
}
|
28497
|
+
|
28498
|
+
export type TicketGroupUpdateToOneWithWhereWithoutTicketsInput = {
|
28499
|
+
where?: TicketGroupWhereInput
|
28500
|
+
data: XOR<TicketGroupUpdateWithoutTicketsInput, TicketGroupUncheckedUpdateWithoutTicketsInput>
|
28501
|
+
}
|
28502
|
+
|
28503
|
+
export type TicketGroupUpdateWithoutTicketsInput = {
|
28504
|
+
id?: StringFieldUpdateOperationsInput | string
|
28505
|
+
status?: EnumTicketGroupStatusFieldUpdateOperationsInput | $Enums.TicketGroupStatus
|
28506
|
+
amountTickets?: IntFieldUpdateOperationsInput | number
|
28507
|
+
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
28508
|
+
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
28509
|
+
event?: EventUpdateOneRequiredWithoutTicketGroupsNestedInput
|
28510
|
+
}
|
28511
|
+
|
28512
|
+
export type TicketGroupUncheckedUpdateWithoutTicketsInput = {
|
28513
|
+
id?: StringFieldUpdateOperationsInput | string
|
28514
|
+
status?: EnumTicketGroupStatusFieldUpdateOperationsInput | $Enums.TicketGroupStatus
|
28515
|
+
amountTickets?: IntFieldUpdateOperationsInput | number
|
28516
|
+
eventId?: StringFieldUpdateOperationsInput | string
|
28517
|
+
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
28518
|
+
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
28519
|
+
}
|
28520
|
+
|
28521
|
+
export type EventCreateWithoutTicketGroupsInput = {
|
28522
|
+
id?: string
|
28523
|
+
name: string
|
28524
|
+
date: Date | string
|
28525
|
+
startingDate?: Date | string
|
28526
|
+
endingDate?: Date | string
|
28527
|
+
location: string
|
28528
|
+
active?: boolean
|
28529
|
+
created_at?: Date | string
|
28530
|
+
updated_at?: Date | string
|
28531
|
+
folder?: EventFolderCreateNestedOneWithoutEventsInput
|
28532
|
+
tagAssisted: TagCreateNestedOneWithoutAssistedEventInput
|
28533
|
+
tagConfirmed: TagCreateNestedOneWithoutConfirmedEventInput
|
28534
|
+
supraEvent?: EventCreateNestedOneWithoutSubEventsInput
|
28535
|
+
tickets?: TicketCreateNestedManyWithoutEventInput
|
28536
|
+
subEvents?: EventCreateNestedManyWithoutSupraEventInput
|
28537
|
+
tags?: TagCreateNestedManyWithoutEventInput
|
28538
|
+
eventTickets?: EventTicketCreateNestedManyWithoutEventInput
|
28539
|
+
}
|
28540
|
+
|
28541
|
+
export type EventUncheckedCreateWithoutTicketGroupsInput = {
|
28542
|
+
id?: string
|
28543
|
+
name: string
|
28544
|
+
date: Date | string
|
28545
|
+
startingDate?: Date | string
|
28546
|
+
endingDate?: Date | string
|
28547
|
+
location: string
|
28548
|
+
folderId?: string | null
|
28549
|
+
tagAssistedId: string
|
28550
|
+
tagConfirmedId: string
|
28551
|
+
supraEventId?: string | null
|
28552
|
+
active?: boolean
|
28553
|
+
created_at?: Date | string
|
28554
|
+
updated_at?: Date | string
|
28555
|
+
tickets?: TicketUncheckedCreateNestedManyWithoutEventInput
|
28556
|
+
subEvents?: EventUncheckedCreateNestedManyWithoutSupraEventInput
|
28557
|
+
tags?: TagUncheckedCreateNestedManyWithoutEventInput
|
28558
|
+
eventTickets?: EventTicketUncheckedCreateNestedManyWithoutEventInput
|
28559
|
+
}
|
28560
|
+
|
28561
|
+
export type EventCreateOrConnectWithoutTicketGroupsInput = {
|
28562
|
+
where: EventWhereUniqueInput
|
28563
|
+
create: XOR<EventCreateWithoutTicketGroupsInput, EventUncheckedCreateWithoutTicketGroupsInput>
|
28564
|
+
}
|
28565
|
+
|
28566
|
+
export type TicketCreateWithoutTicketGroupInput = {
|
28567
|
+
id?: string
|
28568
|
+
type: $Enums.TicketType
|
28569
|
+
fullName: string
|
28570
|
+
mail: string
|
28571
|
+
created_at?: Date | string
|
28572
|
+
updated_at?: Date | string
|
28573
|
+
event: EventCreateNestedOneWithoutTicketsInput
|
28574
|
+
profile?: ProfileCreateNestedOneWithoutTicketInput
|
28575
|
+
}
|
28576
|
+
|
28577
|
+
export type TicketUncheckedCreateWithoutTicketGroupInput = {
|
28578
|
+
id?: string
|
28579
|
+
eventId: string
|
28580
|
+
type: $Enums.TicketType
|
28581
|
+
fullName: string
|
28582
|
+
mail: string
|
28583
|
+
profileId?: string | null
|
28584
|
+
created_at?: Date | string
|
28585
|
+
updated_at?: Date | string
|
28586
|
+
}
|
28587
|
+
|
28588
|
+
export type TicketCreateOrConnectWithoutTicketGroupInput = {
|
28589
|
+
where: TicketWhereUniqueInput
|
28590
|
+
create: XOR<TicketCreateWithoutTicketGroupInput, TicketUncheckedCreateWithoutTicketGroupInput>
|
28591
|
+
}
|
28592
|
+
|
28593
|
+
export type TicketCreateManyTicketGroupInputEnvelope = {
|
28594
|
+
data: TicketCreateManyTicketGroupInput | TicketCreateManyTicketGroupInput[]
|
28595
|
+
skipDuplicates?: boolean
|
28596
|
+
}
|
28597
|
+
|
28598
|
+
export type EventUpsertWithoutTicketGroupsInput = {
|
28599
|
+
update: XOR<EventUpdateWithoutTicketGroupsInput, EventUncheckedUpdateWithoutTicketGroupsInput>
|
28600
|
+
create: XOR<EventCreateWithoutTicketGroupsInput, EventUncheckedCreateWithoutTicketGroupsInput>
|
28601
|
+
where?: EventWhereInput
|
28602
|
+
}
|
28603
|
+
|
28604
|
+
export type EventUpdateToOneWithWhereWithoutTicketGroupsInput = {
|
28605
|
+
where?: EventWhereInput
|
28606
|
+
data: XOR<EventUpdateWithoutTicketGroupsInput, EventUncheckedUpdateWithoutTicketGroupsInput>
|
28607
|
+
}
|
28608
|
+
|
28609
|
+
export type EventUpdateWithoutTicketGroupsInput = {
|
28610
|
+
id?: StringFieldUpdateOperationsInput | string
|
28611
|
+
name?: StringFieldUpdateOperationsInput | string
|
28612
|
+
date?: DateTimeFieldUpdateOperationsInput | Date | string
|
28613
|
+
startingDate?: DateTimeFieldUpdateOperationsInput | Date | string
|
28614
|
+
endingDate?: DateTimeFieldUpdateOperationsInput | Date | string
|
28615
|
+
location?: StringFieldUpdateOperationsInput | string
|
28616
|
+
active?: BoolFieldUpdateOperationsInput | boolean
|
28617
|
+
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
28618
|
+
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
28619
|
+
folder?: EventFolderUpdateOneWithoutEventsNestedInput
|
28620
|
+
tagAssisted?: TagUpdateOneRequiredWithoutAssistedEventNestedInput
|
28621
|
+
tagConfirmed?: TagUpdateOneRequiredWithoutConfirmedEventNestedInput
|
28622
|
+
supraEvent?: EventUpdateOneWithoutSubEventsNestedInput
|
28623
|
+
tickets?: TicketUpdateManyWithoutEventNestedInput
|
28624
|
+
subEvents?: EventUpdateManyWithoutSupraEventNestedInput
|
28625
|
+
tags?: TagUpdateManyWithoutEventNestedInput
|
28626
|
+
eventTickets?: EventTicketUpdateManyWithoutEventNestedInput
|
28627
|
+
}
|
28628
|
+
|
28629
|
+
export type EventUncheckedUpdateWithoutTicketGroupsInput = {
|
28630
|
+
id?: StringFieldUpdateOperationsInput | string
|
28631
|
+
name?: StringFieldUpdateOperationsInput | string
|
28632
|
+
date?: DateTimeFieldUpdateOperationsInput | Date | string
|
28633
|
+
startingDate?: DateTimeFieldUpdateOperationsInput | Date | string
|
28634
|
+
endingDate?: DateTimeFieldUpdateOperationsInput | Date | string
|
28635
|
+
location?: StringFieldUpdateOperationsInput | string
|
28636
|
+
folderId?: NullableStringFieldUpdateOperationsInput | string | null
|
28637
|
+
tagAssistedId?: StringFieldUpdateOperationsInput | string
|
28638
|
+
tagConfirmedId?: StringFieldUpdateOperationsInput | string
|
28639
|
+
supraEventId?: NullableStringFieldUpdateOperationsInput | string | null
|
28640
|
+
active?: BoolFieldUpdateOperationsInput | boolean
|
28641
|
+
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
28642
|
+
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
28643
|
+
tickets?: TicketUncheckedUpdateManyWithoutEventNestedInput
|
28644
|
+
subEvents?: EventUncheckedUpdateManyWithoutSupraEventNestedInput
|
28645
|
+
tags?: TagUncheckedUpdateManyWithoutEventNestedInput
|
28646
|
+
eventTickets?: EventTicketUncheckedUpdateManyWithoutEventNestedInput
|
28647
|
+
}
|
28648
|
+
|
28649
|
+
export type TicketUpsertWithWhereUniqueWithoutTicketGroupInput = {
|
28650
|
+
where: TicketWhereUniqueInput
|
28651
|
+
update: XOR<TicketUpdateWithoutTicketGroupInput, TicketUncheckedUpdateWithoutTicketGroupInput>
|
28652
|
+
create: XOR<TicketCreateWithoutTicketGroupInput, TicketUncheckedCreateWithoutTicketGroupInput>
|
28653
|
+
}
|
28654
|
+
|
28655
|
+
export type TicketUpdateWithWhereUniqueWithoutTicketGroupInput = {
|
28656
|
+
where: TicketWhereUniqueInput
|
28657
|
+
data: XOR<TicketUpdateWithoutTicketGroupInput, TicketUncheckedUpdateWithoutTicketGroupInput>
|
28658
|
+
}
|
28659
|
+
|
28660
|
+
export type TicketUpdateManyWithWhereWithoutTicketGroupInput = {
|
28661
|
+
where: TicketScalarWhereInput
|
28662
|
+
data: XOR<TicketUpdateManyMutationInput, TicketUncheckedUpdateManyWithoutTicketGroupInput>
|
28663
|
+
}
|
28664
|
+
|
26887
28665
|
export type EventCreateWithoutEventTicketsInput = {
|
26888
28666
|
id?: string
|
26889
28667
|
name: string
|
@@ -26899,6 +28677,7 @@ export namespace Prisma {
|
|
26899
28677
|
tagConfirmed: TagCreateNestedOneWithoutConfirmedEventInput
|
26900
28678
|
supraEvent?: EventCreateNestedOneWithoutSubEventsInput
|
26901
28679
|
tickets?: TicketCreateNestedManyWithoutEventInput
|
28680
|
+
ticketGroups?: TicketGroupCreateNestedManyWithoutEventInput
|
26902
28681
|
subEvents?: EventCreateNestedManyWithoutSupraEventInput
|
26903
28682
|
tags?: TagCreateNestedManyWithoutEventInput
|
26904
28683
|
}
|
@@ -26918,6 +28697,7 @@ export namespace Prisma {
|
|
26918
28697
|
created_at?: Date | string
|
26919
28698
|
updated_at?: Date | string
|
26920
28699
|
tickets?: TicketUncheckedCreateNestedManyWithoutEventInput
|
28700
|
+
ticketGroups?: TicketGroupUncheckedCreateNestedManyWithoutEventInput
|
26921
28701
|
subEvents?: EventUncheckedCreateNestedManyWithoutSupraEventInput
|
26922
28702
|
tags?: TagUncheckedCreateNestedManyWithoutEventInput
|
26923
28703
|
}
|
@@ -26953,6 +28733,7 @@ export namespace Prisma {
|
|
26953
28733
|
tagConfirmed?: TagUpdateOneRequiredWithoutConfirmedEventNestedInput
|
26954
28734
|
supraEvent?: EventUpdateOneWithoutSubEventsNestedInput
|
26955
28735
|
tickets?: TicketUpdateManyWithoutEventNestedInput
|
28736
|
+
ticketGroups?: TicketGroupUpdateManyWithoutEventNestedInput
|
26956
28737
|
subEvents?: EventUpdateManyWithoutSupraEventNestedInput
|
26957
28738
|
tags?: TagUpdateManyWithoutEventNestedInput
|
26958
28739
|
}
|
@@ -26972,6 +28753,7 @@ export namespace Prisma {
|
|
26972
28753
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
26973
28754
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
26974
28755
|
tickets?: TicketUncheckedUpdateManyWithoutEventNestedInput
|
28756
|
+
ticketGroups?: TicketGroupUncheckedUpdateManyWithoutEventNestedInput
|
26975
28757
|
subEvents?: EventUncheckedUpdateManyWithoutSupraEventNestedInput
|
26976
28758
|
tags?: TagUncheckedUpdateManyWithoutEventNestedInput
|
26977
28759
|
}
|
@@ -27179,11 +28961,9 @@ export namespace Prisma {
|
|
27179
28961
|
id?: string
|
27180
28962
|
eventId: string
|
27181
28963
|
type: $Enums.TicketType
|
27182
|
-
status: $Enums.TicketStatus
|
27183
28964
|
fullName: string
|
27184
28965
|
mail: string
|
27185
|
-
|
27186
|
-
seat?: number | null
|
28966
|
+
ticketGroupId: string
|
27187
28967
|
created_at?: Date | string
|
27188
28968
|
updated_at?: Date | string
|
27189
28969
|
}
|
@@ -27315,25 +29095,21 @@ export namespace Prisma {
|
|
27315
29095
|
export type TicketUpdateWithoutProfileInput = {
|
27316
29096
|
id?: StringFieldUpdateOperationsInput | string
|
27317
29097
|
type?: EnumTicketTypeFieldUpdateOperationsInput | $Enums.TicketType
|
27318
|
-
status?: EnumTicketStatusFieldUpdateOperationsInput | $Enums.TicketStatus
|
27319
29098
|
fullName?: StringFieldUpdateOperationsInput | string
|
27320
29099
|
mail?: StringFieldUpdateOperationsInput | string
|
27321
|
-
dni?: StringFieldUpdateOperationsInput | string
|
27322
|
-
seat?: NullableIntFieldUpdateOperationsInput | number | null
|
27323
29100
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
27324
29101
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
27325
29102
|
event?: EventUpdateOneRequiredWithoutTicketsNestedInput
|
29103
|
+
ticketGroup?: TicketGroupUpdateOneRequiredWithoutTicketsNestedInput
|
27326
29104
|
}
|
27327
29105
|
|
27328
29106
|
export type TicketUncheckedUpdateWithoutProfileInput = {
|
27329
29107
|
id?: StringFieldUpdateOperationsInput | string
|
27330
29108
|
eventId?: StringFieldUpdateOperationsInput | string
|
27331
29109
|
type?: EnumTicketTypeFieldUpdateOperationsInput | $Enums.TicketType
|
27332
|
-
status?: EnumTicketStatusFieldUpdateOperationsInput | $Enums.TicketStatus
|
27333
29110
|
fullName?: StringFieldUpdateOperationsInput | string
|
27334
29111
|
mail?: StringFieldUpdateOperationsInput | string
|
27335
|
-
|
27336
|
-
seat?: NullableIntFieldUpdateOperationsInput | number | null
|
29112
|
+
ticketGroupId?: StringFieldUpdateOperationsInput | string
|
27337
29113
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
27338
29114
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
27339
29115
|
}
|
@@ -27342,11 +29118,9 @@ export namespace Prisma {
|
|
27342
29118
|
id?: StringFieldUpdateOperationsInput | string
|
27343
29119
|
eventId?: StringFieldUpdateOperationsInput | string
|
27344
29120
|
type?: EnumTicketTypeFieldUpdateOperationsInput | $Enums.TicketType
|
27345
|
-
status?: EnumTicketStatusFieldUpdateOperationsInput | $Enums.TicketStatus
|
27346
29121
|
fullName?: StringFieldUpdateOperationsInput | string
|
27347
29122
|
mail?: StringFieldUpdateOperationsInput | string
|
27348
|
-
|
27349
|
-
seat?: NullableIntFieldUpdateOperationsInput | number | null
|
29123
|
+
ticketGroupId?: StringFieldUpdateOperationsInput | string
|
27350
29124
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
27351
29125
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
27352
29126
|
}
|
@@ -27761,6 +29535,7 @@ export namespace Prisma {
|
|
27761
29535
|
tagConfirmed?: TagUpdateOneRequiredWithoutConfirmedEventNestedInput
|
27762
29536
|
supraEvent?: EventUpdateOneWithoutSubEventsNestedInput
|
27763
29537
|
tickets?: TicketUpdateManyWithoutEventNestedInput
|
29538
|
+
ticketGroups?: TicketGroupUpdateManyWithoutEventNestedInput
|
27764
29539
|
subEvents?: EventUpdateManyWithoutSupraEventNestedInput
|
27765
29540
|
eventTickets?: EventTicketUpdateManyWithoutEventNestedInput
|
27766
29541
|
}
|
@@ -27780,6 +29555,7 @@ export namespace Prisma {
|
|
27780
29555
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
27781
29556
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
27782
29557
|
tickets?: TicketUncheckedUpdateManyWithoutEventNestedInput
|
29558
|
+
ticketGroups?: TicketGroupUncheckedUpdateManyWithoutEventNestedInput
|
27783
29559
|
subEvents?: EventUncheckedUpdateManyWithoutSupraEventNestedInput
|
27784
29560
|
eventTickets?: EventTicketUncheckedUpdateManyWithoutEventNestedInput
|
27785
29561
|
}
|
@@ -27847,12 +29623,18 @@ export namespace Prisma {
|
|
27847
29623
|
export type TicketCreateManyEventInput = {
|
27848
29624
|
id?: string
|
27849
29625
|
type: $Enums.TicketType
|
27850
|
-
status: $Enums.TicketStatus
|
27851
29626
|
fullName: string
|
27852
29627
|
mail: string
|
27853
|
-
dni: string
|
27854
|
-
seat?: number | null
|
27855
29628
|
profileId?: string | null
|
29629
|
+
ticketGroupId: string
|
29630
|
+
created_at?: Date | string
|
29631
|
+
updated_at?: Date | string
|
29632
|
+
}
|
29633
|
+
|
29634
|
+
export type TicketGroupCreateManyEventInput = {
|
29635
|
+
id?: string
|
29636
|
+
status: $Enums.TicketGroupStatus
|
29637
|
+
amountTickets?: number
|
27856
29638
|
created_at?: Date | string
|
27857
29639
|
updated_at?: Date | string
|
27858
29640
|
}
|
@@ -27884,25 +29666,21 @@ export namespace Prisma {
|
|
27884
29666
|
export type TicketUpdateWithoutEventInput = {
|
27885
29667
|
id?: StringFieldUpdateOperationsInput | string
|
27886
29668
|
type?: EnumTicketTypeFieldUpdateOperationsInput | $Enums.TicketType
|
27887
|
-
status?: EnumTicketStatusFieldUpdateOperationsInput | $Enums.TicketStatus
|
27888
29669
|
fullName?: StringFieldUpdateOperationsInput | string
|
27889
29670
|
mail?: StringFieldUpdateOperationsInput | string
|
27890
|
-
dni?: StringFieldUpdateOperationsInput | string
|
27891
|
-
seat?: NullableIntFieldUpdateOperationsInput | number | null
|
27892
29671
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
27893
29672
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
27894
29673
|
profile?: ProfileUpdateOneWithoutTicketNestedInput
|
29674
|
+
ticketGroup?: TicketGroupUpdateOneRequiredWithoutTicketsNestedInput
|
27895
29675
|
}
|
27896
29676
|
|
27897
29677
|
export type TicketUncheckedUpdateWithoutEventInput = {
|
27898
29678
|
id?: StringFieldUpdateOperationsInput | string
|
27899
29679
|
type?: EnumTicketTypeFieldUpdateOperationsInput | $Enums.TicketType
|
27900
|
-
status?: EnumTicketStatusFieldUpdateOperationsInput | $Enums.TicketStatus
|
27901
29680
|
fullName?: StringFieldUpdateOperationsInput | string
|
27902
29681
|
mail?: StringFieldUpdateOperationsInput | string
|
27903
|
-
dni?: StringFieldUpdateOperationsInput | string
|
27904
|
-
seat?: NullableIntFieldUpdateOperationsInput | number | null
|
27905
29682
|
profileId?: NullableStringFieldUpdateOperationsInput | string | null
|
29683
|
+
ticketGroupId?: StringFieldUpdateOperationsInput | string
|
27906
29684
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
27907
29685
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
27908
29686
|
}
|
@@ -27910,12 +29688,36 @@ export namespace Prisma {
|
|
27910
29688
|
export type TicketUncheckedUpdateManyWithoutEventInput = {
|
27911
29689
|
id?: StringFieldUpdateOperationsInput | string
|
27912
29690
|
type?: EnumTicketTypeFieldUpdateOperationsInput | $Enums.TicketType
|
27913
|
-
status?: EnumTicketStatusFieldUpdateOperationsInput | $Enums.TicketStatus
|
27914
29691
|
fullName?: StringFieldUpdateOperationsInput | string
|
27915
29692
|
mail?: StringFieldUpdateOperationsInput | string
|
27916
|
-
dni?: StringFieldUpdateOperationsInput | string
|
27917
|
-
seat?: NullableIntFieldUpdateOperationsInput | number | null
|
27918
29693
|
profileId?: NullableStringFieldUpdateOperationsInput | string | null
|
29694
|
+
ticketGroupId?: StringFieldUpdateOperationsInput | string
|
29695
|
+
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
29696
|
+
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
29697
|
+
}
|
29698
|
+
|
29699
|
+
export type TicketGroupUpdateWithoutEventInput = {
|
29700
|
+
id?: StringFieldUpdateOperationsInput | string
|
29701
|
+
status?: EnumTicketGroupStatusFieldUpdateOperationsInput | $Enums.TicketGroupStatus
|
29702
|
+
amountTickets?: IntFieldUpdateOperationsInput | number
|
29703
|
+
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
29704
|
+
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
29705
|
+
tickets?: TicketUpdateManyWithoutTicketGroupNestedInput
|
29706
|
+
}
|
29707
|
+
|
29708
|
+
export type TicketGroupUncheckedUpdateWithoutEventInput = {
|
29709
|
+
id?: StringFieldUpdateOperationsInput | string
|
29710
|
+
status?: EnumTicketGroupStatusFieldUpdateOperationsInput | $Enums.TicketGroupStatus
|
29711
|
+
amountTickets?: IntFieldUpdateOperationsInput | number
|
29712
|
+
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
29713
|
+
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
29714
|
+
tickets?: TicketUncheckedUpdateManyWithoutTicketGroupNestedInput
|
29715
|
+
}
|
29716
|
+
|
29717
|
+
export type TicketGroupUncheckedUpdateManyWithoutEventInput = {
|
29718
|
+
id?: StringFieldUpdateOperationsInput | string
|
29719
|
+
status?: EnumTicketGroupStatusFieldUpdateOperationsInput | $Enums.TicketGroupStatus
|
29720
|
+
amountTickets?: IntFieldUpdateOperationsInput | number
|
27919
29721
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
27920
29722
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
27921
29723
|
}
|
@@ -27934,6 +29736,7 @@ export namespace Prisma {
|
|
27934
29736
|
tagAssisted?: TagUpdateOneRequiredWithoutAssistedEventNestedInput
|
27935
29737
|
tagConfirmed?: TagUpdateOneRequiredWithoutConfirmedEventNestedInput
|
27936
29738
|
tickets?: TicketUpdateManyWithoutEventNestedInput
|
29739
|
+
ticketGroups?: TicketGroupUpdateManyWithoutEventNestedInput
|
27937
29740
|
subEvents?: EventUpdateManyWithoutSupraEventNestedInput
|
27938
29741
|
tags?: TagUpdateManyWithoutEventNestedInput
|
27939
29742
|
eventTickets?: EventTicketUpdateManyWithoutEventNestedInput
|
@@ -27953,6 +29756,7 @@ export namespace Prisma {
|
|
27953
29756
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
27954
29757
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
27955
29758
|
tickets?: TicketUncheckedUpdateManyWithoutEventNestedInput
|
29759
|
+
ticketGroups?: TicketGroupUncheckedUpdateManyWithoutEventNestedInput
|
27956
29760
|
subEvents?: EventUncheckedUpdateManyWithoutSupraEventNestedInput
|
27957
29761
|
tags?: TagUncheckedUpdateManyWithoutEventNestedInput
|
27958
29762
|
eventTickets?: EventTicketUncheckedUpdateManyWithoutEventNestedInput
|
@@ -28066,6 +29870,7 @@ export namespace Prisma {
|
|
28066
29870
|
tagConfirmed?: TagUpdateOneRequiredWithoutConfirmedEventNestedInput
|
28067
29871
|
supraEvent?: EventUpdateOneWithoutSubEventsNestedInput
|
28068
29872
|
tickets?: TicketUpdateManyWithoutEventNestedInput
|
29873
|
+
ticketGroups?: TicketGroupUpdateManyWithoutEventNestedInput
|
28069
29874
|
subEvents?: EventUpdateManyWithoutSupraEventNestedInput
|
28070
29875
|
tags?: TagUpdateManyWithoutEventNestedInput
|
28071
29876
|
eventTickets?: EventTicketUpdateManyWithoutEventNestedInput
|
@@ -28085,6 +29890,7 @@ export namespace Prisma {
|
|
28085
29890
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
28086
29891
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
28087
29892
|
tickets?: TicketUncheckedUpdateManyWithoutEventNestedInput
|
29893
|
+
ticketGroups?: TicketGroupUncheckedUpdateManyWithoutEventNestedInput
|
28088
29894
|
subEvents?: EventUncheckedUpdateManyWithoutSupraEventNestedInput
|
28089
29895
|
tags?: TagUncheckedUpdateManyWithoutEventNestedInput
|
28090
29896
|
eventTickets?: EventTicketUncheckedUpdateManyWithoutEventNestedInput
|
@@ -28105,6 +29911,50 @@ export namespace Prisma {
|
|
28105
29911
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
28106
29912
|
}
|
28107
29913
|
|
29914
|
+
export type TicketCreateManyTicketGroupInput = {
|
29915
|
+
id?: string
|
29916
|
+
eventId: string
|
29917
|
+
type: $Enums.TicketType
|
29918
|
+
fullName: string
|
29919
|
+
mail: string
|
29920
|
+
profileId?: string | null
|
29921
|
+
created_at?: Date | string
|
29922
|
+
updated_at?: Date | string
|
29923
|
+
}
|
29924
|
+
|
29925
|
+
export type TicketUpdateWithoutTicketGroupInput = {
|
29926
|
+
id?: StringFieldUpdateOperationsInput | string
|
29927
|
+
type?: EnumTicketTypeFieldUpdateOperationsInput | $Enums.TicketType
|
29928
|
+
fullName?: StringFieldUpdateOperationsInput | string
|
29929
|
+
mail?: StringFieldUpdateOperationsInput | string
|
29930
|
+
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
29931
|
+
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
29932
|
+
event?: EventUpdateOneRequiredWithoutTicketsNestedInput
|
29933
|
+
profile?: ProfileUpdateOneWithoutTicketNestedInput
|
29934
|
+
}
|
29935
|
+
|
29936
|
+
export type TicketUncheckedUpdateWithoutTicketGroupInput = {
|
29937
|
+
id?: StringFieldUpdateOperationsInput | string
|
29938
|
+
eventId?: StringFieldUpdateOperationsInput | string
|
29939
|
+
type?: EnumTicketTypeFieldUpdateOperationsInput | $Enums.TicketType
|
29940
|
+
fullName?: StringFieldUpdateOperationsInput | string
|
29941
|
+
mail?: StringFieldUpdateOperationsInput | string
|
29942
|
+
profileId?: NullableStringFieldUpdateOperationsInput | string | null
|
29943
|
+
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
29944
|
+
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
29945
|
+
}
|
29946
|
+
|
29947
|
+
export type TicketUncheckedUpdateManyWithoutTicketGroupInput = {
|
29948
|
+
id?: StringFieldUpdateOperationsInput | string
|
29949
|
+
eventId?: StringFieldUpdateOperationsInput | string
|
29950
|
+
type?: EnumTicketTypeFieldUpdateOperationsInput | $Enums.TicketType
|
29951
|
+
fullName?: StringFieldUpdateOperationsInput | string
|
29952
|
+
mail?: StringFieldUpdateOperationsInput | string
|
29953
|
+
profileId?: NullableStringFieldUpdateOperationsInput | string | null
|
29954
|
+
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
29955
|
+
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
29956
|
+
}
|
29957
|
+
|
28108
29958
|
|
28109
29959
|
|
28110
29960
|
/**
|