google-apis-speech_v1 0.11.0 → 0.12.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:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 511c5a564a36633cd285f259bf93c34c8624fa1ec6dadea775a676a8f947ddd8
|
|
4
|
+
data.tar.gz: b39fb57bc4713c92af3242881fbbfbf6f6c598f65e33e21f95a3f825c3878c4d
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: a49a3cb51df0514c96304cf0c6feba9753205bf2e9221c071e327345c6d0b9fe69812ec4a772133b9adacbc5475f665dc10793a91c79b4aecfbdf5b16d355967
|
|
7
|
+
data.tar.gz: 5efc5103da55d8efa7f1296afa6134c0dc4f27fc4fdc4a74702b96846066ef8c87b045e74a54d5524ca2a1c0676209bcb1def8b9269ee9c673b22630da266500
|
data/CHANGELOG.md
CHANGED
|
@@ -323,6 +323,26 @@ module Google
|
|
|
323
323
|
attr_accessor :enable_separate_recognition_per_channel
|
|
324
324
|
alias_method :enable_separate_recognition_per_channel?, :enable_separate_recognition_per_channel
|
|
325
325
|
|
|
326
|
+
# The spoken emoji behavior for the call If not set, uses default behavior based
|
|
327
|
+
# on model of choice If 'true', adds spoken emoji formatting for the request.
|
|
328
|
+
# This will replace spoken emojis with the corresponding Unicode symbols in the
|
|
329
|
+
# final transcript. If 'false', spoken emojis are not replaced.
|
|
330
|
+
# Corresponds to the JSON property `enableSpokenEmojis`
|
|
331
|
+
# @return [Boolean]
|
|
332
|
+
attr_accessor :enable_spoken_emojis
|
|
333
|
+
alias_method :enable_spoken_emojis?, :enable_spoken_emojis
|
|
334
|
+
|
|
335
|
+
# The spoken punctuation behavior for the call If not set, uses default behavior
|
|
336
|
+
# based on model of choice e.g. command_and_search will enable spoken
|
|
337
|
+
# punctuation by default If 'true', replaces spoken punctuation with the
|
|
338
|
+
# corresponding symbols in the request. For example, "how are you question mark"
|
|
339
|
+
# becomes "how are you?". See https://cloud.google.com/speech-to-text/docs/
|
|
340
|
+
# spoken-punctuation for support. If 'false', spoken punctuation is not replaced.
|
|
341
|
+
# Corresponds to the JSON property `enableSpokenPunctuation`
|
|
342
|
+
# @return [Boolean]
|
|
343
|
+
attr_accessor :enable_spoken_punctuation
|
|
344
|
+
alias_method :enable_spoken_punctuation?, :enable_spoken_punctuation
|
|
345
|
+
|
|
326
346
|
# If `true`, the top result includes a list of words and the confidence for
|
|
327
347
|
# those words. If `false`, no word-level confidence information is returned. The
|
|
328
348
|
# default is `false`.
|
|
@@ -429,6 +449,8 @@ module Google
|
|
|
429
449
|
@diarization_config = args[:diarization_config] if args.key?(:diarization_config)
|
|
430
450
|
@enable_automatic_punctuation = args[:enable_automatic_punctuation] if args.key?(:enable_automatic_punctuation)
|
|
431
451
|
@enable_separate_recognition_per_channel = args[:enable_separate_recognition_per_channel] if args.key?(:enable_separate_recognition_per_channel)
|
|
452
|
+
@enable_spoken_emojis = args[:enable_spoken_emojis] if args.key?(:enable_spoken_emojis)
|
|
453
|
+
@enable_spoken_punctuation = args[:enable_spoken_punctuation] if args.key?(:enable_spoken_punctuation)
|
|
432
454
|
@enable_word_confidence = args[:enable_word_confidence] if args.key?(:enable_word_confidence)
|
|
433
455
|
@enable_word_time_offsets = args[:enable_word_time_offsets] if args.key?(:enable_word_time_offsets)
|
|
434
456
|
@encoding = args[:encoding] if args.key?(:encoding)
|
|
@@ -16,13 +16,13 @@ module Google
|
|
|
16
16
|
module Apis
|
|
17
17
|
module SpeechV1
|
|
18
18
|
# Version of the google-apis-speech_v1 gem
|
|
19
|
-
GEM_VERSION = "0.
|
|
19
|
+
GEM_VERSION = "0.12.0"
|
|
20
20
|
|
|
21
21
|
# Version of the code generator used to generate this client
|
|
22
22
|
GENERATOR_VERSION = "0.4.0"
|
|
23
23
|
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
|
25
|
-
REVISION = "
|
|
25
|
+
REVISION = "20211021"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -197,6 +197,8 @@ module Google
|
|
|
197
197
|
|
|
198
198
|
property :enable_automatic_punctuation, as: 'enableAutomaticPunctuation'
|
|
199
199
|
property :enable_separate_recognition_per_channel, as: 'enableSeparateRecognitionPerChannel'
|
|
200
|
+
property :enable_spoken_emojis, as: 'enableSpokenEmojis'
|
|
201
|
+
property :enable_spoken_punctuation, as: 'enableSpokenPunctuation'
|
|
200
202
|
property :enable_word_confidence, as: 'enableWordConfidence'
|
|
201
203
|
property :enable_word_time_offsets, as: 'enableWordTimeOffsets'
|
|
202
204
|
property :encoding, as: 'encoding'
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: google-apis-speech_v1
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.12.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: 2021-
|
|
11
|
+
date: 2021-11-01 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-speech_v1/CHANGELOG.md
|
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-speech_v1/v0.
|
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-speech_v1/v0.12.0
|
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-speech_v1
|
|
63
63
|
post_install_message:
|
|
64
64
|
rdoc_options: []
|