google-apis-dialogflow_v2 0.57.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
@@ -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.
|
281
281
|
# Corresponds to the JSON property `triggeredIntent`
|
282
282
|
# @return [Google::Apis::DialogflowV2::GoogleCloudDialogflowCxV3Intent]
|
283
283
|
attr_accessor :triggered_intent
|
@@ -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
|
@@ -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.
|
1264
1264
|
class GoogleCloudDialogflowCxV3Intent
|
1265
1265
|
include Google::Apis::Core::Hashable
|
1266
1266
|
|
@@ -3693,8 +3693,8 @@ module Google
|
|
3693
3693
|
# @return [String]
|
3694
3694
|
attr_accessor :agent_content
|
3695
3695
|
|
3696
|
-
# The URI to a file containing the exported agent. This field is populated
|
3697
|
-
#
|
3696
|
+
# The URI to a file containing the exported agent. This field is populated if `
|
3697
|
+
# agent_uri` is specified in ExportAgentRequest.
|
3698
3698
|
# Corresponds to the JSON property `agentUri`
|
3699
3699
|
# @return [String]
|
3700
3700
|
attr_accessor :agent_uri
|
@@ -4443,7 +4443,6 @@ module Google
|
|
4443
4443
|
end
|
4444
4444
|
|
4445
4445
|
# Represents an example that the agent is trained on to identify the intent.
|
4446
|
-
# Next ID: 15
|
4447
4446
|
class GoogleCloudDialogflowCxV3beta1IntentTrainingPhrase
|
4448
4447
|
include Google::Apis::Core::Hashable
|
4449
4448
|
|
@@ -9490,6 +9489,12 @@ module Google
|
|
9490
9489
|
attr_accessor :disable_no_speech_recognized_event
|
9491
9490
|
alias_method :disable_no_speech_recognized_event?, :disable_no_speech_recognized_event
|
9492
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
|
+
|
9493
9498
|
# If `true`, Dialogflow returns SpeechWordInfo in StreamingRecognitionResult
|
9494
9499
|
# with information about the recognized speech words, e.g. start and end time
|
9495
9500
|
# offsets. If false or unspecified, Speech doesn't return any word-level
|
@@ -9573,6 +9578,7 @@ module Google
|
|
9573
9578
|
def update!(**args)
|
9574
9579
|
@audio_encoding = args[:audio_encoding] if args.key?(:audio_encoding)
|
9575
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)
|
9576
9582
|
@enable_word_info = args[:enable_word_info] if args.key?(:enable_word_info)
|
9577
9583
|
@language_code = args[:language_code] if args.key?(:language_code)
|
9578
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
|
@@ -5394,6 +5394,7 @@ module Google
|
|
5394
5394
|
class Representation < Google::Apis::Core::JsonRepresentation
|
5395
5395
|
property :audio_encoding, as: 'audioEncoding'
|
5396
5396
|
property :disable_no_speech_recognized_event, as: 'disableNoSpeechRecognizedEvent'
|
5397
|
+
property :enable_automatic_punctuation, as: 'enableAutomaticPunctuation'
|
5397
5398
|
property :enable_word_info, as: 'enableWordInfo'
|
5398
5399
|
property :language_code, as: 'languageCode'
|
5399
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-04-
|
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: []
|