feat: add organization templates, B2B integration config, and network ACL HMAC signatures - #888
Merged
Merged
Conversation
fern-api
Bot
force-pushed
the
fern-bot/2026-09-01_05-44-22_906
branch
from
September 1, 2026 10:27
01c84f4 to
3913683
Compare
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-01_05-44-22_906
branch
from
September 2, 2026 09:35
3913683 to
1c6d31d
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
Merged
rmad17
added a commit
that referenced
this pull request
Sep 2, 2026
⚠️ **Breaking Changes** - Client `app_type` `b2b_integration` removed (configure via `b2b_integration_configuration` instead); `EventStreamCloudEventContextTenant.tenant_id` renamed to `id` [\#888](#888) ([fern-api[bot]](https://github.com/apps/fern-api)) **Added** - Organization templates client, client B2B integration configuration, network ACL HTTP message signatures and key deletion, connection profile SCIM provisioning, OIDC/Okta pushed authorization request support, SAML `discovery_url`/`oidc_metadata`/`cross_app_access_resource_app` options, tenant `local_resource_discovery` flag, forms `server_key`, `post-credential-validation` action trigger and `consent-tenant-scopes` screen group, and `UnprocessableEntityError` for HTTP 422 [\#888](#888) ([fern-api[bot]](https://github.com/apps/fern-api)) **Fixed** - Raw `management.connections` client now surfaces 422 errors; raw `management.connections.scim_configuration` now surfaces 409 errors; `management.users.organizations.list` docstring updated for checkpoint pagination [\#888](#888) ([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.
Breaking Changes⚠️
app_typeb2b_integrationremoved: theb2b_integrationvalue is removed from the allowed clientapp_typevalues and is rejected on create/update. Configure a B2B integration through the newb2b_integration_configurationfield instead.EventStreamCloudEventContextTenantrenames itstenant_idfield toid(wire nametenant_id->id). Code reading.tenant_idon this event-stream context object must read.idinstead.Added
management.organization_templatesclient withlist,create,get,update, andlist_organizationsfor managing reusable organization templates, plusmanagement.organizations.organization_template(get,assign_organization_template,unassign_organization_template) to assign a template to an organization. Access tokens can now be scoped with the newcreate:,read:, andupdate:organization_templatespermissions.management.clientscreate/update now acceptb2b_integration_configuration, with anintegration_typeofcustom_auth_server,third_party, orapplication, to configure a client as a B2B integration. Client, update, and rotate-secret responses expose the same field.http_message_signaturematch undermatch/not_match, andmanagement.keys.network_aclsgains adeletemethod to remove a signing key. Access tokens can now be scoped with the newdelete:network_acl_keyspermission.management.connection_profilescreate/update now accept aprovisioningobject to configure SCIM provisioning, including tokens, token scopes, and default/max token expiry. Connection profile responses expose the same field.enable_pushed_authorization_requests,pushed_authorization_request_endpoint,require_pushed_authorization_requests), and SAML connection options gaindiscovery_url,oidc_metadata, andcross_app_access_resource_app.TenantSettingsFlagsgains alocal_resource_discoveryflag controlling whether the Local Resource Discovery endpoint is enabled.FormWidgetGMapsAddressConfiggains aserver_keyfield.post-credential-validationis now supported, and screen groups gainconsent-tenant-scopes.UnprocessableEntityErrormaps HTTP422responses.Fixed
management.connections(raw client) now surfaces422errors instead of an unhandled response.management.connections.scim_configuration(raw client) now surfaces409errors instead of an unhandled response.management.users.organizations.list: docstring now documents checkpoint pagination (from/take/next). No signature or type change.