google-apis-dialogflow_v2 0.85.0 → 0.86.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: 70b8c5a0d6e2d019e9b4c1a3e15d9932251ce5f9a1acd570d79bcbef9bbffce9
4
- data.tar.gz: 1c19864bc3a920b1c6ad55e2df387b2998f909413b0ac5d1b3507fb75b3ae17b
3
+ metadata.gz: 144c169278908a1d71b0e7219ab37c4aa725616db626b8b29c4136b3ba73c451
4
+ data.tar.gz: d06c56fc1f71c4aa0f9dfad541c83e89609ecf39ca6464d7214aee4f473a9deb
5
5
  SHA512:
6
- metadata.gz: cfb0b15893227e5972c82ac34121d6c2345bcc8139d12c12e9412526072d0684448ed747e0d09af20932ab3023f3199bac7da17cb4a1925333bd5f2ca5650ae9
7
- data.tar.gz: a432527dd121bcbbef2fcd7f921cafb315591c8df434e3cf111779ee6d54951771038f04377cc0b87eefa456f71924401e3c25523568f44ebd345834dc97ef19
6
+ metadata.gz: a07ea4983aa41f08d7756f4671b27b76d0221fa4965d4ba66ac15ec4929df0a075af13f891d603637a3fbc2e07ad6fac2f1029e83ab0695ec83cdfe1a8bc3d44
7
+ data.tar.gz: 42234abeb9f206cc75e8583bb0170d76dfe09f0fde419887b66e4b807ab8856bf8de6fa974fbdee7e9b2695a83c69c8045b74a88f9f2c4f55c6e0ae25a72f3df
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-dialogflow_v2
2
2
 
3
+ ### v0.86.0 (2024-05-12)
4
+
5
+ * Regenerated from discovery document revision 20240507
6
+
3
7
  ### v0.85.0 (2024-04-21)
4
8
 
5
9
  * 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.85.0"
19
+ GEM_VERSION = "0.86.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.14.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20240417"
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.85.0
4
+ version: 0.86.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-04-21 00:00:00.000000000 Z
11
+ date: 2024-05-12 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-apis-core
@@ -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.85.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-dialogflow_v2/v0.86.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: []