gotrip-fx-transaction-form 0.1.0-uat.1

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 (107) hide show
  1. package/index.js +60056 -0
  2. package/package.json +14 -0
  3. package/types/components/AddTransaction/BankList.d.ts +20 -0
  4. package/types/components/AddTransaction/BankSelectionInput.d.ts +11 -0
  5. package/types/components/AddTransaction/Business.d.ts +7 -0
  6. package/types/components/AddTransaction/Education.d.ts +7 -0
  7. package/types/components/AddTransaction/GroupCustomers.d.ts +5 -0
  8. package/types/components/AddTransaction/SingularCustomer.d.ts +7 -0
  9. package/types/components/AddTransaction/UseCaseSelection.d.ts +21 -0
  10. package/types/components/AddUser/AddBookerForm.d.ts +6 -0
  11. package/types/components/Apps/AdminApp.d.ts +1 -0
  12. package/types/components/Apps/AgencyApp.d.ts +1 -0
  13. package/types/components/Apps/EmbededIndividualApp.d.ts +5 -0
  14. package/types/components/Apps/IndividualApp.d.ts +1 -0
  15. package/types/components/Apps/PartnerApp.d.ts +1 -0
  16. package/types/components/CurrencyExchangeRate/CurrencyExchangeRate.d.ts +10 -0
  17. package/types/components/CustomerSelection/CustomerSelection.d.ts +10 -0
  18. package/types/components/Dashboard/BookerSelectionInput.d.ts +7 -0
  19. package/types/components/Dashboard/DailyTransactionChart.d.ts +8 -0
  20. package/types/components/Dashboard/TotalCommissionCard.d.ts +9 -0
  21. package/types/components/Dashboard/TotalTransactionCard.d.ts +9 -0
  22. package/types/components/Dashboard/TransactionByStatusChart.d.ts +8 -0
  23. package/types/components/Dashboard/TransactionByTypeChart.d.ts +8 -0
  24. package/types/components/Layout/Layout.d.ts +6 -0
  25. package/types/components/Layout/NavBar/Navbar.d.ts +1 -0
  26. package/types/components/Menu/Menu.d.ts +1 -0
  27. package/types/components/Menu/MenuItem.d.ts +9 -0
  28. package/types/components/Modal/ErrorModal.d.ts +1 -0
  29. package/types/components/Modal/Modal.d.ts +12 -0
  30. package/types/components/Modal/SuccessModal.d.ts +1 -0
  31. package/types/components/Modal/WebcamModal.d.ts +7 -0
  32. package/types/components/Pagination/LimitDropdown.d.ts +6 -0
  33. package/types/components/TransactionList/BankSelectionInput.d.ts +7 -0
  34. package/types/components/TransactionList/CurrencySelectionInput.d.ts +7 -0
  35. package/types/components/TransactionList/StatusSelectionInput.d.ts +9 -0
  36. package/types/components/TransactionStatusBadge/TransactionStatusBadge.d.ts +4 -0
  37. package/types/components/UpdateUser/UpdateBookerForm.d.ts +7 -0
  38. package/types/components/UpdateUser/UpdateCommissionRateForm.d.ts +7 -0
  39. package/types/components/UserProfile/AccountSettingForm.d.ts +7 -0
  40. package/types/components/UserProfile/ChangePasswordForm.d.ts +5 -0
  41. package/types/components/UserStatusBadge/UserStatusBadge.d.ts +4 -0
  42. package/types/components/ui/link-button.d.ts +4 -0
  43. package/types/components/ui/pagination.d.ts +19 -0
  44. package/types/constants/airlines.d.ts +7 -0
  45. package/types/constants/airport-code-country.d.ts +5 -0
  46. package/types/constants/api-urls.d.ts +56 -0
  47. package/types/constants/countries.d.ts +6 -0
  48. package/types/constants/env.d.ts +5 -0
  49. package/types/constants/index.d.ts +7 -0
  50. package/types/constants/provinces.d.ts +6 -0
  51. package/types/design-systems/Button/Button.d.ts +14 -0
  52. package/types/design-systems/Chart/LineChart.d.ts +13 -0
  53. package/types/design-systems/Chart/PieChart.d.ts +9 -0
  54. package/types/design-systems/Drawer/Drawer.d.ts +12 -0
  55. package/types/design-systems/Input/Input.d.ts +5 -0
  56. package/types/design-systems/Stat/Stat.d.ts +8 -0
  57. package/types/design-systems/Toast/Toast.d.ts +7 -0
  58. package/types/embeded-main.d.ts +7 -0
  59. package/types/hooks/transanactions/useBusiness.hook.d.ts +202 -0
  60. package/types/hooks/transanactions/useEducation.hook.d.ts +270 -0
  61. package/types/hooks/useBookerList.d.ts +11 -0
  62. package/types/hooks/useConfirmTransaction.d.ts +32 -0
  63. package/types/hooks/useDashboard.d.ts +27 -0
  64. package/types/hooks/useDisclosure.d.ts +5 -0
  65. package/types/hooks/useEducationFXList.d.ts +8 -0
  66. package/types/hooks/useGroupCustomers.d.ts +231 -0
  67. package/types/hooks/useImportBookers.d.ts +104 -0
  68. package/types/hooks/useIsMobile.d.ts +1 -0
  69. package/types/hooks/useTransactionList.d.ts +21 -0
  70. package/types/hooks/useUserList.d.ts +12 -0
  71. package/types/hooks/useUserProfile.d.ts +7 -0
  72. package/types/hooks/useWindowSize.d.ts +4 -0
  73. package/types/index.d.ts +6 -0
  74. package/types/main.d.ts +1 -0
  75. package/types/pages/admin/home/UserList.d.ts +1 -0
  76. package/types/pages/admin/login/LoginPage.d.ts +6 -0
  77. package/types/pages/agency/add-booker/add-booker.d.ts +5 -0
  78. package/types/pages/agency/add-booker/import-booker.d.ts +1 -0
  79. package/types/pages/agency/add-transaction/add-transaction.d.ts +5 -0
  80. package/types/pages/agency/booker-list/index.d.ts +1 -0
  81. package/types/pages/agency/dashboard/dashboard.d.ts +1 -0
  82. package/types/pages/agency/login/LoginPage.d.ts +6 -0
  83. package/types/pages/agency/register/RegisterPage.d.ts +1 -0
  84. package/types/pages/agency/register/SupervisorRegisterForm.d.ts +1 -0
  85. package/types/pages/agency/register/UserRegisterForm.d.ts +1 -0
  86. package/types/pages/agency/register/UserTypeSelection.d.ts +7 -0
  87. package/types/pages/agency/tracsaction-list/TransactionList.d.ts +7 -0
  88. package/types/pages/agency/traveller-confirmation/TravellerConfirmation.d.ts +1 -0
  89. package/types/pages/agency/user-profile/user-profile.d.ts +1 -0
  90. package/types/pages/guest/home.d.ts +1 -0
  91. package/types/pages/partner/EducationFXList.d.ts +1 -0
  92. package/types/pages/partner/MemberList.d.ts +1 -0
  93. package/types/store/useAppStore.d.ts +25 -0
  94. package/types/store/useAuthStore.d.ts +12 -0
  95. package/types/types/app-actor.d.ts +6 -0
  96. package/types/types/enum.d.ts +17 -0
  97. package/types/types/request.dto.d.ts +17 -0
  98. package/types/types/response.dto.d.ts +147 -0
  99. package/types/types/user.d.ts +11 -0
  100. package/types/util/axios.d.ts +1 -0
  101. package/types/util/extract-api-error-codes.d.ts +2 -0
  102. package/types/util/fixed-thead.d.ts +1 -0
  103. package/types/util/formatter.d.ts +3 -0
  104. package/types/util/time.d.ts +1 -0
  105. package/types/util/toast.d.ts +1 -0
  106. package/types/util/transaction.util.d.ts +2 -0
  107. package/types/vite-env.d.ts +1 -0

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.