Update to account for type fixes
This commit is contained in:
parent
ea444a9078
commit
c5407d36ac
|
@ -1,5 +1,5 @@
|
||||||
import {
|
import {
|
||||||
FetchBuiltinPermissionsRequest,
|
FetchBuiltinPermissionsResponse,
|
||||||
FetchIntegrationsResponse,
|
FetchIntegrationsResponse,
|
||||||
GetEnvironmentResponse,
|
GetEnvironmentResponse,
|
||||||
GetVersionResponse,
|
GetVersionResponse,
|
||||||
|
@ -11,7 +11,7 @@ export interface OtherEndpoints {
|
||||||
getSystemStatus: () => Promise<SystemStatusResponse>
|
getSystemStatus: () => Promise<SystemStatusResponse>
|
||||||
getBudibaseVersion: () => Promise<string>
|
getBudibaseVersion: () => Promise<string>
|
||||||
getIntegrations: () => Promise<FetchIntegrationsResponse>
|
getIntegrations: () => Promise<FetchIntegrationsResponse>
|
||||||
getBasePermissions: () => Promise<FetchBuiltinPermissionsRequest>
|
getBasePermissions: () => Promise<FetchBuiltinPermissionsResponse>
|
||||||
getEnvironment: () => Promise<GetEnvironmentResponse>
|
getEnvironment: () => Promise<GetEnvironmentResponse>
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue