From cee53540a47c2296d54e67517c245a644f752461 Mon Sep 17 00:00:00 2001 From: Andrew Kingston Date: Tue, 10 Dec 2024 12:53:47 +0000 Subject: [PATCH] Update other endpoints --- packages/frontend-core/src/api/other.ts | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/packages/frontend-core/src/api/other.ts b/packages/frontend-core/src/api/other.ts index 768d689e93..b676a00fe7 100644 --- a/packages/frontend-core/src/api/other.ts +++ b/packages/frontend-core/src/api/other.ts @@ -1,6 +1,7 @@ import { FetchBuiltinPermissionsRequest, FetchIntegrationsResponse, + GetEnvironmentResponse, GetVersionResponse, SystemStatusResponse, } from "@budibase/types" @@ -11,9 +12,7 @@ export interface OtherEndpoints { getBudibaseVersion: () => Promise getIntegrations: () => Promise getBasePermissions: () => Promise - - // Missing request or response types - getEnvironment: () => Promise> + getEnvironment: () => Promise } export const buildOtherEndpoints = (API: BaseAPIClient): OtherEndpoints => ({