@@ -32573,7 +32573,9 @@ sealed class EmbeddedEventDetails: Disposable {
3257332573 data class Ready(
3257432574 val `content`: TimelineItemContent,
3257532575 val `sender`: kotlin.String,
32576- val `senderProfile`: ProfileDetails) : EmbeddedEventDetails() {
32576+ val `senderProfile`: ProfileDetails,
32577+ val `timestamp`: Timestamp,
32578+ val `eventOrTransactionId`: EventOrTransactionId) : EmbeddedEventDetails() {
3257732579 companion object
3257832580 }
3257932581
@@ -32599,6 +32601,10 @@ sealed class EmbeddedEventDetails: Disposable {
3259932601
3260032602 Disposable.destroy(this.`senderProfile`)
3260132603
32604+ Disposable.destroy(this.`timestamp`)
32605+
32606+ Disposable.destroy(this.`eventOrTransactionId`)
32607+
3260232608
3260332609 }
3260432610 is EmbeddedEventDetails.Error -> {
@@ -32622,6 +32628,8 @@ public object FfiConverterTypeEmbeddedEventDetails : FfiConverterRustBuffer<Embe
3262232628 FfiConverterTypeTimelineItemContent.read(buf),
3262332629 FfiConverterString.read(buf),
3262432630 FfiConverterTypeProfileDetails.read(buf),
32631+ FfiConverterTypeTimestamp.read(buf),
32632+ FfiConverterTypeEventOrTransactionId.read(buf),
3262532633 )
3262632634 4 -> EmbeddedEventDetails.Error(
3262732635 FfiConverterString.read(buf),
@@ -32650,6 +32658,8 @@ public object FfiConverterTypeEmbeddedEventDetails : FfiConverterRustBuffer<Embe
3265032658 + FfiConverterTypeTimelineItemContent.allocationSize(value.`content`)
3265132659 + FfiConverterString.allocationSize(value.`sender`)
3265232660 + FfiConverterTypeProfileDetails.allocationSize(value.`senderProfile`)
32661+ + FfiConverterTypeTimestamp.allocationSize(value.`timestamp`)
32662+ + FfiConverterTypeEventOrTransactionId.allocationSize(value.`eventOrTransactionId`)
3265332663 )
3265432664 }
3265532665 is EmbeddedEventDetails.Error -> {
@@ -32676,6 +32686,8 @@ public object FfiConverterTypeEmbeddedEventDetails : FfiConverterRustBuffer<Embe
3267632686 FfiConverterTypeTimelineItemContent.write(value.`content`, buf)
3267732687 FfiConverterString.write(value.`sender`, buf)
3267832688 FfiConverterTypeProfileDetails.write(value.`senderProfile`, buf)
32689+ FfiConverterTypeTimestamp.write(value.`timestamp`, buf)
32690+ FfiConverterTypeEventOrTransactionId.write(value.`eventOrTransactionId`, buf)
3267932691 Unit
3268032692 }
3268132693 is EmbeddedEventDetails.Error -> {
0 commit comments