@brandwave/react 0.3.7 → 0.4.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.d.ts +2 -0
- package/package.json +2 -2
package/dist/index.d.ts
CHANGED
|
@@ -1547,6 +1547,7 @@ declare const useCreateBillingPortalSession: (options?: UseCreateBillingPortalSe
|
|
|
1547
1547
|
}, Error, {
|
|
1548
1548
|
organizationId: string;
|
|
1549
1549
|
flow?: "subscription_update" | undefined;
|
|
1550
|
+
plan?: "starter" | "growth" | "scale" | undefined;
|
|
1550
1551
|
}, unknown>;
|
|
1551
1552
|
|
|
1552
1553
|
type UsePlanUsageOptions = Omit<UseQueryOptions<ItemResult<PlanUsageResult>, Error, ItemResult<PlanUsageResult>, ReturnType<typeof billingKeys.planUsage>>, 'queryKey' | 'queryFn'>;
|
|
@@ -3898,6 +3899,7 @@ declare const useUpdateUserSettings: (options?: UseUpdateUserSettingsOptions) =>
|
|
|
3898
3899
|
activeOrganizationId?: string | undefined;
|
|
3899
3900
|
preferences?: {
|
|
3900
3901
|
hiddenMetrics?: string[] | undefined;
|
|
3902
|
+
welcomeTourCompletedAt?: string | undefined;
|
|
3901
3903
|
} | undefined;
|
|
3902
3904
|
}, unknown>;
|
|
3903
3905
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@brandwave/react",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.4.0",
|
|
4
4
|
"description": "React hooks for the Brandwave platform with TanStack Query integration",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
"dist"
|
|
22
22
|
],
|
|
23
23
|
"dependencies": {
|
|
24
|
-
"@brandwave/ts": "0.
|
|
24
|
+
"@brandwave/ts": "0.4.0"
|
|
25
25
|
},
|
|
26
26
|
"peerDependencies": {
|
|
27
27
|
"@tanstack/react-query": ">=5.0.0",
|