From c5407d36ac08ea21f4bd72233a537ddb136990c3 Mon Sep 17 00:00:00 2001 From: Andrew Kingston Date: Thu, 12 Dec 2024 16:44:14 +0000 Subject: [PATCH] Update to account for type fixes --- packages/frontend-core/src/api/other.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/frontend-core/src/api/other.ts b/packages/frontend-core/src/api/other.ts index b676a00fe7..c39538fd7b 100644 --- a/packages/frontend-core/src/api/other.ts +++ b/packages/frontend-core/src/api/other.ts @@ -1,5 +1,5 @@ import { - FetchBuiltinPermissionsRequest, + FetchBuiltinPermissionsResponse, FetchIntegrationsResponse, GetEnvironmentResponse, GetVersionResponse, @@ -11,7 +11,7 @@ export interface OtherEndpoints { getSystemStatus: () => Promise getBudibaseVersion: () => Promise getIntegrations: () => Promise - getBasePermissions: () => Promise + getBasePermissions: () => Promise getEnvironment: () => Promise }