google-apis-dialogflow_v3beta1 0.106.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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 1ff0504ad4a533540dc615eff9c62fc8dbdd67317419c5edd6ace4a9666c4c15
|
4
|
+
data.tar.gz: 1dda6f44cafc8f59d87d5bfeb41a725566c0127daf1a96f43133a7f1ec6f31c0
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f92677457310f41924e6c93e98b41dac3827e4f5f5fd6a3e3d37c55377775c052f5ca05cc18bc034f9a3680b32c5cfb074ed6871b52ee8dd21b199bd009ad973
|
7
|
+
data.tar.gz: 48e943b56ecb3720158b78e70701b8bc03a8d4aae3a87a5f315b768d1e294b7cf8de510ad77e04f9ddb3021dfacf499341b128612b9d4b9eec7ca270792514e1
|
data/CHANGELOG.md
CHANGED
@@ -8082,6 +8082,11 @@ module Google
|
|
8082
8082
|
# @return [Array<Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1EventHandler>]
|
8083
8083
|
attr_accessor :event_handlers
|
8084
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
|
+
|
8085
8090
|
# The Knowledge Connector settings for this page or flow. This includes
|
8086
8091
|
# information such as the attached Knowledge Bases, and the way to execute
|
8087
8092
|
# fulfillment.
|
@@ -8112,6 +8117,11 @@ module Google
|
|
8112
8117
|
# @return [Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1NluSettings]
|
8113
8118
|
attr_accessor :nlu_settings
|
8114
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
|
+
|
8115
8125
|
# A flow's transition route group serve two purposes: * They are responsible for
|
8116
8126
|
# matching the user's first utterances in the flow. * They are inherited by
|
8117
8127
|
# every page's transition route groups. Transition route groups defined in the
|
@@ -8145,11 +8155,13 @@ module Google
|
|
8145
8155
|
@description = args[:description] if args.key?(:description)
|
8146
8156
|
@display_name = args[:display_name] if args.key?(:display_name)
|
8147
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)
|
8148
8159
|
@knowledge_connector_settings = args[:knowledge_connector_settings] if args.key?(:knowledge_connector_settings)
|
8149
8160
|
@locked = args[:locked] if args.key?(:locked)
|
8150
8161
|
@multi_language_settings = args[:multi_language_settings] if args.key?(:multi_language_settings)
|
8151
8162
|
@name = args[:name] if args.key?(:name)
|
8152
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)
|
8153
8165
|
@transition_route_groups = args[:transition_route_groups] if args.key?(:transition_route_groups)
|
8154
8166
|
@transition_routes = args[:transition_routes] if args.key?(:transition_routes)
|
8155
8167
|
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.
|
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 = "
|
25
|
+
REVISION = "20250804"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -6127,6 +6127,8 @@ module Google
|
|
6127
6127
|
property :display_name, as: 'displayName'
|
6128
6128
|
collection :event_handlers, as: 'eventHandlers', class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1EventHandler, decorator: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1EventHandler::Representation
|
6129
6129
|
|
6130
|
+
collection :input_parameter_definitions, as: 'inputParameterDefinitions', class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1ParameterDefinition, decorator: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1ParameterDefinition::Representation
|
6131
|
+
|
6130
6132
|
property :knowledge_connector_settings, as: 'knowledgeConnectorSettings', class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1KnowledgeConnectorSettings, decorator: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1KnowledgeConnectorSettings::Representation
|
6131
6133
|
|
6132
6134
|
property :locked, as: 'locked'
|
@@ -6135,6 +6137,8 @@ module Google
|
|
6135
6137
|
property :name, as: 'name'
|
6136
6138
|
property :nlu_settings, as: 'nluSettings', class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1NluSettings, decorator: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1NluSettings::Representation
|
6137
6139
|
|
6140
|
+
collection :output_parameter_definitions, as: 'outputParameterDefinitions', class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1ParameterDefinition, decorator: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1ParameterDefinition::Representation
|
6141
|
+
|
6138
6142
|
collection :transition_route_groups, as: 'transitionRouteGroups'
|
6139
6143
|
collection :transition_routes, as: 'transitionRoutes', class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1TransitionRoute, decorator: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1TransitionRoute::Representation
|
6140
6144
|
|
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.
|
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.
|
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:
|