mirror of
https://github.com/langgenius/dify.git
synced 2026-06-26 23:01:11 +08:00
[autofix.ci] apply automated fixes
This commit is contained in:
parent
2d2d6faf1f
commit
c153cd19cc
@ -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
|
||||
|
||||
@ -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(),
|
||||
|
||||
Loading…
Reference in New Issue
Block a user