update core to v2.16.0

This commit is contained in:
adbenitez 2025-10-02 15:07:01 +02:00
parent 01b78e37fd
commit 57e5523bf3
3 changed files with 8 additions and 6 deletions

@ -1 +1 @@
Subproject commit 75bcf8660bca5b80bea7835bd85df11518a0f7e4
Subproject commit 570a9993f73ad8d186a3ed810a185e0ca7e1f5ca

View file

@ -2,6 +2,8 @@
package chat.delta.rpc.types;
public class CallInfo {
/* True if SDP offer has a video. */
public Boolean hasVideo;
/**
* SDP offer.
* <p>
@ -11,7 +13,7 @@ public class CallInfo {
/**
* Call state.
* <p>
* For example, if the call is accepted, active, cancelled, declined etc.
* For example, if the call is accepted, active, canceled, declined etc.
*/
public CallState state;
}

View file

@ -8,7 +8,7 @@ import com.fasterxml.jackson.annotation.JsonTypeInfo.Id;
import com.fasterxml.jackson.annotation.JsonTypeInfo.As;
@JsonTypeInfo(use=Id.NAME, include=As.PROPERTY, property="kind")
@JsonSubTypes({@Type(value = CallState.Alerting.class, name="Alerting"), @Type(value = CallState.Active.class, name="Active"), @Type(value = CallState.Completed.class, name="Completed"), @Type(value = CallState.Missed.class, name="Missed"), @Type(value = CallState.Declined.class, name="Declined"), @Type(value = CallState.Cancelled.class, name="Cancelled")})
@JsonSubTypes({@Type(value = CallState.Alerting.class, name="Alerting"), @Type(value = CallState.Active.class, name="Active"), @Type(value = CallState.Completed.class, name="Completed"), @Type(value = CallState.Missed.class, name="Missed"), @Type(value = CallState.Declined.class, name="Declined"), @Type(value = CallState.Canceled.class, name="Canceled")})
public abstract class CallState {
/**
@ -38,11 +38,11 @@ public abstract class CallState {
}
/**
* Outgoing call that has been cancelled on our side before receiving a response.
* Outgoing call that has been canceled on our side before receiving a response.
* <p>
* Incoming calls cannot be cancelled, on the receiver side cancelled calls usually result in missed calls.
* Incoming calls cannot be canceled, on the receiver side canceled calls usually result in missed calls.
*/
public static class Cancelled extends CallState {
public static class Canceled extends CallState {
}
}