@carsayo/types 1.1.892026 → 1.1.892028

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.
@@ -121,3 +121,18 @@ export interface ReqUpdateSellMyCarDealerProfile {
121
121
  */
122
122
  bgImageFileId: string | null | undefined;
123
123
  }
124
+ /** 관리자 > 딜러 파일 업데이트 DTO */
125
+ export interface ReqUpdateSellMyCarDealerFile {
126
+ /** 딜러 Id */
127
+ memberId: string;
128
+ /** 사업자 등록증 파일 Id */
129
+ sell_car_business_certificate_id: string | null;
130
+ /** 사원증 파일 Id */
131
+ sell_car_employee_card_id: string | null;
132
+ /** 내차팔기 신분증 Id */
133
+ sell_car_id_card_id: string | null;
134
+ /** 내차팔기 명함 파일 Id */
135
+ sell_car_name_card_id: string | null;
136
+ /** 무역업 고유번호 파일 Id */
137
+ sell_car_trade_business_reg_file_id: string | null;
138
+ }
@@ -1,3 +1,4 @@
1
+ import { FileInfo } from "../file";
1
2
  import { CurrentDealerPenaltyType } from "./type";
2
3
  /** 관리자 > 경고 조회 데이터 */
3
4
  export interface SellMyCar_Admin_DealerPenalty {
@@ -34,3 +35,51 @@ export interface SellMyCar_Admin_DealerPenalty {
34
35
  /** 수정일시 */
35
36
  updated_at: Date;
36
37
  }
38
+ export interface SellMyCar_Admin_DealerSignupHistory {
39
+ /** 딜러 정보 */
40
+ dealerInfo: {
41
+ id: string;
42
+ /** 사업자 등록번호 */
43
+ business_reg_no: string | null;
44
+ /** 무역업 고유번호 */
45
+ sell_car_trade_business_reg_no: string | null;
46
+ /** 사업자 등록증 파일 */
47
+ file_member_dealer_sell_car_business_certificate_idTofile: FileInfo | null;
48
+ /** 사원증 파일 */
49
+ file_member_dealer_sell_car_employee_card_idTofile: FileInfo | null;
50
+ /** 내차팔기 신분증 */
51
+ file_member_dealer_sell_car_id_card_idTofile: FileInfo | null;
52
+ /** 내차팔기 명함 파일 */
53
+ file_member_dealer_sell_car_name_card_idTofile: FileInfo | null;
54
+ /** 무역업 고유번호 파일 */
55
+ file_member_dealer_sell_car_trade_business_reg_file_idTofile: FileInfo | null;
56
+ };
57
+ /** 알림 발송 이력 */
58
+ history: {
59
+ type: SellMyCar_Admin_DealerSignupHistoryType;
60
+ created_at: Date;
61
+ admin_name: string | null;
62
+ message: string | null;
63
+ }[];
64
+ }
65
+ export declare const SellMyCar_Admin_DealerSignupHistoryType: {
66
+ /** 승인 요청 */
67
+ readonly "signup-requested": "signup-requested";
68
+ /** 승인 완료 */
69
+ readonly "signup-approved": "signup-approved";
70
+ /** 승인 거절 */
71
+ readonly "signup-rejected": "signup-rejected";
72
+ /** 승인 재요청 */
73
+ readonly "re-signup-requested": "re-signup-requested";
74
+ /** 계정 정지 */
75
+ readonly banned: "banned";
76
+ /** 계정 정지 해제 */
77
+ readonly unbanned: "unbanned";
78
+ /** 탈퇴 신청 */
79
+ readonly signout_submitted: "signout-submitted";
80
+ /** 탈퇴 승인 */
81
+ readonly signout_accepted: "signout-accepted";
82
+ /** 탈퇴 거절 */
83
+ readonly signout_rejected: "signout-rejected";
84
+ };
85
+ export type SellMyCar_Admin_DealerSignupHistoryType = (typeof SellMyCar_Admin_DealerSignupHistoryType)[keyof typeof SellMyCar_Admin_DealerSignupHistoryType];
@@ -1,2 +1,23 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.SellMyCar_Admin_DealerSignupHistoryType = void 0;
4
+ exports.SellMyCar_Admin_DealerSignupHistoryType = {
5
+ /** 승인 요청 */
6
+ "signup-requested": "signup-requested",
7
+ /** 승인 완료 */
8
+ "signup-approved": "signup-approved",
9
+ /** 승인 거절 */
10
+ "signup-rejected": "signup-rejected",
11
+ /** 승인 재요청 */
12
+ "re-signup-requested": "re-signup-requested",
13
+ /** 계정 정지 */
14
+ banned: "banned",
15
+ /** 계정 정지 해제 */
16
+ unbanned: "unbanned",
17
+ /** 탈퇴 신청 */
18
+ signout_submitted: "signout-submitted",
19
+ /** 탈퇴 승인 */
20
+ signout_accepted: "signout-accepted",
21
+ /** 탈퇴 거절 */
22
+ signout_rejected: "signout-rejected",
23
+ };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@carsayo/types",
3
- "version": "1.1.892026",
3
+ "version": "1.1.892028",
4
4
  "description": "Carsayo app type",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",