File tree 1 file changed +7
-0
lines changed
1 file changed +7
-0
lines changed Original file line number Diff line number Diff line change @@ -2184,6 +2184,7 @@ export enum ReplayFieldKey {
2184
2184
COUNT_URLS = 'count_urls' ,
2185
2185
DURATION = 'duration' ,
2186
2186
ERROR_IDS = 'error_ids' ,
2187
+ IS_ARCHIVED = 'is_archived' ,
2187
2188
OS_NAME = 'os.name' ,
2188
2189
OS_VERSION = 'os.version' ,
2189
2190
REPLAY_TYPE = 'replay_type' ,
@@ -2242,6 +2243,7 @@ export const REPLAY_FIELDS = [
2242
2243
ReplayFieldKey . DURATION ,
2243
2244
ReplayFieldKey . ERROR_IDS ,
2244
2245
FieldKey . ID ,
2246
+ ReplayFieldKey . IS_ARCHIVED ,
2245
2247
ReplayFieldKey . OS_NAME ,
2246
2248
ReplayFieldKey . OS_VERSION ,
2247
2249
FieldKey . PLATFORM ,
@@ -2330,6 +2332,11 @@ const REPLAY_FIELD_DEFINITIONS: Record<ReplayFieldKey, FieldDefinition> = {
2330
2332
kind : FieldKind . FIELD ,
2331
2333
valueType : FieldValueType . STRING ,
2332
2334
} ,
2335
+ [ ReplayFieldKey . IS_ARCHIVED ] : {
2336
+ desc : t ( 'Whether the replay has been archived' ) ,
2337
+ kind : FieldKind . FIELD ,
2338
+ valueType : FieldValueType . BOOLEAN ,
2339
+ } ,
2333
2340
[ ReplayFieldKey . OS_NAME ] : {
2334
2341
desc : t ( 'Name of the Operating System' ) ,
2335
2342
kind : FieldKind . FIELD ,
You can’t perform that action at this time.
0 commit comments