Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,12 @@ public sealed partial class CreateIntegrationStoreDirectResponseStoreCapabilitie
[global::System.Text.Json.Serialization.JsonPropertyName("autoSensitive")]
public bool? AutoSensitive { get; set; }

/// <summary>
///
/// </summary>
[global::System.Text.Json.Serialization.JsonPropertyName("agentTools")]
public bool? AgentTools { get; set; }

/// <summary>
/// Additional properties that are not explicitly defined in the schema
/// </summary>
Expand All @@ -88,6 +94,7 @@ public sealed partial class CreateIntegrationStoreDirectResponseStoreCapabilitie
/// <param name="projects"></param>
/// <param name="v0"></param>
/// <param name="autoSensitive"></param>
/// <param name="agentTools"></param>
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
Expand All @@ -101,7 +108,8 @@ public CreateIntegrationStoreDirectResponseStoreCapabilities(
global::Vercel.OneOf<global::Vercel.CreateIntegrationStoreDirectResponseStoreCapabilitiesSecretRotation, bool?>? secretRotation,
bool? projects,
bool? v0,
bool? autoSensitive)
bool? autoSensitive,
bool? agentTools)
{
this.Mcp = mcp;
this.McpReadonly = mcpReadonly;
Expand All @@ -113,6 +121,7 @@ public CreateIntegrationStoreDirectResponseStoreCapabilities(
this.Projects = projects;
this.V0 = v0;
this.AutoSensitive = autoSensitive;
this.AgentTools = agentTools;
}

/// <summary>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -111,6 +111,12 @@ public sealed partial class CreateIntegrationStoreDirectResponseStoreProductCapa
[global::System.Text.Json.Serialization.JsonPropertyName("autoSensitive")]
public bool? AutoSensitive { get; set; }

/// <summary>
///
/// </summary>
[global::System.Text.Json.Serialization.JsonPropertyName("agentTools")]
public bool? AgentTools { get; set; }

/// <summary>
/// Additional properties that are not explicitly defined in the schema
/// </summary>
Expand All @@ -137,6 +143,7 @@ public sealed partial class CreateIntegrationStoreDirectResponseStoreProductCapa
/// <param name="databaseUI"></param>
/// <param name="v0Flavors"></param>
/// <param name="autoSensitive"></param>
/// <param name="agentTools"></param>
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
Expand All @@ -157,7 +164,8 @@ public CreateIntegrationStoreDirectResponseStoreProductCapabilities(
bool? nativeImportResource,
bool? databaseUI,
bool? v0Flavors,
bool? autoSensitive)
bool? autoSensitive,
bool? agentTools)
{
this.Mcp = mcp;
this.McpReadonly = mcpReadonly;
Expand All @@ -176,6 +184,7 @@ public CreateIntegrationStoreDirectResponseStoreProductCapabilities(
this.DatabaseUI = databaseUI;
this.V0Flavors = v0Flavors;
this.AutoSensitive = autoSensitive;
this.AgentTools = agentTools;
}

/// <summary>
Expand Down
14 changes: 14 additions & 0 deletions src/libs/Vercel/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -126680,6 +126680,13 @@
false,
true
]
},
"agentTools": {
"type": "boolean",
"enum": [
false,
true
]
}
},
"type": "object"
Expand Down Expand Up @@ -126884,6 +126891,13 @@
false,
true
]
},
"agentTools": {
"type": "boolean",
"enum": [
false,
true
]
}
},
"type": "object"
Expand Down