gotrip-fx-transaction-form 1.0.155 → 1.0.156

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 (84) hide show
  1. package/assets/index.css +1 -1
  2. package/index.js +55435 -43167
  3. package/package.json +1 -1
  4. package/types/components/Apps/EmbededIndividualApp.d.ts +4 -1
  5. package/types/components/Department/DepartmentCard.d.ts +3 -1
  6. package/types/components/Insurance/CountryWithFlag.d.ts +23 -0
  7. package/types/components/Insurance/CreateInsuranceTransactionForm.d.ts +8 -0
  8. package/types/components/Insurance/FormElements.d.ts +36 -3
  9. package/types/components/Insurance/InsuranceContentRenderer/DynamicRenderer.d.ts +6 -0
  10. package/types/components/Insurance/InsuranceContentRenderer/blocks/AccordionBlock.d.ts +6 -0
  11. package/types/components/Insurance/InsuranceContentRenderer/blocks/ActionButtonBlock.d.ts +6 -0
  12. package/types/components/Insurance/InsuranceContentRenderer/blocks/ContainerBlock.d.ts +6 -0
  13. package/types/components/Insurance/InsuranceContentRenderer/blocks/DataRowBlock.d.ts +6 -0
  14. package/types/components/Insurance/InsuranceContentRenderer/blocks/DividerBlock.d.ts +6 -0
  15. package/types/components/Insurance/InsuranceContentRenderer/blocks/ListGroupBlock.d.ts +6 -0
  16. package/types/components/Insurance/InsuranceContentRenderer/blocks/TextBlock.d.ts +6 -0
  17. package/types/components/Insurance/InsuranceContentRenderer/types.d.ts +64 -0
  18. package/types/components/Insurance/InsuranceContentRenderer/utils/richText.d.ts +14 -0
  19. package/types/components/Insurance/InsuranceContentRenderer/utils/styleMapper.d.ts +6 -0
  20. package/types/components/Insurance/InsurancePlans/BenefitDetailsModal.d.ts +11 -0
  21. package/types/components/Insurance/InsurancePlans/InsurancePlanCard.d.ts +28 -0
  22. package/types/components/Insurance/InsurancePlans/InsurancePlanFilter.d.ts +12 -0
  23. package/types/components/Insurance/InsurancePlans/InsurancePlanList.d.ts +21 -0
  24. package/types/components/Insurance/InsurancePlans/index.d.ts +3 -0
  25. package/types/components/Insurance/RelationshipSelect.d.ts +22 -0
  26. package/types/components/Insurance/SimpleDetail.d.ts +2 -1
  27. package/types/components/Insurance/StepFourPayment.d.ts +14 -0
  28. package/types/components/Insurance/StepOneForm.d.ts +5 -14
  29. package/types/components/Insurance/StepThreeBuyerInfo.d.ts +9 -0
  30. package/types/components/Insurance/StepThreeInsuredPeople.d.ts +17 -0
  31. package/types/components/Insurance/StepTwoPlans.d.ts +18 -0
  32. package/types/components/Insurance/countryUtils.d.ts +10 -0
  33. package/types/components/Insurance/types.d.ts +71 -2
  34. package/types/components/Insurance/utils.d.ts +2 -2
  35. package/types/components/Insurance/validationRules.d.ts +4 -0
  36. package/types/components/Insurance/validationUtils.d.ts +12 -0
  37. package/types/components/Modal/InsurancePaymentModal.d.ts +11 -0
  38. package/types/components/Modal/UpdateTenantCommissionInputCell.d.ts +14 -13
  39. package/types/components/PolicyGroup/CommissionPolicyGroupFormDialog.d.ts +16 -0
  40. package/types/components/PolicyGroup/CommissionPolicyGroupListView.d.ts +11 -0
  41. package/types/components/PolicyGroup/PolicyRulesEditor.d.ts +54 -0
  42. package/types/components/PolicyGroup/PolicyTypes.d.ts +41 -0
  43. package/types/components/PolicyGroup/PricingPolicyListView.d.ts +11 -0
  44. package/types/components/StepIndicator/StepIndicatorCard.d.ts +11 -0
  45. package/types/components/StepIndicator/StepIndicatorHorizontal.d.ts +11 -0
  46. package/types/components/StepIndicator/index.d.ts +2 -0
  47. package/types/constants/api-urls.d.ts +23 -10
  48. package/types/constants/commission-policy-constants.d.ts +5 -0
  49. package/types/constants/countries.d.ts +2 -0
  50. package/types/constants/policy-enums.d.ts +7 -1
  51. package/types/embeded-main.d.ts +3 -0
  52. package/types/hooks/useBookedSimGrouped.d.ts +38 -0
  53. package/types/hooks/useBookedTransactionGroupDetail.d.ts +40 -0
  54. package/types/hooks/useComissionPolicies.d.ts +6 -6
  55. package/types/hooks/useDocumentScan.d.ts +22 -0
  56. package/types/hooks/useImportBookers.d.ts +9 -9
  57. package/types/hooks/useImportMembers.d.ts +9 -9
  58. package/types/hooks/useInsuranceData.d.ts +4 -19
  59. package/types/hooks/useInsurancePlans.d.ts +10 -0
  60. package/types/hooks/useInsuranceTransaction.d.ts +40 -1
  61. package/types/hooks/useParseDocumentData.d.ts +10 -0
  62. package/types/hooks/usePolicyGroups.d.ts +16 -1
  63. package/types/hooks/useTenantList.d.ts +5 -4
  64. package/types/hooks/useUserList.d.ts +3 -1
  65. package/types/pages/admin/fx-commission-policy/FxCommissionPolicyManagement.d.ts +1 -0
  66. package/types/pages/agency/booked-sim-list/BookedSimDescription.d.ts +6 -0
  67. package/types/pages/agency/booked-sim-list/BookedSimList.d.ts +6 -0
  68. package/types/pages/agency/booked-sim-transaction-detail/BookedGroupSimTransactionDetail.d.ts +1 -0
  69. package/types/pages/agency/role-list/RoleList.d.ts +2 -0
  70. package/types/pages/guest/insurance-create.d.ts +5 -0
  71. package/types/store/useAuthStore.d.ts +1 -0
  72. package/types/store/useTenantStore.d.ts +12 -0
  73. package/types/types/enum.d.ts +10 -2
  74. package/types/types/insurance-transaction.dto.d.ts +4 -1
  75. package/types/types/insurance.d.ts +13 -2
  76. package/types/types/response.dto.d.ts +26 -4
  77. package/types/types/sdk.d.ts +4 -0
  78. package/types/types/user.d.ts +5 -1
  79. package/types/util/insurance.util.d.ts +4 -0
  80. package/types/components/Insurance/StepFourSummary.d.ts +0 -18
  81. package/types/components/Insurance/StepIndicator.d.ts +0 -10
  82. package/types/components/Insurance/StepThreePlanComparison.d.ts +0 -11
  83. package/types/components/Insurance/StepTwoForm.d.ts +0 -15
  84. package/types/pages/agency/group-sim-transaction-detail/GroupSimTransactionDetail.d.ts +0 -1

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.