diff --git a/src/libs/Ultravox/Generated/Ultravox.Models.Call.g.cs b/src/libs/Ultravox/Generated/Ultravox.Models.Call.g.cs
index 9e54424..5b8bdc7 100644
--- a/src/libs/Ultravox/Generated/Ultravox.Models.Call.g.cs
+++ b/src/libs/Ultravox/Generated/Ultravox.Models.Call.g.cs
@@ -17,6 +17,13 @@ public sealed partial class Call
[global::System.Text.Json.Serialization.JsonPropertyName("callId")]
public global::System.Guid CallId { get; set; } = default!;
+ ///
+ /// The version of the client that joined this call.
+ /// Included only in responses
+ ///
+ [global::System.Text.Json.Serialization.JsonPropertyName("clientVersion")]
+ public string? ClientVersion { get; set; }
+
///
/// Included only in responses
///
@@ -151,6 +158,10 @@ public sealed partial class Call
///
/// Included only in responses
///
+ ///
+ /// The version of the client that joined this call.
+ /// Included only in responses
+ ///
///
/// Included only in responses
///
@@ -207,6 +218,7 @@ public sealed partial class Call
///
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
public Call(
+ string? clientVersion,
global::System.DateTime? ended,
global::Ultravox.OneOf? endReason,
global::System.Collections.Generic.IList? inactivityMessages,
@@ -228,6 +240,7 @@ public Call(
global::Ultravox.InitialOutputMediumEnum initialOutputMedium = default!)
{
this.CallId = callId;
+ this.ClientVersion = clientVersion;
this.Created = created;
this.Ended = ended;
this.EndReason = endReason;
diff --git a/src/libs/Ultravox/openapi.yaml b/src/libs/Ultravox/openapi.yaml
index 4b8c993..0fc5b3e 100644
--- a/src/libs/Ultravox/openapi.yaml
+++ b/src/libs/Ultravox/openapi.yaml
@@ -979,6 +979,7 @@ components:
Call:
required:
- callId
+ - clientVersion
- created
- endReason
- ended
@@ -991,6 +992,11 @@ components:
type: string
format: uuid
readOnly: true
+ clientVersion:
+ type: string
+ description: The version of the client that joined this call.
+ nullable: true
+ readOnly: true
created:
type: string
format: date-time