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 Dec 6, 2023
1 parent f75c6c9 commit 0c3ddb2
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 @@ -867,6 +867,10 @@ export interface CommonProperties {
* The build version for this application
*/
readonly build_version?: string;
/**
* Generated unique ID of the application build. Unlike version or build_version this field is not meant to be coming from the user, but rather generated by the tooling for each build.
*/
readonly build_id?: string;
/**
* Session properties
*/
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 @@ -867,6 +867,10 @@ export interface CommonProperties {
* The build version for this application
*/
readonly build_version?: string;
/**
* Generated unique ID of the application build. Unlike version or build_version this field is not meant to be coming from the user, but rather generated by the tooling for each build.
*/
readonly build_id?: string;
/**
* Session properties
*/
Expand Down
5 changes: 5 additions & 0 deletions schemas/rum/_common-schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,11 @@
"description": "The build version for this application",
"readOnly": true
},
"build_id": {
"type": "string",
"description": "Generated unique ID of the application build. Unlike version or build_version this field is not meant to be coming from the user, but rather generated by the tooling for each build.",
"readOnly": true
},
"session": {
"type": "object",
"description": "Session properties",
Expand Down

0 comments on commit 0c3ddb2

Please sign in to comment.