@carsayo/types 1.1.892080 → 1.1.892082

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.
Files changed (227) hide show
  1. package/dist/data/bankcode.d.ts +167 -0
  2. package/dist/data/bankcode.js +66 -0
  3. package/dist/data/board.d.ts +74 -0
  4. package/dist/data/board.js +56 -0
  5. package/dist/data/car.d.ts +822 -0
  6. package/dist/data/car.js +895 -0
  7. package/dist/data/carOptionRelationCategory.d.ts +20 -0
  8. package/dist/data/carOptionRelationCategory.js +28 -0
  9. package/dist/data/carPopularCategory.d.ts +20 -0
  10. package/dist/data/carPopularCategory.js +28 -0
  11. package/dist/data/collaborator.d.ts +9 -0
  12. package/dist/data/collaborator.js +18 -0
  13. package/dist/data/index.d.ts +11 -0
  14. package/dist/data/index.js +27 -0
  15. package/dist/data/purchase.d.ts +18 -0
  16. package/dist/data/purchase.js +25 -0
  17. package/dist/data/region.d.ts +1226 -0
  18. package/dist/data/region.js +267 -0
  19. package/dist/data/role.d.ts +121 -0
  20. package/dist/data/role.js +150 -0
  21. package/dist/data/sell_car.d.ts +57 -0
  22. package/dist/data/sell_car.js +71 -0
  23. package/dist/data/system.d.ts +19 -0
  24. package/dist/data/system.js +28 -0
  25. package/dist/data/term.d.ts +349 -0
  26. package/dist/data/term.js +395 -0
  27. package/dist/index.d.ts +2 -0
  28. package/dist/index.js +18 -0
  29. package/dist/types/index.d.ts +2 -0
  30. package/dist/types/index.js +18 -0
  31. package/dist/types/modules/accidentReport/dto.d.ts +73 -0
  32. package/dist/types/modules/accidentReport/dto.js +2 -0
  33. package/dist/types/modules/accidentReport/index.d.ts +3 -0
  34. package/dist/types/modules/accidentReport/index.js +19 -0
  35. package/dist/types/modules/accidentReport/interface.d.ts +309 -0
  36. package/dist/types/modules/accidentReport/interface.js +2 -0
  37. package/dist/types/modules/accidentReport/type.d.ts +36 -0
  38. package/dist/types/modules/accidentReport/type.js +35 -0
  39. package/dist/types/modules/board/dto.d.ts +189 -0
  40. package/dist/types/modules/board/dto.js +3 -0
  41. package/dist/types/modules/board/index.d.ts +3 -0
  42. package/dist/types/modules/board/index.js +19 -0
  43. package/dist/types/modules/board/interface.d.ts +233 -0
  44. package/dist/types/modules/board/interface.js +2 -0
  45. package/dist/types/modules/board/type.d.ts +30 -0
  46. package/dist/types/modules/board/type.js +8 -0
  47. package/dist/types/modules/car/dto.d.ts +404 -0
  48. package/dist/types/modules/car/dto.js +15 -0
  49. package/dist/types/modules/car/index.d.ts +3 -0
  50. package/dist/types/modules/car/index.js +19 -0
  51. package/dist/types/modules/car/interface.d.ts +594 -0
  52. package/dist/types/modules/car/interface.js +2 -0
  53. package/dist/types/modules/car/type.d.ts +11 -0
  54. package/dist/types/modules/car/type.js +13 -0
  55. package/dist/types/modules/chat/constants.d.ts +2 -0
  56. package/dist/types/modules/chat/constants.js +5 -0
  57. package/dist/types/modules/chat/dto.d.ts +4 -0
  58. package/dist/types/modules/chat/dto.js +2 -0
  59. package/dist/types/modules/chat/index.d.ts +6 -0
  60. package/dist/types/modules/chat/index.js +22 -0
  61. package/dist/types/modules/chat/type.d.ts +117 -0
  62. package/dist/types/modules/chat/type.js +17 -0
  63. package/dist/types/modules/chat/type.opponent.additionalInfo.d.ts +7 -0
  64. package/dist/types/modules/chat/type.opponent.additionalInfo.js +2 -0
  65. package/dist/types/modules/chat/type.room.additionalInfo.d.ts +52 -0
  66. package/dist/types/modules/chat/type.room.additionalInfo.js +2 -0
  67. package/dist/types/modules/chat/type.socket.d.ts +46 -0
  68. package/dist/types/modules/chat/type.socket.js +2 -0
  69. package/dist/types/modules/collaborator/dto.d.ts +10 -0
  70. package/dist/types/modules/collaborator/dto.js +3 -0
  71. package/dist/types/modules/collaborator/index.d.ts +1 -0
  72. package/dist/types/modules/collaborator/index.js +17 -0
  73. package/dist/types/modules/common/enum.d.ts +65 -0
  74. package/dist/types/modules/common/enum.js +69 -0
  75. package/dist/types/modules/common/index.d.ts +3 -0
  76. package/dist/types/modules/common/index.js +19 -0
  77. package/dist/types/modules/common/interface.d.ts +40 -0
  78. package/dist/types/modules/common/interface.js +2 -0
  79. package/dist/types/modules/common/type.d.ts +14 -0
  80. package/dist/types/modules/common/type.js +13 -0
  81. package/dist/types/modules/data/dto.d.ts +4 -0
  82. package/dist/types/modules/data/dto.js +7 -0
  83. package/dist/types/modules/data/index.d.ts +2 -0
  84. package/dist/types/modules/data/index.js +18 -0
  85. package/dist/types/modules/data/interface.d.ts +6 -0
  86. package/dist/types/modules/data/interface.js +2 -0
  87. package/dist/types/modules/file/dto.d.ts +18 -0
  88. package/dist/types/modules/file/dto.js +3 -0
  89. package/dist/types/modules/file/index.d.ts +3 -0
  90. package/dist/types/modules/file/index.js +19 -0
  91. package/dist/types/modules/file/interface.d.ts +26 -0
  92. package/dist/types/modules/file/interface.js +2 -0
  93. package/dist/types/modules/file/type.d.ts +13 -0
  94. package/dist/types/modules/file/type.js +15 -0
  95. package/dist/types/modules/history/dto.d.ts +13 -0
  96. package/dist/types/modules/history/dto.js +3 -0
  97. package/dist/types/modules/history/index.d.ts +2 -0
  98. package/dist/types/modules/history/index.js +18 -0
  99. package/dist/types/modules/history/interface.d.ts +12 -0
  100. package/dist/types/modules/history/interface.js +2 -0
  101. package/dist/types/modules/index.d.ts +20 -0
  102. package/dist/types/modules/index.js +36 -0
  103. package/dist/types/modules/inquiry/dto.d.ts +79 -0
  104. package/dist/types/modules/inquiry/dto.js +2 -0
  105. package/dist/types/modules/inquiry/index.d.ts +3 -0
  106. package/dist/types/modules/inquiry/index.js +19 -0
  107. package/dist/types/modules/inquiry/interface.d.ts +37 -0
  108. package/dist/types/modules/inquiry/interface.js +2 -0
  109. package/dist/types/modules/inquiry/type.d.ts +14 -0
  110. package/dist/types/modules/inquiry/type.js +15 -0
  111. package/dist/types/modules/insurance/dto.d.ts +88 -0
  112. package/dist/types/modules/insurance/dto.js +3 -0
  113. package/dist/types/modules/insurance/index.d.ts +2 -0
  114. package/dist/types/modules/insurance/index.js +18 -0
  115. package/dist/types/modules/insurance/interface.d.ts +58 -0
  116. package/dist/types/modules/insurance/interface.js +2 -0
  117. package/dist/types/modules/member/dto.d.ts +677 -0
  118. package/dist/types/modules/member/dto.js +3 -0
  119. package/dist/types/modules/member/index.d.ts +3 -0
  120. package/dist/types/modules/member/index.js +19 -0
  121. package/dist/types/modules/member/interface.d.ts +696 -0
  122. package/dist/types/modules/member/interface.js +2 -0
  123. package/dist/types/modules/member/type.d.ts +92 -0
  124. package/dist/types/modules/member/type.js +86 -0
  125. package/dist/types/modules/message/dto.d.ts +15 -0
  126. package/dist/types/modules/message/dto.js +2 -0
  127. package/dist/types/modules/message/index.d.ts +3 -0
  128. package/dist/types/modules/message/index.js +19 -0
  129. package/dist/types/modules/message/interface.d.ts +20 -0
  130. package/dist/types/modules/message/interface.js +2 -0
  131. package/dist/types/modules/message/type.d.ts +22 -0
  132. package/dist/types/modules/message/type.js +22 -0
  133. package/dist/types/modules/notification/dto.d.ts +13 -0
  134. package/dist/types/modules/notification/dto.js +3 -0
  135. package/dist/types/modules/notification/index.d.ts +3 -0
  136. package/dist/types/modules/notification/index.js +19 -0
  137. package/dist/types/modules/notification/interface.d.ts +19 -0
  138. package/dist/types/modules/notification/interface.js +2 -0
  139. package/dist/types/modules/notification/type.d.ts +5 -0
  140. package/dist/types/modules/notification/type.js +7 -0
  141. package/dist/types/modules/order/dto.d.ts +446 -0
  142. package/dist/types/modules/order/dto.js +16 -0
  143. package/dist/types/modules/order/index.d.ts +3 -0
  144. package/dist/types/modules/order/index.js +19 -0
  145. package/dist/types/modules/order/interface.d.ts +913 -0
  146. package/dist/types/modules/order/interface.js +2 -0
  147. package/dist/types/modules/order/type.d.ts +160 -0
  148. package/dist/types/modules/order/type.js +147 -0
  149. package/dist/types/modules/partners/dto.d.ts +37 -0
  150. package/dist/types/modules/partners/dto.js +11 -0
  151. package/dist/types/modules/partners/index.d.ts +3 -0
  152. package/dist/types/modules/partners/index.js +19 -0
  153. package/dist/types/modules/partners/interface.d.ts +40 -0
  154. package/dist/types/modules/partners/interface.js +2 -0
  155. package/dist/types/modules/partners/type.d.ts +12 -0
  156. package/dist/types/modules/partners/type.js +13 -0
  157. package/dist/types/modules/repair/constant.d.ts +28 -0
  158. package/dist/types/modules/repair/constant.js +139 -0
  159. package/dist/types/modules/repair/dto.d.ts +96 -0
  160. package/dist/types/modules/repair/dto.js +2 -0
  161. package/dist/types/modules/repair/index.d.ts +4 -0
  162. package/dist/types/modules/repair/index.js +20 -0
  163. package/dist/types/modules/repair/interface.d.ts +659 -0
  164. package/dist/types/modules/repair/interface.js +2 -0
  165. package/dist/types/modules/repair/type.d.ts +64 -0
  166. package/dist/types/modules/repair/type.js +71 -0
  167. package/dist/types/modules/sellMyCar/constant.d.ts +54 -0
  168. package/dist/types/modules/sellMyCar/constant.js +117 -0
  169. package/dist/types/modules/sellMyCar/dto-admin.d.ts +259 -0
  170. package/dist/types/modules/sellMyCar/dto-admin.js +2 -0
  171. package/dist/types/modules/sellMyCar/dto.d.ts +186 -0
  172. package/dist/types/modules/sellMyCar/dto.js +15 -0
  173. package/dist/types/modules/sellMyCar/index.d.ts +9 -0
  174. package/dist/types/modules/sellMyCar/index.js +25 -0
  175. package/dist/types/modules/sellMyCar/interface-admin.d.ts +85 -0
  176. package/dist/types/modules/sellMyCar/interface-admin.js +23 -0
  177. package/dist/types/modules/sellMyCar/interface-faq.d.ts +52 -0
  178. package/dist/types/modules/sellMyCar/interface-faq.js +22 -0
  179. package/dist/types/modules/sellMyCar/interface-member.d.ts +252 -0
  180. package/dist/types/modules/sellMyCar/interface-member.js +16 -0
  181. package/dist/types/modules/sellMyCar/interface-notice.d.ts +28 -0
  182. package/dist/types/modules/sellMyCar/interface-notice.js +2 -0
  183. package/dist/types/modules/sellMyCar/interface.d.ts +1075 -0
  184. package/dist/types/modules/sellMyCar/interface.js +7 -0
  185. package/dist/types/modules/sellMyCar/type.d.ts +203 -0
  186. package/dist/types/modules/sellMyCar/type.js +199 -0
  187. package/dist/types/modules/system/dto.d.ts +13 -0
  188. package/dist/types/modules/system/dto.js +3 -0
  189. package/dist/types/modules/system/index.d.ts +2 -0
  190. package/dist/types/modules/system/index.js +18 -0
  191. package/dist/types/modules/system/interface.d.ts +18 -0
  192. package/dist/types/modules/system/interface.js +2 -0
  193. package/dist/types/modules/term/dto.d.ts +171 -0
  194. package/dist/types/modules/term/dto.js +3 -0
  195. package/dist/types/modules/term/index.d.ts +3 -0
  196. package/dist/types/modules/term/index.js +19 -0
  197. package/dist/types/modules/term/interface.d.ts +52 -0
  198. package/dist/types/modules/term/interface.js +2 -0
  199. package/dist/types/modules/term/type.d.ts +11 -0
  200. package/dist/types/modules/term/type.js +13 -0
  201. package/dist/types/providers/coocon-usedcar/constant.d.ts +46 -0
  202. package/dist/types/providers/coocon-usedcar/constant.js +673 -0
  203. package/dist/types/providers/coocon-usedcar/dto.d.ts +23 -0
  204. package/dist/types/providers/coocon-usedcar/dto.js +3 -0
  205. package/dist/types/providers/coocon-usedcar/index.d.ts +3 -0
  206. package/dist/types/providers/coocon-usedcar/index.js +19 -0
  207. package/dist/types/providers/coocon-usedcar/interface.d.ts +305 -0
  208. package/dist/types/providers/coocon-usedcar/interface.js +2 -0
  209. package/dist/types/providers/firebase-message/dto.d.ts +56 -0
  210. package/dist/types/providers/firebase-message/dto.js +3 -0
  211. package/dist/types/providers/firebase-message/index.d.ts +2 -0
  212. package/dist/types/providers/firebase-message/index.js +18 -0
  213. package/dist/types/providers/firebase-message/interface.d.ts +4 -0
  214. package/dist/types/providers/firebase-message/interface.js +2 -0
  215. package/dist/types/providers/gabia-sms/dto.d.ts +31 -0
  216. package/dist/types/providers/gabia-sms/dto.js +3 -0
  217. package/dist/types/providers/gabia-sms/index.d.ts +1 -0
  218. package/dist/types/providers/gabia-sms/index.js +17 -0
  219. package/dist/types/providers/index.d.ts +5 -0
  220. package/dist/types/providers/index.js +21 -0
  221. package/dist/types/providers/niceapi/dto.d.ts +15 -0
  222. package/dist/types/providers/niceapi/dto.js +3 -0
  223. package/dist/types/providers/niceapi/index.d.ts +2 -0
  224. package/dist/types/providers/niceapi/index.js +18 -0
  225. package/dist/types/providers/niceapi/interface.d.ts +25 -0
  226. package/dist/types/providers/niceapi/interface.js +2 -0
  227. package/package.json +1 -1
@@ -0,0 +1,305 @@
1
+ /**
2
+ * @description 중고차 정보
3
+ */
4
+ export interface CooconUsedCarInfo {
5
+ /** DB에 저장된 중고차 정보 Id */
6
+ id: string;
7
+ /**
8
+ * 자동차 등록번호
9
+ * @example 03가0000
10
+ */
11
+ carName: string;
12
+ /** 소유자명 */
13
+ ownerName: string | null;
14
+ carInfo: {
15
+ /** 차대번호 */
16
+ vin: string;
17
+ /** 등록증 차명 */
18
+ regName: string;
19
+ /** 최초등록일 (YYYYMMDD) */
20
+ firstdate: string;
21
+ /** 연식 */
22
+ year: string;
23
+ /**
24
+ * @description 수입차 여부
25
+ * @case true: 수입차
26
+ * @case false: 국산차
27
+ */
28
+ isForeign: boolean;
29
+ /** 제조사키
30
+ * @note NiceDNR에서 제공하는 제조사 코드 (maker.id)와 동일합니다!! (동일 업체에서 데이터 가져오는것으로 추정)
31
+ */
32
+ makerno: number | null;
33
+ /** 제조사명 */
34
+ makername: string;
35
+ /** 대표모델명 */
36
+ classname: string;
37
+ /** 세부모델명 */
38
+ modelname: string;
39
+ /** 대표등급명 */
40
+ seriesname1: string;
41
+ /** 세부등급명 */
42
+ seriesname2: string;
43
+ /** 신차등급명 */
44
+ seriesname: string;
45
+ /** 차종명 */
46
+ cargubun: string;
47
+ /** 모델 대표이미지 URL */
48
+ modelimage: string;
49
+ /** 용도 */
50
+ usegubun: string;
51
+ /** 배기량 */
52
+ displacement: number;
53
+ /** 연료 */
54
+ fuel: string;
55
+ /** 변속기 */
56
+ gearbox: string;
57
+ /** 색상 */
58
+ color: string;
59
+ /** 연비 */
60
+ stdmileage: string;
61
+ /** 신차가격 */
62
+ newprice: number;
63
+ /** 출고가격 */
64
+ carmakeprice: number;
65
+ /** 승차인원 */
66
+ seating: string;
67
+ /** 엔진타입 */
68
+ enType: string;
69
+ /** 옵션 리스트 */
70
+ optlist: OptList[] | null;
71
+ /** 옵션 테이블 */
72
+ option_table: Coocon_CarOptionDetail[];
73
+ };
74
+ /** 해당 차량의 선택옵션 리스트 테이블 */
75
+ seloptlist?: SeloptList[];
76
+ /**
77
+ * @description 주행거리 기준 시세
78
+ * @requires rst_code 1
79
+ */
80
+ mileageprice?: MileagePrice[];
81
+ /**
82
+ * @description 카마트 기준 시세
83
+ * @requires rst_code 1 | 2
84
+ */
85
+ usedprice?: Usedprice[];
86
+ /** 생성일 */
87
+ created_at: Date;
88
+ }
89
+ /** Coocon data */
90
+ export interface OptList {
91
+ /** 출고옵션명 */
92
+ name: string;
93
+ /** 옵션금액 (없으면 null) */
94
+ price: number | null;
95
+ }
96
+ export interface Coocon_CarOption {
97
+ /** 옵션 키 1 */
98
+ option_key1: string;
99
+ /** 옵션 키 2 */
100
+ option_key2: string;
101
+ /** 옵션 키 3 */
102
+ option_key3: string;
103
+ /**
104
+ * 옵션 여부
105
+ * @case O: 기본옵션, S: 선택
106
+ */
107
+ option_flag: "O" | "S";
108
+ }
109
+ /** Coocon_CarOption 키값이 파싱된 정보 */
110
+ export interface Coocon_CarOptionDetail {
111
+ /** 옵션 이름 1 */
112
+ cate1Name: string;
113
+ /** 옵션 이름 2 */
114
+ cate2Name: string;
115
+ /** 옵션 이름 3 */
116
+ cate3Name: string;
117
+ /**
118
+ * 옵션 여부
119
+ * @case O: 기본옵션, S: 선택
120
+ */
121
+ option_flag: "O" | "S";
122
+ }
123
+ export interface SeloptList {
124
+ /** 선택옵션명 */
125
+ optname: string;
126
+ /** 옵션금액 */
127
+ optprice: string;
128
+ }
129
+ export interface ModelList {
130
+ /** 모델키 */
131
+ modelno: number;
132
+ /** 모델명 */
133
+ modelname: string;
134
+ /** 옵션금액 */
135
+ serieslist: {
136
+ /** 신차등급키 */
137
+ seriesno: string;
138
+ /** 신차등급명 */
139
+ seriesname: string;
140
+ /** 신차가격 */
141
+ seriesprice: number;
142
+ }[];
143
+ }
144
+ export interface Usedprice {
145
+ /** 기준년월
146
+ * @description YYYYMM
147
+ */
148
+ stdym: string;
149
+ /** 시세 */
150
+ price: number;
151
+ /** 감가율
152
+ * @description 소수점 최대 6자리까지출력
153
+ */
154
+ rate: string;
155
+ /** 잔존가치 * @description 소수점 최대 6자리까지출력
156
+ */
157
+ rvalue: number;
158
+ }
159
+ export interface MileagePrice {
160
+ /** 시세 */
161
+ price: number;
162
+ /** 주행거리 */
163
+ mileage: number;
164
+ }
165
+ /**
166
+ * @description 사고이력 정보
167
+ */
168
+ export interface CooconAccidentHistoryInfo {
169
+ /**
170
+ * @description DB에 저장된 사고이력 정보 Id
171
+ */
172
+ id: string;
173
+ /**
174
+ * @description 자동차 등록번호
175
+ * @example 03가0000
176
+ */
177
+ carName: string;
178
+ /** 정보조회일자 */
179
+ SEARCH_DATE: string;
180
+ /** 자동차 용도변경이력 */
181
+ CAR_USED_CHANGE_HISTORY: string;
182
+ /** 대여용도 사용이력(렌터카) */
183
+ RENT_CAR_HISTORY: string;
184
+ /** 영업용도 사용이력 */
185
+ BUSINESS_HISTORY: string;
186
+ /** 관용용도 사용이력 */
187
+ COMMON_USE_HISTORY: string;
188
+ /** 자동차번호 변경횟수 */
189
+ CAR_NUM_CHANGE_COUNT: string;
190
+ /** 소유자 변경횟수 */
191
+ OWNER_CHANGE_COUNT: string;
192
+ /** 자동차보험 특수사고이력-전손 */
193
+ TOTAL_LOSS_HISTORY: string;
194
+ /** 자동차보험 특수사고이력-도난 */
195
+ ROBBERY_HISTORY: string;
196
+ /** 자동차보험 특수사고이력-침수(전손) */
197
+ FLOODING_TOTAL_LOSS_HISTORY: string;
198
+ /** 자동차보험 특수사고이력-침수(분손) */
199
+ FLOODING_PARTIAL_LOSS_HISTORY: string;
200
+ /** 보험사고이력:내차피해 */
201
+ MY_CAR_DAMAGE_HISTORY: string;
202
+ /** 보험사고이력:타차피해 */
203
+ OTHER_CAR_DAMAGE_HISTORY: string;
204
+ /** 보험 미가입 기간 */
205
+ UNDERACARRIAGE_DATE: string;
206
+ /** 최초보험가입일자 */
207
+ FIRST_CAR_INSURANCE_DATE: string;
208
+ /** 최근주행거리 */
209
+ LAST_MILEAGE: string;
210
+ /** 최근주행거리기록일자 */
211
+ LAST_MILEAGE_DATE: string;
212
+ /** 차량가액범위 */
213
+ CAR_AMOUNT_RANGE: string;
214
+ /** 내차 보험처리이력 횟수 */
215
+ MY_COUNT: string;
216
+ /** 내차 보험처리이력 */
217
+ RESP_MY_DATA: {
218
+ /** 사고일자 */
219
+ MY_ACCIDENT_DATE: string;
220
+ /** 보험금 */
221
+ MY_INSURANCE_BENEFIT: string;
222
+ /** 수리비용 */
223
+ MY_REPAIR_COST: string;
224
+ /** 부품 */
225
+ MY_COMPONENT: string;
226
+ /** 공임 */
227
+ MY_PAY: string;
228
+ /** 도장 */
229
+ MY_PAINTING: string;
230
+ }[];
231
+ /** 타차보험처리이력 반복건수 */
232
+ OTHER_COUNT: string;
233
+ /** 타차보험처리이력 리스트 */
234
+ RESP_OTHER_DATA: {
235
+ /** 사고일자 */
236
+ OTHER_ACCIDENT_DATE: string;
237
+ /** 보험금 */
238
+ OTHER_INSURANCE_BENEFIT: string;
239
+ /** 수리비용 */
240
+ OTHER_REPAIR_COST: string;
241
+ /** 부품 */
242
+ OTHER_COMPONENT: string;
243
+ /** 공임 */
244
+ OTHER_PAY: string;
245
+ /** 도장 */
246
+ OTHER_PAINTING: string;
247
+ }[];
248
+ /** 타차가해이력 반복건수 */
249
+ MY_FAULT_COUNT: string;
250
+ /** 타차가해이력 리스트 */
251
+ RESP_MY_FAULT_DATA: {
252
+ RESP_MY_FAULT_DATA: string;
253
+ MY_FAULT_ACCIDENT_DATE: string;
254
+ }[];
255
+ /** 주행거리정보 반복건수 */
256
+ MY_MILE_COUNT: string;
257
+ /** 주행거리정보 리스트 */
258
+ RESP_MY_MILE_DATA: {
259
+ /** 날짜 */
260
+ MY_MILE_DATE: string;
261
+ /** 주행거리 */
262
+ MY_MILE_AGE: string;
263
+ /** 제공처 */
264
+ MY_MILE_PROVIDER: string;
265
+ }[];
266
+ /** 소유자변경이력 반복건수 */
267
+ MY_CHANGE_COUNT: string;
268
+ /** 소유자변경이력 리스트 */
269
+ RESP_MY_CHANGE_DATA: {
270
+ /** 변경등록일 */
271
+ MY_CHANGE_CHANGE_DATE: string;
272
+ /** 소유자변경 */
273
+ MY_CHANGE_CHANGE_NAME: string;
274
+ /** 차량번호 */
275
+ MY_CHANGE_CAR_NUMBER: string;
276
+ /** 차량용도 */
277
+ MY_CHANGE_CAR_USES: string;
278
+ }[];
279
+ }
280
+ /**
281
+ * @description 내차 정보 조회 결과
282
+ */
283
+ export interface SearchedUsedCarInfo {
284
+ /** 조회 결과
285
+ * @case "success" 조회 성공
286
+ * @case "searchMore" 상세 조회 필요
287
+ * @case "checkInput" 인풋 확인 필요
288
+ * @case "error" 조회 실패, 메시지 확인
289
+ */
290
+ result: "success" | "searchMore" | "checkInput" | "error";
291
+ message: string;
292
+ /** 상세 검색을 위한 정보 */
293
+ searchDetailInfo?: {
294
+ ts_key: string;
295
+ modelList: ModelList[];
296
+ };
297
+ /**
298
+ * @description 쿠콘에서 조회하여 DB에 기록된 차량 정보
299
+ */
300
+ usedCarInfo?: CooconUsedCarInfo;
301
+ /**
302
+ * @description 쿠콘에서 조회하여 DB에 기록된 사고이력 정보
303
+ */
304
+ accidentHistory?: CooconAccidentHistoryInfo | null;
305
+ }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,56 @@
1
+ /** DTO는 서버단에 요청을 보낼 때 사용하는 클래스 유형으로 서버단에서 이 곳에 정의된 대로 유효성 검사를 처리합니다. */
2
+ export interface SetFirebaseCloudMessageTokenDTO {
3
+ fcm_token: string;
4
+ }
5
+ /**
6
+ * @description 특정 회원에게 푸시 메시지를 전송합니다.
7
+ */
8
+ export interface SendMemberPushMessageDTO {
9
+ /**
10
+ * 메시지를 받을 회원 ID
11
+ */
12
+ memberId: string;
13
+ /**
14
+ * 푸시 메시지 제목
15
+ */
16
+ title?: string;
17
+ /**
18
+ * 푸시 메시지 내용
19
+ */
20
+ content: string;
21
+ /**
22
+ * @description 메시지 분류를 위한 값으로 임의의 값을 입력할 수 있습니다.
23
+ * @example 전체메시지, 단일메시지, 광고메시지 등
24
+ */
25
+ messageType?: string;
26
+ /**
27
+ * @description 앱에서 해당 푸시 알람을 눌렀을 때 이동할 경로를 정의합니다.
28
+ */
29
+ redirectPath?: string;
30
+ }
31
+ /**
32
+ * @description 특정 회원 리스트에 푸시 메시지를 전송합니다.
33
+ */
34
+ export interface SendMemberListPushMessageDTO {
35
+ /**
36
+ * @description 메시지를 보낼 회원 ID 리스트
37
+ */
38
+ memberIdList: string[];
39
+ /**
40
+ * 푸시 메시지 제목
41
+ */
42
+ title?: string;
43
+ /**
44
+ * 푸시 메시지 내용
45
+ */
46
+ content: string;
47
+ /**
48
+ * @description 메시지 분류를 위한 값으로 임의의 값을 입력할 수 있습니다.
49
+ * @example 전체메시지, 단일메시지, 광고메시지 등
50
+ */
51
+ messageType?: string;
52
+ /**
53
+ * @description 앱에서 해당 푸시 알람을 눌렀을 때 이동할 경로를 정의합니다.
54
+ */
55
+ redirectPath?: string;
56
+ }
@@ -0,0 +1,3 @@
1
+ "use strict";
2
+ /** DTO는 서버단에 요청을 보낼 때 사용하는 클래스 유형으로 서버단에서 이 곳에 정의된 대로 유효성 검사를 처리합니다. */
3
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,2 @@
1
+ export * from "./dto";
2
+ export * from "./interface";
@@ -0,0 +1,18 @@
1
+ "use strict";
2
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
+ if (k2 === undefined) k2 = k;
4
+ var desc = Object.getOwnPropertyDescriptor(m, k);
5
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
+ desc = { enumerable: true, get: function() { return m[k]; } };
7
+ }
8
+ Object.defineProperty(o, k2, desc);
9
+ }) : (function(o, m, k, k2) {
10
+ if (k2 === undefined) k2 = k;
11
+ o[k2] = m[k];
12
+ }));
13
+ var __exportStar = (this && this.__exportStar) || function(m, exports) {
14
+ for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
15
+ };
16
+ Object.defineProperty(exports, "__esModule", { value: true });
17
+ __exportStar(require("./dto"), exports);
18
+ __exportStar(require("./interface"), exports);
@@ -0,0 +1,4 @@
1
+ export interface FCMSendResponse {
2
+ successCount: number;
3
+ failureCount: number;
4
+ }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,31 @@
1
+ /** DTO는 서버단에 요청을 보낼 때 사용하는 클래스 유형으로 서버단에서 이 곳에 정의된 대로 유효성 검사를 처리합니다. */
2
+ import { MemberIdDTO } from "../../modules";
3
+ /**
4
+ * @description 특정 휴대전화번호에 푸시 메시지를 전송합니다
5
+ */
6
+ export interface SendPhoneNumberSmsDTO {
7
+ phoneNumber: string;
8
+ /**
9
+ * 푸시 메시지 내용
10
+ */
11
+ content: string;
12
+ /**
13
+ * @description 메시지 분류를 위한 값으로 임의의 값을 입력할 수 있습니다
14
+ * @example 전체메시지, 단일메시지, 광고메시지 등
15
+ */
16
+ type: string;
17
+ }
18
+ /**
19
+ * @description 특정 회원에게 푸시 메시지를 전송합니다
20
+ */
21
+ export interface SendMemberSmsDTO extends MemberIdDTO {
22
+ /**
23
+ * 푸시 메시지 내용
24
+ */
25
+ content: string;
26
+ /**
27
+ * @description 메시지 분류를 위한 값으로 임의의 값을 입력할 수 있습니다
28
+ * @example 전체메시지, 단일메시지, 광고메시지 등
29
+ */
30
+ type: string;
31
+ }
@@ -0,0 +1,3 @@
1
+ "use strict";
2
+ /** DTO는 서버단에 요청을 보낼 때 사용하는 클래스 유형으로 서버단에서 이 곳에 정의된 대로 유효성 검사를 처리합니다. */
3
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1 @@
1
+ export * from "./dto";
@@ -0,0 +1,17 @@
1
+ "use strict";
2
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
+ if (k2 === undefined) k2 = k;
4
+ var desc = Object.getOwnPropertyDescriptor(m, k);
5
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
+ desc = { enumerable: true, get: function() { return m[k]; } };
7
+ }
8
+ Object.defineProperty(o, k2, desc);
9
+ }) : (function(o, m, k, k2) {
10
+ if (k2 === undefined) k2 = k;
11
+ o[k2] = m[k];
12
+ }));
13
+ var __exportStar = (this && this.__exportStar) || function(m, exports) {
14
+ for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
15
+ };
16
+ Object.defineProperty(exports, "__esModule", { value: true });
17
+ __exportStar(require("./dto"), exports);
@@ -0,0 +1,5 @@
1
+ /** 카사요 서버단에서 외부 서비스와 연계된 부분의 타입 지정 파일입니다 */
2
+ export * from "./coocon-usedcar";
3
+ export * from "./firebase-message";
4
+ export * from "./gabia-sms";
5
+ export * from "./niceapi";
@@ -0,0 +1,21 @@
1
+ "use strict";
2
+ /** 카사요 서버단에서 외부 서비스와 연계된 부분의 타입 지정 파일입니다 */
3
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
4
+ if (k2 === undefined) k2 = k;
5
+ var desc = Object.getOwnPropertyDescriptor(m, k);
6
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
7
+ desc = { enumerable: true, get: function() { return m[k]; } };
8
+ }
9
+ Object.defineProperty(o, k2, desc);
10
+ }) : (function(o, m, k, k2) {
11
+ if (k2 === undefined) k2 = k;
12
+ o[k2] = m[k];
13
+ }));
14
+ var __exportStar = (this && this.__exportStar) || function(m, exports) {
15
+ for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
16
+ };
17
+ Object.defineProperty(exports, "__esModule", { value: true });
18
+ __exportStar(require("./coocon-usedcar"), exports);
19
+ __exportStar(require("./firebase-message"), exports);
20
+ __exportStar(require("./gabia-sms"), exports);
21
+ __exportStar(require("./niceapi"), exports);
@@ -0,0 +1,15 @@
1
+ /** DTO는 서버단에 요청을 보낼 때 사용하는 클래스 유형으로 서버단에서 이 곳에 정의된 대로 유효성 검사를 처리합니다. */
2
+ export interface InitIdentityDTO {
3
+ returnUrl?: string;
4
+ }
5
+ export interface VerifyDTO {
6
+ identity_id: string;
7
+ }
8
+ export interface VerifyResponseDTO {
9
+ /** 본인인증 토큰 */
10
+ identityVerifyToken: string;
11
+ /** 본인인증한 전화번호 */
12
+ phoneNumber: string;
13
+ /** 본인인증한 이름 */
14
+ name: string;
15
+ }
@@ -0,0 +1,3 @@
1
+ "use strict";
2
+ /** DTO는 서버단에 요청을 보낼 때 사용하는 클래스 유형으로 서버단에서 이 곳에 정의된 대로 유효성 검사를 처리합니다. */
3
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,2 @@
1
+ export * from "./dto";
2
+ export * from "./interface";
@@ -0,0 +1,18 @@
1
+ "use strict";
2
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
+ if (k2 === undefined) k2 = k;
4
+ var desc = Object.getOwnPropertyDescriptor(m, k);
5
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
+ desc = { enumerable: true, get: function() { return m[k]; } };
7
+ }
8
+ Object.defineProperty(o, k2, desc);
9
+ }) : (function(o, m, k, k2) {
10
+ if (k2 === undefined) k2 = k;
11
+ o[k2] = m[k];
12
+ }));
13
+ var __exportStar = (this && this.__exportStar) || function(m, exports) {
14
+ for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
15
+ };
16
+ Object.defineProperty(exports, "__esModule", { value: true });
17
+ __exportStar(require("./dto"), exports);
18
+ __exportStar(require("./interface"), exports);
@@ -0,0 +1,25 @@
1
+ /**
2
+ * @interface NiceapiGetIdentityClientKey
3
+ * @description 나이스 API에서 신원 확인을 위한 클라이언트 키 요청 정보 인터페이스입니다.
4
+ */
5
+ export interface NiceapiGetIdentityClientKey {
6
+ /**
7
+ * @property {string} id - 이 요청의 ID값입니다.
8
+ */
9
+ id: string;
10
+ /**
11
+ * @property {string} token_version_id - 암호화토큰요청_API 응답으로 받은 값.
12
+ */
13
+ token_version_id: string;
14
+ /**
15
+ * @property {string} enc_data - 암호화한 요청 정보.
16
+ */
17
+ enc_data: string;
18
+ /**
19
+ * @property {string} integrity_value - enc_data의 무결성 값.
20
+ */
21
+ integrity_value: string;
22
+ }
23
+ export interface IdentifyTokenPhoneNumber {
24
+ isMatched: boolean;
25
+ }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@carsayo/types",
3
- "version": "1.1.892080",
3
+ "version": "1.1.892082",
4
4
  "description": "Carsayo app type",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",