feat: add guardian MFA settings, anonymous sessions support, and email factor client - #890
Merged
Merged
Conversation
Generated by Fern CLI Version: unknown Generators: - fernapi/fern-python-sdk: 5.26.0
Patches applied (5):
- patch-c04f0b4d: Fix for incorrect return type and missing __all__ type
- patch-f7384913: Remove duplicate FedCmLoginGooglePatch and FedCmLoginPatch entries
- patch-1e44613d: Added migration guide for v5 to v6
- patch-30b1089a: Updated UPGRADING.md doc
- patch-d6d69aeb: Remove duplicate FedCmLoginGooglePatch and FedCmLoginPatch entries
Patches with unresolved conflicts (3):
- patch-4894603d: chore: Restore custom wiring in management/__init__.py
- patch-7271f157: Revert wrapper file to preserve Auth0 telemetry customizations
- patch-95211006: Restore Auth0 telemetry and custom client wiring after regeneration
Run `fern-replay resolve` to apply these customizations.
Patches replayed: - patch-4894603d: chore: Restore custom wiring in management/__init__.py - patch-7271f157: Revert wrapper file to preserve Auth0 telemetry customizations - patch-c04f0b4d: Fix for incorrect return type and missing __all__ type - patch-95211006: Restore Auth0 telemetry and custom client wiring after regeneration - patch-f7384913: Remove duplicate FedCmLoginGooglePatch and FedCmLoginPatch entries - patch-1e44613d: Added migration guide for v5 to v6 - patch-30b1089a: Updated UPGRADING.md doc - patch-d6d69aeb: Remove duplicate FedCmLoginGooglePatch and FedCmLoginPatch entries
Piyush-85
approved these changes
Sep 11, 2026
Merged
rmad17
added a commit
that referenced
this pull request
Sep 11, 2026
⚠️ **Breaking Changes** - `management.organization_templates` client removed along with `ListOrganizationTemplatesPaginatedResponseContent` and `OrganizationTemplateAssignedOrganization`. Four connection providers dropped the `-mcp` suffix (`asana-mcp` becomes `asana`, `atlassian-mcp` becomes `atlassian`, `gitlab-mcp` becomes `gitlab`, `slack-mcp` becomes `slack`) and nine values removed entirely (`docusign-mcp`, `figma-mcp`, `gusto-mcp`, `heroku-mcp`, `intercom-mcp`, `pagerduty-mcp`, `supabase-mcp`, `vercel-mcp`, `xero-mcp`) [\#890](#890) ([fern-api[bot]](https://github.com/apps/fern-api)) **Added** - Guardian MFA settings (`GET`/`PUT /api/v2/guardian/settings`), email and phone factor settings, organizations search, resource servers search, experimentation client, anonymous sessions support on clients and tenant settings, resource server anonymous access token configuration, and `GatewayTimeoutError` for HTTP 504 [\#890](#890) ([fern-api[bot]](https://github.com/apps/fern-api))
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Breaking Changes⚠️
management.organization_templatesis deleted along withListOrganizationTemplatesPaginatedResponseContentandOrganizationTemplateAssignedOrganization. The module was exported fromauth0.management, so direct imports break. The remainingOrganizationTemplateand related enum/policy types stay in place.-mcpsuffix (asana-mcpbecomesasana,atlassian-mcpbecomesatlassian,gitlab-mcpbecomesgitlab,slack-mcpbecomesslack). Nine values are removed entirely (docusign-mcp,figma-mcp,gusto-mcp,heroku-mcp,intercom-mcp,pagerduty-mcp,supabase-mcp,vercel-mcp,xero-mcp).notion-mcp,cloudflare-mcp,hubspot-mcp,linear-mcp, andsentry-mcpkeep the suffix. Both types areUnion[Literal[...], Any], so the SDK does not raise at runtime on old string values, but the Auth0 API will reject them server-side. Code that passes old literal strings or annotates variables withConnectionStrategyEnummust be updated. Static type checkers will flag the removed members.Added
management.guardian.get()andmanagement.guardian.set(display_remember_me_checkbox, remember_me_default_value, mfa_session_inactivity_timeout, mfa_session_overall_timeout)callingGET/PUT /api/v2/guardian/settings. Response typeGetGuardianSettingsResponseContent/SetGuardianSettingsResponseContent.management.guardian.factors.emailsub-client withget()andset(otp_length, otp_expiration_time)callingGET/PUT /api/v2/guardian/factors/email/settings. Response typesGetEmailFactorSettingsResponseContent/SetEmailFactorSettingsResponseContent.management.guardian.factors.phone.get()andset(otp_length, otp_expiration_time)callingGET/PUT /api/v2/guardian/factors/phone/settings, in addition to the existing message type, provider, and template operations. Response typesGetPhoneFactorSettingsResponseContent/SetPhoneFactorSettingsResponseContent.management.organizations.search(...)callingGET /api/v2/organizations/searchwith paginated results. New types:SearchOrganization,SearchOrganizationsPaginatedResponseContent,OrganizationSortFieldEnum.management.resource_servers.search(...)callingGET /api/v2/resource-servers/searchwith search parameters. New types:SearchResourceServersResponseContent,ResourceServerSearchResponse,ResourceServerSortFieldEnum,ResourceServerSubjectTypeAuthorization.experimentationsub-client exposingexperiments.advance_ramp(...). It is reachable on the generatedAuth0/AsyncAuth0management client, not on theManagementClientfacade, somanagement.experimentationis not available.POSTandPATCH /api/v2/clientsaccept a newanonymous_sessionsfield (CreateAnonymousSessions/UpdateAnonymousSessions, required fieldactive: bool).GET /api/v2/clients/{id}response exposesanonymous_sessions: Optional[AnonymousSessions].PATCH /api/v2/tenants/settingsacceptssessions.anonymous(TenantSettingsSessionsAnonymous) with optional fieldslifetime_in_minutes(int) andactivate_cookie(bool).POSTandPATCH /api/v2/resource-serversaccepttoken_lifetime_for_anonymous_access_tokens: Optional[int]andsubject_type_authorization.anonymous_user.policy(enumdeny_all/require_client_grant).