feat(luma): add Luma integration for event and guest management#3364
Merged
waleedlatif1 merged 3 commits intostagingfrom Feb 27, 2026
Merged
feat(luma): add Luma integration for event and guest management#3364waleedlatif1 merged 3 commits intostagingfrom
waleedlatif1 merged 3 commits intostagingfrom
Conversation
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
Contributor
Greptile SummaryThis PR adds a complete Luma integration with 6 tools for event and guest management. The implementation follows established patterns with proper type safety, API key handling using Key Changes:
Implementation Quality:
The integration is production-ready with no critical issues identified. Confidence Score: 5/5
Important Files Changed
Flowchart%%{init: {'theme': 'neutral'}}%%
flowchart TD
Start[User configures Luma block] --> Operation{Select Operation}
Operation -->|Get Event| GetEvent[luma_get_event]
Operation -->|Create Event| CreateEvent[luma_create_event]
Operation -->|Update Event| UpdateEvent[luma_update_event]
Operation -->|List Events| ListEvents[luma_list_events]
Operation -->|Get Guests| GetGuests[luma_get_guests]
Operation -->|Add Guests| AddGuests[luma_add_guests]
GetEvent --> API1[GET /v1/event/get]
CreateEvent --> API2[POST /v1/event/create]
UpdateEvent --> API3[POST /v1/event/update]
ListEvents --> API4[GET /v1/calendar/list-events]
GetGuests --> API5[GET /v1/event/get-guests]
AddGuests --> API6[POST /v1/event/add-guests]
API1 --> Parse1[Parse event + hosts]
API2 --> Parse2[Parse event + hosts]
API3 --> Parse3[Parse event + hosts]
API4 --> Parse4[Parse events array]
API5 --> Parse5[Parse guests array]
API6 --> Parse6[Parse guests array]
Parse1 --> Output[Return to workflow]
Parse2 --> Output
Parse3 --> Output
Parse4 --> Output
Parse5 --> Output
Parse6 --> Output
Last reviewed commit: 62ad76d |
Collaborator
Author
|
@cursor review |
Collaborator
Author
|
@greptile |
Add complete Luma (lu.ma) integration with 6 tools: get event, create event, update event, list calendar events, get guests, and add guests. Includes block configuration with wandConfig for timestamps/timezones/durations, advanced mode for optional fields, and generated documentation. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
- Remove hosts field from list_events transformResponse (not in LumaEventEntry type) - Fix truncated add_guests description by removing quotes that broke docs generator Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
- Use 'id' instead of 'event_id' in update_event request body per API spec - Fix add_guests to parse entries[].guest response structure instead of flat guests array Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
62ad76d to
dd145c0
Compare
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
Test plan