백엔드: GET /v1/dashboard/summary — 회사 전체(company)+내 견적(mine) 스코프로 진행중·이번달생성·마감임박(72h)·메일미발송·동가·결렬 집계(users.company_id 조인, 읽기 전용). 프론트: /dashboard 페이지(KPI 카드 + 액션 위젯, 행 클릭→/quotation?detail= 딥링크), 사이드바·라우트 배선, 루트·로그인 리다이렉트를 /dashboard 로. orval 재생성(useGetDashboardSummary + Dashboard* 타입, QuotationData.creator_name 동기화 포함). Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
17 lines
445 B
TypeScript
17 lines
445 B
TypeScript
/**
|
|
* Generated by orval v7.21.0 🍺
|
|
* Do not edit manually.
|
|
* Negodata Api Server
|
|
* OpenAPI spec version: 0.1.0
|
|
*/
|
|
import type { ErrorInfo } from './errorInfo';
|
|
import type { ResDashboardSummaryMsg } from './resDashboardSummaryMsg';
|
|
import type { DashboardScope } from './dashboardScope';
|
|
|
|
export interface ResDashboardSummary {
|
|
result?: ErrorInfo;
|
|
msg?: ResDashboardSummaryMsg;
|
|
company?: DashboardScope;
|
|
mine?: DashboardScope;
|
|
}
|