@carsayo/types 1.1.891718 → 1.1.891719

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.
@@ -53,6 +53,8 @@ export type RepairShop = {
53
53
  id: string;
54
54
  /** 정비소 이름 */
55
55
  name: string;
56
+ /** 정비소 한줄소개 */
57
+ one_line_introduction: string;
56
58
  /** 정비소 설명 */
57
59
  description: string;
58
60
  /** 정비소 대표번호 (전화번호) */
@@ -74,6 +76,20 @@ export type RepairShop = {
74
76
  latitude: number | null;
75
77
  longitude: number | null;
76
78
  };
79
+ /** 정비 항목
80
+ * @example {"사고 수리": { category_2: "사고 차량 전체 수리", id: 1 }}
81
+ */
82
+ service_item: Record<string, {
83
+ category_2: string;
84
+ id: number;
85
+ }>;
86
+ /** tag
87
+ * @example [{title: "카사요 인증", color: "#000000"}]
88
+ */
89
+ verified_tags: {
90
+ title: string;
91
+ color: string;
92
+ }[];
77
93
  /** 공업사 운영 시간
78
94
  * @note 공업사 운영 시간이 없는 경우 null
79
95
  */
@@ -243,6 +259,14 @@ export type Admin_RepairShop = RepairShop & {
243
259
  name: string;
244
260
  contact_number: string;
245
261
  };
262
+ /** 업종
263
+ * @note 입점신청시 선택한 항목입니다.
264
+ */
265
+ business_category: string;
266
+ /** 정비소 주요 서비스
267
+ * @note 입점신청시 선택한 항목입니다.
268
+ */
269
+ business_mainServices: string[];
246
270
  /** 사업자등록증 */
247
271
  businessCertificate: FileInfo | null;
248
272
  /** 자동차관리사업등록증 */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@carsayo/types",
3
- "version": "1.1.891718",
3
+ "version": "1.1.891719",
4
4
  "description": "Carsayo app type",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",