feat(generated): AuditLogs (batch 56391ebd)#126
Conversation
Greptile SummaryAuto-generated SDK regeneration syncing the Rust SDK with spec changes from
Confidence Score: 4/5Safe to merge — all changes are auto-generated with no hand-written logic altered. The only substantive code impact is registering the new
Important Files Changed
|
| "DELETE /user_management/redirect_uris/{id}": { | ||
| "sdkMethod": "delete_redirect_uris", | ||
| "service": "user_management" | ||
| } |
There was a problem hiding this comment.
The SDK method name
delete_redirect_uris (plural) is inconsistent with the single-resource endpoint DELETE /user_management/redirect_uris/{id}. Every other DELETE /{resource}/{id} method in the manifest uses the singular form — for example delete_redirect_uri would align with the pattern. Using the plural form here may be confusing for callers who expect the method to delete one resource by ID.
| "DELETE /user_management/redirect_uris/{id}": { | |
| "sdkMethod": "delete_redirect_uris", | |
| "service": "user_management" | |
| } | |
| "DELETE /user_management/redirect_uris/{id}": { | |
| "sdkMethod": "delete_redirect_uri", | |
| "service": "user_management" | |
| } |
Prompt To Fix With AI
This is a comment left during a code review.
Path: .oagen-manifest.json
Line: 2083-2086
Comment:
The SDK method name `delete_redirect_uris` (plural) is inconsistent with the single-resource endpoint `DELETE /user_management/redirect_uris/{id}`. Every other `DELETE /{resource}/{id}` method in the manifest uses the singular form — for example `delete_redirect_uri` would align with the pattern. Using the plural form here may be confusing for callers who expect the method to delete one resource by ID.
```suggestion
"DELETE /user_management/redirect_uris/{id}": {
"sdkMethod": "delete_redirect_uri",
"service": "user_management"
}
```
How can I resolve this? If you propose a fix, please make it concise.Note: If this suggestion doesn't match your team's coding style, reply to this and let me know. I'll remember it for next time!
Summary
Regenerated SDK from spec changes.
Triggered by workos/openapi-spec@be67bca