2025-12-12 14:35:19 +09:00
|
|
|
import type { infer as ZodInfer } from "zod";
|
|
|
|
|
import type {
|
2025-10-21 13:21:03 +09:00
|
|
|
activityTypeSchema,
|
|
|
|
|
activitySchema,
|
|
|
|
|
dashboardStatsSchema,
|
|
|
|
|
nextInvoiceSchema,
|
|
|
|
|
dashboardSummarySchema,
|
|
|
|
|
dashboardErrorSchema,
|
|
|
|
|
activityFilterSchema,
|
|
|
|
|
activityFilterConfigSchema,
|
|
|
|
|
dashboardSummaryResponseSchema,
|
2025-12-10 15:22:10 +09:00
|
|
|
} from "./schema.js";
|
2025-10-21 13:21:03 +09:00
|
|
|
|
2025-12-12 14:35:19 +09:00
|
|
|
export type ActivityType = ZodInfer<typeof activityTypeSchema>;
|
|
|
|
|
export type Activity = ZodInfer<typeof activitySchema>;
|
|
|
|
|
export type DashboardStats = ZodInfer<typeof dashboardStatsSchema>;
|
|
|
|
|
export type NextInvoice = ZodInfer<typeof nextInvoiceSchema>;
|
|
|
|
|
export type DashboardSummary = ZodInfer<typeof dashboardSummarySchema>;
|
|
|
|
|
export type DashboardError = ZodInfer<typeof dashboardErrorSchema>;
|
|
|
|
|
export type ActivityFilter = ZodInfer<typeof activityFilterSchema>;
|
|
|
|
|
export type ActivityFilterConfig = ZodInfer<typeof activityFilterConfigSchema>;
|
|
|
|
|
export type DashboardSummaryResponse = ZodInfer<typeof dashboardSummaryResponseSchema>;
|