@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

There are too many changes on this page to be displayed.


The amount of changes on this page would crash your brower.

You can still verify the content by downloading the package file manually.