@carsayo/types 1.1.811 → 1.1.813

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.
@@ -470,22 +470,7 @@ export interface Admin_MemberList_AdditionalInfo {
470
470
  leaseRent: number;
471
471
  };
472
472
  /** 요청시 signupMethod: true일 경우 정의됩니다 */
473
- signupMethodCount?: {
474
- /** 카사요로 가입하기 */
475
- carsayo: number;
476
- /** 네이버 소셜 로그인 */
477
- social_naver: number;
478
- /** 카카오 소셜 로그인 */
479
- social_kakao: number;
480
- /** 구글 소셜 로그인 */
481
- social_google: number;
482
- /** 애플 소셜 로그인 */
483
- social_apple: number;
484
- /** 관리자 생성 */
485
- admin: number;
486
- /** 테스트 계정 */
487
- testing: number;
488
- };
473
+ signupMethodCount?: Record<MemberSignupMethod, number>;
489
474
  }
490
475
  /**
491
476
  * @description 어드민 - 회원 리스트 검색 결과
@@ -69,6 +69,8 @@ export type SearchMemberMode = keyof typeof SearchMemberMode;
69
69
  */
70
70
  export declare const MemberSignupMethod: {
71
71
  readonly carsayo: "carsayo";
72
+ readonly partner_link: "partner_link";
73
+ readonly partner_create_sub: "partner_create_sub";
72
74
  readonly admin: "admin";
73
75
  readonly testing: "testing";
74
76
  readonly social_naver: "social_naver";
@@ -64,6 +64,8 @@ exports.SearchMemberMode = {
64
64
  */
65
65
  exports.MemberSignupMethod = {
66
66
  carsayo: "carsayo",
67
+ partner_link: "partner_link",
68
+ partner_create_sub: "partner_create_sub",
67
69
  admin: "admin",
68
70
  testing: "testing",
69
71
  social_naver: "social_naver",
@@ -13,7 +13,7 @@ export interface PartnersApplicate {
13
13
  /** 연락처 */
14
14
  business_contact_number: string;
15
15
  /** 해당 정보를 통해 가입한 회원 아이디 */
16
- member_id: number | null;
16
+ member_id: string | null;
17
17
  /** 관리자 메모 */
18
18
  admin_memo: string | null;
19
19
  created_at: Date;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@carsayo/types",
3
- "version": "1.1.811",
3
+ "version": "1.1.813",
4
4
  "description": "Carsayo app type",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",