diff --git a/types/xrm/index.d.ts b/types/xrm/index.d.ts index cb03e72d2e..d8ff6bec56 100644 --- a/types/xrm/index.d.ts +++ b/types/xrm/index.d.ts @@ -4886,38 +4886,7 @@ declare namespace Xrm { /** * Interface for the WebAPI Execute request response */ - interface ExecuteResponse { - /** - * (Optional). Object.Response body. - */ - body: string; - /** - * Response headers. - */ - headers: any; - /** - * Indicates whether the request was successful. - */ - ok: boolean; - /** - * Numeric value in the response status code. - * @example 200 - */ - status: number; - /** - * Description of the response status code. - * @example "OK" - */ - statusText: string; - /** - * Response type.Values are: the empty string (default), "arraybuffer", "blob", "document", "json", and "text". - */ - type: string; - /** - * Request URL of the action, function, or CRUD request that was sent to the Web API endpoint. - */ - url: string; - } + interface ExecuteResponse extends Response { } } declare namespace XrmEnum {