google-apis-dialogflow_v3beta1 0.53.0 → 0.55.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: c5fe84cee7284e7f46f5b0452cbfeeb174558fa977a87148a136735e1eaaee14
|
4
|
+
data.tar.gz: f3d30f06f49f1a8f1cecf8265c14cef24dee8a22ecdc96efd2b99dd242130274
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 85134ddd0277bc1d884330465538fafd2fb036298e50681f007d05f58206227d6d3fe126b3f2b32fb2eeea843c3b2b1b725e4e8d109cd21c8ea0c091616a7406
|
7
|
+
data.tar.gz: '008bc7d746a18e4a21ded96df01bf782f9b01319d90fede7b0228c0d33edc213c50822faa4a125647247900cdc977880d8e58b9587baa261220a45a4ef543f3f'
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Release history for google-apis-dialogflow_v3beta1
|
2
2
|
|
3
|
+
### v0.55.0 (2023-04-02)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20230331
|
6
|
+
|
7
|
+
### v0.54.0 (2023-03-26)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20230316
|
10
|
+
|
3
11
|
### v0.53.0 (2023-03-12)
|
4
12
|
|
5
13
|
* Regenerated from discovery document revision 20230304
|
@@ -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::DialogflowV3beta1::GoogleCloudDialogflowCxV3Intent]
|
283
283
|
attr_accessor :triggered_intent
|
@@ -1202,7 +1202,10 @@ module Google
|
|
1202
1202
|
# enhanced version of the specified model for the language does not exist, then
|
1203
1203
|
# the speech is recognized using the standard version of the specified model.
|
1204
1204
|
# Refer to [Cloud Speech API documentation](https://cloud.google.com/speech-to-
|
1205
|
-
# text/docs/basics#select-model) for more details.
|
1205
|
+
# text/docs/basics#select-model) for more details. If you specify a model, the
|
1206
|
+
# following models typically have the best performance: - phone_call (best for
|
1207
|
+
# Agent Assist and telephony) - latest_short (best for Dialogflow non-telephony)
|
1208
|
+
# - command_and_search (best for very short utterances and commands)
|
1206
1209
|
# Corresponds to the JSON property `model`
|
1207
1210
|
# @return [String]
|
1208
1211
|
attr_accessor :model
|
@@ -1257,7 +1260,7 @@ module Google
|
|
1257
1260
|
# An intent represents a user's intent to interact with a conversational agent.
|
1258
1261
|
# You can provide information for the Dialogflow API to use to match user input
|
1259
1262
|
# to an intent by adding training phrases (i.e., examples of user input) to your
|
1260
|
-
# intent.
|
1263
|
+
# intent. Next ID: 15
|
1261
1264
|
class GoogleCloudDialogflowCxV3Intent
|
1262
1265
|
include Google::Apis::Core::Hashable
|
1263
1266
|
|
@@ -2739,6 +2742,11 @@ module Google
|
|
2739
2742
|
# @return [String]
|
2740
2743
|
attr_accessor :detect_intent_response_id
|
2741
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
|
+
|
2742
2750
|
# Represents fulfillment information communicated to the webhook.
|
2743
2751
|
# Corresponds to the JSON property `fulfillmentInfo`
|
2744
2752
|
# @return [Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3WebhookRequestFulfillmentInfo]
|
@@ -2811,6 +2819,7 @@ module Google
|
|
2811
2819
|
# Update properties of this object
|
2812
2820
|
def update!(**args)
|
2813
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)
|
2814
2823
|
@fulfillment_info = args[:fulfillment_info] if args.key?(:fulfillment_info)
|
2815
2824
|
@intent_info = args[:intent_info] if args.key?(:intent_info)
|
2816
2825
|
@language_code = args[:language_code] if args.key?(:language_code)
|
@@ -5664,7 +5673,10 @@ module Google
|
|
5664
5673
|
# enhanced version of the specified model for the language does not exist, then
|
5665
5674
|
# the speech is recognized using the standard version of the specified model.
|
5666
5675
|
# Refer to [Cloud Speech API documentation](https://cloud.google.com/speech-to-
|
5667
|
-
# text/docs/basics#select-model) for more details.
|
5676
|
+
# text/docs/basics#select-model) for more details. If you specify a model, the
|
5677
|
+
# following models typically have the best performance: - phone_call (best for
|
5678
|
+
# Agent Assist and telephony) - latest_short (best for Dialogflow non-telephony)
|
5679
|
+
# - command_and_search (best for very short utterances and commands)
|
5668
5680
|
# Corresponds to the JSON property `model`
|
5669
5681
|
# @return [String]
|
5670
5682
|
attr_accessor :model
|
@@ -5920,6 +5932,7 @@ module Google
|
|
5920
5932
|
end
|
5921
5933
|
|
5922
5934
|
# Represents an example that the agent is trained on to identify the intent.
|
5935
|
+
# Next ID: 15
|
5923
5936
|
class GoogleCloudDialogflowCxV3beta1IntentTrainingPhrase
|
5924
5937
|
include Google::Apis::Core::Hashable
|
5925
5938
|
|
@@ -9364,6 +9377,11 @@ module Google
|
|
9364
9377
|
# @return [String]
|
9365
9378
|
attr_accessor :detect_intent_response_id
|
9366
9379
|
|
9380
|
+
# If DTMF was provided as input, this field will contain the DTMF digits.
|
9381
|
+
# Corresponds to the JSON property `dtmfDigits`
|
9382
|
+
# @return [String]
|
9383
|
+
attr_accessor :dtmf_digits
|
9384
|
+
|
9367
9385
|
# Represents fulfillment information communicated to the webhook.
|
9368
9386
|
# Corresponds to the JSON property `fulfillmentInfo`
|
9369
9387
|
# @return [Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1WebhookRequestFulfillmentInfo]
|
@@ -9436,6 +9454,7 @@ module Google
|
|
9436
9454
|
# Update properties of this object
|
9437
9455
|
def update!(**args)
|
9438
9456
|
@detect_intent_response_id = args[:detect_intent_response_id] if args.key?(:detect_intent_response_id)
|
9457
|
+
@dtmf_digits = args[:dtmf_digits] if args.key?(:dtmf_digits)
|
9439
9458
|
@fulfillment_info = args[:fulfillment_info] if args.key?(:fulfillment_info)
|
9440
9459
|
@intent_info = args[:intent_info] if args.key?(:intent_info)
|
9441
9460
|
@language_code = args[:language_code] if args.key?(:language_code)
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module DialogflowV3beta1
|
18
18
|
# Version of the google-apis-dialogflow_v3beta1 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.55.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
|
@@ -3411,6 +3411,7 @@ module Google
|
|
3411
3411
|
# @private
|
3412
3412
|
class Representation < Google::Apis::Core::JsonRepresentation
|
3413
3413
|
property :detect_intent_response_id, as: 'detectIntentResponseId'
|
3414
|
+
property :dtmf_digits, as: 'dtmfDigits'
|
3414
3415
|
property :fulfillment_info, as: 'fulfillmentInfo', class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3WebhookRequestFulfillmentInfo, decorator: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3WebhookRequestFulfillmentInfo::Representation
|
3415
3416
|
|
3416
3417
|
property :intent_info, as: 'intentInfo', class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3WebhookRequestIntentInfo, decorator: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3WebhookRequestIntentInfo::Representation
|
@@ -5212,6 +5213,7 @@ module Google
|
|
5212
5213
|
# @private
|
5213
5214
|
class Representation < Google::Apis::Core::JsonRepresentation
|
5214
5215
|
property :detect_intent_response_id, as: 'detectIntentResponseId'
|
5216
|
+
property :dtmf_digits, as: 'dtmfDigits'
|
5215
5217
|
property :fulfillment_info, as: 'fulfillmentInfo', class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1WebhookRequestFulfillmentInfo, decorator: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1WebhookRequestFulfillmentInfo::Representation
|
5216
5218
|
|
5217
5219
|
property :intent_info, as: 'intentInfo', class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1WebhookRequestIntentInfo, decorator: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1WebhookRequestIntentInfo::Representation
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-dialogflow_v3beta1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.55.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_v3beta1/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-dialogflow_v3beta1/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-dialogflow_v3beta1/v0.55.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-dialogflow_v3beta1
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|