@hobenakicoffee/libraries 6.19.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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hobenakicoffee/libraries",
3
- "version": "6.19.0",
3
+ "version": "6.20.0",
4
4
  "license": "MIT",
5
5
  "type": "module",
6
6
  "types": "src/index.ts",
@@ -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: {