From 71e805d235845d3d827b2d2491d7144e64ff0a61 Mon Sep 17 00:00:00 2001 From: Daniel McCarthy Date: Mon, 18 Dec 2017 13:26:07 -0500 Subject: [PATCH] Adding Messages Array Adding messages array would allow clients on v1 to make use of multi-line messages. This could be further enhanced to support other message response types. --- ts/Interfaces.ts | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/ts/Interfaces.ts b/ts/Interfaces.ts index e0413f1..b48be79 100644 --- a/ts/Interfaces.ts +++ b/ts/Interfaces.ts @@ -30,7 +30,11 @@ export interface IServerResponse { resolvedQuery: string, speech: string; fulfillment?: { - speech: string + speech: string, + messages?: { + type: number, + speech: string, + } } }; status: {