From 25010f3d03abf9fcbeb03389c9e2eef30fa157fa Mon Sep 17 00:00:00 2001 From: Nathan L Smith Date: Thu, 16 Jul 2020 13:58:13 -0500 Subject: [PATCH] [APM] Add `name` to `Observer` type (#72110) Backport #72078 is failing because of the type check because `observer.name` is not defined. Not sure why this wasn't a problem on master, but adding it here so I can include it. --- x-pack/plugins/apm/typings/es_schemas/raw/fields/observer.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/x-pack/plugins/apm/typings/es_schemas/raw/fields/observer.ts b/x-pack/plugins/apm/typings/es_schemas/raw/fields/observer.ts index 42843130ec47f..0815b7cd88163 100644 --- a/x-pack/plugins/apm/typings/es_schemas/raw/fields/observer.ts +++ b/x-pack/plugins/apm/typings/es_schemas/raw/fields/observer.ts @@ -5,6 +5,7 @@ */ export interface Observer { + name?: string; version: string; version_major: number; }