feat: seed default dataset sources

This commit is contained in:
2026-07-23 15:14:31 +08:00
parent 26dd3004a1
commit b053c3874a
12 changed files with 183 additions and 9 deletions

View File

@@ -7,6 +7,7 @@ export type DatasetSourceDTO = {
name: string
kind: DatasetSourceKind
url: string
iconUrl: string
description: string
enabled: boolean
lastSyncedAt: string | null
@@ -46,6 +47,7 @@ export type DatasetSourceInput = {
name: string
kind: DatasetSourceKind
url: string
iconUrl: string
description: string
enabled: boolean
}