diff --git a/src/libs/Vercel/Generated/Vercel.ISandboxesClient.RunSessionCommand.g.cs b/src/libs/Vercel/Generated/Vercel.ISandboxesClient.RunSessionCommand.g.cs
index 714cdae1..13d1994a 100644
--- a/src/libs/Vercel/Generated/Vercel.ISandboxesClient.RunSessionCommand.g.cs
+++ b/src/libs/Vercel/Generated/Vercel.ISandboxesClient.RunSessionCommand.g.cs
@@ -95,6 +95,10 @@ public partial interface ISandboxesClient
/// If true, returns an ND-JSON stream that emits the command status when started and again when finished. Useful for synchronously waiting for command completion.
/// Default Value: false
///
+ ///
+ /// Maximum duration in milliseconds to wait for the command to finish. When elapsed, the process is killed with SIGKILL. Requires `wait` to be true.
+ /// Example: 30000
+ ///
/// Per-request overrides such as headers, query parameters, timeout, retries, and response buffering.
/// The token to cancel the operation with
///
@@ -108,6 +112,7 @@ public partial interface ISandboxesClient
global::System.Collections.Generic.Dictionary? env = default,
bool? sudo = default,
bool? wait = default,
+ int? timeout = default,
global::Vercel.AutoSDKRequestOptions? requestOptions = default,
global::System.Threading.CancellationToken cancellationToken = default);
}
diff --git a/src/libs/Vercel/Generated/Vercel.ISandboxesClient.RunSessionCommandAsStream.g.cs b/src/libs/Vercel/Generated/Vercel.ISandboxesClient.RunSessionCommandAsStream.g.cs
index be3634b2..e5b568c4 100644
--- a/src/libs/Vercel/Generated/Vercel.ISandboxesClient.RunSessionCommandAsStream.g.cs
+++ b/src/libs/Vercel/Generated/Vercel.ISandboxesClient.RunSessionCommandAsStream.g.cs
@@ -69,6 +69,10 @@ public partial interface ISandboxesClient
/// If true, returns an ND-JSON stream that emits the command status when started and again when finished. Useful for synchronously waiting for command completion.
/// Default Value: false
///
+ ///
+ /// Maximum duration in milliseconds to wait for the command to finish. When elapsed, the process is killed with SIGKILL. Requires `wait` to be true.
+ /// Example: 30000
+ ///
/// Per-request overrides such as headers, query parameters, timeout, retries, and response buffering.
/// The token to cancel the operation with
///
@@ -82,6 +86,7 @@ public partial interface ISandboxesClient
global::System.Collections.Generic.Dictionary? env = default,
bool? sudo = default,
bool? wait = default,
+ int? timeout = default,
global::Vercel.AutoSDKRequestOptions? requestOptions = default,
global::System.Threading.CancellationToken cancellationToken = default);
}
diff --git a/src/libs/Vercel/Generated/Vercel.Models.CreateProjectResponsePermissions.g.cs b/src/libs/Vercel/Generated/Vercel.Models.CreateProjectResponsePermissions.g.cs
index 1fa2e622..3044ac12 100644
--- a/src/libs/Vercel/Generated/Vercel.Models.CreateProjectResponsePermissions.g.cs
+++ b/src/libs/Vercel/Generated/Vercel.Models.CreateProjectResponsePermissions.g.cs
@@ -32,6 +32,12 @@ public sealed partial class CreateProjectResponsePermissions
[global::System.Text.Json.Serialization.JsonPropertyName("userConnection")]
public global::System.Collections.Generic.IList? UserConnection { get; set; }
+ ///
+ ///
+ ///
+ [global::System.Text.Json.Serialization.JsonPropertyName("userMfaConfiguration")]
+ public global::System.Collections.Generic.IList? UserMfaConfiguration { get; set; }
+
///
///
///
@@ -1533,6 +1539,7 @@ public sealed partial class CreateProjectResponsePermissions
///
///
///
+ ///
///
///
///
@@ -1789,6 +1796,7 @@ public CreateProjectResponsePermissions(
global::System.Collections.Generic.IList? organization,
global::System.Collections.Generic.IList? user,
global::System.Collections.Generic.IList? userConnection,
+ global::System.Collections.Generic.IList? userMfaConfiguration,
global::System.Collections.Generic.IList? userPreference,
global::System.Collections.Generic.IList? userSudo,
global::System.Collections.Generic.IList? webAuthn,
@@ -2042,6 +2050,7 @@ public CreateProjectResponsePermissions(
this.Organization = organization;
this.User = user;
this.UserConnection = userConnection;
+ this.UserMfaConfiguration = userMfaConfiguration;
this.UserPreference = userPreference;
this.UserSudo = userSudo;
this.WebAuthn = webAuthn;
diff --git a/src/libs/Vercel/Generated/Vercel.Models.GetMicrofrontendsInGroupResponseProjectPermissions.g.cs b/src/libs/Vercel/Generated/Vercel.Models.GetMicrofrontendsInGroupResponseProjectPermissions.g.cs
index 831cfda4..459221fa 100644
--- a/src/libs/Vercel/Generated/Vercel.Models.GetMicrofrontendsInGroupResponseProjectPermissions.g.cs
+++ b/src/libs/Vercel/Generated/Vercel.Models.GetMicrofrontendsInGroupResponseProjectPermissions.g.cs
@@ -32,6 +32,12 @@ public sealed partial class GetMicrofrontendsInGroupResponseProjectPermissions
[global::System.Text.Json.Serialization.JsonPropertyName("userConnection")]
public global::System.Collections.Generic.IList? UserConnection { get; set; }
+ ///
+ ///
+ ///
+ [global::System.Text.Json.Serialization.JsonPropertyName("userMfaConfiguration")]
+ public global::System.Collections.Generic.IList? UserMfaConfiguration { get; set; }
+
///
///
///
@@ -1533,6 +1539,7 @@ public sealed partial class GetMicrofrontendsInGroupResponseProjectPermissions
///
///
///
+ ///
///
///
///
@@ -1789,6 +1796,7 @@ public GetMicrofrontendsInGroupResponseProjectPermissions(
global::System.Collections.Generic.IList? organization,
global::System.Collections.Generic.IList? user,
global::System.Collections.Generic.IList? userConnection,
+ global::System.Collections.Generic.IList? userMfaConfiguration,
global::System.Collections.Generic.IList? userPreference,
global::System.Collections.Generic.IList? userSudo,
global::System.Collections.Generic.IList? webAuthn,
@@ -2042,6 +2050,7 @@ public GetMicrofrontendsInGroupResponseProjectPermissions(
this.Organization = organization;
this.User = user;
this.UserConnection = userConnection;
+ this.UserMfaConfiguration = userMfaConfiguration;
this.UserPreference = userPreference;
this.UserSudo = userSudo;
this.WebAuthn = webAuthn;
diff --git a/src/libs/Vercel/Generated/Vercel.Models.GetProjectResponsePermissions.g.cs b/src/libs/Vercel/Generated/Vercel.Models.GetProjectResponsePermissions.g.cs
index 764fb6fa..88f5a8cc 100644
--- a/src/libs/Vercel/Generated/Vercel.Models.GetProjectResponsePermissions.g.cs
+++ b/src/libs/Vercel/Generated/Vercel.Models.GetProjectResponsePermissions.g.cs
@@ -32,6 +32,12 @@ public sealed partial class GetProjectResponsePermissions
[global::System.Text.Json.Serialization.JsonPropertyName("userConnection")]
public global::System.Collections.Generic.IList? UserConnection { get; set; }
+ ///
+ ///
+ ///
+ [global::System.Text.Json.Serialization.JsonPropertyName("userMfaConfiguration")]
+ public global::System.Collections.Generic.IList? UserMfaConfiguration { get; set; }
+
///
///
///
@@ -1533,6 +1539,7 @@ public sealed partial class GetProjectResponsePermissions
///
///
///
+ ///
///
///
///
@@ -1789,6 +1796,7 @@ public GetProjectResponsePermissions(
global::System.Collections.Generic.IList? organization,
global::System.Collections.Generic.IList? user,
global::System.Collections.Generic.IList? userConnection,
+ global::System.Collections.Generic.IList? userMfaConfiguration,
global::System.Collections.Generic.IList? userPreference,
global::System.Collections.Generic.IList? userSudo,
global::System.Collections.Generic.IList? webAuthn,
@@ -2042,6 +2050,7 @@ public GetProjectResponsePermissions(
this.Organization = organization;
this.User = user;
this.UserConnection = userConnection;
+ this.UserMfaConfiguration = userMfaConfiguration;
this.UserPreference = userPreference;
this.UserSudo = userSudo;
this.WebAuthn = webAuthn;
diff --git a/src/libs/Vercel/Generated/Vercel.Models.GetProjectsResponseVariant3ProjectPermissions.g.cs b/src/libs/Vercel/Generated/Vercel.Models.GetProjectsResponseVariant3ProjectPermissions.g.cs
index 0a6505b0..7413db06 100644
--- a/src/libs/Vercel/Generated/Vercel.Models.GetProjectsResponseVariant3ProjectPermissions.g.cs
+++ b/src/libs/Vercel/Generated/Vercel.Models.GetProjectsResponseVariant3ProjectPermissions.g.cs
@@ -32,6 +32,12 @@ public sealed partial class GetProjectsResponseVariant3ProjectPermissions
[global::System.Text.Json.Serialization.JsonPropertyName("userConnection")]
public global::System.Collections.Generic.IList? UserConnection { get; set; }
+ ///
+ ///
+ ///
+ [global::System.Text.Json.Serialization.JsonPropertyName("userMfaConfiguration")]
+ public global::System.Collections.Generic.IList? UserMfaConfiguration { get; set; }
+
///
///
///
@@ -1533,6 +1539,7 @@ public sealed partial class GetProjectsResponseVariant3ProjectPermissions
///
///
///
+ ///
///
///
///
@@ -1789,6 +1796,7 @@ public GetProjectsResponseVariant3ProjectPermissions(
global::System.Collections.Generic.IList? organization,
global::System.Collections.Generic.IList? user,
global::System.Collections.Generic.IList? userConnection,
+ global::System.Collections.Generic.IList? userMfaConfiguration,
global::System.Collections.Generic.IList? userPreference,
global::System.Collections.Generic.IList? userSudo,
global::System.Collections.Generic.IList? webAuthn,
@@ -2042,6 +2050,7 @@ public GetProjectsResponseVariant3ProjectPermissions(
this.Organization = organization;
this.User = user;
this.UserConnection = userConnection;
+ this.UserMfaConfiguration = userMfaConfiguration;
this.UserPreference = userPreference;
this.UserSudo = userSudo;
this.WebAuthn = webAuthn;
diff --git a/src/libs/Vercel/Generated/Vercel.Models.ListEventTypeName.g.cs b/src/libs/Vercel/Generated/Vercel.Models.ListEventTypeName.g.cs
index b54cf6df..114e5867 100644
--- a/src/libs/Vercel/Generated/Vercel.Models.ListEventTypeName.g.cs
+++ b/src/libs/Vercel/Generated/Vercel.Models.ListEventTypeName.g.cs
@@ -1856,6 +1856,10 @@ public enum ListEventTypeName
///
///
///
+ UserMfaSetupSkipped,
+ ///
+ ///
+ ///
UserMfaTotpVerificationStarted,
///
///
@@ -2440,6 +2444,7 @@ public static string ToValueString(this ListEventTypeName value)
ListEventTypeName.UserMfaConfigurationUpdated => "user-mfa-configuration-updated",
ListEventTypeName.UserMfaRecoveryCodesRegenerated => "user-mfa-recovery-codes-regenerated",
ListEventTypeName.UserMfaRemoved => "user-mfa-removed",
+ ListEventTypeName.UserMfaSetupSkipped => "user-mfa-setup-skipped",
ListEventTypeName.UserMfaTotpVerificationStarted => "user-mfa-totp-verification-started",
ListEventTypeName.UserMfaTotpVerified => "user-mfa-totp-verified",
ListEventTypeName.UserPrimaryEmailUpdated => "user-primary-email-updated",
@@ -2939,6 +2944,7 @@ public static string ToValueString(this ListEventTypeName value)
"user-mfa-configuration-updated" => ListEventTypeName.UserMfaConfigurationUpdated,
"user-mfa-recovery-codes-regenerated" => ListEventTypeName.UserMfaRecoveryCodesRegenerated,
"user-mfa-removed" => ListEventTypeName.UserMfaRemoved,
+ "user-mfa-setup-skipped" => ListEventTypeName.UserMfaSetupSkipped,
"user-mfa-totp-verification-started" => ListEventTypeName.UserMfaTotpVerificationStarted,
"user-mfa-totp-verified" => ListEventTypeName.UserMfaTotpVerified,
"user-primary-email-updated" => ListEventTypeName.UserPrimaryEmailUpdated,
diff --git a/src/libs/Vercel/Generated/Vercel.Models.ListEventTypeReplacedByItem.g.cs b/src/libs/Vercel/Generated/Vercel.Models.ListEventTypeReplacedByItem.g.cs
index 57d73b85..0d19537e 100644
--- a/src/libs/Vercel/Generated/Vercel.Models.ListEventTypeReplacedByItem.g.cs
+++ b/src/libs/Vercel/Generated/Vercel.Models.ListEventTypeReplacedByItem.g.cs
@@ -1855,6 +1855,10 @@ public enum ListEventTypeReplacedByItem
///
///
///
+ UserMfaSetupSkipped,
+ ///
+ ///
+ ///
UserMfaTotpVerificationStarted,
///
///
@@ -2439,6 +2443,7 @@ public static string ToValueString(this ListEventTypeReplacedByItem value)
ListEventTypeReplacedByItem.UserMfaConfigurationUpdated => "user-mfa-configuration-updated",
ListEventTypeReplacedByItem.UserMfaRecoveryCodesRegenerated => "user-mfa-recovery-codes-regenerated",
ListEventTypeReplacedByItem.UserMfaRemoved => "user-mfa-removed",
+ ListEventTypeReplacedByItem.UserMfaSetupSkipped => "user-mfa-setup-skipped",
ListEventTypeReplacedByItem.UserMfaTotpVerificationStarted => "user-mfa-totp-verification-started",
ListEventTypeReplacedByItem.UserMfaTotpVerified => "user-mfa-totp-verified",
ListEventTypeReplacedByItem.UserPrimaryEmailUpdated => "user-primary-email-updated",
@@ -2938,6 +2943,7 @@ public static string ToValueString(this ListEventTypeReplacedByItem value)
"user-mfa-configuration-updated" => ListEventTypeReplacedByItem.UserMfaConfigurationUpdated,
"user-mfa-recovery-codes-regenerated" => ListEventTypeReplacedByItem.UserMfaRecoveryCodesRegenerated,
"user-mfa-removed" => ListEventTypeReplacedByItem.UserMfaRemoved,
+ "user-mfa-setup-skipped" => ListEventTypeReplacedByItem.UserMfaSetupSkipped,
"user-mfa-totp-verification-started" => ListEventTypeReplacedByItem.UserMfaTotpVerificationStarted,
"user-mfa-totp-verified" => ListEventTypeReplacedByItem.UserMfaTotpVerified,
"user-primary-email-updated" => ListEventTypeReplacedByItem.UserPrimaryEmailUpdated,
diff --git a/src/libs/Vercel/Generated/Vercel.Models.RunSessionCommandRequest.g.cs b/src/libs/Vercel/Generated/Vercel.Models.RunSessionCommandRequest.g.cs
index 724bc024..a1207df7 100644
--- a/src/libs/Vercel/Generated/Vercel.Models.RunSessionCommandRequest.g.cs
+++ b/src/libs/Vercel/Generated/Vercel.Models.RunSessionCommandRequest.g.cs
@@ -56,6 +56,14 @@ public sealed partial class RunSessionCommandRequest
[global::System.Text.Json.Serialization.JsonPropertyName("wait")]
public bool? Wait { get; set; }
+ ///
+ /// Maximum duration in milliseconds to wait for the command to finish. When elapsed, the process is killed with SIGKILL. Requires `wait` to be true.
+ /// Example: 30000
+ ///
+ /// 30000
+ [global::System.Text.Json.Serialization.JsonPropertyName("timeout")]
+ public int? Timeout { get; set; }
+
///
/// Additional properties that are not explicitly defined in the schema
///
@@ -90,6 +98,10 @@ public sealed partial class RunSessionCommandRequest
/// If true, returns an ND-JSON stream that emits the command status when started and again when finished. Useful for synchronously waiting for command completion.
/// Default Value: false
///
+ ///
+ /// Maximum duration in milliseconds to wait for the command to finish. When elapsed, the process is killed with SIGKILL. Requires `wait` to be true.
+ /// Example: 30000
+ ///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
#endif
@@ -99,7 +111,8 @@ public RunSessionCommandRequest(
string? cwd,
global::System.Collections.Generic.Dictionary? env,
bool? sudo,
- bool? wait)
+ bool? wait,
+ int? timeout)
{
this.Command = command ?? throw new global::System.ArgumentNullException(nameof(command));
this.Args = args;
@@ -107,6 +120,7 @@ public RunSessionCommandRequest(
this.Env = env;
this.Sudo = sudo;
this.Wait = wait;
+ this.Timeout = timeout;
}
///
diff --git a/src/libs/Vercel/Generated/Vercel.Models.UpdateMicrofrontendsResponsePermissions.g.cs b/src/libs/Vercel/Generated/Vercel.Models.UpdateMicrofrontendsResponsePermissions.g.cs
index 1a038b19..6473c75b 100644
--- a/src/libs/Vercel/Generated/Vercel.Models.UpdateMicrofrontendsResponsePermissions.g.cs
+++ b/src/libs/Vercel/Generated/Vercel.Models.UpdateMicrofrontendsResponsePermissions.g.cs
@@ -32,6 +32,12 @@ public sealed partial class UpdateMicrofrontendsResponsePermissions
[global::System.Text.Json.Serialization.JsonPropertyName("userConnection")]
public global::System.Collections.Generic.IList? UserConnection { get; set; }
+ ///
+ ///
+ ///
+ [global::System.Text.Json.Serialization.JsonPropertyName("userMfaConfiguration")]
+ public global::System.Collections.Generic.IList? UserMfaConfiguration { get; set; }
+
///
///
///
@@ -1533,6 +1539,7 @@ public sealed partial class UpdateMicrofrontendsResponsePermissions
///
///
///
+ ///
///
///
///
@@ -1789,6 +1796,7 @@ public UpdateMicrofrontendsResponsePermissions(
global::System.Collections.Generic.IList? organization,
global::System.Collections.Generic.IList? user,
global::System.Collections.Generic.IList? userConnection,
+ global::System.Collections.Generic.IList? userMfaConfiguration,
global::System.Collections.Generic.IList? userPreference,
global::System.Collections.Generic.IList? userSudo,
global::System.Collections.Generic.IList? webAuthn,
@@ -2042,6 +2050,7 @@ public UpdateMicrofrontendsResponsePermissions(
this.Organization = organization;
this.User = user;
this.UserConnection = userConnection;
+ this.UserMfaConfiguration = userMfaConfiguration;
this.UserPreference = userPreference;
this.UserSudo = userSudo;
this.WebAuthn = webAuthn;
diff --git a/src/libs/Vercel/Generated/Vercel.Models.UpdateProjectResponsePermissions.g.cs b/src/libs/Vercel/Generated/Vercel.Models.UpdateProjectResponsePermissions.g.cs
index a2f2147a..c01fe24a 100644
--- a/src/libs/Vercel/Generated/Vercel.Models.UpdateProjectResponsePermissions.g.cs
+++ b/src/libs/Vercel/Generated/Vercel.Models.UpdateProjectResponsePermissions.g.cs
@@ -32,6 +32,12 @@ public sealed partial class UpdateProjectResponsePermissions
[global::System.Text.Json.Serialization.JsonPropertyName("userConnection")]
public global::System.Collections.Generic.IList? UserConnection { get; set; }
+ ///
+ ///
+ ///
+ [global::System.Text.Json.Serialization.JsonPropertyName("userMfaConfiguration")]
+ public global::System.Collections.Generic.IList? UserMfaConfiguration { get; set; }
+
///
///
///
@@ -1533,6 +1539,7 @@ public sealed partial class UpdateProjectResponsePermissions
///
///
///
+ ///
///
///
///
@@ -1789,6 +1796,7 @@ public UpdateProjectResponsePermissions(
global::System.Collections.Generic.IList? organization,
global::System.Collections.Generic.IList? user,
global::System.Collections.Generic.IList? userConnection,
+ global::System.Collections.Generic.IList? userMfaConfiguration,
global::System.Collections.Generic.IList? userPreference,
global::System.Collections.Generic.IList? userSudo,
global::System.Collections.Generic.IList? webAuthn,
@@ -2042,6 +2050,7 @@ public UpdateProjectResponsePermissions(
this.Organization = organization;
this.User = user;
this.UserConnection = userConnection;
+ this.UserMfaConfiguration = userMfaConfiguration;
this.UserPreference = userPreference;
this.UserSudo = userSudo;
this.WebAuthn = webAuthn;
diff --git a/src/libs/Vercel/Generated/Vercel.Models.UserEventType.g.cs b/src/libs/Vercel/Generated/Vercel.Models.UserEventType.g.cs
index 4a46e926..28e7dbaf 100644
--- a/src/libs/Vercel/Generated/Vercel.Models.UserEventType.g.cs
+++ b/src/libs/Vercel/Generated/Vercel.Models.UserEventType.g.cs
@@ -1856,6 +1856,10 @@ public enum UserEventType
///
///
///
+ UserMfaSetupSkipped,
+ ///
+ ///
+ ///
UserMfaTotpVerificationStarted,
///
///
@@ -2440,6 +2444,7 @@ public static string ToValueString(this UserEventType value)
UserEventType.UserMfaConfigurationUpdated => "user-mfa-configuration-updated",
UserEventType.UserMfaRecoveryCodesRegenerated => "user-mfa-recovery-codes-regenerated",
UserEventType.UserMfaRemoved => "user-mfa-removed",
+ UserEventType.UserMfaSetupSkipped => "user-mfa-setup-skipped",
UserEventType.UserMfaTotpVerificationStarted => "user-mfa-totp-verification-started",
UserEventType.UserMfaTotpVerified => "user-mfa-totp-verified",
UserEventType.UserPrimaryEmailUpdated => "user-primary-email-updated",
@@ -2939,6 +2944,7 @@ public static string ToValueString(this UserEventType value)
"user-mfa-configuration-updated" => UserEventType.UserMfaConfigurationUpdated,
"user-mfa-recovery-codes-regenerated" => UserEventType.UserMfaRecoveryCodesRegenerated,
"user-mfa-removed" => UserEventType.UserMfaRemoved,
+ "user-mfa-setup-skipped" => UserEventType.UserMfaSetupSkipped,
"user-mfa-totp-verification-started" => UserEventType.UserMfaTotpVerificationStarted,
"user-mfa-totp-verified" => UserEventType.UserMfaTotpVerified,
"user-primary-email-updated" => UserEventType.UserPrimaryEmailUpdated,
diff --git a/src/libs/Vercel/Generated/Vercel.SandboxesClient.RunSessionCommand.g.cs b/src/libs/Vercel/Generated/Vercel.SandboxesClient.RunSessionCommand.g.cs
index ef3d8f70..57662410 100644
--- a/src/libs/Vercel/Generated/Vercel.SandboxesClient.RunSessionCommand.g.cs
+++ b/src/libs/Vercel/Generated/Vercel.SandboxesClient.RunSessionCommand.g.cs
@@ -773,6 +773,10 @@ partial void ProcessRunSessionCommandResponseContent(
/// If true, returns an ND-JSON stream that emits the command status when started and again when finished. Useful for synchronously waiting for command completion.
/// Default Value: false
///
+ ///
+ /// Maximum duration in milliseconds to wait for the command to finish. When elapsed, the process is killed with SIGKILL. Requires `wait` to be true.
+ /// Example: 30000
+ ///
/// Per-request overrides such as headers, query parameters, timeout, retries, and response buffering.
/// The token to cancel the operation with
///
@@ -786,6 +790,7 @@ partial void ProcessRunSessionCommandResponseContent(
global::System.Collections.Generic.Dictionary? env = default,
bool? sudo = default,
bool? wait = default,
+ int? timeout = default,
global::Vercel.AutoSDKRequestOptions? requestOptions = default,
global::System.Threading.CancellationToken cancellationToken = default)
{
@@ -797,6 +802,7 @@ partial void ProcessRunSessionCommandResponseContent(
Env = env,
Sudo = sudo,
Wait = wait,
+ Timeout = timeout,
};
return await RunSessionCommandAsync(
diff --git a/src/libs/Vercel/Generated/Vercel.SandboxesClient.RunSessionCommandAsStream.g.cs b/src/libs/Vercel/Generated/Vercel.SandboxesClient.RunSessionCommandAsStream.g.cs
index bf1b7f64..f0eb091d 100644
--- a/src/libs/Vercel/Generated/Vercel.SandboxesClient.RunSessionCommandAsStream.g.cs
+++ b/src/libs/Vercel/Generated/Vercel.SandboxesClient.RunSessionCommandAsStream.g.cs
@@ -445,6 +445,10 @@ partial void ProcessRunSessionCommandAsStreamResponse(
/// If true, returns an ND-JSON stream that emits the command status when started and again when finished. Useful for synchronously waiting for command completion.
/// Default Value: false
///
+ ///
+ /// Maximum duration in milliseconds to wait for the command to finish. When elapsed, the process is killed with SIGKILL. Requires `wait` to be true.
+ /// Example: 30000
+ ///
/// Per-request overrides such as headers, query parameters, timeout, retries, and response buffering.
/// The token to cancel the operation with
///
@@ -458,6 +462,7 @@ partial void ProcessRunSessionCommandAsStreamResponse(
global::System.Collections.Generic.Dictionary? env = default,
bool? sudo = default,
bool? wait = default,
+ int? timeout = default,
global::Vercel.AutoSDKRequestOptions? requestOptions = default,
[global::System.Runtime.CompilerServices.EnumeratorCancellation] global::System.Threading.CancellationToken cancellationToken = default)
{
@@ -469,6 +474,7 @@ partial void ProcessRunSessionCommandAsStreamResponse(
Env = env,
Sudo = sudo,
Wait = wait,
+ Timeout = timeout,
};
var __enumerable = RunSessionCommandAsStreamAsync(
diff --git a/src/libs/Vercel/openapi.yaml b/src/libs/Vercel/openapi.yaml
index db113029..d1c53776 100644
--- a/src/libs/Vercel/openapi.yaml
+++ b/src/libs/Vercel/openapi.yaml
@@ -62118,6 +62118,12 @@
},
"type": "array"
},
+ "userMfaConfiguration": {
+ "items": {
+ "$ref": "#/components/schemas/ACLAction"
+ },
+ "type": "array"
+ },
"userPreference": {
"items": {
"$ref": "#/components/schemas/ACLAction"
@@ -80693,6 +80699,12 @@
},
"type": "array"
},
+ "userMfaConfiguration": {
+ "items": {
+ "$ref": "#/components/schemas/ACLAction"
+ },
+ "type": "array"
+ },
"userPreference": {
"items": {
"$ref": "#/components/schemas/ACLAction"
@@ -86574,6 +86586,12 @@
},
"type": "array"
},
+ "userMfaConfiguration": {
+ "items": {
+ "$ref": "#/components/schemas/ACLAction"
+ },
+ "type": "array"
+ },
"userPreference": {
"items": {
"$ref": "#/components/schemas/ACLAction"
@@ -92690,6 +92708,12 @@
},
"type": "array"
},
+ "userMfaConfiguration": {
+ "items": {
+ "$ref": "#/components/schemas/ACLAction"
+ },
+ "type": "array"
+ },
"userPreference": {
"items": {
"$ref": "#/components/schemas/ACLAction"
@@ -98385,6 +98409,12 @@
},
"type": "array"
},
+ "userMfaConfiguration": {
+ "items": {
+ "$ref": "#/components/schemas/ACLAction"
+ },
+ "type": "array"
+ },
"userPreference": {
"items": {
"$ref": "#/components/schemas/ACLAction"
@@ -113614,6 +113644,12 @@
},
"type": "array"
},
+ "userMfaConfiguration": {
+ "items": {
+ "$ref": "#/components/schemas/ACLAction"
+ },
+ "type": "array"
+ },
"userPreference": {
"items": {
"$ref": "#/components/schemas/ACLAction"
@@ -119957,6 +119993,13 @@
"type": "boolean",
"description": "If true, returns an ND-JSON stream that emits the command status when started and again when finished. Useful for synchronously waiting for command completion.",
"default": false
+ },
+ "timeout": {
+ "type": "integer",
+ "description": "Maximum duration in milliseconds to wait for the command to finish. When elapsed, the process is killed with SIGKILL. Requires `wait` to be true.",
+ "minimum": 100,
+ "maximum": 18000000,
+ "example": 30000
}
}
}
@@ -140565,6 +140608,7 @@
"user-mfa-challenge-verified",
"user-mfa-configuration-updated",
"user-mfa-recovery-codes-regenerated",
+ "user-mfa-setup-skipped",
"user-mfa-totp-verification-started",
"user-mfa-totp-verified",
"user-primary-email-updated",
@@ -141319,6 +141363,7 @@
"user-mfa-challenge-verified",
"user-mfa-configuration-updated",
"user-mfa-recovery-codes-regenerated",
+ "user-mfa-setup-skipped",
"user-mfa-totp-verification-started",
"user-mfa-totp-verified",
"user-primary-email-updated",
@@ -141866,6 +141911,7 @@
"user-mfa-challenge-verified",
"user-mfa-configuration-updated",
"user-mfa-recovery-codes-regenerated",
+ "user-mfa-setup-skipped",
"user-mfa-totp-verification-started",
"user-mfa-totp-verified",
"user-primary-email-updated",