Skip to content

Commit

Permalink
RUM-1915: Add buildId property to the Error event schema
Browse files Browse the repository at this point in the history
  • Loading branch information
0xnm committed Nov 30, 2023
1 parent f75c6c9 commit 442a5bd
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 0 deletions.
4 changes: 4 additions & 0 deletions lib/cjs/generated/rum.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -257,6 +257,10 @@ export declare type RumErrorEvent = CommonProperties & ActionChildProperties & P
};
[k: string]: unknown;
};
/**
* ID of the application build this error belongs to
*/
readonly build_id?: 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 @@ -257,6 +257,10 @@ export declare type RumErrorEvent = CommonProperties & ActionChildProperties & P
};
[k: string]: unknown;
};
/**
* ID of the application build this error belongs to
*/
readonly build_id?: string;
[k: string]: unknown;
};
/**
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 @@ -177,6 +177,11 @@
}
},
"readOnly": true
},
"build_id": {
"type": "string",
"description": "ID of the application build this error belongs to",
"readOnly": true
}
},
"readOnly": true
Expand Down

0 comments on commit 442a5bd

Please sign in to comment.