@carsayo/types 1.1.838 → 1.1.840

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.
@@ -156,6 +156,10 @@ export interface AccidentReport {
156
156
  info_repair_finish?: AccidentReportData_Repair_Finish;
157
157
  /** 리뷰 정보 */
158
158
  review: AccidentReport_Review | null;
159
+ /** 파트너스 납부 수수료
160
+ * @note 주문 종료 시점에 공업사가 납부하여야 하는 계산된 금액
161
+ */
162
+ commissionAmount: number | null;
159
163
  /** 생성 일시 */
160
164
  created_at: Date;
161
165
  /** 수정 일시 */
@@ -4,6 +4,7 @@
4
4
  * @combined 접근할 수 없는 계정입니다
5
5
  * @missing 연락 두절 상태를 의미합니다
6
6
  * @deleted 탈퇴된 계정입니다
7
+ * @pending 보험 승인대기 상태
7
8
  */
8
9
  export declare const MemberState: {
9
10
  readonly activate: "activate";
@@ -11,6 +12,7 @@ export declare const MemberState: {
11
12
  readonly banned: "banned";
12
13
  readonly missing: "missing";
13
14
  readonly signout: "signout";
15
+ readonly pending: "pending";
14
16
  };
15
17
  export type MemberState = keyof typeof MemberState;
16
18
  export declare const MemberGender: {
@@ -78,5 +80,6 @@ export declare const MemberSignupMethod: {
78
80
  readonly social_kakao: "social_kakao";
79
81
  readonly social_google: "social_google";
80
82
  readonly social_apple: "social_apple";
83
+ readonly insurance: "insurance";
81
84
  };
82
85
  export type MemberSignupMethod = keyof typeof MemberSignupMethod;
@@ -7,6 +7,7 @@ exports.MemberSignupMethod = exports.SearchMemberMode = exports.SearchMemberSort
7
7
  * @combined 접근할 수 없는 계정입니다
8
8
  * @missing 연락 두절 상태를 의미합니다
9
9
  * @deleted 탈퇴된 계정입니다
10
+ * @pending 보험 승인대기 상태
10
11
  */
11
12
  exports.MemberState = {
12
13
  activate: "activate",
@@ -14,6 +15,7 @@ exports.MemberState = {
14
15
  banned: "banned",
15
16
  missing: "missing",
16
17
  signout: "signout",
18
+ pending: "pending",
17
19
  };
18
20
  exports.MemberGender = {
19
21
  male: "male",
@@ -73,4 +75,5 @@ exports.MemberSignupMethod = {
73
75
  social_kakao: "social_kakao",
74
76
  social_google: "social_google",
75
77
  social_apple: "social_apple",
78
+ insurance: "insurance",
76
79
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@carsayo/types",
3
- "version": "1.1.838",
3
+ "version": "1.1.840",
4
4
  "description": "Carsayo app type",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",