diff --git a/src/libs/Vercel/Generated/Vercel.Models.CreateConnectorResponse.g.cs b/src/libs/Vercel/Generated/Vercel.Models.CreateConnectorResponse.g.cs
index 8792a0b1..c79016f4 100644
--- a/src/libs/Vercel/Generated/Vercel.Models.CreateConnectorResponse.g.cs
+++ b/src/libs/Vercel/Generated/Vercel.Models.CreateConnectorResponse.g.cs
@@ -42,6 +42,12 @@ public sealed partial class CreateConnectorResponse
[global::System.Text.Json.Serialization.JsonPropertyName("deletedAt")]
public double? DeletedAt { get; set; }
+ ///
+ /// Time when this connector started requiring reinstallation because an installation-affecting app-token grant changed.
+ ///
+ [global::System.Text.Json.Serialization.JsonPropertyName("reinstallAt")]
+ public double? ReinstallAt { get; set; }
+
///
///
///
@@ -280,6 +286,9 @@ public sealed partial class CreateConnectorResponse
///
///
///
+ ///
+ /// Time when this connector started requiring reinstallation because an installation-affecting app-token grant changed.
+ ///
///
///
///
@@ -339,6 +348,7 @@ public CreateConnectorResponse(
bool supportsTriggers,
global::Vercel.CreateConnectorResponseSupportsIcon supportsIcon,
double? deletedAt,
+ double? reinstallAt,
global::Vercel.OneOf? createdBy,
global::Vercel.OneOf? updatedBy,
string? clientUrl,
@@ -365,6 +375,7 @@ public CreateConnectorResponse(
this.CreatedAt = createdAt;
this.UpdatedAt = updatedAt;
this.DeletedAt = deletedAt;
+ this.ReinstallAt = reinstallAt;
this.CreatedBy = createdBy;
this.UpdatedBy = updatedBy;
this.Public = @public;
diff --git a/src/libs/Vercel/Generated/Vercel.Models.GetDeploymentEventsResponseItemVariant1PayloadProxy.g.cs b/src/libs/Vercel/Generated/Vercel.Models.GetDeploymentEventsResponseItemVariant1PayloadProxy.g.cs
index b69e88d5..a54184e5 100644
--- a/src/libs/Vercel/Generated/Vercel.Models.GetDeploymentEventsResponseItemVariant1PayloadProxy.g.cs
+++ b/src/libs/Vercel/Generated/Vercel.Models.GetDeploymentEventsResponseItemVariant1PayloadProxy.g.cs
@@ -33,8 +33,7 @@ public sealed partial class GetDeploymentEventsResponseItemVariant1PayloadProxy
///
///
[global::System.Text.Json.Serialization.JsonPropertyName("path")]
- [global::System.Text.Json.Serialization.JsonRequired]
- public required string Path { get; set; }
+ public string? Path { get; set; }
///
///
@@ -46,15 +45,13 @@ public sealed partial class GetDeploymentEventsResponseItemVariant1PayloadProxy
///
///
[global::System.Text.Json.Serialization.JsonPropertyName("userAgent")]
- [global::System.Text.Json.Serialization.JsonRequired]
- public required global::System.Collections.Generic.IList UserAgent { get; set; }
+ public global::System.Collections.Generic.IList? UserAgent { get; set; }
///
///
///
[global::System.Text.Json.Serialization.JsonPropertyName("referer")]
- [global::System.Text.Json.Serialization.JsonRequired]
- public required string Referer { get; set; }
+ public string? Referer { get; set; }
///
///
@@ -66,8 +63,7 @@ public sealed partial class GetDeploymentEventsResponseItemVariant1PayloadProxy
///
///
[global::System.Text.Json.Serialization.JsonPropertyName("region")]
- [global::System.Text.Json.Serialization.JsonRequired]
- public required string Region { get; set; }
+ public string? Region { get; set; }
///
///
@@ -144,11 +140,11 @@ public sealed partial class GetDeploymentEventsResponseItemVariant1PayloadProxy
///
///
///
+ ///
///
///
- ///
- ///
///
+ ///
///
///
///
@@ -166,12 +162,12 @@ public GetDeploymentEventsResponseItemVariant1PayloadProxy(
double timestamp,
string method,
string host,
- string path,
- global::System.Collections.Generic.IList userAgent,
- string referer,
- string region,
+ string? path,
double? statusCode,
+ global::System.Collections.Generic.IList? userAgent,
+ string? referer,
string? clientIp,
+ string? region,
string? scheme,
double? responseByteSize,
string? cacheId,
@@ -186,12 +182,12 @@ public GetDeploymentEventsResponseItemVariant1PayloadProxy(
this.Timestamp = timestamp;
this.Method = method ?? throw new global::System.ArgumentNullException(nameof(method));
this.Host = host ?? throw new global::System.ArgumentNullException(nameof(host));
- this.Path = path ?? throw new global::System.ArgumentNullException(nameof(path));
+ this.Path = path;
this.StatusCode = statusCode;
- this.UserAgent = userAgent ?? throw new global::System.ArgumentNullException(nameof(userAgent));
- this.Referer = referer ?? throw new global::System.ArgumentNullException(nameof(referer));
+ this.UserAgent = userAgent;
+ this.Referer = referer;
this.ClientIp = clientIp;
- this.Region = region ?? throw new global::System.ArgumentNullException(nameof(region));
+ this.Region = region;
this.Scheme = scheme;
this.ResponseByteSize = responseByteSize;
this.CacheId = cacheId;
diff --git a/src/libs/Vercel/Generated/Vercel.Models.GetDeploymentEventsResponseItemVariant3Variant1PayloadProxy.g.cs b/src/libs/Vercel/Generated/Vercel.Models.GetDeploymentEventsResponseItemVariant3Variant1PayloadProxy.g.cs
index 068302bd..f147b35c 100644
--- a/src/libs/Vercel/Generated/Vercel.Models.GetDeploymentEventsResponseItemVariant3Variant1PayloadProxy.g.cs
+++ b/src/libs/Vercel/Generated/Vercel.Models.GetDeploymentEventsResponseItemVariant3Variant1PayloadProxy.g.cs
@@ -33,8 +33,7 @@ public sealed partial class GetDeploymentEventsResponseItemVariant3Variant1Paylo
///
///
[global::System.Text.Json.Serialization.JsonPropertyName("path")]
- [global::System.Text.Json.Serialization.JsonRequired]
- public required string Path { get; set; }
+ public string? Path { get; set; }
///
///
@@ -46,15 +45,13 @@ public sealed partial class GetDeploymentEventsResponseItemVariant3Variant1Paylo
///
///
[global::System.Text.Json.Serialization.JsonPropertyName("userAgent")]
- [global::System.Text.Json.Serialization.JsonRequired]
- public required global::System.Collections.Generic.IList UserAgent { get; set; }
+ public global::System.Collections.Generic.IList? UserAgent { get; set; }
///
///
///
[global::System.Text.Json.Serialization.JsonPropertyName("referer")]
- [global::System.Text.Json.Serialization.JsonRequired]
- public required string Referer { get; set; }
+ public string? Referer { get; set; }
///
///
@@ -66,8 +63,7 @@ public sealed partial class GetDeploymentEventsResponseItemVariant3Variant1Paylo
///
///
[global::System.Text.Json.Serialization.JsonPropertyName("region")]
- [global::System.Text.Json.Serialization.JsonRequired]
- public required string Region { get; set; }
+ public string? Region { get; set; }
///
///
@@ -144,11 +140,11 @@ public sealed partial class GetDeploymentEventsResponseItemVariant3Variant1Paylo
///
///
///
+ ///
///
///
- ///
- ///
///
+ ///
///
///
///
@@ -166,12 +162,12 @@ public GetDeploymentEventsResponseItemVariant3Variant1PayloadProxy(
double timestamp,
string method,
string host,
- string path,
- global::System.Collections.Generic.IList userAgent,
- string referer,
- string region,
+ string? path,
double? statusCode,
+ global::System.Collections.Generic.IList? userAgent,
+ string? referer,
string? clientIp,
+ string? region,
string? scheme,
double? responseByteSize,
string? cacheId,
@@ -186,12 +182,12 @@ public GetDeploymentEventsResponseItemVariant3Variant1PayloadProxy(
this.Timestamp = timestamp;
this.Method = method ?? throw new global::System.ArgumentNullException(nameof(method));
this.Host = host ?? throw new global::System.ArgumentNullException(nameof(host));
- this.Path = path ?? throw new global::System.ArgumentNullException(nameof(path));
+ this.Path = path;
this.StatusCode = statusCode;
- this.UserAgent = userAgent ?? throw new global::System.ArgumentNullException(nameof(userAgent));
- this.Referer = referer ?? throw new global::System.ArgumentNullException(nameof(referer));
+ this.UserAgent = userAgent;
+ this.Referer = referer;
this.ClientIp = clientIp;
- this.Region = region ?? throw new global::System.ArgumentNullException(nameof(region));
+ this.Region = region;
this.Scheme = scheme;
this.ResponseByteSize = responseByteSize;
this.CacheId = cacheId;
diff --git a/src/libs/Vercel/Generated/Vercel.Models.GetDeploymentEventsResponseVariant1PayloadProxy.g.cs b/src/libs/Vercel/Generated/Vercel.Models.GetDeploymentEventsResponseVariant1PayloadProxy.g.cs
index ecf831cf..bf24b894 100644
--- a/src/libs/Vercel/Generated/Vercel.Models.GetDeploymentEventsResponseVariant1PayloadProxy.g.cs
+++ b/src/libs/Vercel/Generated/Vercel.Models.GetDeploymentEventsResponseVariant1PayloadProxy.g.cs
@@ -33,8 +33,7 @@ public sealed partial class GetDeploymentEventsResponseVariant1PayloadProxy
///
///
[global::System.Text.Json.Serialization.JsonPropertyName("path")]
- [global::System.Text.Json.Serialization.JsonRequired]
- public required string Path { get; set; }
+ public string? Path { get; set; }
///
///
@@ -46,15 +45,13 @@ public sealed partial class GetDeploymentEventsResponseVariant1PayloadProxy
///
///
[global::System.Text.Json.Serialization.JsonPropertyName("userAgent")]
- [global::System.Text.Json.Serialization.JsonRequired]
- public required global::System.Collections.Generic.IList UserAgent { get; set; }
+ public global::System.Collections.Generic.IList? UserAgent { get; set; }
///
///
///
[global::System.Text.Json.Serialization.JsonPropertyName("referer")]
- [global::System.Text.Json.Serialization.JsonRequired]
- public required string Referer { get; set; }
+ public string? Referer { get; set; }
///
///
@@ -66,8 +63,7 @@ public sealed partial class GetDeploymentEventsResponseVariant1PayloadProxy
///
///
[global::System.Text.Json.Serialization.JsonPropertyName("region")]
- [global::System.Text.Json.Serialization.JsonRequired]
- public required string Region { get; set; }
+ public string? Region { get; set; }
///
///
@@ -144,11 +140,11 @@ public sealed partial class GetDeploymentEventsResponseVariant1PayloadProxy
///
///
///
+ ///
///
///
- ///
- ///
///
+ ///
///
///
///
@@ -166,12 +162,12 @@ public GetDeploymentEventsResponseVariant1PayloadProxy(
double timestamp,
string method,
string host,
- string path,
- global::System.Collections.Generic.IList userAgent,
- string referer,
- string region,
+ string? path,
double? statusCode,
+ global::System.Collections.Generic.IList? userAgent,
+ string? referer,
string? clientIp,
+ string? region,
string? scheme,
double? responseByteSize,
string? cacheId,
@@ -186,12 +182,12 @@ public GetDeploymentEventsResponseVariant1PayloadProxy(
this.Timestamp = timestamp;
this.Method = method ?? throw new global::System.ArgumentNullException(nameof(method));
this.Host = host ?? throw new global::System.ArgumentNullException(nameof(host));
- this.Path = path ?? throw new global::System.ArgumentNullException(nameof(path));
+ this.Path = path;
this.StatusCode = statusCode;
- this.UserAgent = userAgent ?? throw new global::System.ArgumentNullException(nameof(userAgent));
- this.Referer = referer ?? throw new global::System.ArgumentNullException(nameof(referer));
+ this.UserAgent = userAgent;
+ this.Referer = referer;
this.ClientIp = clientIp;
- this.Region = region ?? throw new global::System.ArgumentNullException(nameof(region));
+ this.Region = region;
this.Scheme = scheme;
this.ResponseByteSize = responseByteSize;
this.CacheId = cacheId;
diff --git a/src/libs/Vercel/Generated/Vercel.Models.GetDeploymentEventsResponseVariant3Variant1PayloadProxy.g.cs b/src/libs/Vercel/Generated/Vercel.Models.GetDeploymentEventsResponseVariant3Variant1PayloadProxy.g.cs
index ec9b2367..a0cb3482 100644
--- a/src/libs/Vercel/Generated/Vercel.Models.GetDeploymentEventsResponseVariant3Variant1PayloadProxy.g.cs
+++ b/src/libs/Vercel/Generated/Vercel.Models.GetDeploymentEventsResponseVariant3Variant1PayloadProxy.g.cs
@@ -33,8 +33,7 @@ public sealed partial class GetDeploymentEventsResponseVariant3Variant1PayloadPr
///
///
[global::System.Text.Json.Serialization.JsonPropertyName("path")]
- [global::System.Text.Json.Serialization.JsonRequired]
- public required string Path { get; set; }
+ public string? Path { get; set; }
///
///
@@ -46,15 +45,13 @@ public sealed partial class GetDeploymentEventsResponseVariant3Variant1PayloadPr
///
///
[global::System.Text.Json.Serialization.JsonPropertyName("userAgent")]
- [global::System.Text.Json.Serialization.JsonRequired]
- public required global::System.Collections.Generic.IList UserAgent { get; set; }
+ public global::System.Collections.Generic.IList? UserAgent { get; set; }
///
///
///
[global::System.Text.Json.Serialization.JsonPropertyName("referer")]
- [global::System.Text.Json.Serialization.JsonRequired]
- public required string Referer { get; set; }
+ public string? Referer { get; set; }
///
///
@@ -66,8 +63,7 @@ public sealed partial class GetDeploymentEventsResponseVariant3Variant1PayloadPr
///
///
[global::System.Text.Json.Serialization.JsonPropertyName("region")]
- [global::System.Text.Json.Serialization.JsonRequired]
- public required string Region { get; set; }
+ public string? Region { get; set; }
///
///
@@ -144,11 +140,11 @@ public sealed partial class GetDeploymentEventsResponseVariant3Variant1PayloadPr
///
///
///
+ ///
///
///
- ///
- ///
///
+ ///
///
///
///
@@ -166,12 +162,12 @@ public GetDeploymentEventsResponseVariant3Variant1PayloadProxy(
double timestamp,
string method,
string host,
- string path,
- global::System.Collections.Generic.IList userAgent,
- string referer,
- string region,
+ string? path,
double? statusCode,
+ global::System.Collections.Generic.IList? userAgent,
+ string? referer,
string? clientIp,
+ string? region,
string? scheme,
double? responseByteSize,
string? cacheId,
@@ -186,12 +182,12 @@ public GetDeploymentEventsResponseVariant3Variant1PayloadProxy(
this.Timestamp = timestamp;
this.Method = method ?? throw new global::System.ArgumentNullException(nameof(method));
this.Host = host ?? throw new global::System.ArgumentNullException(nameof(host));
- this.Path = path ?? throw new global::System.ArgumentNullException(nameof(path));
+ this.Path = path;
this.StatusCode = statusCode;
- this.UserAgent = userAgent ?? throw new global::System.ArgumentNullException(nameof(userAgent));
- this.Referer = referer ?? throw new global::System.ArgumentNullException(nameof(referer));
+ this.UserAgent = userAgent;
+ this.Referer = referer;
this.ClientIp = clientIp;
- this.Region = region ?? throw new global::System.ArgumentNullException(nameof(region));
+ this.Region = region;
this.Scheme = scheme;
this.ResponseByteSize = responseByteSize;
this.CacheId = cacheId;
diff --git a/src/libs/Vercel/openapi.yaml b/src/libs/Vercel/openapi.yaml
index 162a8c5f..6f18a4fb 100644
--- a/src/libs/Vercel/openapi.yaml
+++ b/src/libs/Vercel/openapi.yaml
@@ -11428,6 +11428,10 @@
"deletedAt": {
"type": "number"
},
+ "reinstallAt": {
+ "type": "number",
+ "description": "Time when this connector started requiring reinstallation because an installation-affecting app-token grant changed."
+ },
"createdBy": {
"oneOf": [
{
@@ -13737,11 +13741,7 @@
"required": [
"host",
"method",
- "path",
- "referer",
- "region",
- "timestamp",
- "userAgent"
+ "timestamp"
],
"type": "object"
}
@@ -14003,11 +14003,7 @@
"required": [
"host",
"method",
- "path",
- "referer",
- "region",
- "timestamp",
- "userAgent"
+ "timestamp"
],
"type": "object"
}
@@ -14347,11 +14343,7 @@
"required": [
"host",
"method",
- "path",
- "referer",
- "region",
- "timestamp",
- "userAgent"
+ "timestamp"
],
"type": "object"
}
@@ -14613,11 +14605,7 @@
"required": [
"host",
"method",
- "path",
- "referer",
- "region",
- "timestamp",
- "userAgent"
+ "timestamp"
],
"type": "object"
}