google-apis-dialogflow_v3 0.9.0 → 0.10.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: 32d2c6511eb20dcd304a78f508d824b1a38ca5b952faca793390fe4fe548e99e
|
4
|
+
data.tar.gz: 1c5119b0e528328f470d449c3afcc1851e547645f85ca2428b723a5efd7defad
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5930640dea081f7ad80d764894ce76e7faad69d4e5437c27789bb477acc034df9aadd3422d0ef6e7d86b99bcc5d759e88e9fab04ee0ac759d8386cbeebe8354a
|
7
|
+
data.tar.gz: 6015115ef86aae9d55df5f979d3504b6a354eb4a26703eca2fa2b912e2c87b082b32a8057e3f53d5d926e59a9f2cc551a1571837cacc202ab3ed8b9194f3ff4b
|
data/CHANGELOG.md
CHANGED
@@ -1327,6 +1327,15 @@ module Google
|
|
1327
1327
|
# @return [Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3NluSettings]
|
1328
1328
|
attr_accessor :nlu_settings
|
1329
1329
|
|
1330
|
+
# A flow's transition route group serve two purposes: * They are responsible for
|
1331
|
+
# matching the user's first utterances in the flow. * They are inherited by
|
1332
|
+
# every page's transition route groups. Transition route groups defined in the
|
1333
|
+
# page have higher priority than those defined in the flow. Format:`projects//
|
1334
|
+
# locations//agents//flows//transitionRouteGroups/`.
|
1335
|
+
# Corresponds to the JSON property `transitionRouteGroups`
|
1336
|
+
# @return [Array<String>]
|
1337
|
+
attr_accessor :transition_route_groups
|
1338
|
+
|
1330
1339
|
# A flow's transition routes serve two purposes: * They are responsible for
|
1331
1340
|
# matching the user's first utterances in the flow. * They are inherited by
|
1332
1341
|
# every page's transition routes and can support use cases such as the user
|
@@ -1351,6 +1360,7 @@ module Google
|
|
1351
1360
|
@event_handlers = args[:event_handlers] if args.key?(:event_handlers)
|
1352
1361
|
@name = args[:name] if args.key?(:name)
|
1353
1362
|
@nlu_settings = args[:nlu_settings] if args.key?(:nlu_settings)
|
1363
|
+
@transition_route_groups = args[:transition_route_groups] if args.key?(:transition_route_groups)
|
1354
1364
|
@transition_routes = args[:transition_routes] if args.key?(:transition_routes)
|
1355
1365
|
end
|
1356
1366
|
end
|
@@ -3158,6 +3168,16 @@ module Google
|
|
3158
3168
|
attr_accessor :analyze_query_text_sentiment
|
3159
3169
|
alias_method :analyze_query_text_sentiment?, :analyze_query_text_sentiment
|
3160
3170
|
|
3171
|
+
# The unique identifier of the page to override the current page in the session.
|
3172
|
+
# Format: `projects//locations//agents//pages/`. If `current_page` is specified,
|
3173
|
+
# the previous state of the session will be ignored by Dialogflow, including the
|
3174
|
+
# previous page and the previous session parameters. In most cases, current_page
|
3175
|
+
# and parameters should be configured together to direct a session to a specific
|
3176
|
+
# state.
|
3177
|
+
# Corresponds to the JSON property `currentPage`
|
3178
|
+
# @return [String]
|
3179
|
+
attr_accessor :current_page
|
3180
|
+
|
3161
3181
|
# Whether to disable webhook calls for this request.
|
3162
3182
|
# Corresponds to the JSON property `disableWebhook`
|
3163
3183
|
# @return [Boolean]
|
@@ -3225,6 +3245,7 @@ module Google
|
|
3225
3245
|
# Update properties of this object
|
3226
3246
|
def update!(**args)
|
3227
3247
|
@analyze_query_text_sentiment = args[:analyze_query_text_sentiment] if args.key?(:analyze_query_text_sentiment)
|
3248
|
+
@current_page = args[:current_page] if args.key?(:current_page)
|
3228
3249
|
@disable_webhook = args[:disable_webhook] if args.key?(:disable_webhook)
|
3229
3250
|
@geo_location = args[:geo_location] if args.key?(:geo_location)
|
3230
3251
|
@parameters = args[:parameters] if args.key?(:parameters)
|
@@ -5082,6 +5103,30 @@ module Google
|
|
5082
5103
|
# @return [Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3SessionInfo]
|
5083
5104
|
attr_accessor :session_info
|
5084
5105
|
|
5106
|
+
# If natural language text was provided as input, this field will contain a copy
|
5107
|
+
# of the text.
|
5108
|
+
# Corresponds to the JSON property `text`
|
5109
|
+
# @return [String]
|
5110
|
+
attr_accessor :text
|
5111
|
+
|
5112
|
+
# If natural language speech audio was provided as input, this field will
|
5113
|
+
# contain the transcript for the audio.
|
5114
|
+
# Corresponds to the JSON property `transcript`
|
5115
|
+
# @return [String]
|
5116
|
+
attr_accessor :transcript
|
5117
|
+
|
5118
|
+
# If an event was provided as input, this field will contain the name of the
|
5119
|
+
# event.
|
5120
|
+
# Corresponds to the JSON property `triggerEvent`
|
5121
|
+
# @return [String]
|
5122
|
+
attr_accessor :trigger_event
|
5123
|
+
|
5124
|
+
# If an intent was provided as input, this field will contain a copy of the
|
5125
|
+
# intent identifier. Format: `projects//locations//agents//intents/`.
|
5126
|
+
# Corresponds to the JSON property `triggerIntent`
|
5127
|
+
# @return [String]
|
5128
|
+
attr_accessor :trigger_intent
|
5129
|
+
|
5085
5130
|
def initialize(**args)
|
5086
5131
|
update!(**args)
|
5087
5132
|
end
|
@@ -5096,6 +5141,10 @@ module Google
|
|
5096
5141
|
@payload = args[:payload] if args.key?(:payload)
|
5097
5142
|
@sentiment_analysis_result = args[:sentiment_analysis_result] if args.key?(:sentiment_analysis_result)
|
5098
5143
|
@session_info = args[:session_info] if args.key?(:session_info)
|
5144
|
+
@text = args[:text] if args.key?(:text)
|
5145
|
+
@transcript = args[:transcript] if args.key?(:transcript)
|
5146
|
+
@trigger_event = args[:trigger_event] if args.key?(:trigger_event)
|
5147
|
+
@trigger_intent = args[:trigger_intent] if args.key?(:trigger_intent)
|
5099
5148
|
end
|
5100
5149
|
end
|
5101
5150
|
|
@@ -7441,6 +7490,30 @@ module Google
|
|
7441
7490
|
# @return [Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3beta1SessionInfo]
|
7442
7491
|
attr_accessor :session_info
|
7443
7492
|
|
7493
|
+
# If natural language text was provided as input, this field will contain a copy
|
7494
|
+
# of the text.
|
7495
|
+
# Corresponds to the JSON property `text`
|
7496
|
+
# @return [String]
|
7497
|
+
attr_accessor :text
|
7498
|
+
|
7499
|
+
# If natural language speech audio was provided as input, this field will
|
7500
|
+
# contain the transcript for the audio.
|
7501
|
+
# Corresponds to the JSON property `transcript`
|
7502
|
+
# @return [String]
|
7503
|
+
attr_accessor :transcript
|
7504
|
+
|
7505
|
+
# If an event was provided as input, this field will contain the name of the
|
7506
|
+
# event.
|
7507
|
+
# Corresponds to the JSON property `triggerEvent`
|
7508
|
+
# @return [String]
|
7509
|
+
attr_accessor :trigger_event
|
7510
|
+
|
7511
|
+
# If an intent was provided as input, this field will contain a copy of the
|
7512
|
+
# intent identifier. Format: `projects//locations//agents//intents/`.
|
7513
|
+
# Corresponds to the JSON property `triggerIntent`
|
7514
|
+
# @return [String]
|
7515
|
+
attr_accessor :trigger_intent
|
7516
|
+
|
7444
7517
|
def initialize(**args)
|
7445
7518
|
update!(**args)
|
7446
7519
|
end
|
@@ -7455,6 +7528,10 @@ module Google
|
|
7455
7528
|
@payload = args[:payload] if args.key?(:payload)
|
7456
7529
|
@sentiment_analysis_result = args[:sentiment_analysis_result] if args.key?(:sentiment_analysis_result)
|
7457
7530
|
@session_info = args[:session_info] if args.key?(:session_info)
|
7531
|
+
@text = args[:text] if args.key?(:text)
|
7532
|
+
@transcript = args[:transcript] if args.key?(:transcript)
|
7533
|
+
@trigger_event = args[:trigger_event] if args.key?(:trigger_event)
|
7534
|
+
@trigger_intent = args[:trigger_intent] if args.key?(:trigger_intent)
|
7458
7535
|
end
|
7459
7536
|
end
|
7460
7537
|
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module DialogflowV3
|
18
18
|
# Version of the google-apis-dialogflow_v3 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.10.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.2.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20210329"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -2549,6 +2549,7 @@ module Google
|
|
2549
2549
|
property :name, as: 'name'
|
2550
2550
|
property :nlu_settings, as: 'nluSettings', class: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3NluSettings, decorator: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3NluSettings::Representation
|
2551
2551
|
|
2552
|
+
collection :transition_route_groups, as: 'transitionRouteGroups'
|
2552
2553
|
collection :transition_routes, as: 'transitionRoutes', class: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3TransitionRoute, decorator: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3TransitionRoute::Representation
|
2553
2554
|
|
2554
2555
|
end
|
@@ -3060,6 +3061,7 @@ module Google
|
|
3060
3061
|
# @private
|
3061
3062
|
class Representation < Google::Apis::Core::JsonRepresentation
|
3062
3063
|
property :analyze_query_text_sentiment, as: 'analyzeQueryTextSentiment'
|
3064
|
+
property :current_page, as: 'currentPage'
|
3063
3065
|
property :disable_webhook, as: 'disableWebhook'
|
3064
3066
|
property :geo_location, as: 'geoLocation', class: Google::Apis::DialogflowV3::GoogleTypeLatLng, decorator: Google::Apis::DialogflowV3::GoogleTypeLatLng::Representation
|
3065
3067
|
|
@@ -3583,6 +3585,10 @@ module Google
|
|
3583
3585
|
|
3584
3586
|
property :session_info, as: 'sessionInfo', class: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3SessionInfo, decorator: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3SessionInfo::Representation
|
3585
3587
|
|
3588
|
+
property :text, as: 'text'
|
3589
|
+
property :transcript, as: 'transcript'
|
3590
|
+
property :trigger_event, as: 'triggerEvent'
|
3591
|
+
property :trigger_intent, as: 'triggerIntent'
|
3586
3592
|
end
|
3587
3593
|
end
|
3588
3594
|
|
@@ -4247,6 +4253,10 @@ module Google
|
|
4247
4253
|
|
4248
4254
|
property :session_info, as: 'sessionInfo', class: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3beta1SessionInfo, decorator: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3beta1SessionInfo::Representation
|
4249
4255
|
|
4256
|
+
property :text, as: 'text'
|
4257
|
+
property :transcript, as: 'transcript'
|
4258
|
+
property :trigger_event, as: 'triggerEvent'
|
4259
|
+
property :trigger_intent, as: 'triggerIntent'
|
4250
4260
|
end
|
4251
4261
|
end
|
4252
4262
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-dialogflow_v3
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.10.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: 2021-
|
11
|
+
date: 2021-04-05 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: google-apis-core
|
@@ -52,7 +52,7 @@ licenses:
|
|
52
52
|
metadata:
|
53
53
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
54
54
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-dialogflow_v3/CHANGELOG.md
|
55
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-dialogflow_v3/v0.
|
55
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-dialogflow_v3/v0.10.0
|
56
56
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-dialogflow_v3
|
57
57
|
post_install_message:
|
58
58
|
rdoc_options: []
|