google-apis-dialogflow_v3 0.50.0 → 0.52.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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 6c911e5f6648277e30a70f85374562ec67b2cf6c8b09add19a1b8254793af184
|
4
|
+
data.tar.gz: 47a5dc1a54a79dad3ed5e2666c00176490033f5ebc8c801a3e2088ce3e9a4603
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d1a6466c1d34efe86aafaef901ce511aa1b5685a0c3bcc9163080ba453f138201c9a10bef863d2f5e843cbcc3524dbab263f3423854381e75fbcd02011ef5714
|
7
|
+
data.tar.gz: 95f1af2f76f1d94ab6ef2c1d218470f0abccadd5ecfd5f8929ddc31b6fc278b6ec10d983a2d6411556c5aa6a98b279ef1ff43966fdeed77e144f4be9bd8cca50
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,14 @@
|
|
1
1
|
# Release history for google-apis-dialogflow_v3
|
2
2
|
|
3
|
+
### v0.52.0 (2023-02-26)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20230222
|
6
|
+
|
7
|
+
### v0.51.0 (2023-02-19)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20230214
|
10
|
+
* Regenerated using generator version 0.12.0
|
11
|
+
|
3
12
|
### v0.50.0 (2023-02-12)
|
4
13
|
|
5
14
|
* Regenerated from discovery document revision 20230209
|
@@ -1227,9 +1227,9 @@ module Google
|
|
1227
1227
|
# @return [String]
|
1228
1228
|
attr_accessor :update_time
|
1229
1229
|
|
1230
|
-
#
|
1231
|
-
#
|
1232
|
-
#
|
1230
|
+
# A list of configurations for flow versions. You should include version configs
|
1231
|
+
# for all flows that are reachable from `Start Flow` in the agent. Otherwise, an
|
1232
|
+
# error will be returned.
|
1233
1233
|
# Corresponds to the JSON property `versionConfigs`
|
1234
1234
|
# @return [Array<Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3EnvironmentVersionConfig>]
|
1235
1235
|
attr_accessor :version_configs
|
@@ -3545,6 +3545,12 @@ module Google
|
|
3545
3545
|
class GoogleCloudDialogflowCxV3MatchIntentRequest
|
3546
3546
|
include Google::Apis::Core::Hashable
|
3547
3547
|
|
3548
|
+
# Persist session parameter changes from `query_params`.
|
3549
|
+
# Corresponds to the JSON property `persistParameterChanges`
|
3550
|
+
# @return [Boolean]
|
3551
|
+
attr_accessor :persist_parameter_changes
|
3552
|
+
alias_method :persist_parameter_changes?, :persist_parameter_changes
|
3553
|
+
|
3548
3554
|
# Represents the query input. It can contain one of: 1. A conversational query
|
3549
3555
|
# in the form of text. 2. An intent query that specifies which intent to trigger.
|
3550
3556
|
# 3. Natural language speech audio to be processed. 4. An event to be triggered.
|
@@ -3564,6 +3570,7 @@ module Google
|
|
3564
3570
|
|
3565
3571
|
# Update properties of this object
|
3566
3572
|
def update!(**args)
|
3573
|
+
@persist_parameter_changes = args[:persist_parameter_changes] if args.key?(:persist_parameter_changes)
|
3567
3574
|
@query_input = args[:query_input] if args.key?(:query_input)
|
3568
3575
|
@query_params = args[:query_params] if args.key?(:query_params)
|
3569
3576
|
end
|
@@ -7086,9 +7093,9 @@ module Google
|
|
7086
7093
|
# @return [String]
|
7087
7094
|
attr_accessor :update_time
|
7088
7095
|
|
7089
|
-
#
|
7090
|
-
#
|
7091
|
-
#
|
7096
|
+
# A list of configurations for flow versions. You should include version configs
|
7097
|
+
# for all flows that are reachable from `Start Flow` in the agent. Otherwise, an
|
7098
|
+
# error will be returned.
|
7092
7099
|
# Corresponds to the JSON property `versionConfigs`
|
7093
7100
|
# @return [Array<Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3beta1EnvironmentVersionConfig>]
|
7094
7101
|
attr_accessor :version_configs
|
@@ -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.52.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
|
-
GENERATOR_VERSION = "0.
|
22
|
+
GENERATOR_VERSION = "0.12.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20230222"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -3644,6 +3644,7 @@ module Google
|
|
3644
3644
|
class GoogleCloudDialogflowCxV3MatchIntentRequest
|
3645
3645
|
# @private
|
3646
3646
|
class Representation < Google::Apis::Core::JsonRepresentation
|
3647
|
+
property :persist_parameter_changes, as: 'persistParameterChanges'
|
3647
3648
|
property :query_input, as: 'queryInput', class: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3QueryInput, decorator: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3QueryInput::Representation
|
3648
3649
|
|
3649
3650
|
property :query_params, as: 'queryParams', class: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3QueryParameters, decorator: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3QueryParameters::Representation
|
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.52.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-02-
|
11
|
+
date: 2023-02-26 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: google-apis-core
|
@@ -16,7 +16,7 @@ dependencies:
|
|
16
16
|
requirements:
|
17
17
|
- - ">="
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: 0.
|
19
|
+
version: 0.11.0
|
20
20
|
- - "<"
|
21
21
|
- !ruby/object:Gem::Version
|
22
22
|
version: 2.a
|
@@ -26,7 +26,7 @@ dependencies:
|
|
26
26
|
requirements:
|
27
27
|
- - ">="
|
28
28
|
- !ruby/object:Gem::Version
|
29
|
-
version: 0.
|
29
|
+
version: 0.11.0
|
30
30
|
- - "<"
|
31
31
|
- !ruby/object:Gem::Version
|
32
32
|
version: 2.a
|
@@ -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_v3/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-dialogflow_v3/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-dialogflow_v3/v0.52.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-dialogflow_v3
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|