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 { MigrationEndpoints } from "./migrations"
|
||||||
import { OtherEndpoints } from "./other"
|
import { OtherEndpoints } from "./other"
|
||||||
import { PermissionEndpoints } from "./permissions"
|
import { PermissionEndpoints } from "./permissions"
|
||||||
|
import { PluginEndpoins } from "./plugins"
|
||||||
|
|
||||||
export enum HTTPMethod {
|
export enum HTTPMethod {
|
||||||
POST = "POST",
|
POST = "POST",
|
||||||
|
@ -107,4 +108,5 @@ export type APIClient = BaseAPIClient &
|
||||||
LogEndpoints &
|
LogEndpoints &
|
||||||
MigrationEndpoints &
|
MigrationEndpoints &
|
||||||
OtherEndpoints &
|
OtherEndpoints &
|
||||||
PermissionEndpoints & { [key: string]: any }
|
PermissionEndpoints &
|
||||||
|
PluginEndpoins & { [key: string]: any }
|
||||||
|
|
Loading…
Reference in New Issue