Fixed QueryResult Property - Dialogflow (#35575)

* allRequiredParamsSent is undefined.
Changed it to actual property: allRequiredParamsPresent

* comma and trailing space removed.
This commit is contained in:
khalilchoudhry
2019-05-24 09:58:53 -07:00
committed by Ryan Cavanaugh
parent bda5210e03
commit 9d22a46cd3
+5 -3
View File
@@ -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 <https://github.com/dyladan>, Tom Carrio <https://github.com/tcarrio>
// Definitions by: Daniel Dyla <https://github.com/dyladan>
// Tom Carrio <https://github.com/tcarrio>
// Khalil Choudhry <https://github.com/khalilchoudhry>
// 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;