@hook-sdk/template 0.15.0 → 0.17.0
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/index.cjs +7 -2
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +5 -1
- package/dist/index.js.map +1 -1
- package/package.json +2 -2
package/dist/index.d.cts
CHANGED
|
@@ -3,7 +3,7 @@ import * as react from 'react';
|
|
|
3
3
|
import { ReactNode, ComponentType, Component } from 'react';
|
|
4
4
|
import * as _hook_sdk_sdk from '@hook-sdk/sdk';
|
|
5
5
|
import { CheckoutMethod as CheckoutMethod$1, CheckoutCycle, CheckoutResult, CheckoutCardData, CheckoutHolderInfo, PlanState, ReminderSlot } from '@hook-sdk/sdk';
|
|
6
|
-
export { PlanInfo, PlanState } from '@hook-sdk/sdk';
|
|
6
|
+
export { PlanInfo, PlanState, useTrackOnboardingStep } from '@hook-sdk/sdk';
|
|
7
7
|
import { z } from 'zod';
|
|
8
8
|
|
|
9
9
|
type Cycle = 'MONTHLY' | 'YEARLY';
|
package/dist/index.d.ts
CHANGED
|
@@ -3,7 +3,7 @@ import * as react from 'react';
|
|
|
3
3
|
import { ReactNode, ComponentType, Component } from 'react';
|
|
4
4
|
import * as _hook_sdk_sdk from '@hook-sdk/sdk';
|
|
5
5
|
import { CheckoutMethod as CheckoutMethod$1, CheckoutCycle, CheckoutResult, CheckoutCardData, CheckoutHolderInfo, PlanState, ReminderSlot } from '@hook-sdk/sdk';
|
|
6
|
-
export { PlanInfo, PlanState } from '@hook-sdk/sdk';
|
|
6
|
+
export { PlanInfo, PlanState, useTrackOnboardingStep } from '@hook-sdk/sdk';
|
|
7
7
|
import { z } from 'zod';
|
|
8
8
|
|
|
9
9
|
type Cycle = 'MONTHLY' | 'YEARLY';
|
package/dist/index.js
CHANGED
|
@@ -2750,6 +2750,9 @@ function useAuth() {
|
|
|
2750
2750
|
};
|
|
2751
2751
|
}
|
|
2752
2752
|
|
|
2753
|
+
// src/index.ts
|
|
2754
|
+
import { useTrackOnboardingStep } from "@hook-sdk/sdk";
|
|
2755
|
+
|
|
2753
2756
|
// src/hooks/useSubscription.ts
|
|
2754
2757
|
import { useHook as useHook15 } from "@hook-sdk/sdk";
|
|
2755
2758
|
function useSubscription() {
|
|
@@ -3002,6 +3005,7 @@ export {
|
|
|
3002
3005
|
useResetForm,
|
|
3003
3006
|
useSignupForm,
|
|
3004
3007
|
useSubscription,
|
|
3005
|
-
useToast
|
|
3008
|
+
useToast,
|
|
3009
|
+
useTrackOnboardingStep
|
|
3006
3010
|
};
|
|
3007
3011
|
//# sourceMappingURL=index.js.map
|