gotrip-fx-transaction-form 1.0.150 → 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.
- package/assets/index.css +1 -1
- package/index.js +55435 -43167
- package/package.json +1 -1
- package/types/components/Apps/EmbededIndividualApp.d.ts +4 -1
- package/types/components/Department/DepartmentCard.d.ts +3 -1
- package/types/components/Insurance/CountryWithFlag.d.ts +23 -0
- package/types/components/Insurance/CreateInsuranceTransactionForm.d.ts +8 -0
- package/types/components/Insurance/FormElements.d.ts +36 -3
- package/types/components/Insurance/InsuranceContentRenderer/DynamicRenderer.d.ts +6 -0
- package/types/components/Insurance/InsuranceContentRenderer/blocks/AccordionBlock.d.ts +6 -0
- package/types/components/Insurance/InsuranceContentRenderer/blocks/ActionButtonBlock.d.ts +6 -0
- package/types/components/Insurance/InsuranceContentRenderer/blocks/ContainerBlock.d.ts +6 -0
- package/types/components/Insurance/InsuranceContentRenderer/blocks/DataRowBlock.d.ts +6 -0
- package/types/components/Insurance/InsuranceContentRenderer/blocks/DividerBlock.d.ts +6 -0
- package/types/components/Insurance/InsuranceContentRenderer/blocks/ListGroupBlock.d.ts +6 -0
- package/types/components/Insurance/InsuranceContentRenderer/blocks/TextBlock.d.ts +6 -0
- package/types/components/Insurance/InsuranceContentRenderer/types.d.ts +64 -0
- package/types/components/Insurance/InsuranceContentRenderer/utils/richText.d.ts +14 -0
- package/types/components/Insurance/InsuranceContentRenderer/utils/styleMapper.d.ts +6 -0
- package/types/components/Insurance/InsurancePlans/BenefitDetailsModal.d.ts +11 -0
- package/types/components/Insurance/InsurancePlans/InsurancePlanCard.d.ts +28 -0
- package/types/components/Insurance/InsurancePlans/InsurancePlanFilter.d.ts +12 -0
- package/types/components/Insurance/InsurancePlans/InsurancePlanList.d.ts +21 -0
- package/types/components/Insurance/InsurancePlans/index.d.ts +3 -0
- package/types/components/Insurance/RelationshipSelect.d.ts +22 -0
- package/types/components/Insurance/SimpleDetail.d.ts +2 -1
- package/types/components/Insurance/StepFourPayment.d.ts +14 -0
- package/types/components/Insurance/StepOneForm.d.ts +5 -14
- package/types/components/Insurance/StepThreeBuyerInfo.d.ts +9 -0
- package/types/components/Insurance/StepThreeInsuredPeople.d.ts +17 -0
- package/types/components/Insurance/StepTwoPlans.d.ts +18 -0
- package/types/components/Insurance/countryUtils.d.ts +10 -0
- package/types/components/Insurance/types.d.ts +71 -2
- package/types/components/Insurance/utils.d.ts +2 -2
- package/types/components/Insurance/validationRules.d.ts +4 -0
- package/types/components/Insurance/validationUtils.d.ts +12 -0
- package/types/components/Modal/InsurancePaymentModal.d.ts +11 -0
- package/types/components/Modal/UpdateTenantCommissionInputCell.d.ts +14 -13
- package/types/components/PolicyGroup/CommissionPolicyGroupFormDialog.d.ts +16 -0
- package/types/components/PolicyGroup/CommissionPolicyGroupListView.d.ts +11 -0
- package/types/components/PolicyGroup/PolicyRulesEditor.d.ts +54 -0
- package/types/components/PolicyGroup/PolicyTypes.d.ts +41 -0
- package/types/components/PolicyGroup/PricingPolicyListView.d.ts +11 -0
- package/types/components/StepIndicator/StepIndicatorCard.d.ts +11 -0
- package/types/components/StepIndicator/StepIndicatorHorizontal.d.ts +11 -0
- package/types/components/StepIndicator/index.d.ts +2 -0
- package/types/constants/api-urls.d.ts +23 -10
- package/types/constants/commission-policy-constants.d.ts +5 -0
- package/types/constants/countries.d.ts +2 -0
- package/types/constants/policy-enums.d.ts +7 -1
- package/types/embeded-main.d.ts +3 -0
- package/types/hooks/useBookedSimGrouped.d.ts +38 -0
- package/types/hooks/useBookedTransactionGroupDetail.d.ts +40 -0
- package/types/hooks/useComissionPolicies.d.ts +6 -6
- package/types/hooks/useDocumentScan.d.ts +22 -0
- package/types/hooks/useImportBookers.d.ts +9 -9
- package/types/hooks/useImportMembers.d.ts +9 -9
- package/types/hooks/useInsuranceData.d.ts +4 -19
- package/types/hooks/useInsurancePlans.d.ts +10 -0
- package/types/hooks/useInsuranceTransaction.d.ts +40 -1
- package/types/hooks/useParseDocumentData.d.ts +10 -0
- package/types/hooks/usePolicyGroups.d.ts +16 -1
- package/types/hooks/useTenantList.d.ts +5 -4
- package/types/hooks/useUserList.d.ts +3 -1
- package/types/pages/admin/fx-commission-policy/FxCommissionPolicyManagement.d.ts +1 -0
- package/types/pages/agency/booked-sim-list/BookedSimDescription.d.ts +6 -0
- package/types/pages/agency/booked-sim-list/BookedSimList.d.ts +6 -0
- package/types/pages/agency/booked-sim-transaction-detail/BookedGroupSimTransactionDetail.d.ts +1 -0
- package/types/pages/agency/role-list/RoleList.d.ts +2 -0
- package/types/pages/guest/insurance-create.d.ts +5 -0
- package/types/store/useAuthStore.d.ts +1 -0
- package/types/store/useTenantStore.d.ts +12 -0
- package/types/types/enum.d.ts +10 -2
- package/types/types/insurance-transaction.dto.d.ts +4 -1
- package/types/types/insurance.d.ts +13 -2
- package/types/types/response.dto.d.ts +26 -4
- package/types/types/sdk.d.ts +4 -0
- package/types/types/user.d.ts +5 -1
- package/types/util/insurance.util.d.ts +4 -0
- package/types/components/Insurance/StepFourSummary.d.ts +0 -18
- package/types/components/Insurance/StepIndicator.d.ts +0 -10
- package/types/components/Insurance/StepThreePlanComparison.d.ts +0 -11
- package/types/components/Insurance/StepTwoForm.d.ts +0 -15
- 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.