@hobenakicoffee/libraries 3.0.1 → 3.1.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": "3.0.1",
3
+ "version": "3.1.0",
4
4
  "type": "module",
5
5
  "types": "src/index.ts",
6
6
  "exports": {
@@ -1780,6 +1780,24 @@ export type Database = {
1780
1780
  Args: { p_conversation_id: string };
1781
1781
  Returns: undefined;
1782
1782
  };
1783
+ perform_coffee_gift: {
1784
+ Args: {
1785
+ p_amount: number;
1786
+ p_coffee_count?: number;
1787
+ p_creator_profile_id: string;
1788
+ p_identity_hash: string;
1789
+ p_is_monthly?: boolean;
1790
+ p_message?: string;
1791
+ p_platform_fee: number;
1792
+ p_provider: Database["public"]["Enums"]["provider_enum"];
1793
+ p_provider_transaction_id: string;
1794
+ p_reference_type: Database["public"]["Enums"]["reference_type_enum"];
1795
+ p_supporter_name: string;
1796
+ p_supporter_platform?: Database["public"]["Enums"]["supporter_platform_enum"];
1797
+ p_supporter_profile_id: string;
1798
+ };
1799
+ Returns: Json;
1800
+ };
1783
1801
  process_membership_expiry_notifications: {
1784
1802
  Args: never;
1785
1803
  Returns: undefined;