From c1e4cdf739af2ec222d63a512d91dec037729457 Mon Sep 17 00:00:00 2001 From: Andrew Ferrazzutti Date: Wed, 17 Jul 2024 14:13:15 -0400 Subject: [PATCH] Mention new/edited fields from original spec --- proposals/4157-future-widget-api.md | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/proposals/4157-future-widget-api.md b/proposals/4157-future-widget-api.md index 922e36973..08d33ae9a 100644 --- a/proposals/4157-future-widget-api.md +++ b/proposals/4157-future-widget-api.md @@ -20,9 +20,8 @@ We extend the send type: string; content: unknown; room_id?: string; - - future_timeout?: number; - parent_future_id?: string; + future_timeout?: number; // new field + parent_future_id?: string; // new field } ``` @@ -31,9 +30,8 @@ and the `"send_event"` response: ``` { room_id: string; - event_id?: string; - - parent_future_id?: string; + event_id?: string; // now optional + parent_future_id?: string; // new field } ```