fix(agent): sync generated observability contracts (#37597)

This commit is contained in:
zyssyz123 2026-06-17 23:57:02 +08:00 committed by GitHub
parent 59f8f2e7b3
commit bc825f94b5
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 6 additions and 6 deletions

View File

@ -663,7 +663,7 @@ Commit an uploaded file into the Agent App drive under files/<name>
| Name | Located in | Description | Required | Schema |
| ---- | ---------- | ----------- | -------- | ------ |
| agent_id | path | | Yes | string |
| agent_id | path | | Yes | string (uuid) |
#### Responses
@ -703,8 +703,8 @@ Commit an uploaded file into the Agent App drive under files/<name>
| source | query | Filter by all, console/explore, api/service-api, web-app, debugger, openapi, or trigger | No | string |
| start | query | Start date (YYYY-MM-DD HH:MM) | No | string |
| status | query | Filter by success, failed, or paused | No | string |
| agent_id | path | | Yes | string |
| conversation_id | path | | Yes | string |
| agent_id | path | | Yes | string (uuid) |
| conversation_id | path | | Yes | string (uuid) |
#### Responses

View File

@ -2347,7 +2347,7 @@ export const zPostAgentByAgentIdFilesPath = z.object({
export const zPostAgentByAgentIdFilesResponse = zAgentDriveFileCommitResponse
export const zGetAgentByAgentIdLogSourcesPath = z.object({
agent_id: z.string(),
agent_id: z.uuid(),
})
/**
@ -2375,8 +2375,8 @@ export const zGetAgentByAgentIdLogsQuery = z.object({
export const zGetAgentByAgentIdLogsResponse = zAgentLogListResponse
export const zGetAgentByAgentIdLogsByConversationIdMessagesPath = z.object({
agent_id: z.string(),
conversation_id: z.string(),
agent_id: z.uuid(),
conversation_id: z.uuid(),
})
export const zGetAgentByAgentIdLogsByConversationIdMessagesQuery = z.object({