@carsayo/types 1.1.818 → 1.1.820

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.
@@ -0,0 +1,26 @@
1
+ import { MemberGender } from "../member";
2
+ /** 일반회원 - 사고접수 등록 */
3
+ export interface AccidentReportCreateDTO {
4
+ /** 접수자 본명 */
5
+ info_name: string;
6
+ /** 접수자 전화번호 */
7
+ info_phoneNumber: string;
8
+ /** 접수자 생년월일
9
+ * @example 19930424 */
10
+ info_birth: string;
11
+ /** 접수자 성별 */
12
+ info_gender: MemberGender;
13
+ /** 차량 이름
14
+ * @description 차량 번호 또는 이름 */
15
+ carName: string;
16
+ /** 보험사 아이디 */
17
+ insuranceCompany: number;
18
+ /** 견인 여부 옵션 */
19
+ option_traction: boolean;
20
+ /** 사고 위치 - 위도 */
21
+ latitude: number;
22
+ /** 사고 위치 - 경도 */
23
+ longitude: number;
24
+ /** 협력 정비소 아이디 */
25
+ partner_repairshop_id: string;
26
+ }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -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);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@carsayo/types",
3
- "version": "1.1.818",
3
+ "version": "1.1.820",
4
4
  "description": "Carsayo app type",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",