Skip to content

Commit

Permalink
introduce webviewId
Browse files Browse the repository at this point in the history
  • Loading branch information
mquentin committed Oct 12, 2023
1 parent f69ca46 commit f693b8d
Show file tree
Hide file tree
Showing 7 changed files with 29 additions and 0 deletions.
4 changes: 4 additions & 0 deletions lib/cjs/generated/browserSessionReplay.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -359,6 +359,10 @@ export interface CommonRecordSchema {
* Defines the UTC time in milliseconds when this Record was performed.
*/
timestamp: number;
/**
* Defines the unique ID of the webview.
*/
readonly webViewId?: number;
}
/**
* Schema of a Node type.
Expand Down
4 changes: 4 additions & 0 deletions lib/cjs/generated/mobileSessionReplay.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -488,6 +488,10 @@ export interface CommonRecordSchema {
* Defines the UTC time in milliseconds when this Record was performed.
*/
timestamp: number;
/**
* Defines the unique ID of the webview.
*/
readonly webViewId?: number;
}
/**
* Schema of common properties for Wireframe events type.
Expand Down
4 changes: 4 additions & 0 deletions lib/cjs/generated/sessionReplay.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -731,6 +731,10 @@ export interface CommonRecordSchema {
* Defines the UTC time in milliseconds when this Record was performed.
*/
timestamp: number;
/**
* Defines the unique ID of the webview.
*/
readonly webViewId?: number;
}
/**
* Schema of a Node type.
Expand Down
4 changes: 4 additions & 0 deletions lib/esm/generated/browserSessionReplay.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -359,6 +359,10 @@ export interface CommonRecordSchema {
* Defines the UTC time in milliseconds when this Record was performed.
*/
timestamp: number;
/**
* Defines the unique ID of the webview.
*/
readonly webViewId?: number;
}
/**
* Schema of a Node type.
Expand Down
4 changes: 4 additions & 0 deletions lib/esm/generated/mobileSessionReplay.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -488,6 +488,10 @@ export interface CommonRecordSchema {
* Defines the UTC time in milliseconds when this Record was performed.
*/
timestamp: number;
/**
* Defines the unique ID of the webview.
*/
readonly webViewId?: number;
}
/**
* Schema of common properties for Wireframe events type.
Expand Down
4 changes: 4 additions & 0 deletions lib/esm/generated/sessionReplay.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -731,6 +731,10 @@ export interface CommonRecordSchema {
* Defines the UTC time in milliseconds when this Record was performed.
*/
timestamp: number;
/**
* Defines the unique ID of the webview.
*/
readonly webViewId?: number;
}
/**
* Schema of a Node type.
Expand Down
5 changes: 5 additions & 0 deletions schemas/session-replay/common/_common-record-schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,11 @@
"timestamp": {
"type": "integer",
"description": "Defines the UTC time in milliseconds when this Record was performed."
},
"webViewId": {
"type": "integer",
"description": "Defines the unique ID of the webview.",
"readOnly": true
}
}
}

0 comments on commit f693b8d

Please sign in to comment.