-
Notifications
You must be signed in to change notification settings - Fork 33
feat(generated)!: regenerate from spec (6 changes) #489
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
workos-sdk-automation
wants to merge
8
commits into
main
Choose a base branch
from
oagen/spec-update-146a9a64fecd6bc4ccf8f0925608292c73b97ae6
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
8 commits
Select commit
Hold shift + click to select a range
aecbafb
feat(authorization)!: Remove search param from listResources operation
workos-sdk-automation[bot] 8b925c4
feat(organization_membership): Extract organization membership method…
workos-sdk-automation[bot] 67ac3d6
chore(audit_logs): Consolidate audit log action and export models
workos-sdk-automation[bot] c13ee54
chore(webhooks): Consolidate webhook endpoint models
workos-sdk-automation[bot] 5f37af6
chore(generated): Regenerate manifest and types with model consolidation
workos-sdk-automation[bot] f041552
chore(generated): shared regenerated files
workos-sdk-automation[bot] d01e57b
chore(generated): add release notes fragment
workos-sdk-automation[bot] bf24ce2
this is up top now
gjtorikian File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
17 changes: 17 additions & 0 deletions
17
.changelog-pending/2026-05-20T20-29-55-146a9a64fecd6bc4ccf8f0925608292c73b97ae6.md
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,17 @@ | ||
| * [#489](https://github.com/workos/workos-ruby/pull/489) Update generated SDK code | ||
|
|
||
| **⚠️ Breaking** | ||
| * **authorization:** Remove search param from listResources operation | ||
| * Removed optional `search` parameter from `list_resources` method | ||
| * This is a breaking change as the parameter is no longer available for resource filtering | ||
|
|
||
| **Features** | ||
| * **authorization:** Add filtering parameters to role assignment operations | ||
| * Added `resource_id`, `resource_external_id`, `resource_type_slug` optional parameters to `list_role_assignments` | ||
| * Added `role_slug` optional parameter to `list_role_assignments_for_resource_by_external_id` | ||
| * Added `role_slug` optional parameter to `list_role_assignments_for_resource` | ||
| * **organization_membership:** Extract organization membership methods to dedicated service | ||
| * Created new `OrganizationMembershipService` with all organization membership operations | ||
| * Moved `list_organization_memberships`, `create_organization_membership`, `get_organization_membership`, `update_organization_membership`, `delete_organization_membership`, `deactivate_organization_membership`, `reactivate_organization_membership` from `UserManagement` to `OrganizationMembershipService` | ||
| * Moved `list_organization_membership_groups` from `UserManagementOrganizationMembershipGroups` to `OrganizationMembershipService` | ||
| * Updated client to expose `organization_membership` method instead of `user_management_organization_membership_groups` |
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1 +1 @@ | ||
| a10d9ecb766d2dd996aecb19aa9c801d78bb7c26 | ||
| 13aaa9a125fc87d1ed23acd5ef740382510296be |
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
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
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
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
Oops, something went wrong.
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The old code referenced
WorkOS::AuditLogSchema, which was renamed toWorkOS::AuditLogSchemaDtoin this PR. The updated code should useWorkOS::AuditLogSchemaDto, but instead it now referencesWorkOS::AuditLogSchemaJson— a separate, pre-existing class with a different field set (object,version,actor,targets,metadata,created_at) vs. whatAuditLogSchemaDtoexposes (actor,targets,metadata). Any caller readingAuditLogAction#schemawill receive the wrong object type, and typed code relying on the.rbiannotation will break at runtime.