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 => ({