Uh oh!
There was an error while loading. Please reload this page.
feat: add support for Keys Network ACLs, 3P client access, XAA connection profiles and nullable response fields now OptionalNullable - #918
Merged
Conversation
Generated by Fern CLI Version: unknown Generators: - fernapi/fern-java-sdk: 4.11.1
fern-apiBotforce-pushed
the
fern-bot/2026-08-18_05-55-20_952
branch
from
August 18, 2026 10:50
b870382 to
7a39e49Comparetanya732
approved these changes
Aug 19, 2026
Uh oh!
There was an error while loading. Please reload this page.
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 freeto 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.
Changes
New API surface
keys().networkAcls()client withlist(),create(), andget(id)against/keys/network-acls, plusNetworkAclKey,NetworkAclKeyAlgorithmEnum,CreateKeysNetworkAclsRequestContent/ResponseContent, andGetAllKeysNetworkAclsResponseContent. NewOauthScopeconstants:read:network_acl_keysandcreate:network_acl_keys.ConnectionProfile.crossAppAccessResourceAppwithConnectionProfileCrossAppAccessResourceAppand status enums.thirdPartyClientAccesson theClientMyOrganizationresponse/patch/post configurations, with allowed-values and default-value enums.useOauthSpecScopeonConnectionOptionsOidc,ConnectionOptionsCommonOidc,ConnectionOptionsOkta,ConnectionPropertiesOptions, andUpdateConnectionOptions.matchAllonNetworkAclRule.📢 Nullability model change (breaking for readers)
Date and nullable fields on sessions, refresh tokens, and flow action params move from
Optional<T>toOptionalNullable<T>, so the SDK can distinguish "absent" from "explicit null":GetSessionResponseContent/SessionResponseContent/UpdateSessionResponseContent:created_at,updated_at,authenticated_at,idle_expires_at,expires_at,last_interacted_atGetRefreshTokenResponseContent/RefreshTokenResponseContent/UpdateRefreshTokenResponseContent:created_at,idle_expires_at,expires_at,last_exchanged_atSessionAuthenticationSignal:timestampFlowActionFlowMapValueParams:fallbackCallers reading these fields need
.toOptional()to restore the previousOptional<T>API:Builder setters retain
Optional<T>overloads, so write paths are unaffected.Error handling
RawFlowsClient: added409 ConflictErrorand400 BadRequestErrorbranches.RawFormsClient: added400 BadRequestErrorand404 NotFoundErrorbranches.References
Generated from the Auth0 API definition.
Testing
./gradlew assemble checkpasses locally.KeysNetworkAclsWireTestcovers list / create / get.third_party_client_access,cross_app_access_resource_app, andmatch_all.Checklist
v4_MIGRATION_GUIDE.mdentry before merge.