@carsayo/types 1.1.0 → 1.1.2

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 (106) hide show
  1. package/dist/data/bankcode.d.ts +167 -0
  2. package/dist/data/banner.d.ts +36 -0
  3. package/dist/data/board.d.ts +32 -0
  4. package/dist/data/car.d.ts +867 -0
  5. package/dist/data/carPopularCategory.d.ts +20 -0
  6. package/dist/data/collaborator.d.ts +8 -0
  7. package/dist/data/index.d.ts +12 -0
  8. package/dist/data/popup.d.ts +20 -0
  9. package/dist/data/purchase.d.ts +18 -0
  10. package/dist/data/region.d.ts +1224 -0
  11. package/dist/data/role.d.ts +91 -0
  12. package/dist/data/system.d.ts +19 -0
  13. package/dist/data/term.d.ts +153 -0
  14. package/dist/index.d.ts +2 -7
  15. package/dist/types/index.d.ts +2 -0
  16. package/dist/types/modules/banner/dto.d.ts +35 -0
  17. package/dist/types/modules/banner/index.d.ts +2 -0
  18. package/dist/types/modules/banner/interface.d.ts +50 -0
  19. package/dist/types/modules/board/dto.d.ts +189 -0
  20. package/dist/types/modules/board/index.d.ts +3 -0
  21. package/dist/types/modules/board/interface.d.ts +233 -0
  22. package/dist/types/modules/board/type.d.ts +29 -0
  23. package/dist/types/modules/car/dto.d.ts +72 -0
  24. package/dist/types/modules/car/index.d.ts +3 -0
  25. package/dist/types/modules/car/interface.d.ts +249 -0
  26. package/dist/types/modules/car/type.d.ts +11 -0
  27. package/dist/types/modules/collaborator/dto.d.ts +10 -0
  28. package/dist/types/modules/collaborator/index.d.ts +1 -0
  29. package/dist/types/modules/common/index.d.ts +2 -0
  30. package/dist/types/modules/common/interface.d.ts +23 -0
  31. package/dist/types/modules/common/type.d.ts +25 -0
  32. package/dist/types/modules/file/dto.d.ts +17 -0
  33. package/dist/types/modules/file/index.d.ts +3 -0
  34. package/dist/types/modules/file/interface.d.ts +26 -0
  35. package/dist/types/modules/file/type.d.ts +13 -0
  36. package/dist/types/modules/history/dto.d.ts +12 -0
  37. package/dist/types/modules/history/index.d.ts +2 -0
  38. package/dist/types/modules/history/interface.d.ts +12 -0
  39. package/dist/types/modules/index.d.ts +15 -0
  40. package/dist/types/modules/inquiry/dto.d.ts +79 -0
  41. package/dist/types/modules/inquiry/index.d.ts +3 -0
  42. package/dist/types/modules/inquiry/interface.d.ts +37 -0
  43. package/dist/types/modules/inquiry/type.d.ts +14 -0
  44. package/dist/types/modules/member/dto.d.ts +587 -0
  45. package/dist/types/modules/member/index.d.ts +3 -0
  46. package/dist/types/modules/member/interface.d.ts +582 -0
  47. package/dist/types/modules/member/type.d.ts +73 -0
  48. package/dist/types/modules/notification/dto.d.ts +13 -0
  49. package/dist/types/modules/notification/index.d.ts +3 -0
  50. package/dist/types/modules/notification/interface.d.ts +19 -0
  51. package/dist/types/modules/notification/type.d.ts +5 -0
  52. package/dist/types/modules/order/dto.d.ts +446 -0
  53. package/dist/types/modules/order/index.d.ts +3 -0
  54. package/dist/types/modules/order/interface.d.ts +905 -0
  55. package/dist/types/modules/order/type.d.ts +161 -0
  56. package/dist/types/modules/popup/dto.d.ts +33 -0
  57. package/dist/types/modules/popup/index.d.ts +2 -0
  58. package/dist/types/modules/popup/interface.d.ts +49 -0
  59. package/dist/types/modules/purchase/dto.d.ts +9 -0
  60. package/dist/types/modules/purchase/index.d.ts +3 -0
  61. package/dist/types/modules/purchase/interface.d.ts +22 -0
  62. package/dist/types/modules/purchase/type.d.ts +11 -0
  63. package/dist/types/modules/system/dto.d.ts +13 -0
  64. package/dist/types/modules/system/index.d.ts +2 -0
  65. package/dist/types/modules/system/interface.d.ts +18 -0
  66. package/dist/types/modules/term/dto.d.ts +175 -0
  67. package/dist/types/modules/term/index.d.ts +2 -0
  68. package/dist/types/modules/term/interface.d.ts +45 -0
  69. package/dist/types/providers/coocon-usedcar/dto.d.ts +23 -0
  70. package/dist/types/providers/coocon-usedcar/index.d.ts +2 -0
  71. package/dist/types/providers/coocon-usedcar/interface.d.ts +300 -0
  72. package/dist/types/providers/firebase-message/dto.d.ts +83 -0
  73. package/dist/types/providers/firebase-message/index.d.ts +2 -0
  74. package/dist/types/providers/firebase-message/interface.d.ts +4 -0
  75. package/dist/types/providers/gabia-sms/dto.d.ts +31 -0
  76. package/dist/types/providers/gabia-sms/index.d.ts +1 -0
  77. package/dist/types/providers/index.d.ts +7 -0
  78. package/dist/types/providers/mailer/dto.d.ts +4 -0
  79. package/dist/types/providers/mailer/index.d.ts +1 -0
  80. package/dist/types/providers/niceapi/dto.d.ts +15 -0
  81. package/dist/types/providers/niceapi/index.d.ts +2 -0
  82. package/dist/types/providers/niceapi/interface.d.ts +22 -0
  83. package/dist/types/providers/nicepayment/dto.d.ts +60 -0
  84. package/dist/types/providers/nicepayment/index.d.ts +3 -0
  85. package/dist/types/providers/nicepayment/interface.d.ts +168 -0
  86. package/dist/types/providers/nicepayment/type.d.ts +36 -0
  87. package/dist/validator/IsNullable.d.ts +3 -0
  88. package/package.json +5 -1
  89. package/dist/type/all.ts +0 -5402
  90. package/dist/type/data/bankcode.ts +0 -64
  91. package/dist/type/data/banner.ts +0 -45
  92. package/dist/type/data/board.ts +0 -37
  93. package/dist/type/data/car.ts +0 -1015
  94. package/dist/type/data/carPopularCategory.ts +0 -28
  95. package/dist/type/data/collaborator.ts +0 -13
  96. package/dist/type/data/popup.ts +0 -26
  97. package/dist/type/data/purchase.ts +0 -24
  98. package/dist/type/data/region.ts +0 -348
  99. package/dist/type/data/role.ts +0 -118
  100. package/dist/type/data/system.ts +0 -31
  101. package/dist/type/data/term.ts +0 -184
  102. package/dist/type/history.ts +0 -25
  103. package/dist/type/interface/type.ts +0 -43
  104. package/dist/type/order.ts +0 -696
  105. package/dist/type/purchase.ts +0 -286
  106. package/dist/type/selling.ts +0 -169
@@ -1,1015 +0,0 @@
1
- // 카사요 서비스 내 차량 정보 관련 데이터
2
- // @relation car_category, car_purpose, car_shape
3
- // @frontend 카사요 앱 리액트 프로젝트, 카사요 어드민 웹
4
- // @backend Prisma, Main_Service
5
-
6
- export const CarMakerData = [
7
- // 국내
8
- {
9
- id: 5,
10
- name: '현대',
11
- name_en: 'HYUNDAI',
12
- country: '한국',
13
- type: 'domestic',
14
- isSuperCar: false,
15
- image_url:
16
- 'https://zdata.nicednr.co.kr:8181/carLogoFile/20221117/63759b240a83b.png',
17
- },
18
- {
19
- id: 146,
20
- name: '제네시스',
21
- name_en: 'GENESYS',
22
- country: '한국',
23
- type: 'domestic',
24
- isSuperCar: false,
25
- image_url:
26
- 'https://zdata.nicednr.co.kr:8181/carLogoFile/20220510/6279bec9dd0f8.png',
27
- },
28
- {
29
- id: 1,
30
- name: '쉐보레',
31
- name_en: 'CHEVROLET(DAEWOO)',
32
- country: '한국',
33
- type: 'domestic',
34
- isSuperCar: false,
35
- image_url:
36
- 'https://zdata.nicednr.co.kr:8181/carLogoFile/20160928/57eba19e7c2f1.png',
37
- },
38
- {
39
- id: 2,
40
- name: '기아',
41
- name_en: 'KIA',
42
- country: '한국',
43
- type: 'domestic',
44
- isSuperCar: false,
45
- image_url:
46
- 'https://zdata.nicednr.co.kr:8181/carLogoFile/20210119/60062c177ed85.png',
47
- },
48
- {
49
- id: 3,
50
- name: '르노',
51
- name_en: 'RENAULT(SAMSUNG)',
52
- country: '한국',
53
- type: 'domestic',
54
- isSuperCar: false,
55
- image_url:
56
- 'https://zdata.nicednr.co.kr:8181/carLogoFile/20240404/660e6a28ad6d5.png',
57
- },
58
- {
59
- id: 4,
60
- name: 'KG모빌리티',
61
- name_en: 'KG MOBILITY(SSANGYONG)',
62
- country: '한국',
63
- type: 'domestic',
64
- isSuperCar: false,
65
- image_url:
66
- 'https://zdata.nicednr.co.kr:8181/carLogoFile/20230406/642e4862b5e25.png',
67
- },
68
-
69
- // 해외
70
- {
71
- id: 67,
72
- name: 'BMW',
73
- name_en: 'BMW',
74
- country: '독일',
75
- type: 'imported',
76
- isSuperCar: false,
77
- image_url:
78
- 'https://zdata.nicednr.co.kr:8181/carLogoFile/20200318/5e718289d8cee.png',
79
- },
80
- {
81
- id: 68,
82
- name: '벤츠',
83
- name_en: 'BENZ',
84
- country: '독일',
85
- type: 'imported',
86
- isSuperCar: false,
87
- image_url:
88
- 'https://zdata.nicednr.co.kr:8181/carLogoFile/20130313/51403ebe1f947.png',
89
- },
90
- {
91
- id: 70,
92
- name: '아우디',
93
- name_en: 'VW/AUDI',
94
- country: '독일',
95
- type: 'imported',
96
- isSuperCar: false,
97
- image_url:
98
- 'https://zdata.nicednr.co.kr:8181/carLogoFile/20200318/5e71d09d8916e.png',
99
- },
100
- {
101
- id: 71,
102
- name: '폭스바겐',
103
- name_en: 'VOLKSWAGEN',
104
- country: '독일',
105
- type: 'imported',
106
- isSuperCar: false,
107
- image_url:
108
- 'https://zdata.nicednr.co.kr:8181/carLogoFile/20220510/6279bed520923.png',
109
- },
110
- {
111
- id: 72,
112
- name: '미니',
113
- name_en: 'MINI',
114
- country: '영국',
115
- type: 'imported',
116
- isSuperCar: false,
117
- image_url:
118
- 'https://zdata.nicednr.co.kr:8181/carLogoFile/20200318/5e71d12175f23.png',
119
- },
120
- {
121
- id: 73,
122
- name: '푸조',
123
- name_en: 'PEUGEOT(PSA)',
124
- country: '프랑스',
125
- type: 'imported',
126
- isSuperCar: false,
127
- image_url:
128
- 'https://zdata.nicednr.co.kr:8181/carLogoFile/20210303/603ef62a724d4.png',
129
- },
130
- {
131
- id: 74,
132
- name: '볼보',
133
- name_en: 'VOLVO',
134
- country: '스웨덴',
135
- type: 'imported',
136
- isSuperCar: false,
137
- image_url:
138
- 'https://zdata.nicednr.co.kr:8181/carLogoFile/20210927/615183bb3e40f.png',
139
- },
140
- {
141
- id: 77,
142
- name: '토요타',
143
- name_en: 'TOYOTA',
144
- country: '일본',
145
- type: 'imported',
146
- isSuperCar: false,
147
- image_url:
148
- 'https://zdata.nicednr.co.kr:8181/carLogoFile/20160929/57eca08c03e6a.png',
149
- },
150
- {
151
- id: 78,
152
- name: '렉서스',
153
- name_en: 'LEXUS',
154
- country: '일본',
155
- type: 'imported',
156
- isSuperCar: false,
157
- image_url:
158
- 'https://zdata.nicednr.co.kr:8181/carLogoFile/20221117/637599a47221d.png',
159
- },
160
- {
161
- id: 82,
162
- name: '랜드로버',
163
- name_en: 'LANDROVER',
164
- country: '영국',
165
- type: 'imported',
166
- isSuperCar: false,
167
- image_url:
168
- 'https://zdata.nicednr.co.kr:8181/carLogoFile/20130313/51403f2a3461a.png',
169
- },
170
- {
171
- id: 86,
172
- name: '르노',
173
- name_en: 'RENAULT',
174
- country: '프랑스',
175
- type: 'etc',
176
- isSuperCar: false,
177
- image_url:
178
- 'https://zdata.nicednr.co.kr:8181/carLogoFile/20130313/51403f567a1c8.png',
179
- },
180
- {
181
- id: 87,
182
- name: '링컨',
183
- name_en: 'LINCOLN',
184
- country: '미국',
185
- type: 'imported',
186
- isSuperCar: false,
187
- image_url:
188
- 'https://zdata.nicednr.co.kr:8181/carLogoFile/20221117/63759a3e69cbf.png',
189
- },
190
- {
191
- id: 101,
192
- name: '쉐보레',
193
- name_en: 'CHEVROLET',
194
- country: '미국',
195
- type: 'etc',
196
- isSuperCar: false,
197
- image_url:
198
- 'https://zdata.nicednr.co.kr:8181/carLogoFile/20130313/514040f49df17.png',
199
- },
200
- {
201
- id: 102,
202
- name: '시트로엥',
203
- name_en: 'CITROEN',
204
- country: '프랑스',
205
- type: 'etc',
206
- isSuperCar: false,
207
- image_url:
208
- 'https://zdata.nicednr.co.kr:8181/carLogoFile/20130313/5140410296add.png',
209
- },
210
- {
211
- id: 110,
212
- name: '재규어',
213
- name_en: 'JAGUAR',
214
- country: '영국',
215
- type: 'etc',
216
- isSuperCar: false,
217
- image_url:
218
- 'https://zdata.nicednr.co.kr:8181/carLogoFile/20130313/514041ac5d85b.png',
219
- },
220
- {
221
- id: 112,
222
- name: '캐딜락',
223
- name_en: 'CADILLAC',
224
- country: '미국',
225
- type: 'imported',
226
- isSuperCar: false,
227
- image_url:
228
- 'https://zdata.nicednr.co.kr:8181/carLogoFile/20221117/637598cba95c5.png',
229
- },
230
- {
231
- id: 118,
232
- name: '포드',
233
- name_en: 'FORD',
234
- country: '미국',
235
- type: 'imported',
236
- isSuperCar: false,
237
- image_url:
238
- 'https://zdata.nicednr.co.kr:8181/carLogoFile/20130313/514041e6d8c7f.png',
239
- },
240
- {
241
- id: 111,
242
- name: '지프',
243
- name_en: 'JEEP',
244
- country: '미국',
245
- type: 'imported',
246
- isSuperCar: false,
247
- image_url:
248
- 'https://zdata.nicednr.co.kr:8181/carLogoFile/20130313/514041b531764.png',
249
- },
250
- {
251
- id: 125,
252
- name: '혼다',
253
- name_en: 'HONDA',
254
- country: '일본',
255
- type: 'imported',
256
- isSuperCar: false,
257
- image_url:
258
- 'https://zdata.nicednr.co.kr:8181/carLogoFile/20130313/51404225cc7af.png',
259
- },
260
- {
261
- id: 88,
262
- name: '마세라티',
263
- name_en: 'MASERATI',
264
- country: '이탈리아',
265
- type: 'imported',
266
- isSuperCar: false,
267
- image_url:
268
- 'https://zdata.nicednr.co.kr:8181/carLogoFile/20220510/6279bf092fc7d.png',
269
- },
270
- {
271
- id: 117,
272
- name: '페라리',
273
- name_en: 'FERRARI',
274
- country: '이탈리아',
275
- type: 'imported',
276
- isSuperCar: true,
277
- image_url:
278
- 'https://zdata.nicednr.co.kr:8181/carLogoFile/20130313/514041df2e3a1.png',
279
- },
280
- {
281
- id: 93,
282
- name: '벤틀리',
283
- name_en: 'BENTLEY',
284
- country: '영국',
285
- type: 'imported',
286
- isSuperCar: true,
287
- image_url:
288
- 'https://zdata.nicednr.co.kr:8181/carLogoFile/20130313/51403fd075d41.png',
289
- },
290
- {
291
- id: 85,
292
- name: '롤스로이스',
293
- name_en: 'ROLLS-ROYCE',
294
- country: '영국',
295
- type: 'imported',
296
- isSuperCar: true,
297
- image_url:
298
- 'https://zdata.nicednr.co.kr:8181/carLogoFile/20130313/51403f4e59fe8.png',
299
- },
300
- {
301
- id: 120,
302
- name: '포르쉐',
303
- name_en: 'PORSCHE',
304
- country: '독일',
305
- type: 'imported',
306
- isSuperCar: true,
307
- image_url:
308
- 'https://zdata.nicednr.co.kr:8181/carLogoFile/20160929/57eca0f5b8fe9.png',
309
- },
310
- {
311
- id: 81,
312
- name: '람보르기니',
313
- name_en: 'LAMBORGHINI',
314
- country: '이탈리아',
315
- type: 'imported',
316
- isSuperCar: true,
317
- image_url:
318
- 'https://zdata.nicednr.co.kr:8181/carLogoFile/20240404/660e5e6205e97.png',
319
- },
320
-
321
- // 기타
322
- {
323
- id: 69,
324
- name: '스마트',
325
- name_en: 'SMART',
326
- country: '독일',
327
- type: 'etc',
328
- isSuperCar: false,
329
- image_url:
330
- 'https://zdata.nicednr.co.kr:8181/carLogoFile/20130315/514283614fb83.png',
331
- },
332
- {
333
- id: 75,
334
- name: 'GMC',
335
- name_en: 'GMC',
336
- country: '미국',
337
- type: 'etc',
338
- isSuperCar: false,
339
- image_url:
340
- 'https://zdata.nicednr.co.kr:8181/carLogoFile/20130313/51403ed088909.png',
341
- },
342
- {
343
- id: 76,
344
- name: '닛산',
345
- name_en: 'NISSAN',
346
- country: '일본',
347
- type: 'etc',
348
- isSuperCar: false,
349
- image_url:
350
- 'https://zdata.nicednr.co.kr:8181/carLogoFile/20160929/57eca05210a7d.png',
351
- },
352
- {
353
- id: 79,
354
- name: '다이하쯔',
355
- name_en: 'DAIHATSU',
356
- country: '일본',
357
- type: 'etc',
358
- isSuperCar: false,
359
- image_url:
360
- 'https://zdata.nicednr.co.kr:8181/carLogoFile/20160929/57eca069f08ee.png',
361
- },
362
- {
363
- id: 80,
364
- name: '닷지',
365
- name_en: 'DODGE',
366
- country: '미국',
367
- type: 'etc',
368
- isSuperCar: false,
369
- image_url:
370
- 'https://zdata.nicednr.co.kr:8181/carLogoFile/20130313/5140438f8ce5c.png',
371
- },
372
- {
373
- id: 83,
374
- name: '로버',
375
- name_en: 'ROVER',
376
- country: '영국',
377
- type: 'etc',
378
- isSuperCar: false,
379
- image_url:
380
- 'https://zdata.nicednr.co.kr:8181/carLogoFile/20130313/51403f343f3cc.png',
381
- },
382
- {
383
- id: 84,
384
- name: '로터스',
385
- name_en: 'LOTUS CARS',
386
- country: '영국',
387
- type: 'etc',
388
- isSuperCar: false,
389
- image_url:
390
- 'https://zdata.nicednr.co.kr:8181/carLogoFile/20130313/51403f3f28630.png',
391
- },
392
- {
393
- id: 89,
394
- name: '마쯔다',
395
- name_en: 'MAZDA',
396
- country: '일본',
397
- type: 'etc',
398
- isSuperCar: false,
399
- image_url:
400
- 'https://zdata.nicednr.co.kr:8181/carLogoFile/20130313/51403f9b8d3a7.png',
401
- },
402
- {
403
- id: 90,
404
- name: '머큐리',
405
- name_en: 'MERCURY',
406
- country: '미국',
407
- type: 'etc',
408
- isSuperCar: false,
409
- image_url:
410
- 'https://zdata.nicednr.co.kr:8181/carLogoFile/20130313/51403faa1047a.png',
411
- },
412
- {
413
- id: 91,
414
- name: '미쯔비시',
415
- name_en: 'MITZUBISHI',
416
- country: '일본',
417
- type: 'etc',
418
- isSuperCar: false,
419
- image_url:
420
- 'https://zdata.nicednr.co.kr:8181/carLogoFile/20130313/51403fbb10c9f.png',
421
- },
422
- {
423
- id: 92,
424
- name: '미쯔오까',
425
- name_en: 'MITSUOKA',
426
- country: '일본',
427
- type: 'etc',
428
- isSuperCar: false,
429
- image_url:
430
- 'https://zdata.nicednr.co.kr:8181/carLogoFile/20160929/57eca0a0b04d3.png',
431
- },
432
- {
433
- id: 94,
434
- name: '뷰익',
435
- name_en: 'BUICK',
436
- country: '미국',
437
- type: 'etc',
438
- isSuperCar: false,
439
- image_url:
440
- 'https://zdata.nicednr.co.kr:8181/carLogoFile/20130313/51403ff9df7bc.png',
441
- },
442
- {
443
- id: 95,
444
- name: '사브',
445
- name_en: 'SAAB',
446
- country: '스웨덴',
447
- type: 'etc',
448
- isSuperCar: false,
449
- image_url:
450
- 'https://zdata.nicednr.co.kr:8181/carLogoFile/20130313/51404095c391a.png',
451
- },
452
- {
453
- id: 96,
454
- name: '새턴',
455
- name_en: 'SATURN',
456
- country: '미국',
457
- type: 'etc',
458
- isSuperCar: false,
459
- image_url:
460
- 'https://zdata.nicednr.co.kr:8181/carLogoFile/20130313/514040a73b979.png',
461
- },
462
- {
463
- id: 97,
464
- name: '사이언',
465
- name_en: 'SCION',
466
- country: '일본',
467
- type: 'etc',
468
- isSuperCar: false,
469
- image_url:
470
- 'https://zdata.nicednr.co.kr:8181/carLogoFile/20130313/5140409f447cc.png',
471
- },
472
- {
473
- id: 98,
474
- name: '스바루',
475
- name_en: 'SUBARU',
476
- country: '일본',
477
- type: 'etc',
478
- isSuperCar: false,
479
- image_url:
480
- 'https://zdata.nicednr.co.kr:8181/carLogoFile/20130313/514040c315261.png',
481
- },
482
- {
483
- id: 99,
484
- name: '스즈키',
485
- name_en: 'SUZUKI',
486
- country: '일본',
487
- type: 'etc',
488
- isSuperCar: false,
489
- image_url:
490
- 'https://zdata.nicednr.co.kr:8181/carLogoFile/20130313/514040ca71934.png',
491
- },
492
- {
493
- id: 103,
494
- name: '알파 로메오',
495
- name_en: 'ALFA ROMEO',
496
- country: '이탈리아',
497
- type: 'etc',
498
- isSuperCar: false,
499
- image_url:
500
- 'https://zdata.nicednr.co.kr:8181/carLogoFile/20130313/5140410c1430e.png',
501
- },
502
- {
503
- id: 104,
504
- name: '애스턴마틴',
505
- name_en: 'ASTON MARTIN',
506
- country: '영국',
507
- type: 'etc',
508
- isSuperCar: false,
509
- image_url:
510
- 'https://zdata.nicednr.co.kr:8181/carLogoFile/20130313/514041125549f.png',
511
- },
512
- {
513
- id: 105,
514
- name: '어큐라',
515
- name_en: 'ACURA',
516
- country: '일본',
517
- type: 'etc',
518
- isSuperCar: false,
519
- image_url:
520
- 'https://zdata.nicednr.co.kr:8181/carLogoFile/20130313/51404119c736d.png',
521
- },
522
- {
523
- id: 106,
524
- name: '오펠',
525
- name_en: 'OPEL',
526
- country: '독일',
527
- type: 'etc',
528
- isSuperCar: false,
529
- image_url:
530
- 'https://zdata.nicednr.co.kr:8181/carLogoFile/20130313/51404127976aa.png',
531
- },
532
- {
533
- id: 107,
534
- name: '올즈모빌',
535
- name_en: 'OLDSMOBILE',
536
- country: '미국',
537
- type: 'etc',
538
- isSuperCar: false,
539
- image_url:
540
- 'https://zdata.nicednr.co.kr:8181/carLogoFile/20130315/5142864baeea1.png',
541
- },
542
- {
543
- id: 108,
544
- name: '이스즈',
545
- name_en: 'ISUZU',
546
- country: '일본',
547
- type: 'etc',
548
- isSuperCar: false,
549
- image_url:
550
- 'https://zdata.nicednr.co.kr:8181/carLogoFile/20130313/51404131d2da6.png',
551
- },
552
- {
553
- id: 109,
554
- name: '인피니티',
555
- name_en: 'INFINITY',
556
- country: '일본',
557
- type: 'etc',
558
- isSuperCar: false,
559
- image_url:
560
- 'https://zdata.nicednr.co.kr:8181/carLogoFile/20160929/57eca0b28851c.png',
561
- },
562
- {
563
- id: 114,
564
- name: '코닉세그',
565
- name_en: 'KONIGSEGG',
566
- country: '스웨덴',
567
- type: 'etc',
568
- isSuperCar: false,
569
- image_url:
570
- 'https://zdata.nicednr.co.kr:8181/carLogoFile/20170428/5902c7139700d.png',
571
- },
572
- {
573
- id: 115,
574
- name: '크라이슬러',
575
- name_en: 'CHRYSLER',
576
- country: '미국',
577
- type: 'etc',
578
- isSuperCar: false,
579
- image_url:
580
- 'https://zdata.nicednr.co.kr:8181/carLogoFile/20160929/57eca3add4446.png',
581
- },
582
- {
583
- id: 116,
584
- name: '파가니',
585
- name_en: 'PAGANI',
586
- country: '이탈리아',
587
- type: 'etc',
588
- isSuperCar: false,
589
- image_url:
590
- 'https://zdata.nicednr.co.kr:8181/carLogoFile/20130313/514041d767b35.png',
591
- },
592
- {
593
- id: 121,
594
- name: '폰티악',
595
- name_en: 'PONTIAC',
596
- country: '미국',
597
- type: 'etc',
598
- isSuperCar: false,
599
- image_url:
600
- 'https://zdata.nicednr.co.kr:8181/carLogoFile/20130313/5140420425fd3.png',
601
- },
602
- {
603
- id: 122,
604
- name: '피아트',
605
- name_en: 'FIAT',
606
- country: '이탈리아',
607
- type: 'etc',
608
- isSuperCar: false,
609
- image_url:
610
- 'https://zdata.nicednr.co.kr:8181/carLogoFile/20130313/514042142f3d4.png',
611
- },
612
- {
613
- id: 123,
614
- name: '란치아',
615
- name_en: 'LANCIA',
616
- country: '이탈리아',
617
- type: 'etc',
618
- isSuperCar: false,
619
- image_url:
620
- 'https://zdata.nicednr.co.kr:8181/carLogoFile/20130313/51403f14a99ab.png',
621
- },
622
- {
623
- id: 124,
624
- name: '허머',
625
- name_en: 'HUMMER',
626
- country: '미국',
627
- type: 'etc',
628
- isSuperCar: false,
629
- image_url:
630
- 'https://zdata.nicednr.co.kr:8181/carLogoFile/20130313/5140421eb9148.png',
631
- },
632
- {
633
- id: 127,
634
- name: '대우버스',
635
- name_en: 'DAEWOO BUS',
636
- country: '한국',
637
- type: 'etc',
638
- isSuperCar: false,
639
- image_url:
640
- 'https://zdata.nicednr.co.kr:8181/carLogoFile/20150128/54c862680e32e.png',
641
- },
642
- {
643
- id: 129,
644
- name: '타타대우',
645
- name_en: 'TATA DAEWOO',
646
- country: '한국',
647
- type: 'etc',
648
- isSuperCar: false,
649
- image_url:
650
- 'https://zdata.nicednr.co.kr:8181/carLogoFile/20150128/54c86236ccb24.png',
651
- },
652
- {
653
- id: 139,
654
- name: '테슬라',
655
- name_en: '',
656
- country: '미국',
657
- type: 'etc',
658
- isSuperCar: false,
659
- image_url:
660
- 'https://zdata.nicednr.co.kr:8181/carLogoFile/20150421/5535eebfd289b.png',
661
- },
662
- {
663
- id: 140,
664
- name: '맥라렌',
665
- name_en: 'McLaren',
666
- country: '영국',
667
- type: 'etc',
668
- isSuperCar: false,
669
- image_url:
670
- 'https://zdata.nicednr.co.kr:8181/carLogoFile/20151113/564581729d1bf.png',
671
- },
672
- {
673
- id: 145,
674
- name: '북기은상',
675
- name_en: 'DFSK',
676
- country: '중국',
677
- type: 'etc',
678
- isSuperCar: false,
679
- image_url:
680
- 'https://zdata.nicednr.co.kr:8181/carLogoFile/20151113/5645808060f19.png',
681
- },
682
- {
683
- id: 150,
684
- name: '에디슨모터스',
685
- name_en: 'EDISON MOTORS',
686
- country: '한국',
687
- type: 'etc',
688
- isSuperCar: false,
689
- image_url: '',
690
- },
691
- {
692
- id: 236,
693
- name: '포톤',
694
- name_en: 'FOTON',
695
- country: '중국',
696
- type: 'etc',
697
- isSuperCar: false,
698
- image_url:
699
- 'https://zdata.nicednr.co.kr:8181/carLogoFile/20170207/58995944f0ffb.png',
700
- },
701
- {
702
- id: 237,
703
- name: 'DFSK(동풍자동차)',
704
- name_en: '',
705
- country: '중국',
706
- type: 'etc',
707
- isSuperCar: false,
708
- image_url:
709
- 'https://zdata.nicednr.co.kr:8181/carLogoFile/20170602/5931243f1c462.png',
710
- },
711
- {
712
- id: 238,
713
- name: '쯔더우(쎄미시스코)',
714
- name_en: 'Semisysco',
715
- country: '중국',
716
- type: 'etc',
717
- isSuperCar: false,
718
- image_url:
719
- 'https://zdata.nicednr.co.kr:8181/carLogoFile/20180321/5ab21e0260b24.png',
720
- },
721
- {
722
- id: 239,
723
- name: '대창모터스',
724
- name_en: 'DAECHANG MOTORS',
725
- country: '한국',
726
- type: 'etc',
727
- isSuperCar: false,
728
- image_url:
729
- 'https://zdata.nicednr.co.kr:8181/carLogoFile/20180321/5ab21d6025af2.png',
730
- },
731
- {
732
- id: 241,
733
- name: 'DS',
734
- name_en: 'DS',
735
- country: '프랑스',
736
- type: 'etc',
737
- isSuperCar: false,
738
- image_url:
739
- 'https://zdata.nicednr.co.kr:8181/carLogoFile/20181218/5c185f6a327fd.png',
740
- },
741
- {
742
- id: 243,
743
- name: '세보모빌리티(캠시스)',
744
- name_en: 'CEVO',
745
- country: '한국',
746
- type: 'etc',
747
- isSuperCar: false,
748
- image_url:
749
- 'https://zdata.nicednr.co.kr:8181/carLogoFile/20210208/602095709e17b.png',
750
- },
751
- {
752
- id: 255,
753
- name: '파워프라자',
754
- name_en: 'PowerPlaza',
755
- country: '한국',
756
- type: 'etc',
757
- isSuperCar: false,
758
- image_url:
759
- 'https://zdata.nicednr.co.kr:8181/carLogoFile/20210208/602097eaa23e7.png',
760
- },
761
- {
762
- id: 256,
763
- name: '마이브(KST 일렉트릭)',
764
- name_en: 'MaiV(KST electric)',
765
- country: '한국',
766
- type: 'etc',
767
- isSuperCar: false,
768
- image_url:
769
- 'https://zdata.nicednr.co.kr:8181/carLogoFile/20210208/6020956895831.png',
770
- },
771
- {
772
- id: 257,
773
- name: '어울림',
774
- name_en: '',
775
- country: '한국',
776
- type: 'etc',
777
- isSuperCar: false,
778
- image_url:
779
- 'https://zdata.nicednr.co.kr:8181/carLogoFile/20210216/602b888d1147f.png',
780
- },
781
- {
782
- id: 270,
783
- name: '우진산전',
784
- name_en: 'WOOJIN',
785
- country: '한국',
786
- type: 'etc',
787
- isSuperCar: false,
788
- image_url: '',
789
- },
790
- {
791
- id: 273,
792
- name: '폴스타',
793
- name_en: 'POLESTAR',
794
- country: '스웨덴',
795
- type: 'etc',
796
- isSuperCar: false,
797
- image_url:
798
- 'https://zdata.nicednr.co.kr:8181/carLogoFile/20220118/61e64423dda27.png',
799
- },
800
- {
801
- id: 274,
802
- name: '디피코',
803
- name_en: 'DPECO',
804
- country: '한국',
805
- type: 'etc',
806
- isSuperCar: false,
807
- image_url:
808
- 'https://zdata.nicednr.co.kr:8181/carLogoFile/20230127/63d381337e884.png',
809
- },
810
- {
811
- id: 278,
812
- name: 'JJ 모터스',
813
- name_en: 'JJ MOTORS',
814
- country: '한국',
815
- type: 'etc',
816
- isSuperCar: false,
817
- image_url:
818
- 'https://zdata.nicednr.co.kr:8181/carLogoFile/20220427/6269028d101e3.png',
819
- },
820
- {
821
- id: 279,
822
- name: '마스타',
823
- name_en: 'MASTA',
824
- country: '한국',
825
- type: 'etc',
826
- isSuperCar: false,
827
- image_url:
828
- 'https://zdata.nicednr.co.kr:8181/carLogoFile/20230127/63d381c778c16.png',
829
- },
830
- {
831
- id: 280,
832
- name: '이비온',
833
- name_en: 'EVion',
834
- country: '한국',
835
- type: 'etc',
836
- isSuperCar: false,
837
- image_url: '',
838
- },
839
- {
840
- id: 282,
841
- name: '신위안',
842
- name_en: 'SHINERAY',
843
- country: '중국',
844
- type: 'etc',
845
- isSuperCar: false,
846
- image_url: '',
847
- },
848
- {
849
- id: 286,
850
- name: '스마트이브이',
851
- name_en: '',
852
- country: '대한민국',
853
- type: 'etc',
854
- isSuperCar: false,
855
- image_url:
856
- 'https://zdata.nicednr.co.kr:8181/carLogoFile/20240405/660f4a72e4fa0.png',
857
- },
858
- {
859
- id: 287,
860
- name: 'BYD(비야디)',
861
- name_en: 'BYD',
862
- country: '중국',
863
- type: 'etc',
864
- isSuperCar: false,
865
- image_url: '',
866
- },
867
- {
868
- id: 288,
869
- name: '지리자동차',
870
- name_en: '',
871
- country: '중국',
872
- type: 'etc',
873
- isSuperCar: false,
874
- image_url: '',
875
- },
876
- ] as const;
877
-
878
- export const CarCategory = [
879
- { id: 1, name: '경차', allow_new: true, allow_rent: true, allow_lease: true },
880
- {
881
- id: 2,
882
- name: '소형차',
883
- allow_new: true,
884
- allow_rent: true,
885
- allow_lease: true,
886
- },
887
- {
888
- id: 3,
889
- name: '준중형차',
890
- allow_new: true,
891
- allow_rent: true,
892
- allow_lease: true,
893
- },
894
- {
895
- id: 4,
896
- name: '중형차',
897
- allow_new: true,
898
- allow_rent: true,
899
- allow_lease: true,
900
- },
901
- {
902
- id: 5,
903
- name: '대형차',
904
- allow_new: true,
905
- allow_rent: true,
906
- allow_lease: true,
907
- },
908
- {
909
- id: 6,
910
- name: '스포츠카',
911
- allow_new: true,
912
- allow_rent: false,
913
- allow_lease: true,
914
- },
915
- { id: 7, name: 'RV', allow_new: true, allow_rent: true, allow_lease: true },
916
- { id: 8, name: 'SUV', allow_new: true, allow_rent: true, allow_lease: true },
917
- {
918
- id: 9,
919
- name: '승합차',
920
- allow_new: true,
921
- allow_rent: true,
922
- allow_lease: true,
923
- },
924
- {
925
- id: 10,
926
- name: '화물차',
927
- allow_new: true,
928
- allow_rent: false,
929
- allow_lease: true,
930
- },
931
- {
932
- id: 11,
933
- name: '버스',
934
- allow_new: true,
935
- allow_rent: false,
936
- allow_lease: true,
937
- },
938
- {
939
- id: 21,
940
- name: '특장차',
941
- allow_new: true,
942
- allow_rent: false,
943
- allow_lease: true,
944
- },
945
- {
946
- id: 20,
947
- name: '기타',
948
- allow_new: true,
949
- allow_rent: false,
950
- allow_lease: true,
951
- },
952
- {
953
- id: 24,
954
- name: '하이브리드',
955
- allow_new: true,
956
- allow_rent: true,
957
- allow_lease: true,
958
- },
959
- {
960
- id: 25,
961
- name: '전기차',
962
- allow_new: true,
963
- allow_rent: true,
964
- allow_lease: true,
965
- },
966
- ] as const;
967
-
968
- export const CarPurpose = [
969
- { id: 1, name: '일반' },
970
- { id: 2, name: '장애인' },
971
- { id: 3, name: '택시' },
972
- { id: 4, name: '렌트카' },
973
- { id: 5, name: '운전교습용' },
974
- ] as const;
975
-
976
- export const CarShapeData = [
977
- { id: 0, name: '' },
978
- { id: 1, name: '세단' },
979
- { id: 2, name: '스포츠카' },
980
- { id: 3, name: '쿠페' },
981
- { id: 4, name: '컨버터블' },
982
- { id: 5, name: '해치백' },
983
- { id: 6, name: '웨건' },
984
- { id: 7, name: 'SUV' },
985
- { id: 8, name: '미니밴' },
986
- { id: 9, name: '크로스오버' },
987
- { id: 10, name: '트럭' },
988
- { id: 11, name: '하이브리드' },
989
- { id: 12, name: '전기차' },
990
- { id: 13, name: '버스' },
991
- { id: 14, name: '특장' },
992
- { id: 15, name: '수소전기차' },
993
- { id: 16, name: '캠핑카' },
994
- { id: 17, name: '캠핑트레일러' },
995
- ] as const;
996
-
997
- export const CarMakerId = CarMakerData.map((el) => {
998
- return el.id;
999
- });
1000
- export type CarMakerId = (typeof CarMakerData)[number]['id'];
1001
-
1002
- export const CarCategoryId = CarCategory.map((el) => {
1003
- return el.id;
1004
- });
1005
- export type CarCategoryId = (typeof CarCategory)[number]['id'];
1006
-
1007
- export const CarPurposeId = CarPurpose.map((el) => {
1008
- return el.id;
1009
- });
1010
- export type CarPurposeId = (typeof CarPurpose)[number]['id'];
1011
-
1012
- export const CarShapeId = CarShapeData.map((el) => {
1013
- return el.id;
1014
- });
1015
- export type CarShapeId = (typeof CarShapeData)[number]['id'];