google-apis-dialogflow_v3beta1 0.25.0 → 0.26.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: 7880fe1973a07f5f855aa00ae23556253fa8446a122611bdb1c54b556ee96d85
|
4
|
+
data.tar.gz: 35d7086d44d1bdcbd7411a834d24418e082e3cea13bf054f1fdefebe4f1971b3
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1217d5bb2a85df0c1510d19aea8cb8189a5497ac6c169419ca5371e3de341f6719f3f2fab3d1a4182172a7626ff435e16995e56f5a3c2dd30dbe56a2ee3ffb98
|
7
|
+
data.tar.gz: 6088742f09ff006de5349c7470d030cb9af2c7593603f4a197dc8f7ec3b89f3e603e1f42a2e116446a16061bda8870c25a94b1cb49263a7487a256bf44cdc3dc
|
data/CHANGELOG.md
CHANGED
@@ -1760,6 +1760,12 @@ module Google
|
|
1760
1760
|
# @return [Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3ResponseMessagePlayAudio]
|
1761
1761
|
attr_accessor :play_audio
|
1762
1762
|
|
1763
|
+
# Represents the signal that telles the client to transfer the phone call
|
1764
|
+
# connected to the agent to a third-party endpoint.
|
1765
|
+
# Corresponds to the JSON property `telephonyTransferCall`
|
1766
|
+
# @return [Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3ResponseMessageTelephonyTransferCall]
|
1767
|
+
attr_accessor :telephony_transfer_call
|
1768
|
+
|
1763
1769
|
# The text response message.
|
1764
1770
|
# Corresponds to the JSON property `text`
|
1765
1771
|
# @return [Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3ResponseMessageText]
|
@@ -1778,6 +1784,7 @@ module Google
|
|
1778
1784
|
@output_audio_text = args[:output_audio_text] if args.key?(:output_audio_text)
|
1779
1785
|
@payload = args[:payload] if args.key?(:payload)
|
1780
1786
|
@play_audio = args[:play_audio] if args.key?(:play_audio)
|
1787
|
+
@telephony_transfer_call = args[:telephony_transfer_call] if args.key?(:telephony_transfer_call)
|
1781
1788
|
@text = args[:text] if args.key?(:text)
|
1782
1789
|
end
|
1783
1790
|
end
|
@@ -1970,6 +1977,27 @@ module Google
|
|
1970
1977
|
end
|
1971
1978
|
end
|
1972
1979
|
|
1980
|
+
# Represents the signal that telles the client to transfer the phone call
|
1981
|
+
# connected to the agent to a third-party endpoint.
|
1982
|
+
class GoogleCloudDialogflowCxV3ResponseMessageTelephonyTransferCall
|
1983
|
+
include Google::Apis::Core::Hashable
|
1984
|
+
|
1985
|
+
# Transfer the call to a phone number in [E.164 format](https://en.wikipedia.org/
|
1986
|
+
# wiki/E.164).
|
1987
|
+
# Corresponds to the JSON property `phoneNumber`
|
1988
|
+
# @return [String]
|
1989
|
+
attr_accessor :phone_number
|
1990
|
+
|
1991
|
+
def initialize(**args)
|
1992
|
+
update!(**args)
|
1993
|
+
end
|
1994
|
+
|
1995
|
+
# Update properties of this object
|
1996
|
+
def update!(**args)
|
1997
|
+
@phone_number = args[:phone_number] if args.key?(:phone_number)
|
1998
|
+
end
|
1999
|
+
end
|
2000
|
+
|
1973
2001
|
# The text response message.
|
1974
2002
|
class GoogleCloudDialogflowCxV3ResponseMessageText
|
1975
2003
|
include Google::Apis::Core::Hashable
|
@@ -6906,6 +6934,12 @@ module Google
|
|
6906
6934
|
# @return [Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1ResponseMessagePlayAudio]
|
6907
6935
|
attr_accessor :play_audio
|
6908
6936
|
|
6937
|
+
# Represents the signal that telles the client to transfer the phone call
|
6938
|
+
# connected to the agent to a third-party endpoint.
|
6939
|
+
# Corresponds to the JSON property `telephonyTransferCall`
|
6940
|
+
# @return [Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1ResponseMessageTelephonyTransferCall]
|
6941
|
+
attr_accessor :telephony_transfer_call
|
6942
|
+
|
6909
6943
|
# The text response message.
|
6910
6944
|
# Corresponds to the JSON property `text`
|
6911
6945
|
# @return [Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1ResponseMessageText]
|
@@ -6924,6 +6958,7 @@ module Google
|
|
6924
6958
|
@output_audio_text = args[:output_audio_text] if args.key?(:output_audio_text)
|
6925
6959
|
@payload = args[:payload] if args.key?(:payload)
|
6926
6960
|
@play_audio = args[:play_audio] if args.key?(:play_audio)
|
6961
|
+
@telephony_transfer_call = args[:telephony_transfer_call] if args.key?(:telephony_transfer_call)
|
6927
6962
|
@text = args[:text] if args.key?(:text)
|
6928
6963
|
end
|
6929
6964
|
end
|
@@ -7116,6 +7151,27 @@ module Google
|
|
7116
7151
|
end
|
7117
7152
|
end
|
7118
7153
|
|
7154
|
+
# Represents the signal that telles the client to transfer the phone call
|
7155
|
+
# connected to the agent to a third-party endpoint.
|
7156
|
+
class GoogleCloudDialogflowCxV3beta1ResponseMessageTelephonyTransferCall
|
7157
|
+
include Google::Apis::Core::Hashable
|
7158
|
+
|
7159
|
+
# Transfer the call to a phone number in [E.164 format](https://en.wikipedia.org/
|
7160
|
+
# wiki/E.164).
|
7161
|
+
# Corresponds to the JSON property `phoneNumber`
|
7162
|
+
# @return [String]
|
7163
|
+
attr_accessor :phone_number
|
7164
|
+
|
7165
|
+
def initialize(**args)
|
7166
|
+
update!(**args)
|
7167
|
+
end
|
7168
|
+
|
7169
|
+
# Update properties of this object
|
7170
|
+
def update!(**args)
|
7171
|
+
@phone_number = args[:phone_number] if args.key?(:phone_number)
|
7172
|
+
end
|
7173
|
+
end
|
7174
|
+
|
7119
7175
|
# The text response message.
|
7120
7176
|
class GoogleCloudDialogflowCxV3beta1ResponseMessageText
|
7121
7177
|
include Google::Apis::Core::Hashable
|
@@ -8632,6 +8688,18 @@ module Google
|
|
8632
8688
|
class GoogleCloudDialogflowCxV3beta1WebhookGenericWebService
|
8633
8689
|
include Google::Apis::Core::Hashable
|
8634
8690
|
|
8691
|
+
# Optional. Specifies a list of allowed custom CA certificates (in DER format)
|
8692
|
+
# for HTTPS verification. This overrides the default SSL trust store. If this is
|
8693
|
+
# empty or unspecified, Dialogflow will use Google's default trust store to
|
8694
|
+
# verify certificates. N.B. Make sure the HTTPS server certificates are signed
|
8695
|
+
# with "subject alt name". For instance a certificate can be self-signed using
|
8696
|
+
# the following command, openssl x509 -req -days 200 -in example.com.csr \ -
|
8697
|
+
# signkey example.com.key \ -out example.com.crt \ -extfile <(printf "\
|
8698
|
+
# nsubjectAltName='DNS:www.example.com'")
|
8699
|
+
# Corresponds to the JSON property `allowedCaCerts`
|
8700
|
+
# @return [Array<String>]
|
8701
|
+
attr_accessor :allowed_ca_certs
|
8702
|
+
|
8635
8703
|
# The password for HTTP Basic authentication.
|
8636
8704
|
# Corresponds to the JSON property `password`
|
8637
8705
|
# @return [String]
|
@@ -8659,6 +8727,7 @@ module Google
|
|
8659
8727
|
|
8660
8728
|
# Update properties of this object
|
8661
8729
|
def update!(**args)
|
8730
|
+
@allowed_ca_certs = args[:allowed_ca_certs] if args.key?(:allowed_ca_certs)
|
8662
8731
|
@password = args[:password] if args.key?(:password)
|
8663
8732
|
@request_headers = args[:request_headers] if args.key?(:request_headers)
|
8664
8733
|
@uri = args[:uri] if args.key?(:uri)
|
@@ -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.
|
19
|
+
GEM_VERSION = "0.26.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 = "20211201"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -358,6 +358,12 @@ module Google
|
|
358
358
|
include Google::Apis::Core::JsonObjectSupport
|
359
359
|
end
|
360
360
|
|
361
|
+
class GoogleCloudDialogflowCxV3ResponseMessageTelephonyTransferCall
|
362
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
363
|
+
|
364
|
+
include Google::Apis::Core::JsonObjectSupport
|
365
|
+
end
|
366
|
+
|
361
367
|
class GoogleCloudDialogflowCxV3ResponseMessageText
|
362
368
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
363
369
|
|
@@ -1198,6 +1204,12 @@ module Google
|
|
1198
1204
|
include Google::Apis::Core::JsonObjectSupport
|
1199
1205
|
end
|
1200
1206
|
|
1207
|
+
class GoogleCloudDialogflowCxV3beta1ResponseMessageTelephonyTransferCall
|
1208
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1209
|
+
|
1210
|
+
include Google::Apis::Core::JsonObjectSupport
|
1211
|
+
end
|
1212
|
+
|
1201
1213
|
class GoogleCloudDialogflowCxV3beta1ResponseMessageText
|
1202
1214
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1203
1215
|
|
@@ -2900,6 +2912,8 @@ module Google
|
|
2900
2912
|
hash :payload, as: 'payload'
|
2901
2913
|
property :play_audio, as: 'playAudio', class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3ResponseMessagePlayAudio, decorator: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3ResponseMessagePlayAudio::Representation
|
2902
2914
|
|
2915
|
+
property :telephony_transfer_call, as: 'telephonyTransferCall', class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3ResponseMessageTelephonyTransferCall, decorator: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3ResponseMessageTelephonyTransferCall::Representation
|
2916
|
+
|
2903
2917
|
property :text, as: 'text', class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3ResponseMessageText, decorator: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3ResponseMessageText::Representation
|
2904
2918
|
|
2905
2919
|
end
|
@@ -2959,6 +2973,13 @@ module Google
|
|
2959
2973
|
end
|
2960
2974
|
end
|
2961
2975
|
|
2976
|
+
class GoogleCloudDialogflowCxV3ResponseMessageTelephonyTransferCall
|
2977
|
+
# @private
|
2978
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
2979
|
+
property :phone_number, as: 'phoneNumber'
|
2980
|
+
end
|
2981
|
+
end
|
2982
|
+
|
2962
2983
|
class GoogleCloudDialogflowCxV3ResponseMessageText
|
2963
2984
|
# @private
|
2964
2985
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -4313,6 +4334,8 @@ module Google
|
|
4313
4334
|
hash :payload, as: 'payload'
|
4314
4335
|
property :play_audio, as: 'playAudio', class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1ResponseMessagePlayAudio, decorator: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1ResponseMessagePlayAudio::Representation
|
4315
4336
|
|
4337
|
+
property :telephony_transfer_call, as: 'telephonyTransferCall', class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1ResponseMessageTelephonyTransferCall, decorator: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1ResponseMessageTelephonyTransferCall::Representation
|
4338
|
+
|
4316
4339
|
property :text, as: 'text', class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1ResponseMessageText, decorator: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1ResponseMessageText::Representation
|
4317
4340
|
|
4318
4341
|
end
|
@@ -4372,6 +4395,13 @@ module Google
|
|
4372
4395
|
end
|
4373
4396
|
end
|
4374
4397
|
|
4398
|
+
class GoogleCloudDialogflowCxV3beta1ResponseMessageTelephonyTransferCall
|
4399
|
+
# @private
|
4400
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
4401
|
+
property :phone_number, as: 'phoneNumber'
|
4402
|
+
end
|
4403
|
+
end
|
4404
|
+
|
4375
4405
|
class GoogleCloudDialogflowCxV3beta1ResponseMessageText
|
4376
4406
|
# @private
|
4377
4407
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -4803,6 +4833,7 @@ module Google
|
|
4803
4833
|
class GoogleCloudDialogflowCxV3beta1WebhookGenericWebService
|
4804
4834
|
# @private
|
4805
4835
|
class Representation < Google::Apis::Core::JsonRepresentation
|
4836
|
+
collection :allowed_ca_certs, as: 'allowedCaCerts'
|
4806
4837
|
property :password, as: 'password'
|
4807
4838
|
hash :request_headers, as: 'requestHeaders'
|
4808
4839
|
property :uri, as: 'uri'
|
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.
|
4
|
+
version: 0.26.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-12-06 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-dialogflow_v3beta1/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-dialogflow_v3beta1/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-dialogflow_v3beta1/v0.26.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: []
|