Added includeTypeName to IndicesPutMappingParams (#40055)

* Added includeTypeName to IndicesPutMappingParams

* Added includeTypeName to IndicesPutMappingParams
This commit is contained in:
Jani Šumak 2019-11-05 22:33:01 +01:00 committed by Nathan Shively-Sanders
parent f5ae60c0ac
commit 736a20b93f

View File

@ -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 {