google-apis-dialogflow_v2beta1 0.59.0 → 0.61.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: c9e1194c31deef12e7ef0e9ce062f00e6db63696d45d28f015af3a17bea25001
|
4
|
+
data.tar.gz: 628beb1d5fd42c0a1bd71a896dd37dd1b0ffef4a7dd8850fcea34aff929b1a38
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 206aead4fece69d21520c477f57aadf43293505bb1d4bb828dcd9519e27f08034459a9f84189d1a78f30a4b705946393610474bea5b20898b1c0e947c8c6ccaf
|
7
|
+
data.tar.gz: e5cea922b41c6ce6bf99cd4424a1d3e5ee6fc7eb3643e54eeb9665681b30f7157a135e766797ef11b54c9823132e2e451169850081ae6ba52e783af31c2090b9
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Release history for google-apis-dialogflow_v2beta1
|
2
2
|
|
3
|
+
### v0.61.0 (2023-06-25)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20230621
|
6
|
+
|
7
|
+
### v0.60.0 (2023-06-18)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20230614
|
10
|
+
|
3
11
|
### v0.59.0 (2023-06-11)
|
4
12
|
|
5
13
|
* Regenerated from discovery document revision 20230605
|
@@ -9812,6 +9812,13 @@ module Google
|
|
9812
9812
|
# @return [String]
|
9813
9813
|
attr_accessor :agent
|
9814
9814
|
|
9815
|
+
# Optional. Sets Dialogflow CX session life time. By default, a Dialogflow CX
|
9816
|
+
# session remains active and its data is stored for 30 minutes after the last
|
9817
|
+
# request is sent for the session. This value should be no longer than 1 day.
|
9818
|
+
# Corresponds to the JSON property `sessionTtl`
|
9819
|
+
# @return [String]
|
9820
|
+
attr_accessor :session_ttl
|
9821
|
+
|
9815
9822
|
def initialize(**args)
|
9816
9823
|
update!(**args)
|
9817
9824
|
end
|
@@ -9819,6 +9826,7 @@ module Google
|
|
9819
9826
|
# Update properties of this object
|
9820
9827
|
def update!(**args)
|
9821
9828
|
@agent = args[:agent] if args.key?(:agent)
|
9829
|
+
@session_ttl = args[:session_ttl] if args.key?(:session_ttl)
|
9822
9830
|
end
|
9823
9831
|
end
|
9824
9832
|
|
@@ -9981,7 +9989,7 @@ module Google
|
|
9981
9989
|
class GoogleCloudDialogflowV2beta1BatchCreateMessagesRequest
|
9982
9990
|
include Google::Apis::Core::Hashable
|
9983
9991
|
|
9984
|
-
# Required. A maximum of
|
9992
|
+
# Required. A maximum of 300 messages can be created in a batch.
|
9985
9993
|
# CreateMessageRequest.message.send_time is required. All created messages will
|
9986
9994
|
# have identical Message.create_time.
|
9987
9995
|
# Corresponds to the JSON property `requests`
|
@@ -16227,6 +16235,11 @@ module Google
|
|
16227
16235
|
class GoogleCloudDialogflowV2beta1SuggestConversationSummaryRequest
|
16228
16236
|
include Google::Apis::Core::Hashable
|
16229
16237
|
|
16238
|
+
# Represents the parameters of human assist query.
|
16239
|
+
# Corresponds to the JSON property `assistQueryParams`
|
16240
|
+
# @return [Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1AssistQueryParameters]
|
16241
|
+
attr_accessor :assist_query_params
|
16242
|
+
|
16230
16243
|
# Max number of messages prior to and including [latest_message] to use as
|
16231
16244
|
# context when compiling the suggestion. By default 500 and at most 1000.
|
16232
16245
|
# Corresponds to the JSON property `contextSize`
|
@@ -16246,6 +16259,7 @@ module Google
|
|
16246
16259
|
|
16247
16260
|
# Update properties of this object
|
16248
16261
|
def update!(**args)
|
16262
|
+
@assist_query_params = args[:assist_query_params] if args.key?(:assist_query_params)
|
16249
16263
|
@context_size = args[:context_size] if args.key?(:context_size)
|
16250
16264
|
@latest_message = args[:latest_message] if args.key?(:latest_message)
|
16251
16265
|
end
|
@@ -16735,6 +16749,11 @@ module Google
|
|
16735
16749
|
# @return [Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1SuggestDialogflowAssistsResponse]
|
16736
16750
|
attr_accessor :suggest_dialogflow_assists_response
|
16737
16751
|
|
16752
|
+
# The response message for Participants.SuggestDialogflowAssists.
|
16753
|
+
# Corresponds to the JSON property `suggestEntityExtractionResponse`
|
16754
|
+
# @return [Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1SuggestDialogflowAssistsResponse]
|
16755
|
+
attr_accessor :suggest_entity_extraction_response
|
16756
|
+
|
16738
16757
|
# The request message for Participants.SuggestFaqAnswers.
|
16739
16758
|
# Corresponds to the JSON property `suggestFaqAnswersResponse`
|
16740
16759
|
# @return [Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1SuggestFaqAnswersResponse]
|
@@ -16754,6 +16773,7 @@ module Google
|
|
16754
16773
|
@error = args[:error] if args.key?(:error)
|
16755
16774
|
@suggest_articles_response = args[:suggest_articles_response] if args.key?(:suggest_articles_response)
|
16756
16775
|
@suggest_dialogflow_assists_response = args[:suggest_dialogflow_assists_response] if args.key?(:suggest_dialogflow_assists_response)
|
16776
|
+
@suggest_entity_extraction_response = args[:suggest_entity_extraction_response] if args.key?(:suggest_entity_extraction_response)
|
16757
16777
|
@suggest_faq_answers_response = args[:suggest_faq_answers_response] if args.key?(:suggest_faq_answers_response)
|
16758
16778
|
@suggest_smart_replies_response = args[:suggest_smart_replies_response] if args.key?(:suggest_smart_replies_response)
|
16759
16779
|
end
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module DialogflowV2beta1
|
18
18
|
# Version of the google-apis-dialogflow_v2beta1 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.61.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
|
@@ -5536,6 +5536,7 @@ module Google
|
|
5536
5536
|
# @private
|
5537
5537
|
class Representation < Google::Apis::Core::JsonRepresentation
|
5538
5538
|
property :agent, as: 'agent'
|
5539
|
+
property :session_ttl, as: 'sessionTtl'
|
5539
5540
|
end
|
5540
5541
|
end
|
5541
5542
|
|
@@ -7299,6 +7300,8 @@ module Google
|
|
7299
7300
|
class GoogleCloudDialogflowV2beta1SuggestConversationSummaryRequest
|
7300
7301
|
# @private
|
7301
7302
|
class Representation < Google::Apis::Core::JsonRepresentation
|
7303
|
+
property :assist_query_params, as: 'assistQueryParams', class: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1AssistQueryParameters, decorator: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1AssistQueryParameters::Representation
|
7304
|
+
|
7302
7305
|
property :context_size, as: 'contextSize'
|
7303
7306
|
property :latest_message, as: 'latestMessage'
|
7304
7307
|
end
|
@@ -7437,6 +7440,8 @@ module Google
|
|
7437
7440
|
|
7438
7441
|
property :suggest_dialogflow_assists_response, as: 'suggestDialogflowAssistsResponse', class: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1SuggestDialogflowAssistsResponse, decorator: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1SuggestDialogflowAssistsResponse::Representation
|
7439
7442
|
|
7443
|
+
property :suggest_entity_extraction_response, as: 'suggestEntityExtractionResponse', class: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1SuggestDialogflowAssistsResponse, decorator: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1SuggestDialogflowAssistsResponse::Representation
|
7444
|
+
|
7440
7445
|
property :suggest_faq_answers_response, as: 'suggestFaqAnswersResponse', class: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1SuggestFaqAnswersResponse, decorator: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1SuggestFaqAnswersResponse::Representation
|
7441
7446
|
|
7442
7447
|
property :suggest_smart_replies_response, as: 'suggestSmartRepliesResponse', class: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1SuggestSmartRepliesResponse, decorator: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1SuggestSmartRepliesResponse::Representation
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-dialogflow_v2beta1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.61.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-06-
|
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_v2beta1/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-dialogflow_v2beta1/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-dialogflow_v2beta1/v0.61.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-dialogflow_v2beta1
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|