diff --git a/src/libs/Phoenix/Generated/Phoenix.Models.AgentCapabilities.g.cs b/src/libs/Phoenix/Generated/Phoenix.Models.AgentCapabilities.g.cs
index 1e343b4..c3e9cd7 100644
--- a/src/libs/Phoenix/Generated/Phoenix.Models.AgentCapabilities.g.cs
+++ b/src/libs/Phoenix/Generated/Phoenix.Models.AgentCapabilities.g.cs
@@ -20,6 +20,12 @@ public sealed partial class AgentCapabilities
[global::System.Text.Json.Serialization.JsonPropertyName("graphql.mutations")]
public bool? GraphqlMutations { get; set; }
+ ///
+ /// Default Value: false
+ ///
+ [global::System.Text.Json.Serialization.JsonPropertyName("session.storeSessions")]
+ public bool? SessionStoreSessions { get; set; }
+
///
/// Additional properties that are not explicitly defined in the schema
///
@@ -35,15 +41,20 @@ public sealed partial class AgentCapabilities
///
/// Default Value: false
///
+ ///
+ /// Default Value: false
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
public AgentCapabilities(
bool? bashRetainInactiveSessions,
- bool? graphqlMutations)
+ bool? graphqlMutations,
+ bool? sessionStoreSessions)
{
this.BashRetainInactiveSessions = bashRetainInactiveSessions;
this.GraphqlMutations = graphqlMutations;
+ this.SessionStoreSessions = sessionStoreSessions;
}
///
diff --git a/src/libs/Phoenix/openapi.json b/src/libs/Phoenix/openapi.json
index 0177a10..9bc6b42 100644
--- a/src/libs/Phoenix/openapi.json
+++ b/src/libs/Phoenix/openapi.json
@@ -6674,6 +6674,11 @@
"type": "boolean",
"title": "Graphql.Mutations",
"default": false
+ },
+ "session.storeSessions": {
+ "type": "boolean",
+ "title": "Session.Storesessions",
+ "default": false
}
},
"type": "object",