general category trip

This commit is contained in:
2026-05-07 18:47:45 +07:00
parent 12f13f2049
commit 49aa64c522
25 changed files with 904 additions and 386 deletions
+16
View File
@@ -28,6 +28,22 @@ export const TripStatus = {
export type TripStatus = (typeof TripStatus)[keyof typeof TripStatus]
export const ActivityCategory = {
HIKING: 'HIKING',
CAMPING: 'CAMPING',
SNORKELING: 'SNORKELING',
DIVING: 'DIVING',
ISLAND_HOPPING: 'ISLAND_HOPPING',
CITY_TRIP: 'CITY_TRIP',
CULINARY: 'CULINARY',
CONCERT: 'CONCERT',
WORKSHOP: 'WORKSHOP',
RETREAT: 'RETREAT'
} as const
export type ActivityCategory = (typeof ActivityCategory)[keyof typeof ActivityCategory]
export const ParticipantStatus = {
PENDING: 'PENDING',
CONFIRMED: 'CONFIRMED',