aws-sdk-connectparticipant 1.26.0 → 1.27.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: 2cb3c8ef0ce3114ad2cad2748f242858bfa3081e3bbb5bf32ca7535db0dfcdd2
|
|
4
|
+
data.tar.gz: d664ea6b0f41945d5891bfd720350d28d5a75e04fffad7f516746fe7b655ea0e
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 6ed1d91d1160079d94dbc8f85a9ecfd3fb09d7cc20ffe5ac5f5434d6985852033a84c068f88434f467af3c26485e1b278d32a272c38204d0fb6afea22153d4e1
|
|
7
|
+
data.tar.gz: 3546d765435ef115a2eab570491571897fbf035427e00d9c6388c05f57316ce89103b82ea0fff7114386a240fc00f93d347285f9046b51b008f53a09d1dc76f8
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,11 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.27.0 (2023-01-19)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* Feature - This release updates Amazon Connect Participant's GetTranscript api to provide transcripts of past chats on a persistent chat session.
|
|
8
|
+
|
|
4
9
|
1.26.0 (2023-01-18)
|
|
5
10
|
------------------
|
|
6
11
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.27.0
|
|
@@ -613,7 +613,8 @@ module Aws::ConnectParticipant
|
|
|
613
613
|
end
|
|
614
614
|
|
|
615
615
|
# Retrieves a transcript of the session, including details about any
|
|
616
|
-
# attachments.
|
|
616
|
+
# attachments. For information about accessing past chat contact
|
|
617
|
+
# transcripts for a persistent chat, see [Enable persistent chat][1].
|
|
617
618
|
#
|
|
618
619
|
# <note markdown="1"> `ConnectionToken` is used for invoking this API instead of
|
|
619
620
|
# `ParticipantToken`.
|
|
@@ -621,11 +622,12 @@ module Aws::ConnectParticipant
|
|
|
621
622
|
# </note>
|
|
622
623
|
#
|
|
623
624
|
# The Amazon Connect Participant Service APIs do not use [Signature
|
|
624
|
-
# Version 4 authentication][
|
|
625
|
+
# Version 4 authentication][2].
|
|
625
626
|
#
|
|
626
627
|
#
|
|
627
628
|
#
|
|
628
|
-
# [1]: https://docs.aws.amazon.com/
|
|
629
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/chat-persistence.html
|
|
630
|
+
# [2]: https://docs.aws.amazon.com/general/latest/gr/signature-version-4.html
|
|
629
631
|
#
|
|
630
632
|
# @option params [String] :contact_id
|
|
631
633
|
# The contactId from the current contact chain for which transcript is
|
|
@@ -699,6 +701,8 @@ module Aws::ConnectParticipant
|
|
|
699
701
|
# resp.transcript[0].message_metadata.receipts[0].delivered_timestamp #=> String
|
|
700
702
|
# resp.transcript[0].message_metadata.receipts[0].read_timestamp #=> String
|
|
701
703
|
# resp.transcript[0].message_metadata.receipts[0].recipient_participant_id #=> String
|
|
704
|
+
# resp.transcript[0].related_contact_id #=> String
|
|
705
|
+
# resp.transcript[0].contact_id #=> String
|
|
702
706
|
# resp.next_token #=> String
|
|
703
707
|
#
|
|
704
708
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connectparticipant-2018-09-07/GetTranscript AWS API Documentation
|
|
@@ -951,7 +955,7 @@ module Aws::ConnectParticipant
|
|
|
951
955
|
params: params,
|
|
952
956
|
config: config)
|
|
953
957
|
context[:gem_name] = 'aws-sdk-connectparticipant'
|
|
954
|
-
context[:gem_version] = '1.
|
|
958
|
+
context[:gem_version] = '1.27.0'
|
|
955
959
|
Seahorse::Client::Request.new(handlers, context)
|
|
956
960
|
end
|
|
957
961
|
|
|
@@ -161,6 +161,8 @@ module Aws::ConnectParticipant
|
|
|
161
161
|
Item.add_member(:participant_role, Shapes::ShapeRef.new(shape: ParticipantRole, location_name: "ParticipantRole"))
|
|
162
162
|
Item.add_member(:attachments, Shapes::ShapeRef.new(shape: Attachments, location_name: "Attachments"))
|
|
163
163
|
Item.add_member(:message_metadata, Shapes::ShapeRef.new(shape: MessageMetadata, location_name: "MessageMetadata"))
|
|
164
|
+
Item.add_member(:related_contact_id, Shapes::ShapeRef.new(shape: ContactId, location_name: "RelatedContactId"))
|
|
165
|
+
Item.add_member(:contact_id, Shapes::ShapeRef.new(shape: ContactId, location_name: "ContactId"))
|
|
164
166
|
Item.struct_class = Types::Item
|
|
165
167
|
|
|
166
168
|
MessageMetadata.add_member(:message_id, Shapes::ShapeRef.new(shape: ChatItemId, location_name: "MessageId"))
|
|
@@ -385,6 +385,23 @@ module Aws::ConnectParticipant
|
|
|
385
385
|
# information related to message receipts.
|
|
386
386
|
# @return [Types::MessageMetadata]
|
|
387
387
|
#
|
|
388
|
+
# @!attribute [rw] related_contact_id
|
|
389
|
+
# The contactId on which the transcript item was originally sent. This
|
|
390
|
+
# field is only populated for persistent chats when the transcript
|
|
391
|
+
# item is from the past chat session. For more information, see
|
|
392
|
+
# [Enable persistent chat][1].
|
|
393
|
+
#
|
|
394
|
+
#
|
|
395
|
+
#
|
|
396
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/chat-persistence.html
|
|
397
|
+
# @return [String]
|
|
398
|
+
#
|
|
399
|
+
# @!attribute [rw] contact_id
|
|
400
|
+
# The contactId on which the transcript item was originally sent. This
|
|
401
|
+
# field is populated only when the transcript item is from the current
|
|
402
|
+
# chat session.
|
|
403
|
+
# @return [String]
|
|
404
|
+
#
|
|
388
405
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connectparticipant-2018-09-07/Item AWS API Documentation
|
|
389
406
|
#
|
|
390
407
|
class Item < Struct.new(
|
|
@@ -397,7 +414,9 @@ module Aws::ConnectParticipant
|
|
|
397
414
|
:display_name,
|
|
398
415
|
:participant_role,
|
|
399
416
|
:attachments,
|
|
400
|
-
:message_metadata
|
|
417
|
+
:message_metadata,
|
|
418
|
+
:related_contact_id,
|
|
419
|
+
:contact_id)
|
|
401
420
|
SENSITIVE = []
|
|
402
421
|
include Aws::Structure
|
|
403
422
|
end
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: aws-sdk-connectparticipant
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.
|
|
4
|
+
version: 1.27.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Amazon Web Services
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2023-01-
|
|
11
|
+
date: 2023-01-19 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: aws-sdk-core
|