google-apis-dialogflow_v2 0.85.0 → 0.87.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: 6b5032cdc17d0beb50074f189e0747f6be5eb06131b99262ecaaced767dbda82
|
4
|
+
data.tar.gz: 4821fb6efe60c61b72831a858ed36fb58dfd111ff4ae90cdc096f9c89eb9338b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b2afe7d8267c8b98197158067951047982a1c0a7c286a4e06f94ae61d7d35e51b0d6c0a58bd669069541a0e41e1ae05ee897566c06a483023848019c78db5a46
|
7
|
+
data.tar.gz: 2a423935f23bc5ba3a7c787d8dbf0354ec4c8a171a11134f052b6442bcdb02d2654db0fbcc01a43b404e323f653621a29ee1d5d16f454b4837059d96b2928d9c
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Release history for google-apis-dialogflow_v2
|
2
2
|
|
3
|
+
### v0.87.0 (2024-05-19)
|
4
|
+
|
5
|
+
* Regenerated using generator version 0.15.0
|
6
|
+
|
7
|
+
### v0.86.0 (2024-05-12)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20240507
|
10
|
+
|
3
11
|
### v0.85.0 (2024-04-21)
|
4
12
|
|
5
13
|
* Regenerated from discovery document revision 20240417
|
@@ -81,11 +81,21 @@ module Google
|
|
81
81
|
attr_accessor :enabled
|
82
82
|
alias_method :enabled?, :enabled
|
83
83
|
|
84
|
+
# Endpoint timeout setting for matching dtmf input to regex.
|
85
|
+
# Corresponds to the JSON property `endpointingTimeoutDuration`
|
86
|
+
# @return [String]
|
87
|
+
attr_accessor :endpointing_timeout_duration
|
88
|
+
|
84
89
|
# The digit that terminates a DTMF digit sequence.
|
85
90
|
# Corresponds to the JSON property `finishDigit`
|
86
91
|
# @return [String]
|
87
92
|
attr_accessor :finish_digit
|
88
93
|
|
94
|
+
# Interdigit timeout setting for matching dtmf input to regex.
|
95
|
+
# Corresponds to the JSON property `interdigitTimeoutDuration`
|
96
|
+
# @return [String]
|
97
|
+
attr_accessor :interdigit_timeout_duration
|
98
|
+
|
89
99
|
# Max length of DTMF digits.
|
90
100
|
# Corresponds to the JSON property `maxDigits`
|
91
101
|
# @return [Fixnum]
|
@@ -98,7 +108,9 @@ module Google
|
|
98
108
|
# Update properties of this object
|
99
109
|
def update!(**args)
|
100
110
|
@enabled = args[:enabled] if args.key?(:enabled)
|
111
|
+
@endpointing_timeout_duration = args[:endpointing_timeout_duration] if args.key?(:endpointing_timeout_duration)
|
101
112
|
@finish_digit = args[:finish_digit] if args.key?(:finish_digit)
|
113
|
+
@interdigit_timeout_duration = args[:interdigit_timeout_duration] if args.key?(:interdigit_timeout_duration)
|
102
114
|
@max_digits = args[:max_digits] if args.key?(:max_digits)
|
103
115
|
end
|
104
116
|
end
|
@@ -3915,11 +3927,21 @@ module Google
|
|
3915
3927
|
attr_accessor :enabled
|
3916
3928
|
alias_method :enabled?, :enabled
|
3917
3929
|
|
3930
|
+
# Endpoint timeout setting for matching dtmf input to regex.
|
3931
|
+
# Corresponds to the JSON property `endpointingTimeoutDuration`
|
3932
|
+
# @return [String]
|
3933
|
+
attr_accessor :endpointing_timeout_duration
|
3934
|
+
|
3918
3935
|
# The digit that terminates a DTMF digit sequence.
|
3919
3936
|
# Corresponds to the JSON property `finishDigit`
|
3920
3937
|
# @return [String]
|
3921
3938
|
attr_accessor :finish_digit
|
3922
3939
|
|
3940
|
+
# Interdigit timeout setting for matching dtmf input to regex.
|
3941
|
+
# Corresponds to the JSON property `interdigitTimeoutDuration`
|
3942
|
+
# @return [String]
|
3943
|
+
attr_accessor :interdigit_timeout_duration
|
3944
|
+
|
3923
3945
|
# Max length of DTMF digits.
|
3924
3946
|
# Corresponds to the JSON property `maxDigits`
|
3925
3947
|
# @return [Fixnum]
|
@@ -3932,7 +3954,9 @@ module Google
|
|
3932
3954
|
# Update properties of this object
|
3933
3955
|
def update!(**args)
|
3934
3956
|
@enabled = args[:enabled] if args.key?(:enabled)
|
3957
|
+
@endpointing_timeout_duration = args[:endpointing_timeout_duration] if args.key?(:endpointing_timeout_duration)
|
3935
3958
|
@finish_digit = args[:finish_digit] if args.key?(:finish_digit)
|
3959
|
+
@interdigit_timeout_duration = args[:interdigit_timeout_duration] if args.key?(:interdigit_timeout_duration)
|
3936
3960
|
@max_digits = args[:max_digits] if args.key?(:max_digits)
|
3937
3961
|
end
|
3938
3962
|
end
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module DialogflowV2
|
18
18
|
# Version of the google-apis-dialogflow_v2 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.87.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
|
-
GENERATOR_VERSION = "0.
|
22
|
+
GENERATOR_VERSION = "0.15.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20240507"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -3178,7 +3178,9 @@ module Google
|
|
3178
3178
|
# @private
|
3179
3179
|
class Representation < Google::Apis::Core::JsonRepresentation
|
3180
3180
|
property :enabled, as: 'enabled'
|
3181
|
+
property :endpointing_timeout_duration, as: 'endpointingTimeoutDuration'
|
3181
3182
|
property :finish_digit, as: 'finishDigit'
|
3183
|
+
property :interdigit_timeout_duration, as: 'interdigitTimeoutDuration'
|
3182
3184
|
property :max_digits, as: 'maxDigits'
|
3183
3185
|
end
|
3184
3186
|
end
|
@@ -4230,7 +4232,9 @@ module Google
|
|
4230
4232
|
# @private
|
4231
4233
|
class Representation < Google::Apis::Core::JsonRepresentation
|
4232
4234
|
property :enabled, as: 'enabled'
|
4235
|
+
property :endpointing_timeout_duration, as: 'endpointingTimeoutDuration'
|
4233
4236
|
property :finish_digit, as: 'finishDigit'
|
4237
|
+
property :interdigit_timeout_duration, as: 'interdigitTimeoutDuration'
|
4234
4238
|
property :max_digits, as: 'maxDigits'
|
4235
4239
|
end
|
4236
4240
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-dialogflow_v2
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.87.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: 2024-
|
11
|
+
date: 2024-05-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.15.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.15.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_v2/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-dialogflow_v2/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-dialogflow_v2/v0.87.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-dialogflow_v2
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|