File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -2356,9 +2356,9 @@ export interface Message {
2356
2356
*/
2357
2357
updatedAt ?: number ;
2358
2358
/**
2359
- * If a `deletion` operation was applied to this message, this will be the timestamp the deletion occurred .
2359
+ * The serial of the operation that updated this message.
2360
2360
*/
2361
- deletedAt ?: number ;
2361
+ updateSerial ?: string ;
2362
2362
/**
2363
2363
* If this message resulted from an operation, this will contain the operation details.
2364
2364
*/
Original file line number Diff line number Diff line change @@ -341,7 +341,7 @@ class Message {
341
341
refSerial ?: string ;
342
342
refType ?: string ;
343
343
updatedAt ?: number ;
344
- deletedAt ?: number ;
344
+ updateSerial ?: string ;
345
345
operation ?: API . Operation ;
346
346
347
347
/**
@@ -378,7 +378,7 @@ class Message {
378
378
refSerial : this . refSerial ,
379
379
refType : this . refType ,
380
380
updatedAt : this . updatedAt ,
381
- deletedAt : this . deletedAt ,
381
+ updateSerial : this . updateSerial ,
382
382
operation : this . operation ,
383
383
encoding,
384
384
data,
@@ -407,7 +407,7 @@ class Message {
407
407
if ( this . refSerial ) result += '; refSerial=' + this . refSerial ;
408
408
if ( this . refType ) result += '; refType=' + this . refType ;
409
409
if ( this . updatedAt ) result += '; updatedAt=' + this . updatedAt ;
410
- if ( this . deletedAt ) result += '; deletedAt =' + this . deletedAt ;
410
+ if ( this . updateSerial ) result += '; updateSerial =' + this . updateSerial ;
411
411
if ( this . operation ) result += '; operation=' + JSON . stringify ( this . operation ) ;
412
412
result += ']' ;
413
413
return result ;
You can’t perform that action at this time.
0 commit comments