google-apis-dialogflow_v2beta1 0.73.0 → 0.75.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: 74cadb8565743f668aa9542800549a5b195efa92f8b4371c731da879a3b27ce9
4
- data.tar.gz: 0ca3ac78ec6f7aa963fe7dc690ff2a722012a85913d80c66ac53427804b733f6
3
+ metadata.gz: b7e830e5d26dbc3af34ecf83e194984c5e33b9489cf3e2cc1d9ad0e518a31ad9
4
+ data.tar.gz: 8c6146dbe3ec88297482f145d93d30d0057a1e3b294f88a476c7348f423fa69e
5
5
  SHA512:
6
- metadata.gz: 9bf90cc61d2389228450b6cc15dded8a0c8821a44db01875894397efc9dee1e472687810d93dcf8012c035dee0cae9b9142c611bad681075d90c3226a72a6d65
7
- data.tar.gz: 72b8cd032c1e9f07918c4260777feae0683eed30ec7c25b8d77495197e80aec72b662017330e06a2ac53d424dc078c2b06e14b4aecfd6b13cf3789cee126a28e
6
+ metadata.gz: 95518582599843a385a0c034f0e5f8626a166b4690144e776b35d99ec514b406fb8306ef79a52b260c74a86a865fda6e39715d2172c542836cdfe8968a7ab862
7
+ data.tar.gz: 78a2be16dbf295ea9803a900021981af8c64da65f10d05f020bae2a4d93f43a31705072e455216b5aff4e823d59ee7984e300e881fdc3c8f213df445b1b1044e
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-dialogflow_v2beta1
2
2
 
3
+ ### v0.75.0 (2023-12-24)
4
+
5
+ * Regenerated from discovery document revision 20231215
6
+
7
+ ### v0.74.0 (2023-12-17)
8
+
9
+ * Regenerated from discovery document revision 20231208
10
+
3
11
  ### v0.73.0 (2023-12-10)
4
12
 
5
13
  * Regenerated from discovery document revision 20231204
@@ -10826,9 +10826,10 @@ module Google
10826
10826
  # @return [String]
10827
10827
  attr_accessor :agent
10828
10828
 
10829
- # Optional. Sets Dialogflow CX session life time. By default, a Dialogflow CX
10830
- # session remains active and its data is stored for 30 minutes after the last
10831
- # request is sent for the session. This value should be no longer than 1 day.
10829
+ # Optional. Configure lifetime of the Dialogflow session. By default, a
10830
+ # Dialogflow CX session remains active and its data is stored for 30 minutes
10831
+ # after the last request is sent for the session. This value should be no longer
10832
+ # than 1 day.
10832
10833
  # Corresponds to the JSON property `sessionTtl`
10833
10834
  # @return [String]
10834
10835
  attr_accessor :session_ttl
@@ -12996,6 +12997,13 @@ module Google
12996
12997
  attr_accessor :disable_agent_query_logging
12997
12998
  alias_method :disable_agent_query_logging?, :disable_agent_query_logging
12998
12999
 
13000
+ # Optional. Enable including conversation context during query answer generation.
13001
+ # Supported features: KNOWLEDGE_SEARCH.
13002
+ # Corresponds to the JSON property `enableConversationAugmentedQuery`
13003
+ # @return [Boolean]
13004
+ attr_accessor :enable_conversation_augmented_query
13005
+ alias_method :enable_conversation_augmented_query?, :enable_conversation_augmented_query
13006
+
12999
13007
  # Automatically iterates all participants and tries to compile suggestions.
13000
13008
  # Supported features: ARTICLE_SUGGESTION, FAQ, DIALOGFLOW_ASSIST,
13001
13009
  # ENTITY_EXTRACTION, KNOWLEDGE_ASSIST.
@@ -13030,6 +13038,7 @@ module Google
13030
13038
  @conversation_model_config = args[:conversation_model_config] if args.key?(:conversation_model_config)
13031
13039
  @conversation_process_config = args[:conversation_process_config] if args.key?(:conversation_process_config)
13032
13040
  @disable_agent_query_logging = args[:disable_agent_query_logging] if args.key?(:disable_agent_query_logging)
13041
+ @enable_conversation_augmented_query = args[:enable_conversation_augmented_query] if args.key?(:enable_conversation_augmented_query)
13033
13042
  @enable_event_based_suggestion = args[:enable_event_based_suggestion] if args.key?(:enable_event_based_suggestion)
13034
13043
  @query_config = args[:query_config] if args.key?(:query_config)
13035
13044
  @suggestion_feature = args[:suggestion_feature] if args.key?(:suggestion_feature)
@@ -17046,6 +17055,11 @@ module Google
17046
17055
  # @return [Array<Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1SearchKnowledgeAnswer>]
17047
17056
  attr_accessor :answers
17048
17057
 
17058
+ # The rewritten query used to search knowledge.
17059
+ # Corresponds to the JSON property `rewrittenQuery`
17060
+ # @return [String]
17061
+ attr_accessor :rewritten_query
17062
+
17049
17063
  def initialize(**args)
17050
17064
  update!(**args)
17051
17065
  end
@@ -17053,6 +17067,7 @@ module Google
17053
17067
  # Update properties of this object
17054
17068
  def update!(**args)
17055
17069
  @answers = args[:answers] if args.key?(:answers)
17070
+ @rewritten_query = args[:rewritten_query] if args.key?(:rewritten_query)
17056
17071
  end
17057
17072
  end
17058
17073
 
@@ -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.73.0"
19
+ GEM_VERSION = "0.75.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 = "20231204"
25
+ REVISION = "20231215"
26
26
  end
27
27
  end
28
28
  end
@@ -6589,6 +6589,7 @@ module Google
6589
6589
  property :conversation_process_config, as: 'conversationProcessConfig', class: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1HumanAgentAssistantConfigConversationProcessConfig, decorator: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1HumanAgentAssistantConfigConversationProcessConfig::Representation
6590
6590
 
6591
6591
  property :disable_agent_query_logging, as: 'disableAgentQueryLogging'
6592
+ property :enable_conversation_augmented_query, as: 'enableConversationAugmentedQuery'
6592
6593
  property :enable_event_based_suggestion, as: 'enableEventBasedSuggestion'
6593
6594
  property :query_config, as: 'queryConfig', class: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1HumanAgentAssistantConfigSuggestionQueryConfig, decorator: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1HumanAgentAssistantConfigSuggestionQueryConfig::Representation
6594
6595
 
@@ -7719,6 +7720,7 @@ module Google
7719
7720
  class Representation < Google::Apis::Core::JsonRepresentation
7720
7721
  collection :answers, as: 'answers', class: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1SearchKnowledgeAnswer, decorator: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1SearchKnowledgeAnswer::Representation
7721
7722
 
7723
+ property :rewritten_query, as: 'rewrittenQuery'
7722
7724
  end
7723
7725
  end
7724
7726
 
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.73.0
4
+ version: 0.75.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-12-10 00:00:00.000000000 Z
11
+ date: 2023-12-24 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.73.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-dialogflow_v2beta1/v0.75.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: []