@hobenakicoffee/libraries 6.19.0 → 7.0.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/package.json +14 -14
- package/src/types/supabase.ts +20 -0
- package/src/vite-env.d.ts +1 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@hobenakicoffee/libraries",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "7.0.0",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"types": "src/index.ts",
|
|
@@ -53,38 +53,38 @@
|
|
|
53
53
|
"@biomejs/biome": "2.4.0",
|
|
54
54
|
"@mermaid-js/mermaid-mindmap": "^9.3.0",
|
|
55
55
|
"@types/bun": "latest",
|
|
56
|
-
"@types/react": "^19.2.
|
|
56
|
+
"@types/react": "^19.2.17",
|
|
57
57
|
"@types/react-dom": "^19.2.3",
|
|
58
|
-
"@vitejs/plugin-react": "^
|
|
59
|
-
"lefthook": "^2.1.
|
|
60
|
-
"mermaid": "^11.
|
|
58
|
+
"@vitejs/plugin-react": "^6.0.2",
|
|
59
|
+
"lefthook": "^2.1.9",
|
|
60
|
+
"mermaid": "^11.15.0",
|
|
61
61
|
"ultracite": "7.2.3",
|
|
62
|
-
"vite": "^
|
|
62
|
+
"vite": "^8.0.16",
|
|
63
63
|
"vite-tsconfig-paths": "^6.1.1",
|
|
64
64
|
"vitepress": "^2.0.0-alpha.17",
|
|
65
65
|
"vitepress-plugin-mermaid": "^2.0.17"
|
|
66
66
|
},
|
|
67
67
|
"peerDependencies": {
|
|
68
|
-
"typescript": "
|
|
68
|
+
"typescript": "6.0.3"
|
|
69
69
|
},
|
|
70
70
|
"publishConfig": {
|
|
71
71
|
"access": "public"
|
|
72
72
|
},
|
|
73
73
|
"dependencies": {
|
|
74
74
|
"@fontsource-variable/noto-sans-bengali": "^5.2.11",
|
|
75
|
-
"@tailwindcss/vite": "^4.
|
|
75
|
+
"@tailwindcss/vite": "^4.3.1",
|
|
76
76
|
"class-variance-authority": "^0.7.1",
|
|
77
77
|
"clsx": "^2.1.1",
|
|
78
78
|
"install": "^0.13.0",
|
|
79
79
|
"nuqs": "^2.8.9",
|
|
80
80
|
"obscenity": "^0.4.6",
|
|
81
|
-
"openai": "^6.
|
|
82
|
-
"react": "^19.2.
|
|
83
|
-
"react-dom": "^19.2.
|
|
81
|
+
"openai": "^6.44.0",
|
|
82
|
+
"react": "^19.2.7",
|
|
83
|
+
"react-dom": "^19.2.7",
|
|
84
84
|
"sonner": "^2.0.7",
|
|
85
|
-
"tailwind-merge": "^3.
|
|
86
|
-
"tailwindcss": "^4.
|
|
85
|
+
"tailwind-merge": "^3.6.0",
|
|
86
|
+
"tailwindcss": "^4.3.1",
|
|
87
87
|
"tw-animate-css": "^1.4.0",
|
|
88
|
-
"zod": "^4.3
|
|
88
|
+
"zod": "^4.4.3"
|
|
89
89
|
}
|
|
90
90
|
}
|
package/src/types/supabase.ts
CHANGED
|
@@ -1884,6 +1884,8 @@ export type Database = {
|
|
|
1884
1884
|
banner_url: string | null;
|
|
1885
1885
|
bio: string | null;
|
|
1886
1886
|
categories: string[] | null;
|
|
1887
|
+
coaching_tip: Json | null;
|
|
1888
|
+
coaching_tip_generated_at: string | null;
|
|
1887
1889
|
created_at: string | null;
|
|
1888
1890
|
display_name: string | null;
|
|
1889
1891
|
email_notifications_enabled: boolean;
|
|
@@ -1919,6 +1921,8 @@ export type Database = {
|
|
|
1919
1921
|
banner_url?: string | null;
|
|
1920
1922
|
bio?: string | null;
|
|
1921
1923
|
categories?: string[] | null;
|
|
1924
|
+
coaching_tip?: Json | null;
|
|
1925
|
+
coaching_tip_generated_at?: string | null;
|
|
1922
1926
|
created_at?: string | null;
|
|
1923
1927
|
display_name?: string | null;
|
|
1924
1928
|
email_notifications_enabled?: boolean;
|
|
@@ -1954,6 +1958,8 @@ export type Database = {
|
|
|
1954
1958
|
banner_url?: string | null;
|
|
1955
1959
|
bio?: string | null;
|
|
1956
1960
|
categories?: string[] | null;
|
|
1961
|
+
coaching_tip?: Json | null;
|
|
1962
|
+
coaching_tip_generated_at?: string | null;
|
|
1957
1963
|
created_at?: string | null;
|
|
1958
1964
|
display_name?: string | null;
|
|
1959
1965
|
email_notifications_enabled?: boolean;
|
|
@@ -3570,6 +3576,13 @@ export type Database = {
|
|
|
3570
3576
|
dispatch_pending_email_notifications: { Args: never; Returns: undefined };
|
|
3571
3577
|
drop_old_partitions: { Args: never; Returns: undefined };
|
|
3572
3578
|
follow_user: { Args: { target_user_id: string }; Returns: undefined };
|
|
3579
|
+
get_active_supporters_stats: {
|
|
3580
|
+
Args: { p_from?: string; p_to?: string };
|
|
3581
|
+
Returns: {
|
|
3582
|
+
active_supporters: number;
|
|
3583
|
+
active_supporters_change: number;
|
|
3584
|
+
}[];
|
|
3585
|
+
};
|
|
3573
3586
|
get_buyer_orders: {
|
|
3574
3587
|
Args: { p_cursor?: string; p_limit?: number };
|
|
3575
3588
|
Returns: Json;
|
|
@@ -3707,6 +3720,13 @@ export type Database = {
|
|
|
3707
3720
|
visibility: Database["public"]["Enums"]["visibility_enum"];
|
|
3708
3721
|
}[];
|
|
3709
3722
|
};
|
|
3723
|
+
get_follower_stats: {
|
|
3724
|
+
Args: { p_from?: string; p_to?: string };
|
|
3725
|
+
Returns: {
|
|
3726
|
+
new_followers: number;
|
|
3727
|
+
new_followers_change: number;
|
|
3728
|
+
}[];
|
|
3729
|
+
};
|
|
3710
3730
|
get_followers: { Args: { target_user_id: string }; Returns: string[] };
|
|
3711
3731
|
get_following: { Args: { target_user_id: string }; Returns: string[] };
|
|
3712
3732
|
get_kyc_queue: {
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
/// <reference types="vite/client" />
|