@hobenakicoffee/libraries 4.3.0 → 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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hobenakicoffee/libraries",
3
- "version": "4.3.0",
3
+ "version": "4.3.1",
4
4
  "type": "module",
5
5
  "types": "src/index.ts",
6
6
  "repository": {
@@ -1193,6 +1193,7 @@ 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;
@@ -1204,6 +1205,7 @@ export type Database = {
1204
1205
  };
1205
1206
  Insert: {
1206
1207
  created_at?: string;
1208
+ description?: string | null;
1207
1209
  id?: string;
1208
1210
  is_visible?: boolean;
1209
1211
  name: string;
@@ -1215,6 +1217,7 @@ export type Database = {
1215
1217
  };
1216
1218
  Update: {
1217
1219
  created_at?: string;
1220
+ description?: string | null;
1218
1221
  id?: string;
1219
1222
  is_visible?: boolean;
1220
1223
  name?: string;
@@ -2698,6 +2701,7 @@ export type Database = {
2698
2701
  upsert_shop_category: {
2699
2702
  Args: {
2700
2703
  p_category_id?: string;
2704
+ p_description?: string;
2701
2705
  p_is_visible?: boolean;
2702
2706
  p_name?: string;
2703
2707
  p_slug?: string;