@hobenakicoffee/libraries 5.1.0 → 5.2.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 +20 -9
package/package.json
CHANGED
package/src/types/supabase.ts
CHANGED
|
@@ -3029,15 +3029,26 @@ export type Database = {
|
|
|
3029
3029
|
};
|
|
3030
3030
|
Returns: Json;
|
|
3031
3031
|
};
|
|
3032
|
-
process_withdrawal:
|
|
3033
|
-
|
|
3034
|
-
|
|
3035
|
-
|
|
3036
|
-
|
|
3037
|
-
|
|
3038
|
-
|
|
3039
|
-
|
|
3040
|
-
|
|
3032
|
+
process_withdrawal:
|
|
3033
|
+
| {
|
|
3034
|
+
Args: {
|
|
3035
|
+
p_admin_note?: string;
|
|
3036
|
+
p_failure_reason?: string;
|
|
3037
|
+
p_new_status: Database["public"]["Enums"]["withdrawal_status"];
|
|
3038
|
+
p_withdrawal_id: string;
|
|
3039
|
+
};
|
|
3040
|
+
Returns: Json;
|
|
3041
|
+
}
|
|
3042
|
+
| {
|
|
3043
|
+
Args: {
|
|
3044
|
+
p_admin_note?: string;
|
|
3045
|
+
p_failure_reason?: string;
|
|
3046
|
+
p_fee?: number;
|
|
3047
|
+
p_new_status: Database["public"]["Enums"]["withdrawal_status"];
|
|
3048
|
+
p_withdrawal_id: string;
|
|
3049
|
+
};
|
|
3050
|
+
Returns: Json;
|
|
3051
|
+
};
|
|
3041
3052
|
purchase_newsletter_membership: {
|
|
3042
3053
|
Args: {
|
|
3043
3054
|
p_buyer_name: string;
|