Skip to content

Commit

Permalink
[RUM-417] Add application build version (#160)
Browse files Browse the repository at this point in the history
* RUM-417 Add application build number

* rename build_number to build_version
  • Loading branch information
maxep authored Sep 11, 2023
1 parent a4b8a7b commit 221e41f
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 @@ -835,6 +835,10 @@ export interface CommonProperties {
* The version for this application
*/
readonly version?: string;
/**
* The build version for this application
*/
readonly build_version?: 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 @@ -835,6 +835,10 @@ export interface CommonProperties {
* The version for this application
*/
readonly version?: string;
/**
* The build version for this application
*/
readonly build_version?: 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 @@ -36,6 +36,11 @@
"description": "The version for this application",
"readOnly": true
},
"build_version": {
"type": "string",
"description": "The build version for this application",
"readOnly": true
},
"session": {
"type": "object",
"description": "Session properties",
Expand Down

0 comments on commit 221e41f

Please sign in to comment.