- enum DDL 주석에 영문값 보강(status/role/delivery/usage_type/qt_type/supplier_type) - 견적상태 3종(생성/진행중/마감)으로 정리(ON_HOLD 제거), 배송 PARTNER→SUPPLIER - 대시보드 손질, 관련 테스트·negosium 견적유형 주석 동반 Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
20 lines
551 B
TypeScript
20 lines
551 B
TypeScript
/**
|
|
* Generated by orval v7.21.0 🍺
|
|
* Do not edit manually.
|
|
* Negodata Api Server
|
|
* OpenAPI spec version: 0.1.0
|
|
*/
|
|
import type { DashboardActionList } from './dashboardActionList';
|
|
import type { DashboardEmailUnsent } from './dashboardEmailUnsent';
|
|
|
|
export interface DashboardScope {
|
|
in_progress?: number;
|
|
this_month?: number;
|
|
awarded_this_month?: number;
|
|
deadline_soon?: DashboardActionList;
|
|
email_unsent?: DashboardEmailUnsent;
|
|
awarded?: DashboardActionList;
|
|
equal_bid?: DashboardActionList;
|
|
ruptured?: DashboardActionList;
|
|
}
|