diff --git a/src/libs/Vercel/Generated/Vercel.ISandboxesClient.RunSessionCommand.g.cs b/src/libs/Vercel/Generated/Vercel.ISandboxesClient.RunSessionCommand.g.cs
index 13d1994a..714cdae1 100644
--- a/src/libs/Vercel/Generated/Vercel.ISandboxesClient.RunSessionCommand.g.cs
+++ b/src/libs/Vercel/Generated/Vercel.ISandboxesClient.RunSessionCommand.g.cs
@@ -95,10 +95,6 @@ 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
///
@@ -112,7 +108,6 @@ 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 e5b568c4..be3634b2 100644
--- a/src/libs/Vercel/Generated/Vercel.ISandboxesClient.RunSessionCommandAsStream.g.cs
+++ b/src/libs/Vercel/Generated/Vercel.ISandboxesClient.RunSessionCommandAsStream.g.cs
@@ -69,10 +69,6 @@ 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
///
@@ -86,7 +82,6 @@ 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.CreateProjectResponse.g.cs b/src/libs/Vercel/Generated/Vercel.Models.CreateProjectResponse.g.cs
index 473b7d0d..78b55470 100644
--- a/src/libs/Vercel/Generated/Vercel.Models.CreateProjectResponse.g.cs
+++ b/src/libs/Vercel/Generated/Vercel.Models.CreateProjectResponse.g.cs
@@ -111,12 +111,6 @@ public sealed partial class CreateProjectResponse
[global::System.Text.Json.Serialization.JsonPropertyName("dataCache")]
public global::Vercel.CreateProjectResponseDataCache? DataCache { get; set; }
- ///
- ///
- ///
- [global::System.Text.Json.Serialization.JsonPropertyName("delegatedProtection")]
- public object? DelegatedProtection { get; set; }
-
///
/// Retention policies for deployments. These are enforced at the project level, but we also maintain an instance of this at the team level as a default policy that gets applied to new projects.
///
@@ -616,7 +610,6 @@ public sealed partial class CreateProjectResponse
///
///
///
- ///
///
///
///
@@ -719,7 +712,6 @@ public CreateProjectResponse(
bool? customerSupportCodeVisibility,
global::Vercel.CreateProjectResponseCrons? crons,
global::Vercel.CreateProjectResponseDataCache? dataCache,
- object? delegatedProtection,
global::Vercel.OneOf? expiration,
string? devCommand,
string? installCommand,
@@ -806,7 +798,6 @@ public CreateProjectResponse(
this.CustomerSupportCodeVisibility = customerSupportCodeVisibility;
this.Crons = crons;
this.DataCache = dataCache;
- this.DelegatedProtection = delegatedProtection;
this.DeploymentExpiration = deploymentExpiration ?? throw new global::System.ArgumentNullException(nameof(deploymentExpiration));
this.Expiration = expiration;
this.DevCommand = devCommand;
diff --git a/src/libs/Vercel/Generated/Vercel.Models.CreateProjectResponseDelegatedProtection.Json.g.cs b/src/libs/Vercel/Generated/Vercel.Models.CreateProjectResponseDelegatedProtection.Json.g.cs
deleted file mode 100644
index f3658036..00000000
--- a/src/libs/Vercel/Generated/Vercel.Models.CreateProjectResponseDelegatedProtection.Json.g.cs
+++ /dev/null
@@ -1,92 +0,0 @@
-#nullable enable
-
-namespace Vercel
-{
- public sealed partial class CreateProjectResponseDelegatedProtection
- {
- ///
- /// Serializes the current instance to a JSON string using the provided JsonSerializerContext.
- ///
- public string ToJson(
- global::System.Text.Json.Serialization.JsonSerializerContext jsonSerializerContext)
- {
- return global::System.Text.Json.JsonSerializer.Serialize(
- this,
- this.GetType(),
- jsonSerializerContext);
- }
-
- ///
- /// Serializes the current instance to a JSON string using the provided JsonSerializerOptions.
- ///
-#if NET8_0_OR_GREATER
- [global::System.Diagnostics.CodeAnalysis.RequiresUnreferencedCode("JSON serialization and deserialization might require types that cannot be statically analyzed. Use the overload that takes a JsonTypeInfo or JsonSerializerContext, or make sure all of the required types are preserved.")]
- [global::System.Diagnostics.CodeAnalysis.RequiresDynamicCode("JSON serialization and deserialization might require types that cannot be statically analyzed and might need runtime code generation. Use System.Text.Json source generation for native AOT applications.")]
-#endif
- public string ToJson(
- global::System.Text.Json.JsonSerializerOptions? jsonSerializerOptions = null)
- {
- return global::System.Text.Json.JsonSerializer.Serialize(
- this,
- jsonSerializerOptions);
- }
-
- ///
- /// Deserializes a JSON string using the provided JsonSerializerContext.
- ///
- public static global::Vercel.CreateProjectResponseDelegatedProtection? FromJson(
- string json,
- global::System.Text.Json.Serialization.JsonSerializerContext jsonSerializerContext)
- {
- return global::System.Text.Json.JsonSerializer.Deserialize(
- json,
- typeof(global::Vercel.CreateProjectResponseDelegatedProtection),
- jsonSerializerContext) as global::Vercel.CreateProjectResponseDelegatedProtection;
- }
-
- ///
- /// Deserializes a JSON string using the provided JsonSerializerOptions.
- ///
-#if NET8_0_OR_GREATER
- [global::System.Diagnostics.CodeAnalysis.RequiresUnreferencedCode("JSON serialization and deserialization might require types that cannot be statically analyzed. Use the overload that takes a JsonTypeInfo or JsonSerializerContext, or make sure all of the required types are preserved.")]
- [global::System.Diagnostics.CodeAnalysis.RequiresDynamicCode("JSON serialization and deserialization might require types that cannot be statically analyzed and might need runtime code generation. Use System.Text.Json source generation for native AOT applications.")]
-#endif
- public static global::Vercel.CreateProjectResponseDelegatedProtection? FromJson(
- string json,
- global::System.Text.Json.JsonSerializerOptions? jsonSerializerOptions = null)
- {
- return global::System.Text.Json.JsonSerializer.Deserialize(
- json,
- jsonSerializerOptions);
- }
-
- ///
- /// Deserializes a JSON stream using the provided JsonSerializerContext.
- ///
- public static async global::System.Threading.Tasks.ValueTask FromJsonStreamAsync(
- global::System.IO.Stream jsonStream,
- global::System.Text.Json.Serialization.JsonSerializerContext jsonSerializerContext)
- {
- return (await global::System.Text.Json.JsonSerializer.DeserializeAsync(
- jsonStream,
- typeof(global::Vercel.CreateProjectResponseDelegatedProtection),
- jsonSerializerContext).ConfigureAwait(false)) as global::Vercel.CreateProjectResponseDelegatedProtection;
- }
-
- ///
- /// Deserializes a JSON stream using the provided JsonSerializerOptions.
- ///
-#if NET8_0_OR_GREATER
- [global::System.Diagnostics.CodeAnalysis.RequiresUnreferencedCode("JSON serialization and deserialization might require types that cannot be statically analyzed. Use the overload that takes a JsonTypeInfo or JsonSerializerContext, or make sure all of the required types are preserved.")]
- [global::System.Diagnostics.CodeAnalysis.RequiresDynamicCode("JSON serialization and deserialization might require types that cannot be statically analyzed and might need runtime code generation. Use System.Text.Json source generation for native AOT applications.")]
-#endif
- public static global::System.Threading.Tasks.ValueTask FromJsonStreamAsync(
- global::System.IO.Stream jsonStream,
- global::System.Text.Json.JsonSerializerOptions? jsonSerializerOptions = null)
- {
- return global::System.Text.Json.JsonSerializer.DeserializeAsync(
- jsonStream,
- jsonSerializerOptions);
- }
- }
-}
diff --git a/src/libs/Vercel/Generated/Vercel.Models.CreateProjectResponseDelegatedProtection.g.cs b/src/libs/Vercel/Generated/Vercel.Models.CreateProjectResponseDelegatedProtection.g.cs
deleted file mode 100644
index 270688ad..00000000
--- a/src/libs/Vercel/Generated/Vercel.Models.CreateProjectResponseDelegatedProtection.g.cs
+++ /dev/null
@@ -1,19 +0,0 @@
-
-#nullable enable
-
-namespace Vercel
-{
- ///
- ///
- ///
- public sealed partial class CreateProjectResponseDelegatedProtection
- {
-
- ///
- /// Additional properties that are not explicitly defined in the schema
- ///
- [global::System.Text.Json.Serialization.JsonExtensionData]
- public global::System.Collections.Generic.IDictionary AdditionalProperties { get; set; } = new global::System.Collections.Generic.Dictionary();
-
- }
-}
\ No newline at end of file
diff --git a/src/libs/Vercel/Generated/Vercel.Models.CreateProjectResponsePermissions.g.cs b/src/libs/Vercel/Generated/Vercel.Models.CreateProjectResponsePermissions.g.cs
index 3044ac12..321eec57 100644
--- a/src/libs/Vercel/Generated/Vercel.Models.CreateProjectResponsePermissions.g.cs
+++ b/src/libs/Vercel/Generated/Vercel.Models.CreateProjectResponsePermissions.g.cs
@@ -302,12 +302,6 @@ public sealed partial class CreateProjectResponsePermissions
[global::System.Text.Json.Serialization.JsonPropertyName("defaultDeploymentProtection")]
public global::System.Collections.Generic.IList? DefaultDeploymentProtection { get; set; }
- ///
- ///
- ///
- [global::System.Text.Json.Serialization.JsonPropertyName("delegatedProtectionClient")]
- public global::System.Collections.Generic.IList? DelegatedProtectionClient { get; set; }
-
///
///
///
@@ -1274,12 +1268,6 @@ public sealed partial class CreateProjectResponsePermissions
[global::System.Text.Json.Serialization.JsonPropertyName("projectCheckRun")]
public global::System.Collections.Generic.IList? ProjectCheckRun { get; set; }
- ///
- ///
- ///
- [global::System.Text.Json.Serialization.JsonPropertyName("projectDelegatedProtection")]
- public global::System.Collections.Generic.IList? ProjectDelegatedProtection { get; set; }
-
///
///
///
@@ -1584,7 +1572,6 @@ public sealed partial class CreateProjectResponsePermissions
///
///
///
- ///
///
///
///
@@ -1746,7 +1733,6 @@ public sealed partial class CreateProjectResponsePermissions
///
///
///
- ///
///
///
///
@@ -1841,7 +1827,6 @@ public CreateProjectResponsePermissions(
global::System.Collections.Generic.IList? buildMachineDefault,
global::System.Collections.Generic.IList? dataCacheBillingSettings,
global::System.Collections.Generic.IList? defaultDeploymentProtection,
- global::System.Collections.Generic.IList? delegatedProtectionClient,
global::System.Collections.Generic.IList? deploymentPolicy,
global::System.Collections.Generic.IList? domain,
global::System.Collections.Generic.IList? domainAcceptDelegation,
@@ -2003,7 +1988,6 @@ public CreateProjectResponsePermissions(
global::System.Collections.Generic.IList? projectAnalyticsUsage,
global::System.Collections.Generic.IList? projectCheck,
global::System.Collections.Generic.IList? projectCheckRun,
- global::System.Collections.Generic.IList? projectDelegatedProtection,
global::System.Collections.Generic.IList? projectDeploymentExpiration,
global::System.Collections.Generic.IList? projectDeploymentHook,
global::System.Collections.Generic.IList? projectDeploymentProtectionStrict,
@@ -2095,7 +2079,6 @@ public CreateProjectResponsePermissions(
this.BuildMachineDefault = buildMachineDefault;
this.DataCacheBillingSettings = dataCacheBillingSettings;
this.DefaultDeploymentProtection = defaultDeploymentProtection;
- this.DelegatedProtectionClient = delegatedProtectionClient;
this.DeploymentPolicy = deploymentPolicy;
this.Domain = domain;
this.DomainAcceptDelegation = domainAcceptDelegation;
@@ -2257,7 +2240,6 @@ public CreateProjectResponsePermissions(
this.ProjectAnalyticsUsage = projectAnalyticsUsage;
this.ProjectCheck = projectCheck;
this.ProjectCheckRun = projectCheckRun;
- this.ProjectDelegatedProtection = projectDelegatedProtection;
this.ProjectDeploymentExpiration = projectDeploymentExpiration;
this.ProjectDeploymentHook = projectDeploymentHook;
this.ProjectDeploymentProtectionStrict = projectDeploymentProtectionStrict;
diff --git a/src/libs/Vercel/Generated/Vercel.Models.GetMicrofrontendsInGroupResponseProject.g.cs b/src/libs/Vercel/Generated/Vercel.Models.GetMicrofrontendsInGroupResponseProject.g.cs
index faeeb494..4951a1dd 100644
--- a/src/libs/Vercel/Generated/Vercel.Models.GetMicrofrontendsInGroupResponseProject.g.cs
+++ b/src/libs/Vercel/Generated/Vercel.Models.GetMicrofrontendsInGroupResponseProject.g.cs
@@ -111,12 +111,6 @@ public sealed partial class GetMicrofrontendsInGroupResponseProject
[global::System.Text.Json.Serialization.JsonPropertyName("dataCache")]
public global::Vercel.GetMicrofrontendsInGroupResponseProjectDataCache? DataCache { get; set; }
- ///
- ///
- ///
- [global::System.Text.Json.Serialization.JsonPropertyName("delegatedProtection")]
- public object? DelegatedProtection { get; set; }
-
///
/// Retention policies for deployments. These are enforced at the project level, but we also maintain an instance of this at the team level as a default policy that gets applied to new projects.
///
@@ -616,7 +610,6 @@ public sealed partial class GetMicrofrontendsInGroupResponseProject
///
///
///
- ///
///
///
///
@@ -719,7 +712,6 @@ public GetMicrofrontendsInGroupResponseProject(
bool? customerSupportCodeVisibility,
global::Vercel.GetMicrofrontendsInGroupResponseProjectCrons? crons,
global::Vercel.GetMicrofrontendsInGroupResponseProjectDataCache? dataCache,
- object? delegatedProtection,
global::Vercel.OneOf? expiration,
string? devCommand,
string? installCommand,
@@ -806,7 +798,6 @@ public GetMicrofrontendsInGroupResponseProject(
this.CustomerSupportCodeVisibility = customerSupportCodeVisibility;
this.Crons = crons;
this.DataCache = dataCache;
- this.DelegatedProtection = delegatedProtection;
this.DeploymentExpiration = deploymentExpiration ?? throw new global::System.ArgumentNullException(nameof(deploymentExpiration));
this.Expiration = expiration;
this.DevCommand = devCommand;
diff --git a/src/libs/Vercel/Generated/Vercel.Models.GetMicrofrontendsInGroupResponseProjectDelegatedProtection.Json.g.cs b/src/libs/Vercel/Generated/Vercel.Models.GetMicrofrontendsInGroupResponseProjectDelegatedProtection.Json.g.cs
deleted file mode 100644
index 40602eb0..00000000
--- a/src/libs/Vercel/Generated/Vercel.Models.GetMicrofrontendsInGroupResponseProjectDelegatedProtection.Json.g.cs
+++ /dev/null
@@ -1,92 +0,0 @@
-#nullable enable
-
-namespace Vercel
-{
- public sealed partial class GetMicrofrontendsInGroupResponseProjectDelegatedProtection
- {
- ///
- /// Serializes the current instance to a JSON string using the provided JsonSerializerContext.
- ///
- public string ToJson(
- global::System.Text.Json.Serialization.JsonSerializerContext jsonSerializerContext)
- {
- return global::System.Text.Json.JsonSerializer.Serialize(
- this,
- this.GetType(),
- jsonSerializerContext);
- }
-
- ///
- /// Serializes the current instance to a JSON string using the provided JsonSerializerOptions.
- ///
-#if NET8_0_OR_GREATER
- [global::System.Diagnostics.CodeAnalysis.RequiresUnreferencedCode("JSON serialization and deserialization might require types that cannot be statically analyzed. Use the overload that takes a JsonTypeInfo or JsonSerializerContext, or make sure all of the required types are preserved.")]
- [global::System.Diagnostics.CodeAnalysis.RequiresDynamicCode("JSON serialization and deserialization might require types that cannot be statically analyzed and might need runtime code generation. Use System.Text.Json source generation for native AOT applications.")]
-#endif
- public string ToJson(
- global::System.Text.Json.JsonSerializerOptions? jsonSerializerOptions = null)
- {
- return global::System.Text.Json.JsonSerializer.Serialize(
- this,
- jsonSerializerOptions);
- }
-
- ///
- /// Deserializes a JSON string using the provided JsonSerializerContext.
- ///
- public static global::Vercel.GetMicrofrontendsInGroupResponseProjectDelegatedProtection? FromJson(
- string json,
- global::System.Text.Json.Serialization.JsonSerializerContext jsonSerializerContext)
- {
- return global::System.Text.Json.JsonSerializer.Deserialize(
- json,
- typeof(global::Vercel.GetMicrofrontendsInGroupResponseProjectDelegatedProtection),
- jsonSerializerContext) as global::Vercel.GetMicrofrontendsInGroupResponseProjectDelegatedProtection;
- }
-
- ///
- /// Deserializes a JSON string using the provided JsonSerializerOptions.
- ///
-#if NET8_0_OR_GREATER
- [global::System.Diagnostics.CodeAnalysis.RequiresUnreferencedCode("JSON serialization and deserialization might require types that cannot be statically analyzed. Use the overload that takes a JsonTypeInfo or JsonSerializerContext, or make sure all of the required types are preserved.")]
- [global::System.Diagnostics.CodeAnalysis.RequiresDynamicCode("JSON serialization and deserialization might require types that cannot be statically analyzed and might need runtime code generation. Use System.Text.Json source generation for native AOT applications.")]
-#endif
- public static global::Vercel.GetMicrofrontendsInGroupResponseProjectDelegatedProtection? FromJson(
- string json,
- global::System.Text.Json.JsonSerializerOptions? jsonSerializerOptions = null)
- {
- return global::System.Text.Json.JsonSerializer.Deserialize(
- json,
- jsonSerializerOptions);
- }
-
- ///
- /// Deserializes a JSON stream using the provided JsonSerializerContext.
- ///
- public static async global::System.Threading.Tasks.ValueTask FromJsonStreamAsync(
- global::System.IO.Stream jsonStream,
- global::System.Text.Json.Serialization.JsonSerializerContext jsonSerializerContext)
- {
- return (await global::System.Text.Json.JsonSerializer.DeserializeAsync(
- jsonStream,
- typeof(global::Vercel.GetMicrofrontendsInGroupResponseProjectDelegatedProtection),
- jsonSerializerContext).ConfigureAwait(false)) as global::Vercel.GetMicrofrontendsInGroupResponseProjectDelegatedProtection;
- }
-
- ///
- /// Deserializes a JSON stream using the provided JsonSerializerOptions.
- ///
-#if NET8_0_OR_GREATER
- [global::System.Diagnostics.CodeAnalysis.RequiresUnreferencedCode("JSON serialization and deserialization might require types that cannot be statically analyzed. Use the overload that takes a JsonTypeInfo or JsonSerializerContext, or make sure all of the required types are preserved.")]
- [global::System.Diagnostics.CodeAnalysis.RequiresDynamicCode("JSON serialization and deserialization might require types that cannot be statically analyzed and might need runtime code generation. Use System.Text.Json source generation for native AOT applications.")]
-#endif
- public static global::System.Threading.Tasks.ValueTask FromJsonStreamAsync(
- global::System.IO.Stream jsonStream,
- global::System.Text.Json.JsonSerializerOptions? jsonSerializerOptions = null)
- {
- return global::System.Text.Json.JsonSerializer.DeserializeAsync(
- jsonStream,
- jsonSerializerOptions);
- }
- }
-}
diff --git a/src/libs/Vercel/Generated/Vercel.Models.GetMicrofrontendsInGroupResponseProjectDelegatedProtection.g.cs b/src/libs/Vercel/Generated/Vercel.Models.GetMicrofrontendsInGroupResponseProjectDelegatedProtection.g.cs
deleted file mode 100644
index 3b1b8891..00000000
--- a/src/libs/Vercel/Generated/Vercel.Models.GetMicrofrontendsInGroupResponseProjectDelegatedProtection.g.cs
+++ /dev/null
@@ -1,19 +0,0 @@
-
-#nullable enable
-
-namespace Vercel
-{
- ///
- ///
- ///
- public sealed partial class GetMicrofrontendsInGroupResponseProjectDelegatedProtection
- {
-
- ///
- /// Additional properties that are not explicitly defined in the schema
- ///
- [global::System.Text.Json.Serialization.JsonExtensionData]
- public global::System.Collections.Generic.IDictionary AdditionalProperties { get; set; } = new global::System.Collections.Generic.Dictionary();
-
- }
-}
\ No newline at end of file
diff --git a/src/libs/Vercel/Generated/Vercel.Models.GetMicrofrontendsInGroupResponseProjectLinkVariant2.g.cs b/src/libs/Vercel/Generated/Vercel.Models.GetMicrofrontendsInGroupResponseProjectLinkVariant2.g.cs
index 1adb6c4b..8c4c6480 100644
--- a/src/libs/Vercel/Generated/Vercel.Models.GetMicrofrontendsInGroupResponseProjectLinkVariant2.g.cs
+++ b/src/libs/Vercel/Generated/Vercel.Models.GetMicrofrontendsInGroupResponseProjectLinkVariant2.g.cs
@@ -21,12 +21,6 @@ public sealed partial class GetMicrofrontendsInGroupResponseProjectLinkVariant2
[global::System.Text.Json.Serialization.JsonPropertyName("createdAt")]
public double? CreatedAt { get; set; }
- ///
- ///
- ///
- [global::System.Text.Json.Serialization.JsonPropertyName("updatedAt")]
- public double? UpdatedAt { get; set; }
-
///
///
///
@@ -66,6 +60,12 @@ public sealed partial class GetMicrofrontendsInGroupResponseProjectLinkVariant2
[global::System.Text.Json.Serialization.JsonRequired]
public required string GitCredentialId { get; set; }
+ ///
+ ///
+ ///
+ [global::System.Text.Json.Serialization.JsonPropertyName("updatedAt")]
+ public double? UpdatedAt { get; set; }
+
///
///
///
@@ -94,12 +94,12 @@ public sealed partial class GetMicrofrontendsInGroupResponseProjectLinkVariant2
///
///
///
- ///
///
/// A new field, should be included in all new project links, is being added just in time when a deployment is created. This is needed for Protected Git scopes.
///
///
///
+ ///
///
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
@@ -111,21 +111,21 @@ public GetMicrofrontendsInGroupResponseProjectLinkVariant2(
string productionBranch,
global::Vercel.GetMicrofrontendsInGroupResponseProjectLinkVariant2Type type,
double? createdAt,
- double? updatedAt,
double? repoOwnerId,
string? repo,
double? repoId,
+ double? updatedAt,
bool? sourceless)
{
this.Type = type;
this.CreatedAt = createdAt;
- this.UpdatedAt = updatedAt;
this.Org = org ?? throw new global::System.ArgumentNullException(nameof(org));
this.RepoOwnerId = repoOwnerId;
this.Repo = repo;
this.RepoId = repoId;
this.DeployHooks = deployHooks ?? throw new global::System.ArgumentNullException(nameof(deployHooks));
this.GitCredentialId = gitCredentialId ?? throw new global::System.ArgumentNullException(nameof(gitCredentialId));
+ this.UpdatedAt = updatedAt;
this.Sourceless = sourceless;
this.ProductionBranch = productionBranch ?? throw new global::System.ArgumentNullException(nameof(productionBranch));
}
diff --git a/src/libs/Vercel/Generated/Vercel.Models.GetMicrofrontendsInGroupResponseProjectPermissions.g.cs b/src/libs/Vercel/Generated/Vercel.Models.GetMicrofrontendsInGroupResponseProjectPermissions.g.cs
index 459221fa..e31f3121 100644
--- a/src/libs/Vercel/Generated/Vercel.Models.GetMicrofrontendsInGroupResponseProjectPermissions.g.cs
+++ b/src/libs/Vercel/Generated/Vercel.Models.GetMicrofrontendsInGroupResponseProjectPermissions.g.cs
@@ -302,12 +302,6 @@ public sealed partial class GetMicrofrontendsInGroupResponseProjectPermissions
[global::System.Text.Json.Serialization.JsonPropertyName("defaultDeploymentProtection")]
public global::System.Collections.Generic.IList? DefaultDeploymentProtection { get; set; }
- ///
- ///
- ///
- [global::System.Text.Json.Serialization.JsonPropertyName("delegatedProtectionClient")]
- public global::System.Collections.Generic.IList? DelegatedProtectionClient { get; set; }
-
///
///
///
@@ -1274,12 +1268,6 @@ public sealed partial class GetMicrofrontendsInGroupResponseProjectPermissions
[global::System.Text.Json.Serialization.JsonPropertyName("projectCheckRun")]
public global::System.Collections.Generic.IList? ProjectCheckRun { get; set; }
- ///
- ///
- ///
- [global::System.Text.Json.Serialization.JsonPropertyName("projectDelegatedProtection")]
- public global::System.Collections.Generic.IList? ProjectDelegatedProtection { get; set; }
-
///
///
///
@@ -1584,7 +1572,6 @@ public sealed partial class GetMicrofrontendsInGroupResponseProjectPermissions
///
///
///
- ///
///
///
///
@@ -1746,7 +1733,6 @@ public sealed partial class GetMicrofrontendsInGroupResponseProjectPermissions
///
///
///
- ///
///
///
///
@@ -1841,7 +1827,6 @@ public GetMicrofrontendsInGroupResponseProjectPermissions(
global::System.Collections.Generic.IList? buildMachineDefault,
global::System.Collections.Generic.IList? dataCacheBillingSettings,
global::System.Collections.Generic.IList? defaultDeploymentProtection,
- global::System.Collections.Generic.IList? delegatedProtectionClient,
global::System.Collections.Generic.IList? deploymentPolicy,
global::System.Collections.Generic.IList? domain,
global::System.Collections.Generic.IList? domainAcceptDelegation,
@@ -2003,7 +1988,6 @@ public GetMicrofrontendsInGroupResponseProjectPermissions(
global::System.Collections.Generic.IList? projectAnalyticsUsage,
global::System.Collections.Generic.IList? projectCheck,
global::System.Collections.Generic.IList? projectCheckRun,
- global::System.Collections.Generic.IList? projectDelegatedProtection,
global::System.Collections.Generic.IList? projectDeploymentExpiration,
global::System.Collections.Generic.IList? projectDeploymentHook,
global::System.Collections.Generic.IList? projectDeploymentProtectionStrict,
@@ -2095,7 +2079,6 @@ public GetMicrofrontendsInGroupResponseProjectPermissions(
this.BuildMachineDefault = buildMachineDefault;
this.DataCacheBillingSettings = dataCacheBillingSettings;
this.DefaultDeploymentProtection = defaultDeploymentProtection;
- this.DelegatedProtectionClient = delegatedProtectionClient;
this.DeploymentPolicy = deploymentPolicy;
this.Domain = domain;
this.DomainAcceptDelegation = domainAcceptDelegation;
@@ -2257,7 +2240,6 @@ public GetMicrofrontendsInGroupResponseProjectPermissions(
this.ProjectAnalyticsUsage = projectAnalyticsUsage;
this.ProjectCheck = projectCheck;
this.ProjectCheckRun = projectCheckRun;
- this.ProjectDelegatedProtection = projectDelegatedProtection;
this.ProjectDeploymentExpiration = projectDeploymentExpiration;
this.ProjectDeploymentHook = projectDeploymentHook;
this.ProjectDeploymentProtectionStrict = projectDeploymentProtectionStrict;
diff --git a/src/libs/Vercel/Generated/Vercel.Models.GetProjectResponse.g.cs b/src/libs/Vercel/Generated/Vercel.Models.GetProjectResponse.g.cs
index f1481aa1..038b44cd 100644
--- a/src/libs/Vercel/Generated/Vercel.Models.GetProjectResponse.g.cs
+++ b/src/libs/Vercel/Generated/Vercel.Models.GetProjectResponse.g.cs
@@ -117,12 +117,6 @@ public sealed partial class GetProjectResponse
[global::System.Text.Json.Serialization.JsonPropertyName("dataCache")]
public global::Vercel.GetProjectResponseDataCache? DataCache { get; set; }
- ///
- ///
- ///
- [global::System.Text.Json.Serialization.JsonPropertyName("delegatedProtection")]
- public object? DelegatedProtection { get; set; }
-
///
/// Retention policies for deployments. These are enforced at the project level, but we also maintain an instance of this at the team level as a default policy that gets applied to new projects.
///
@@ -623,7 +617,6 @@ public sealed partial class GetProjectResponse
///
///
///
- ///
///
///
///
@@ -727,7 +720,6 @@ public GetProjectResponse(
bool? customerSupportCodeVisibility,
global::Vercel.GetProjectResponseCrons? crons,
global::Vercel.GetProjectResponseDataCache? dataCache,
- object? delegatedProtection,
global::Vercel.OneOf? expiration,
string? devCommand,
string? installCommand,
@@ -815,7 +807,6 @@ public GetProjectResponse(
this.CustomerSupportCodeVisibility = customerSupportCodeVisibility;
this.Crons = crons;
this.DataCache = dataCache;
- this.DelegatedProtection = delegatedProtection;
this.DeploymentExpiration = deploymentExpiration ?? throw new global::System.ArgumentNullException(nameof(deploymentExpiration));
this.Expiration = expiration;
this.DevCommand = devCommand;
diff --git a/src/libs/Vercel/Generated/Vercel.Models.GetProjectResponseDelegatedProtection.Json.g.cs b/src/libs/Vercel/Generated/Vercel.Models.GetProjectResponseDelegatedProtection.Json.g.cs
deleted file mode 100644
index c483795d..00000000
--- a/src/libs/Vercel/Generated/Vercel.Models.GetProjectResponseDelegatedProtection.Json.g.cs
+++ /dev/null
@@ -1,92 +0,0 @@
-#nullable enable
-
-namespace Vercel
-{
- public sealed partial class GetProjectResponseDelegatedProtection
- {
- ///
- /// Serializes the current instance to a JSON string using the provided JsonSerializerContext.
- ///
- public string ToJson(
- global::System.Text.Json.Serialization.JsonSerializerContext jsonSerializerContext)
- {
- return global::System.Text.Json.JsonSerializer.Serialize(
- this,
- this.GetType(),
- jsonSerializerContext);
- }
-
- ///
- /// Serializes the current instance to a JSON string using the provided JsonSerializerOptions.
- ///
-#if NET8_0_OR_GREATER
- [global::System.Diagnostics.CodeAnalysis.RequiresUnreferencedCode("JSON serialization and deserialization might require types that cannot be statically analyzed. Use the overload that takes a JsonTypeInfo or JsonSerializerContext, or make sure all of the required types are preserved.")]
- [global::System.Diagnostics.CodeAnalysis.RequiresDynamicCode("JSON serialization and deserialization might require types that cannot be statically analyzed and might need runtime code generation. Use System.Text.Json source generation for native AOT applications.")]
-#endif
- public string ToJson(
- global::System.Text.Json.JsonSerializerOptions? jsonSerializerOptions = null)
- {
- return global::System.Text.Json.JsonSerializer.Serialize(
- this,
- jsonSerializerOptions);
- }
-
- ///
- /// Deserializes a JSON string using the provided JsonSerializerContext.
- ///
- public static global::Vercel.GetProjectResponseDelegatedProtection? FromJson(
- string json,
- global::System.Text.Json.Serialization.JsonSerializerContext jsonSerializerContext)
- {
- return global::System.Text.Json.JsonSerializer.Deserialize(
- json,
- typeof(global::Vercel.GetProjectResponseDelegatedProtection),
- jsonSerializerContext) as global::Vercel.GetProjectResponseDelegatedProtection;
- }
-
- ///
- /// Deserializes a JSON string using the provided JsonSerializerOptions.
- ///
-#if NET8_0_OR_GREATER
- [global::System.Diagnostics.CodeAnalysis.RequiresUnreferencedCode("JSON serialization and deserialization might require types that cannot be statically analyzed. Use the overload that takes a JsonTypeInfo or JsonSerializerContext, or make sure all of the required types are preserved.")]
- [global::System.Diagnostics.CodeAnalysis.RequiresDynamicCode("JSON serialization and deserialization might require types that cannot be statically analyzed and might need runtime code generation. Use System.Text.Json source generation for native AOT applications.")]
-#endif
- public static global::Vercel.GetProjectResponseDelegatedProtection? FromJson(
- string json,
- global::System.Text.Json.JsonSerializerOptions? jsonSerializerOptions = null)
- {
- return global::System.Text.Json.JsonSerializer.Deserialize(
- json,
- jsonSerializerOptions);
- }
-
- ///
- /// Deserializes a JSON stream using the provided JsonSerializerContext.
- ///
- public static async global::System.Threading.Tasks.ValueTask FromJsonStreamAsync(
- global::System.IO.Stream jsonStream,
- global::System.Text.Json.Serialization.JsonSerializerContext jsonSerializerContext)
- {
- return (await global::System.Text.Json.JsonSerializer.DeserializeAsync(
- jsonStream,
- typeof(global::Vercel.GetProjectResponseDelegatedProtection),
- jsonSerializerContext).ConfigureAwait(false)) as global::Vercel.GetProjectResponseDelegatedProtection;
- }
-
- ///
- /// Deserializes a JSON stream using the provided JsonSerializerOptions.
- ///
-#if NET8_0_OR_GREATER
- [global::System.Diagnostics.CodeAnalysis.RequiresUnreferencedCode("JSON serialization and deserialization might require types that cannot be statically analyzed. Use the overload that takes a JsonTypeInfo or JsonSerializerContext, or make sure all of the required types are preserved.")]
- [global::System.Diagnostics.CodeAnalysis.RequiresDynamicCode("JSON serialization and deserialization might require types that cannot be statically analyzed and might need runtime code generation. Use System.Text.Json source generation for native AOT applications.")]
-#endif
- public static global::System.Threading.Tasks.ValueTask FromJsonStreamAsync(
- global::System.IO.Stream jsonStream,
- global::System.Text.Json.JsonSerializerOptions? jsonSerializerOptions = null)
- {
- return global::System.Text.Json.JsonSerializer.DeserializeAsync(
- jsonStream,
- jsonSerializerOptions);
- }
- }
-}
diff --git a/src/libs/Vercel/Generated/Vercel.Models.GetProjectResponseDelegatedProtection.g.cs b/src/libs/Vercel/Generated/Vercel.Models.GetProjectResponseDelegatedProtection.g.cs
deleted file mode 100644
index 10aef2e8..00000000
--- a/src/libs/Vercel/Generated/Vercel.Models.GetProjectResponseDelegatedProtection.g.cs
+++ /dev/null
@@ -1,19 +0,0 @@
-
-#nullable enable
-
-namespace Vercel
-{
- ///
- ///
- ///
- public sealed partial class GetProjectResponseDelegatedProtection
- {
-
- ///
- /// Additional properties that are not explicitly defined in the schema
- ///
- [global::System.Text.Json.Serialization.JsonExtensionData]
- public global::System.Collections.Generic.IDictionary AdditionalProperties { get; set; } = new global::System.Collections.Generic.Dictionary();
-
- }
-}
\ No newline at end of file
diff --git a/src/libs/Vercel/Generated/Vercel.Models.GetProjectResponsePermissions.g.cs b/src/libs/Vercel/Generated/Vercel.Models.GetProjectResponsePermissions.g.cs
index 88f5a8cc..77263c8c 100644
--- a/src/libs/Vercel/Generated/Vercel.Models.GetProjectResponsePermissions.g.cs
+++ b/src/libs/Vercel/Generated/Vercel.Models.GetProjectResponsePermissions.g.cs
@@ -302,12 +302,6 @@ public sealed partial class GetProjectResponsePermissions
[global::System.Text.Json.Serialization.JsonPropertyName("defaultDeploymentProtection")]
public global::System.Collections.Generic.IList? DefaultDeploymentProtection { get; set; }
- ///
- ///
- ///
- [global::System.Text.Json.Serialization.JsonPropertyName("delegatedProtectionClient")]
- public global::System.Collections.Generic.IList? DelegatedProtectionClient { get; set; }
-
///
///
///
@@ -1274,12 +1268,6 @@ public sealed partial class GetProjectResponsePermissions
[global::System.Text.Json.Serialization.JsonPropertyName("projectCheckRun")]
public global::System.Collections.Generic.IList? ProjectCheckRun { get; set; }
- ///
- ///
- ///
- [global::System.Text.Json.Serialization.JsonPropertyName("projectDelegatedProtection")]
- public global::System.Collections.Generic.IList? ProjectDelegatedProtection { get; set; }
-
///
///
///
@@ -1584,7 +1572,6 @@ public sealed partial class GetProjectResponsePermissions
///
///
///
- ///
///
///
///
@@ -1746,7 +1733,6 @@ public sealed partial class GetProjectResponsePermissions
///
///
///
- ///
///
///
///
@@ -1841,7 +1827,6 @@ public GetProjectResponsePermissions(
global::System.Collections.Generic.IList? buildMachineDefault,
global::System.Collections.Generic.IList? dataCacheBillingSettings,
global::System.Collections.Generic.IList? defaultDeploymentProtection,
- global::System.Collections.Generic.IList? delegatedProtectionClient,
global::System.Collections.Generic.IList? deploymentPolicy,
global::System.Collections.Generic.IList? domain,
global::System.Collections.Generic.IList? domainAcceptDelegation,
@@ -2003,7 +1988,6 @@ public GetProjectResponsePermissions(
global::System.Collections.Generic.IList? projectAnalyticsUsage,
global::System.Collections.Generic.IList? projectCheck,
global::System.Collections.Generic.IList? projectCheckRun,
- global::System.Collections.Generic.IList? projectDelegatedProtection,
global::System.Collections.Generic.IList? projectDeploymentExpiration,
global::System.Collections.Generic.IList? projectDeploymentHook,
global::System.Collections.Generic.IList? projectDeploymentProtectionStrict,
@@ -2095,7 +2079,6 @@ public GetProjectResponsePermissions(
this.BuildMachineDefault = buildMachineDefault;
this.DataCacheBillingSettings = dataCacheBillingSettings;
this.DefaultDeploymentProtection = defaultDeploymentProtection;
- this.DelegatedProtectionClient = delegatedProtectionClient;
this.DeploymentPolicy = deploymentPolicy;
this.Domain = domain;
this.DomainAcceptDelegation = domainAcceptDelegation;
@@ -2257,7 +2240,6 @@ public GetProjectResponsePermissions(
this.ProjectAnalyticsUsage = projectAnalyticsUsage;
this.ProjectCheck = projectCheck;
this.ProjectCheckRun = projectCheckRun;
- this.ProjectDelegatedProtection = projectDelegatedProtection;
this.ProjectDeploymentExpiration = projectDeploymentExpiration;
this.ProjectDeploymentHook = projectDeploymentHook;
this.ProjectDeploymentProtectionStrict = projectDeploymentProtectionStrict;
diff --git a/src/libs/Vercel/Generated/Vercel.Models.GetProjectsResponseVariant3Project.g.cs b/src/libs/Vercel/Generated/Vercel.Models.GetProjectsResponseVariant3Project.g.cs
index 2e17d494..786bcd95 100644
--- a/src/libs/Vercel/Generated/Vercel.Models.GetProjectsResponseVariant3Project.g.cs
+++ b/src/libs/Vercel/Generated/Vercel.Models.GetProjectsResponseVariant3Project.g.cs
@@ -111,12 +111,6 @@ public sealed partial class GetProjectsResponseVariant3Project
[global::System.Text.Json.Serialization.JsonPropertyName("dataCache")]
public global::Vercel.GetProjectsResponseVariant3ProjectDataCache? DataCache { get; set; }
- ///
- ///
- ///
- [global::System.Text.Json.Serialization.JsonPropertyName("delegatedProtection")]
- public object? DelegatedProtection { get; set; }
-
///
/// Retention policies for deployments. These are enforced at the project level, but we also maintain an instance of this at the team level as a default policy that gets applied to new projects.
///
@@ -616,7 +610,6 @@ public sealed partial class GetProjectsResponseVariant3Project
///
///
///
- ///
///
///
///
@@ -719,7 +712,6 @@ public GetProjectsResponseVariant3Project(
bool? customerSupportCodeVisibility,
global::Vercel.GetProjectsResponseVariant3ProjectCrons? crons,
global::Vercel.GetProjectsResponseVariant3ProjectDataCache? dataCache,
- object? delegatedProtection,
global::Vercel.OneOf? expiration,
string? devCommand,
string? installCommand,
@@ -806,7 +798,6 @@ public GetProjectsResponseVariant3Project(
this.CustomerSupportCodeVisibility = customerSupportCodeVisibility;
this.Crons = crons;
this.DataCache = dataCache;
- this.DelegatedProtection = delegatedProtection;
this.DeploymentExpiration = deploymentExpiration ?? throw new global::System.ArgumentNullException(nameof(deploymentExpiration));
this.Expiration = expiration;
this.DevCommand = devCommand;
diff --git a/src/libs/Vercel/Generated/Vercel.Models.GetProjectsResponseVariant3ProjectDelegatedProtection.Json.g.cs b/src/libs/Vercel/Generated/Vercel.Models.GetProjectsResponseVariant3ProjectDelegatedProtection.Json.g.cs
deleted file mode 100644
index 38bfb3e4..00000000
--- a/src/libs/Vercel/Generated/Vercel.Models.GetProjectsResponseVariant3ProjectDelegatedProtection.Json.g.cs
+++ /dev/null
@@ -1,92 +0,0 @@
-#nullable enable
-
-namespace Vercel
-{
- public sealed partial class GetProjectsResponseVariant3ProjectDelegatedProtection
- {
- ///
- /// Serializes the current instance to a JSON string using the provided JsonSerializerContext.
- ///
- public string ToJson(
- global::System.Text.Json.Serialization.JsonSerializerContext jsonSerializerContext)
- {
- return global::System.Text.Json.JsonSerializer.Serialize(
- this,
- this.GetType(),
- jsonSerializerContext);
- }
-
- ///
- /// Serializes the current instance to a JSON string using the provided JsonSerializerOptions.
- ///
-#if NET8_0_OR_GREATER
- [global::System.Diagnostics.CodeAnalysis.RequiresUnreferencedCode("JSON serialization and deserialization might require types that cannot be statically analyzed. Use the overload that takes a JsonTypeInfo or JsonSerializerContext, or make sure all of the required types are preserved.")]
- [global::System.Diagnostics.CodeAnalysis.RequiresDynamicCode("JSON serialization and deserialization might require types that cannot be statically analyzed and might need runtime code generation. Use System.Text.Json source generation for native AOT applications.")]
-#endif
- public string ToJson(
- global::System.Text.Json.JsonSerializerOptions? jsonSerializerOptions = null)
- {
- return global::System.Text.Json.JsonSerializer.Serialize(
- this,
- jsonSerializerOptions);
- }
-
- ///
- /// Deserializes a JSON string using the provided JsonSerializerContext.
- ///
- public static global::Vercel.GetProjectsResponseVariant3ProjectDelegatedProtection? FromJson(
- string json,
- global::System.Text.Json.Serialization.JsonSerializerContext jsonSerializerContext)
- {
- return global::System.Text.Json.JsonSerializer.Deserialize(
- json,
- typeof(global::Vercel.GetProjectsResponseVariant3ProjectDelegatedProtection),
- jsonSerializerContext) as global::Vercel.GetProjectsResponseVariant3ProjectDelegatedProtection;
- }
-
- ///
- /// Deserializes a JSON string using the provided JsonSerializerOptions.
- ///
-#if NET8_0_OR_GREATER
- [global::System.Diagnostics.CodeAnalysis.RequiresUnreferencedCode("JSON serialization and deserialization might require types that cannot be statically analyzed. Use the overload that takes a JsonTypeInfo or JsonSerializerContext, or make sure all of the required types are preserved.")]
- [global::System.Diagnostics.CodeAnalysis.RequiresDynamicCode("JSON serialization and deserialization might require types that cannot be statically analyzed and might need runtime code generation. Use System.Text.Json source generation for native AOT applications.")]
-#endif
- public static global::Vercel.GetProjectsResponseVariant3ProjectDelegatedProtection? FromJson(
- string json,
- global::System.Text.Json.JsonSerializerOptions? jsonSerializerOptions = null)
- {
- return global::System.Text.Json.JsonSerializer.Deserialize(
- json,
- jsonSerializerOptions);
- }
-
- ///
- /// Deserializes a JSON stream using the provided JsonSerializerContext.
- ///
- public static async global::System.Threading.Tasks.ValueTask FromJsonStreamAsync(
- global::System.IO.Stream jsonStream,
- global::System.Text.Json.Serialization.JsonSerializerContext jsonSerializerContext)
- {
- return (await global::System.Text.Json.JsonSerializer.DeserializeAsync(
- jsonStream,
- typeof(global::Vercel.GetProjectsResponseVariant3ProjectDelegatedProtection),
- jsonSerializerContext).ConfigureAwait(false)) as global::Vercel.GetProjectsResponseVariant3ProjectDelegatedProtection;
- }
-
- ///
- /// Deserializes a JSON stream using the provided JsonSerializerOptions.
- ///
-#if NET8_0_OR_GREATER
- [global::System.Diagnostics.CodeAnalysis.RequiresUnreferencedCode("JSON serialization and deserialization might require types that cannot be statically analyzed. Use the overload that takes a JsonTypeInfo or JsonSerializerContext, or make sure all of the required types are preserved.")]
- [global::System.Diagnostics.CodeAnalysis.RequiresDynamicCode("JSON serialization and deserialization might require types that cannot be statically analyzed and might need runtime code generation. Use System.Text.Json source generation for native AOT applications.")]
-#endif
- public static global::System.Threading.Tasks.ValueTask FromJsonStreamAsync(
- global::System.IO.Stream jsonStream,
- global::System.Text.Json.JsonSerializerOptions? jsonSerializerOptions = null)
- {
- return global::System.Text.Json.JsonSerializer.DeserializeAsync(
- jsonStream,
- jsonSerializerOptions);
- }
- }
-}
diff --git a/src/libs/Vercel/Generated/Vercel.Models.GetProjectsResponseVariant3ProjectDelegatedProtection.g.cs b/src/libs/Vercel/Generated/Vercel.Models.GetProjectsResponseVariant3ProjectDelegatedProtection.g.cs
deleted file mode 100644
index ece882dd..00000000
--- a/src/libs/Vercel/Generated/Vercel.Models.GetProjectsResponseVariant3ProjectDelegatedProtection.g.cs
+++ /dev/null
@@ -1,19 +0,0 @@
-
-#nullable enable
-
-namespace Vercel
-{
- ///
- ///
- ///
- public sealed partial class GetProjectsResponseVariant3ProjectDelegatedProtection
- {
-
- ///
- /// Additional properties that are not explicitly defined in the schema
- ///
- [global::System.Text.Json.Serialization.JsonExtensionData]
- public global::System.Collections.Generic.IDictionary AdditionalProperties { get; set; } = new global::System.Collections.Generic.Dictionary();
-
- }
-}
\ No newline at end of file
diff --git a/src/libs/Vercel/Generated/Vercel.Models.GetProjectsResponseVariant3ProjectPermissions.g.cs b/src/libs/Vercel/Generated/Vercel.Models.GetProjectsResponseVariant3ProjectPermissions.g.cs
index 7413db06..dd5d017f 100644
--- a/src/libs/Vercel/Generated/Vercel.Models.GetProjectsResponseVariant3ProjectPermissions.g.cs
+++ b/src/libs/Vercel/Generated/Vercel.Models.GetProjectsResponseVariant3ProjectPermissions.g.cs
@@ -302,12 +302,6 @@ public sealed partial class GetProjectsResponseVariant3ProjectPermissions
[global::System.Text.Json.Serialization.JsonPropertyName("defaultDeploymentProtection")]
public global::System.Collections.Generic.IList? DefaultDeploymentProtection { get; set; }
- ///
- ///
- ///
- [global::System.Text.Json.Serialization.JsonPropertyName("delegatedProtectionClient")]
- public global::System.Collections.Generic.IList? DelegatedProtectionClient { get; set; }
-
///
///
///
@@ -1274,12 +1268,6 @@ public sealed partial class GetProjectsResponseVariant3ProjectPermissions
[global::System.Text.Json.Serialization.JsonPropertyName("projectCheckRun")]
public global::System.Collections.Generic.IList? ProjectCheckRun { get; set; }
- ///
- ///
- ///
- [global::System.Text.Json.Serialization.JsonPropertyName("projectDelegatedProtection")]
- public global::System.Collections.Generic.IList? ProjectDelegatedProtection { get; set; }
-
///
///
///
@@ -1584,7 +1572,6 @@ public sealed partial class GetProjectsResponseVariant3ProjectPermissions
///
///
///
- ///
///
///
///
@@ -1746,7 +1733,6 @@ public sealed partial class GetProjectsResponseVariant3ProjectPermissions
///
///
///
- ///
///
///
///
@@ -1841,7 +1827,6 @@ public GetProjectsResponseVariant3ProjectPermissions(
global::System.Collections.Generic.IList? buildMachineDefault,
global::System.Collections.Generic.IList? dataCacheBillingSettings,
global::System.Collections.Generic.IList? defaultDeploymentProtection,
- global::System.Collections.Generic.IList? delegatedProtectionClient,
global::System.Collections.Generic.IList? deploymentPolicy,
global::System.Collections.Generic.IList? domain,
global::System.Collections.Generic.IList? domainAcceptDelegation,
@@ -2003,7 +1988,6 @@ public GetProjectsResponseVariant3ProjectPermissions(
global::System.Collections.Generic.IList? projectAnalyticsUsage,
global::System.Collections.Generic.IList? projectCheck,
global::System.Collections.Generic.IList? projectCheckRun,
- global::System.Collections.Generic.IList? projectDelegatedProtection,
global::System.Collections.Generic.IList? projectDeploymentExpiration,
global::System.Collections.Generic.IList? projectDeploymentHook,
global::System.Collections.Generic.IList? projectDeploymentProtectionStrict,
@@ -2095,7 +2079,6 @@ public GetProjectsResponseVariant3ProjectPermissions(
this.BuildMachineDefault = buildMachineDefault;
this.DataCacheBillingSettings = dataCacheBillingSettings;
this.DefaultDeploymentProtection = defaultDeploymentProtection;
- this.DelegatedProtectionClient = delegatedProtectionClient;
this.DeploymentPolicy = deploymentPolicy;
this.Domain = domain;
this.DomainAcceptDelegation = domainAcceptDelegation;
@@ -2257,7 +2240,6 @@ public GetProjectsResponseVariant3ProjectPermissions(
this.ProjectAnalyticsUsage = projectAnalyticsUsage;
this.ProjectCheck = projectCheck;
this.ProjectCheckRun = projectCheckRun;
- this.ProjectDelegatedProtection = projectDelegatedProtection;
this.ProjectDeploymentExpiration = projectDeploymentExpiration;
this.ProjectDeploymentHook = projectDeploymentHook;
this.ProjectDeploymentProtectionStrict = projectDeploymentProtectionStrict;
diff --git a/src/libs/Vercel/Generated/Vercel.Models.ListEventTypeName.g.cs b/src/libs/Vercel/Generated/Vercel.Models.ListEventTypeName.g.cs
index cfc45e12..3905c159 100644
--- a/src/libs/Vercel/Generated/Vercel.Models.ListEventTypeName.g.cs
+++ b/src/libs/Vercel/Generated/Vercel.Models.ListEventTypeName.g.cs
@@ -1112,18 +1112,6 @@ public enum ListEventTypeName
///
///
///
- ProjectDelegatedProtectionDisabled,
- ///
- ///
- ///
- ProjectDelegatedProtectionEnabled,
- ///
- ///
- ///
- ProjectDelegatedProtectionUpdated,
- ///
- ///
- ///
ProjectDelete,
///
///
@@ -2262,9 +2250,6 @@ public static string ToValueString(this ListEventTypeName value)
ListEventTypeName.ProjectCustomEnvironmentDeleted => "project-custom-environment-deleted",
ListEventTypeName.ProjectCustomEnvironmentUpdated => "project-custom-environment-updated",
ListEventTypeName.ProjectCustomerSuccessCodeVisibilityUpdated => "project-customer-success-code-visibility-updated",
- ListEventTypeName.ProjectDelegatedProtectionDisabled => "project-delegated-protection-disabled",
- ListEventTypeName.ProjectDelegatedProtectionEnabled => "project-delegated-protection-enabled",
- ListEventTypeName.ProjectDelegatedProtectionUpdated => "project-delegated-protection-updated",
ListEventTypeName.ProjectDelete => "project-delete",
ListEventTypeName.ProjectDeploymentPolicyUpdated => "project-deployment-policy-updated",
ListEventTypeName.ProjectDeploymentRetentionUpdated => "project-deployment-retention-updated",
@@ -2763,9 +2748,6 @@ public static string ToValueString(this ListEventTypeName value)
"project-custom-environment-deleted" => ListEventTypeName.ProjectCustomEnvironmentDeleted,
"project-custom-environment-updated" => ListEventTypeName.ProjectCustomEnvironmentUpdated,
"project-customer-success-code-visibility-updated" => ListEventTypeName.ProjectCustomerSuccessCodeVisibilityUpdated,
- "project-delegated-protection-disabled" => ListEventTypeName.ProjectDelegatedProtectionDisabled,
- "project-delegated-protection-enabled" => ListEventTypeName.ProjectDelegatedProtectionEnabled,
- "project-delegated-protection-updated" => ListEventTypeName.ProjectDelegatedProtectionUpdated,
"project-delete" => ListEventTypeName.ProjectDelete,
"project-deployment-policy-updated" => ListEventTypeName.ProjectDeploymentPolicyUpdated,
"project-deployment-retention-updated" => ListEventTypeName.ProjectDeploymentRetentionUpdated,
diff --git a/src/libs/Vercel/Generated/Vercel.Models.ListEventTypeReplacedByItem.g.cs b/src/libs/Vercel/Generated/Vercel.Models.ListEventTypeReplacedByItem.g.cs
index b52bbc15..695f5a4b 100644
--- a/src/libs/Vercel/Generated/Vercel.Models.ListEventTypeReplacedByItem.g.cs
+++ b/src/libs/Vercel/Generated/Vercel.Models.ListEventTypeReplacedByItem.g.cs
@@ -1111,18 +1111,6 @@ public enum ListEventTypeReplacedByItem
///
///
///
- ProjectDelegatedProtectionDisabled,
- ///
- ///
- ///
- ProjectDelegatedProtectionEnabled,
- ///
- ///
- ///
- ProjectDelegatedProtectionUpdated,
- ///
- ///
- ///
ProjectDelete,
///
///
@@ -2261,9 +2249,6 @@ public static string ToValueString(this ListEventTypeReplacedByItem value)
ListEventTypeReplacedByItem.ProjectCustomEnvironmentDeleted => "project-custom-environment-deleted",
ListEventTypeReplacedByItem.ProjectCustomEnvironmentUpdated => "project-custom-environment-updated",
ListEventTypeReplacedByItem.ProjectCustomerSuccessCodeVisibilityUpdated => "project-customer-success-code-visibility-updated",
- ListEventTypeReplacedByItem.ProjectDelegatedProtectionDisabled => "project-delegated-protection-disabled",
- ListEventTypeReplacedByItem.ProjectDelegatedProtectionEnabled => "project-delegated-protection-enabled",
- ListEventTypeReplacedByItem.ProjectDelegatedProtectionUpdated => "project-delegated-protection-updated",
ListEventTypeReplacedByItem.ProjectDelete => "project-delete",
ListEventTypeReplacedByItem.ProjectDeploymentPolicyUpdated => "project-deployment-policy-updated",
ListEventTypeReplacedByItem.ProjectDeploymentRetentionUpdated => "project-deployment-retention-updated",
@@ -2762,9 +2747,6 @@ public static string ToValueString(this ListEventTypeReplacedByItem value)
"project-custom-environment-deleted" => ListEventTypeReplacedByItem.ProjectCustomEnvironmentDeleted,
"project-custom-environment-updated" => ListEventTypeReplacedByItem.ProjectCustomEnvironmentUpdated,
"project-customer-success-code-visibility-updated" => ListEventTypeReplacedByItem.ProjectCustomerSuccessCodeVisibilityUpdated,
- "project-delegated-protection-disabled" => ListEventTypeReplacedByItem.ProjectDelegatedProtectionDisabled,
- "project-delegated-protection-enabled" => ListEventTypeReplacedByItem.ProjectDelegatedProtectionEnabled,
- "project-delegated-protection-updated" => ListEventTypeReplacedByItem.ProjectDelegatedProtectionUpdated,
"project-delete" => ListEventTypeReplacedByItem.ProjectDelete,
"project-deployment-policy-updated" => ListEventTypeReplacedByItem.ProjectDeploymentPolicyUpdated,
"project-deployment-retention-updated" => ListEventTypeReplacedByItem.ProjectDeploymentRetentionUpdated,
diff --git a/src/libs/Vercel/Generated/Vercel.Models.RunSessionCommandRequest.g.cs b/src/libs/Vercel/Generated/Vercel.Models.RunSessionCommandRequest.g.cs
index a1207df7..724bc024 100644
--- a/src/libs/Vercel/Generated/Vercel.Models.RunSessionCommandRequest.g.cs
+++ b/src/libs/Vercel/Generated/Vercel.Models.RunSessionCommandRequest.g.cs
@@ -56,14 +56,6 @@ 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
///
@@ -98,10 +90,6 @@ 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
@@ -111,8 +99,7 @@ public RunSessionCommandRequest(
string? cwd,
global::System.Collections.Generic.Dictionary? env,
bool? sudo,
- bool? wait,
- int? timeout)
+ bool? wait)
{
this.Command = command ?? throw new global::System.ArgumentNullException(nameof(command));
this.Args = args;
@@ -120,7 +107,6 @@ public RunSessionCommandRequest(
this.Env = env;
this.Sudo = sudo;
this.Wait = wait;
- this.Timeout = timeout;
}
///
diff --git a/src/libs/Vercel/Generated/Vercel.Models.UpdateMicrofrontendsResponse.g.cs b/src/libs/Vercel/Generated/Vercel.Models.UpdateMicrofrontendsResponse.g.cs
index 953154db..bf40eb38 100644
--- a/src/libs/Vercel/Generated/Vercel.Models.UpdateMicrofrontendsResponse.g.cs
+++ b/src/libs/Vercel/Generated/Vercel.Models.UpdateMicrofrontendsResponse.g.cs
@@ -111,12 +111,6 @@ public sealed partial class UpdateMicrofrontendsResponse
[global::System.Text.Json.Serialization.JsonPropertyName("dataCache")]
public global::Vercel.UpdateMicrofrontendsResponseDataCache? DataCache { get; set; }
- ///
- ///
- ///
- [global::System.Text.Json.Serialization.JsonPropertyName("delegatedProtection")]
- public object? DelegatedProtection { get; set; }
-
///
/// Retention policies for deployments. These are enforced at the project level, but we also maintain an instance of this at the team level as a default policy that gets applied to new projects.
///
@@ -616,7 +610,6 @@ public sealed partial class UpdateMicrofrontendsResponse
///
///
///
- ///
///
///
///
@@ -719,7 +712,6 @@ public UpdateMicrofrontendsResponse(
bool? customerSupportCodeVisibility,
global::Vercel.UpdateMicrofrontendsResponseCrons? crons,
global::Vercel.UpdateMicrofrontendsResponseDataCache? dataCache,
- object? delegatedProtection,
global::Vercel.OneOf? expiration,
string? devCommand,
string? installCommand,
@@ -806,7 +798,6 @@ public UpdateMicrofrontendsResponse(
this.CustomerSupportCodeVisibility = customerSupportCodeVisibility;
this.Crons = crons;
this.DataCache = dataCache;
- this.DelegatedProtection = delegatedProtection;
this.DeploymentExpiration = deploymentExpiration ?? throw new global::System.ArgumentNullException(nameof(deploymentExpiration));
this.Expiration = expiration;
this.DevCommand = devCommand;
diff --git a/src/libs/Vercel/Generated/Vercel.Models.UpdateMicrofrontendsResponseDelegatedProtection.Json.g.cs b/src/libs/Vercel/Generated/Vercel.Models.UpdateMicrofrontendsResponseDelegatedProtection.Json.g.cs
deleted file mode 100644
index ff64170b..00000000
--- a/src/libs/Vercel/Generated/Vercel.Models.UpdateMicrofrontendsResponseDelegatedProtection.Json.g.cs
+++ /dev/null
@@ -1,92 +0,0 @@
-#nullable enable
-
-namespace Vercel
-{
- public sealed partial class UpdateMicrofrontendsResponseDelegatedProtection
- {
- ///
- /// Serializes the current instance to a JSON string using the provided JsonSerializerContext.
- ///
- public string ToJson(
- global::System.Text.Json.Serialization.JsonSerializerContext jsonSerializerContext)
- {
- return global::System.Text.Json.JsonSerializer.Serialize(
- this,
- this.GetType(),
- jsonSerializerContext);
- }
-
- ///
- /// Serializes the current instance to a JSON string using the provided JsonSerializerOptions.
- ///
-#if NET8_0_OR_GREATER
- [global::System.Diagnostics.CodeAnalysis.RequiresUnreferencedCode("JSON serialization and deserialization might require types that cannot be statically analyzed. Use the overload that takes a JsonTypeInfo or JsonSerializerContext, or make sure all of the required types are preserved.")]
- [global::System.Diagnostics.CodeAnalysis.RequiresDynamicCode("JSON serialization and deserialization might require types that cannot be statically analyzed and might need runtime code generation. Use System.Text.Json source generation for native AOT applications.")]
-#endif
- public string ToJson(
- global::System.Text.Json.JsonSerializerOptions? jsonSerializerOptions = null)
- {
- return global::System.Text.Json.JsonSerializer.Serialize(
- this,
- jsonSerializerOptions);
- }
-
- ///
- /// Deserializes a JSON string using the provided JsonSerializerContext.
- ///
- public static global::Vercel.UpdateMicrofrontendsResponseDelegatedProtection? FromJson(
- string json,
- global::System.Text.Json.Serialization.JsonSerializerContext jsonSerializerContext)
- {
- return global::System.Text.Json.JsonSerializer.Deserialize(
- json,
- typeof(global::Vercel.UpdateMicrofrontendsResponseDelegatedProtection),
- jsonSerializerContext) as global::Vercel.UpdateMicrofrontendsResponseDelegatedProtection;
- }
-
- ///
- /// Deserializes a JSON string using the provided JsonSerializerOptions.
- ///
-#if NET8_0_OR_GREATER
- [global::System.Diagnostics.CodeAnalysis.RequiresUnreferencedCode("JSON serialization and deserialization might require types that cannot be statically analyzed. Use the overload that takes a JsonTypeInfo or JsonSerializerContext, or make sure all of the required types are preserved.")]
- [global::System.Diagnostics.CodeAnalysis.RequiresDynamicCode("JSON serialization and deserialization might require types that cannot be statically analyzed and might need runtime code generation. Use System.Text.Json source generation for native AOT applications.")]
-#endif
- public static global::Vercel.UpdateMicrofrontendsResponseDelegatedProtection? FromJson(
- string json,
- global::System.Text.Json.JsonSerializerOptions? jsonSerializerOptions = null)
- {
- return global::System.Text.Json.JsonSerializer.Deserialize(
- json,
- jsonSerializerOptions);
- }
-
- ///
- /// Deserializes a JSON stream using the provided JsonSerializerContext.
- ///
- public static async global::System.Threading.Tasks.ValueTask FromJsonStreamAsync(
- global::System.IO.Stream jsonStream,
- global::System.Text.Json.Serialization.JsonSerializerContext jsonSerializerContext)
- {
- return (await global::System.Text.Json.JsonSerializer.DeserializeAsync(
- jsonStream,
- typeof(global::Vercel.UpdateMicrofrontendsResponseDelegatedProtection),
- jsonSerializerContext).ConfigureAwait(false)) as global::Vercel.UpdateMicrofrontendsResponseDelegatedProtection;
- }
-
- ///
- /// Deserializes a JSON stream using the provided JsonSerializerOptions.
- ///
-#if NET8_0_OR_GREATER
- [global::System.Diagnostics.CodeAnalysis.RequiresUnreferencedCode("JSON serialization and deserialization might require types that cannot be statically analyzed. Use the overload that takes a JsonTypeInfo or JsonSerializerContext, or make sure all of the required types are preserved.")]
- [global::System.Diagnostics.CodeAnalysis.RequiresDynamicCode("JSON serialization and deserialization might require types that cannot be statically analyzed and might need runtime code generation. Use System.Text.Json source generation for native AOT applications.")]
-#endif
- public static global::System.Threading.Tasks.ValueTask FromJsonStreamAsync(
- global::System.IO.Stream jsonStream,
- global::System.Text.Json.JsonSerializerOptions? jsonSerializerOptions = null)
- {
- return global::System.Text.Json.JsonSerializer.DeserializeAsync(
- jsonStream,
- jsonSerializerOptions);
- }
- }
-}
diff --git a/src/libs/Vercel/Generated/Vercel.Models.UpdateMicrofrontendsResponseDelegatedProtection.g.cs b/src/libs/Vercel/Generated/Vercel.Models.UpdateMicrofrontendsResponseDelegatedProtection.g.cs
deleted file mode 100644
index 1845e54d..00000000
--- a/src/libs/Vercel/Generated/Vercel.Models.UpdateMicrofrontendsResponseDelegatedProtection.g.cs
+++ /dev/null
@@ -1,19 +0,0 @@
-
-#nullable enable
-
-namespace Vercel
-{
- ///
- ///
- ///
- public sealed partial class UpdateMicrofrontendsResponseDelegatedProtection
- {
-
- ///
- /// Additional properties that are not explicitly defined in the schema
- ///
- [global::System.Text.Json.Serialization.JsonExtensionData]
- public global::System.Collections.Generic.IDictionary AdditionalProperties { get; set; } = new global::System.Collections.Generic.Dictionary();
-
- }
-}
\ No newline at end of file
diff --git a/src/libs/Vercel/Generated/Vercel.Models.UpdateMicrofrontendsResponsePermissions.g.cs b/src/libs/Vercel/Generated/Vercel.Models.UpdateMicrofrontendsResponsePermissions.g.cs
index 6473c75b..15bcecf1 100644
--- a/src/libs/Vercel/Generated/Vercel.Models.UpdateMicrofrontendsResponsePermissions.g.cs
+++ b/src/libs/Vercel/Generated/Vercel.Models.UpdateMicrofrontendsResponsePermissions.g.cs
@@ -302,12 +302,6 @@ public sealed partial class UpdateMicrofrontendsResponsePermissions
[global::System.Text.Json.Serialization.JsonPropertyName("defaultDeploymentProtection")]
public global::System.Collections.Generic.IList? DefaultDeploymentProtection { get; set; }
- ///
- ///
- ///
- [global::System.Text.Json.Serialization.JsonPropertyName("delegatedProtectionClient")]
- public global::System.Collections.Generic.IList? DelegatedProtectionClient { get; set; }
-
///
///
///
@@ -1274,12 +1268,6 @@ public sealed partial class UpdateMicrofrontendsResponsePermissions
[global::System.Text.Json.Serialization.JsonPropertyName("projectCheckRun")]
public global::System.Collections.Generic.IList? ProjectCheckRun { get; set; }
- ///
- ///
- ///
- [global::System.Text.Json.Serialization.JsonPropertyName("projectDelegatedProtection")]
- public global::System.Collections.Generic.IList? ProjectDelegatedProtection { get; set; }
-
///
///
///
@@ -1584,7 +1572,6 @@ public sealed partial class UpdateMicrofrontendsResponsePermissions
///
///
///
- ///
///
///
///
@@ -1746,7 +1733,6 @@ public sealed partial class UpdateMicrofrontendsResponsePermissions
///
///
///
- ///
///
///
///
@@ -1841,7 +1827,6 @@ public UpdateMicrofrontendsResponsePermissions(
global::System.Collections.Generic.IList? buildMachineDefault,
global::System.Collections.Generic.IList? dataCacheBillingSettings,
global::System.Collections.Generic.IList? defaultDeploymentProtection,
- global::System.Collections.Generic.IList? delegatedProtectionClient,
global::System.Collections.Generic.IList? deploymentPolicy,
global::System.Collections.Generic.IList? domain,
global::System.Collections.Generic.IList? domainAcceptDelegation,
@@ -2003,7 +1988,6 @@ public UpdateMicrofrontendsResponsePermissions(
global::System.Collections.Generic.IList? projectAnalyticsUsage,
global::System.Collections.Generic.IList? projectCheck,
global::System.Collections.Generic.IList? projectCheckRun,
- global::System.Collections.Generic.IList? projectDelegatedProtection,
global::System.Collections.Generic.IList? projectDeploymentExpiration,
global::System.Collections.Generic.IList? projectDeploymentHook,
global::System.Collections.Generic.IList? projectDeploymentProtectionStrict,
@@ -2095,7 +2079,6 @@ public UpdateMicrofrontendsResponsePermissions(
this.BuildMachineDefault = buildMachineDefault;
this.DataCacheBillingSettings = dataCacheBillingSettings;
this.DefaultDeploymentProtection = defaultDeploymentProtection;
- this.DelegatedProtectionClient = delegatedProtectionClient;
this.DeploymentPolicy = deploymentPolicy;
this.Domain = domain;
this.DomainAcceptDelegation = domainAcceptDelegation;
@@ -2257,7 +2240,6 @@ public UpdateMicrofrontendsResponsePermissions(
this.ProjectAnalyticsUsage = projectAnalyticsUsage;
this.ProjectCheck = projectCheck;
this.ProjectCheckRun = projectCheckRun;
- this.ProjectDelegatedProtection = projectDelegatedProtection;
this.ProjectDeploymentExpiration = projectDeploymentExpiration;
this.ProjectDeploymentHook = projectDeploymentHook;
this.ProjectDeploymentProtectionStrict = projectDeploymentProtectionStrict;
diff --git a/src/libs/Vercel/Generated/Vercel.Models.UpdateProjectResponse.g.cs b/src/libs/Vercel/Generated/Vercel.Models.UpdateProjectResponse.g.cs
index 08716772..775ddf78 100644
--- a/src/libs/Vercel/Generated/Vercel.Models.UpdateProjectResponse.g.cs
+++ b/src/libs/Vercel/Generated/Vercel.Models.UpdateProjectResponse.g.cs
@@ -111,12 +111,6 @@ public sealed partial class UpdateProjectResponse
[global::System.Text.Json.Serialization.JsonPropertyName("dataCache")]
public global::Vercel.UpdateProjectResponseDataCache? DataCache { get; set; }
- ///
- ///
- ///
- [global::System.Text.Json.Serialization.JsonPropertyName("delegatedProtection")]
- public object? DelegatedProtection { get; set; }
-
///
/// Retention policies for deployments. These are enforced at the project level, but we also maintain an instance of this at the team level as a default policy that gets applied to new projects.
///
@@ -616,7 +610,6 @@ public sealed partial class UpdateProjectResponse
///
///
///
- ///
///
///
///
@@ -719,7 +712,6 @@ public UpdateProjectResponse(
bool? customerSupportCodeVisibility,
global::Vercel.UpdateProjectResponseCrons? crons,
global::Vercel.UpdateProjectResponseDataCache? dataCache,
- object? delegatedProtection,
global::Vercel.OneOf? expiration,
string? devCommand,
string? installCommand,
@@ -806,7 +798,6 @@ public UpdateProjectResponse(
this.CustomerSupportCodeVisibility = customerSupportCodeVisibility;
this.Crons = crons;
this.DataCache = dataCache;
- this.DelegatedProtection = delegatedProtection;
this.DeploymentExpiration = deploymentExpiration ?? throw new global::System.ArgumentNullException(nameof(deploymentExpiration));
this.Expiration = expiration;
this.DevCommand = devCommand;
diff --git a/src/libs/Vercel/Generated/Vercel.Models.UpdateProjectResponseDelegatedProtection.Json.g.cs b/src/libs/Vercel/Generated/Vercel.Models.UpdateProjectResponseDelegatedProtection.Json.g.cs
deleted file mode 100644
index 3eaf5680..00000000
--- a/src/libs/Vercel/Generated/Vercel.Models.UpdateProjectResponseDelegatedProtection.Json.g.cs
+++ /dev/null
@@ -1,92 +0,0 @@
-#nullable enable
-
-namespace Vercel
-{
- public sealed partial class UpdateProjectResponseDelegatedProtection
- {
- ///
- /// Serializes the current instance to a JSON string using the provided JsonSerializerContext.
- ///
- public string ToJson(
- global::System.Text.Json.Serialization.JsonSerializerContext jsonSerializerContext)
- {
- return global::System.Text.Json.JsonSerializer.Serialize(
- this,
- this.GetType(),
- jsonSerializerContext);
- }
-
- ///
- /// Serializes the current instance to a JSON string using the provided JsonSerializerOptions.
- ///
-#if NET8_0_OR_GREATER
- [global::System.Diagnostics.CodeAnalysis.RequiresUnreferencedCode("JSON serialization and deserialization might require types that cannot be statically analyzed. Use the overload that takes a JsonTypeInfo or JsonSerializerContext, or make sure all of the required types are preserved.")]
- [global::System.Diagnostics.CodeAnalysis.RequiresDynamicCode("JSON serialization and deserialization might require types that cannot be statically analyzed and might need runtime code generation. Use System.Text.Json source generation for native AOT applications.")]
-#endif
- public string ToJson(
- global::System.Text.Json.JsonSerializerOptions? jsonSerializerOptions = null)
- {
- return global::System.Text.Json.JsonSerializer.Serialize(
- this,
- jsonSerializerOptions);
- }
-
- ///
- /// Deserializes a JSON string using the provided JsonSerializerContext.
- ///
- public static global::Vercel.UpdateProjectResponseDelegatedProtection? FromJson(
- string json,
- global::System.Text.Json.Serialization.JsonSerializerContext jsonSerializerContext)
- {
- return global::System.Text.Json.JsonSerializer.Deserialize(
- json,
- typeof(global::Vercel.UpdateProjectResponseDelegatedProtection),
- jsonSerializerContext) as global::Vercel.UpdateProjectResponseDelegatedProtection;
- }
-
- ///
- /// Deserializes a JSON string using the provided JsonSerializerOptions.
- ///
-#if NET8_0_OR_GREATER
- [global::System.Diagnostics.CodeAnalysis.RequiresUnreferencedCode("JSON serialization and deserialization might require types that cannot be statically analyzed. Use the overload that takes a JsonTypeInfo or JsonSerializerContext, or make sure all of the required types are preserved.")]
- [global::System.Diagnostics.CodeAnalysis.RequiresDynamicCode("JSON serialization and deserialization might require types that cannot be statically analyzed and might need runtime code generation. Use System.Text.Json source generation for native AOT applications.")]
-#endif
- public static global::Vercel.UpdateProjectResponseDelegatedProtection? FromJson(
- string json,
- global::System.Text.Json.JsonSerializerOptions? jsonSerializerOptions = null)
- {
- return global::System.Text.Json.JsonSerializer.Deserialize(
- json,
- jsonSerializerOptions);
- }
-
- ///
- /// Deserializes a JSON stream using the provided JsonSerializerContext.
- ///
- public static async global::System.Threading.Tasks.ValueTask FromJsonStreamAsync(
- global::System.IO.Stream jsonStream,
- global::System.Text.Json.Serialization.JsonSerializerContext jsonSerializerContext)
- {
- return (await global::System.Text.Json.JsonSerializer.DeserializeAsync(
- jsonStream,
- typeof(global::Vercel.UpdateProjectResponseDelegatedProtection),
- jsonSerializerContext).ConfigureAwait(false)) as global::Vercel.UpdateProjectResponseDelegatedProtection;
- }
-
- ///
- /// Deserializes a JSON stream using the provided JsonSerializerOptions.
- ///
-#if NET8_0_OR_GREATER
- [global::System.Diagnostics.CodeAnalysis.RequiresUnreferencedCode("JSON serialization and deserialization might require types that cannot be statically analyzed. Use the overload that takes a JsonTypeInfo or JsonSerializerContext, or make sure all of the required types are preserved.")]
- [global::System.Diagnostics.CodeAnalysis.RequiresDynamicCode("JSON serialization and deserialization might require types that cannot be statically analyzed and might need runtime code generation. Use System.Text.Json source generation for native AOT applications.")]
-#endif
- public static global::System.Threading.Tasks.ValueTask FromJsonStreamAsync(
- global::System.IO.Stream jsonStream,
- global::System.Text.Json.JsonSerializerOptions? jsonSerializerOptions = null)
- {
- return global::System.Text.Json.JsonSerializer.DeserializeAsync(
- jsonStream,
- jsonSerializerOptions);
- }
- }
-}
diff --git a/src/libs/Vercel/Generated/Vercel.Models.UpdateProjectResponseDelegatedProtection.g.cs b/src/libs/Vercel/Generated/Vercel.Models.UpdateProjectResponseDelegatedProtection.g.cs
deleted file mode 100644
index ac5983c2..00000000
--- a/src/libs/Vercel/Generated/Vercel.Models.UpdateProjectResponseDelegatedProtection.g.cs
+++ /dev/null
@@ -1,19 +0,0 @@
-
-#nullable enable
-
-namespace Vercel
-{
- ///
- ///
- ///
- public sealed partial class UpdateProjectResponseDelegatedProtection
- {
-
- ///
- /// Additional properties that are not explicitly defined in the schema
- ///
- [global::System.Text.Json.Serialization.JsonExtensionData]
- public global::System.Collections.Generic.IDictionary AdditionalProperties { get; set; } = new global::System.Collections.Generic.Dictionary();
-
- }
-}
\ No newline at end of file
diff --git a/src/libs/Vercel/Generated/Vercel.Models.UpdateProjectResponsePermissions.g.cs b/src/libs/Vercel/Generated/Vercel.Models.UpdateProjectResponsePermissions.g.cs
index c01fe24a..0c026950 100644
--- a/src/libs/Vercel/Generated/Vercel.Models.UpdateProjectResponsePermissions.g.cs
+++ b/src/libs/Vercel/Generated/Vercel.Models.UpdateProjectResponsePermissions.g.cs
@@ -302,12 +302,6 @@ public sealed partial class UpdateProjectResponsePermissions
[global::System.Text.Json.Serialization.JsonPropertyName("defaultDeploymentProtection")]
public global::System.Collections.Generic.IList? DefaultDeploymentProtection { get; set; }
- ///
- ///
- ///
- [global::System.Text.Json.Serialization.JsonPropertyName("delegatedProtectionClient")]
- public global::System.Collections.Generic.IList? DelegatedProtectionClient { get; set; }
-
///
///
///
@@ -1274,12 +1268,6 @@ public sealed partial class UpdateProjectResponsePermissions
[global::System.Text.Json.Serialization.JsonPropertyName("projectCheckRun")]
public global::System.Collections.Generic.IList? ProjectCheckRun { get; set; }
- ///
- ///
- ///
- [global::System.Text.Json.Serialization.JsonPropertyName("projectDelegatedProtection")]
- public global::System.Collections.Generic.IList? ProjectDelegatedProtection { get; set; }
-
///
///
///
@@ -1584,7 +1572,6 @@ public sealed partial class UpdateProjectResponsePermissions
///
///
///
- ///
///
///
///
@@ -1746,7 +1733,6 @@ public sealed partial class UpdateProjectResponsePermissions
///
///
///
- ///
///
///
///
@@ -1841,7 +1827,6 @@ public UpdateProjectResponsePermissions(
global::System.Collections.Generic.IList? buildMachineDefault,
global::System.Collections.Generic.IList? dataCacheBillingSettings,
global::System.Collections.Generic.IList? defaultDeploymentProtection,
- global::System.Collections.Generic.IList? delegatedProtectionClient,
global::System.Collections.Generic.IList? deploymentPolicy,
global::System.Collections.Generic.IList? domain,
global::System.Collections.Generic.IList? domainAcceptDelegation,
@@ -2003,7 +1988,6 @@ public UpdateProjectResponsePermissions(
global::System.Collections.Generic.IList? projectAnalyticsUsage,
global::System.Collections.Generic.IList? projectCheck,
global::System.Collections.Generic.IList? projectCheckRun,
- global::System.Collections.Generic.IList? projectDelegatedProtection,
global::System.Collections.Generic.IList? projectDeploymentExpiration,
global::System.Collections.Generic.IList? projectDeploymentHook,
global::System.Collections.Generic.IList? projectDeploymentProtectionStrict,
@@ -2095,7 +2079,6 @@ public UpdateProjectResponsePermissions(
this.BuildMachineDefault = buildMachineDefault;
this.DataCacheBillingSettings = dataCacheBillingSettings;
this.DefaultDeploymentProtection = defaultDeploymentProtection;
- this.DelegatedProtectionClient = delegatedProtectionClient;
this.DeploymentPolicy = deploymentPolicy;
this.Domain = domain;
this.DomainAcceptDelegation = domainAcceptDelegation;
@@ -2257,7 +2240,6 @@ public UpdateProjectResponsePermissions(
this.ProjectAnalyticsUsage = projectAnalyticsUsage;
this.ProjectCheck = projectCheck;
this.ProjectCheckRun = projectCheckRun;
- this.ProjectDelegatedProtection = projectDelegatedProtection;
this.ProjectDeploymentExpiration = projectDeploymentExpiration;
this.ProjectDeploymentHook = projectDeploymentHook;
this.ProjectDeploymentProtectionStrict = projectDeploymentProtectionStrict;
diff --git a/src/libs/Vercel/Generated/Vercel.Models.UploadProjectAvatarResponse.g.cs b/src/libs/Vercel/Generated/Vercel.Models.UploadProjectAvatarResponse.g.cs
index b70f8772..c37177a4 100644
--- a/src/libs/Vercel/Generated/Vercel.Models.UploadProjectAvatarResponse.g.cs
+++ b/src/libs/Vercel/Generated/Vercel.Models.UploadProjectAvatarResponse.g.cs
@@ -111,12 +111,6 @@ public sealed partial class UploadProjectAvatarResponse
[global::System.Text.Json.Serialization.JsonPropertyName("dataCache")]
public global::Vercel.UploadProjectAvatarResponseDataCache? DataCache { get; set; }
- ///
- ///
- ///
- [global::System.Text.Json.Serialization.JsonPropertyName("delegatedProtection")]
- public object? DelegatedProtection { get; set; }
-
///
/// Retention policies for deployments. These are enforced at the project level, but we also maintain an instance of this at the team level as a default policy that gets applied to new projects.
///
@@ -616,7 +610,6 @@ public sealed partial class UploadProjectAvatarResponse
///
///
///
- ///
///
///
///
@@ -719,7 +712,6 @@ public UploadProjectAvatarResponse(
bool? customerSupportCodeVisibility,
global::Vercel.UploadProjectAvatarResponseCrons? crons,
global::Vercel.UploadProjectAvatarResponseDataCache? dataCache,
- object? delegatedProtection,
global::Vercel.OneOf? expiration,
string? devCommand,
string? installCommand,
@@ -806,7 +798,6 @@ public UploadProjectAvatarResponse(
this.CustomerSupportCodeVisibility = customerSupportCodeVisibility;
this.Crons = crons;
this.DataCache = dataCache;
- this.DelegatedProtection = delegatedProtection;
this.DeploymentExpiration = deploymentExpiration ?? throw new global::System.ArgumentNullException(nameof(deploymentExpiration));
this.Expiration = expiration;
this.DevCommand = devCommand;
diff --git a/src/libs/Vercel/Generated/Vercel.Models.UploadProjectAvatarResponseDelegatedProtection.Json.g.cs b/src/libs/Vercel/Generated/Vercel.Models.UploadProjectAvatarResponseDelegatedProtection.Json.g.cs
deleted file mode 100644
index 23a43953..00000000
--- a/src/libs/Vercel/Generated/Vercel.Models.UploadProjectAvatarResponseDelegatedProtection.Json.g.cs
+++ /dev/null
@@ -1,92 +0,0 @@
-#nullable enable
-
-namespace Vercel
-{
- public sealed partial class UploadProjectAvatarResponseDelegatedProtection
- {
- ///
- /// Serializes the current instance to a JSON string using the provided JsonSerializerContext.
- ///
- public string ToJson(
- global::System.Text.Json.Serialization.JsonSerializerContext jsonSerializerContext)
- {
- return global::System.Text.Json.JsonSerializer.Serialize(
- this,
- this.GetType(),
- jsonSerializerContext);
- }
-
- ///
- /// Serializes the current instance to a JSON string using the provided JsonSerializerOptions.
- ///
-#if NET8_0_OR_GREATER
- [global::System.Diagnostics.CodeAnalysis.RequiresUnreferencedCode("JSON serialization and deserialization might require types that cannot be statically analyzed. Use the overload that takes a JsonTypeInfo or JsonSerializerContext, or make sure all of the required types are preserved.")]
- [global::System.Diagnostics.CodeAnalysis.RequiresDynamicCode("JSON serialization and deserialization might require types that cannot be statically analyzed and might need runtime code generation. Use System.Text.Json source generation for native AOT applications.")]
-#endif
- public string ToJson(
- global::System.Text.Json.JsonSerializerOptions? jsonSerializerOptions = null)
- {
- return global::System.Text.Json.JsonSerializer.Serialize(
- this,
- jsonSerializerOptions);
- }
-
- ///
- /// Deserializes a JSON string using the provided JsonSerializerContext.
- ///
- public static global::Vercel.UploadProjectAvatarResponseDelegatedProtection? FromJson(
- string json,
- global::System.Text.Json.Serialization.JsonSerializerContext jsonSerializerContext)
- {
- return global::System.Text.Json.JsonSerializer.Deserialize(
- json,
- typeof(global::Vercel.UploadProjectAvatarResponseDelegatedProtection),
- jsonSerializerContext) as global::Vercel.UploadProjectAvatarResponseDelegatedProtection;
- }
-
- ///
- /// Deserializes a JSON string using the provided JsonSerializerOptions.
- ///
-#if NET8_0_OR_GREATER
- [global::System.Diagnostics.CodeAnalysis.RequiresUnreferencedCode("JSON serialization and deserialization might require types that cannot be statically analyzed. Use the overload that takes a JsonTypeInfo or JsonSerializerContext, or make sure all of the required types are preserved.")]
- [global::System.Diagnostics.CodeAnalysis.RequiresDynamicCode("JSON serialization and deserialization might require types that cannot be statically analyzed and might need runtime code generation. Use System.Text.Json source generation for native AOT applications.")]
-#endif
- public static global::Vercel.UploadProjectAvatarResponseDelegatedProtection? FromJson(
- string json,
- global::System.Text.Json.JsonSerializerOptions? jsonSerializerOptions = null)
- {
- return global::System.Text.Json.JsonSerializer.Deserialize(
- json,
- jsonSerializerOptions);
- }
-
- ///
- /// Deserializes a JSON stream using the provided JsonSerializerContext.
- ///
- public static async global::System.Threading.Tasks.ValueTask FromJsonStreamAsync(
- global::System.IO.Stream jsonStream,
- global::System.Text.Json.Serialization.JsonSerializerContext jsonSerializerContext)
- {
- return (await global::System.Text.Json.JsonSerializer.DeserializeAsync(
- jsonStream,
- typeof(global::Vercel.UploadProjectAvatarResponseDelegatedProtection),
- jsonSerializerContext).ConfigureAwait(false)) as global::Vercel.UploadProjectAvatarResponseDelegatedProtection;
- }
-
- ///
- /// Deserializes a JSON stream using the provided JsonSerializerOptions.
- ///
-#if NET8_0_OR_GREATER
- [global::System.Diagnostics.CodeAnalysis.RequiresUnreferencedCode("JSON serialization and deserialization might require types that cannot be statically analyzed. Use the overload that takes a JsonTypeInfo or JsonSerializerContext, or make sure all of the required types are preserved.")]
- [global::System.Diagnostics.CodeAnalysis.RequiresDynamicCode("JSON serialization and deserialization might require types that cannot be statically analyzed and might need runtime code generation. Use System.Text.Json source generation for native AOT applications.")]
-#endif
- public static global::System.Threading.Tasks.ValueTask FromJsonStreamAsync(
- global::System.IO.Stream jsonStream,
- global::System.Text.Json.JsonSerializerOptions? jsonSerializerOptions = null)
- {
- return global::System.Text.Json.JsonSerializer.DeserializeAsync(
- jsonStream,
- jsonSerializerOptions);
- }
- }
-}
diff --git a/src/libs/Vercel/Generated/Vercel.Models.UploadProjectAvatarResponseDelegatedProtection.g.cs b/src/libs/Vercel/Generated/Vercel.Models.UploadProjectAvatarResponseDelegatedProtection.g.cs
deleted file mode 100644
index f69ca5cd..00000000
--- a/src/libs/Vercel/Generated/Vercel.Models.UploadProjectAvatarResponseDelegatedProtection.g.cs
+++ /dev/null
@@ -1,19 +0,0 @@
-
-#nullable enable
-
-namespace Vercel
-{
- ///
- ///
- ///
- public sealed partial class UploadProjectAvatarResponseDelegatedProtection
- {
-
- ///
- /// Additional properties that are not explicitly defined in the schema
- ///
- [global::System.Text.Json.Serialization.JsonExtensionData]
- public global::System.Collections.Generic.IDictionary AdditionalProperties { get; set; } = new global::System.Collections.Generic.Dictionary();
-
- }
-}
\ No newline at end of file
diff --git a/src/libs/Vercel/Generated/Vercel.Models.UploadProjectAvatarResponsePermissions.g.cs b/src/libs/Vercel/Generated/Vercel.Models.UploadProjectAvatarResponsePermissions.g.cs
index 1f253dce..e3fbf70b 100644
--- a/src/libs/Vercel/Generated/Vercel.Models.UploadProjectAvatarResponsePermissions.g.cs
+++ b/src/libs/Vercel/Generated/Vercel.Models.UploadProjectAvatarResponsePermissions.g.cs
@@ -302,12 +302,6 @@ public sealed partial class UploadProjectAvatarResponsePermissions
[global::System.Text.Json.Serialization.JsonPropertyName("defaultDeploymentProtection")]
public global::System.Collections.Generic.IList? DefaultDeploymentProtection { get; set; }
- ///
- ///
- ///
- [global::System.Text.Json.Serialization.JsonPropertyName("delegatedProtectionClient")]
- public global::System.Collections.Generic.IList? DelegatedProtectionClient { get; set; }
-
///
///
///
@@ -1274,12 +1268,6 @@ public sealed partial class UploadProjectAvatarResponsePermissions
[global::System.Text.Json.Serialization.JsonPropertyName("projectCheckRun")]
public global::System.Collections.Generic.IList? ProjectCheckRun { get; set; }
- ///
- ///
- ///
- [global::System.Text.Json.Serialization.JsonPropertyName("projectDelegatedProtection")]
- public global::System.Collections.Generic.IList? ProjectDelegatedProtection { get; set; }
-
///
///
///
@@ -1584,7 +1572,6 @@ public sealed partial class UploadProjectAvatarResponsePermissions
///
///
///
- ///
///
///
///
@@ -1746,7 +1733,6 @@ public sealed partial class UploadProjectAvatarResponsePermissions
///
///
///
- ///
///
///
///
@@ -1841,7 +1827,6 @@ public UploadProjectAvatarResponsePermissions(
global::System.Collections.Generic.IList? buildMachineDefault,
global::System.Collections.Generic.IList? dataCacheBillingSettings,
global::System.Collections.Generic.IList? defaultDeploymentProtection,
- global::System.Collections.Generic.IList? delegatedProtectionClient,
global::System.Collections.Generic.IList? deploymentPolicy,
global::System.Collections.Generic.IList? domain,
global::System.Collections.Generic.IList? domainAcceptDelegation,
@@ -2003,7 +1988,6 @@ public UploadProjectAvatarResponsePermissions(
global::System.Collections.Generic.IList? projectAnalyticsUsage,
global::System.Collections.Generic.IList? projectCheck,
global::System.Collections.Generic.IList? projectCheckRun,
- global::System.Collections.Generic.IList? projectDelegatedProtection,
global::System.Collections.Generic.IList? projectDeploymentExpiration,
global::System.Collections.Generic.IList? projectDeploymentHook,
global::System.Collections.Generic.IList? projectDeploymentProtectionStrict,
@@ -2095,7 +2079,6 @@ public UploadProjectAvatarResponsePermissions(
this.BuildMachineDefault = buildMachineDefault;
this.DataCacheBillingSettings = dataCacheBillingSettings;
this.DefaultDeploymentProtection = defaultDeploymentProtection;
- this.DelegatedProtectionClient = delegatedProtectionClient;
this.DeploymentPolicy = deploymentPolicy;
this.Domain = domain;
this.DomainAcceptDelegation = domainAcceptDelegation;
@@ -2257,7 +2240,6 @@ public UploadProjectAvatarResponsePermissions(
this.ProjectAnalyticsUsage = projectAnalyticsUsage;
this.ProjectCheck = projectCheck;
this.ProjectCheckRun = projectCheckRun;
- this.ProjectDelegatedProtection = projectDelegatedProtection;
this.ProjectDeploymentExpiration = projectDeploymentExpiration;
this.ProjectDeploymentHook = projectDeploymentHook;
this.ProjectDeploymentProtectionStrict = projectDeploymentProtectionStrict;
diff --git a/src/libs/Vercel/Generated/Vercel.Models.UserEventType.g.cs b/src/libs/Vercel/Generated/Vercel.Models.UserEventType.g.cs
index 4c08b0f6..9253c06b 100644
--- a/src/libs/Vercel/Generated/Vercel.Models.UserEventType.g.cs
+++ b/src/libs/Vercel/Generated/Vercel.Models.UserEventType.g.cs
@@ -1112,18 +1112,6 @@ public enum UserEventType
///
///
///
- ProjectDelegatedProtectionDisabled,
- ///
- ///
- ///
- ProjectDelegatedProtectionEnabled,
- ///
- ///
- ///
- ProjectDelegatedProtectionUpdated,
- ///
- ///
- ///
ProjectDelete,
///
///
@@ -2262,9 +2250,6 @@ public static string ToValueString(this UserEventType value)
UserEventType.ProjectCustomEnvironmentDeleted => "project-custom-environment-deleted",
UserEventType.ProjectCustomEnvironmentUpdated => "project-custom-environment-updated",
UserEventType.ProjectCustomerSuccessCodeVisibilityUpdated => "project-customer-success-code-visibility-updated",
- UserEventType.ProjectDelegatedProtectionDisabled => "project-delegated-protection-disabled",
- UserEventType.ProjectDelegatedProtectionEnabled => "project-delegated-protection-enabled",
- UserEventType.ProjectDelegatedProtectionUpdated => "project-delegated-protection-updated",
UserEventType.ProjectDelete => "project-delete",
UserEventType.ProjectDeploymentPolicyUpdated => "project-deployment-policy-updated",
UserEventType.ProjectDeploymentRetentionUpdated => "project-deployment-retention-updated",
@@ -2763,9 +2748,6 @@ public static string ToValueString(this UserEventType value)
"project-custom-environment-deleted" => UserEventType.ProjectCustomEnvironmentDeleted,
"project-custom-environment-updated" => UserEventType.ProjectCustomEnvironmentUpdated,
"project-customer-success-code-visibility-updated" => UserEventType.ProjectCustomerSuccessCodeVisibilityUpdated,
- "project-delegated-protection-disabled" => UserEventType.ProjectDelegatedProtectionDisabled,
- "project-delegated-protection-enabled" => UserEventType.ProjectDelegatedProtectionEnabled,
- "project-delegated-protection-updated" => UserEventType.ProjectDelegatedProtectionUpdated,
"project-delete" => UserEventType.ProjectDelete,
"project-deployment-policy-updated" => UserEventType.ProjectDeploymentPolicyUpdated,
"project-deployment-retention-updated" => UserEventType.ProjectDeploymentRetentionUpdated,
diff --git a/src/libs/Vercel/Generated/Vercel.SandboxesClient.RunSessionCommand.g.cs b/src/libs/Vercel/Generated/Vercel.SandboxesClient.RunSessionCommand.g.cs
index 57662410..ef3d8f70 100644
--- a/src/libs/Vercel/Generated/Vercel.SandboxesClient.RunSessionCommand.g.cs
+++ b/src/libs/Vercel/Generated/Vercel.SandboxesClient.RunSessionCommand.g.cs
@@ -773,10 +773,6 @@ 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
///
@@ -790,7 +786,6 @@ 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)
{
@@ -802,7 +797,6 @@ 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 f0eb091d..bf1b7f64 100644
--- a/src/libs/Vercel/Generated/Vercel.SandboxesClient.RunSessionCommandAsStream.g.cs
+++ b/src/libs/Vercel/Generated/Vercel.SandboxesClient.RunSessionCommandAsStream.g.cs
@@ -445,10 +445,6 @@ 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
///
@@ -462,7 +458,6 @@ 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)
{
@@ -474,7 +469,6 @@ 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 33567455..18fc83b4 100644
--- a/src/libs/Vercel/openapi.yaml
+++ b/src/libs/Vercel/openapi.yaml
@@ -59766,10 +59766,6 @@
],
"type": "object"
},
- "delegatedProtection": {
- "nullable": true,
- "type": "object"
- },
"deploymentExpiration": {
"properties": {
"expirationDays": {
@@ -60721,9 +60717,6 @@
"createdAt": {
"type": "number"
},
- "updatedAt": {
- "type": "number"
- },
"org": {
"type": "string"
},
@@ -60769,6 +60762,9 @@
"gitCredentialId": {
"type": "string"
},
+ "updatedAt": {
+ "type": "number"
+ },
"sourceless": {
"type": "boolean",
"enum": [
@@ -62392,12 +62388,6 @@
},
"type": "array"
},
- "delegatedProtectionClient": {
- "items": {
- "$ref": "#/components/schemas/ACLAction"
- },
- "type": "array"
- },
"deploymentPolicy": {
"items": {
"$ref": "#/components/schemas/ACLAction"
@@ -63364,12 +63354,6 @@
},
"type": "array"
},
- "projectDelegatedProtection": {
- "items": {
- "$ref": "#/components/schemas/ACLAction"
- },
- "type": "array"
- },
"projectDeploymentExpiration": {
"items": {
"$ref": "#/components/schemas/ACLAction"
@@ -78691,10 +78675,6 @@
],
"type": "object"
},
- "delegatedProtection": {
- "nullable": true,
- "type": "object"
- },
"deploymentExpiration": {
"properties": {
"expirationDays": {
@@ -80975,12 +80955,6 @@
},
"type": "array"
},
- "delegatedProtectionClient": {
- "items": {
- "$ref": "#/components/schemas/ACLAction"
- },
- "type": "array"
- },
"deploymentPolicy": {
"items": {
"$ref": "#/components/schemas/ACLAction"
@@ -81947,12 +81921,6 @@
},
"type": "array"
},
- "projectDelegatedProtection": {
- "items": {
- "$ref": "#/components/schemas/ACLAction"
- },
- "type": "array"
- },
"projectDeploymentExpiration": {
"items": {
"$ref": "#/components/schemas/ACLAction"
@@ -84580,10 +84548,6 @@
],
"type": "object"
},
- "delegatedProtection": {
- "nullable": true,
- "type": "object"
- },
"deploymentExpiration": {
"properties": {
"expirationDays": {
@@ -86864,12 +86828,6 @@
},
"type": "array"
},
- "delegatedProtectionClient": {
- "items": {
- "$ref": "#/components/schemas/ACLAction"
- },
- "type": "array"
- },
"deploymentPolicy": {
"items": {
"$ref": "#/components/schemas/ACLAction"
@@ -87836,12 +87794,6 @@
},
"type": "array"
},
- "projectDelegatedProtection": {
- "items": {
- "$ref": "#/components/schemas/ACLAction"
- },
- "type": "array"
- },
"projectDeploymentExpiration": {
"items": {
"$ref": "#/components/schemas/ACLAction"
@@ -90706,10 +90658,6 @@
],
"type": "object"
},
- "delegatedProtection": {
- "nullable": true,
- "type": "object"
- },
"deploymentExpiration": {
"properties": {
"expirationDays": {
@@ -92988,12 +92936,6 @@
},
"type": "array"
},
- "delegatedProtectionClient": {
- "items": {
- "$ref": "#/components/schemas/ACLAction"
- },
- "type": "array"
- },
"deploymentPolicy": {
"items": {
"$ref": "#/components/schemas/ACLAction"
@@ -93960,12 +93902,6 @@
},
"type": "array"
},
- "projectDelegatedProtection": {
- "items": {
- "$ref": "#/components/schemas/ACLAction"
- },
- "type": "array"
- },
"projectDeploymentExpiration": {
"items": {
"$ref": "#/components/schemas/ACLAction"
@@ -96416,10 +96352,6 @@
],
"type": "object"
},
- "delegatedProtection": {
- "nullable": true,
- "type": "object"
- },
"deploymentExpiration": {
"properties": {
"expirationDays": {
@@ -98691,12 +98623,6 @@
},
"type": "array"
},
- "delegatedProtectionClient": {
- "items": {
- "$ref": "#/components/schemas/ACLAction"
- },
- "type": "array"
- },
"deploymentPolicy": {
"items": {
"$ref": "#/components/schemas/ACLAction"
@@ -99663,12 +99589,6 @@
},
"type": "array"
},
- "projectDelegatedProtection": {
- "items": {
- "$ref": "#/components/schemas/ACLAction"
- },
- "type": "array"
- },
"projectDeploymentExpiration": {
"items": {
"$ref": "#/components/schemas/ACLAction"
@@ -103258,10 +103178,6 @@
],
"type": "object"
},
- "delegatedProtection": {
- "nullable": true,
- "type": "object"
- },
"deploymentExpiration": {
"properties": {
"expirationDays": {
@@ -105542,12 +105458,6 @@
},
"type": "array"
},
- "delegatedProtectionClient": {
- "items": {
- "$ref": "#/components/schemas/ACLAction"
- },
- "type": "array"
- },
"deploymentPolicy": {
"items": {
"$ref": "#/components/schemas/ACLAction"
@@ -106514,12 +106424,6 @@
},
"type": "array"
},
- "projectDelegatedProtection": {
- "items": {
- "$ref": "#/components/schemas/ACLAction"
- },
- "type": "array"
- },
"projectDeploymentExpiration": {
"items": {
"$ref": "#/components/schemas/ACLAction"
@@ -117364,10 +117268,6 @@
],
"type": "object"
},
- "delegatedProtection": {
- "nullable": true,
- "type": "object"
- },
"deploymentExpiration": {
"properties": {
"expirationDays": {
@@ -119648,12 +119548,6 @@
},
"type": "array"
},
- "delegatedProtectionClient": {
- "items": {
- "$ref": "#/components/schemas/ACLAction"
- },
- "type": "array"
- },
"deploymentPolicy": {
"items": {
"$ref": "#/components/schemas/ACLAction"
@@ -120620,12 +120514,6 @@
},
"type": "array"
},
- "projectDelegatedProtection": {
- "items": {
- "$ref": "#/components/schemas/ACLAction"
- },
- "type": "array"
- },
"projectDeploymentExpiration": {
"items": {
"$ref": "#/components/schemas/ACLAction"
@@ -125729,12 +125617,6 @@
"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,
- "example": 30000
}
}
}
@@ -146156,9 +146038,6 @@
"project-connect-configurations",
"project-created",
"project-cron-jobs-toggled",
- "project-delegated-protection-enabled",
- "project-delegated-protection-updated",
- "project-delegated-protection-disabled",
"project-delete",
"project-domain-unverified",
"project-domain-verified",
@@ -146912,9 +146791,6 @@
"project-connect-configurations",
"project-created",
"project-cron-jobs-toggled",
- "project-delegated-protection-enabled",
- "project-delegated-protection-updated",
- "project-delegated-protection-disabled",
"project-delete",
"project-domain-unverified",
"project-domain-verified",
@@ -147461,9 +147337,6 @@
"project-connect-configurations",
"project-created",
"project-cron-jobs-toggled",
- "project-delegated-protection-enabled",
- "project-delegated-protection-updated",
- "project-delegated-protection-disabled",
"project-delete",
"project-domain-unverified",
"project-domain-verified",