feat: add third-party client access support for organizations - #886
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-08-18_05-46-52_941
branch
from
August 18, 2026 10:41
6332519 to
0283d54
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
developerkunal
force-pushed
the
fern-bot/2026-08-18_05-46-52_941
branch
from
August 18, 2026 14:35
37c69f0 to
bb2a42e
Compare
kishore7snehil
approved these changes
Aug 19, 2026
Merged
rmad17
added a commit
that referenced
this pull request
Aug 19, 2026
**Added** - feat: Add My Organization client access control, Connection Profile Cross-App Access support, Network ACL keys management, and OIDC space-delimited scope support [\#886](#886) ([fern-api[bot]](https://github.com/apps/fern-api)) **Fixed** - fix: Raw clients for forms and flows now surface additional error responses instead of failing unhandled, corrected a docstring field name [\#886](#886) ([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
management.clientscreate/update now acceptmy_organization_configuration.third_party_client_accessto control whether third-party clients can access the organization.Client responses expose the same field.
management.connection_profilescreate/update now acceptcross_app_access_resource_app, controlling whether organization admins may enable Cross-App Access (XAA) ontheir identity providers. Connection profile responses expose the same field.
management.keys.network_aclsclient withlist,create, andgetfor managing the keys used to verify HTTP Message Signatures on Network ACL rules. Access tokens can now bescoped with the new
read:network_acl_keyspermission.match_allflag. When true, the rule matches all traffic unconditionally, and it is mutually exclusive withmatchandnot_match.use_oauth_spec_scope- when enabled, scopes are sent space-delimited (per the OAuth 2.0 spec) instead of comma-delimited to the identity provider's authorizationendpoint. Only relevant when using the
connection_scopeparameter.Fixed
management.forms.create/update(raw client) now surface400/404errors instead of an unhandled response.management.flows.create/update(raw client) now surface400/409errors instead of an unhandled response.management.flows.executions(raw client) now surfaces404errors instead of an unhandled response.management.clients: the listed field namecustom_login_page_offwas corrected tocustom_login_page_on.