@sap-ai-sdk/document-grounding
Version:
> [!warning] > This package is still in **beta** and is subject to breaking changes. Use it with caution.
24 lines • 553 B
TypeScript
import type { DetailsErrorResponse } from './details-error-response.js';
/**
* Representation of the 'ApiError' schema.
*/
export type ApiError = {
/**
* Descriptive error code (not http status code).
*/
code: string;
/**
* plaintext error description
*/
message: string;
/**
* id of individual request
*/
requestId?: string;
/**
* url that has been called
*/
target?: string;
details?: DetailsErrorResponse[];
} & Record<string, any>;
//# sourceMappingURL=api-error.d.ts.map