add trip image
This commit is contained in:
@@ -53,6 +53,7 @@ export const AnyNull = runtime.AnyNull
|
||||
export const ModelName = {
|
||||
User: 'User',
|
||||
Trip: 'Trip',
|
||||
TripImage: 'TripImage',
|
||||
TripParticipant: 'TripParticipant'
|
||||
} as const
|
||||
|
||||
@@ -94,7 +95,6 @@ export const TripScalarFieldEnum = {
|
||||
date: 'date',
|
||||
maxParticipants: 'maxParticipants',
|
||||
price: 'price',
|
||||
image: 'image',
|
||||
status: 'status',
|
||||
createdAt: 'createdAt',
|
||||
updatedAt: 'updatedAt',
|
||||
@@ -104,6 +104,17 @@ export const TripScalarFieldEnum = {
|
||||
export type TripScalarFieldEnum = (typeof TripScalarFieldEnum)[keyof typeof TripScalarFieldEnum]
|
||||
|
||||
|
||||
export const TripImageScalarFieldEnum = {
|
||||
id: 'id',
|
||||
url: 'url',
|
||||
caption: 'caption',
|
||||
order: 'order',
|
||||
tripId: 'tripId'
|
||||
} as const
|
||||
|
||||
export type TripImageScalarFieldEnum = (typeof TripImageScalarFieldEnum)[keyof typeof TripImageScalarFieldEnum]
|
||||
|
||||
|
||||
export const TripParticipantScalarFieldEnum = {
|
||||
id: 'id',
|
||||
status: 'status',
|
||||
|
||||
Reference in New Issue
Block a user