chore: update supabase database types

This commit is contained in:
Huakun Shen 2025-01-17 00:29:10 -05:00
parent e3e50e2f18
commit 21a90259ac
No known key found for this signature in database
3 changed files with 32 additions and 11 deletions

View File

@ -11,8 +11,8 @@
![GitHub last commit](https://img.shields.io/github/last-commit/kunkunsh/kunkun)
[![YouTube badge][]][YouTube link]
<a href="https://discord.gg/7dzw3TYeTU" style="display: flex; align-items: center; background-color: #444; width: fit-content; padding: 0.2em 0.5em; border-radius: 10px; ">
<img src="https://api.iconify.design/skill-icons/discord.svg" />
<span style="margin-left: 0.2em; color: white; font-family: monospace;">Discord</span>
<img src="https://api.iconify.design/skill-icons/discord.svg" />
<span style="margin-left: 0.2em; color: white; font-family: monospace;">Discord</span>
</a>
- Website: https://kunkun.sh/

View File

@ -146,6 +146,27 @@ export type Database = {
}
Relationships: []
}
stargazers: {
Row: {
created_at: string
id: number
star_date: string
username: string
}
Insert: {
created_at?: string
id?: number
star_date: string
username: string
}
Update: {
created_at?: string
id?: number
star_date?: string
username?: string
}
Relationships: []
}
}
Views: {
[_ in never]: never

View File

@ -22,8 +22,8 @@
</script>
<Card.Root>
<Card.Content class="flex flex-col md:flex-row items-center justify-between space-x-4">
<div class="flex items-center space-x-4 w-60">
<Card.Content class="flex flex-col items-center justify-between space-x-4 md:flex-row">
<div class="flex w-60 items-center space-x-4">
<BadgeCheckIcon class="h-8 w-8 text-green-500" />
<div>
<span class="text-sm text-gray-200">Built and signed on</span>
@ -34,25 +34,25 @@
</div>
</div>
<div>
<p class="text-sm flex flex-col sm:flex-row">
<strong class="inline-block w-28 mt-2 md:mt-0">Source Commit</strong>
<p class="flex flex-col text-sm sm:flex-row">
<strong class="mt-2 inline-block w-28 md:mt-0">Source Commit</strong>
<a
href={`https://github.com/${repoOwner}/${repoName}/tree/${commit}`}
target="_blank"
rel="noreferrer"
rel="noreferrer"
class="font-mono underline"
>
github.com/{repoOwner}/{repoName}/{commit.slice(0, 8)}
</a>
</p>
<p class="text-sm flex flex-col sm:flex-row">
<strong class="inline-block w-28 mt-2 md:mt-0">Build File</strong>
<p class="flex flex-col text-sm sm:flex-row">
<strong class="mt-2 inline-block w-28 md:mt-0">Build File</strong>
<a href={workflowRunUrl} target="_blank" rel="noreferrer" class="font-mono underline">
{workflowPath}
</a>
</p>
<p class="text-sm flex flex-col sm:flex-row">
<strong class="inline-block w-28 mt-2 md:mt-0">Public Ledger</strong>
<p class="flex flex-col text-sm sm:flex-row">
<strong class="mt-2 inline-block w-28 md:mt-0">Public Ledger</strong>
<a
href={`https://search.sigstore.dev/?logIndex=${rekorLogIndex}`}
target="_blank"