feat: add cache table to supabase

This commit is contained in:
Huakun Shen 2025-02-19 03:06:07 -05:00
parent 742cf3af09
commit 60f442dafb
No known key found for this signature in database
2 changed files with 32 additions and 0 deletions

8
deno.lock generated
View File

@ -51,6 +51,7 @@
"npm:@tauri-apps/api@^2.2.0": "2.2.0",
"npm:@tauri-apps/cli@^2.2.2": "2.2.7",
"npm:@tauri-apps/cli@^2.2.7": "2.2.7",
"npm:@tauri-apps/plugin-autostart@^2.2.0": "2.2.0",
"npm:@tauri-apps/plugin-deep-link@^2.2.0": "2.2.0",
"npm:@tauri-apps/plugin-dialog@^2.2.0": "2.2.0",
"npm:@tauri-apps/plugin-fs@^2.2.0": "2.2.0",
@ -5025,6 +5026,12 @@
"@tauri-apps/cli-win32-x64-msvc"
]
},
"@tauri-apps/plugin-autostart@2.2.0": {
"integrity": "sha512-TzVcDZdOvdot0avkpstUWJKKEl4cyxLpFB9DZZRW5zH8k+Bv8IVJmO0zyYuw+7oKlGdHOINbD/7Je7GHMViw5w==",
"dependencies": [
"@tauri-apps/api@2.2.0"
]
},
"@tauri-apps/plugin-deep-link@2.2.0": {
"integrity": "sha512-H6mkxr2KZ3XJcKL44tiq6cOjCw9DL8OgU1xjn3j26Qsn+H/roPFiyhR7CHuB8Ar+sQFj4YVlfmJwtBajK2FETQ==",
"dependencies": [
@ -15068,6 +15075,7 @@
"npm:@tanstack/table-core@^8.20.5",
"npm:@tauri-apps/api@^2.1.1",
"npm:@tauri-apps/cli@^2.2.7",
"npm:@tauri-apps/plugin-autostart@^2.2.0",
"npm:@tauri-apps/plugin-shell@^2.2.0",
"npm:@tauri-apps/plugin-stronghold@^2.2.0",
"npm:@types/bun@latest",

View File

@ -3,6 +3,30 @@ export type Json = string | number | boolean | null | { [key: string]: Json | un
export type Database = {
public: {
Tables: {
cache: {
Row: {
created_at: string
data: Json | null
expiry_date: string | null
id: number
key: string
}
Insert: {
created_at?: string
data?: Json | null
expiry_date?: string | null
id?: number
key: string
}
Update: {
created_at?: string
data?: Json | null
expiry_date?: string | null
id?: number
key?: string
}
Relationships: []
}
events: {
Row: {
created_at: string