google-apis-dialogflow_v2beta1 0.84.0 → 0.85.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: 49841754d70750cb4677b4eeedf5229c11e1d78a38b345d5a2cf4d3c815dbcfa
4
- data.tar.gz: 1b37fbe120002ecdc72f72db23a484dd0c739dcea5e2fc2248dbfe71ae12a8f5
3
+ metadata.gz: 62df67def340eb10347193e6712cbfc97f2009b10c7a634ca2537f18e0485dbd
4
+ data.tar.gz: cb5f3d25cf9867d7bc5d48cb18f1e4e22934b94849225355532cb29517641c8a
5
5
  SHA512:
6
- metadata.gz: ff2c0765f1fe76b573832c710385335cc53e968cdf3f46aa23bf220c103bb78ebab22774874529e9cd634600337054f9ed84411c79fe56dcb3d933b64296e07f
7
- data.tar.gz: abfb8021d63b36bcd56b97d20971e90d304932a335f5812c708a03a6d4b269d7aab3a48744c9336f8be1e788029f9188fcc05fda1e2db2aaa8a3936da522302d
6
+ metadata.gz: b179dddc46636ed0484a3f8f467299ec0bc1106e61d84f6646c52488b8568b117a48acbc871a3d0eb4c542cb00d6f6cd4c0f3916e44ac4f5bd9db33cf6166443
7
+ data.tar.gz: 35afac537e4aa954165dfbed44469d6979ee81807984eedfd3c17f9a3c5e00eb39bdcc107d9cffe1657f40cf79b9c1ac33658dbf62ddfd224a971a288ec5a34a
data/CHANGELOG.md CHANGED
@@ -1,5 +1,10 @@
1
1
  # Release history for google-apis-dialogflow_v2beta1
2
2
 
3
+ ### v0.85.0 (2024-05-19)
4
+
5
+ * Regenerated from discovery document revision 20240507
6
+ * Regenerated using generator version 0.15.0
7
+
3
8
  ### v0.84.0 (2024-04-21)
4
9
 
5
10
  * 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 DialogflowV2beta1
18
18
  # Version of the google-apis-dialogflow_v2beta1 gem
19
- GEM_VERSION = "0.84.0"
19
+ GEM_VERSION = "0.85.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.14.0"
22
+ GENERATOR_VERSION = "0.15.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
@@ -3196,7 +3196,9 @@ module Google
3196
3196
  # @private
3197
3197
  class Representation < Google::Apis::Core::JsonRepresentation
3198
3198
  property :enabled, as: 'enabled'
3199
+ property :endpointing_timeout_duration, as: 'endpointingTimeoutDuration'
3199
3200
  property :finish_digit, as: 'finishDigit'
3201
+ property :interdigit_timeout_duration, as: 'interdigitTimeoutDuration'
3200
3202
  property :max_digits, as: 'maxDigits'
3201
3203
  end
3202
3204
  end
@@ -4248,7 +4250,9 @@ module Google
4248
4250
  # @private
4249
4251
  class Representation < Google::Apis::Core::JsonRepresentation
4250
4252
  property :enabled, as: 'enabled'
4253
+ property :endpointing_timeout_duration, as: 'endpointingTimeoutDuration'
4251
4254
  property :finish_digit, as: 'finishDigit'
4255
+ property :interdigit_timeout_duration, as: 'interdigitTimeoutDuration'
4252
4256
  property :max_digits, as: 'maxDigits'
4253
4257
  end
4254
4258
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-dialogflow_v2beta1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.84.0
4
+ version: 0.85.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-19 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.14.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.14.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_v2beta1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-dialogflow_v2beta1/v0.84.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-dialogflow_v2beta1/v0.85.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-dialogflow_v2beta1
63
63
  post_install_message:
64
64
  rdoc_options: []