@carsayo/types 1.1.89155 → 1.1.89157

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -150,6 +150,8 @@ export declare class ModifyCarColorDTO {
150
150
  description: string | null;
151
151
  /** 카테고리 */
152
152
  category: string | null;
153
+ /** 색상 이미지 URL */
154
+ image_url?: string | null;
153
155
  /** 색상 코드 (주색)
154
156
  * @example "#222"
155
157
  * @note null일 경우 제거
@@ -338,6 +340,8 @@ export interface CreateCarColorDTO {
338
340
  description: string | null;
339
341
  /** 색상 카테고리 */
340
342
  category: string | null;
343
+ /** 색상 이미지 URL */
344
+ image_url?: string;
341
345
  /** 색상 코드 (주색)
342
346
  * @example "#222"
343
347
  */
@@ -623,33 +623,36 @@ export interface MemberMemo {
623
623
  export interface RegisterCar {
624
624
  /** UUID */
625
625
  id: string;
626
- /** 소유자 아이디 */
627
- memberId: string;
628
626
  /**
629
- * @description 자동차 등록번호
630
- * @example 03가0000
627
+ * 쿠콘 차량 정보 (JSON String 형식, 클라이언트에서 파싱해서 사용)
631
628
  */
632
- carName: string;
633
- /** 제조사명(회원 임의입력) */
634
- carMaker: string | null;
635
- /** 차량 모델명(회원 임의입력) */
636
- carModel: string | null;
637
- /** 가입 보험사 */
638
- insuranceCompany: InsuranceCompany | null;
639
- /** 보험 가입일
640
- * @notice ISOString
629
+ car_info: string | null;
630
+ /**
631
+ * 쿠콘 이외 추가 정보 (JSON String 형식, 클라이언트에서 파싱해서 사용)
641
632
  */
642
- insurance_start_date: Date | null;
643
- /** 보험 가입일
644
- * @notice ISOString
633
+ additional_info: Record<string, any> | null;
634
+ /**
635
+ * 개인인지 여부 (true = 개인, false = 법인 등)
636
+ */
637
+ is_individual: boolean;
638
+ /**
639
+ * 대표 차량 여부 (true = 대표 차량)
645
640
  */
646
- insurance_expiration_date: Date | null;
647
- /** 대표차량 여부
648
- * @notice 한 회원당 하나만 가능합니다.
641
+ is_flagship: boolean;
642
+ /**
643
+ * 생성일
649
644
  */
650
- isRepresentative: boolean;
651
645
  created_at: Date;
646
+ /**
647
+ * 수정일
648
+ */
652
649
  updated_at: Date;
650
+ /**
651
+ * 보험 시작일 (선택적 필드)
652
+ */
653
+ insurance_started_at: Date | null;
654
+ /** 보험사 */
655
+ insuranceCompany: InsuranceCompany | null;
653
656
  }
654
657
  export interface Admin_SendMessageParam {
655
658
  id: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@carsayo/types",
3
- "version": "1.1.89155",
3
+ "version": "1.1.89157",
4
4
  "description": "Carsayo app type",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",