@hobenakicoffee/libraries 4.2.1 → 4.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 +7 -0
package/package.json
CHANGED
package/src/types/supabase.ts
CHANGED
|
@@ -1193,9 +1193,11 @@ export type Database = {
|
|
|
1193
1193
|
shop_categories: {
|
|
1194
1194
|
Row: {
|
|
1195
1195
|
created_at: string;
|
|
1196
|
+
description: string | null;
|
|
1196
1197
|
id: string;
|
|
1197
1198
|
is_visible: boolean;
|
|
1198
1199
|
name: string;
|
|
1200
|
+
product_count: number;
|
|
1199
1201
|
profile_id: string;
|
|
1200
1202
|
slug: string;
|
|
1201
1203
|
sort_order: number;
|
|
@@ -1203,9 +1205,11 @@ export type Database = {
|
|
|
1203
1205
|
};
|
|
1204
1206
|
Insert: {
|
|
1205
1207
|
created_at?: string;
|
|
1208
|
+
description?: string | null;
|
|
1206
1209
|
id?: string;
|
|
1207
1210
|
is_visible?: boolean;
|
|
1208
1211
|
name: string;
|
|
1212
|
+
product_count?: number;
|
|
1209
1213
|
profile_id: string;
|
|
1210
1214
|
slug: string;
|
|
1211
1215
|
sort_order?: number;
|
|
@@ -1213,9 +1217,11 @@ export type Database = {
|
|
|
1213
1217
|
};
|
|
1214
1218
|
Update: {
|
|
1215
1219
|
created_at?: string;
|
|
1220
|
+
description?: string | null;
|
|
1216
1221
|
id?: string;
|
|
1217
1222
|
is_visible?: boolean;
|
|
1218
1223
|
name?: string;
|
|
1224
|
+
product_count?: number;
|
|
1219
1225
|
profile_id?: string;
|
|
1220
1226
|
slug?: string;
|
|
1221
1227
|
sort_order?: number;
|
|
@@ -2695,6 +2701,7 @@ export type Database = {
|
|
|
2695
2701
|
upsert_shop_category: {
|
|
2696
2702
|
Args: {
|
|
2697
2703
|
p_category_id?: string;
|
|
2704
|
+
p_description?: string;
|
|
2698
2705
|
p_is_visible?: boolean;
|
|
2699
2706
|
p_name?: string;
|
|
2700
2707
|
p_slug?: string;
|