@zimyo/manage 0.3.2 → 0.3.3
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/dist/App.d.ts +2 -2
- package/dist/components/customComponents/CustomCard/index.d.ts +2 -1
- package/dist/components/customComponents/CustomFilter/index.d.ts +2 -1
- package/dist/components/customComponents/CustomSearch/index.d.ts +2 -1
- package/dist/components/customComponents/PageHeading/index.d.ts +3 -2
- package/dist/components/manage/Subscription/PaymentRecords/PaymentRecords.d.ts +1 -1
- package/dist/components/manage/Subscription/SubscriptionPricing/CardView/CardView.d.ts +1 -1
- package/dist/components/manage/Subscription/SubscriptionPricing/ComparePlans/ComparePlans.d.ts +1 -1
- package/dist/components/manage/Subscription/SubscriptionPricing/SubscriptionPricing.d.ts +1 -1
- package/dist/components/ui/Alert/Alert.d.ts +2 -1
- package/dist/components/ui/DatePicker/DatePicker.d.ts +1 -0
- package/dist/components/ui/Loader/Loader.d.ts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/main.cjs +326 -302
- package/dist/main.d.ts +16 -16
- package/dist/main.js +38346 -34596
- package/dist/node_modules/html-dom-parser/esm/types.d.ts +3 -0
- package/dist/shared/hooks/useFetch.d.ts +9 -8
- package/dist/shared/providers/AppProvider.d.ts +3 -2
- package/dist/shared/providers/AuthProvider.d.ts +2 -1
- package/dist/shared/services/http.d.ts +4 -4
- package/dist/shared/types/backend.types.d.ts +2 -1
- package/dist/shared/zustand/alert.store.d.ts +2 -1
- package/dist/shared/zustand/session.store.d.ts +1 -1
- package/dist/src/App.d.ts +4 -0
- package/dist/src/components/customComponents/CustomCard/index.d.ts +13 -0
- package/dist/src/components/customComponents/CustomFilter/index.d.ts +24 -0
- package/dist/src/components/customComponents/CustomSearch/index.d.ts +10 -0
- package/dist/src/components/customComponents/CustomTooltip/index.d.ts +10 -0
- package/dist/src/components/customComponents/PageHeading/index.d.ts +23 -0
- package/dist/src/components/manage/Subscription/BillingSubscription/BillingSubscription.d.ts +1 -0
- package/dist/src/components/manage/Subscription/Consumption/Consumption.d.ts +1 -0
- package/dist/src/components/manage/Subscription/Invoices/Invoices.d.ts +1 -0
- package/dist/src/components/manage/Subscription/Invoices/constant.d.ts +4 -0
- package/dist/src/components/manage/Subscription/Ledger/Ledger.d.ts +1 -0
- package/dist/src/components/manage/Subscription/Mail/Mail.d.ts +1 -0
- package/dist/src/components/manage/Subscription/NewOverview/NewOverview.d.ts +5 -0
- package/dist/src/components/manage/Subscription/Overview/Overview.d.ts +5 -0
- package/dist/src/components/manage/Subscription/PaymentMethod/PaymentMethod.d.ts +1 -0
- package/dist/src/components/manage/Subscription/PaymentRecords/PaymentRecords.d.ts +6 -0
- package/dist/src/components/manage/Subscription/PaymentRecords/TableView/Table.d.ts +1 -0
- package/dist/src/components/manage/Subscription/PlansOverview/PlansOverview.d.ts +50 -0
- package/dist/src/components/manage/Subscription/PlansOverview/constant.d.ts +4 -0
- package/dist/src/components/manage/Subscription/ProductUpdates/ProductUpdates.d.ts +1 -0
- package/dist/src/components/manage/Subscription/ServiceDeskLogs/ServiceDeskLogs.d.ts +1 -0
- package/dist/src/components/manage/Subscription/SubscribedPlan/SubscribedPlan.d.ts +5 -0
- package/dist/src/components/manage/Subscription/SubscriptionPricing/CardView/CardView.d.ts +3 -0
- package/dist/src/components/manage/Subscription/SubscriptionPricing/ComparePlans/ComparePlans.d.ts +3 -0
- package/dist/src/components/manage/Subscription/SubscriptionPricing/SubscriptionPricing.d.ts +6 -0
- package/dist/src/components/manage/Subscription/TempPayment/TempPayment.d.ts +1 -0
- package/dist/src/components/manage/Subscription/TempPayment/constant.d.ts +5 -0
- package/dist/src/components/manage/Subscription/UpcomingSubscription/UpcomingSubscription.d.ts +1 -0
- package/dist/src/components/manage/Subscription/UpcomingSubscription/constant.d.ts +4 -0
- package/dist/src/components/manage/Subscription/Wallet/Wallet.d.ts +1 -0
- package/dist/src/components/manage/Subscription/Wallet/constant.d.ts +8 -0
- package/dist/src/components/ui/Alert/Alert.d.ts +6 -0
- package/dist/src/components/ui/DatePicker/DatePicker.d.ts +4 -0
- package/dist/src/components/ui/Loader/Loader.d.ts +7 -0
- package/dist/src/components/ui/NoDataFound/NoDataFound.d.ts +5 -0
- package/dist/src/components/ui/OrgDetailsCard/OrgDetailsCard.d.ts +20 -0
- package/dist/src/components/ui/OverviewCard/OverviewCard.d.ts +4 -0
- package/dist/src/components/ui/TextReducingTooltipComponent/TextReducingTooltipComponent.d.ts +10 -0
- package/dist/src/components/ui/TopUpWalletModal/TopUpWalletModal.d.ts +6 -0
- package/dist/src/index.d.ts +1 -0
- package/dist/src/main.d.ts +16 -0
- package/dist/src/shared/constants/constant.d.ts +41 -0
- package/dist/src/shared/constants/endpoints.d.ts +24 -0
- package/dist/src/shared/constants/form-types.d.ts +44 -0
- package/dist/src/shared/constants/status.d.ts +4 -0
- package/dist/src/shared/constants/time.d.ts +53 -0
- package/dist/src/shared/hooks/useConstants.d.ts +1 -0
- package/dist/src/shared/hooks/useDownloadBufferFile.d.ts +7 -0
- package/dist/src/shared/hooks/useErrorAlert.d.ts +1 -0
- package/dist/src/shared/hooks/useFetch.d.ts +124 -0
- package/dist/src/shared/hooks/useFilterParsedValue.d.ts +6 -0
- package/dist/src/shared/hooks/useLoading.d.ts +1 -0
- package/dist/src/shared/hooks/useMutation.d.ts +18 -0
- package/dist/src/shared/hooks/useSuccessAlert.d.ts +1 -0
- package/dist/src/shared/providers/AppProvider.d.ts +14 -0
- package/dist/src/shared/providers/AuthProvider.d.ts +11 -0
- package/dist/src/shared/services/cashfree-payments.d.ts +1 -0
- package/dist/src/shared/services/http.d.ts +11 -0
- package/dist/src/shared/types/backend.types.d.ts +20 -0
- package/dist/src/shared/utils/utils.d.ts +25 -0
- package/dist/src/shared/zustand/alert.store.d.ts +20 -0
- package/dist/src/shared/zustand/session.store.d.ts +22 -0
- package/package.json +2 -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.