feat: add org connection member access level, resource server access token, and client my-organization enforcement settings - #892
Merged
Conversation
Generated by Fern CLI Version: unknown Generators: - fernapi/fern-python-sdk: 5.26.0
Patches applied (5):
- patch-c04f0b4d: Fix for incorrect return type and missing __all__ type
- patch-f7384913: Remove duplicate FedCmLoginGooglePatch and FedCmLoginPatch entries
- patch-1e44613d: Added migration guide for v5 to v6
- patch-30b1089a: Updated UPGRADING.md doc
- patch-d6d69aeb: Remove duplicate FedCmLoginGooglePatch and FedCmLoginPatch entries
Patches with unresolved conflicts (3):
- patch-4894603d: chore: Restore custom wiring in management/__init__.py
- patch-7271f157: Revert wrapper file to preserve Auth0 telemetry customizations
- patch-95211006: Restore Auth0 telemetry and custom client wiring after regeneration
Run `fern-replay resolve` to apply these customizations.
fern-api
Bot
force-pushed
the
fern-bot/2026-09-15_05-45-19_519
branch
from
September 15, 2026 11:36
38b620f to
889faaf
Compare
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 - patch-d6d69aeb: Remove duplicate FedCmLoginGooglePatch and FedCmLoginPatch entries
rmad17
approved these changes
Sep 17, 2026
Merged
rmad17
added a commit
that referenced
this pull request
Sep 17, 2026
**Added** - Organization connection member access level, resource server access token configuration, and client My Organization enforcement settings [\#892](#892) ([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.
Added
Organization connection member access level:
management.organizations.connections.create()accepts a new optionalorganization_member_access_levelparameter (OrganizationMemberAccessLevelEnum:"none","readonly","limited","full").update()acceptsOrganizationMemberAccessLevelEnumWithNullfor the same field (supports nulling). Connection create, get, and update response types exposeorganization_member_access_level. New types:OrganizationMemberAccessLevelEnum,OrganizationMemberAccessLevelEnumWithNull.Resource server access token configuration:
management.resource_servers.create(),management.resource_servers.update(), andmanagement.tenants.settings.update()accept a new optionalaccess_tokenparameter (ResourceServerAccessToken) to configure custom claims mapping.GetResourceServerResponseContent,CreateResourceServerResponseContent,UpdateResourceServerResponseContent,ResourceServer,ResourceServerSearchResponse,GetTenantSettingsResponseContent, andUpdateTenantSettingsResponseContentexposeaccess_token. New types:ResourceServerAccessToken,ResourceServerAccessTokenClaimsMapping,ResourceServerAccessTokenCustomClaimsMapping,ResourceServerAccessTokenCustomClaimsMappingRule.Client My Organization enforcement settings:
ClientMyOrganizationResponseConfiguration,ClientMyOrganizationPatchConfiguration, andClientMyOrganizationPostConfigurationgain two new optional boolean fields:enforce_permission_ceiling(when true, limits the permissions admins can assign to members to only those they hold themselves) andenforce_self_assignment_restriction(when true, prevents admins from assigning permissions to themselves).