google-apis-dialogflow_v2 0.65.0 → 0.67.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: b86201ca59785c1d3b8d7cd59e4ba2de808f88672c5477e7d84cfe8ff50d66b0
|
4
|
+
data.tar.gz: 3476be66aac18319668901aa6d7da0bb3ff6a441f9519c6143615b0cfa150750
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 12a4b31433ce344acc2dd448172fcff4c33caa1622ffe3407844c3e750c5db90731fa1faf592d7167111af003762e5caeeb8a5b12e824290dffcc35ddd23ffd3
|
7
|
+
data.tar.gz: a5bff07f4698b142f4d748a7bcb60ac9a4c7c4e7e1450c0f3f33ae4dbf98f87523d24a3b94d8f4bbaef1cdc5d2e82992edec7f0e3fa08f473cb56e926c0d5da4
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Release history for google-apis-dialogflow_v2
|
2
2
|
|
3
|
+
### v0.67.0 (2023-08-13)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20230807
|
6
|
+
|
7
|
+
### v0.66.0 (2023-08-03)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20230722
|
10
|
+
|
3
11
|
### v0.65.0 (2023-07-23)
|
4
12
|
|
5
13
|
* Regenerated from discovery document revision 20230717
|
@@ -1542,7 +1542,8 @@ module Google
|
|
1542
1542
|
# page's transition route -> page's transition route group -> flow's transition
|
1543
1543
|
# routes. * If multiple transition route groups within a page contain the same
|
1544
1544
|
# intent, then the first group in the ordered list takes precedence. Format:`
|
1545
|
-
# projects//locations//agents//flows//transitionRouteGroups
|
1545
|
+
# projects//locations//agents//flows//transitionRouteGroups/` or `projects//
|
1546
|
+
# locations//agents//transitionRouteGroups/` for agent-level groups.
|
1546
1547
|
# Corresponds to the JSON property `transitionRouteGroups`
|
1547
1548
|
# @return [Array<String>]
|
1548
1549
|
attr_accessor :transition_route_groups
|
@@ -4633,7 +4634,8 @@ module Google
|
|
4633
4634
|
# page's transition route -> page's transition route group -> flow's transition
|
4634
4635
|
# routes. * If multiple transition route groups within a page contain the same
|
4635
4636
|
# intent, then the first group in the ordered list takes precedence. Format:`
|
4636
|
-
# projects//locations//agents//flows//transitionRouteGroups
|
4637
|
+
# projects//locations//agents//flows//transitionRouteGroups/` or `projects//
|
4638
|
+
# locations//agents//transitionRouteGroups/` for agent-level groups.
|
4637
4639
|
# Corresponds to the JSON property `transitionRouteGroups`
|
4638
4640
|
# @return [Array<String>]
|
4639
4641
|
attr_accessor :transition_route_groups
|
@@ -7924,7 +7926,7 @@ module Google
|
|
7924
7926
|
|
7925
7927
|
# Represents the query input. It can contain either: 1. An audio config which
|
7926
7928
|
# instructs the speech recognizer how to process the speech audio. 2. A
|
7927
|
-
# conversational query in the form of text
|
7929
|
+
# conversational query in the form of text. 3. An event that specifies which
|
7928
7930
|
# intent to trigger.
|
7929
7931
|
# Corresponds to the JSON property `queryInput`
|
7930
7932
|
# @return [Google::Apis::DialogflowV2::GoogleCloudDialogflowV2QueryInput]
|
@@ -11982,7 +11984,7 @@ module Google
|
|
11982
11984
|
|
11983
11985
|
# Represents the query input. It can contain either: 1. An audio config which
|
11984
11986
|
# instructs the speech recognizer how to process the speech audio. 2. A
|
11985
|
-
# conversational query in the form of text
|
11987
|
+
# conversational query in the form of text. 3. An event that specifies which
|
11986
11988
|
# intent to trigger.
|
11987
11989
|
class GoogleCloudDialogflowV2QueryInput
|
11988
11990
|
include Google::Apis::Core::Hashable
|
@@ -12042,6 +12044,13 @@ module Google
|
|
12042
12044
|
# @return [Hash<String,Object>]
|
12043
12045
|
attr_accessor :payload
|
12044
12046
|
|
12047
|
+
# The platform of the virtual agent response messages. If not empty, only emits
|
12048
|
+
# messages from this platform in the response. Valid values are the enum names
|
12049
|
+
# of platform.
|
12050
|
+
# Corresponds to the JSON property `platform`
|
12051
|
+
# @return [String]
|
12052
|
+
attr_accessor :platform
|
12053
|
+
|
12045
12054
|
# Specifies whether to delete all contexts in the current session before the new
|
12046
12055
|
# ones are activated.
|
12047
12056
|
# Corresponds to the JSON property `resetContexts`
|
@@ -12089,6 +12098,7 @@ module Google
|
|
12089
12098
|
@contexts = args[:contexts] if args.key?(:contexts)
|
12090
12099
|
@geo_location = args[:geo_location] if args.key?(:geo_location)
|
12091
12100
|
@payload = args[:payload] if args.key?(:payload)
|
12101
|
+
@platform = args[:platform] if args.key?(:platform)
|
12092
12102
|
@reset_contexts = args[:reset_contexts] if args.key?(:reset_contexts)
|
12093
12103
|
@sentiment_analysis_request_config = args[:sentiment_analysis_request_config] if args.key?(:sentiment_analysis_request_config)
|
12094
12104
|
@session_entity_types = args[:session_entity_types] if args.key?(:session_entity_types)
|
@@ -17245,13 +17255,13 @@ module Google
|
|
17245
17255
|
# @return [String]
|
17246
17256
|
attr_accessor :name
|
17247
17257
|
|
17248
|
-
# The normal response of the operation
|
17249
|
-
#
|
17250
|
-
#
|
17251
|
-
#
|
17252
|
-
#
|
17253
|
-
#
|
17254
|
-
#
|
17258
|
+
# The normal, successful response of the operation. If the original method
|
17259
|
+
# returns no data on success, such as `Delete`, the response is `google.protobuf.
|
17260
|
+
# Empty`. If the original method is standard `Get`/`Create`/`Update`, the
|
17261
|
+
# response should be the resource. For other methods, the response should have
|
17262
|
+
# the type `XxxResponse`, where `Xxx` is the original method name. For example,
|
17263
|
+
# if the original method name is `TakeSnapshot()`, the inferred response type is
|
17264
|
+
# `TakeSnapshotResponse`.
|
17255
17265
|
# Corresponds to the JSON property `response`
|
17256
17266
|
# @return [Hash<String,Object>]
|
17257
17267
|
attr_accessor :response
|
@@ -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.67.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 = "20230807"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -6151,6 +6151,7 @@ module Google
|
|
6151
6151
|
property :geo_location, as: 'geoLocation', class: Google::Apis::DialogflowV2::GoogleTypeLatLng, decorator: Google::Apis::DialogflowV2::GoogleTypeLatLng::Representation
|
6152
6152
|
|
6153
6153
|
hash :payload, as: 'payload'
|
6154
|
+
property :platform, as: 'platform'
|
6154
6155
|
property :reset_contexts, as: 'resetContexts'
|
6155
6156
|
property :sentiment_analysis_request_config, as: 'sentimentAnalysisRequestConfig', class: Google::Apis::DialogflowV2::GoogleCloudDialogflowV2SentimentAnalysisRequestConfig, decorator: Google::Apis::DialogflowV2::GoogleCloudDialogflowV2SentimentAnalysisRequestConfig::Representation
|
6156
6157
|
|
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.67.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-08-20 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.67.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: []
|