google-apis-dialogflow_v3beta1 0.105.0 → 0.107.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: 1cf8b2582f08904d57401840b84d479f9c755cb3e3c51f107e54974bffee16cf
4
- data.tar.gz: ba0e7cf4d6d3e8ab4952b80b3cd732f86f237cd98e406c7e5c299c4ac1ac37ae
3
+ metadata.gz: 1ff0504ad4a533540dc615eff9c62fc8dbdd67317419c5edd6ace4a9666c4c15
4
+ data.tar.gz: 1dda6f44cafc8f59d87d5bfeb41a725566c0127daf1a96f43133a7f1ec6f31c0
5
5
  SHA512:
6
- metadata.gz: 1ffee547893445956f9152c77720f6220de007c61c5ca0099524dc66a5a372674def24504426e3f5f895764789979f040aa7609f2cea0337ccbe9ecd0eeab195
7
- data.tar.gz: 333e212aca968d31a7bced5005009389e39c959d14bcf766363ee7b561c97fc586d8927cf05ff4ad7c43afc2885c337f3573e357f2b6dcf25ab79dac240a46e1
6
+ metadata.gz: f92677457310f41924e6c93e98b41dac3827e4f5f5fd6a3e3d37c55377775c052f5ca05cc18bc034f9a3680b32c5cfb074ed6871b52ee8dd21b199bd009ad973
7
+ data.tar.gz: 48e943b56ecb3720158b78e70701b8bc03a8d4aae3a87a5f315b768d1e294b7cf8de510ad77e04f9ddb3021dfacf499341b128612b9d4b9eec7ca270792514e1
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-dialogflow_v3beta1
2
2
 
3
+ ### v0.107.0 (2025-08-10)
4
+
5
+ * Regenerated from discovery document revision 20250804
6
+
7
+ ### v0.106.0 (2025-07-06)
8
+
9
+ * Regenerated from discovery document revision 20250627
10
+
3
11
  ### v0.105.0 (2025-06-29)
4
12
 
5
13
  * Regenerated from discovery document revision 20250625
@@ -6401,6 +6401,11 @@ module Google
6401
6401
  # @return [String]
6402
6402
  attr_accessor :document_uri
6403
6403
 
6404
+ # Metadata associated with the document.
6405
+ # Corresponds to the JSON property `metadata`
6406
+ # @return [Hash<String,Object>]
6407
+ attr_accessor :metadata
6408
+
6404
6409
  # Text included in the prompt.
6405
6410
  # Corresponds to the JSON property `text`
6406
6411
  # @return [String]
@@ -6414,6 +6419,7 @@ module Google
6414
6419
  def update!(**args)
6415
6420
  @document_title = args[:document_title] if args.key?(:document_title)
6416
6421
  @document_uri = args[:document_uri] if args.key?(:document_uri)
6422
+ @metadata = args[:metadata] if args.key?(:metadata)
6417
6423
  @text = args[:text] if args.key?(:text)
6418
6424
  end
6419
6425
  end
@@ -8076,6 +8082,11 @@ module Google
8076
8082
  # @return [Array<Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1EventHandler>]
8077
8083
  attr_accessor :event_handlers
8078
8084
 
8085
+ # Optional. Defined structured input parameters for this flow.
8086
+ # Corresponds to the JSON property `inputParameterDefinitions`
8087
+ # @return [Array<Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1ParameterDefinition>]
8088
+ attr_accessor :input_parameter_definitions
8089
+
8079
8090
  # The Knowledge Connector settings for this page or flow. This includes
8080
8091
  # information such as the attached Knowledge Bases, and the way to execute
8081
8092
  # fulfillment.
@@ -8106,6 +8117,11 @@ module Google
8106
8117
  # @return [Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1NluSettings]
8107
8118
  attr_accessor :nlu_settings
8108
8119
 
8120
+ # Optional. Defined structured output parameters for this flow.
8121
+ # Corresponds to the JSON property `outputParameterDefinitions`
8122
+ # @return [Array<Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1ParameterDefinition>]
8123
+ attr_accessor :output_parameter_definitions
8124
+
8109
8125
  # A flow's transition route group serve two purposes: * They are responsible for
8110
8126
  # matching the user's first utterances in the flow. * They are inherited by
8111
8127
  # every page's transition route groups. Transition route groups defined in the
@@ -8139,11 +8155,13 @@ module Google
8139
8155
  @description = args[:description] if args.key?(:description)
8140
8156
  @display_name = args[:display_name] if args.key?(:display_name)
8141
8157
  @event_handlers = args[:event_handlers] if args.key?(:event_handlers)
8158
+ @input_parameter_definitions = args[:input_parameter_definitions] if args.key?(:input_parameter_definitions)
8142
8159
  @knowledge_connector_settings = args[:knowledge_connector_settings] if args.key?(:knowledge_connector_settings)
8143
8160
  @locked = args[:locked] if args.key?(:locked)
8144
8161
  @multi_language_settings = args[:multi_language_settings] if args.key?(:multi_language_settings)
8145
8162
  @name = args[:name] if args.key?(:name)
8146
8163
  @nlu_settings = args[:nlu_settings] if args.key?(:nlu_settings)
8164
+ @output_parameter_definitions = args[:output_parameter_definitions] if args.key?(:output_parameter_definitions)
8147
8165
  @transition_route_groups = args[:transition_route_groups] if args.key?(:transition_route_groups)
8148
8166
  @transition_routes = args[:transition_routes] if args.key?(:transition_routes)
8149
8167
  end
@@ -15672,12 +15690,6 @@ module Google
15672
15690
  # @return [String]
15673
15691
  attr_accessor :name
15674
15692
 
15675
- # Optional. The name of the second voice (non-English) if language detection is
15676
- # supported.
15677
- # Corresponds to the JSON property `secondLanguageModel`
15678
- # @return [String]
15679
- attr_accessor :second_language_model
15680
-
15681
15693
  # Optional. The preferred gender of the voice. If not set, the service will
15682
15694
  # choose a voice based on the other parameters such as language_code and name.
15683
15695
  # Note that this is only a preference, not requirement. If a voice of the
@@ -15694,7 +15706,6 @@ module Google
15694
15706
  # Update properties of this object
15695
15707
  def update!(**args)
15696
15708
  @name = args[:name] if args.key?(:name)
15697
- @second_language_model = args[:second_language_model] if args.key?(:second_language_model)
15698
15709
  @ssml_gender = args[:ssml_gender] if args.key?(:ssml_gender)
15699
15710
  end
15700
15711
  end
@@ -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.105.0"
19
+ GEM_VERSION = "0.107.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.18.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20250625"
25
+ REVISION = "20250804"
26
26
  end
27
27
  end
28
28
  end
@@ -5686,6 +5686,7 @@ module Google
5686
5686
  class Representation < Google::Apis::Core::JsonRepresentation
5687
5687
  property :document_title, as: 'documentTitle'
5688
5688
  property :document_uri, as: 'documentUri'
5689
+ hash :metadata, as: 'metadata'
5689
5690
  property :text, as: 'text'
5690
5691
  end
5691
5692
  end
@@ -6126,6 +6127,8 @@ module Google
6126
6127
  property :display_name, as: 'displayName'
6127
6128
  collection :event_handlers, as: 'eventHandlers', class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1EventHandler, decorator: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1EventHandler::Representation
6128
6129
 
6130
+ collection :input_parameter_definitions, as: 'inputParameterDefinitions', class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1ParameterDefinition, decorator: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1ParameterDefinition::Representation
6131
+
6129
6132
  property :knowledge_connector_settings, as: 'knowledgeConnectorSettings', class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1KnowledgeConnectorSettings, decorator: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1KnowledgeConnectorSettings::Representation
6130
6133
 
6131
6134
  property :locked, as: 'locked'
@@ -6134,6 +6137,8 @@ module Google
6134
6137
  property :name, as: 'name'
6135
6138
  property :nlu_settings, as: 'nluSettings', class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1NluSettings, decorator: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1NluSettings::Representation
6136
6139
 
6140
+ collection :output_parameter_definitions, as: 'outputParameterDefinitions', class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1ParameterDefinition, decorator: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1ParameterDefinition::Representation
6141
+
6137
6142
  collection :transition_route_groups, as: 'transitionRouteGroups'
6138
6143
  collection :transition_routes, as: 'transitionRoutes', class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1TransitionRoute, decorator: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1TransitionRoute::Representation
6139
6144
 
@@ -8222,7 +8227,6 @@ module Google
8222
8227
  # @private
8223
8228
  class Representation < Google::Apis::Core::JsonRepresentation
8224
8229
  property :name, as: 'name'
8225
- property :second_language_model, as: 'secondLanguageModel'
8226
8230
  property :ssml_gender, as: 'ssmlGender'
8227
8231
  end
8228
8232
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-dialogflow_v3beta1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.105.0
4
+ version: 0.107.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
@@ -57,7 +57,7 @@ licenses:
57
57
  metadata:
58
58
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
59
59
  changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-dialogflow_v3beta1/CHANGELOG.md
60
- documentation_uri: https://googleapis.dev/ruby/google-apis-dialogflow_v3beta1/v0.105.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-dialogflow_v3beta1/v0.107.0
61
61
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-dialogflow_v3beta1
62
62
  rdoc_options: []
63
63
  require_paths: