Update flag endpoints
This commit is contained in:
parent
78f1690cb9
commit
2b06a7d44e
|
@ -3,6 +3,8 @@ import { BaseAPIClient } from "./types"
|
||||||
|
|
||||||
export interface FlagEndpoints {
|
export interface FlagEndpoints {
|
||||||
getFlags: () => Promise<Flags>
|
getFlags: () => Promise<Flags>
|
||||||
|
|
||||||
|
// Missing request or response types
|
||||||
updateFlag: (flag: string, value: any) => Promise<{ message: string }>
|
updateFlag: (flag: string, value: any) => Promise<{ message: string }>
|
||||||
toggleUiFeature: (value: string) => Promise<{ message: string }>
|
toggleUiFeature: (value: string) => Promise<{ message: string }>
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue