19 lines
482 B
TypeScript
19 lines
482 B
TypeScript
// Appwrite collection and database constants
|
|
export const APPWRITE_COLLECTIONS = {
|
|
USERS: 'users',
|
|
VEHICLES: 'vehicles',
|
|
RESERVATIONS: 'reservations',
|
|
TRANSACTIONS: 'transactions',
|
|
PAYMENT_METHODS: 'payment_methods',
|
|
REVIEWS: 'reviews',
|
|
CONVERSATIONS: 'conversations',
|
|
MESSAGES: 'messages',
|
|
NOTIFICATIONS: 'notifications',
|
|
} as const;
|
|
|
|
export const APPWRITE_STORAGE_BUCKETS = {
|
|
PROFILE_IMAGES: 'profile-images',
|
|
VEHICLE_IMAGES: 'vehicle-images',
|
|
} as const;
|
|
|