google-apis-dialogflow_v2 0.56.0 → 0.58.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: 889eddbc55d97d971f180d48523ed27416793cab61dba11b302ee2997c90d312
|
4
|
+
data.tar.gz: 44dab2b86c486e10e3070bcfa5652cebf2cccc319d0a9b4bced16561212fcf0e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1d30bccab51132562eb30efc594a4c8d5921116403438fa2aab568dd687415d27af822adec52dfd90bf87b484cc05727fe680f53058b157638df7492744a8caa
|
7
|
+
data.tar.gz: 27af10faa069a44a1e8a7126eee473790d5c1c4d037a6b0ae1fb28c46862f129d474b94ca3936cb6bcce642af51802effd370dbd8021b4b4f506b1689a17db69
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Release history for google-apis-dialogflow_v2
|
2
2
|
|
3
|
+
### v0.58.0 (2023-04-23)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20230418
|
6
|
+
|
7
|
+
### v0.57.0 (2023-04-02)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20230331
|
10
|
+
|
3
11
|
### v0.56.0 (2023-03-26)
|
4
12
|
|
5
13
|
* Regenerated from discovery document revision 20230316
|
@@ -659,8 +659,8 @@ module Google
|
|
659
659
|
# @return [String]
|
660
660
|
attr_accessor :agent_content
|
661
661
|
|
662
|
-
# The URI to a file containing the exported agent. This field is populated
|
663
|
-
#
|
662
|
+
# The URI to a file containing the exported agent. This field is populated if `
|
663
|
+
# agent_uri` is specified in ExportAgentRequest.
|
664
664
|
# Corresponds to the JSON property `agentUri`
|
665
665
|
# @return [String]
|
666
666
|
attr_accessor :agent_uri
|
@@ -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)
|
@@ -3687,8 +3693,8 @@ module Google
|
|
3687
3693
|
# @return [String]
|
3688
3694
|
attr_accessor :agent_content
|
3689
3695
|
|
3690
|
-
# The URI to a file containing the exported agent. This field is populated
|
3691
|
-
#
|
3696
|
+
# The URI to a file containing the exported agent. This field is populated if `
|
3697
|
+
# agent_uri` is specified in ExportAgentRequest.
|
3692
3698
|
# Corresponds to the JSON property `agentUri`
|
3693
3699
|
# @return [String]
|
3694
3700
|
attr_accessor :agent_uri
|
@@ -5770,6 +5776,11 @@ module Google
|
|
5770
5776
|
# @return [String]
|
5771
5777
|
attr_accessor :detect_intent_response_id
|
5772
5778
|
|
5779
|
+
# If DTMF was provided as input, this field will contain the DTMF digits.
|
5780
|
+
# Corresponds to the JSON property `dtmfDigits`
|
5781
|
+
# @return [String]
|
5782
|
+
attr_accessor :dtmf_digits
|
5783
|
+
|
5773
5784
|
# Represents fulfillment information communicated to the webhook.
|
5774
5785
|
# Corresponds to the JSON property `fulfillmentInfo`
|
5775
5786
|
# @return [Google::Apis::DialogflowV2::GoogleCloudDialogflowCxV3beta1WebhookRequestFulfillmentInfo]
|
@@ -5842,6 +5853,7 @@ module Google
|
|
5842
5853
|
# Update properties of this object
|
5843
5854
|
def update!(**args)
|
5844
5855
|
@detect_intent_response_id = args[:detect_intent_response_id] if args.key?(:detect_intent_response_id)
|
5856
|
+
@dtmf_digits = args[:dtmf_digits] if args.key?(:dtmf_digits)
|
5845
5857
|
@fulfillment_info = args[:fulfillment_info] if args.key?(:fulfillment_info)
|
5846
5858
|
@intent_info = args[:intent_info] if args.key?(:intent_info)
|
5847
5859
|
@language_code = args[:language_code] if args.key?(:language_code)
|
@@ -9477,6 +9489,12 @@ module Google
|
|
9477
9489
|
attr_accessor :disable_no_speech_recognized_event
|
9478
9490
|
alias_method :disable_no_speech_recognized_event?, :disable_no_speech_recognized_event
|
9479
9491
|
|
9492
|
+
# Enable automatic punctuation option at the speech backend.
|
9493
|
+
# Corresponds to the JSON property `enableAutomaticPunctuation`
|
9494
|
+
# @return [Boolean]
|
9495
|
+
attr_accessor :enable_automatic_punctuation
|
9496
|
+
alias_method :enable_automatic_punctuation?, :enable_automatic_punctuation
|
9497
|
+
|
9480
9498
|
# If `true`, Dialogflow returns SpeechWordInfo in StreamingRecognitionResult
|
9481
9499
|
# with information about the recognized speech words, e.g. start and end time
|
9482
9500
|
# offsets. If false or unspecified, Speech doesn't return any word-level
|
@@ -9560,6 +9578,7 @@ module Google
|
|
9560
9578
|
def update!(**args)
|
9561
9579
|
@audio_encoding = args[:audio_encoding] if args.key?(:audio_encoding)
|
9562
9580
|
@disable_no_speech_recognized_event = args[:disable_no_speech_recognized_event] if args.key?(:disable_no_speech_recognized_event)
|
9581
|
+
@enable_automatic_punctuation = args[:enable_automatic_punctuation] if args.key?(:enable_automatic_punctuation)
|
9563
9582
|
@enable_word_info = args[:enable_word_info] if args.key?(:enable_word_info)
|
9564
9583
|
@language_code = args[:language_code] if args.key?(:language_code)
|
9565
9584
|
@model = args[:model] if args.key?(:model)
|
@@ -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.58.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 = "20230418"
|
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
|
@@ -5392,6 +5394,7 @@ module Google
|
|
5392
5394
|
class Representation < Google::Apis::Core::JsonRepresentation
|
5393
5395
|
property :audio_encoding, as: 'audioEncoding'
|
5394
5396
|
property :disable_no_speech_recognized_event, as: 'disableNoSpeechRecognizedEvent'
|
5397
|
+
property :enable_automatic_punctuation, as: 'enableAutomaticPunctuation'
|
5395
5398
|
property :enable_word_info, as: 'enableWordInfo'
|
5396
5399
|
property :language_code, as: 'languageCode'
|
5397
5400
|
property :model, as: 'model'
|
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.58.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-23 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.58.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: []
|