google-apis-dialogflow_v3 0.23.0 → 0.24.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: 4329c62865e1016f471ac8f9b2172441c7f66cca949282f1ee35e2d1a561b481
|
4
|
+
data.tar.gz: 3254bb2d5d8bc3c0b28b0d73fef741c10a90146781928f9c9a4e3cdecb0040fe
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 58eed36d2846de6b419d6b893db437b72d1fa8bf1377dc20c574c6e4f48c022f24e9fcaffcdc70693cf3d926587397a5cf2ac8126bebcb1a937303439d32c3f8
|
7
|
+
data.tar.gz: ab8d437a26e269caa2cd05b487e03b6d6e818cb336a3d6bd87d2bd15bfa541f368c9270fb54a36bffcecc8f8ef5dceb6570b319b492232cfddca9e36d283f0f7
|
data/CHANGELOG.md
CHANGED
@@ -4199,6 +4199,12 @@ module Google
|
|
4199
4199
|
# @return [Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3ResponseMessagePlayAudio]
|
4200
4200
|
attr_accessor :play_audio
|
4201
4201
|
|
4202
|
+
# Represents the signal that telles the client to transfer the phone call
|
4203
|
+
# connected to the agent to a third-party endpoint.
|
4204
|
+
# Corresponds to the JSON property `telephonyTransferCall`
|
4205
|
+
# @return [Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3ResponseMessageTelephonyTransferCall]
|
4206
|
+
attr_accessor :telephony_transfer_call
|
4207
|
+
|
4202
4208
|
# The text response message.
|
4203
4209
|
# Corresponds to the JSON property `text`
|
4204
4210
|
# @return [Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3ResponseMessageText]
|
@@ -4217,6 +4223,7 @@ module Google
|
|
4217
4223
|
@output_audio_text = args[:output_audio_text] if args.key?(:output_audio_text)
|
4218
4224
|
@payload = args[:payload] if args.key?(:payload)
|
4219
4225
|
@play_audio = args[:play_audio] if args.key?(:play_audio)
|
4226
|
+
@telephony_transfer_call = args[:telephony_transfer_call] if args.key?(:telephony_transfer_call)
|
4220
4227
|
@text = args[:text] if args.key?(:text)
|
4221
4228
|
end
|
4222
4229
|
end
|
@@ -4409,6 +4416,27 @@ module Google
|
|
4409
4416
|
end
|
4410
4417
|
end
|
4411
4418
|
|
4419
|
+
# Represents the signal that telles the client to transfer the phone call
|
4420
|
+
# connected to the agent to a third-party endpoint.
|
4421
|
+
class GoogleCloudDialogflowCxV3ResponseMessageTelephonyTransferCall
|
4422
|
+
include Google::Apis::Core::Hashable
|
4423
|
+
|
4424
|
+
# Transfer the call to a phone number in [E.164 format](https://en.wikipedia.org/
|
4425
|
+
# wiki/E.164).
|
4426
|
+
# Corresponds to the JSON property `phoneNumber`
|
4427
|
+
# @return [String]
|
4428
|
+
attr_accessor :phone_number
|
4429
|
+
|
4430
|
+
def initialize(**args)
|
4431
|
+
update!(**args)
|
4432
|
+
end
|
4433
|
+
|
4434
|
+
# Update properties of this object
|
4435
|
+
def update!(**args)
|
4436
|
+
@phone_number = args[:phone_number] if args.key?(:phone_number)
|
4437
|
+
end
|
4438
|
+
end
|
4439
|
+
|
4412
4440
|
# The text response message.
|
4413
4441
|
class GoogleCloudDialogflowCxV3ResponseMessageText
|
4414
4442
|
include Google::Apis::Core::Hashable
|
@@ -5925,6 +5953,18 @@ module Google
|
|
5925
5953
|
class GoogleCloudDialogflowCxV3WebhookGenericWebService
|
5926
5954
|
include Google::Apis::Core::Hashable
|
5927
5955
|
|
5956
|
+
# Optional. Specifies a list of allowed custom CA certificates (in DER format)
|
5957
|
+
# for HTTPS verification. This overrides the default SSL trust store. If this is
|
5958
|
+
# empty or unspecified, Dialogflow will use Google's default trust store to
|
5959
|
+
# verify certificates. N.B. Make sure the HTTPS server certificates are signed
|
5960
|
+
# with "subject alt name". For instance a certificate can be self-signed using
|
5961
|
+
# the following command, openssl x509 -req -days 200 -in example.com.csr \ -
|
5962
|
+
# signkey example.com.key \ -out example.com.crt \ -extfile <(printf "\
|
5963
|
+
# nsubjectAltName='DNS:www.example.com'")
|
5964
|
+
# Corresponds to the JSON property `allowedCaCerts`
|
5965
|
+
# @return [Array<String>]
|
5966
|
+
attr_accessor :allowed_ca_certs
|
5967
|
+
|
5928
5968
|
# The password for HTTP Basic authentication.
|
5929
5969
|
# Corresponds to the JSON property `password`
|
5930
5970
|
# @return [String]
|
@@ -5952,6 +5992,7 @@ module Google
|
|
5952
5992
|
|
5953
5993
|
# Update properties of this object
|
5954
5994
|
def update!(**args)
|
5995
|
+
@allowed_ca_certs = args[:allowed_ca_certs] if args.key?(:allowed_ca_certs)
|
5955
5996
|
@password = args[:password] if args.key?(:password)
|
5956
5997
|
@request_headers = args[:request_headers] if args.key?(:request_headers)
|
5957
5998
|
@uri = args[:uri] if args.key?(:uri)
|
@@ -8013,6 +8054,12 @@ module Google
|
|
8013
8054
|
# @return [Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3beta1ResponseMessagePlayAudio]
|
8014
8055
|
attr_accessor :play_audio
|
8015
8056
|
|
8057
|
+
# Represents the signal that telles the client to transfer the phone call
|
8058
|
+
# connected to the agent to a third-party endpoint.
|
8059
|
+
# Corresponds to the JSON property `telephonyTransferCall`
|
8060
|
+
# @return [Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3beta1ResponseMessageTelephonyTransferCall]
|
8061
|
+
attr_accessor :telephony_transfer_call
|
8062
|
+
|
8016
8063
|
# The text response message.
|
8017
8064
|
# Corresponds to the JSON property `text`
|
8018
8065
|
# @return [Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3beta1ResponseMessageText]
|
@@ -8031,6 +8078,7 @@ module Google
|
|
8031
8078
|
@output_audio_text = args[:output_audio_text] if args.key?(:output_audio_text)
|
8032
8079
|
@payload = args[:payload] if args.key?(:payload)
|
8033
8080
|
@play_audio = args[:play_audio] if args.key?(:play_audio)
|
8081
|
+
@telephony_transfer_call = args[:telephony_transfer_call] if args.key?(:telephony_transfer_call)
|
8034
8082
|
@text = args[:text] if args.key?(:text)
|
8035
8083
|
end
|
8036
8084
|
end
|
@@ -8223,6 +8271,27 @@ module Google
|
|
8223
8271
|
end
|
8224
8272
|
end
|
8225
8273
|
|
8274
|
+
# Represents the signal that telles the client to transfer the phone call
|
8275
|
+
# connected to the agent to a third-party endpoint.
|
8276
|
+
class GoogleCloudDialogflowCxV3beta1ResponseMessageTelephonyTransferCall
|
8277
|
+
include Google::Apis::Core::Hashable
|
8278
|
+
|
8279
|
+
# Transfer the call to a phone number in [E.164 format](https://en.wikipedia.org/
|
8280
|
+
# wiki/E.164).
|
8281
|
+
# Corresponds to the JSON property `phoneNumber`
|
8282
|
+
# @return [String]
|
8283
|
+
attr_accessor :phone_number
|
8284
|
+
|
8285
|
+
def initialize(**args)
|
8286
|
+
update!(**args)
|
8287
|
+
end
|
8288
|
+
|
8289
|
+
# Update properties of this object
|
8290
|
+
def update!(**args)
|
8291
|
+
@phone_number = args[:phone_number] if args.key?(:phone_number)
|
8292
|
+
end
|
8293
|
+
end
|
8294
|
+
|
8226
8295
|
# The text response message.
|
8227
8296
|
class GoogleCloudDialogflowCxV3beta1ResponseMessageText
|
8228
8297
|
include Google::Apis::Core::Hashable
|
@@ -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.24.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
|
@@ -730,6 +730,12 @@ module Google
|
|
730
730
|
include Google::Apis::Core::JsonObjectSupport
|
731
731
|
end
|
732
732
|
|
733
|
+
class GoogleCloudDialogflowCxV3ResponseMessageTelephonyTransferCall
|
734
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
735
|
+
|
736
|
+
include Google::Apis::Core::JsonObjectSupport
|
737
|
+
end
|
738
|
+
|
733
739
|
class GoogleCloudDialogflowCxV3ResponseMessageText
|
734
740
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
735
741
|
|
@@ -1396,6 +1402,12 @@ module Google
|
|
1396
1402
|
include Google::Apis::Core::JsonObjectSupport
|
1397
1403
|
end
|
1398
1404
|
|
1405
|
+
class GoogleCloudDialogflowCxV3beta1ResponseMessageTelephonyTransferCall
|
1406
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1407
|
+
|
1408
|
+
include Google::Apis::Core::JsonObjectSupport
|
1409
|
+
end
|
1410
|
+
|
1399
1411
|
class GoogleCloudDialogflowCxV3beta1ResponseMessageText
|
1400
1412
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1401
1413
|
|
@@ -3554,6 +3566,8 @@ module Google
|
|
3554
3566
|
hash :payload, as: 'payload'
|
3555
3567
|
property :play_audio, as: 'playAudio', class: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3ResponseMessagePlayAudio, decorator: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3ResponseMessagePlayAudio::Representation
|
3556
3568
|
|
3569
|
+
property :telephony_transfer_call, as: 'telephonyTransferCall', class: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3ResponseMessageTelephonyTransferCall, decorator: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3ResponseMessageTelephonyTransferCall::Representation
|
3570
|
+
|
3557
3571
|
property :text, as: 'text', class: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3ResponseMessageText, decorator: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3ResponseMessageText::Representation
|
3558
3572
|
|
3559
3573
|
end
|
@@ -3613,6 +3627,13 @@ module Google
|
|
3613
3627
|
end
|
3614
3628
|
end
|
3615
3629
|
|
3630
|
+
class GoogleCloudDialogflowCxV3ResponseMessageTelephonyTransferCall
|
3631
|
+
# @private
|
3632
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
3633
|
+
property :phone_number, as: 'phoneNumber'
|
3634
|
+
end
|
3635
|
+
end
|
3636
|
+
|
3616
3637
|
class GoogleCloudDialogflowCxV3ResponseMessageText
|
3617
3638
|
# @private
|
3618
3639
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -4044,6 +4065,7 @@ module Google
|
|
4044
4065
|
class GoogleCloudDialogflowCxV3WebhookGenericWebService
|
4045
4066
|
# @private
|
4046
4067
|
class Representation < Google::Apis::Core::JsonRepresentation
|
4068
|
+
collection :allowed_ca_certs, as: 'allowedCaCerts'
|
4047
4069
|
property :password, as: 'password'
|
4048
4070
|
hash :request_headers, as: 'requestHeaders'
|
4049
4071
|
property :uri, as: 'uri'
|
@@ -4621,6 +4643,8 @@ module Google
|
|
4621
4643
|
hash :payload, as: 'payload'
|
4622
4644
|
property :play_audio, as: 'playAudio', class: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3beta1ResponseMessagePlayAudio, decorator: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3beta1ResponseMessagePlayAudio::Representation
|
4623
4645
|
|
4646
|
+
property :telephony_transfer_call, as: 'telephonyTransferCall', class: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3beta1ResponseMessageTelephonyTransferCall, decorator: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3beta1ResponseMessageTelephonyTransferCall::Representation
|
4647
|
+
|
4624
4648
|
property :text, as: 'text', class: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3beta1ResponseMessageText, decorator: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3beta1ResponseMessageText::Representation
|
4625
4649
|
|
4626
4650
|
end
|
@@ -4680,6 +4704,13 @@ module Google
|
|
4680
4704
|
end
|
4681
4705
|
end
|
4682
4706
|
|
4707
|
+
class GoogleCloudDialogflowCxV3beta1ResponseMessageTelephonyTransferCall
|
4708
|
+
# @private
|
4709
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
4710
|
+
property :phone_number, as: 'phoneNumber'
|
4711
|
+
end
|
4712
|
+
end
|
4713
|
+
|
4683
4714
|
class GoogleCloudDialogflowCxV3beta1ResponseMessageText
|
4684
4715
|
# @private
|
4685
4716
|
class Representation < Google::Apis::Core::JsonRepresentation
|
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.24.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_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.24.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: []
|