chore(proto): update generated SDK with latest Permify definitions#404
chore(proto): update generated SDK with latest Permify definitions#404omer-topal merged 1 commit intomainfrom
Conversation
|
Caution Review failedPull request was closed or merged during review 📝 WalkthroughWalkthroughThis PR introduces a new bulk permission check RPC endpoint to the Permission service alongside a version bump for OpenAPI metadata. The bulk endpoint supports checking permissions for up to 100 entities in a single request. Changes
Sequence DiagramsequenceDiagram
actor Client
participant PermissionService as Permission Service
participant Storage as Permission Storage
Client->>PermissionService: BulkCheckRequest<br/>(tenant_id, items[])
Note over PermissionService: Validate request<br/>(1-100 items, required fields)
loop For each item in request
PermissionService->>Storage: Check permission<br/>(entity, permission, subject)
Storage-->>PermissionService: Permission result
end
PermissionService-->>Client: BulkCheckResponse<br/>(results[])
Estimated code review effort🎯 3 (Moderate) | ⏱️ ~20 minutes Poem
🚥 Pre-merge checks | ✅ 2 | ❌ 1❌ Failed checks (1 warning)
✅ Passed checks (2 passed)
✏️ Tip: You can configure your own custom pre-merge checks in the settings. ✨ Finishing Touches🧪 Generate unit tests (beta)
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
Automatically created PR with the latest generated SDK from Permify proto definitions.
Summary by CodeRabbit
Release Notes
New Features
Updates