Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions lib/cjs/generated/rum.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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;
};
/**
Expand Down
4 changes: 4 additions & 0 deletions lib/esm/generated/rum.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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;
};
/**
Expand Down
8 changes: 8 additions & 0 deletions schemas/rum/_common-schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -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
}
}
},
Expand Down
Loading