google-apis-dialogflow_v2 0.61.0 → 0.63.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: c7f5c565dabf2c6f2dbbba303820f8430c58fb96384e4f411faad974e364fcb4
|
4
|
+
data.tar.gz: c933c2e5d19d3874ae154eafddda2cffd2725abcb07050f01f308aff7b26987b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b3d028bc22c69e93bbe187b68df7c18ce6ca8ff5cae2160bdde54b685ee552dd80aeaad2eb7194d3530a78c36aa7196ae3cd102f538f3ca334e1bb82af90e2c5
|
7
|
+
data.tar.gz: 79d0f3a31897b62feee7be8e85827e43fab69ea553eb9d08ed89c8f87be2a582343dbfc7205f024a93e200cc4aa605fe342d9aba316cef2223e8517f1ec02c63
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Release history for google-apis-dialogflow_v2
|
2
2
|
|
3
|
+
### v0.63.0 (2023-06-25)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20230621
|
6
|
+
|
7
|
+
### v0.62.0 (2023-06-18)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20230614
|
10
|
+
|
3
11
|
### v0.61.0 (2023-05-28)
|
4
12
|
|
5
13
|
* Regenerated from discovery document revision 20230522
|
@@ -6773,6 +6773,13 @@ module Google
|
|
6773
6773
|
# @return [String]
|
6774
6774
|
attr_accessor :agent
|
6775
6775
|
|
6776
|
+
# Optional. Sets Dialogflow CX session life time. By default, a Dialogflow CX
|
6777
|
+
# session remains active and its data is stored for 30 minutes after the last
|
6778
|
+
# request is sent for the session. This value should be no longer than 1 day.
|
6779
|
+
# Corresponds to the JSON property `sessionTtl`
|
6780
|
+
# @return [String]
|
6781
|
+
attr_accessor :session_ttl
|
6782
|
+
|
6776
6783
|
def initialize(**args)
|
6777
6784
|
update!(**args)
|
6778
6785
|
end
|
@@ -6780,6 +6787,7 @@ module Google
|
|
6780
6787
|
# Update properties of this object
|
6781
6788
|
def update!(**args)
|
6782
6789
|
@agent = args[:agent] if args.key?(:agent)
|
6790
|
+
@session_ttl = args[:session_ttl] if args.key?(:session_ttl)
|
6783
6791
|
end
|
6784
6792
|
end
|
6785
6793
|
|
@@ -8009,7 +8017,7 @@ module Google
|
|
8009
8017
|
# source types. Reload status can be tracked in `latest_reload_status`. If a
|
8010
8018
|
# reload fails, we will keep the document unchanged. If a reload fails with
|
8011
8019
|
# internal errors, the system will try to reload the document on the next day.
|
8012
|
-
# If a reload fails with non-retriable errors (e.g.
|
8020
|
+
# If a reload fails with non-retriable errors (e.g. PERMISSION_DENIED), the
|
8013
8021
|
# system will not try to reload the document anymore. You need to manually
|
8014
8022
|
# reload the document successfully by calling `ReloadDocument` and clear the
|
8015
8023
|
# errors.
|
@@ -12769,6 +12777,11 @@ module Google
|
|
12769
12777
|
class GoogleCloudDialogflowV2SuggestConversationSummaryRequest
|
12770
12778
|
include Google::Apis::Core::Hashable
|
12771
12779
|
|
12780
|
+
# Represents the parameters of human assist query.
|
12781
|
+
# Corresponds to the JSON property `assistQueryParams`
|
12782
|
+
# @return [Google::Apis::DialogflowV2::GoogleCloudDialogflowV2AssistQueryParameters]
|
12783
|
+
attr_accessor :assist_query_params
|
12784
|
+
|
12772
12785
|
# Max number of messages prior to and including [latest_message] to use as
|
12773
12786
|
# context when compiling the suggestion. By default 500 and at most 1000.
|
12774
12787
|
# Corresponds to the JSON property `contextSize`
|
@@ -12788,6 +12801,7 @@ module Google
|
|
12788
12801
|
|
12789
12802
|
# Update properties of this object
|
12790
12803
|
def update!(**args)
|
12804
|
+
@assist_query_params = args[:assist_query_params] if args.key?(:assist_query_params)
|
12791
12805
|
@context_size = args[:context_size] if args.key?(:context_size)
|
12792
12806
|
@latest_message = args[:latest_message] if args.key?(:latest_message)
|
12793
12807
|
end
|
@@ -16651,6 +16665,11 @@ module Google
|
|
16651
16665
|
# @return [Google::Apis::DialogflowV2::GoogleCloudDialogflowV2beta1SuggestDialogflowAssistsResponse]
|
16652
16666
|
attr_accessor :suggest_dialogflow_assists_response
|
16653
16667
|
|
16668
|
+
# The response message for Participants.SuggestDialogflowAssists.
|
16669
|
+
# Corresponds to the JSON property `suggestEntityExtractionResponse`
|
16670
|
+
# @return [Google::Apis::DialogflowV2::GoogleCloudDialogflowV2beta1SuggestDialogflowAssistsResponse]
|
16671
|
+
attr_accessor :suggest_entity_extraction_response
|
16672
|
+
|
16654
16673
|
# The request message for Participants.SuggestFaqAnswers.
|
16655
16674
|
# Corresponds to the JSON property `suggestFaqAnswersResponse`
|
16656
16675
|
# @return [Google::Apis::DialogflowV2::GoogleCloudDialogflowV2beta1SuggestFaqAnswersResponse]
|
@@ -16670,6 +16689,7 @@ module Google
|
|
16670
16689
|
@error = args[:error] if args.key?(:error)
|
16671
16690
|
@suggest_articles_response = args[:suggest_articles_response] if args.key?(:suggest_articles_response)
|
16672
16691
|
@suggest_dialogflow_assists_response = args[:suggest_dialogflow_assists_response] if args.key?(:suggest_dialogflow_assists_response)
|
16692
|
+
@suggest_entity_extraction_response = args[:suggest_entity_extraction_response] if args.key?(:suggest_entity_extraction_response)
|
16673
16693
|
@suggest_faq_answers_response = args[:suggest_faq_answers_response] if args.key?(:suggest_faq_answers_response)
|
16674
16694
|
@suggest_smart_replies_response = args[:suggest_smart_replies_response] if args.key?(:suggest_smart_replies_response)
|
16675
16695
|
end
|
@@ -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.63.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 = "20230621"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -4672,6 +4672,7 @@ module Google
|
|
4672
4672
|
# @private
|
4673
4673
|
class Representation < Google::Apis::Core::JsonRepresentation
|
4674
4674
|
property :agent, as: 'agent'
|
4675
|
+
property :session_ttl, as: 'sessionTtl'
|
4675
4676
|
end
|
4676
4677
|
end
|
4677
4678
|
|
@@ -6334,6 +6335,8 @@ module Google
|
|
6334
6335
|
class GoogleCloudDialogflowV2SuggestConversationSummaryRequest
|
6335
6336
|
# @private
|
6336
6337
|
class Representation < Google::Apis::Core::JsonRepresentation
|
6338
|
+
property :assist_query_params, as: 'assistQueryParams', class: Google::Apis::DialogflowV2::GoogleCloudDialogflowV2AssistQueryParameters, decorator: Google::Apis::DialogflowV2::GoogleCloudDialogflowV2AssistQueryParameters::Representation
|
6339
|
+
|
6337
6340
|
property :context_size, as: 'contextSize'
|
6338
6341
|
property :latest_message, as: 'latestMessage'
|
6339
6342
|
end
|
@@ -7388,6 +7391,8 @@ module Google
|
|
7388
7391
|
|
7389
7392
|
property :suggest_dialogflow_assists_response, as: 'suggestDialogflowAssistsResponse', class: Google::Apis::DialogflowV2::GoogleCloudDialogflowV2beta1SuggestDialogflowAssistsResponse, decorator: Google::Apis::DialogflowV2::GoogleCloudDialogflowV2beta1SuggestDialogflowAssistsResponse::Representation
|
7390
7393
|
|
7394
|
+
property :suggest_entity_extraction_response, as: 'suggestEntityExtractionResponse', class: Google::Apis::DialogflowV2::GoogleCloudDialogflowV2beta1SuggestDialogflowAssistsResponse, decorator: Google::Apis::DialogflowV2::GoogleCloudDialogflowV2beta1SuggestDialogflowAssistsResponse::Representation
|
7395
|
+
|
7391
7396
|
property :suggest_faq_answers_response, as: 'suggestFaqAnswersResponse', class: Google::Apis::DialogflowV2::GoogleCloudDialogflowV2beta1SuggestFaqAnswersResponse, decorator: Google::Apis::DialogflowV2::GoogleCloudDialogflowV2beta1SuggestFaqAnswersResponse::Representation
|
7392
7397
|
|
7393
7398
|
property :suggest_smart_replies_response, as: 'suggestSmartRepliesResponse', class: Google::Apis::DialogflowV2::GoogleCloudDialogflowV2beta1SuggestSmartRepliesResponse, decorator: Google::Apis::DialogflowV2::GoogleCloudDialogflowV2beta1SuggestSmartRepliesResponse::Representation
|
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.63.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-06-25 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.63.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: []
|