mirror of
https://github.com/FlipsideCrypto/DefinitelyTyped.git
synced 2026-02-06 10:56:53 +00:00
Added includeTypeName to IndicesPutMappingParams (#40055)
* Added includeTypeName to IndicesPutMappingParams * Added includeTypeName to IndicesPutMappingParams
This commit is contained in:
parent
f5ae60c0ac
commit
736a20b93f
20
types/elasticsearch/index.d.ts
vendored
20
types/elasticsearch/index.d.ts
vendored
@ -10,6 +10,7 @@
|
||||
// Paul Brabban <https://github.com/brabster>
|
||||
// Budi Irawan <https://github.com/deerawan>
|
||||
// Yonatan Kiron <https://github.com/YonatanKiron>
|
||||
// Jani Šumak <https://github.com/dasdachs>
|
||||
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
||||
// TypeScript Version: 2.2
|
||||
|
||||
@ -1285,15 +1286,16 @@ export interface IndicesPutAliasParams extends GenericParams {
|
||||
}
|
||||
|
||||
export interface IndicesPutMappingParams extends GenericParams {
|
||||
timeout?: TimeSpan;
|
||||
masterTimeout?: TimeSpan;
|
||||
ignoreUnavailable?: boolean;
|
||||
allowNoIndices?: boolean;
|
||||
expandWildcards?: ExpandWildcards;
|
||||
updateAllTypes?: boolean;
|
||||
index: NameList;
|
||||
type: string;
|
||||
body: any;
|
||||
timeout?: TimeSpan;
|
||||
masterTimeout?: TimeSpan;
|
||||
ignoreUnavailable?: boolean;
|
||||
allowNoIndices?: boolean;
|
||||
expandWildcards?: ExpandWildcards;
|
||||
updateAllTypes?: boolean;
|
||||
index: NameList;
|
||||
type: string;
|
||||
includeTypeName?: boolean;
|
||||
body: any;
|
||||
}
|
||||
|
||||
export interface IndicesPutSettingsParams extends GenericParams {
|
||||
|
||||
Loading…
Reference in New Issue
Block a user