Merged
Conversation
Contributor
Greptile SummaryVersion bump release (7.79.3 → 7.80.0) that includes two feature additions merged in previous commits: API Key Management (#1434)
Invitation Resent Event (#1433)
All changes follow TypeScript best practices, include comprehensive test coverage, and properly handle sensitive data (no logging of API key values). Confidence Score: 5/5
Important Files Changed
Sequence DiagramsequenceDiagram
participant Client as Client Application
participant SDK as WorkOS SDK
participant API as WorkOS API
Note over Client,API: API Key Management Flow
rect rgb(240, 248, 255)
Note right of Client: List Organization API Keys
Client->>SDK: organizations.listOrganizationApiKeys({organizationId, ...pagination})
SDK->>API: GET /organizations/:id/api_keys
API-->>SDK: List of ApiKey objects (without value field)
SDK-->>Client: AutoPaginatable<ApiKey>
end
rect rgb(255, 250, 240)
Note right of Client: Create Organization API Key
Client->>SDK: organizations.createOrganizationApiKey({organizationId, name, permissions})
SDK->>API: POST /organizations/:id/api_keys
API-->>SDK: CreatedApiKey object (includes value field)
SDK-->>Client: CreatedApiKey with full API key value
Note over Client: Full API key value only available on creation
end
rect rgb(255, 240, 245)
Note right of Client: Delete API Key
Client->>SDK: apiKeys.deleteApiKey(id)
SDK->>API: DELETE /api_keys/:id
API-->>SDK: 204 No Content
SDK-->>Client: void
end
rect rgb(245, 255, 245)
Note right of Client: Webhook Event Processing
API->>Client: Webhook: invitation.resent event
Client->>SDK: deserializeEvent(eventResponse)
SDK-->>Client: InvitationResentEvent with typed data
end
|
ericroberts
approved these changes
Jan 7, 2026
nholden
approved these changes
Jan 7, 2026
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.
Description
Includes: