Skip to content

Commit 5ebdc87

Browse files
author
github-actions
committed
Bump SDK version to 25.07.03 (matrix-rust-sdk to 39d1ed9bc60296355e8cb7cf5e1a2ca5794775e6)
1 parent 6d1c8eb commit 5ebdc87

File tree

2 files changed

+14
-2
lines changed

2 files changed

+14
-2
lines changed
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
object BuildVersionsSDK {
22
const val majorVersion = 25
33
const val minorVersion = 7
4-
const val patchVersion = 2
4+
const val patchVersion = 3
55
}

sdk/sdk-android/src/main/kotlin/org/matrix/rustcomponents/sdk/matrix_sdk_ffi.kt

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)