( agentId: string, )
| 189 | }; |
| 190 | |
| 191 | export const watchAgentContainers = ( |
| 192 | agentId: string, |
| 193 | ): OneWayWebSocket<TypesGen.WorkspaceAgentListContainersResponse> => { |
| 194 | return new OneWayWebSocket({ |
| 195 | apiRoute: `/api/v2/workspaceagents/${agentId}/containers/watch`, |
| 196 | }); |
| 197 | }; |
| 198 | |
| 199 | type WatchInboxNotificationsParams = Readonly<{ |
| 200 | read_status?: "read" | "unread" | "all"; |
no outgoing calls
no test coverage detected