add payment, trust badge, handle race condition, fix booking schema
This commit is contained in:
@@ -80,6 +80,7 @@ export const UserScalarFieldEnum = {
|
||||
email: 'email',
|
||||
password: 'password',
|
||||
image: 'image',
|
||||
isVerified: 'isVerified',
|
||||
createdAt: 'createdAt',
|
||||
updatedAt: 'updatedAt'
|
||||
} as const
|
||||
@@ -93,6 +94,10 @@ export const TripScalarFieldEnum = {
|
||||
description: 'description',
|
||||
mountain: 'mountain',
|
||||
location: 'location',
|
||||
meetingPoint: 'meetingPoint',
|
||||
itinerary: 'itinerary',
|
||||
whatsIncluded: 'whatsIncluded',
|
||||
whatsExcluded: 'whatsExcluded',
|
||||
date: 'date',
|
||||
endDate: 'endDate',
|
||||
maxParticipants: 'maxParticipants',
|
||||
@@ -134,6 +139,8 @@ export const TripParticipantScalarFieldEnum = {
|
||||
id: 'id',
|
||||
status: 'status',
|
||||
createdAt: 'createdAt',
|
||||
markedPaidAt: 'markedPaidAt',
|
||||
paymentConfirmedAt: 'paymentConfirmedAt',
|
||||
tripId: 'tripId',
|
||||
userId: 'userId'
|
||||
} as const
|
||||
|
||||
Reference in New Issue
Block a user