google-apis-dialogflow_v3 0.84.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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: c6eeb04959b71ba8d3094f93ddc4a32ee0d96cc8ed5388852799b86cddc9c6b5
|
4
|
+
data.tar.gz: fc36c0aeb09286497b1155781b30efb1760fed60d16bd4d1c828812182c873e1
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b4420835b9db54b662770a577fafe74f4d25437011c2f5bb6bfd51f5bb2c26d415bc54318359a43ab8e97edc960e625e2b21aed830812196c30896d62239f32d
|
7
|
+
data.tar.gz: 38dda1cc8f46adcffd1f5b3353188d8b7d07e03d61cdf64c2ae2dd7e63c90f1176ba11bd6141eeaf2a5201bed86c3ae4e75b2e2a5d808b8e512c66f1bd8cecfe
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,14 @@
|
|
1
1
|
# Release history for google-apis-dialogflow_v3
|
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
|
+
|
8
|
+
### v0.85.0 (2024-04-21)
|
9
|
+
|
10
|
+
* Regenerated from discovery document revision 20240417
|
11
|
+
|
3
12
|
### v0.84.0 (2024-04-07)
|
4
13
|
|
5
14
|
* Regenerated from discovery document revision 20240326
|
@@ -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
|
@@ -4653,6 +4665,37 @@ module Google
|
|
4653
4665
|
end
|
4654
4666
|
end
|
4655
4667
|
|
4668
|
+
# Represents the language information of the request.
|
4669
|
+
class GoogleCloudDialogflowCxV3LanguageInfo
|
4670
|
+
include Google::Apis::Core::Hashable
|
4671
|
+
|
4672
|
+
# The confidence score of the detected language between 0 and 1.
|
4673
|
+
# Corresponds to the JSON property `confidenceScore`
|
4674
|
+
# @return [Float]
|
4675
|
+
attr_accessor :confidence_score
|
4676
|
+
|
4677
|
+
# The language code specified in the original request.
|
4678
|
+
# Corresponds to the JSON property `inputLanguageCode`
|
4679
|
+
# @return [String]
|
4680
|
+
attr_accessor :input_language_code
|
4681
|
+
|
4682
|
+
# The language code detected for this request based on the user conversation.
|
4683
|
+
# Corresponds to the JSON property `resolvedLanguageCode`
|
4684
|
+
# @return [String]
|
4685
|
+
attr_accessor :resolved_language_code
|
4686
|
+
|
4687
|
+
def initialize(**args)
|
4688
|
+
update!(**args)
|
4689
|
+
end
|
4690
|
+
|
4691
|
+
# Update properties of this object
|
4692
|
+
def update!(**args)
|
4693
|
+
@confidence_score = args[:confidence_score] if args.key?(:confidence_score)
|
4694
|
+
@input_language_code = args[:input_language_code] if args.key?(:input_language_code)
|
4695
|
+
@resolved_language_code = args[:resolved_language_code] if args.key?(:resolved_language_code)
|
4696
|
+
end
|
4697
|
+
end
|
4698
|
+
|
4656
4699
|
# The response message for Agents.ListAgents.
|
4657
4700
|
class GoogleCloudDialogflowCxV3ListAgentsResponse
|
4658
4701
|
include Google::Apis::Core::Hashable
|
@@ -6981,6 +7024,13 @@ module Google
|
|
6981
7024
|
# @return [String]
|
6982
7025
|
attr_accessor :gcs_bucket
|
6983
7026
|
|
7027
|
+
# Whether to store TTS audio. By default, TTS audio from the virtual agent is
|
7028
|
+
# not exported.
|
7029
|
+
# Corresponds to the JSON property `storeTtsAudio`
|
7030
|
+
# @return [Boolean]
|
7031
|
+
attr_accessor :store_tts_audio
|
7032
|
+
alias_method :store_tts_audio?, :store_tts_audio
|
7033
|
+
|
6984
7034
|
def initialize(**args)
|
6985
7035
|
update!(**args)
|
6986
7036
|
end
|
@@ -6991,6 +7041,7 @@ module Google
|
|
6991
7041
|
@audio_format = args[:audio_format] if args.key?(:audio_format)
|
6992
7042
|
@enable_audio_redaction = args[:enable_audio_redaction] if args.key?(:enable_audio_redaction)
|
6993
7043
|
@gcs_bucket = args[:gcs_bucket] if args.key?(:gcs_bucket)
|
7044
|
+
@store_tts_audio = args[:store_tts_audio] if args.key?(:store_tts_audio)
|
6994
7045
|
end
|
6995
7046
|
end
|
6996
7047
|
|
@@ -8466,6 +8517,11 @@ module Google
|
|
8466
8517
|
# @return [String]
|
8467
8518
|
attr_accessor :language_code
|
8468
8519
|
|
8520
|
+
# Represents the language information of the request.
|
8521
|
+
# Corresponds to the JSON property `languageInfo`
|
8522
|
+
# @return [Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3LanguageInfo]
|
8523
|
+
attr_accessor :language_info
|
8524
|
+
|
8469
8525
|
# The list of rich message responses to present to the user. Webhook can choose
|
8470
8526
|
# to append or replace this list in WebhookResponse.fulfillment_response;
|
8471
8527
|
# Corresponds to the JSON property `messages`
|
@@ -8527,6 +8583,7 @@ module Google
|
|
8527
8583
|
@fulfillment_info = args[:fulfillment_info] if args.key?(:fulfillment_info)
|
8528
8584
|
@intent_info = args[:intent_info] if args.key?(:intent_info)
|
8529
8585
|
@language_code = args[:language_code] if args.key?(:language_code)
|
8586
|
+
@language_info = args[:language_info] if args.key?(:language_info)
|
8530
8587
|
@messages = args[:messages] if args.key?(:messages)
|
8531
8588
|
@page_info = args[:page_info] if args.key?(:page_info)
|
8532
8589
|
@payload = args[:payload] if args.key?(:payload)
|
@@ -8819,11 +8876,21 @@ module Google
|
|
8819
8876
|
attr_accessor :enabled
|
8820
8877
|
alias_method :enabled?, :enabled
|
8821
8878
|
|
8879
|
+
# Endpoint timeout setting for matching dtmf input to regex.
|
8880
|
+
# Corresponds to the JSON property `endpointingTimeoutDuration`
|
8881
|
+
# @return [String]
|
8882
|
+
attr_accessor :endpointing_timeout_duration
|
8883
|
+
|
8822
8884
|
# The digit that terminates a DTMF digit sequence.
|
8823
8885
|
# Corresponds to the JSON property `finishDigit`
|
8824
8886
|
# @return [String]
|
8825
8887
|
attr_accessor :finish_digit
|
8826
8888
|
|
8889
|
+
# Interdigit timeout setting for matching dtmf input to regex.
|
8890
|
+
# Corresponds to the JSON property `interdigitTimeoutDuration`
|
8891
|
+
# @return [String]
|
8892
|
+
attr_accessor :interdigit_timeout_duration
|
8893
|
+
|
8827
8894
|
# Max length of DTMF digits.
|
8828
8895
|
# Corresponds to the JSON property `maxDigits`
|
8829
8896
|
# @return [Fixnum]
|
@@ -8836,7 +8903,9 @@ module Google
|
|
8836
8903
|
# Update properties of this object
|
8837
8904
|
def update!(**args)
|
8838
8905
|
@enabled = args[:enabled] if args.key?(:enabled)
|
8906
|
+
@endpointing_timeout_duration = args[:endpointing_timeout_duration] if args.key?(:endpointing_timeout_duration)
|
8839
8907
|
@finish_digit = args[:finish_digit] if args.key?(:finish_digit)
|
8908
|
+
@interdigit_timeout_duration = args[:interdigit_timeout_duration] if args.key?(:interdigit_timeout_duration)
|
8840
8909
|
@max_digits = args[:max_digits] if args.key?(:max_digits)
|
8841
8910
|
end
|
8842
8911
|
end
|
@@ -10812,6 +10881,37 @@ module Google
|
|
10812
10881
|
end
|
10813
10882
|
end
|
10814
10883
|
|
10884
|
+
# Represents the language information of the request.
|
10885
|
+
class GoogleCloudDialogflowCxV3beta1LanguageInfo
|
10886
|
+
include Google::Apis::Core::Hashable
|
10887
|
+
|
10888
|
+
# The confidence score of the detected language between 0 and 1.
|
10889
|
+
# Corresponds to the JSON property `confidenceScore`
|
10890
|
+
# @return [Float]
|
10891
|
+
attr_accessor :confidence_score
|
10892
|
+
|
10893
|
+
# The language code specified in the original request.
|
10894
|
+
# Corresponds to the JSON property `inputLanguageCode`
|
10895
|
+
# @return [String]
|
10896
|
+
attr_accessor :input_language_code
|
10897
|
+
|
10898
|
+
# The language code detected for this request based on the user conversation.
|
10899
|
+
# Corresponds to the JSON property `resolvedLanguageCode`
|
10900
|
+
# @return [String]
|
10901
|
+
attr_accessor :resolved_language_code
|
10902
|
+
|
10903
|
+
def initialize(**args)
|
10904
|
+
update!(**args)
|
10905
|
+
end
|
10906
|
+
|
10907
|
+
# Update properties of this object
|
10908
|
+
def update!(**args)
|
10909
|
+
@confidence_score = args[:confidence_score] if args.key?(:confidence_score)
|
10910
|
+
@input_language_code = args[:input_language_code] if args.key?(:input_language_code)
|
10911
|
+
@resolved_language_code = args[:resolved_language_code] if args.key?(:resolved_language_code)
|
10912
|
+
end
|
10913
|
+
end
|
10914
|
+
|
10815
10915
|
# A Dialogflow CX conversation (session) can be described and visualized as a
|
10816
10916
|
# state machine. The states of a CX session are represented by pages. For each
|
10817
10917
|
# flow, you define many pages, where your combined pages can handle a complete
|
@@ -12257,6 +12357,11 @@ module Google
|
|
12257
12357
|
# @return [String]
|
12258
12358
|
attr_accessor :language_code
|
12259
12359
|
|
12360
|
+
# Represents the language information of the request.
|
12361
|
+
# Corresponds to the JSON property `languageInfo`
|
12362
|
+
# @return [Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3beta1LanguageInfo]
|
12363
|
+
attr_accessor :language_info
|
12364
|
+
|
12260
12365
|
# The list of rich message responses to present to the user. Webhook can choose
|
12261
12366
|
# to append or replace this list in WebhookResponse.fulfillment_response;
|
12262
12367
|
# Corresponds to the JSON property `messages`
|
@@ -12318,6 +12423,7 @@ module Google
|
|
12318
12423
|
@fulfillment_info = args[:fulfillment_info] if args.key?(:fulfillment_info)
|
12319
12424
|
@intent_info = args[:intent_info] if args.key?(:intent_info)
|
12320
12425
|
@language_code = args[:language_code] if args.key?(:language_code)
|
12426
|
+
@language_info = args[:language_info] if args.key?(:language_info)
|
12321
12427
|
@messages = args[:messages] if args.key?(:messages)
|
12322
12428
|
@page_info = args[:page_info] if args.key?(:page_info)
|
12323
12429
|
@payload = args[:payload] if args.key?(:payload)
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module DialogflowV3
|
18
18
|
# Version of the google-apis-dialogflow_v3 gem
|
19
|
-
GEM_VERSION = "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.
|
22
|
+
GENERATOR_VERSION = "0.15.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20240507"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -796,6 +796,12 @@ module Google
|
|
796
796
|
include Google::Apis::Core::JsonObjectSupport
|
797
797
|
end
|
798
798
|
|
799
|
+
class GoogleCloudDialogflowCxV3LanguageInfo
|
800
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
801
|
+
|
802
|
+
include Google::Apis::Core::JsonObjectSupport
|
803
|
+
end
|
804
|
+
|
799
805
|
class GoogleCloudDialogflowCxV3ListAgentsResponse
|
800
806
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
801
807
|
|
@@ -1828,6 +1834,12 @@ module Google
|
|
1828
1834
|
include Google::Apis::Core::JsonObjectSupport
|
1829
1835
|
end
|
1830
1836
|
|
1837
|
+
class GoogleCloudDialogflowCxV3beta1LanguageInfo
|
1838
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1839
|
+
|
1840
|
+
include Google::Apis::Core::JsonObjectSupport
|
1841
|
+
end
|
1842
|
+
|
1831
1843
|
class GoogleCloudDialogflowCxV3beta1Page
|
1832
1844
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1833
1845
|
|
@@ -3172,7 +3184,9 @@ module Google
|
|
3172
3184
|
# @private
|
3173
3185
|
class Representation < Google::Apis::Core::JsonRepresentation
|
3174
3186
|
property :enabled, as: 'enabled'
|
3187
|
+
property :endpointing_timeout_duration, as: 'endpointingTimeoutDuration'
|
3175
3188
|
property :finish_digit, as: 'finishDigit'
|
3189
|
+
property :interdigit_timeout_duration, as: 'interdigitTimeoutDuration'
|
3176
3190
|
property :max_digits, as: 'maxDigits'
|
3177
3191
|
end
|
3178
3192
|
end
|
@@ -4424,6 +4438,15 @@ module Google
|
|
4424
4438
|
end
|
4425
4439
|
end
|
4426
4440
|
|
4441
|
+
class GoogleCloudDialogflowCxV3LanguageInfo
|
4442
|
+
# @private
|
4443
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
4444
|
+
property :confidence_score, as: 'confidenceScore'
|
4445
|
+
property :input_language_code, as: 'inputLanguageCode'
|
4446
|
+
property :resolved_language_code, as: 'resolvedLanguageCode'
|
4447
|
+
end
|
4448
|
+
end
|
4449
|
+
|
4427
4450
|
class GoogleCloudDialogflowCxV3ListAgentsResponse
|
4428
4451
|
# @private
|
4429
4452
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -5051,6 +5074,7 @@ module Google
|
|
5051
5074
|
property :audio_format, as: 'audioFormat'
|
5052
5075
|
property :enable_audio_redaction, as: 'enableAudioRedaction'
|
5053
5076
|
property :gcs_bucket, as: 'gcsBucket'
|
5077
|
+
property :store_tts_audio, as: 'storeTtsAudio'
|
5054
5078
|
end
|
5055
5079
|
end
|
5056
5080
|
|
@@ -5452,6 +5476,8 @@ module Google
|
|
5452
5476
|
property :intent_info, as: 'intentInfo', class: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3WebhookRequestIntentInfo, decorator: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3WebhookRequestIntentInfo::Representation
|
5453
5477
|
|
5454
5478
|
property :language_code, as: 'languageCode'
|
5479
|
+
property :language_info, as: 'languageInfo', class: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3LanguageInfo, decorator: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3LanguageInfo::Representation
|
5480
|
+
|
5455
5481
|
collection :messages, as: 'messages', class: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3ResponseMessage, decorator: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3ResponseMessage::Representation
|
5456
5482
|
|
5457
5483
|
property :page_info, as: 'pageInfo', class: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3PageInfo, decorator: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3PageInfo::Representation
|
@@ -5553,7 +5579,9 @@ module Google
|
|
5553
5579
|
# @private
|
5554
5580
|
class Representation < Google::Apis::Core::JsonRepresentation
|
5555
5581
|
property :enabled, as: 'enabled'
|
5582
|
+
property :endpointing_timeout_duration, as: 'endpointingTimeoutDuration'
|
5556
5583
|
property :finish_digit, as: 'finishDigit'
|
5584
|
+
property :interdigit_timeout_duration, as: 'interdigitTimeoutDuration'
|
5557
5585
|
property :max_digits, as: 'maxDigits'
|
5558
5586
|
end
|
5559
5587
|
end
|
@@ -6114,6 +6142,15 @@ module Google
|
|
6114
6142
|
end
|
6115
6143
|
end
|
6116
6144
|
|
6145
|
+
class GoogleCloudDialogflowCxV3beta1LanguageInfo
|
6146
|
+
# @private
|
6147
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
6148
|
+
property :confidence_score, as: 'confidenceScore'
|
6149
|
+
property :input_language_code, as: 'inputLanguageCode'
|
6150
|
+
property :resolved_language_code, as: 'resolvedLanguageCode'
|
6151
|
+
end
|
6152
|
+
end
|
6153
|
+
|
6117
6154
|
class GoogleCloudDialogflowCxV3beta1Page
|
6118
6155
|
# @private
|
6119
6156
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -6492,6 +6529,8 @@ module Google
|
|
6492
6529
|
property :intent_info, as: 'intentInfo', class: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3beta1WebhookRequestIntentInfo, decorator: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3beta1WebhookRequestIntentInfo::Representation
|
6493
6530
|
|
6494
6531
|
property :language_code, as: 'languageCode'
|
6532
|
+
property :language_info, as: 'languageInfo', class: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3beta1LanguageInfo, decorator: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3beta1LanguageInfo::Representation
|
6533
|
+
|
6495
6534
|
collection :messages, as: 'messages', class: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3beta1ResponseMessage, decorator: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3beta1ResponseMessage::Representation
|
6496
6535
|
|
6497
6536
|
property :page_info, as: 'pageInfo', class: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3beta1PageInfo, decorator: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3beta1PageInfo::Representation
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-dialogflow_v3
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 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-
|
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.
|
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.
|
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_v3/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-dialogflow_v3/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-dialogflow_v3/v0.86.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-dialogflow_v3
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|