google-apis-dialogflow_v3beta1 0.85.0 → 0.86.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: 6b3831ab72f767e519c495c304caa6ca83d0e38aa62d1ca4e9b952920c2e77fa
4
- data.tar.gz: 411962c3d9516a8d7455af742ba9b76185c2da644688dba252b4fe13c1453e45
3
+ metadata.gz: a7f11602909aa53343b2658e94b2c80b0f0e90318992d6608c4fd41c2c35a4df
4
+ data.tar.gz: 4101f90b2ee220c95d821792907ca2455ba642a5725d071ed8afbbef616047ed
5
5
  SHA512:
6
- metadata.gz: bd63f2425f792d483b35de8304908bc6767da4aad3bde24440a1fcc15e3a51d6035ffc8854e54347859da855cfb556ddb31791ef9605638e9e8654d62e61fb90
7
- data.tar.gz: 4d9c0c7e9c7606c3a7ec05e2cc01c6fd3c6770755a98b5895e7faecb5704ec873448dde6316c2cd377df4b4919dcc5d9d8890e36ff49f757513814e805ccd183
6
+ metadata.gz: 309e38dbe75024f62e1882472551e7f134909ed7dfb23b4aeeb289d3118fb47fdf638ab23b17030b9056cf1b9c694ba6ea37998cd4bbe9bb567343863f391d0a
7
+ data.tar.gz: 95338e58c35279fc59b0828b69b1850b78eb7edcdf33d090969ac6c39b03843e2157ac80477f74c68c2b15dd0c15ab91b6ac1518be8c6234a670de7d1b162f8b
data/CHANGELOG.md CHANGED
@@ -1,5 +1,10 @@
1
1
  # Release history for google-apis-dialogflow_v3beta1
2
2
 
3
+ ### v0.86.0 (2024-05-19)
4
+
5
+ * Regenerated from discovery document revision 20240507
6
+ * Regenerated using generator version 0.15.0
7
+
3
8
  ### v0.85.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
@@ -11268,6 +11292,13 @@ module Google
11268
11292
  # @return [String]
11269
11293
  attr_accessor :gcs_bucket
11270
11294
 
11295
+ # Whether to store TTS audio. By default, TTS audio from the virtual agent is
11296
+ # not exported.
11297
+ # Corresponds to the JSON property `storeTtsAudio`
11298
+ # @return [Boolean]
11299
+ attr_accessor :store_tts_audio
11300
+ alias_method :store_tts_audio?, :store_tts_audio
11301
+
11271
11302
  def initialize(**args)
11272
11303
  update!(**args)
11273
11304
  end
@@ -11278,6 +11309,7 @@ module Google
11278
11309
  @audio_format = args[:audio_format] if args.key?(:audio_format)
11279
11310
  @enable_audio_redaction = args[:enable_audio_redaction] if args.key?(:enable_audio_redaction)
11280
11311
  @gcs_bucket = args[:gcs_bucket] if args.key?(:gcs_bucket)
11312
+ @store_tts_audio = args[:store_tts_audio] if args.key?(:store_tts_audio)
11281
11313
  end
11282
11314
  end
11283
11315
 
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module DialogflowV3beta1
18
18
  # Version of the google-apis-dialogflow_v3beta1 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
- 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
@@ -3226,7 +3226,9 @@ module Google
3226
3226
  # @private
3227
3227
  class Representation < Google::Apis::Core::JsonRepresentation
3228
3228
  property :enabled, as: 'enabled'
3229
+ property :endpointing_timeout_duration, as: 'endpointingTimeoutDuration'
3229
3230
  property :finish_digit, as: 'finishDigit'
3231
+ property :interdigit_timeout_duration, as: 'interdigitTimeoutDuration'
3230
3232
  property :max_digits, as: 'maxDigits'
3231
3233
  end
3232
3234
  end
@@ -4278,7 +4280,9 @@ module Google
4278
4280
  # @private
4279
4281
  class Representation < Google::Apis::Core::JsonRepresentation
4280
4282
  property :enabled, as: 'enabled'
4283
+ property :endpointing_timeout_duration, as: 'endpointingTimeoutDuration'
4281
4284
  property :finish_digit, as: 'finishDigit'
4285
+ property :interdigit_timeout_duration, as: 'interdigitTimeoutDuration'
4282
4286
  property :max_digits, as: 'maxDigits'
4283
4287
  end
4284
4288
  end
@@ -6269,6 +6273,7 @@ module Google
6269
6273
  property :audio_format, as: 'audioFormat'
6270
6274
  property :enable_audio_redaction, as: 'enableAudioRedaction'
6271
6275
  property :gcs_bucket, as: 'gcsBucket'
6276
+ property :store_tts_audio, as: 'storeTtsAudio'
6272
6277
  end
6273
6278
  end
6274
6279
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-dialogflow_v3beta1
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-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.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_v3beta1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-dialogflow_v3beta1/v0.85.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-dialogflow_v3beta1/v0.86.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-dialogflow_v3beta1
63
63
  post_install_message:
64
64
  rdoc_options: []