@@ -15,12 +15,12 @@ Types:
1515Methods:
1616
1717- <code title =" post /agents " >client.agents.<a href =" ./src/resources/agents/agents.ts " >create</a >({ ...params }) -> ResourceCreated</code >
18- - <code title =" put /agents/{agent_id}" >client.agents.<a href =" ./src/resources/agents/agents.ts " >update</a >(agentId, { ...params }) -> ResourceUpdated</code >
18+ - <code title =" patch /agents/{agent_id}" >client.agents.<a href =" ./src/resources/agents/agents.ts " >update</a >(agentId, { ...params }) -> ResourceUpdated</code >
1919- <code title =" get /agents " >client.agents.<a href =" ./src/resources/agents/agents.ts " >list</a >({ ...params }) -> AgentsOffsetPagination</code >
2020- <code title =" delete /agents/{agent_id} " >client.agents.<a href =" ./src/resources/agents/agents.ts " >delete</a >(agentId) -> ResourceDeleted</code >
2121- <code title =" post /agents/{agent_id} " >client.agents.<a href =" ./src/resources/agents/agents.ts " >createOrUpdate</a >(agentId, { ...params }) -> ResourceCreated</code >
2222- <code title =" get /agents/{agent_id} " >client.agents.<a href =" ./src/resources/agents/agents.ts " >get</a >(agentId) -> Agent</code >
23- - <code title =" patch /agents/{agent_id}" >client.agents.<a href =" ./src/resources/agents/agents.ts " >patch </a >(agentId, { ...params }) -> ResourceUpdated</code >
23+ - <code title =" put /agents/{agent_id}" >client.agents.<a href =" ./src/resources/agents/agents.ts " >reset </a >(agentId, { ...params }) -> ResourceUpdated</code >
2424
2525## Tools
2626
@@ -31,10 +31,10 @@ Types:
3131Methods:
3232
3333- <code title =" post /agents/{agent_id}/tools " >client.agents.tools.<a href =" ./src/resources/agents/tools.ts " >create</a >(agentId, { ...params }) -> ResourceCreated</code >
34- - <code title =" put /agents/{agent_id}/tools/{tool_id}" >client.agents.tools.<a href =" ./src/resources/agents/tools.ts " >update</a >(agentId, toolId, { ...params }) -> ResourceUpdated</code >
34+ - <code title =" patch /agents/{agent_id}/tools/{tool_id}" >client.agents.tools.<a href =" ./src/resources/agents/tools.ts " >update</a >(agentId, toolId, { ...params }) -> ResourceUpdated</code >
3535- <code title =" get /agents/{agent_id}/tools " >client.agents.tools.<a href =" ./src/resources/agents/tools.ts " >list</a >(agentId, { ...params }) -> ToolListResponsesOffsetPagination</code >
3636- <code title =" delete /agents/{agent_id}/tools/{tool_id} " >client.agents.tools.<a href =" ./src/resources/agents/tools.ts " >delete</a >(agentId, toolId) -> ResourceDeleted</code >
37- - <code title =" patch /agents/{agent_id}/tools/{tool_id}" >client.agents.tools.<a href =" ./src/resources/agents/tools.ts " >patch </a >(agentId, toolId, { ...params }) -> ResourceUpdated</code >
37+ - <code title =" put /agents/{agent_id}/tools/{tool_id}" >client.agents.tools.<a href =" ./src/resources/agents/tools.ts " >reset </a >(agentId, toolId, { ...params }) -> ResourceUpdated</code >
3838
3939## Docs
4040
@@ -77,14 +77,14 @@ Types:
7777Methods:
7878
7979- <code title =" post /sessions " >client.sessions.<a href =" ./src/resources/sessions.ts " >create</a >({ ...params }) -> ResourceCreated</code >
80- - <code title =" put /sessions/{session_id}" >client.sessions.<a href =" ./src/resources/sessions.ts " >update</a >(sessionId, { ...params }) -> ResourceUpdated</code >
80+ - <code title =" patch /sessions/{session_id}" >client.sessions.<a href =" ./src/resources/sessions.ts " >update</a >(sessionId, { ...params }) -> ResourceUpdated</code >
8181- <code title =" get /sessions " >client.sessions.<a href =" ./src/resources/sessions.ts " >list</a >({ ...params }) -> SessionsOffsetPagination</code >
8282- <code title =" delete /sessions/{session_id} " >client.sessions.<a href =" ./src/resources/sessions.ts " >delete</a >(sessionId) -> ResourceDeleted</code >
8383- <code title =" post /sessions/{session_id}/chat " >client.sessions.<a href =" ./src/resources/sessions.ts " >chat</a >(sessionId, { ...params }) -> SessionChatResponse</code >
8484- <code title =" post /sessions/{session_id} " >client.sessions.<a href =" ./src/resources/sessions.ts " >createOrUpdate</a >(sessionId, { ...params }) -> ResourceUpdated</code >
8585- <code title =" get /sessions/{session_id} " >client.sessions.<a href =" ./src/resources/sessions.ts " >get</a >(sessionId) -> Session</code >
8686- <code title =" get /sessions/{session_id}/history " >client.sessions.<a href =" ./src/resources/sessions.ts " >history</a >(sessionId) -> History</code >
87- - <code title =" patch /sessions/{session_id}" >client.sessions.<a href =" ./src/resources/sessions.ts " >patch </a >(sessionId, { ...params }) -> ResourceUpdated</code >
87+ - <code title =" put /sessions/{session_id}" >client.sessions.<a href =" ./src/resources/sessions.ts " >reset </a >(sessionId, { ...params }) -> ResourceUpdated</code >
8888
8989# Users
9090
@@ -95,12 +95,12 @@ Types:
9595Methods:
9696
9797- <code title =" post /users " >client.users.<a href =" ./src/resources/users/users.ts " >create</a >({ ...params }) -> ResourceCreated</code >
98- - <code title =" put /users/{user_id}" >client.users.<a href =" ./src/resources/users/users.ts " >update</a >(userId, { ...params }) -> ResourceUpdated</code >
98+ - <code title =" patch /users/{user_id}" >client.users.<a href =" ./src/resources/users/users.ts " >update</a >(userId, { ...params }) -> ResourceUpdated</code >
9999- <code title =" get /users " >client.users.<a href =" ./src/resources/users/users.ts " >list</a >({ ...params }) -> UsersOffsetPagination</code >
100100- <code title =" delete /users/{user_id} " >client.users.<a href =" ./src/resources/users/users.ts " >delete</a >(userId) -> ResourceDeleted</code >
101101- <code title =" post /users/{user_id} " >client.users.<a href =" ./src/resources/users/users.ts " >createOrUpdate</a >(userId, { ...params }) -> ResourceCreated</code >
102102- <code title =" get /users/{user_id} " >client.users.<a href =" ./src/resources/users/users.ts " >get</a >(userId) -> User</code >
103- - <code title =" patch /users/{user_id}" >client.users.<a href =" ./src/resources/users/users.ts " >patch </a >(userId, { ...params }) -> ResourceUpdated</code >
103+ - <code title =" put /users/{user_id}" >client.users.<a href =" ./src/resources/users/users.ts " >reset </a >(userId, { ...params }) -> ResourceUpdated</code >
104104
105105## Docs
106106
0 commit comments