From 601ad65c1e7f51c606cb1e81fba81592b1320ff4 Mon Sep 17 00:00:00 2001 From: "supabase-cli-releaser[bot]" <246109035+supabase-cli-releaser[bot]@users.noreply.github.com> Date: Tue, 24 Feb 2026 15:29:38 +0000 Subject: [PATCH] chore: sync API types from infrastructure --- pkg/api/types.gen.go | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pkg/api/types.gen.go b/pkg/api/types.gen.go index aeaa350b7..c37ddadef 100644 --- a/pkg/api/types.gen.go +++ b/pkg/api/types.gen.go @@ -1819,6 +1819,8 @@ type ApplyProjectAddonBody_AddonVariant struct { // AuthConfigResponse defines model for AuthConfigResponse. type AuthConfigResponse struct { ApiMaxRequestDuration nullable.Nullable[int] `json:"api_max_request_duration"` + CustomOauthEnabled bool `json:"custom_oauth_enabled"` + CustomOauthMaxProviders int `json:"custom_oauth_max_providers"` DbMaxPoolSize nullable.Nullable[int] `json:"db_max_pool_size"` DbMaxPoolSizeUnit nullable.Nullable[AuthConfigResponseDbMaxPoolSizeUnit] `json:"db_max_pool_size_unit"` DisableSignup nullable.Nullable[bool] `json:"disable_signup"` @@ -3733,6 +3735,7 @@ type UpdateApiKeyBody struct { // UpdateAuthConfigBody defines model for UpdateAuthConfigBody. type UpdateAuthConfigBody struct { ApiMaxRequestDuration nullable.Nullable[int] `json:"api_max_request_duration,omitempty"` + CustomOauthEnabled *bool `json:"custom_oauth_enabled,omitempty"` DbMaxPoolSize nullable.Nullable[int] `json:"db_max_pool_size,omitempty"` DbMaxPoolSizeUnit nullable.Nullable[UpdateAuthConfigBodyDbMaxPoolSizeUnit] `json:"db_max_pool_size_unit,omitempty"` DisableSignup nullable.Nullable[bool] `json:"disable_signup,omitempty"`