Skip to content

Commit 41978c9

Browse files
waleedlatif1claude
andcommitted
fix(luma): address PR review feedback
- 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>
1 parent 58ac65a commit 41978c9

File tree

3 files changed

+2
-3
lines changed

3 files changed

+2
-3
lines changed

apps/docs/content/docs/en/tools/luma.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -242,7 +242,7 @@ Retrieve the guest list for a Luma event with optional filtering by approval sta
242242

243243
### `luma_add_guests`
244244

245-
Add guests to a Luma event by email. Guests are added with
245+
Add guests to a Luma event by email. Guests are added with Going (approved) status and receive one ticket of the default ticket type.
246246

247247
#### Input
248248

apps/sim/tools/luma/add_guests.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ export const addGuestsTool: ToolConfig<LumaAddGuestsParams, LumaAddGuestsRespons
66
id: 'luma_add_guests',
77
name: 'Luma Add Guests',
88
description:
9-
'Add guests to a Luma event by email. Guests are added with "Going" (approved) status and receive one ticket of the default ticket type.',
9+
'Add guests to a Luma event by email. Guests are added with Going (approved) status and receive one ticket of the default ticket type.',
1010
version: '1.0.0',
1111

1212
params: {

apps/sim/tools/luma/list_events.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,6 @@ export const listEventsTool: ToolConfig<LumaListEventsParams, LumaListEventsResp
102102
geoLatitude: (event.geo_latitude as string) ?? null,
103103
geoLongitude: (event.geo_longitude as string) ?? null,
104104
calendarId: (event.calendar_id as string) ?? null,
105-
hosts: [],
106105
}
107106
})
108107

0 commit comments

Comments
 (0)