google-apis-dialogflow_v2beta1 0.99.0 → 0.100.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: a1797bd7c73fa37ef291ed5d3d36a5c501fc0b9f64b3e0bc4eb47531afb1440b
|
4
|
+
data.tar.gz: 99b4a7d3665975e820dcaeefa5fe2214a48e6cdae55ce0b1d250186c3882cbb6
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 651c5106e71e421ba9539bb9cfe36b79a961a81e60ec6b9b785c16d6b6e16c0b2ee3bfab59009dcf7928aa2cab66d269786c1e05b11cbd56b9851249795c1b78
|
7
|
+
data.tar.gz: 8db7d8a01ba7c4653dda4b3313878cd858902d4cd9ad38e5fd3d202990d979e8552cc4d73939d28956d131bf7fe3bc081ac0bcb09e272bbcb246ed81c987559c
|
data/CHANGELOG.md
CHANGED
@@ -13368,6 +13368,39 @@ module Google
|
|
13368
13368
|
end
|
13369
13369
|
end
|
13370
13370
|
|
13371
|
+
# Pronunciation customization for a phrase.
|
13372
|
+
class GoogleCloudDialogflowV2beta1CustomPronunciationParams
|
13373
|
+
include Google::Apis::Core::Hashable
|
13374
|
+
|
13375
|
+
# The phonetic encoding of the phrase.
|
13376
|
+
# Corresponds to the JSON property `phoneticEncoding`
|
13377
|
+
# @return [String]
|
13378
|
+
attr_accessor :phonetic_encoding
|
13379
|
+
|
13380
|
+
# The phrase to which the customization is applied. The phrase can be multiple
|
13381
|
+
# words, such as proper nouns, but shouldn't span the length of the sentence.
|
13382
|
+
# Corresponds to the JSON property `phrase`
|
13383
|
+
# @return [String]
|
13384
|
+
attr_accessor :phrase
|
13385
|
+
|
13386
|
+
# The pronunciation of the phrase. This must be in the phonetic encoding
|
13387
|
+
# specified above.
|
13388
|
+
# Corresponds to the JSON property `pronunciation`
|
13389
|
+
# @return [String]
|
13390
|
+
attr_accessor :pronunciation
|
13391
|
+
|
13392
|
+
def initialize(**args)
|
13393
|
+
update!(**args)
|
13394
|
+
end
|
13395
|
+
|
13396
|
+
# Update properties of this object
|
13397
|
+
def update!(**args)
|
13398
|
+
@phonetic_encoding = args[:phonetic_encoding] if args.key?(:phonetic_encoding)
|
13399
|
+
@phrase = args[:phrase] if args.key?(:phrase)
|
13400
|
+
@pronunciation = args[:pronunciation] if args.key?(:pronunciation)
|
13401
|
+
end
|
13402
|
+
end
|
13403
|
+
|
13371
13404
|
# The request to detect user's intent.
|
13372
13405
|
class GoogleCloudDialogflowV2beta1DetectIntentRequest
|
13373
13406
|
include Google::Apis::Core::Hashable
|
@@ -21325,6 +21358,11 @@ module Google
|
|
21325
21358
|
# @return [Float]
|
21326
21359
|
attr_accessor :pitch
|
21327
21360
|
|
21361
|
+
# Optional. The custom pronunciations for the synthesized audio.
|
21362
|
+
# Corresponds to the JSON property `pronunciations`
|
21363
|
+
# @return [Array<Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1CustomPronunciationParams>]
|
21364
|
+
attr_accessor :pronunciations
|
21365
|
+
|
21328
21366
|
# Optional. Speaking rate/speed, in the range [0.25, 4.0]. 1.0 is the normal
|
21329
21367
|
# native speed supported by the specific voice. 2.0 is twice as fast, and 0.5 is
|
21330
21368
|
# half as fast. If unset(0.0), defaults to the native 1.0 speed. Any other
|
@@ -21358,6 +21396,7 @@ module Google
|
|
21358
21396
|
def update!(**args)
|
21359
21397
|
@effects_profile_id = args[:effects_profile_id] if args.key?(:effects_profile_id)
|
21360
21398
|
@pitch = args[:pitch] if args.key?(:pitch)
|
21399
|
+
@pronunciations = args[:pronunciations] if args.key?(:pronunciations)
|
21361
21400
|
@speaking_rate = args[:speaking_rate] if args.key?(:speaking_rate)
|
21362
21401
|
@voice = args[:voice] if args.key?(:voice)
|
21363
21402
|
@volume_gain_db = args[:volume_gain_db] if args.key?(:volume_gain_db)
|
@@ -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.
|
19
|
+
GEM_VERSION = "0.100.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.16.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20250414"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -2134,6 +2134,12 @@ module Google
|
|
2134
2134
|
include Google::Apis::Core::JsonObjectSupport
|
2135
2135
|
end
|
2136
2136
|
|
2137
|
+
class GoogleCloudDialogflowV2beta1CustomPronunciationParams
|
2138
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
2139
|
+
|
2140
|
+
include Google::Apis::Core::JsonObjectSupport
|
2141
|
+
end
|
2142
|
+
|
2137
2143
|
class GoogleCloudDialogflowV2beta1DetectIntentRequest
|
2138
2144
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
2139
2145
|
|
@@ -7159,6 +7165,15 @@ module Google
|
|
7159
7165
|
end
|
7160
7166
|
end
|
7161
7167
|
|
7168
|
+
class GoogleCloudDialogflowV2beta1CustomPronunciationParams
|
7169
|
+
# @private
|
7170
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
7171
|
+
property :phonetic_encoding, as: 'phoneticEncoding'
|
7172
|
+
property :phrase, as: 'phrase'
|
7173
|
+
property :pronunciation, as: 'pronunciation'
|
7174
|
+
end
|
7175
|
+
end
|
7176
|
+
|
7162
7177
|
class GoogleCloudDialogflowV2beta1DetectIntentRequest
|
7163
7178
|
# @private
|
7164
7179
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -9344,6 +9359,8 @@ module Google
|
|
9344
9359
|
class Representation < Google::Apis::Core::JsonRepresentation
|
9345
9360
|
collection :effects_profile_id, as: 'effectsProfileId'
|
9346
9361
|
property :pitch, as: 'pitch'
|
9362
|
+
collection :pronunciations, as: 'pronunciations', class: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1CustomPronunciationParams, decorator: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1CustomPronunciationParams::Representation
|
9363
|
+
|
9347
9364
|
property :speaking_rate, as: 'speakingRate'
|
9348
9365
|
property :voice, as: 'voice', class: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1VoiceSelectionParams, decorator: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1VoiceSelectionParams::Representation
|
9349
9366
|
|
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-dialogflow_v2beta1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.100.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
8
8
|
bindir: bin
|
9
9
|
cert_chain: []
|
10
|
-
date: 2025-
|
10
|
+
date: 2025-04-20 00:00:00.000000000 Z
|
11
11
|
dependencies:
|
12
12
|
- !ruby/object:Gem::Dependency
|
13
13
|
name: google-apis-core
|
@@ -57,7 +57,7 @@ licenses:
|
|
57
57
|
metadata:
|
58
58
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
59
59
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-dialogflow_v2beta1/CHANGELOG.md
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-dialogflow_v2beta1/v0.
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-dialogflow_v2beta1/v0.100.0
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-dialogflow_v2beta1
|
62
62
|
rdoc_options: []
|
63
63
|
require_paths:
|