@hobenakicoffee/libraries 5.9.0 → 5.10.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 -2
package/package.json
CHANGED
package/src/types/supabase.ts
CHANGED
|
@@ -3716,6 +3716,10 @@ export type Database = {
|
|
|
3716
3716
|
Args: { p_is_active: boolean; p_profile_id: string };
|
|
3717
3717
|
Returns: Json;
|
|
3718
3718
|
};
|
|
3719
|
+
submit_shop_product_for_review: {
|
|
3720
|
+
Args: { p_product_id: string };
|
|
3721
|
+
Returns: Json;
|
|
3722
|
+
};
|
|
3719
3723
|
toggle_feed_item_bookmark: {
|
|
3720
3724
|
Args: { p_feed_item_id: number };
|
|
3721
3725
|
Returns: Json;
|
|
@@ -3958,7 +3962,7 @@ export type Database = {
|
|
|
3958
3962
|
| "implemented"
|
|
3959
3963
|
| "rejected"
|
|
3960
3964
|
| "duplicate";
|
|
3961
|
-
shop_approval_status_enum: "pending" | "approved" | "rejected";
|
|
3965
|
+
shop_approval_status_enum: "draft" | "pending" | "approved" | "rejected";
|
|
3962
3966
|
shop_order_item_status_enum:
|
|
3963
3967
|
| "pending"
|
|
3964
3968
|
| "paid"
|
|
@@ -4246,7 +4250,7 @@ export const Constants = {
|
|
|
4246
4250
|
"rejected",
|
|
4247
4251
|
"duplicate",
|
|
4248
4252
|
],
|
|
4249
|
-
shop_approval_status_enum: ["pending", "approved", "rejected"],
|
|
4253
|
+
shop_approval_status_enum: ["draft", "pending", "approved", "rejected"],
|
|
4250
4254
|
shop_order_item_status_enum: [
|
|
4251
4255
|
"pending",
|
|
4252
4256
|
"paid",
|