- 소유권 게이팅(common/authz): 변경 액션 본인∪OWNER, 협력사 삭제 OWNER 전용 - 견적 수동 낙찰(award) + 작성자명(creatorName) 표시 + 전화번호 입력 컴포넌트 + 카드 엑셀 업로드 - supplier_type 은 이번 커밋 미변경(다음 커밋에서 코드부터 정리 예정) Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
30 lines
1.1 KiB
TypeScript
30 lines
1.1 KiB
TypeScript
/**
|
|
* Generated by orval v7.21.0 🍺
|
|
* Do not edit manually.
|
|
* Negodata Api Server
|
|
* OpenAPI spec version: 0.1.0
|
|
*/
|
|
import type { SupplierDataCreatorName } from './supplierDataCreatorName';
|
|
import type { SupplierDataCode } from './supplierDataCode';
|
|
import type { SupplierDataManagerName } from './supplierDataManagerName';
|
|
import type { SupplierDataManagerEmail } from './supplierDataManagerEmail';
|
|
import type { SupplierDataManagerContactNumber } from './supplierDataManagerContactNumber';
|
|
import type { SupplierDataTotalRevenue } from './supplierDataTotalRevenue';
|
|
import type { SupplierDataCreatedAt } from './supplierDataCreatedAt';
|
|
import type { SupplierDataUpdatedAt } from './supplierDataUpdatedAt';
|
|
|
|
export interface SupplierData {
|
|
supplier_id: string;
|
|
company_id: string;
|
|
user_id: string;
|
|
creator_name?: SupplierDataCreatorName;
|
|
name: string;
|
|
code?: SupplierDataCode;
|
|
manager_name?: SupplierDataManagerName;
|
|
manager_email?: SupplierDataManagerEmail;
|
|
manager_contact_number?: SupplierDataManagerContactNumber;
|
|
total_revenue?: SupplierDataTotalRevenue;
|
|
created_at?: SupplierDataCreatedAt;
|
|
updated_at?: SupplierDataUpdatedAt;
|
|
}
|