@hobenakicoffee/libraries 6.15.0 → 6.16.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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hobenakicoffee/libraries",
3
- "version": "6.15.0",
3
+ "version": "6.16.0",
4
4
  "license": "MIT",
5
5
  "type": "module",
6
6
  "types": "src/index.ts",
@@ -1357,6 +1357,7 @@ export type Database = {
1357
1357
  };
1358
1358
  newsletter_posts: {
1359
1359
  Row: {
1360
+ ai_review_todos: Json | null;
1360
1361
  click_count: number;
1361
1362
  content: string | null;
1362
1363
  cover_image_url: string | null;
@@ -1383,6 +1384,7 @@ export type Database = {
1383
1384
  visibility: Database["public"]["Enums"]["visibility_enum"];
1384
1385
  };
1385
1386
  Insert: {
1387
+ ai_review_todos?: Json | null;
1386
1388
  click_count?: number;
1387
1389
  content?: string | null;
1388
1390
  cover_image_url?: string | null;
@@ -1409,6 +1411,7 @@ export type Database = {
1409
1411
  visibility?: Database["public"]["Enums"]["visibility_enum"];
1410
1412
  };
1411
1413
  Update: {
1414
+ ai_review_todos?: Json | null;
1412
1415
  click_count?: number;
1413
1416
  content?: string | null;
1414
1417
  cover_image_url?: string | null;