@hobenakicoffee/libraries 6.18.0 → 6.20.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 +1 -1
- package/src/types/supabase.ts +44 -0
package/package.json
CHANGED
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;
|
|
@@ -3285,6 +3291,30 @@ export type Database = {
|
|
|
3285
3291
|
},
|
|
3286
3292
|
];
|
|
3287
3293
|
};
|
|
3294
|
+
wishlist_signups: {
|
|
3295
|
+
Row: {
|
|
3296
|
+
created_at: string;
|
|
3297
|
+
email: string;
|
|
3298
|
+
id: number;
|
|
3299
|
+
ip_address: string | null;
|
|
3300
|
+
user_agent: string | null;
|
|
3301
|
+
};
|
|
3302
|
+
Insert: {
|
|
3303
|
+
created_at?: string;
|
|
3304
|
+
email: string;
|
|
3305
|
+
id?: never;
|
|
3306
|
+
ip_address?: string | null;
|
|
3307
|
+
user_agent?: string | null;
|
|
3308
|
+
};
|
|
3309
|
+
Update: {
|
|
3310
|
+
created_at?: string;
|
|
3311
|
+
email?: string;
|
|
3312
|
+
id?: never;
|
|
3313
|
+
ip_address?: string | null;
|
|
3314
|
+
user_agent?: string | null;
|
|
3315
|
+
};
|
|
3316
|
+
Relationships: [];
|
|
3317
|
+
};
|
|
3288
3318
|
withdrawal_requests: {
|
|
3289
3319
|
Row: {
|
|
3290
3320
|
admin_note: string | null;
|
|
@@ -3546,6 +3576,13 @@ export type Database = {
|
|
|
3546
3576
|
dispatch_pending_email_notifications: { Args: never; Returns: undefined };
|
|
3547
3577
|
drop_old_partitions: { Args: never; Returns: undefined };
|
|
3548
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
|
+
};
|
|
3549
3586
|
get_buyer_orders: {
|
|
3550
3587
|
Args: { p_cursor?: string; p_limit?: number };
|
|
3551
3588
|
Returns: Json;
|
|
@@ -3683,6 +3720,13 @@ export type Database = {
|
|
|
3683
3720
|
visibility: Database["public"]["Enums"]["visibility_enum"];
|
|
3684
3721
|
}[];
|
|
3685
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
|
+
};
|
|
3686
3730
|
get_followers: { Args: { target_user_id: string }; Returns: string[] };
|
|
3687
3731
|
get_following: { Args: { target_user_id: string }; Returns: string[] };
|
|
3688
3732
|
get_kyc_queue: {
|