@carsayo/types 1.1.891785 → 1.1.891787
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,9 +529,19 @@ 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 {
|
|
539
|
+
/** 시도 */
|
|
534
540
|
name: string;
|
|
535
|
-
/** undefined일 경우 "전 지역"
|
|
536
|
-
|
|
541
|
+
/** undefined일 경우 "전 지역"
|
|
542
|
+
* @note 시군구
|
|
543
|
+
*/
|
|
544
|
+
subregions?: {
|
|
545
|
+
name: string;
|
|
546
|
+
} | null;
|
|
537
547
|
}
|