90 lines
1.8 KiB
TypeScript
90 lines
1.8 KiB
TypeScript
// Enums
|
|
export {
|
|
UserRole,
|
|
CardTypeCategory,
|
|
MembershipStatus,
|
|
TimeSlotStatus,
|
|
TimeSlotSource,
|
|
BookingStatus,
|
|
OrderStatus,
|
|
FlashSaleStatus,
|
|
FlashSaleOrderStatus,
|
|
InviteReferralStatus,
|
|
SubscriptionMessageScene,
|
|
} from './enums'
|
|
|
|
// Constants
|
|
export {
|
|
DEFAULT_CANCEL_HOURS_LIMIT,
|
|
DEFAULT_STUDIO_GALLERY_PHOTOS,
|
|
DEFAULT_SLOT_CAPACITY,
|
|
SLOT_GENERATION_DAYS,
|
|
DEFAULT_SCHEDULE_START_HOUR,
|
|
DEFAULT_SCHEDULE_END_HOUR,
|
|
getDefaultTimeSlots,
|
|
TIME_PERIODS,
|
|
DATE_SELECTOR_DAYS,
|
|
WEEKDAY_LABELS,
|
|
SUBSCRIPTION_MESSAGE_REQUEST_RESULTS,
|
|
} from './constants'
|
|
|
|
// Types
|
|
export type {
|
|
User,
|
|
UserProfileResponse,
|
|
UpdateProfileDto,
|
|
UserStatsResponse,
|
|
CardType,
|
|
CreateCardTypeDto,
|
|
UpdateCardTypeDto,
|
|
Membership,
|
|
MembershipWithCardType,
|
|
WeekTemplate,
|
|
WeekTemplateInput,
|
|
TimeSlot,
|
|
TimeSlotWithBookingStatus,
|
|
CreateManualSlotDto,
|
|
ScheduleSlotPreview,
|
|
PublishDaySlotItem,
|
|
PublishDaySlotsDto,
|
|
Booking,
|
|
BookingWithDetails,
|
|
BookingWithUser,
|
|
TeachingScheduleStudent,
|
|
TeachingScheduleSlot,
|
|
BookingStatusHistory,
|
|
CreateBookingDto,
|
|
Order,
|
|
OrderWithDetails,
|
|
CreateOrderDto,
|
|
PaymentParams,
|
|
CreateOrderResponse,
|
|
StudioConfig,
|
|
StudioAssetType,
|
|
UpdateStudioConfigDto,
|
|
CreateStudioUploadCredentialDto,
|
|
StudioUploadCredential,
|
|
ApiResponse,
|
|
PaginatedData,
|
|
PaginatedResponse,
|
|
PaginationQuery,
|
|
FlashSale,
|
|
FlashSaleListItem,
|
|
FlashSaleDetail,
|
|
FlashSaleAdminItem,
|
|
CreateFlashSaleDto,
|
|
UpdateFlashSaleDto,
|
|
FlashSalePurchaseResponse,
|
|
InviteActivityReferral,
|
|
InviteRewardGrantRecord,
|
|
InviteActivitySummary,
|
|
SubscriptionMessageRequestResult,
|
|
SubscriptionMessageRequestItem,
|
|
SubscriptionMessageTemplate,
|
|
SubscriptionMessageTemplateConfig,
|
|
ReportSubscriptionMessageRequestDto,
|
|
SubscriptionMessageConsentSummary,
|
|
} from './types/index'
|
|
|
|
export { FlashSalePhase } from './types/index'
|