Type declaration fix for 7.17.11 (#1927)

This commit is contained in:
Josh Mock
2023-06-29 13:36:27 -05:00
committed by GitHub
parent acbd146d53
commit 4a88f2d5e5
5 changed files with 7 additions and 6 deletions

View File

@ -2629,11 +2629,11 @@ export interface SnapshotGet extends Generic {
index_details?: boolean;
include_repository?: boolean;
sort?: 'start_time' | 'duration' | 'name' | 'repository' | 'index_count' | 'shard_count' | 'failed_shard_count';
size?: integer;
size?: number;
order?: 'asc' | 'desc';
from_sort_value?: string;
after?: string;
offset?: integer;
offset?: number;
slm_policy_filter?: string;
verbose?: boolean;
}