- 라우팅 react-router v7, 서버상태 TanStack Query - orval 자동 생성 API 클라이언트(src/api/generated) - 견적/상품/협력사/견적설정 페이지, shadcn UI, 토큰(tokens.css) - 실행: 루트 docker compose (front :3001), README 그에 맞게 정리 - AI Studio 스캐폴드 잔재 제거(metadata.json, 중복 DESIGN_TOKENS.md), 타이틀 NegoData, vite.config 죽은코드 제거 Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
23 lines
862 B
TypeScript
23 lines
862 B
TypeScript
/**
|
|
* Generated by orval v7.21.0 🍺
|
|
* Do not edit manually.
|
|
* Negodata Api Server
|
|
* OpenAPI spec version: 0.1.0
|
|
*/
|
|
import type { QuotationCardDataQtId } from "./quotationCardDataQtId";
|
|
import type { QuotationCardDataNegoCardId } from "./quotationCardDataNegoCardId";
|
|
import type { QuotationCardDataWildCardId } from "./quotationCardDataWildCardId";
|
|
import type { QuotationCardDataType } from "./quotationCardDataType";
|
|
import type { QuotationCardDataName } from "./quotationCardDataName";
|
|
import type { QuotationCardDataScript } from "./quotationCardDataScript";
|
|
|
|
export interface QuotationCardData {
|
|
session_card_id: string;
|
|
qt_id?: QuotationCardDataQtId;
|
|
nego_card_id?: QuotationCardDataNegoCardId;
|
|
wild_card_id?: QuotationCardDataWildCardId;
|
|
type?: QuotationCardDataType;
|
|
name?: QuotationCardDataName;
|
|
script?: QuotationCardDataScript;
|
|
}
|