| 55 | |
| 56 | |
| 57 | class AddParticipantsAction(TypedDict): |
| 58 | actionType: Literal["add participants"] |
| 59 | eventReference: NotRequired[ |
| 60 | Annotated[EventReference, Doc("event to be augmented; if not specified assume last event discussed")] |
| 61 | ] |
| 62 | participants: NotRequired[Annotated[list[str], "new participants (one or more)"]] |
| 63 | |
| 64 | |
| 65 | class RemoveEventAction(TypedDict): |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…