From 0c3ddb20530c9fd0d950807fa137ff9ae31ab7a7 Mon Sep 17 00:00:00 2001 From: Nikita Ogorodnikov Date: Thu, 30 Nov 2023 11:00:04 +0100 Subject: [PATCH] RUM-1915: Add buildId property to the Error event schema --- lib/cjs/generated/rum.d.ts | 4 ++++ lib/esm/generated/rum.d.ts | 4 ++++ schemas/rum/_common-schema.json | 5 +++++ 3 files changed, 13 insertions(+) diff --git a/lib/cjs/generated/rum.d.ts b/lib/cjs/generated/rum.d.ts index e828068..42728b8 100644 --- a/lib/cjs/generated/rum.d.ts +++ b/lib/cjs/generated/rum.d.ts @@ -867,6 +867,10 @@ export interface CommonProperties { * The build version for this application */ readonly build_version?: string; + /** + * Generated unique ID of the application build. Unlike version or build_version this field is not meant to be coming from the user, but rather generated by the tooling for each build. + */ + readonly build_id?: string; /** * Session properties */ diff --git a/lib/esm/generated/rum.d.ts b/lib/esm/generated/rum.d.ts index e828068..42728b8 100644 --- a/lib/esm/generated/rum.d.ts +++ b/lib/esm/generated/rum.d.ts @@ -867,6 +867,10 @@ export interface CommonProperties { * The build version for this application */ readonly build_version?: string; + /** + * Generated unique ID of the application build. Unlike version or build_version this field is not meant to be coming from the user, but rather generated by the tooling for each build. + */ + readonly build_id?: string; /** * Session properties */ diff --git a/schemas/rum/_common-schema.json b/schemas/rum/_common-schema.json index 4e2d8f4..08491ad 100644 --- a/schemas/rum/_common-schema.json +++ b/schemas/rum/_common-schema.json @@ -41,6 +41,11 @@ "description": "The build version for this application", "readOnly": true }, + "build_id": { + "type": "string", + "description": "Generated unique ID of the application build. Unlike version or build_version this field is not meant to be coming from the user, but rather generated by the tooling for each build.", + "readOnly": true + }, "session": { "type": "object", "description": "Session properties",