diff --git a/src/libs/Vercel/Generated/Vercel.Models.GetConnectorTokenResponse.g.cs b/src/libs/Vercel/Generated/Vercel.Models.GetConnectorTokenResponse.g.cs index 00b48fe1..8b761e4f 100644 --- a/src/libs/Vercel/Generated/Vercel.Models.GetConnectorTokenResponse.g.cs +++ b/src/libs/Vercel/Generated/Vercel.Models.GetConnectorTokenResponse.g.cs @@ -60,6 +60,18 @@ public sealed partial class GetConnectorTokenResponse [global::System.Text.Json.Serialization.JsonPropertyName("externalSubject")] public string? ExternalSubject { get; set; } + /// + /// Stable id correlating all tokens (including refreshes) back to the original authorization. + /// + [global::System.Text.Json.Serialization.JsonPropertyName("authorizationId")] + public string? AuthorizationId { get; set; } + + /// + /// Stable id that groups all tokens with the same parameters across refreshes. + /// + [global::System.Text.Json.Serialization.JsonPropertyName("tokenGroupId")] + public string? TokenGroupId { get; set; } + /// /// Claims extracted from the provider's tokens per the connector's `ForwardedClaims` allow-list. Currently sourced from the OIDC id_token only. /// @@ -89,6 +101,12 @@ public sealed partial class GetConnectorTokenResponse /// /// /// + /// + /// Stable id correlating all tokens (including refreshes) back to the original authorization. + /// + /// + /// Stable id that groups all tokens with the same parameters across refreshes. + /// /// /// Claims extracted from the provider's tokens per the connector's `ForwardedClaims` allow-list. Currently sourced from the OIDC id_token only. /// @@ -107,6 +125,8 @@ public GetConnectorTokenResponse( string? installationId, string? tenantId, string? externalSubject, + string? authorizationId, + string? tokenGroupId, object? claims, object? metadata) { @@ -118,6 +138,8 @@ public GetConnectorTokenResponse( this.InstallationId = installationId; this.TenantId = tenantId; this.ExternalSubject = externalSubject; + this.AuthorizationId = authorizationId; + this.TokenGroupId = tokenGroupId; this.Claims = claims; this.Metadata = metadata; } diff --git a/src/libs/Vercel/openapi.yaml b/src/libs/Vercel/openapi.yaml index eae49205..fd892bf1 100644 --- a/src/libs/Vercel/openapi.yaml +++ b/src/libs/Vercel/openapi.yaml @@ -12888,6 +12888,14 @@ "externalSubject": { "type": "string" }, + "authorizationId": { + "type": "string", + "description": "Stable id correlating all tokens (including refreshes) back to the original authorization." + }, + "tokenGroupId": { + "type": "string", + "description": "Stable id that groups all tokens with the same parameters across refreshes." + }, "claims": { "additionalProperties": true, "type": "object",