-
Notifications
You must be signed in to change notification settings - Fork 4
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[RUM-EVENT-FORMAT][Replay] rename webview fields #173
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
git mv
did not go well here in the diff.
_webview-supported...
naming was erroneous as other environments could later have slots (iframe...)
{ | ||
"properties": { | ||
"slotId": { | ||
"type": "string", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Discussed with @mariusc83 string are more reliable that integer (cf. int64 non supported long number in javascript issue)
"type": "integer", | ||
"description": "Defines the unique ID of the replayed webview environment that will be nested in this container.", | ||
"slotId": { | ||
"type": "string", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Discussed with @mariusc83 string are more reliable that integer (cf. int64 non supported long number in javascript issue)
"type": "integer", | ||
"description": "Defines the unique ID of the replayed webview environment that will be nested in this container.", | ||
"slotId": { | ||
"type": "string", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Discussed with @mariusc83 string are more reliable that integer (cf. int64 non supported long number in javascript issue)
schemas/session-replay/common/_slot-supported-common-record-schema.json
Outdated
Show resolved
Hide resolved
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM ✔️
Motivation
Following internal discussions, the PR aligns the naming of the webview concepts.
On top of this, it migrates the number based id to a string to get rid of the int32 Native problematic