@carsayo/types 1.1.891784 → 1.1.891786
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.
|
@@ -529,11 +529,14 @@ export interface RepairBidDescription {
|
|
|
529
529
|
/** 생성/수정 일시 */
|
|
530
530
|
updated_at: Date;
|
|
531
531
|
}
|
|
532
|
+
/** 서버에서 조회한 서비스 가능 지역 데이터 */
|
|
533
|
+
export interface RepairServiceAvailableRegionData {
|
|
534
|
+
엔진오일_출장정비_국산: RepairServiceAvailableRegion[];
|
|
535
|
+
엔진오일_출장정비_수입: RepairServiceAvailableRegion[];
|
|
536
|
+
}
|
|
532
537
|
/** 수리 가능 지역 정보 */
|
|
533
538
|
export interface RepairServiceAvailableRegion {
|
|
534
539
|
name: string;
|
|
535
540
|
/** undefined일 경우 "전 지역" */
|
|
536
541
|
subregions?: RepairServiceAvailableRegion[] | null;
|
|
537
|
-
/** 제외할 하위 지역이 없으면 undefined */
|
|
538
|
-
exclusions?: string[] | null;
|
|
539
542
|
}
|