From 9d22a46cd3c45137266c3bd064fd72572fc8a765 Mon Sep 17 00:00:00 2001 From: khalilchoudhry Date: Fri, 24 May 2019 21:58:53 +0500 Subject: [PATCH] Fixed QueryResult Property - Dialogflow (#35575) * allRequiredParamsSent is undefined. Changed it to actual property: allRequiredParamsPresent * comma and trailing space removed. --- types/dialogflow/index.d.ts | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/types/dialogflow/index.d.ts b/types/dialogflow/index.d.ts index 2c45256772..ac9b17f87f 100644 --- a/types/dialogflow/index.d.ts +++ b/types/dialogflow/index.d.ts @@ -1,6 +1,8 @@ -// Type definitions for dialogflow 0.9 +// Type definitions for dialogflow 1.0 // Project: https://github.com/googleapis/nodejs-dialogflow -// Definitions by: Daniel Dyla , Tom Carrio +// Definitions by: Daniel Dyla +// Tom Carrio +// Khalil Choudhry // Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped // TypeScript Version: 2.4 @@ -677,7 +679,7 @@ export interface QueryResult { speechRecognitionConfidence: number; action: string; parameters: any; - allRequiredParamsSent: boolean; + allRequiredParamsPresent: boolean; fulfillmentText: string; fulfillmentMessages: Message[]; webhookSource: string;