aws-sdk-connect 1.227.0 → 1.228.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 +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-connect/client.rb +14 -1
- data/lib/aws-sdk-connect/client_api.rb +5 -0
- data/lib/aws-sdk-connect/types.rb +15 -1
- data/lib/aws-sdk-connect.rb +1 -1
- data/sig/client.rbs +2 -1
- data/sig/types.rbs +1 -0
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 0f048fdd05a4b3744d8d739299752b7a9204a50aac5edea8dc25e0b9f84c8242
|
|
4
|
+
data.tar.gz: 6376e8f5411630ad782554b152fbb76f4b173699138e694b4f4e33da932a0173
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 3b64a7438377785eeb68c904a5d7d6dcb67257dde1f688f872bff2ea826cb360b0fbd77ebde05f097eb77716a6a590781ae72729c78b21f70a59498161162121
|
|
7
|
+
data.tar.gz: 92ac52e3b165676fb1129be1c6da843b4f61c927b26a5267033b42250a5c43fe8f374a1f8ff7df2cf88505ce7ead97315ed0da9807ce3a07529af1c9709103ab
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,11 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.228.0 (2025-12-12)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* Feature - Amazon Connect now offers automated post-chat surveys triggered when customers end conversations. This captures timely feedback while experience is fresh, using either a no-code form builder or Amazon Lex-powered interactive surveys.
|
|
8
|
+
|
|
4
9
|
1.227.0 (2025-12-01)
|
|
5
10
|
------------------
|
|
6
11
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.228.0
|
|
@@ -21014,6 +21014,18 @@ module Aws::Connect
|
|
|
21014
21014
|
# The customer's identification number. For example, the `CustomerId`
|
|
21015
21015
|
# may be a customer number from your CRM.
|
|
21016
21016
|
#
|
|
21017
|
+
# @option params [Array<String>] :disconnect_on_customer_exit
|
|
21018
|
+
# A list of participant types to automatically disconnect when the end
|
|
21019
|
+
# customer ends the chat session, allowing them to continue through
|
|
21020
|
+
# disconnect flows such as surveys or feedback forms.
|
|
21021
|
+
#
|
|
21022
|
+
# Valid value: `AGENT`.
|
|
21023
|
+
#
|
|
21024
|
+
# With the `DisconnectOnCustomerExit` parameter, you can configure
|
|
21025
|
+
# automatic agent disconnection when end customers end the chat,
|
|
21026
|
+
# ensuring that disconnect flows are triggered consistently regardless
|
|
21027
|
+
# of which participant disconnects first.
|
|
21028
|
+
#
|
|
21017
21029
|
# @return [Types::StartChatContactResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
21018
21030
|
#
|
|
21019
21031
|
# * {Types::StartChatContactResponse#contact_id #contact_id} => String
|
|
@@ -21065,6 +21077,7 @@ module Aws::Connect
|
|
|
21065
21077
|
# },
|
|
21066
21078
|
# },
|
|
21067
21079
|
# customer_id: "CustomerIdNonEmpty",
|
|
21080
|
+
# disconnect_on_customer_exit: ["AGENT"], # accepts AGENT
|
|
21068
21081
|
# })
|
|
21069
21082
|
#
|
|
21070
21083
|
# @example Response structure
|
|
@@ -26793,7 +26806,7 @@ module Aws::Connect
|
|
|
26793
26806
|
tracer: tracer
|
|
26794
26807
|
)
|
|
26795
26808
|
context[:gem_name] = 'aws-sdk-connect'
|
|
26796
|
-
context[:gem_version] = '1.
|
|
26809
|
+
context[:gem_version] = '1.228.0'
|
|
26797
26810
|
Seahorse::Client::Request.new(handlers, context)
|
|
26798
26811
|
end
|
|
26799
26812
|
|
|
@@ -609,6 +609,8 @@ module Aws::Connect
|
|
|
609
609
|
DisassociateWorkspaceRequest = Shapes::StructureShape.new(name: 'DisassociateWorkspaceRequest')
|
|
610
610
|
DisassociateWorkspaceResponse = Shapes::StructureShape.new(name: 'DisassociateWorkspaceResponse')
|
|
611
611
|
DisconnectDetails = Shapes::StructureShape.new(name: 'DisconnectDetails')
|
|
612
|
+
DisconnectOnCustomerExit = Shapes::ListShape.new(name: 'DisconnectOnCustomerExit')
|
|
613
|
+
DisconnectOnCustomerExitParticipantType = Shapes::StringShape.new(name: 'DisconnectOnCustomerExitParticipantType')
|
|
612
614
|
DisconnectReason = Shapes::StructureShape.new(name: 'DisconnectReason')
|
|
613
615
|
DisconnectReasonCode = Shapes::StringShape.new(name: 'DisconnectReasonCode')
|
|
614
616
|
DismissUserContactRequest = Shapes::StructureShape.new(name: 'DismissUserContactRequest')
|
|
@@ -4128,6 +4130,8 @@ module Aws::Connect
|
|
|
4128
4130
|
DisconnectDetails.add_member(:potential_disconnect_issue, Shapes::ShapeRef.new(shape: PotentialDisconnectIssue, location_name: "PotentialDisconnectIssue"))
|
|
4129
4131
|
DisconnectDetails.struct_class = Types::DisconnectDetails
|
|
4130
4132
|
|
|
4133
|
+
DisconnectOnCustomerExit.member = Shapes::ShapeRef.new(shape: DisconnectOnCustomerExitParticipantType)
|
|
4134
|
+
|
|
4131
4135
|
DisconnectReason.add_member(:code, Shapes::ShapeRef.new(shape: DisconnectReasonCode, location_name: "Code"))
|
|
4132
4136
|
DisconnectReason.struct_class = Types::DisconnectReason
|
|
4133
4137
|
|
|
@@ -7349,6 +7353,7 @@ module Aws::Connect
|
|
|
7349
7353
|
StartChatContactRequest.add_member(:related_contact_id, Shapes::ShapeRef.new(shape: ContactId, location_name: "RelatedContactId"))
|
|
7350
7354
|
StartChatContactRequest.add_member(:segment_attributes, Shapes::ShapeRef.new(shape: SegmentAttributes, location_name: "SegmentAttributes"))
|
|
7351
7355
|
StartChatContactRequest.add_member(:customer_id, Shapes::ShapeRef.new(shape: CustomerIdNonEmpty, location_name: "CustomerId"))
|
|
7356
|
+
StartChatContactRequest.add_member(:disconnect_on_customer_exit, Shapes::ShapeRef.new(shape: DisconnectOnCustomerExit, location_name: "DisconnectOnCustomerExit"))
|
|
7352
7357
|
StartChatContactRequest.struct_class = Types::StartChatContactRequest
|
|
7353
7358
|
|
|
7354
7359
|
StartChatContactResponse.add_member(:contact_id, Shapes::ShapeRef.new(shape: ContactId, location_name: "ContactId"))
|
|
@@ -29013,6 +29013,19 @@ module Aws::Connect
|
|
|
29013
29013
|
# may be a customer number from your CRM.
|
|
29014
29014
|
# @return [String]
|
|
29015
29015
|
#
|
|
29016
|
+
# @!attribute [rw] disconnect_on_customer_exit
|
|
29017
|
+
# A list of participant types to automatically disconnect when the end
|
|
29018
|
+
# customer ends the chat session, allowing them to continue through
|
|
29019
|
+
# disconnect flows such as surveys or feedback forms.
|
|
29020
|
+
#
|
|
29021
|
+
# Valid value: `AGENT`.
|
|
29022
|
+
#
|
|
29023
|
+
# With the `DisconnectOnCustomerExit` parameter, you can configure
|
|
29024
|
+
# automatic agent disconnection when end customers end the chat,
|
|
29025
|
+
# ensuring that disconnect flows are triggered consistently regardless
|
|
29026
|
+
# of which participant disconnects first.
|
|
29027
|
+
# @return [Array<String>]
|
|
29028
|
+
#
|
|
29016
29029
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/StartChatContactRequest AWS API Documentation
|
|
29017
29030
|
#
|
|
29018
29031
|
class StartChatContactRequest < Struct.new(
|
|
@@ -29028,7 +29041,8 @@ module Aws::Connect
|
|
|
29028
29041
|
:persistent_chat,
|
|
29029
29042
|
:related_contact_id,
|
|
29030
29043
|
:segment_attributes,
|
|
29031
|
-
:customer_id
|
|
29044
|
+
:customer_id,
|
|
29045
|
+
:disconnect_on_customer_exit)
|
|
29032
29046
|
SENSITIVE = [:customer_id]
|
|
29033
29047
|
include Aws::Structure
|
|
29034
29048
|
end
|
data/lib/aws-sdk-connect.rb
CHANGED
data/sig/client.rbs
CHANGED
|
@@ -5226,7 +5226,8 @@ module Aws
|
|
|
5226
5226
|
]?,
|
|
5227
5227
|
value_arn: ::String?
|
|
5228
5228
|
}],
|
|
5229
|
-
?customer_id: ::String
|
|
5229
|
+
?customer_id: ::String,
|
|
5230
|
+
?disconnect_on_customer_exit: Array[("AGENT")]
|
|
5230
5231
|
) -> _StartChatContactResponseSuccess
|
|
5231
5232
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StartChatContactResponseSuccess
|
|
5232
5233
|
|
data/sig/types.rbs
CHANGED
|
@@ -6764,6 +6764,7 @@ module Aws::Connect
|
|
|
6764
6764
|
attr_accessor related_contact_id: ::String
|
|
6765
6765
|
attr_accessor segment_attributes: ::Hash[::String, Types::SegmentAttributeValue]
|
|
6766
6766
|
attr_accessor customer_id: ::String
|
|
6767
|
+
attr_accessor disconnect_on_customer_exit: ::Array[("AGENT")]
|
|
6767
6768
|
SENSITIVE: [:customer_id]
|
|
6768
6769
|
end
|
|
6769
6770
|
|