@carsayo/types 1.1.777 → 1.1.781

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.
@@ -22,6 +22,7 @@ export interface Region {
22
22
  sigunguId: SigunguId;
23
23
  sigungu: string | null;
24
24
  }
25
+ /** 카사요 앱에서 발생된 모든 에러 응답은 이 양식을 따릅니다. */
25
26
  export interface CarsayoErrorResponse {
26
27
  /** 에러 코드
27
28
  * @example E-EDFOKD1443
@@ -583,6 +583,62 @@ export interface Admin_MemberListData_V3 extends MemberShort {
583
583
  /** 관리자 정보 */
584
584
  adminInfo: AdminInfo | null;
585
585
  }
586
+ /**
587
+ * @description 어드민 - 회원 리스트 검색 결과 - 탈퇴 회원 정보 추가
588
+ */
589
+ export interface Admin_MemberList_V4 {
590
+ totalCount: number;
591
+ data: Admin_MemberListData_V4[];
592
+ additionalInfo: Admin_MemberList_AdditionalInfo;
593
+ }
594
+ export interface Admin_MemberListData_V4 extends MemberShort {
595
+ /** 앱에서 최종 로그인한 기기 정보입니다
596
+ * @example android | iOS
597
+ */
598
+ device: string | null;
599
+ /** 앱에서 최종 로그인한 기기 정보입니다
600
+ * @example SM-G99N
601
+ */
602
+ model: string | null;
603
+ /** 어드민에서 입력한 메모 내용 */
604
+ memoContent: string | null;
605
+ /** 회원가입방법 */
606
+ signupMethod: MemberSignupMethod;
607
+ /** 밴 먹인 시간 */
608
+ banned_at: Date | null;
609
+ /** 푸시메시지 전송 가능 여부 */
610
+ isFcmToken: boolean;
611
+ /** 회원이 등록된 권한 그룹 리스트 */
612
+ roleGroup: RoleGroupId[];
613
+ /** 타입이 카매니저일 때 정의됩니다 */
614
+ customerInfo?: CustomerInfo;
615
+ /** 타입이 카매니저일 때 정의됩니다 */
616
+ dealerInfo?: Admin_MemberListData_DealerInfo;
617
+ /** 회원 계좌 정보 */
618
+ member_account: MemberAccountInfo | null;
619
+ /** 관리자 정보 */
620
+ adminInfo: AdminInfo | null;
621
+ signoutInfo: SignoutMemberInfo | null;
622
+ }
623
+ /** 탈퇴 회원 정보 */
624
+ export interface SignoutMemberInfo {
625
+ /** 회원탈퇴사유 */
626
+ signoutReason: string | null;
627
+ name_nick: string;
628
+ name_real: string | null;
629
+ phoneNumber: string | null;
630
+ description: string | null;
631
+ birth: string | null;
632
+ gender: MemberGender | null;
633
+ email: string | null;
634
+ isForeigner: boolean | null;
635
+ device: string | null;
636
+ deviceVersion: string | null;
637
+ model: string | null;
638
+ ip: string;
639
+ /** 회원탈퇴시점 */
640
+ signout_at: Date;
641
+ }
586
642
  export interface MemberMemo {
587
643
  memberId: string;
588
644
  writer: MemberShort;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@carsayo/types",
3
- "version": "1.1.777",
3
+ "version": "1.1.781",
4
4
  "description": "Carsayo app type",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",