From 6a2ef26996c81e5d51af243f842bad1eb05669fc Mon Sep 17 00:00:00 2001 From: Thomas Lebeau Date: Fri, 31 Oct 2025 08:16:34 +0100 Subject: [PATCH 1/2] Add experimental_features to common rum schema --- schemas/rum/_common-schema.json | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/schemas/rum/_common-schema.json b/schemas/rum/_common-schema.json index 42ddb300..ba66e735 100644 --- a/schemas/rum/_common-schema.json +++ b/schemas/rum/_common-schema.json @@ -420,6 +420,14 @@ "minimum": 0, "maximum": 100, "readOnly": true + }, + "experimental_features": { + "type": "array", + "description": "List of experimental features enabled in the SDK", + "items": { + "type": "string" + }, + "readOnly": true } } }, From 322f5ef24db1cef92f624d182ca3362f4f80adb7 Mon Sep 17 00:00:00 2001 From: Thomas Lebeau Date: Fri, 31 Oct 2025 08:25:11 +0100 Subject: [PATCH 2/2] Add experimental_features property to CommonProperties interface in rum schema --- lib/cjs/generated/rum.d.ts | 4 ++++ lib/esm/generated/rum.d.ts | 4 ++++ 2 files changed, 8 insertions(+) diff --git a/lib/cjs/generated/rum.d.ts b/lib/cjs/generated/rum.d.ts index 6d7c57f1..5db3e357 100644 --- a/lib/cjs/generated/rum.d.ts +++ b/lib/cjs/generated/rum.d.ts @@ -1679,6 +1679,10 @@ export interface CommonProperties { * The percentage of views profiled */ readonly profiling_sample_rate?: number; + /** + * List of experimental features enabled in the SDK + */ + readonly experimental_features?: string[]; [k: string]: unknown; }; /** diff --git a/lib/esm/generated/rum.d.ts b/lib/esm/generated/rum.d.ts index 6d7c57f1..5db3e357 100644 --- a/lib/esm/generated/rum.d.ts +++ b/lib/esm/generated/rum.d.ts @@ -1679,6 +1679,10 @@ export interface CommonProperties { * The percentage of views profiled */ readonly profiling_sample_rate?: number; + /** + * List of experimental features enabled in the SDK + */ + readonly experimental_features?: string[]; [k: string]: unknown; }; /**