* Updated types generation script * Refactored api method definitions * Updated test - Removed old test code - Added tsd dev dependency - Rewritten test with tsd * Removed unused dependencies * Fixed definition * Updated test * Updated docs * Improved events type definitions * Updated test * Minor fixes in the type definitons * More type test * Improved Transport type definitions * Updated test * Addressed comments * Code generation * Use RequestBody, Response and Context everywhere, also default Context to unknown * Updated test * body -> hasBody * Fixed conflicts * Updated code generation * Improved request body type definition * Updated code generation * Use BodyType for both request and reponses generics - Use extends for defining the RequestBody generic to force the user following the same shape. - BodyType and NDBodyType now accepts a generics to allow injecting more specific types in the future * API generation * Updated test * Updated docs * Use BodyType also in ReponseError * Removed useless client generics * Renamed generics and types - prefixed all generics with a T - BodyType => RequestBody - NDBodyType => RequestNDBody - Added ResponseBody * Updated test * Updated docs * Test ResponseBody as well * Simplify overloads * API generation * Updated test * Updated error types
62 lines
1.6 KiB
TypeScript
62 lines
1.6 KiB
TypeScript
// Licensed to Elasticsearch B.V under one or more agreements.
|
|
// Elasticsearch B.V licenses this file to you under the Apache 2.0 License.
|
|
// See the LICENSE file in the project root for more information
|
|
|
|
import { ApiResponse, ResponseBody } from './Transport'
|
|
|
|
export declare class ElasticsearchClientError extends Error {
|
|
name: string;
|
|
message: string;
|
|
}
|
|
|
|
export declare class TimeoutError extends ElasticsearchClientError {
|
|
name: string;
|
|
message: string;
|
|
meta: ApiResponse;
|
|
constructor(message: string, meta: ApiResponse);
|
|
}
|
|
|
|
export declare class ConnectionError extends ElasticsearchClientError {
|
|
name: string;
|
|
message: string;
|
|
meta: ApiResponse;
|
|
constructor(message: string, meta: ApiResponse);
|
|
}
|
|
|
|
export declare class NoLivingConnectionsError extends ElasticsearchClientError {
|
|
name: string;
|
|
message: string;
|
|
meta: ApiResponse;
|
|
constructor(message: string, meta: ApiResponse);
|
|
}
|
|
|
|
export declare class SerializationError extends ElasticsearchClientError {
|
|
name: string;
|
|
message: string;
|
|
data: any;
|
|
constructor(message: string, data: any);
|
|
}
|
|
|
|
export declare class DeserializationError extends ElasticsearchClientError {
|
|
name: string;
|
|
message: string;
|
|
data: string;
|
|
constructor(message: string, data: string);
|
|
}
|
|
|
|
export declare class ConfigurationError extends ElasticsearchClientError {
|
|
name: string;
|
|
message: string;
|
|
constructor(message: string);
|
|
}
|
|
|
|
export declare class ResponseError extends ElasticsearchClientError {
|
|
name: string;
|
|
message: string;
|
|
meta: ApiResponse;
|
|
body: ResponseBody;
|
|
statusCode: number;
|
|
headers: Record<string, any>;
|
|
constructor(meta: ApiResponse);
|
|
}
|