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: f2a40c0aa10e7846b68cd59904f57106e77ad2327d37479abd010dcdce6246c3
4
- data.tar.gz: a727e332c61725d0a1b3e9cb413235d5342666c33c091c0f609f38ba55e5ab8e
3
+ metadata.gz: 2cb3c8ef0ce3114ad2cad2748f242858bfa3081e3bbb5bf32ca7535db0dfcdd2
4
+ data.tar.gz: d664ea6b0f41945d5891bfd720350d28d5a75e04fffad7f516746fe7b655ea0e
5
5
  SHA512:
6
- metadata.gz: e2e0fcb93ec4b2319af65416e93be6ad1d02a009486487ed8d6596b40233abd8acf4081aa77cc63a2b4c55a717fc8d32e58c4e3b4a02a2c4f4321602b79b3e55
7
- data.tar.gz: ccb33ca6c23917252f13271ffbb3e04a127044d80661ebe5d8708fa96e7ec0baa4f2d68361c90524e374f65448e5a30c1ceee79b50e75e50ad075e4639b47a8b
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.26.0
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][1].
625
+ # Version 4 authentication][2].
625
626
  #
626
627
  #
627
628
  #
628
- # [1]: https://docs.aws.amazon.com/general/latest/gr/signature-version-4.html
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.26.0'
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
@@ -52,6 +52,6 @@ require_relative 'aws-sdk-connectparticipant/customizations'
52
52
  # @!group service
53
53
  module Aws::ConnectParticipant
54
54
 
55
- GEM_VERSION = '1.26.0'
55
+ GEM_VERSION = '1.27.0'
56
56
 
57
57
  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.26.0
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-18 00:00:00.000000000 Z
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