google-apis-dialogflow_v3 0.102.0 → 0.103.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: bf5156200b926741687fc970e442a1849eaa834fc050bffaeae6479742f4aa2c
|
4
|
+
data.tar.gz: 93fd9c8a58f2a7f726db5e6dc707a8588104aafa0eb572817331aaaf49a63bb9
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a6564673318084148468d10b25d1f27bc605cc8a2d57bdbf84c356d7a609ff27861ae87e929ca85fbe5bcee8904e62a1452e929212219396bd766f0234adf19a
|
7
|
+
data.tar.gz: eae28d0d38459183915421ba2c82d5eb84a4c3933866c242df3125601e4404184d27c2dc8b110cda89953b368ddc4aa741d2fad6091874cc780bc9512dcf8bfb
|
data/CHANGELOG.md
CHANGED
@@ -174,8 +174,8 @@ module Google
|
|
174
174
|
# @return [String]
|
175
175
|
attr_accessor :no_speech_timeout
|
176
176
|
|
177
|
-
# Use timeout based endpointing, interpreting endpointer
|
178
|
-
# timeout value.
|
177
|
+
# Use timeout based endpointing, interpreting endpointer sensitivity as seconds
|
178
|
+
# of timeout value.
|
179
179
|
# Corresponds to the JSON property `useTimeoutBasedEndpointing`
|
180
180
|
# @return [Boolean]
|
181
181
|
attr_accessor :use_timeout_based_endpointing
|
@@ -794,7 +794,7 @@ module Google
|
|
794
794
|
include Google::Apis::Core::Hashable
|
795
795
|
|
796
796
|
# Optional. Condition boost specifications. If a document matches multiple
|
797
|
-
# conditions in the
|
797
|
+
# conditions in the specifications, boost scores from these specifications are
|
798
798
|
# all applied and combined in a non-linear way. Maximum number of specifications
|
799
799
|
# is 20.
|
800
800
|
# Corresponds to the JSON property `conditionBoostSpecs`
|
@@ -1372,6 +1372,13 @@ module Google
|
|
1372
1372
|
# @return [String]
|
1373
1373
|
attr_accessor :data_store_type
|
1374
1374
|
|
1375
|
+
# The document processing mode for the data store connection. Should only be set
|
1376
|
+
# for PUBLIC_WEB and UNSTRUCTURED data stores. If not set it is considered as
|
1377
|
+
# DOCUMENTS, as this is the legacy mode.
|
1378
|
+
# Corresponds to the JSON property `documentProcessingMode`
|
1379
|
+
# @return [String]
|
1380
|
+
attr_accessor :document_processing_mode
|
1381
|
+
|
1375
1382
|
def initialize(**args)
|
1376
1383
|
update!(**args)
|
1377
1384
|
end
|
@@ -1380,6 +1387,7 @@ module Google
|
|
1380
1387
|
def update!(**args)
|
1381
1388
|
@data_store = args[:data_store] if args.key?(:data_store)
|
1382
1389
|
@data_store_type = args[:data_store_type] if args.key?(:data_store_type)
|
1390
|
+
@document_processing_mode = args[:document_processing_mode] if args.key?(:document_processing_mode)
|
1383
1391
|
end
|
1384
1392
|
end
|
1385
1393
|
|
@@ -3134,7 +3142,7 @@ module Google
|
|
3134
3142
|
# every page's transition routes and can support use cases such as the user
|
3135
3143
|
# saying "help" or "can I talk to a human?", which can be handled in a common
|
3136
3144
|
# way regardless of the current page. Transition routes defined in the page have
|
3137
|
-
# higher priority than those defined in the flow. TransitionRoutes are
|
3145
|
+
# higher priority than those defined in the flow. TransitionRoutes are evaluated
|
3138
3146
|
# in the following order: * TransitionRoutes with intent specified. *
|
3139
3147
|
# TransitionRoutes with only condition specified. TransitionRoutes with intent
|
3140
3148
|
# specified are inherited by pages in the flow.
|
@@ -5708,7 +5716,7 @@ module Google
|
|
5708
5716
|
|
5709
5717
|
# A list of transitions for the transition rules of this page. They route the
|
5710
5718
|
# conversation to another page in the same flow, or another flow. When we are in
|
5711
|
-
# a certain page, the TransitionRoutes are
|
5719
|
+
# a certain page, the TransitionRoutes are evaluated in the following order: *
|
5712
5720
|
# TransitionRoutes defined in the page with intent specified. * TransitionRoutes
|
5713
5721
|
# defined in the transition route groups with intent specified. *
|
5714
5722
|
# TransitionRoutes defined in flow with intent specified. * TransitionRoutes
|
@@ -6986,12 +6994,18 @@ module Google
|
|
6986
6994
|
class GoogleCloudDialogflowCxV3SearchConfig
|
6987
6995
|
include Google::Apis::Core::Hashable
|
6988
6996
|
|
6989
|
-
# Optional. Boosting configuration for the datastores.
|
6997
|
+
# Optional. Boosting configuration for the datastores. Maps from datastore name
|
6998
|
+
# to their boost configuration. Do not specify more than one BoostSpecs for each
|
6999
|
+
# datastore name. If multiple BoostSpecs are provided for the same datastore
|
7000
|
+
# name, the behavior is undefined.
|
6990
7001
|
# Corresponds to the JSON property `boostSpecs`
|
6991
7002
|
# @return [Array<Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3BoostSpecs>]
|
6992
7003
|
attr_accessor :boost_specs
|
6993
7004
|
|
6994
|
-
# Optional. Filter configuration for the datastores.
|
7005
|
+
# Optional. Filter configuration for the datastores. Maps from datastore name to
|
7006
|
+
# the filter expression for that datastore. Do not specify more than one
|
7007
|
+
# FilterSpecs for each datastore name. If multiple FilterSpecs are provided for
|
7008
|
+
# the same datastore name, the behavior is undefined.
|
6995
7009
|
# Corresponds to the JSON property `filterSpecs`
|
6996
7010
|
# @return [Array<Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3FilterSpecs>]
|
6997
7011
|
attr_accessor :filter_specs
|
@@ -8555,7 +8569,7 @@ module Google
|
|
8555
8569
|
# @return [String]
|
8556
8570
|
attr_accessor :client_id
|
8557
8571
|
|
8558
|
-
#
|
8572
|
+
# Optional. The client secret provided by the 3rd party platform.
|
8559
8573
|
# Corresponds to the JSON property `clientSecret`
|
8560
8574
|
# @return [String]
|
8561
8575
|
attr_accessor :client_secret
|
@@ -9069,8 +9083,8 @@ module Google
|
|
9069
9083
|
# @return [String]
|
9070
9084
|
attr_accessor :no_speech_timeout
|
9071
9085
|
|
9072
|
-
# Use timeout based endpointing, interpreting endpointer
|
9073
|
-
# timeout value.
|
9086
|
+
# Use timeout based endpointing, interpreting endpointer sensitivity as seconds
|
9087
|
+
# of timeout value.
|
9074
9088
|
# Corresponds to the JSON property `useTimeoutBasedEndpointing`
|
9075
9089
|
# @return [Boolean]
|
9076
9090
|
attr_accessor :use_timeout_based_endpointing
|
@@ -9442,6 +9456,13 @@ module Google
|
|
9442
9456
|
# @return [String]
|
9443
9457
|
attr_accessor :data_store_type
|
9444
9458
|
|
9459
|
+
# The document processing mode for the data store connection. Should only be set
|
9460
|
+
# for PUBLIC_WEB and UNSTRUCTURED data stores. If not set it is considered as
|
9461
|
+
# DOCUMENTS, as this is the legacy mode.
|
9462
|
+
# Corresponds to the JSON property `documentProcessingMode`
|
9463
|
+
# @return [String]
|
9464
|
+
attr_accessor :document_processing_mode
|
9465
|
+
|
9445
9466
|
def initialize(**args)
|
9446
9467
|
update!(**args)
|
9447
9468
|
end
|
@@ -9450,6 +9471,7 @@ module Google
|
|
9450
9471
|
def update!(**args)
|
9451
9472
|
@data_store = args[:data_store] if args.key?(:data_store)
|
9452
9473
|
@data_store_type = args[:data_store_type] if args.key?(:data_store_type)
|
9474
|
+
@document_processing_mode = args[:document_processing_mode] if args.key?(:document_processing_mode)
|
9453
9475
|
end
|
9454
9476
|
end
|
9455
9477
|
|
@@ -11029,7 +11051,7 @@ module Google
|
|
11029
11051
|
|
11030
11052
|
# A list of transitions for the transition rules of this page. They route the
|
11031
11053
|
# conversation to another page in the same flow, or another flow. When we are in
|
11032
|
-
# a certain page, the TransitionRoutes are
|
11054
|
+
# a certain page, the TransitionRoutes are evaluated in the following order: *
|
11033
11055
|
# TransitionRoutes defined in the page with intent specified. * TransitionRoutes
|
11034
11056
|
# defined in the transition route groups with intent specified. *
|
11035
11057
|
# TransitionRoutes defined in flow with intent specified. * TransitionRoutes
|
@@ -12380,7 +12402,7 @@ module Google
|
|
12380
12402
|
# @return [String]
|
12381
12403
|
attr_accessor :client_id
|
12382
12404
|
|
12383
|
-
#
|
12405
|
+
# Optional. The client secret provided by the 3rd party platform.
|
12384
12406
|
# Corresponds to the JSON property `clientSecret`
|
12385
12407
|
# @return [String]
|
12386
12408
|
attr_accessor :client_secret
|
@@ -15250,7 +15272,8 @@ module Google
|
|
15250
15272
|
# @return [String]
|
15251
15273
|
attr_accessor :participant_role
|
15252
15274
|
|
15253
|
-
# Optional. The time when the message was sent.
|
15275
|
+
# Optional. The time when the message was sent. For voice messages, this is the
|
15276
|
+
# time when an utterance started.
|
15254
15277
|
# Corresponds to the JSON property `sendTime`
|
15255
15278
|
# @return [String]
|
15256
15279
|
attr_accessor :send_time
|
@@ -18964,7 +18987,8 @@ module Google
|
|
18964
18987
|
# @return [Array<Google::Apis::DialogflowV3::GoogleCloudDialogflowV2beta1ResponseMessage>]
|
18965
18988
|
attr_accessor :response_messages
|
18966
18989
|
|
18967
|
-
# Optional. The time when the message was sent.
|
18990
|
+
# Optional. The time when the message was sent. For voice messages, this is the
|
18991
|
+
# time when an utterance started.
|
18968
18992
|
# Corresponds to the JSON property `sendTime`
|
18969
18993
|
# @return [String]
|
18970
18994
|
attr_accessor :send_time
|
@@ -19251,9 +19275,9 @@ module Google
|
|
19251
19275
|
# Dialogflow only uses this to determine which conversations were handed off to
|
19252
19276
|
# a human agent for measurement purposes. What else to do with this signal is up
|
19253
19277
|
# to you and your handoff procedures. You may set this, for example: * In the
|
19254
|
-
# entry fulfillment of a CX Page if entering the page indicates
|
19255
|
-
# extremely wrong in the conversation. * In a webhook response
|
19256
|
-
# determine that the customer issue can only be handled by a human.
|
19278
|
+
# entry fulfillment of a Dialogflow CX Page if entering the page indicates
|
19279
|
+
# something went extremely wrong in the conversation. * In a webhook response
|
19280
|
+
# when you determine that the customer issue can only be handled by a human.
|
19257
19281
|
# Corresponds to the JSON property `liveAgentHandoff`
|
19258
19282
|
# @return [Google::Apis::DialogflowV3::GoogleCloudDialogflowV2beta1ResponseMessageLiveAgentHandoff]
|
19259
19283
|
attr_accessor :live_agent_handoff
|
@@ -19312,9 +19336,9 @@ module Google
|
|
19312
19336
|
# Dialogflow only uses this to determine which conversations were handed off to
|
19313
19337
|
# a human agent for measurement purposes. What else to do with this signal is up
|
19314
19338
|
# to you and your handoff procedures. You may set this, for example: * In the
|
19315
|
-
# entry fulfillment of a CX Page if entering the page indicates
|
19316
|
-
# extremely wrong in the conversation. * In a webhook response
|
19317
|
-
# determine that the customer issue can only be handled by a human.
|
19339
|
+
# entry fulfillment of a Dialogflow CX Page if entering the page indicates
|
19340
|
+
# something went extremely wrong in the conversation. * In a webhook response
|
19341
|
+
# when you determine that the customer issue can only be handled by a human.
|
19318
19342
|
class GoogleCloudDialogflowV2beta1ResponseMessageLiveAgentHandoff
|
19319
19343
|
include Google::Apis::Core::Hashable
|
19320
19344
|
|
@@ -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.103.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.16.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20250227"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -3638,6 +3638,7 @@ module Google
|
|
3638
3638
|
class Representation < Google::Apis::Core::JsonRepresentation
|
3639
3639
|
property :data_store, as: 'dataStore'
|
3640
3640
|
property :data_store_type, as: 'dataStoreType'
|
3641
|
+
property :document_processing_mode, as: 'documentProcessingMode'
|
3641
3642
|
end
|
3642
3643
|
end
|
3643
3644
|
|
@@ -5811,6 +5812,7 @@ module Google
|
|
5811
5812
|
class Representation < Google::Apis::Core::JsonRepresentation
|
5812
5813
|
property :data_store, as: 'dataStore'
|
5813
5814
|
property :data_store_type, as: 'dataStoreType'
|
5815
|
+
property :document_processing_mode, as: 'documentProcessingMode'
|
5814
5816
|
end
|
5815
5817
|
end
|
5816
5818
|
|
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
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.103.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
8
8
|
bindir: bin
|
9
9
|
cert_chain: []
|
10
|
-
date: 2025-
|
10
|
+
date: 2025-03-02 00:00:00.000000000 Z
|
11
11
|
dependencies:
|
12
12
|
- !ruby/object:Gem::Dependency
|
13
13
|
name: google-apis-core
|
@@ -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_v3/CHANGELOG.md
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-dialogflow_v3/v0.
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-dialogflow_v3/v0.103.0
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-dialogflow_v3
|
62
62
|
rdoc_options: []
|
63
63
|
require_paths:
|
@@ -73,7 +73,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
73
73
|
- !ruby/object:Gem::Version
|
74
74
|
version: '0'
|
75
75
|
requirements: []
|
76
|
-
rubygems_version: 3.6.
|
76
|
+
rubygems_version: 3.6.5
|
77
77
|
specification_version: 4
|
78
78
|
summary: Simple REST client for Dialogflow API V3
|
79
79
|
test_files: []
|