@aws-sdk/client-connectparticipant 3.514.0 → 3.516.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.
@@ -27,7 +27,8 @@ declare const CompleteAttachmentUploadCommand_base: {
27
27
  /**
28
28
  * @public
29
29
  * <p>Allows you to confirm that the attachment has been uploaded using the pre-signed URL
30
- * provided in StartAttachmentUpload API. </p>
30
+ * provided in StartAttachmentUpload API. A conflict exception is thrown when an attachment
31
+ * with that identifier is already being uploaded.</p>
31
32
  * <note>
32
33
  * <p>
33
34
  * <code>ConnectionToken</code> is used for invoking this API instead of
@@ -64,7 +65,8 @@ declare const CompleteAttachmentUploadCommand_base: {
64
65
  * <p>You do not have sufficient access to perform this action.</p>
65
66
  *
66
67
  * @throws {@link ConflictException} (client fault)
67
- * <p>An attachment with that identifier is already being uploaded.</p>
68
+ * <p>The requested operation conflicts with the current state of a service
69
+ * resource associated with the request. </p>
68
70
  *
69
71
  * @throws {@link InternalServerException} (server fault)
70
72
  * <p>This exception occurs when there is an internal failure in the Amazon Connect service.</p>
@@ -28,11 +28,41 @@ declare const GetTranscriptCommand_base: {
28
28
  * @public
29
29
  * <p>Retrieves a transcript of the session, including details about any attachments. For
30
30
  * information about accessing past chat contact transcripts for a persistent chat, see
31
- * <a href="https://docs.aws.amazon.com/connect/latest/adminguide/chat-persistence.html">Enable persistent chat</a>. </p>
31
+ * <a href="https://docs.aws.amazon.com/connect/latest/adminguide/chat-persistence.html">Enable persistent chat</a>. </p>
32
+ * <p>If you have a process that consumes events in the transcript of an chat that has ended, note that chat
33
+ * transcripts contain the following event content types if the event has occurred
34
+ * during the chat session:</p>
35
+ * <ul>
36
+ * <li>
37
+ * <p>
38
+ * <code>application/vnd.amazonaws.connect.event.participant.left</code>
39
+ * </p>
40
+ * </li>
41
+ * <li>
42
+ * <p>
43
+ * <code>application/vnd.amazonaws.connect.event.participant.joined</code>
44
+ * </p>
45
+ * </li>
46
+ * <li>
47
+ * <p>
48
+ * <code>application/vnd.amazonaws.connect.event.chat.ended</code>
49
+ * </p>
50
+ * </li>
51
+ * <li>
52
+ * <p>
53
+ * <code>application/vnd.amazonaws.connect.event.transfer.succeeded</code>
54
+ * </p>
55
+ * </li>
56
+ * <li>
57
+ * <p>
58
+ * <code>application/vnd.amazonaws.connect.event.transfer.failed</code>
59
+ * </p>
60
+ * </li>
61
+ * </ul>
32
62
  * <note>
33
63
  * <p>
34
64
  * <code>ConnectionToken</code> is used for invoking this API instead of
35
- * <code>ParticipantToken</code>.</p>
65
+ * <code>ParticipantToken</code>.</p>
36
66
  * </note>
37
67
  * <p>The Amazon Connect Participant Service APIs do not use <a href="https://docs.aws.amazon.com/general/latest/gr/signature-version-4.html">Signature Version 4
38
68
  * authentication</a>.</p>
@@ -26,7 +26,15 @@ declare const SendEventCommand_base: {
26
26
  };
27
27
  /**
28
28
  * @public
29
- * <p>Sends an event. </p>
29
+ * <note>
30
+ * <p>The <code>application/vnd.amazonaws.connect.event.connection.acknowledged</code>
31
+ * ContentType will no longer be supported starting December 31, 2024. This event has
32
+ * been migrated to the <a href="https://docs.aws.amazon.com/connect-participant/latest/APIReference/API_CreateParticipantConnection.html">CreateParticipantConnection</a> API using the
33
+ * <code>ConnectParticipant</code> field.</p>
34
+ * </note>
35
+ * <p>Sends an event. Message receipts are not supported when there are more than two active
36
+ * participants in the chat. Using the SendEvent API for message receipts when a supervisor
37
+ * is barged-in will result in a conflict exception.</p>
30
38
  * <note>
31
39
  * <p>
32
40
  * <code>ConnectionToken</code> is used for invoking this API instead of
@@ -65,7 +73,8 @@ declare const SendEventCommand_base: {
65
73
  * <p>You do not have sufficient access to perform this action.</p>
66
74
  *
67
75
  * @throws {@link ConflictException} (client fault)
68
- * <p>An attachment with that identifier is already being uploaded.</p>
76
+ * <p>The requested operation conflicts with the current state of a service
77
+ * resource associated with the request. </p>
69
78
  *
70
79
  * @throws {@link InternalServerException} (server fault)
71
80
  * <p>This exception occurs when there is an internal failure in the Amazon Connect service.</p>
@@ -43,7 +43,8 @@ export interface CompleteAttachmentUploadResponse {
43
43
  }
44
44
  /**
45
45
  * @public
46
- * <p>An attachment with that identifier is already being uploaded.</p>
46
+ * <p>The requested operation conflicts with the current state of a service
47
+ * resource associated with the request. </p>
47
48
  */
48
49
  export declare class ConflictException extends __BaseException {
49
50
  readonly name: "ConflictException";
@@ -124,9 +125,9 @@ export type ConnectionType = (typeof ConnectionType)[keyof typeof ConnectionType
124
125
  export interface CreateParticipantConnectionRequest {
125
126
  /**
126
127
  * @public
127
- * <p>Type of connection information required. If you need <code>CONNECTION_CREDENTIALS</code> along with marking
128
- * participant as connected, pass <code>CONNECTION_CREDENTIALS</code> in
129
- * <code>Type</code>.</p>
128
+ * <p>Type of connection information required. If you need
129
+ * <code>CONNECTION_CREDENTIALS</code> along with marking participant as connected,
130
+ * pass <code>CONNECTION_CREDENTIALS</code> in <code>Type</code>.</p>
130
131
  */
131
132
  Type?: ConnectionType[];
132
133
  /**
@@ -202,8 +203,8 @@ export interface CreateParticipantConnectionResponse {
202
203
  export interface DescribeViewRequest {
203
204
  /**
204
205
  * @public
205
- * <p>An encrypted token originating from the interactive message of a ShowView block operation.
206
- * Represents the desired view.</p>
206
+ * <p>An encrypted token originating from the interactive message of a ShowView block
207
+ * operation. Represents the desired view.</p>
207
208
  */
208
209
  ViewToken: string | undefined;
209
210
  /**
@@ -214,12 +215,14 @@ export interface DescribeViewRequest {
214
215
  }
215
216
  /**
216
217
  * @public
217
- * <p>View content containing all content necessary to render a view except for runtime input data.</p>
218
+ * <p>View content containing all content necessary to render a view except for runtime
219
+ * input data.</p>
218
220
  */
219
221
  export interface ViewContent {
220
222
  /**
221
223
  * @public
222
- * <p>The schema representing the input data that the view template must be supplied to render.</p>
224
+ * <p>The schema representing the input data that the view template must be supplied to
225
+ * render.</p>
223
226
  */
224
227
  InputSchema?: string;
225
228
  /**
@@ -235,7 +238,8 @@ export interface ViewContent {
235
238
  }
236
239
  /**
237
240
  * @public
238
- * <p>A view resource object. Contains metadata and content necessary to render the view.</p>
241
+ * <p>A view resource object. Contains metadata and content necessary to render the
242
+ * view.</p>
239
243
  */
240
244
  export interface View {
241
245
  /**
@@ -260,7 +264,8 @@ export interface View {
260
264
  Version?: number;
261
265
  /**
262
266
  * @public
263
- * <p>View content containing all content necessary to render a view except for runtime input data.</p>
267
+ * <p>View content containing all content necessary to render a view except for runtime
268
+ * input data.</p>
264
269
  */
265
270
  Content?: ViewContent;
266
271
  }
@@ -270,7 +275,8 @@ export interface View {
270
275
  export interface DescribeViewResponse {
271
276
  /**
272
277
  * @public
273
- * <p>A view resource object. Contains metadata and content necessary to render the view.</p>
278
+ * <p>A view resource object. Contains metadata and content necessary to render the
279
+ * view.</p>
274
280
  */
275
281
  View?: View;
276
282
  }
@@ -679,7 +685,8 @@ export interface SendEventRequest {
679
685
  * <p>application/vnd.amazonaws.connect.event.typing</p>
680
686
  * </li>
681
687
  * <li>
682
- * <p>application/vnd.amazonaws.connect.event.connection.acknowledged</p>
688
+ * <p>application/vnd.amazonaws.connect.event.connection.acknowledged (will be
689
+ * deprecated on December 31, 2024) </p>
683
690
  * </li>
684
691
  * <li>
685
692
  * <p>application/vnd.amazonaws.connect.event.message.delivered</p>
@@ -735,8 +742,8 @@ export interface SendMessageRequest {
735
742
  /**
736
743
  * @public
737
744
  * <p>The type of the content. Supported types are <code>text/plain</code>,
738
- * <code>text/markdown</code>, <code>application/json</code>, and
739
- * <code>application/vnd.amazonaws.connect.message.interactive.response</code>.</p>
745
+ * <code>text/markdown</code>, <code>application/json</code>, and
746
+ * <code>application/vnd.amazonaws.connect.message.interactive.response</code>.</p>
740
747
  */
741
748
  ContentType: string | undefined;
742
749
  /**
@@ -752,8 +759,9 @@ export interface SendMessageRequest {
752
759
  * Maximum of 12000. </p>
753
760
  * </li>
754
761
  * <li>
755
- * <p>For <code>application/vnd.amazonaws.connect.message.interactive.response</code>, the Length
756
- * Constraints are Minimum of 1, Maximum of 12288.</p>
762
+ * <p>For
763
+ * <code>application/vnd.amazonaws.connect.message.interactive.response</code>,
764
+ * the Length Constraints are Minimum of 1, Maximum of 12288.</p>
757
765
  * </li>
758
766
  * </ul>
759
767
  */
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-connectparticipant",
3
3
  "description": "AWS SDK for JavaScript Connectparticipant Client for Node.js, Browser and React Native",
4
- "version": "3.514.0",
4
+ "version": "3.516.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "node ../../scripts/compilation/inline client-connectparticipant",
@@ -20,18 +20,18 @@
20
20
  "dependencies": {
21
21
  "@aws-crypto/sha256-browser": "3.0.0",
22
22
  "@aws-crypto/sha256-js": "3.0.0",
23
- "@aws-sdk/client-sts": "3.513.0",
23
+ "@aws-sdk/client-sts": "3.515.0",
24
24
  "@aws-sdk/core": "3.513.0",
25
- "@aws-sdk/credential-provider-node": "3.514.0",
26
- "@aws-sdk/middleware-host-header": "3.511.0",
27
- "@aws-sdk/middleware-logger": "3.511.0",
28
- "@aws-sdk/middleware-recursion-detection": "3.511.0",
29
- "@aws-sdk/middleware-user-agent": "3.511.0",
30
- "@aws-sdk/region-config-resolver": "3.511.0",
31
- "@aws-sdk/types": "3.511.0",
32
- "@aws-sdk/util-endpoints": "3.511.0",
33
- "@aws-sdk/util-user-agent-browser": "3.511.0",
34
- "@aws-sdk/util-user-agent-node": "3.511.0",
25
+ "@aws-sdk/credential-provider-node": "3.515.0",
26
+ "@aws-sdk/middleware-host-header": "3.515.0",
27
+ "@aws-sdk/middleware-logger": "3.515.0",
28
+ "@aws-sdk/middleware-recursion-detection": "3.515.0",
29
+ "@aws-sdk/middleware-user-agent": "3.515.0",
30
+ "@aws-sdk/region-config-resolver": "3.515.0",
31
+ "@aws-sdk/types": "3.515.0",
32
+ "@aws-sdk/util-endpoints": "3.515.0",
33
+ "@aws-sdk/util-user-agent-browser": "3.515.0",
34
+ "@aws-sdk/util-user-agent-node": "3.515.0",
35
35
  "@smithy/config-resolver": "^2.1.1",
36
36
  "@smithy/core": "^1.3.2",
37
37
  "@smithy/fetch-http-handler": "^2.4.1",
@@ -58,13 +58,13 @@
58
58
  "@smithy/util-retry": "^2.1.1",
59
59
  "@smithy/util-utf8": "^2.1.1",
60
60
  "tslib": "^2.5.0",
61
- "uuid": "^8.3.2"
61
+ "uuid": "^9.0.1"
62
62
  },
63
63
  "devDependencies": {
64
64
  "@smithy/service-client-documentation-generator": "^2.1.1",
65
65
  "@tsconfig/node14": "1.0.3",
66
66
  "@types/node": "^14.14.31",
67
- "@types/uuid": "^8.3.0",
67
+ "@types/uuid": "^9.0.4",
68
68
  "concurrently": "7.0.0",
69
69
  "downlevel-dts": "0.10.1",
70
70
  "rimraf": "3.0.2",