@hobenakicoffee/libraries 4.5.0 → 4.6.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 +6 -0
package/package.json
CHANGED
package/src/types/supabase.ts
CHANGED
|
@@ -2377,6 +2377,7 @@ export type Database = {
|
|
|
2377
2377
|
};
|
|
2378
2378
|
Returns: Json;
|
|
2379
2379
|
};
|
|
2380
|
+
approve_newsletter_post: { Args: { p_post_id: string }; Returns: Json };
|
|
2380
2381
|
approve_shop_category: { Args: { p_category_id: string }; Returns: Json };
|
|
2381
2382
|
approve_shop_product: { Args: { p_product_id: string }; Returns: Json };
|
|
2382
2383
|
authorize_manager: {
|
|
@@ -2551,6 +2552,7 @@ export type Database = {
|
|
|
2551
2552
|
price: number;
|
|
2552
2553
|
published_at: string;
|
|
2553
2554
|
purchase_count: number;
|
|
2555
|
+
reject_reason: string;
|
|
2554
2556
|
revenue_total: number;
|
|
2555
2557
|
slug: string;
|
|
2556
2558
|
subtitle: string;
|
|
@@ -2842,6 +2844,10 @@ export type Database = {
|
|
|
2842
2844
|
Args: { p_post_id: string };
|
|
2843
2845
|
Returns: undefined;
|
|
2844
2846
|
};
|
|
2847
|
+
reject_newsletter_post: {
|
|
2848
|
+
Args: { p_post_id: string; p_rejection_reason: string };
|
|
2849
|
+
Returns: Json;
|
|
2850
|
+
};
|
|
2845
2851
|
reject_shop_category: {
|
|
2846
2852
|
Args: { p_category_id: string; p_rejection_reason: string };
|
|
2847
2853
|
Returns: Json;
|