@carsayo/types 1.1.819 → 1.1.821

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.
@@ -1,2 +1,3 @@
1
+ export * from "./dto";
1
2
  export * from "./interface";
2
3
  export * from "./type";
@@ -14,6 +14,6 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
14
14
  for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
15
15
  };
16
16
  Object.defineProperty(exports, "__esModule", { value: true });
17
- // export * from "./dto";
17
+ __exportStar(require("./dto"), exports);
18
18
  __exportStar(require("./interface"), exports);
19
19
  __exportStar(require("./type"), exports);
@@ -3,3 +3,14 @@ export declare const RepairShopWorkingStatus: {
3
3
  closed: string;
4
4
  };
5
5
  export type RepairShopWorkingStatus = keyof typeof RepairShopWorkingStatus;
6
+ export declare const AccidentReportState: {
7
+ /** 접수 */
8
+ readonly submitted: "submitted";
9
+ /** 접수 완료 */
10
+ readonly accepted: "accepted";
11
+ /** 취소 */
12
+ readonly canceled: "canceled";
13
+ /** 완료 */
14
+ readonly finished: "finished";
15
+ };
16
+ export type AccidentReportState = keyof typeof AccidentReportState;
@@ -1,7 +1,17 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.RepairShopWorkingStatus = void 0;
3
+ exports.AccidentReportState = exports.RepairShopWorkingStatus = void 0;
4
4
  exports.RepairShopWorkingStatus = {
5
5
  open: "open",
6
6
  closed: "closed",
7
7
  };
8
+ exports.AccidentReportState = {
9
+ /** 접수 */
10
+ submitted: "submitted",
11
+ /** 접수 완료 */
12
+ accepted: "accepted",
13
+ /** 취소 */
14
+ canceled: "canceled",
15
+ /** 완료 */
16
+ finished: "finished",
17
+ };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@carsayo/types",
3
- "version": "1.1.819",
3
+ "version": "1.1.821",
4
4
  "description": "Carsayo app type",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",