Add plugin endpoint interface into API client union type
This commit is contained in:
parent
c6f5287014
commit
abddbdeea7
|
@ -18,6 +18,7 @@ import { LogEndpoints } from "./logs"
|
|||
import { MigrationEndpoints } from "./migrations"
|
||||
import { OtherEndpoints } from "./other"
|
||||
import { PermissionEndpoints } from "./permissions"
|
||||
import { PluginEndpoins } from "./plugins"
|
||||
|
||||
export enum HTTPMethod {
|
||||
POST = "POST",
|
||||
|
@ -107,4 +108,5 @@ export type APIClient = BaseAPIClient &
|
|||
LogEndpoints &
|
||||
MigrationEndpoints &
|
||||
OtherEndpoints &
|
||||
PermissionEndpoints & { [key: string]: any }
|
||||
PermissionEndpoints &
|
||||
PluginEndpoins & { [key: string]: any }
|
||||
|
|
Loading…
Reference in New Issue