| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165 |
- /**
- * API type definitions - Centralized exports
- */
- // Admin management types
- export type {
- AdminPermission,
- AdminPermissionAddRequest,
- AdminPermissionEditRequest,
- AdminPermissionEditResponse,
- AdminPermissionPageRequest,
- AdminPermissionPageResponse,
- AdminRole,
- AdminRoleAddRequest,
- AdminRoleEditRequest,
- AdminRoleEditResponse,
- AdminRolePageRequest,
- AdminRolePageResponse,
- AdminUser,
- AdminUserAddRequest,
- AdminUserEditRequest,
- AdminUserEditResponse,
- AdminUserPageRequest,
- AdminUserPageResponse,
- } from "./admin";
- // Authentication types
- export type {
- ImageVcodeRequest,
- ImageVcodeResponse,
- LoginRequest,
- LoginResponse,
- User,
- UserInfoResponse,
- } from "./auth";
- // Banner config types
- export type {
- BannerConfigAdminDTO,
- BannerConfigAdminQuery,
- IdListReq,
- IdReq,
- PagerBannerConfigAdminDTO,
- } from "./bannerConfig";
- // Base config types
- export type {
- BaseConfigAdminDTO,
- BaseConfigAdminPageResponse,
- BaseConfigAdminQuery,
- } from "./baseConfig";
- // Base country types
- export type {
- BaseCountryAdminDTO,
- BaseCountryAdminQuery,
- BaseCountryI18n,
- PagerBaseCountryAdminDTO,
- } from "./baseCountry";
- // Base exchange config types
- export type {
- BaseExchangeConfigAdminDTO,
- BaseExchangeConfigAdminQuery,
- PagerBaseExchangeConfigAdminDTO,
- } from "./baseExchangeConfig";
- // Base exchange expand config types (兑换限制配置)
- export type {
- BaseExchangeExpandConfigAdminDTO,
- BaseExchangeExpandConfigAdminQuery,
- PagerBaseExchangeExpandConfigAdminDTO,
- } from "./baseExchangeExpandConfig";
- // Biz Category config types
- export type {
- BizCategoryConfigAdminDTO,
- BizCategoryConfigListResponse,
- I18nTextSub,
- } from "./bizCategory";
- // Common types
- export type {
- ListResponse,
- PaginationParams,
- PaginationResponse,
- QuerySort,
- } from "./common";
- // Global consts types
- export type { ConstItem, ConstItemsMap, ConstsAdminDTO } from "./consts";
- // Doc config types
- export type {
- DocConfigAdminDTO,
- DocConfigAdminQuery,
- PagerDocConfigAdminDTO,
- } from "./docConfig";
- // Feedback types
- export type {
- FeedbackAdminDTO,
- FeedbackAdminQuery,
- PagerFeedbackAdminDTO,
- } from "./feedback";
- // 首页 Dashboard 统计相关类型
- export type {
- CategoryPercentageAdminDTO,
- DailyTrendAdminDTO,
- IndexDateRangeAdminQuery,
- IndicatorCardAdminDTO,
- RevenueByCategoryAdminDTO,
- } from "./indexStat";
- // Operation log types
- export type {
- OperationLog,
- OperationLogPageRequest,
- OperationLogPageResponse,
- } from "./operationLog";
- // Order refund apply types
- export type {
- FileAttachment,
- PagerSkillOrderRefundApplyAdminDTO,
- SkillOrderRefundApplyAdminDTO,
- SkillOrderRefundApplyAdminQuery,
- SkillOrderRefundApplyApprovalAdminDTO,
- SkillOrderRefundApplyDetailAdminDTO,
- } from "./order";
- // Playmate types
- export type {
- PagerPlaymateUserAdminDto,
- PlaymateAdminQuery,
- PlaymateUserAdminDto,
- SkillInfoAdminDto,
- } from "./playmate";
- // Report user types
- export type {
- IdDTOString,
- ObjectIdLike,
- PagerReportUserAdminDTO,
- ReportUserAdminDTO,
- ReportUserAdminQuery,
- } from "./reportUser";
- // Upload types
- export type { S3SimpleSignRequest, S3SimpleSignResponse } from "./upload";
- // User types
- export type {
- EditPlaymateInfoAdminQuery,
- PagerUserInfoAdminDTO,
- UserInfoAdminDTO,
- UserInfoAdminQuery,
- UserInfoDetailAdminQuery,
- UserInfoFullAdminDTO,
- UserWalletDiamondAdminDTO,
- } from "./user";
- // User random profile types
- export type {
- PagerUserRandomProfileAdminDTO,
- UserRandomProfileAdminDTO,
- UserRandomProfileAdminQuery,
- } from "./userRandomProfile";
- // Wallet types
- export type {
- PagerWalletDiamondRecordAdminDTO,
- PagerWalletGoldBeanRecordAdminDTO,
- PagerWalletGoldCoinRecordAdminDTO,
- PagerWalletRechargeConfigAdminDTO,
- PagerWalletRecordAdminDTO,
- WalletDiamondRecordAdminQuery,
- WalletGoldBeanRecordAdminQuery,
- WalletGoldCoinRecordAdminQuery,
- WalletRechargeConfigAdminDTO,
- WalletRechargeConfigAdminQuery,
- WalletRecordAdminDTO,
- WalletRecordAdminQuery,
- } from "./wallet";
|