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; }; /** 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 } } },