From 9c772b8c482b303757645cd8169d47f953a064f4 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Thu, 14 May 2026 17:05:09 +0000 Subject: [PATCH] feat: Updated OpenAPI spec --- .../Generated/Phoenix.Models.AgentCapabilities.g.cs | 13 ++++++++++++- src/libs/Phoenix/openapi.json | 5 +++++ 2 files changed, 17 insertions(+), 1 deletion(-) 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",