- 협상대화: 사용 카드 번호/멘트(Slate 서식본)/와일드 조건·메모 표시, SlateRenderer
밑줄·헥스색·{변수} 치환 보정, 말풍선 우측정렬·발신자 아바타 제거
- 견적상세 헤더: DB 컬럼명 라벨 제거, 견적정보/(진행상태+세팅)/상품(이미지) 2열 재배치,
협상카드 탭에 사용 카드 수 표시
- DataTable 행 패딩 축소, 협력사명 아바타 제거, 카드관리 본인 카드 안내문
- orval 재생성(QuotationCardData 신규 필드)
Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
22 lines
918 B
TypeScript
22 lines
918 B
TypeScript
/**
|
|
* Generated by orval v7.21.0 🍺
|
|
* Do not edit manually.
|
|
* Negodata Api Server
|
|
* OpenAPI spec version: 0.1.0
|
|
*/
|
|
import type { ReqUpdateSupplierName } from './reqUpdateSupplierName';
|
|
import type { ReqUpdateSupplierCode } from './reqUpdateSupplierCode';
|
|
import type { ReqUpdateSupplierManagerName } from './reqUpdateSupplierManagerName';
|
|
import type { ReqUpdateSupplierManagerEmail } from './reqUpdateSupplierManagerEmail';
|
|
import type { ReqUpdateSupplierManagerContactNumber } from './reqUpdateSupplierManagerContactNumber';
|
|
import type { ReqUpdateSupplierPriority } from './reqUpdateSupplierPriority';
|
|
|
|
export interface ReqUpdateSupplier {
|
|
name?: ReqUpdateSupplierName;
|
|
code?: ReqUpdateSupplierCode;
|
|
manager_name?: ReqUpdateSupplierManagerName;
|
|
manager_email?: ReqUpdateSupplierManagerEmail;
|
|
manager_contact_number?: ReqUpdateSupplierManagerContactNumber;
|
|
priority?: ReqUpdateSupplierPriority;
|
|
}
|