API generation

This commit is contained in:
delvedor
2021-05-19 11:16:33 +02:00
parent 12ce270239
commit 728215f3c0
6 changed files with 60 additions and 12 deletions

View File

@ -2260,6 +2260,9 @@ export interface SecurityEnableUser extends Generic {
refresh?: 'wait_for' | boolean;
}
export interface SecurityEnrollNode extends Generic {
}
export interface SecurityGetApiKey extends Generic {
id?: string;
name?: string;
@ -2509,7 +2512,7 @@ export interface TasksList extends Generic {
timeout?: string;
}
export interface Termsenum<T = RequestBody> extends Generic {
export interface TermsEnum<T = RequestBody> extends Generic {
index: string | string[];
body?: T;
}