|
|
|
@ -20,9 +20,8 @@ We extend the send
|
|
|
|
type: string;
|
|
|
|
type: string;
|
|
|
|
content: unknown;
|
|
|
|
content: unknown;
|
|
|
|
room_id?: string;
|
|
|
|
room_id?: string;
|
|
|
|
|
|
|
|
future_timeout?: number; // new field
|
|
|
|
future_timeout?: number;
|
|
|
|
parent_future_id?: string; // new field
|
|
|
|
parent_future_id?: string;
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
```
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
|
|
@ -31,9 +30,8 @@ and the `"send_event"` response:
|
|
|
|
```
|
|
|
|
```
|
|
|
|
{
|
|
|
|
{
|
|
|
|
room_id: string;
|
|
|
|
room_id: string;
|
|
|
|
event_id?: string;
|
|
|
|
event_id?: string; // now optional
|
|
|
|
|
|
|
|
parent_future_id?: string; // new field
|
|
|
|
parent_future_id?: string;
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
```
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
|
|
|