@hobenakicoffee/libraries 6.0.0 → 6.2.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
|
@@ -2494,6 +2494,7 @@ export type Database = {
|
|
|
2494
2494
|
processing_min_days: number | null;
|
|
2495
2495
|
profile_id: string;
|
|
2496
2496
|
requires_shipping: boolean;
|
|
2497
|
+
seo_custom_meta_tags: Json | null;
|
|
2497
2498
|
seo_description: string | null;
|
|
2498
2499
|
seo_title: string | null;
|
|
2499
2500
|
shipping_fee_inside_dhaka: number | null;
|
|
@@ -2520,6 +2521,7 @@ export type Database = {
|
|
|
2520
2521
|
processing_min_days?: number | null;
|
|
2521
2522
|
profile_id: string;
|
|
2522
2523
|
requires_shipping?: boolean;
|
|
2524
|
+
seo_custom_meta_tags?: Json | null;
|
|
2523
2525
|
seo_description?: string | null;
|
|
2524
2526
|
seo_title?: string | null;
|
|
2525
2527
|
shipping_fee_inside_dhaka?: number | null;
|
|
@@ -2546,6 +2548,7 @@ export type Database = {
|
|
|
2546
2548
|
processing_min_days?: number | null;
|
|
2547
2549
|
profile_id?: string;
|
|
2548
2550
|
requires_shipping?: boolean;
|
|
2551
|
+
seo_custom_meta_tags?: Json | null;
|
|
2549
2552
|
seo_description?: string | null;
|
|
2550
2553
|
seo_title?: string | null;
|
|
2551
2554
|
shipping_fee_inside_dhaka?: number | null;
|
|
@@ -3993,12 +3996,15 @@ export type Database = {
|
|
|
3993
3996
|
upsert_shop_settings: {
|
|
3994
3997
|
Args: {
|
|
3995
3998
|
p_banner_url?: string;
|
|
3999
|
+
p_clear_banner_url?: boolean;
|
|
4000
|
+
p_clear_logo_url?: boolean;
|
|
3996
4001
|
p_cod_enabled?: boolean;
|
|
3997
4002
|
p_is_active?: boolean;
|
|
3998
4003
|
p_logo_url?: string;
|
|
3999
4004
|
p_processing_max_days?: number;
|
|
4000
4005
|
p_processing_min_days?: number;
|
|
4001
4006
|
p_requires_shipping?: boolean;
|
|
4007
|
+
p_seo_custom_meta_tags?: Json;
|
|
4002
4008
|
p_seo_description?: string;
|
|
4003
4009
|
p_seo_title?: string;
|
|
4004
4010
|
p_shipping_fee_inside_dhaka?: number;
|