@@ -107,6 +107,7 @@ export enum FieldKey {
107
107
STACK_RESOURCE = 'stack.resource' ,
108
108
STACK_STACK_LEVEL = 'stack.stack_level' ,
109
109
STATUS = 'status' ,
110
+ SYMBOLICATED_IN_APP = 'symbolicated_in_app' ,
110
111
TIMESTAMP = 'timestamp' ,
111
112
TIMESTAMP_TO_DAY = 'timestamp.to_day' ,
112
113
TIMESTAMP_TO_HOUR = 'timestamp.to_hour' ,
@@ -1703,6 +1704,11 @@ const EVENT_FIELD_DEFINITIONS: Record<AllEventFieldKeys, FieldDefinition> = {
1703
1704
kind : FieldKind . FIELD ,
1704
1705
valueType : FieldValueType . NUMBER ,
1705
1706
} ,
1707
+ [ FieldKey . SYMBOLICATED_IN_APP ] : {
1708
+ desc : t ( 'Indicates if all in-app frames are symbolicated' ) ,
1709
+ kind : FieldKind . FIELD ,
1710
+ valueType : FieldValueType . BOOLEAN ,
1711
+ } ,
1706
1712
[ FieldKey . STATUS ] : {
1707
1713
desc : t ( 'Status of the issue' ) ,
1708
1714
kind : FieldKind . FIELD ,
@@ -1929,6 +1935,7 @@ export const ISSUE_EVENT_PROPERTY_FIELDS: FieldKey[] = [
1929
1935
FieldKey . STACK_MODULE ,
1930
1936
FieldKey . STACK_PACKAGE ,
1931
1937
FieldKey . STACK_STACK_LEVEL ,
1938
+ FieldKey . SYMBOLICATED_IN_APP ,
1932
1939
FieldKey . TIMESTAMP ,
1933
1940
FieldKey . TITLE ,
1934
1941
FieldKey . TRACE ,
@@ -2088,6 +2095,7 @@ export const DISCOVER_FIELDS = [
2088
2095
FieldKey . STACK_COLNO ,
2089
2096
FieldKey . STACK_LINENO ,
2090
2097
FieldKey . STACK_STACK_LEVEL ,
2098
+ FieldKey . SYMBOLICATED_IN_APP ,
2091
2099
// contexts.key and contexts.value omitted on purpose.
2092
2100
2093
2101
// App context fields
0 commit comments