mirror of
https://github.com/kunkunsh/kunkun.git
synced 2025-04-16 03:34:35 +00:00
chore: update supabase database types
This commit is contained in:
parent
e3e50e2f18
commit
21a90259ac
@ -146,6 +146,27 @@ export type Database = {
|
|||||||
}
|
}
|
||||||
Relationships: []
|
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: {
|
Views: {
|
||||||
[_ in never]: never
|
[_ in never]: never
|
||||||
|
@ -22,8 +22,8 @@
|
|||||||
</script>
|
</script>
|
||||||
|
|
||||||
<Card.Root>
|
<Card.Root>
|
||||||
<Card.Content class="flex flex-col md:flex-row items-center justify-between space-x-4">
|
<Card.Content class="flex flex-col items-center justify-between space-x-4 md:flex-row">
|
||||||
<div class="flex items-center space-x-4 w-60">
|
<div class="flex w-60 items-center space-x-4">
|
||||||
<BadgeCheckIcon class="h-8 w-8 text-green-500" />
|
<BadgeCheckIcon class="h-8 w-8 text-green-500" />
|
||||||
<div>
|
<div>
|
||||||
<span class="text-sm text-gray-200">Built and signed on</span>
|
<span class="text-sm text-gray-200">Built and signed on</span>
|
||||||
@ -34,8 +34,8 @@
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div>
|
<div>
|
||||||
<p class="text-sm flex flex-col sm:flex-row">
|
<p class="flex flex-col text-sm sm:flex-row">
|
||||||
<strong class="inline-block w-28 mt-2 md:mt-0">Source Commit</strong>
|
<strong class="mt-2 inline-block w-28 md:mt-0">Source Commit</strong>
|
||||||
<a
|
<a
|
||||||
href={`https://github.com/${repoOwner}/${repoName}/tree/${commit}`}
|
href={`https://github.com/${repoOwner}/${repoName}/tree/${commit}`}
|
||||||
target="_blank"
|
target="_blank"
|
||||||
@ -45,14 +45,14 @@
|
|||||||
github.com/{repoOwner}/{repoName}/{commit.slice(0, 8)}
|
github.com/{repoOwner}/{repoName}/{commit.slice(0, 8)}
|
||||||
</a>
|
</a>
|
||||||
</p>
|
</p>
|
||||||
<p class="text-sm flex flex-col sm:flex-row">
|
<p class="flex flex-col text-sm sm:flex-row">
|
||||||
<strong class="inline-block w-28 mt-2 md:mt-0">Build File</strong>
|
<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">
|
<a href={workflowRunUrl} target="_blank" rel="noreferrer" class="font-mono underline">
|
||||||
{workflowPath}
|
{workflowPath}
|
||||||
</a>
|
</a>
|
||||||
</p>
|
</p>
|
||||||
<p class="text-sm flex flex-col sm:flex-row">
|
<p class="flex flex-col text-sm sm:flex-row">
|
||||||
<strong class="inline-block w-28 mt-2 md:mt-0">Public Ledger</strong>
|
<strong class="mt-2 inline-block w-28 md:mt-0">Public Ledger</strong>
|
||||||
<a
|
<a
|
||||||
href={`https://search.sigstore.dev/?logIndex=${rekorLogIndex}`}
|
href={`https://search.sigstore.dev/?logIndex=${rekorLogIndex}`}
|
||||||
target="_blank"
|
target="_blank"
|
||||||
|
Loading…
x
Reference in New Issue
Block a user