@carsayo/types 1.1.891782 → 1.1.891784

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.
@@ -450,6 +450,11 @@ export interface RepairProgress {
450
450
  * @example 보험 차감금액이 "50000"이면 "-50000"을 저장
451
451
  */
452
452
  보험: number;
453
+ additionalPrice?: {
454
+ 견인: RepairEstimate["additionalPrice"]["견인"] | null;
455
+ 픽업: RepairEstimate["additionalPrice"]["픽업"] | null;
456
+ 딜리버리: RepairEstimate["additionalPrice"]["딜리버리"] | null;
457
+ };
453
458
  /** 총 비용
454
459
  * @note VAT 포함 가격
455
460
  */
@@ -524,3 +529,11 @@ export interface RepairBidDescription {
524
529
  /** 생성/수정 일시 */
525
530
  updated_at: Date;
526
531
  }
532
+ /** 수리 가능 지역 정보 */
533
+ export interface RepairServiceAvailableRegion {
534
+ name: string;
535
+ /** undefined일 경우 "전 지역" */
536
+ subregions?: RepairServiceAvailableRegion[] | null;
537
+ /** 제외할 하위 지역이 없으면 undefined */
538
+ exclusions?: string[] | null;
539
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@carsayo/types",
3
- "version": "1.1.891782",
3
+ "version": "1.1.891784",
4
4
  "description": "Carsayo app type",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",