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 @@ -267,6 +267,10 @@ export declare type RumErrorEvent = CommonProperties & ActionChildProperties & V
* The type of the error
*/
readonly type?: string;
/**
* The file in which the error originated
*/
readonly file?: string;
/**
* The specific category of the error. It provides a high-level grouping for different types of errors.
*/
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 @@ -267,6 +267,10 @@ export declare type RumErrorEvent = CommonProperties & ActionChildProperties & V
* The type of the error
*/
readonly type?: string;
/**
* The file in which the error originated
*/
readonly file?: string;
/**
* The specific category of the error. It provides a high-level grouping for different types of errors.
*/
Expand Down
5 changes: 5 additions & 0 deletions schemas/rum/error-schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -98,6 +98,11 @@
"description": "The type of the error",
"readOnly": true
},
"file": {
"type": "string",
"description": "The file in which the error originated",
"readOnly": true
},
"category": {
"type": "string",
"description": "The specific category of the error. It provides a high-level grouping for different types of errors.",
Expand Down