google-apis-dialogflow_v2 0.126.0 → 0.127.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 899e2ac63ad0654e6d425520f30c052f8f530064efe8f4da2384dbdc3628c175
|
|
4
|
+
data.tar.gz: 7980e2ef08035175773553f3b7f1155d73fff00051461a1e45b3d72178c6bb48
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: b70e6a51474bba44962e2c0b58b8c5d984f27c49127475adc58a2e8803c2c6f1547a3424e5fe629c8463ef17ff5cce5dba2f4c9872d117dae8f6fc8328e88fce
|
|
7
|
+
data.tar.gz: 6a7edec35c6b7623874280b0ed6e8d3b3a42d558b2cde5b3ce9ae18ab9206853be77bea64c342453abb569461add710114055f7498073939c75b7cdb14ea1a1c
|
data/CHANGELOG.md
CHANGED
|
@@ -11777,6 +11777,12 @@ module Google
|
|
|
11777
11777
|
attr_accessor :enable_automatic_punctuation
|
|
11778
11778
|
alias_method :enable_automatic_punctuation?, :enable_automatic_punctuation
|
|
11779
11779
|
|
|
11780
|
+
#
|
|
11781
|
+
# Corresponds to the JSON property `enableVoiceActivityEvents`
|
|
11782
|
+
# @return [Boolean]
|
|
11783
|
+
attr_accessor :enable_voice_activity_events
|
|
11784
|
+
alias_method :enable_voice_activity_events?, :enable_voice_activity_events
|
|
11785
|
+
|
|
11780
11786
|
#
|
|
11781
11787
|
# Corresponds to the JSON property `enableWordInfo`
|
|
11782
11788
|
# @return [Boolean]
|
|
@@ -11839,6 +11845,7 @@ module Google
|
|
|
11839
11845
|
@audio_encoding = args[:audio_encoding] if args.key?(:audio_encoding)
|
|
11840
11846
|
@disable_no_speech_recognized_event = args[:disable_no_speech_recognized_event] if args.key?(:disable_no_speech_recognized_event)
|
|
11841
11847
|
@enable_automatic_punctuation = args[:enable_automatic_punctuation] if args.key?(:enable_automatic_punctuation)
|
|
11848
|
+
@enable_voice_activity_events = args[:enable_voice_activity_events] if args.key?(:enable_voice_activity_events)
|
|
11842
11849
|
@enable_word_info = args[:enable_word_info] if args.key?(:enable_word_info)
|
|
11843
11850
|
@language_code = args[:language_code] if args.key?(:language_code)
|
|
11844
11851
|
@model = args[:model] if args.key?(:model)
|
|
@@ -14878,6 +14885,11 @@ module Google
|
|
|
14878
14885
|
class GoogleCloudDialogflowV2SearchKnowledgeDebugInfo
|
|
14879
14886
|
include Google::Apis::Core::Hashable
|
|
14880
14887
|
|
|
14888
|
+
#
|
|
14889
|
+
# Corresponds to the JSON property `cesDebugInfo`
|
|
14890
|
+
# @return [Hash<String,Object>]
|
|
14891
|
+
attr_accessor :ces_debug_info
|
|
14892
|
+
|
|
14881
14893
|
#
|
|
14882
14894
|
# Corresponds to the JSON property `datastoreResponseReason`
|
|
14883
14895
|
# @return [String]
|
|
@@ -14904,6 +14916,7 @@ module Google
|
|
|
14904
14916
|
|
|
14905
14917
|
# Update properties of this object
|
|
14906
14918
|
def update!(**args)
|
|
14919
|
+
@ces_debug_info = args[:ces_debug_info] if args.key?(:ces_debug_info)
|
|
14907
14920
|
@datastore_response_reason = args[:datastore_response_reason] if args.key?(:datastore_response_reason)
|
|
14908
14921
|
@ingested_context_reference_debug_info = args[:ingested_context_reference_debug_info] if args.key?(:ingested_context_reference_debug_info)
|
|
14909
14922
|
@search_knowledge_behavior = args[:search_knowledge_behavior] if args.key?(:search_knowledge_behavior)
|
|
@@ -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.127.0"
|
|
20
20
|
|
|
21
21
|
# Version of the code generator used to generate this client
|
|
22
22
|
GENERATOR_VERSION = "0.19.0"
|
|
23
23
|
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
|
25
|
-
REVISION = "
|
|
25
|
+
REVISION = "20260701"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -7842,6 +7842,7 @@ module Google
|
|
|
7842
7842
|
property :audio_encoding, as: 'audioEncoding'
|
|
7843
7843
|
property :disable_no_speech_recognized_event, as: 'disableNoSpeechRecognizedEvent'
|
|
7844
7844
|
property :enable_automatic_punctuation, as: 'enableAutomaticPunctuation'
|
|
7845
|
+
property :enable_voice_activity_events, as: 'enableVoiceActivityEvents'
|
|
7845
7846
|
property :enable_word_info, as: 'enableWordInfo'
|
|
7846
7847
|
property :language_code, as: 'languageCode'
|
|
7847
7848
|
property :model, as: 'model'
|
|
@@ -8801,6 +8802,7 @@ module Google
|
|
|
8801
8802
|
class GoogleCloudDialogflowV2SearchKnowledgeDebugInfo
|
|
8802
8803
|
# @private
|
|
8803
8804
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
8805
|
+
hash :ces_debug_info, as: 'cesDebugInfo'
|
|
8804
8806
|
property :datastore_response_reason, as: 'datastoreResponseReason'
|
|
8805
8807
|
property :ingested_context_reference_debug_info, as: 'ingestedContextReferenceDebugInfo', class: Google::Apis::DialogflowV2::GoogleCloudDialogflowV2IngestedContextReferenceDebugInfo, decorator: Google::Apis::DialogflowV2::GoogleCloudDialogflowV2IngestedContextReferenceDebugInfo::Representation
|
|
8806
8808
|
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
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.127.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Google LLC
|
|
@@ -57,7 +57,7 @@ licenses:
|
|
|
57
57
|
metadata:
|
|
58
58
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
|
59
59
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-dialogflow_v2/CHANGELOG.md
|
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-dialogflow_v2/v0.
|
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-dialogflow_v2/v0.127.0
|
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-dialogflow_v2
|
|
62
62
|
rdoc_options: []
|
|
63
63
|
require_paths:
|