[autofix.ci] apply automated fixes

This commit is contained in:
autofix-ci[bot] 2026-06-23 09:29:03 +00:00 committed by GitHub
parent 2d2d6faf1f
commit c153cd19cc
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 2 additions and 0 deletions

View File

@ -101,6 +101,7 @@ export type ApiKeyList = {
export type ApiKeyItem = {
created_at?: number | null
dataset_id?: string | null
id: string
last_used_at?: number | null
token: string

View File

@ -34,6 +34,7 @@ export const zAgentApiStatusPayload = z.object({
*/
export const zApiKeyItem = z.object({
created_at: z.int().nullish(),
dataset_id: z.string().nullish(),
id: z.string(),
last_used_at: z.int().nullish(),
token: z.string(),