feat: add Organization Member, Role, and Invitation management#13
Merged
Conversation
Removes Python 3.9 from the test matrix, package classifiers, and the publish workflow, raising the minimum to 3.10. The unpinned poetry install in CI fails on 3.9 because a current poetry dependency uses dataclass(slots=...), which only exists on 3.10+. This aligns with auth0-python, which already moved its matrix to 3.10-3.13. Also rolls in the pending Dependabot dev-dependency bumps (mypy, requests, types-requests, types-python-dateutil, pytest-xdist) via an updated lock file.
Co-authored-by: fern-api <115122769+fern-api[bot]@users.noreply.github.com>
7b5ab99 to
1c0ed7f
Compare
db83557 to
aba015e
Compare
tanya732
approved these changes
Jun 16, 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.
Changes
SDK regeneration from the Auth0 OpenAPI spec via Fern. Adds Member
Management to the My Organization API - organization members, member
role assignment, member invitations, bulk membership deletion, and
organization roles. This is the final beta before the stable 1.0.0
release, so the type renames below are landed now, ahead of the
compatibility commitment.
🆕 New endpoints / types:
client.organization.members.list()and.get(user_id)(GET members,GET members/{user_id}), withListOrganizationMembersResponseContentandOrgMemberIdclient.organization.members.roles.list/assign/unassign(GET/POST/DELETE members/{user_id}/roles), withGetOrganizationMemberRolesResponseContentandOrganizationMemberRolesChangeRequestContentclient.organization.invitations.list/create/get/delete(GET/POST member-invitations,GET/DELETE member-invitations/{id}), withCreateMemberInvitationInvitee,CreateMemberInvitationResponseContent, andListMembersInvitationsResponseContentclient.organization.memberships.delete_memberships()(POST delete-memberships)client.organization.roles.list()(GET roles), withRole,RoleId, andListRolesResponseContent✏️ Modified types:
phone_numberadded toOrgMemberRenamed / removed (beta):
OrgMemberRole->RoleandOrgMemberRoleId->RoleId;OrgMember.rolesandMemberInvitation.rolesnow use the renamed types. These were exported type names with no shipped endpoint behind them.delete:my_org:membersandupdate:my_org:member_rolesfrom theOAuthScopeenum.Chores / CI
dataclass(slots=...), which only exists on 3.10+.