feat: cross app access, branding theme identifiers, session actor, and SS-EC third-party config#877
Merged
Merged
Conversation
Generated by Fern CLI Version: unknown Generators: - fernapi/fern-python-sdk: 5.17.0
Patches applied (5):
- 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
Patches with unresolved conflicts (2):
- patch-4894603d: chore: Restore custom wiring in management/__init__.py
- patch-7271f157: Revert wrapper file to preserve Auth0 telemetry customizations
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
Merged
rmad17
added a commit
that referenced
this pull request
Jul 22, 2026
**Added** - feat: Cross App Access (ID-JAG), branding theme identifiers, Self-Service Enterprise Configuration third-party client access, session actor [\#877](#877) ([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.
Changes
New Features
New optional parameters on existing client methods (sync + async); no new standalone endpoints:
clients.create()/clients.update(): new optionalidentity_assertion_authorization_grant({active: bool}).connections.create()/connections.update(): new optionalcross_app_access_resource_app({status: "enabled" | "disabled"}).branding.themes.create()/branding.themes.update(): new optionalidentifiers(BrandingThemeIdentifiers) —{login_display: "separate" | "unified", otp_autocomplete: bool, phone_display: {formatting: "international" | "regional", masking: "hide_country_code" | "mask_digits" | "show_all"}}.self_service_profiles.sso_ticket.create(): new optionalthird_party_client_access_config({allow_configuration: bool}).Type Changes
Client: new optionalidentity_assertion_authorization_grant: IdentityAssertionAuthorizationGrant.CreateConnectionRequestContentOidc,UpdateConnectionRequestContentOidc,ConnectionResponseContentOidc,ConnectionForList): new optionalcross_app_access_resource_app.SessionResponseContent,GetSessionResponseContent,UpdateSessionResponseContent): new optionalactor: SessionActorMetadata({sub: str}plus up to 5 additional primitive claims;SessionActorClaimValue = Union[str, bool, float]).SuspiciousIpThrottlingStage: new optionalpre_custom_token_exchange(wire aliaspre-custom-token-exchange) →SuspiciousIpThrottlingPreCustomTokenExchangeStage({max_attempts?: int, rate?: int}).New Types
All are exported from both
auth0.managementandauth0.management.types, and back the fields above:cross_app_access_resource_app(connections.create()/.update()params; connection response/list types):CreateCrossAppAccessResourceApp,UpdateCrossAppAccessResourceApp(request),ConnectionCrossAppAccessResourceApp,CrossAppAccessResourceApp(response),CrossAppAccessResourceAppStatusEnum,ConnectionCrossAppAccessResourceAppStatusEnum.identity_assertion_authorization_grant(clients.create()/.update()params;Clientresponse):CreateIdentityAssertionAuthorizationGrant,UpdateIdentityAssertionAuthorizationGrant(request),IdentityAssertionAuthorizationGrant(response).identifiers(branding.themes.create()/.update()params):BrandingThemeIdentifiers,BrandingThemeIdentifiersLoginDisplayEnum,BrandingThemeIdentifiersPhoneDisplay,BrandingThemeIdentifiersPhoneDisplayFormattingEnum,BrandingThemeIdentifiersPhoneDisplayMaskingEnum.third_party_client_access_config(self_service_profiles.sso_ticket.create()param):ThirdPartyClientAccessConfig.actor(session response types):SessionActorMetadata,SessionActorClaimValue.pre_custom_token_exchange(onSuspiciousIpThrottlingStage):SuspiciousIpThrottlingPreCustomTokenExchangeStage.Enum Additions
ClientGrantSubjectTypeEnum: adds"anonymous_user".ClientAppTypeEnum: adds"b2b_integration".