@hobenakicoffee/libraries 8.3.0 → 8.3.1
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 +9 -1
package/package.json
CHANGED
package/src/types/supabase.ts
CHANGED
|
@@ -4661,6 +4661,10 @@ export type Database = {
|
|
|
4661
4661
|
Args: { p_featured_limit?: number; p_username: string };
|
|
4662
4662
|
Returns: Json;
|
|
4663
4663
|
};
|
|
4664
|
+
get_shop_order_for_payment: {
|
|
4665
|
+
Args: { p_order_id: string };
|
|
4666
|
+
Returns: Json;
|
|
4667
|
+
};
|
|
4664
4668
|
get_shop_overview: { Args: never; Returns: Json };
|
|
4665
4669
|
get_shop_policies: { Args: { p_username: string }; Returns: Json };
|
|
4666
4670
|
get_shop_products: {
|
|
@@ -4827,7 +4831,11 @@ export type Database = {
|
|
|
4827
4831
|
Returns: string;
|
|
4828
4832
|
};
|
|
4829
4833
|
handle_shop_payment_success: {
|
|
4830
|
-
Args: {
|
|
4834
|
+
Args: {
|
|
4835
|
+
p_amount: number;
|
|
4836
|
+
p_order_id: string;
|
|
4837
|
+
p_transaction_reference_id: string;
|
|
4838
|
+
};
|
|
4831
4839
|
Returns: Json;
|
|
4832
4840
|
};
|
|
4833
4841
|
handle_successful_payment: {
|