pl-api: add participation_request_count for events

Signed-off-by: nicole mikołajczyk <git@mkljczk.pl>
This commit is contained in:
nicole mikołajczyk
2026-01-30 07:23:58 +01:00
parent c58d60a8e7
commit 0eba5741c1

View File

@ -36,6 +36,7 @@ const statusEventSchema = v.object({
end_time: v.fallback(v.nullable(datetimeSchema), null),
join_mode: v.fallback(v.nullable(v.picklist(['free', 'restricted', 'invite', 'external'])), null),
participants_count: v.fallback(v.number(), 0),
participation_request_count: v.fallback(v.number(), 0),
location: v.fallback(v.nullable(locationSchema), null),
join_state: v.fallback(v.nullable(v.picklist(['pending', 'reject', 'accept'])), null),
});