-
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
[Innovation Week] feat: stored events schema for action and view #222
base: master
Are you sure you want to change the base?
[Innovation Week] feat: stored events schema for action and view #222
Conversation
This stack of pull requests is managed by Graphite. Learn more about stacking. Join @guilhermevrs and the rest of your teammates on Graphite |
/** | ||
* Whether the View corresponding to this event is considered active | ||
*/ | ||
is_active?: boolean; |
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.
/** | ||
* Whether the View had a low average refresh rate | ||
*/ | ||
is_slow_rendered?: boolean; |
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.
/** | ||
* Whether this session has been sampled for replay | ||
*/ | ||
sampled_for_replay?: boolean; |
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.
/** | ||
* Whether session replay recording configured to start manually | ||
*/ | ||
start_session_replay_recording_manually?: boolean; |
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.
var __exportStar = (this && this.__exportStar) || function(m, exports) { | ||
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p); | ||
}; |
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.
if (k2 === undefined) k2 = k; | ||
o[k2] = m[k]; | ||
})); | ||
var __exportStar = (this && this.__exportStar) || function(m, exports) { |
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.
⚪ Code Quality Violation
var __exportStar = (this && this.__exportStar) || function(m, exports) { | |
var _Exportstar = (this && this.__exportStar) || function(m, exports) { |
Use 'camelCase' and not 'snake_case' (...read more)
Ensure that variables and properties names use camelCase
and not snake_case
or PascalCase
.
"use strict"; | ||
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { | ||
if (k2 === undefined) k2 = k; | ||
var desc = Object.getOwnPropertyDescriptor(m, k); |
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.
if (k2 === undefined) k2 = k; | ||
var desc = Object.getOwnPropertyDescriptor(m, k); | ||
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { | ||
desc = { enumerable: true, get: function() { return m[k]; } }; |
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.
@@ -0,0 +1,17 @@ | |||
"use strict"; | |||
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { |
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.
⚪ Code Quality Violation
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { | |
var _Createbinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { |
Use 'camelCase' and not 'snake_case' (...read more)
Ensure that variables and properties names use camelCase
and not snake_case
or PascalCase
.
}) : (function(o, m, k, k2) { | ||
if (k2 === undefined) k2 = k; | ||
o[k2] = m[k]; | ||
})); |
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.
/** | ||
* Whether this session is currently active. Set to false to manually stop a session | ||
*/ | ||
is_active?: boolean; |
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.
[Innovation Week] feat: stored events schema for action and view
feat: adds common events props