@zimyo/manage 0.0.6 → 0.0.7
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/components/manage/Subscription/Overview/Overview.d.ts +5 -1
- package/dist/components/manage/Subscription/PlansOverview/PlansOverview.d.ts +5 -1
- package/dist/components/manage/Subscription/SubscribedPlan/SubscribedPlan.d.ts +5 -1
- package/dist/components/ui/NoDataFound/NoDataFound.d.ts +5 -0
- package/dist/main.cjs +276 -249
- package/dist/main.js +21885 -21527
- package/dist/shared/constants/endpoints.d.ts +1 -0
- package/dist/shared/hooks/useMutation.d.ts +1 -1
- package/package.json +1 -1
|
@@ -7,3 +7,4 @@ export declare const TRANSCTION_HISTORY = "subscription/transaction-history";
|
|
|
7
7
|
export declare const ADD_WALLET_AMOUMT = "wallet/add";
|
|
8
8
|
export declare const CUSTOMER_INVOICES = "subscription/customer-invoice";
|
|
9
9
|
export declare const CLIENT_CONSUMPTION = "subscription/client-consumption";
|
|
10
|
+
export declare const MODIFY_SUBSCRIPTION = "subscription/customer-modify-subscription";
|
|
@@ -12,7 +12,7 @@ export declare function useConfigurableMutation<TData = unknown, TError = Backen
|
|
|
12
12
|
type messageFormatterFn = (props: any) => string;
|
|
13
13
|
export declare const useConfigurableSubmit: ({ url, token, method, baseURL, successCallback, errorCallback, onSettledCallback, debounceTime, errorMessageFormatter, successMessageFormatter, }: {
|
|
14
14
|
url: string;
|
|
15
|
-
token
|
|
15
|
+
token?: string;
|
|
16
16
|
method?: string;
|
|
17
17
|
baseURL?: string;
|
|
18
18
|
successCallback?: (props: any) => void;
|