(workspaceId: string)
| 12 | }; |
| 13 | |
| 14 | export const upsertWorkspacePortShare = (workspaceId: string) => { |
| 15 | return { |
| 16 | mutationFn: async (options: UpsertWorkspaceAgentPortShareRequest) => { |
| 17 | await API.upsertWorkspaceAgentSharedPort(workspaceId, options); |
| 18 | }, |
| 19 | }; |
| 20 | }; |
| 21 | |
| 22 | export const deleteWorkspacePortShare = (workspaceId: string) => { |
| 23 | return { |
no outgoing calls
no test coverage detected