fix(generated): Move organization connected-account operations onto Pipes, remove stale types - #446
Merged
Merged
Conversation
…iKeys, AuditLogs, Authorization, ClientApi, Connect, DirectorySync, Events, FeatureFlags, Groups, MultiFactorAuth, OrganizationDomains, OrganizationMembership, Organizations, Pipes, PipesProvider, PlatformTeams, Radar, SSO, UserManagement, Vault, Webhooks, Widgets
Contributor
|
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.
Summary
fix(pipes): Move organization connected-account operations onto Pipes
The previous regeneration exposed the organization connected-account endpoints on a standalone
OrganizationsDataProvidersresource. That was the wrong home (workos/openapi-spec#179 corrects the service ownership), and it never shipped in a release. The same five endpoints are now on thePipesresource. Nothing was added to or removed from the API itself; only where the SDK exposes it changed.$workos->organizationsDataProviders().getOrganizationConnectedAccount$workos->pipes().getOrganizationConnectedAccount$workos->organizationsDataProviders().createOrganizationConnectedAccount$workos->pipes().createOrganizationConnectedAccount$workos->organizationsDataProviders().updateOrganizationConnectedAccount$workos->pipes().updateOrganizationConnectedAccount$workos->organizationsDataProviders().deleteOrganizationConnectedAccount$workos->pipes().deleteOrganizationConnectedAccount$workos->organizationsDataProviders().listOrganizationDataProviders$workos->pipes().listOrganizationDataProvidersMethod names are unchanged; only the accessor moved.
fix(pipes): Remove unused types left behind by earlier renames
CreateDataIntegrationAuthMethods: not referenced by any SDK method.These were public but unreachable through any SDK method, so this is treated as cleanup rather than an API change.
fix(multi_factor_auth): Change errors for endpoint
POST /auth/factors/{id}/challengePOST /auth/factors/{id}/challenge.Triggered by workos/openapi-spec@bfe7aed
BEGIN_COMMIT_OVERRIDE
fix(pipes): Move organization connected-account operations onto Pipes (#446)
fix(pipes): Remove unused types left behind by earlier renames (#446)
fix(multi_factor_auth): Change errors for endpoint
POST /auth/factors/{id}/challenge(#446)END_COMMIT_OVERRIDE