We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
api.ts
1 parent fe390b5 commit faaf301Copy full SHA for faaf301
site/src/api/api.ts
@@ -667,7 +667,7 @@ export const updateTemplateACL = async (
667
}
668
669
export const getApplicationsHost =
670
- async (): Promise<TypesGen.GetAppHostResponse> => {
+ async (): Promise<TypesGen.AppHostResponse> => {
671
const response = await axios.get(`/api/v2/applications/host`)
672
return response.data
673
@@ -718,7 +718,7 @@ export const getWorkspaceQuota = async (
718
719
export const getAgentListeningPorts = async (
720
agentID: string,
721
-): Promise<TypesGen.ListeningPortsResponse> => {
+): Promise<TypesGen.WorkspaceAgentListeningPortsResponse> => {
722
const response = await axios.get(
723
`/api/v2/workspaceagents/${agentID}/listening-ports`,
724
)
0 commit comments