@carsayo/types 1.1.841 → 1.1.843

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.
@@ -6,39 +6,44 @@ import { AccidentReportState, RepairShopWorkingStatus } from "./type";
6
6
  * @note 시간은 HHdd형태 (1200, 1230, ...)
7
7
  */
8
8
  export type RepairShopWorkingTime = {
9
- mon?: {
9
+ mon: {
10
10
  start: string;
11
11
  end: string;
12
- };
12
+ } | null;
13
13
  tue?: {
14
14
  start: string;
15
15
  end: string;
16
- };
16
+ } | null;
17
17
  wed?: {
18
18
  start: string;
19
19
  end: string;
20
- };
20
+ } | null;
21
21
  thu?: {
22
22
  start: string;
23
23
  end: string;
24
- };
24
+ } | null;
25
25
  fri?: {
26
26
  start: string;
27
27
  end: string;
28
- };
28
+ } | null;
29
29
  sat?: {
30
30
  start: string;
31
31
  end: string;
32
- };
32
+ } | null;
33
33
  sun?: {
34
34
  start: string;
35
35
  end: string;
36
+ } | null;
37
+ /** 공휴일 */
38
+ holiday?: {
39
+ start: string;
40
+ end: string;
36
41
  };
37
42
  /** 휴게시간 */
38
- breakTime: {
39
- start: Date;
40
- end: Date;
41
- }[];
43
+ break?: {
44
+ start: string;
45
+ end: string;
46
+ };
42
47
  };
43
48
  export type RepairShop = {
44
49
  /** 정비소 Id
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@carsayo/types",
3
- "version": "1.1.841",
3
+ "version": "1.1.843",
4
4
  "description": "Carsayo app type",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",