@zimyo/manage 0.3.2 → 0.3.4

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 (88) hide show
  1. package/dist/App.d.ts +2 -2
  2. package/dist/components/customComponents/CustomCard/index.d.ts +2 -1
  3. package/dist/components/customComponents/CustomFilter/index.d.ts +2 -1
  4. package/dist/components/customComponents/CustomSearch/index.d.ts +2 -1
  5. package/dist/components/customComponents/PageHeading/index.d.ts +3 -2
  6. package/dist/components/manage/Subscription/PaymentRecords/PaymentRecords.d.ts +1 -1
  7. package/dist/components/manage/Subscription/ProductUpdates/ProductUpdates.d.ts +1 -0
  8. package/dist/components/manage/Subscription/SubscriptionPricing/CardView/CardView.d.ts +1 -1
  9. package/dist/components/manage/Subscription/SubscriptionPricing/ComparePlans/ComparePlans.d.ts +1 -1
  10. package/dist/components/manage/Subscription/SubscriptionPricing/SubscriptionPricing.d.ts +1 -1
  11. package/dist/components/ui/Alert/Alert.d.ts +2 -1
  12. package/dist/components/ui/DatePicker/DatePicker.d.ts +1 -0
  13. package/dist/components/ui/Loader/Loader.d.ts +1 -1
  14. package/dist/index.d.ts +1 -1
  15. package/dist/main.cjs +1015 -322
  16. package/dist/main.d.ts +16 -16
  17. package/dist/main.js +43787 -40533
  18. package/dist/node_modules/html-dom-parser/esm/types.d.ts +3 -0
  19. package/dist/shared/hooks/useFetch.d.ts +9 -8
  20. package/dist/shared/providers/AppProvider.d.ts +3 -2
  21. package/dist/shared/providers/AuthProvider.d.ts +2 -1
  22. package/dist/shared/services/http.d.ts +4 -4
  23. package/dist/shared/types/backend.types.d.ts +2 -1
  24. package/dist/shared/zustand/alert.store.d.ts +2 -1
  25. package/dist/shared/zustand/session.store.d.ts +1 -1
  26. package/dist/src/App.d.ts +4 -0
  27. package/dist/src/components/customComponents/CustomCard/index.d.ts +13 -0
  28. package/dist/src/components/customComponents/CustomFilter/index.d.ts +24 -0
  29. package/dist/src/components/customComponents/CustomSearch/index.d.ts +10 -0
  30. package/dist/src/components/customComponents/CustomTooltip/index.d.ts +10 -0
  31. package/dist/src/components/customComponents/PageHeading/index.d.ts +23 -0
  32. package/dist/src/components/manage/Subscription/BillingSubscription/BillingSubscription.d.ts +1 -0
  33. package/dist/src/components/manage/Subscription/Consumption/Consumption.d.ts +1 -0
  34. package/dist/src/components/manage/Subscription/Invoices/Invoices.d.ts +1 -0
  35. package/dist/src/components/manage/Subscription/Invoices/constant.d.ts +4 -0
  36. package/dist/src/components/manage/Subscription/Ledger/Ledger.d.ts +1 -0
  37. package/dist/src/components/manage/Subscription/Mail/Mail.d.ts +1 -0
  38. package/dist/src/components/manage/Subscription/NewOverview/NewOverview.d.ts +5 -0
  39. package/dist/src/components/manage/Subscription/Overview/Overview.d.ts +5 -0
  40. package/dist/src/components/manage/Subscription/PaymentMethod/PaymentMethod.d.ts +1 -0
  41. package/dist/src/components/manage/Subscription/PaymentRecords/PaymentRecords.d.ts +6 -0
  42. package/dist/src/components/manage/Subscription/PaymentRecords/TableView/Table.d.ts +1 -0
  43. package/dist/src/components/manage/Subscription/PlansOverview/PlansOverview.d.ts +50 -0
  44. package/dist/src/components/manage/Subscription/PlansOverview/constant.d.ts +4 -0
  45. package/dist/src/components/manage/Subscription/ProductUpdates/ProductUpdates.d.ts +2 -0
  46. package/dist/src/components/manage/Subscription/ServiceDeskLogs/ServiceDeskLogs.d.ts +1 -0
  47. package/dist/src/components/manage/Subscription/SubscribedPlan/SubscribedPlan.d.ts +5 -0
  48. package/dist/src/components/manage/Subscription/SubscriptionPricing/CardView/CardView.d.ts +3 -0
  49. package/dist/src/components/manage/Subscription/SubscriptionPricing/ComparePlans/ComparePlans.d.ts +3 -0
  50. package/dist/src/components/manage/Subscription/SubscriptionPricing/SubscriptionPricing.d.ts +6 -0
  51. package/dist/src/components/manage/Subscription/TempPayment/TempPayment.d.ts +1 -0
  52. package/dist/src/components/manage/Subscription/TempPayment/constant.d.ts +5 -0
  53. package/dist/src/components/manage/Subscription/UpcomingSubscription/UpcomingSubscription.d.ts +1 -0
  54. package/dist/src/components/manage/Subscription/UpcomingSubscription/constant.d.ts +4 -0
  55. package/dist/src/components/manage/Subscription/Wallet/Wallet.d.ts +1 -0
  56. package/dist/src/components/manage/Subscription/Wallet/constant.d.ts +8 -0
  57. package/dist/src/components/ui/Alert/Alert.d.ts +6 -0
  58. package/dist/src/components/ui/DatePicker/DatePicker.d.ts +4 -0
  59. package/dist/src/components/ui/Loader/Loader.d.ts +7 -0
  60. package/dist/src/components/ui/NoDataFound/NoDataFound.d.ts +5 -0
  61. package/dist/src/components/ui/OrgDetailsCard/OrgDetailsCard.d.ts +20 -0
  62. package/dist/src/components/ui/OverviewCard/OverviewCard.d.ts +4 -0
  63. package/dist/src/components/ui/TextReducingTooltipComponent/TextReducingTooltipComponent.d.ts +10 -0
  64. package/dist/src/components/ui/TopUpWalletModal/TopUpWalletModal.d.ts +6 -0
  65. package/dist/src/index.d.ts +1 -0
  66. package/dist/src/main.d.ts +16 -0
  67. package/dist/src/shared/constants/constant.d.ts +41 -0
  68. package/dist/src/shared/constants/endpoints.d.ts +24 -0
  69. package/dist/src/shared/constants/form-types.d.ts +44 -0
  70. package/dist/src/shared/constants/status.d.ts +4 -0
  71. package/dist/src/shared/constants/time.d.ts +53 -0
  72. package/dist/src/shared/hooks/useConstants.d.ts +1 -0
  73. package/dist/src/shared/hooks/useDownloadBufferFile.d.ts +7 -0
  74. package/dist/src/shared/hooks/useErrorAlert.d.ts +1 -0
  75. package/dist/src/shared/hooks/useFetch.d.ts +124 -0
  76. package/dist/src/shared/hooks/useFilterParsedValue.d.ts +6 -0
  77. package/dist/src/shared/hooks/useLoading.d.ts +1 -0
  78. package/dist/src/shared/hooks/useMutation.d.ts +18 -0
  79. package/dist/src/shared/hooks/useSuccessAlert.d.ts +1 -0
  80. package/dist/src/shared/providers/AppProvider.d.ts +14 -0
  81. package/dist/src/shared/providers/AuthProvider.d.ts +11 -0
  82. package/dist/src/shared/services/cashfree-payments.d.ts +1 -0
  83. package/dist/src/shared/services/http.d.ts +11 -0
  84. package/dist/src/shared/types/backend.types.d.ts +20 -0
  85. package/dist/src/shared/utils/utils.d.ts +25 -0
  86. package/dist/src/shared/zustand/alert.store.d.ts +20 -0
  87. package/dist/src/shared/zustand/session.store.d.ts +22 -0
  88. 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.