google-apis-dialogflow_v2 0.56.0 → 0.57.0
Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 4ce2b187f7e330114daf5d98fd08abc07716888671899fc2c7b8e93083d920b9
|
4
|
+
data.tar.gz: cb4a27ddb68a4b2cc1c2e1da4302aeb065d901565e99c31f491ef962831168c1
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: bd60567db4bd6a33a4039e643fd504681baf399ecc82a04379cb33396aa72413f9ab28d765107de500d21e4cff0690c69e8868fbeb1646895e9b858afe1d1c1e
|
7
|
+
data.tar.gz: b4563aa337f529b99c36795e21114514b2ac0ba9ab0307a0c3db56128fc7de12c3413c4c52a865557f59f96496d77b5960ab8d79eb9c20563b3b107356f4597b
|
data/CHANGELOG.md
CHANGED
@@ -277,7 +277,7 @@ module Google
|
|
277
277
|
# An intent represents a user's intent to interact with a conversational agent.
|
278
278
|
# You can provide information for the Dialogflow API to use to match user input
|
279
279
|
# to an intent by adding training phrases (i.e., examples of user input) to your
|
280
|
-
# intent.
|
280
|
+
# intent. Next ID: 15
|
281
281
|
# Corresponds to the JSON property `triggeredIntent`
|
282
282
|
# @return [Google::Apis::DialogflowV2::GoogleCloudDialogflowCxV3Intent]
|
283
283
|
attr_accessor :triggered_intent
|
@@ -1260,7 +1260,7 @@ module Google
|
|
1260
1260
|
# An intent represents a user's intent to interact with a conversational agent.
|
1261
1261
|
# You can provide information for the Dialogflow API to use to match user input
|
1262
1262
|
# to an intent by adding training phrases (i.e., examples of user input) to your
|
1263
|
-
# intent.
|
1263
|
+
# intent. Next ID: 15
|
1264
1264
|
class GoogleCloudDialogflowCxV3Intent
|
1265
1265
|
include Google::Apis::Core::Hashable
|
1266
1266
|
|
@@ -2742,6 +2742,11 @@ module Google
|
|
2742
2742
|
# @return [String]
|
2743
2743
|
attr_accessor :detect_intent_response_id
|
2744
2744
|
|
2745
|
+
# If DTMF was provided as input, this field will contain the DTMF digits.
|
2746
|
+
# Corresponds to the JSON property `dtmfDigits`
|
2747
|
+
# @return [String]
|
2748
|
+
attr_accessor :dtmf_digits
|
2749
|
+
|
2745
2750
|
# Represents fulfillment information communicated to the webhook.
|
2746
2751
|
# Corresponds to the JSON property `fulfillmentInfo`
|
2747
2752
|
# @return [Google::Apis::DialogflowV2::GoogleCloudDialogflowCxV3WebhookRequestFulfillmentInfo]
|
@@ -2814,6 +2819,7 @@ module Google
|
|
2814
2819
|
# Update properties of this object
|
2815
2820
|
def update!(**args)
|
2816
2821
|
@detect_intent_response_id = args[:detect_intent_response_id] if args.key?(:detect_intent_response_id)
|
2822
|
+
@dtmf_digits = args[:dtmf_digits] if args.key?(:dtmf_digits)
|
2817
2823
|
@fulfillment_info = args[:fulfillment_info] if args.key?(:fulfillment_info)
|
2818
2824
|
@intent_info = args[:intent_info] if args.key?(:intent_info)
|
2819
2825
|
@language_code = args[:language_code] if args.key?(:language_code)
|
@@ -4437,6 +4443,7 @@ module Google
|
|
4437
4443
|
end
|
4438
4444
|
|
4439
4445
|
# Represents an example that the agent is trained on to identify the intent.
|
4446
|
+
# Next ID: 15
|
4440
4447
|
class GoogleCloudDialogflowCxV3beta1IntentTrainingPhrase
|
4441
4448
|
include Google::Apis::Core::Hashable
|
4442
4449
|
|
@@ -5770,6 +5777,11 @@ module Google
|
|
5770
5777
|
# @return [String]
|
5771
5778
|
attr_accessor :detect_intent_response_id
|
5772
5779
|
|
5780
|
+
# If DTMF was provided as input, this field will contain the DTMF digits.
|
5781
|
+
# Corresponds to the JSON property `dtmfDigits`
|
5782
|
+
# @return [String]
|
5783
|
+
attr_accessor :dtmf_digits
|
5784
|
+
|
5773
5785
|
# Represents fulfillment information communicated to the webhook.
|
5774
5786
|
# Corresponds to the JSON property `fulfillmentInfo`
|
5775
5787
|
# @return [Google::Apis::DialogflowV2::GoogleCloudDialogflowCxV3beta1WebhookRequestFulfillmentInfo]
|
@@ -5842,6 +5854,7 @@ module Google
|
|
5842
5854
|
# Update properties of this object
|
5843
5855
|
def update!(**args)
|
5844
5856
|
@detect_intent_response_id = args[:detect_intent_response_id] if args.key?(:detect_intent_response_id)
|
5857
|
+
@dtmf_digits = args[:dtmf_digits] if args.key?(:dtmf_digits)
|
5845
5858
|
@fulfillment_info = args[:fulfillment_info] if args.key?(:fulfillment_info)
|
5846
5859
|
@intent_info = args[:intent_info] if args.key?(:intent_info)
|
5847
5860
|
@language_code = args[:language_code] if args.key?(:language_code)
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module DialogflowV2
|
18
18
|
# Version of the google-apis-dialogflow_v2 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.57.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.12.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20230331"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -3543,6 +3543,7 @@ module Google
|
|
3543
3543
|
# @private
|
3544
3544
|
class Representation < Google::Apis::Core::JsonRepresentation
|
3545
3545
|
property :detect_intent_response_id, as: 'detectIntentResponseId'
|
3546
|
+
property :dtmf_digits, as: 'dtmfDigits'
|
3546
3547
|
property :fulfillment_info, as: 'fulfillmentInfo', class: Google::Apis::DialogflowV2::GoogleCloudDialogflowCxV3WebhookRequestFulfillmentInfo, decorator: Google::Apis::DialogflowV2::GoogleCloudDialogflowCxV3WebhookRequestFulfillmentInfo::Representation
|
3547
3548
|
|
3548
3549
|
property :intent_info, as: 'intentInfo', class: Google::Apis::DialogflowV2::GoogleCloudDialogflowCxV3WebhookRequestIntentInfo, decorator: Google::Apis::DialogflowV2::GoogleCloudDialogflowCxV3WebhookRequestIntentInfo::Representation
|
@@ -4380,6 +4381,7 @@ module Google
|
|
4380
4381
|
# @private
|
4381
4382
|
class Representation < Google::Apis::Core::JsonRepresentation
|
4382
4383
|
property :detect_intent_response_id, as: 'detectIntentResponseId'
|
4384
|
+
property :dtmf_digits, as: 'dtmfDigits'
|
4383
4385
|
property :fulfillment_info, as: 'fulfillmentInfo', class: Google::Apis::DialogflowV2::GoogleCloudDialogflowCxV3beta1WebhookRequestFulfillmentInfo, decorator: Google::Apis::DialogflowV2::GoogleCloudDialogflowCxV3beta1WebhookRequestFulfillmentInfo::Representation
|
4384
4386
|
|
4385
4387
|
property :intent_info, as: 'intentInfo', class: Google::Apis::DialogflowV2::GoogleCloudDialogflowCxV3beta1WebhookRequestIntentInfo, decorator: Google::Apis::DialogflowV2::GoogleCloudDialogflowCxV3beta1WebhookRequestIntentInfo::Representation
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-dialogflow_v2
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.57.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-
|
11
|
+
date: 2023-04-02 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: google-apis-core
|
@@ -58,7 +58,7 @@ licenses:
|
|
58
58
|
metadata:
|
59
59
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
60
60
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-dialogflow_v2/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-dialogflow_v2/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-dialogflow_v2/v0.57.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-dialogflow_v2
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|