@brandwave/react 0.3.9 → 0.4.2
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 -8
- 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'>;
|
|
@@ -1559,26 +1560,18 @@ declare const usePlanUsage: (params: GetPlanUsageParams, options?: UsePlanUsageO
|
|
|
1559
1560
|
creators: {
|
|
1560
1561
|
used: number;
|
|
1561
1562
|
limit: number;
|
|
1562
|
-
netAddedLast30Days: number;
|
|
1563
|
-
projectedDaysToLimit: number | null;
|
|
1564
1563
|
};
|
|
1565
1564
|
linkedSocialAccounts: {
|
|
1566
1565
|
used: number;
|
|
1567
1566
|
limit: number;
|
|
1568
|
-
netAddedLast30Days: number;
|
|
1569
|
-
projectedDaysToLimit: number | null;
|
|
1570
1567
|
};
|
|
1571
1568
|
activities: {
|
|
1572
1569
|
used: number;
|
|
1573
1570
|
limit: number;
|
|
1574
|
-
netAddedLast30Days: number;
|
|
1575
|
-
projectedDaysToLimit: number | null;
|
|
1576
1571
|
};
|
|
1577
1572
|
campaigns: {
|
|
1578
1573
|
used: number;
|
|
1579
1574
|
limit: number;
|
|
1580
|
-
netAddedLast30Days: number;
|
|
1581
|
-
projectedDaysToLimit: number | null;
|
|
1582
1575
|
};
|
|
1583
1576
|
};
|
|
1584
1577
|
}>, Error>;
|
|
@@ -3906,6 +3899,7 @@ declare const useUpdateUserSettings: (options?: UseUpdateUserSettingsOptions) =>
|
|
|
3906
3899
|
activeOrganizationId?: string | undefined;
|
|
3907
3900
|
preferences?: {
|
|
3908
3901
|
hiddenMetrics?: string[] | undefined;
|
|
3902
|
+
welcomeTourCompletedAt?: string | undefined;
|
|
3909
3903
|
} | undefined;
|
|
3910
3904
|
}, unknown>;
|
|
3911
3905
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@brandwave/react",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.4.2",
|
|
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.2"
|
|
25
25
|
},
|
|
26
26
|
"peerDependencies": {
|
|
27
27
|
"@tanstack/react-query": ">=5.0.0",
|