feat: add Guardian settings, Organization search, Resource Server search & anonymous sessions - #927
Merged
Merged
Conversation
Generated by Fern CLI Version: unknown Generators: - fernapi/fern-java-sdk: 4.11.1
tanya732
approved these changes
Sep 11, 2026
Merged
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.
Summary
This PR surfaces new Management API endpoints and fields across Guardian, Organizations, Resource Servers, Clients, and Experimentation.
Guardian Settings (New)
Introduces guardian().get() and guardian().set() at the top level, and new factor settings sub-clients under guardian().factors().
SetGuardianSettingsRequestContent fields
Organizations - Enhanced List, Search & Get-by-Name
organizations().list() now supports both offset and checkpoint pagination with new parameters:
New operations
organizations().search() supports cursor-based pagination and filters on name, display_name, created_at, and metadata.{key} using Lucene (default) or SCIM syntax.
Resource Servers - Search (New)
Clients - Anonymous Sessions
Adds anonymousSessions to client payloads.
Experimentation - Advance Ramp
Miscellaneous
🚨 Breaking Changes
organizationTemplates() client removed
The organizationTemplates() client and all its types have been removed from both ManagementApi and AsyncManagementApi.
The create:organization_templates and update:organization_templates OAuth scopes were also removed.
ConnectionIdentityProviderEnum / ConnectionStrategyEnum values updated
Several beta connection provider values have been updated to remove the -mcp suffix, and others have been removed entirely.
Renamed
Removed entirely
docusign, figma, gusto, heroku, intercom, pagerduty, supabase, vercel, xero (and their -mcp variants).
Values that retain the -mcp suffix (e.g. notion-mcp, cloudflare-mcp, hubspot-mcp, linear-mcp, sentry-mcp) are unchanged.
GuardianClient package changed
The GuardianClient and AsyncGuardianClient types returned by management.guardian() have moved from the com.auth0.client.mgmt.guardian package to com.auth0.client.mgmt. SetGuardianSettingsRequestContent has moved to com.auth0.client.mgmt.types.
Update any direct imports of these types.
Testing
Checklist