feat: add connection profiles, groups support, and org member effective roles; remove branding identifiers#860
Open
fern-api[bot] wants to merge 3 commits into
Open
Conversation
Generated by Fern CLI Version: unknown Generators: - fernapi/fern-python-sdk: 5.14.3
Patches applied (1):
- patch-4894603d: chore: Restore custom wiring in management/__init__.py
Patches with unresolved conflicts (1):
- 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
fe30c32 to
8907450
Compare
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.
identifiersremoved —identifiersparameter removed frombranding.update();identifiersfield removed fromGetBrandingResponseContentandUpdateBrandingResponseContent. Ten associated types (BrandingIdentifiers,UpdateBrandingIdentifiers,BrandingPhoneDisplay,UpdateBrandingPhoneDisplay, and their supporting enums) are no longer exported fromauth0.management.types. These settings now live exclusively on the theme resource (PATCH /api/v2/branding/themes/{id}).PhoneTemplate.idnow optional —idwas a requiredstronPhoneTemplate,GetPhoneTemplateResponseContent,CreatePhoneTemplateResponseContent,UpdatePhoneTemplateResponseContent, andResetPhoneTemplateResponseContent. It is nowOptional[str]. Code that accesses.idwithout aNonecheck will require updating.New Endpoints & Clients
list,create,get,update,delete) plus template access (list_templates,get_template)list()to retrieve organizations associated with a specific client grantdelete_by_email()to delete a connection user by email addressmembers.get()to list group members;roles.list(),roles.create(),roles.delete()for group role managementgroups.list()for organization groups;groups.roles.list/create/delete()for group-scoped roles;members.effective_roles.list()for a member's effective roles (including group-sourced)groups.get/create/delete()for managing groups assigned to a rolegroups.get()for group membership;effective_roles.list()for all effective role assignmentsType Changes
security_headersfield (CSP + XSS protection config),country_codes(phone identifier allow/deny list), andinclude_session_metadata_in_tenant_logsflagid_token_session_expiry_supportedfield on OIDC and update connection optionsinvitation_landing_client_idfield across post/patch/response configuration typesBug Fixes
GET /client-grants/{id}/organizations— added404handling; raisesNotFoundErrorwhen the grant does not exist (was previously an unhandled parse error)PATCH /token-exchange-profiles/{id}— added409handling; raisesConflictErrorwhen a profile with the samesubject_token_typealready exists (was previously an unhandled parse error)