google-apis-dialogflow_v3beta1 0.13.0 → 0.14.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: 25c06b2057055d4f3433172b459e3e7236281c16e427b1f77797dba78c8066d3
|
4
|
+
data.tar.gz: 65c77874ca45b7dee991b1cd2b8179e079be93eeee6de9d731739164812f1851
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f82bbf053d419506d860fa692836f426c8ceb00bba639b12be6f0e5b23ced1da91687f391290fe0b44b6bb3e7cfea1f1e794e1298aede1e4c5f98a7962d6c20a
|
7
|
+
data.tar.gz: b340428ec4a375ce8e002bf3ade2440667a4bd3e6de3296236226055bb6c0ebf6433b168b40ea363fdfb8d3d479cfda6aa4be02c13c6a67ce0226b73eb43838b
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,10 @@
|
|
1
1
|
# Release history for google-apis-dialogflow_v3beta1
|
2
2
|
|
3
|
+
### v0.14.0 (2021-06-03)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20210601
|
6
|
+
* Regenerated using generator version 0.3.0
|
7
|
+
|
3
8
|
### v0.13.0 (2021-05-26)
|
4
9
|
|
5
10
|
* Regenerated from discovery document revision 20210524
|
@@ -161,6 +161,12 @@ module Google
|
|
161
161
|
class GoogleCloudDialogflowCxV3ConversationTurnUserInput
|
162
162
|
include Google::Apis::Core::Hashable
|
163
163
|
|
164
|
+
# Whether sentiment analysis is enabled.
|
165
|
+
# Corresponds to the JSON property `enableSentimentAnalysis`
|
166
|
+
# @return [Boolean]
|
167
|
+
attr_accessor :enable_sentiment_analysis
|
168
|
+
alias_method :enable_sentiment_analysis?, :enable_sentiment_analysis
|
169
|
+
|
164
170
|
# Parameters that need to be injected into the conversation during intent
|
165
171
|
# detection.
|
166
172
|
# Corresponds to the JSON property `injectedParameters`
|
@@ -188,6 +194,7 @@ module Google
|
|
188
194
|
|
189
195
|
# Update properties of this object
|
190
196
|
def update!(**args)
|
197
|
+
@enable_sentiment_analysis = args[:enable_sentiment_analysis] if args.key?(:enable_sentiment_analysis)
|
191
198
|
@injected_parameters = args[:injected_parameters] if args.key?(:injected_parameters)
|
192
199
|
@input = args[:input] if args.key?(:input)
|
193
200
|
@is_webhook_enabled = args[:is_webhook_enabled] if args.key?(:is_webhook_enabled)
|
@@ -2897,6 +2904,12 @@ module Google
|
|
2897
2904
|
class GoogleCloudDialogflowCxV3beta1ConversationTurnUserInput
|
2898
2905
|
include Google::Apis::Core::Hashable
|
2899
2906
|
|
2907
|
+
# Whether sentiment analysis is enabled.
|
2908
|
+
# Corresponds to the JSON property `enableSentimentAnalysis`
|
2909
|
+
# @return [Boolean]
|
2910
|
+
attr_accessor :enable_sentiment_analysis
|
2911
|
+
alias_method :enable_sentiment_analysis?, :enable_sentiment_analysis
|
2912
|
+
|
2900
2913
|
# Parameters that need to be injected into the conversation during intent
|
2901
2914
|
# detection.
|
2902
2915
|
# Corresponds to the JSON property `injectedParameters`
|
@@ -2924,6 +2937,7 @@ module Google
|
|
2924
2937
|
|
2925
2938
|
# Update properties of this object
|
2926
2939
|
def update!(**args)
|
2940
|
+
@enable_sentiment_analysis = args[:enable_sentiment_analysis] if args.key?(:enable_sentiment_analysis)
|
2927
2941
|
@injected_parameters = args[:injected_parameters] if args.key?(:injected_parameters)
|
2928
2942
|
@input = args[:input] if args.key?(:input)
|
2929
2943
|
@is_webhook_enabled = args[:is_webhook_enabled] if args.key?(:is_webhook_enabled)
|
@@ -5874,11 +5888,11 @@ module Google
|
|
5874
5888
|
alias_method :analyze_query_text_sentiment?, :analyze_query_text_sentiment
|
5875
5889
|
|
5876
5890
|
# The unique identifier of the page to override the current page in the session.
|
5877
|
-
# Format: `projects//locations//agents//pages/`. If `current_page` is
|
5878
|
-
# the previous state of the session will be ignored by Dialogflow,
|
5879
|
-
# previous page and the previous session parameters. In most cases,
|
5880
|
-
# and parameters should be configured together to direct a session
|
5881
|
-
# state.
|
5891
|
+
# Format: `projects//locations//agents//flows//pages/`. If `current_page` is
|
5892
|
+
# specified, the previous state of the session will be ignored by Dialogflow,
|
5893
|
+
# including the previous page and the previous session parameters. In most cases,
|
5894
|
+
# current_page and parameters should be configured together to direct a session
|
5895
|
+
# to a specific state.
|
5882
5896
|
# Corresponds to the JSON property `currentPage`
|
5883
5897
|
# @return [String]
|
5884
5898
|
attr_accessor :current_page
|
@@ -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.14.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
|
-
GENERATOR_VERSION = "0.
|
22
|
+
GENERATOR_VERSION = "0.3.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20210601"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -2326,6 +2326,7 @@ module Google
|
|
2326
2326
|
class GoogleCloudDialogflowCxV3ConversationTurnUserInput
|
2327
2327
|
# @private
|
2328
2328
|
class Representation < Google::Apis::Core::JsonRepresentation
|
2329
|
+
property :enable_sentiment_analysis, as: 'enableSentimentAnalysis'
|
2329
2330
|
hash :injected_parameters, as: 'injectedParameters'
|
2330
2331
|
property :input, as: 'input', class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3QueryInput, decorator: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3QueryInput::Representation
|
2331
2332
|
|
@@ -3092,6 +3093,7 @@ module Google
|
|
3092
3093
|
class GoogleCloudDialogflowCxV3beta1ConversationTurnUserInput
|
3093
3094
|
# @private
|
3094
3095
|
class Representation < Google::Apis::Core::JsonRepresentation
|
3096
|
+
property :enable_sentiment_analysis, as: 'enableSentimentAnalysis'
|
3095
3097
|
hash :injected_parameters, as: 'injectedParameters'
|
3096
3098
|
property :input, as: 'input', class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1QueryInput, decorator: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1QueryInput::Representation
|
3097
3099
|
|
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.14.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: 2021-
|
11
|
+
date: 2021-06-07 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: google-apis-core
|
@@ -52,7 +52,7 @@ licenses:
|
|
52
52
|
metadata:
|
53
53
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
54
54
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-dialogflow_v3beta1/CHANGELOG.md
|
55
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-dialogflow_v3beta1/v0.
|
55
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-dialogflow_v3beta1/v0.14.0
|
56
56
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-dialogflow_v3beta1
|
57
57
|
post_install_message:
|
58
58
|
rdoc_options: []
|