@aws-sdk/client-connectparticipant 3.533.0 → 3.535.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.
- package/dist-types/ConnectParticipant.d.ts +1 -1
- package/dist-types/ConnectParticipantClient.d.ts +1 -1
- package/dist-types/commands/CompleteAttachmentUploadCommand.d.ts +2 -1
- package/dist-types/commands/CreateParticipantConnectionCommand.d.ts +2 -1
- package/dist-types/commands/DescribeViewCommand.d.ts +2 -1
- package/dist-types/commands/DisconnectParticipantCommand.d.ts +2 -1
- package/dist-types/commands/GetAttachmentCommand.d.ts +2 -1
- package/dist-types/commands/GetTranscriptCommand.d.ts +2 -1
- package/dist-types/commands/SendEventCommand.d.ts +2 -1
- package/dist-types/commands/SendMessageCommand.d.ts +2 -1
- package/dist-types/commands/StartAttachmentUploadCommand.d.ts +2 -1
- package/dist-types/models/models_0.d.ts +104 -104
- package/dist-types/ts3.4/commands/CompleteAttachmentUploadCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/CreateParticipantConnectionCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/DescribeViewCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/DisconnectParticipantCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/GetAttachmentCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/GetTranscriptCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/SendEventCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/SendMessageCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/StartAttachmentUploadCommand.d.ts +9 -0
- package/package.json +40 -40
|
@@ -66,7 +66,6 @@ export interface ConnectParticipant {
|
|
|
66
66
|
startAttachmentUpload(args: StartAttachmentUploadCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StartAttachmentUploadCommandOutput) => void): void;
|
|
67
67
|
}
|
|
68
68
|
/**
|
|
69
|
-
* @public
|
|
70
69
|
* <p>Amazon Connect is an easy-to-use omnichannel cloud contact center service that
|
|
71
70
|
* enables companies of any size to deliver superior customer service at a lower cost.
|
|
72
71
|
* Amazon Connect communications capabilities make it easy for companies to deliver
|
|
@@ -76,6 +75,7 @@ export interface ConnectParticipant {
|
|
|
76
75
|
* chat contact. The APIs in the service enable the following: sending chat messages,
|
|
77
76
|
* attachment sharing, managing a participant's connection state and message events, and
|
|
78
77
|
* retrieving chat transcripts.</p>
|
|
78
|
+
* @public
|
|
79
79
|
*/
|
|
80
80
|
export declare class ConnectParticipant extends ConnectParticipantClient implements ConnectParticipant {
|
|
81
81
|
}
|
|
@@ -160,7 +160,6 @@ export type ConnectParticipantClientResolvedConfigType = __SmithyResolvedConfigu
|
|
|
160
160
|
export interface ConnectParticipantClientResolvedConfig extends ConnectParticipantClientResolvedConfigType {
|
|
161
161
|
}
|
|
162
162
|
/**
|
|
163
|
-
* @public
|
|
164
163
|
* <p>Amazon Connect is an easy-to-use omnichannel cloud contact center service that
|
|
165
164
|
* enables companies of any size to deliver superior customer service at a lower cost.
|
|
166
165
|
* Amazon Connect communications capabilities make it easy for companies to deliver
|
|
@@ -170,6 +169,7 @@ export interface ConnectParticipantClientResolvedConfig extends ConnectParticipa
|
|
|
170
169
|
* chat contact. The APIs in the service enable the following: sending chat messages,
|
|
171
170
|
* attachment sharing, managing a participant's connection state and message events, and
|
|
172
171
|
* retrieving chat transcripts.</p>
|
|
172
|
+
* @public
|
|
173
173
|
*/
|
|
174
174
|
export declare class ConnectParticipantClient extends __Client<__HttpHandlerOptions, ServiceInputTypes, ServiceOutputTypes, ConnectParticipantClientResolvedConfig> {
|
|
175
175
|
/**
|
|
@@ -22,10 +22,10 @@ export interface CompleteAttachmentUploadCommandOutput extends CompleteAttachmen
|
|
|
22
22
|
}
|
|
23
23
|
declare const CompleteAttachmentUploadCommand_base: {
|
|
24
24
|
new (input: CompleteAttachmentUploadCommandInput): import("@smithy/smithy-client").CommandImpl<CompleteAttachmentUploadCommandInput, CompleteAttachmentUploadCommandOutput, ConnectParticipantClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: CompleteAttachmentUploadCommandInput): import("@smithy/smithy-client").CommandImpl<CompleteAttachmentUploadCommandInput, CompleteAttachmentUploadCommandOutput, ConnectParticipantClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Allows you to confirm that the attachment has been uploaded using the pre-signed URL
|
|
30
30
|
* provided in StartAttachmentUpload API. A conflict exception is thrown when an attachment
|
|
31
31
|
* with that identifier is already being uploaded.</p>
|
|
@@ -83,6 +83,7 @@ declare const CompleteAttachmentUploadCommand_base: {
|
|
|
83
83
|
* @throws {@link ConnectParticipantServiceException}
|
|
84
84
|
* <p>Base exception class for all service exceptions from ConnectParticipant service.</p>
|
|
85
85
|
*
|
|
86
|
+
* @public
|
|
86
87
|
*/
|
|
87
88
|
export declare class CompleteAttachmentUploadCommand extends CompleteAttachmentUploadCommand_base {
|
|
88
89
|
}
|
|
@@ -22,10 +22,10 @@ export interface CreateParticipantConnectionCommandOutput extends CreateParticip
|
|
|
22
22
|
}
|
|
23
23
|
declare const CreateParticipantConnectionCommand_base: {
|
|
24
24
|
new (input: CreateParticipantConnectionCommandInput): import("@smithy/smithy-client").CommandImpl<CreateParticipantConnectionCommandInput, CreateParticipantConnectionCommandOutput, ConnectParticipantClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: CreateParticipantConnectionCommandInput): import("@smithy/smithy-client").CommandImpl<CreateParticipantConnectionCommandInput, CreateParticipantConnectionCommandOutput, ConnectParticipantClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Creates the participant's connection. </p>
|
|
30
30
|
* <note>
|
|
31
31
|
* <p>
|
|
@@ -110,6 +110,7 @@ declare const CreateParticipantConnectionCommand_base: {
|
|
|
110
110
|
* @throws {@link ConnectParticipantServiceException}
|
|
111
111
|
* <p>Base exception class for all service exceptions from ConnectParticipant service.</p>
|
|
112
112
|
*
|
|
113
|
+
* @public
|
|
113
114
|
*/
|
|
114
115
|
export declare class CreateParticipantConnectionCommand extends CreateParticipantConnectionCommand_base {
|
|
115
116
|
}
|
|
@@ -22,10 +22,10 @@ export interface DescribeViewCommandOutput extends DescribeViewResponse, __Metad
|
|
|
22
22
|
}
|
|
23
23
|
declare const DescribeViewCommand_base: {
|
|
24
24
|
new (input: DescribeViewCommandInput): import("@smithy/smithy-client").CommandImpl<DescribeViewCommandInput, DescribeViewCommandOutput, ConnectParticipantClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: DescribeViewCommandInput): import("@smithy/smithy-client").CommandImpl<DescribeViewCommandInput, DescribeViewCommandOutput, ConnectParticipantClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Retrieves the view for the specified view token.</p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -81,6 +81,7 @@ declare const DescribeViewCommand_base: {
|
|
|
81
81
|
* @throws {@link ConnectParticipantServiceException}
|
|
82
82
|
* <p>Base exception class for all service exceptions from ConnectParticipant service.</p>
|
|
83
83
|
*
|
|
84
|
+
* @public
|
|
84
85
|
*/
|
|
85
86
|
export declare class DescribeViewCommand extends DescribeViewCommand_base {
|
|
86
87
|
}
|
|
@@ -22,10 +22,10 @@ export interface DisconnectParticipantCommandOutput extends DisconnectParticipan
|
|
|
22
22
|
}
|
|
23
23
|
declare const DisconnectParticipantCommand_base: {
|
|
24
24
|
new (input: DisconnectParticipantCommandInput): import("@smithy/smithy-client").CommandImpl<DisconnectParticipantCommandInput, DisconnectParticipantCommandOutput, ConnectParticipantClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: DisconnectParticipantCommandInput): import("@smithy/smithy-client").CommandImpl<DisconnectParticipantCommandInput, DisconnectParticipantCommandOutput, ConnectParticipantClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Disconnects a participant. </p>
|
|
30
30
|
* <note>
|
|
31
31
|
* <p>
|
|
@@ -71,6 +71,7 @@ declare const DisconnectParticipantCommand_base: {
|
|
|
71
71
|
* @throws {@link ConnectParticipantServiceException}
|
|
72
72
|
* <p>Base exception class for all service exceptions from ConnectParticipant service.</p>
|
|
73
73
|
*
|
|
74
|
+
* @public
|
|
74
75
|
*/
|
|
75
76
|
export declare class DisconnectParticipantCommand extends DisconnectParticipantCommand_base {
|
|
76
77
|
}
|
|
@@ -22,10 +22,10 @@ export interface GetAttachmentCommandOutput extends GetAttachmentResponse, __Met
|
|
|
22
22
|
}
|
|
23
23
|
declare const GetAttachmentCommand_base: {
|
|
24
24
|
new (input: GetAttachmentCommandInput): import("@smithy/smithy-client").CommandImpl<GetAttachmentCommandInput, GetAttachmentCommandOutput, ConnectParticipantClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: GetAttachmentCommandInput): import("@smithy/smithy-client").CommandImpl<GetAttachmentCommandInput, GetAttachmentCommandOutput, ConnectParticipantClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Provides a pre-signed URL for download of a completed attachment. This is an
|
|
30
30
|
* asynchronous API for use with active contacts.</p>
|
|
31
31
|
* <note>
|
|
@@ -75,6 +75,7 @@ declare const GetAttachmentCommand_base: {
|
|
|
75
75
|
* @throws {@link ConnectParticipantServiceException}
|
|
76
76
|
* <p>Base exception class for all service exceptions from ConnectParticipant service.</p>
|
|
77
77
|
*
|
|
78
|
+
* @public
|
|
78
79
|
*/
|
|
79
80
|
export declare class GetAttachmentCommand extends GetAttachmentCommand_base {
|
|
80
81
|
}
|
|
@@ -22,10 +22,10 @@ export interface GetTranscriptCommandOutput extends GetTranscriptResponse, __Met
|
|
|
22
22
|
}
|
|
23
23
|
declare const GetTranscriptCommand_base: {
|
|
24
24
|
new (input: GetTranscriptCommandInput): import("@smithy/smithy-client").CommandImpl<GetTranscriptCommandInput, GetTranscriptCommandOutput, ConnectParticipantClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: GetTranscriptCommandInput): import("@smithy/smithy-client").CommandImpl<GetTranscriptCommandInput, GetTranscriptCommandOutput, ConnectParticipantClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
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
31
|
* <a href="https://docs.aws.amazon.com/connect/latest/adminguide/chat-persistence.html">Enable persistent chat</a>. </p>
|
|
@@ -147,6 +147,7 @@ declare const GetTranscriptCommand_base: {
|
|
|
147
147
|
* @throws {@link ConnectParticipantServiceException}
|
|
148
148
|
* <p>Base exception class for all service exceptions from ConnectParticipant service.</p>
|
|
149
149
|
*
|
|
150
|
+
* @public
|
|
150
151
|
*/
|
|
151
152
|
export declare class GetTranscriptCommand extends GetTranscriptCommand_base {
|
|
152
153
|
}
|
|
@@ -22,10 +22,10 @@ export interface SendEventCommandOutput extends SendEventResponse, __MetadataBea
|
|
|
22
22
|
}
|
|
23
23
|
declare const SendEventCommand_base: {
|
|
24
24
|
new (input: SendEventCommandInput): import("@smithy/smithy-client").CommandImpl<SendEventCommandInput, SendEventCommandOutput, ConnectParticipantClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: SendEventCommandInput): import("@smithy/smithy-client").CommandImpl<SendEventCommandInput, SendEventCommandOutput, ConnectParticipantClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <note>
|
|
30
30
|
* <p>The <code>application/vnd.amazonaws.connect.event.connection.acknowledged</code>
|
|
31
31
|
* ContentType will no longer be supported starting December 31, 2024. This event has
|
|
@@ -88,6 +88,7 @@ declare const SendEventCommand_base: {
|
|
|
88
88
|
* @throws {@link ConnectParticipantServiceException}
|
|
89
89
|
* <p>Base exception class for all service exceptions from ConnectParticipant service.</p>
|
|
90
90
|
*
|
|
91
|
+
* @public
|
|
91
92
|
*/
|
|
92
93
|
export declare class SendEventCommand extends SendEventCommand_base {
|
|
93
94
|
}
|
|
@@ -22,10 +22,10 @@ export interface SendMessageCommandOutput extends SendMessageResponse, __Metadat
|
|
|
22
22
|
}
|
|
23
23
|
declare const SendMessageCommand_base: {
|
|
24
24
|
new (input: SendMessageCommandInput): import("@smithy/smithy-client").CommandImpl<SendMessageCommandInput, SendMessageCommandOutput, ConnectParticipantClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: SendMessageCommandInput): import("@smithy/smithy-client").CommandImpl<SendMessageCommandInput, SendMessageCommandOutput, ConnectParticipantClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Sends a message.</p>
|
|
30
30
|
* <note>
|
|
31
31
|
* <p>
|
|
@@ -76,6 +76,7 @@ declare const SendMessageCommand_base: {
|
|
|
76
76
|
* @throws {@link ConnectParticipantServiceException}
|
|
77
77
|
* <p>Base exception class for all service exceptions from ConnectParticipant service.</p>
|
|
78
78
|
*
|
|
79
|
+
* @public
|
|
79
80
|
*/
|
|
80
81
|
export declare class SendMessageCommand extends SendMessageCommand_base {
|
|
81
82
|
}
|
|
@@ -22,10 +22,10 @@ export interface StartAttachmentUploadCommandOutput extends StartAttachmentUploa
|
|
|
22
22
|
}
|
|
23
23
|
declare const StartAttachmentUploadCommand_base: {
|
|
24
24
|
new (input: StartAttachmentUploadCommandInput): import("@smithy/smithy-client").CommandImpl<StartAttachmentUploadCommandInput, StartAttachmentUploadCommandOutput, ConnectParticipantClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: StartAttachmentUploadCommandInput): import("@smithy/smithy-client").CommandImpl<StartAttachmentUploadCommandInput, StartAttachmentUploadCommandOutput, ConnectParticipantClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Provides a pre-signed Amazon S3 URL in response for uploading the file directly to
|
|
30
30
|
* S3.</p>
|
|
31
31
|
* <note>
|
|
@@ -87,6 +87,7 @@ declare const StartAttachmentUploadCommand_base: {
|
|
|
87
87
|
* @throws {@link ConnectParticipantServiceException}
|
|
88
88
|
* <p>Base exception class for all service exceptions from ConnectParticipant service.</p>
|
|
89
89
|
*
|
|
90
|
+
* @public
|
|
90
91
|
*/
|
|
91
92
|
export declare class StartAttachmentUploadCommand extends StartAttachmentUploadCommand_base {
|
|
92
93
|
}
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
|
|
2
2
|
import { ConnectParticipantServiceException as __BaseException } from "./ConnectParticipantServiceException";
|
|
3
3
|
/**
|
|
4
|
-
* @public
|
|
5
4
|
* <p>You do not have sufficient access to perform this action.</p>
|
|
5
|
+
* @public
|
|
6
6
|
*/
|
|
7
7
|
export declare class AccessDeniedException extends __BaseException {
|
|
8
8
|
readonly name: "AccessDeniedException";
|
|
@@ -18,21 +18,21 @@ export declare class AccessDeniedException extends __BaseException {
|
|
|
18
18
|
*/
|
|
19
19
|
export interface CompleteAttachmentUploadRequest {
|
|
20
20
|
/**
|
|
21
|
-
* @public
|
|
22
21
|
* <p>A list of unique identifiers for the attachments.</p>
|
|
22
|
+
* @public
|
|
23
23
|
*/
|
|
24
24
|
AttachmentIds: string[] | undefined;
|
|
25
25
|
/**
|
|
26
|
-
* @public
|
|
27
26
|
* <p>A unique, case-sensitive identifier that you provide to ensure the idempotency of the
|
|
28
27
|
* request. If not provided, the Amazon Web Services
|
|
29
28
|
* SDK populates this field. For more information about idempotency, see
|
|
30
29
|
* <a href="https://aws.amazon.com/builders-library/making-retries-safe-with-idempotent-APIs/">Making retries safe with idempotent APIs</a>.</p>
|
|
30
|
+
* @public
|
|
31
31
|
*/
|
|
32
32
|
ClientToken?: string;
|
|
33
33
|
/**
|
|
34
|
-
* @public
|
|
35
34
|
* <p>The authentication token associated with the participant's connection.</p>
|
|
35
|
+
* @public
|
|
36
36
|
*/
|
|
37
37
|
ConnectionToken: string | undefined;
|
|
38
38
|
}
|
|
@@ -42,9 +42,9 @@ export interface CompleteAttachmentUploadRequest {
|
|
|
42
42
|
export interface CompleteAttachmentUploadResponse {
|
|
43
43
|
}
|
|
44
44
|
/**
|
|
45
|
-
* @public
|
|
46
45
|
* <p>The requested operation conflicts with the current state of a service
|
|
47
46
|
* resource associated with the request. </p>
|
|
47
|
+
* @public
|
|
48
48
|
*/
|
|
49
49
|
export declare class ConflictException extends __BaseException {
|
|
50
50
|
readonly name: "ConflictException";
|
|
@@ -56,8 +56,8 @@ export declare class ConflictException extends __BaseException {
|
|
|
56
56
|
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
57
57
|
}
|
|
58
58
|
/**
|
|
59
|
-
* @public
|
|
60
59
|
* <p>This exception occurs when there is an internal failure in the Amazon Connect service.</p>
|
|
60
|
+
* @public
|
|
61
61
|
*/
|
|
62
62
|
export declare class InternalServerException extends __BaseException {
|
|
63
63
|
readonly name: "InternalServerException";
|
|
@@ -69,8 +69,8 @@ export declare class InternalServerException extends __BaseException {
|
|
|
69
69
|
constructor(opts: __ExceptionOptionType<InternalServerException, __BaseException>);
|
|
70
70
|
}
|
|
71
71
|
/**
|
|
72
|
-
* @public
|
|
73
72
|
* <p>The number of attachments per contact exceeds the quota.</p>
|
|
73
|
+
* @public
|
|
74
74
|
*/
|
|
75
75
|
export declare class ServiceQuotaExceededException extends __BaseException {
|
|
76
76
|
readonly name: "ServiceQuotaExceededException";
|
|
@@ -82,8 +82,8 @@ export declare class ServiceQuotaExceededException extends __BaseException {
|
|
|
82
82
|
constructor(opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>);
|
|
83
83
|
}
|
|
84
84
|
/**
|
|
85
|
-
* @public
|
|
86
85
|
* <p>The request was denied due to request throttling.</p>
|
|
86
|
+
* @public
|
|
87
87
|
*/
|
|
88
88
|
export declare class ThrottlingException extends __BaseException {
|
|
89
89
|
readonly name: "ThrottlingException";
|
|
@@ -95,8 +95,8 @@ export declare class ThrottlingException extends __BaseException {
|
|
|
95
95
|
constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
|
|
96
96
|
}
|
|
97
97
|
/**
|
|
98
|
-
* @public
|
|
99
98
|
* <p>The input fails to satisfy the constraints specified by Amazon Connect.</p>
|
|
99
|
+
* @public
|
|
100
100
|
*/
|
|
101
101
|
export declare class ValidationException extends __BaseException {
|
|
102
102
|
readonly name: "ValidationException";
|
|
@@ -124,60 +124,60 @@ export type ConnectionType = (typeof ConnectionType)[keyof typeof ConnectionType
|
|
|
124
124
|
*/
|
|
125
125
|
export interface CreateParticipantConnectionRequest {
|
|
126
126
|
/**
|
|
127
|
-
* @public
|
|
128
127
|
* <p>Type of connection information required. If you need
|
|
129
128
|
* <code>CONNECTION_CREDENTIALS</code> along with marking participant as connected,
|
|
130
129
|
* pass <code>CONNECTION_CREDENTIALS</code> in <code>Type</code>.</p>
|
|
130
|
+
* @public
|
|
131
131
|
*/
|
|
132
132
|
Type?: ConnectionType[];
|
|
133
133
|
/**
|
|
134
|
-
* @public
|
|
135
134
|
* <p>This is a header parameter.</p>
|
|
136
135
|
* <p>The ParticipantToken as obtained from <a href="https://docs.aws.amazon.com/connect/latest/APIReference/API_StartChatContact.html">StartChatContact</a>
|
|
137
136
|
* API response.</p>
|
|
137
|
+
* @public
|
|
138
138
|
*/
|
|
139
139
|
ParticipantToken: string | undefined;
|
|
140
140
|
/**
|
|
141
|
-
* @public
|
|
142
141
|
* <p>Amazon Connect Participant is used to mark the participant as connected for customer
|
|
143
142
|
* participant in message streaming, as well as for agent or manager participant in
|
|
144
143
|
* non-streaming chats.</p>
|
|
144
|
+
* @public
|
|
145
145
|
*/
|
|
146
146
|
ConnectParticipant?: boolean;
|
|
147
147
|
}
|
|
148
148
|
/**
|
|
149
|
-
* @public
|
|
150
149
|
* <p>Connection credentials. </p>
|
|
150
|
+
* @public
|
|
151
151
|
*/
|
|
152
152
|
export interface ConnectionCredentials {
|
|
153
153
|
/**
|
|
154
|
-
* @public
|
|
155
154
|
* <p>The connection token.</p>
|
|
155
|
+
* @public
|
|
156
156
|
*/
|
|
157
157
|
ConnectionToken?: string;
|
|
158
158
|
/**
|
|
159
|
-
* @public
|
|
160
159
|
* <p>The expiration of the token.</p>
|
|
161
160
|
* <p>It's specified in ISO 8601 format: yyyy-MM-ddThh:mm:ss.SSSZ. For example,
|
|
162
161
|
* 2019-11-08T02:41:28.172Z.</p>
|
|
162
|
+
* @public
|
|
163
163
|
*/
|
|
164
164
|
Expiry?: string;
|
|
165
165
|
}
|
|
166
166
|
/**
|
|
167
|
-
* @public
|
|
168
167
|
* <p>The websocket for the participant's connection.</p>
|
|
168
|
+
* @public
|
|
169
169
|
*/
|
|
170
170
|
export interface Websocket {
|
|
171
171
|
/**
|
|
172
|
-
* @public
|
|
173
172
|
* <p>The URL of the websocket.</p>
|
|
173
|
+
* @public
|
|
174
174
|
*/
|
|
175
175
|
Url?: string;
|
|
176
176
|
/**
|
|
177
|
-
* @public
|
|
178
177
|
* <p>The URL expiration timestamp in ISO date format.</p>
|
|
179
178
|
* <p>It's specified in ISO 8601 format: yyyy-MM-ddThh:mm:ss.SSSZ. For example,
|
|
180
179
|
* 2019-11-08T02:41:28.172Z.</p>
|
|
180
|
+
* @public
|
|
181
181
|
*/
|
|
182
182
|
ConnectionExpiry?: string;
|
|
183
183
|
}
|
|
@@ -186,14 +186,14 @@ export interface Websocket {
|
|
|
186
186
|
*/
|
|
187
187
|
export interface CreateParticipantConnectionResponse {
|
|
188
188
|
/**
|
|
189
|
-
* @public
|
|
190
189
|
* <p>Creates the participant's websocket connection.</p>
|
|
190
|
+
* @public
|
|
191
191
|
*/
|
|
192
192
|
Websocket?: Websocket;
|
|
193
193
|
/**
|
|
194
|
-
* @public
|
|
195
194
|
* <p>Creates the participant's connection credentials. The authentication token associated
|
|
196
195
|
* with the participant's connection.</p>
|
|
196
|
+
* @public
|
|
197
197
|
*/
|
|
198
198
|
ConnectionCredentials?: ConnectionCredentials;
|
|
199
199
|
}
|
|
@@ -202,70 +202,70 @@ export interface CreateParticipantConnectionResponse {
|
|
|
202
202
|
*/
|
|
203
203
|
export interface DescribeViewRequest {
|
|
204
204
|
/**
|
|
205
|
-
* @public
|
|
206
205
|
* <p>An encrypted token originating from the interactive message of a ShowView block
|
|
207
206
|
* operation. Represents the desired view.</p>
|
|
207
|
+
* @public
|
|
208
208
|
*/
|
|
209
209
|
ViewToken: string | undefined;
|
|
210
210
|
/**
|
|
211
|
-
* @public
|
|
212
211
|
* <p>The connection token.</p>
|
|
212
|
+
* @public
|
|
213
213
|
*/
|
|
214
214
|
ConnectionToken: string | undefined;
|
|
215
215
|
}
|
|
216
216
|
/**
|
|
217
|
-
* @public
|
|
218
217
|
* <p>View content containing all content necessary to render a view except for runtime
|
|
219
218
|
* input data.</p>
|
|
219
|
+
* @public
|
|
220
220
|
*/
|
|
221
221
|
export interface ViewContent {
|
|
222
222
|
/**
|
|
223
|
-
* @public
|
|
224
223
|
* <p>The schema representing the input data that the view template must be supplied to
|
|
225
224
|
* render.</p>
|
|
225
|
+
* @public
|
|
226
226
|
*/
|
|
227
227
|
InputSchema?: string;
|
|
228
228
|
/**
|
|
229
|
-
* @public
|
|
230
229
|
* <p>The view template representing the structure of the view.</p>
|
|
230
|
+
* @public
|
|
231
231
|
*/
|
|
232
232
|
Template?: string;
|
|
233
233
|
/**
|
|
234
|
-
* @public
|
|
235
234
|
* <p>A list of actions possible from the view</p>
|
|
235
|
+
* @public
|
|
236
236
|
*/
|
|
237
237
|
Actions?: string[];
|
|
238
238
|
}
|
|
239
239
|
/**
|
|
240
|
-
* @public
|
|
241
240
|
* <p>A view resource object. Contains metadata and content necessary to render the
|
|
242
241
|
* view.</p>
|
|
242
|
+
* @public
|
|
243
243
|
*/
|
|
244
244
|
export interface View {
|
|
245
245
|
/**
|
|
246
|
-
* @public
|
|
247
246
|
* <p>The identifier of the view.</p>
|
|
247
|
+
* @public
|
|
248
248
|
*/
|
|
249
249
|
Id?: string;
|
|
250
250
|
/**
|
|
251
|
-
* @public
|
|
252
251
|
* <p>The Amazon Resource Name (ARN) of the view.</p>
|
|
252
|
+
* @public
|
|
253
253
|
*/
|
|
254
254
|
Arn?: string;
|
|
255
255
|
/**
|
|
256
|
-
* @public
|
|
257
256
|
* <p>The name of the view.</p>
|
|
257
|
+
* @public
|
|
258
258
|
*/
|
|
259
259
|
Name?: string;
|
|
260
260
|
/**
|
|
261
|
-
* @public
|
|
262
261
|
* <p>The current version of the view.</p>
|
|
262
|
+
* @public
|
|
263
263
|
*/
|
|
264
264
|
Version?: number;
|
|
265
265
|
/**
|
|
266
|
-
* @public
|
|
267
266
|
* <p>View content containing all content necessary to render a view except for runtime
|
|
268
267
|
* input data.</p>
|
|
268
|
+
* @public
|
|
269
269
|
*/
|
|
270
270
|
Content?: ViewContent;
|
|
271
271
|
}
|
|
@@ -274,9 +274,9 @@ export interface View {
|
|
|
274
274
|
*/
|
|
275
275
|
export interface DescribeViewResponse {
|
|
276
276
|
/**
|
|
277
|
-
* @public
|
|
278
277
|
* <p>A view resource object. Contains metadata and content necessary to render the
|
|
279
278
|
* view.</p>
|
|
279
|
+
* @public
|
|
280
280
|
*/
|
|
281
281
|
View?: View;
|
|
282
282
|
}
|
|
@@ -299,21 +299,21 @@ export declare const ResourceType: {
|
|
|
299
299
|
*/
|
|
300
300
|
export type ResourceType = (typeof ResourceType)[keyof typeof ResourceType];
|
|
301
301
|
/**
|
|
302
|
-
* @public
|
|
303
302
|
* <p>The resource was not found.</p>
|
|
303
|
+
* @public
|
|
304
304
|
*/
|
|
305
305
|
export declare class ResourceNotFoundException extends __BaseException {
|
|
306
306
|
readonly name: "ResourceNotFoundException";
|
|
307
307
|
readonly $fault: "client";
|
|
308
308
|
Message?: string;
|
|
309
309
|
/**
|
|
310
|
-
* @public
|
|
311
310
|
* <p>The identifier of the resource.</p>
|
|
311
|
+
* @public
|
|
312
312
|
*/
|
|
313
313
|
ResourceId?: string;
|
|
314
314
|
/**
|
|
315
|
-
* @public
|
|
316
315
|
* <p>The type of Amazon Connect resource.</p>
|
|
316
|
+
* @public
|
|
317
317
|
*/
|
|
318
318
|
ResourceType?: ResourceType;
|
|
319
319
|
/**
|
|
@@ -326,16 +326,16 @@ export declare class ResourceNotFoundException extends __BaseException {
|
|
|
326
326
|
*/
|
|
327
327
|
export interface DisconnectParticipantRequest {
|
|
328
328
|
/**
|
|
329
|
-
* @public
|
|
330
329
|
* <p>A unique, case-sensitive identifier that you provide to ensure the idempotency of the
|
|
331
330
|
* request. If not provided, the Amazon Web Services
|
|
332
331
|
* SDK populates this field. For more information about idempotency, see
|
|
333
332
|
* <a href="https://aws.amazon.com/builders-library/making-retries-safe-with-idempotent-APIs/">Making retries safe with idempotent APIs</a>.</p>
|
|
333
|
+
* @public
|
|
334
334
|
*/
|
|
335
335
|
ClientToken?: string;
|
|
336
336
|
/**
|
|
337
|
-
* @public
|
|
338
337
|
* <p>The authentication token associated with the participant's connection.</p>
|
|
338
|
+
* @public
|
|
339
339
|
*/
|
|
340
340
|
ConnectionToken: string | undefined;
|
|
341
341
|
}
|
|
@@ -349,13 +349,13 @@ export interface DisconnectParticipantResponse {
|
|
|
349
349
|
*/
|
|
350
350
|
export interface GetAttachmentRequest {
|
|
351
351
|
/**
|
|
352
|
-
* @public
|
|
353
352
|
* <p>A unique identifier for the attachment.</p>
|
|
353
|
+
* @public
|
|
354
354
|
*/
|
|
355
355
|
AttachmentId: string | undefined;
|
|
356
356
|
/**
|
|
357
|
-
* @public
|
|
358
357
|
* <p>The authentication token associated with the participant's connection.</p>
|
|
358
|
+
* @public
|
|
359
359
|
*/
|
|
360
360
|
ConnectionToken: string | undefined;
|
|
361
361
|
}
|
|
@@ -364,14 +364,14 @@ export interface GetAttachmentRequest {
|
|
|
364
364
|
*/
|
|
365
365
|
export interface GetAttachmentResponse {
|
|
366
366
|
/**
|
|
367
|
-
* @public
|
|
368
367
|
* <p>This is the pre-signed URL that can be used for uploading the file to Amazon S3 when used in response
|
|
369
368
|
* to <a href="https://docs.aws.amazon.com/connect-participant/latest/APIReference/API_StartAttachmentUpload.html">StartAttachmentUpload</a>.</p>
|
|
369
|
+
* @public
|
|
370
370
|
*/
|
|
371
371
|
Url?: string;
|
|
372
372
|
/**
|
|
373
|
-
* @public
|
|
374
373
|
* <p>The expiration time of the URL in ISO timestamp. It's specified in ISO 8601 format: yyyy-MM-ddThh:mm:ss.SSSZ. For example, 2019-11-08T02:41:28.172Z.</p>
|
|
374
|
+
* @public
|
|
375
375
|
*/
|
|
376
376
|
UrlExpiry?: string;
|
|
377
377
|
}
|
|
@@ -400,26 +400,26 @@ export declare const SortKey: {
|
|
|
400
400
|
*/
|
|
401
401
|
export type SortKey = (typeof SortKey)[keyof typeof SortKey];
|
|
402
402
|
/**
|
|
403
|
-
* @public
|
|
404
403
|
* <p>A filtering option for where to start. For example, if you sent 100 messages, start
|
|
405
404
|
* with message 50. </p>
|
|
405
|
+
* @public
|
|
406
406
|
*/
|
|
407
407
|
export interface StartPosition {
|
|
408
408
|
/**
|
|
409
|
-
* @public
|
|
410
409
|
* <p>The ID of the message or event where to start. </p>
|
|
410
|
+
* @public
|
|
411
411
|
*/
|
|
412
412
|
Id?: string;
|
|
413
413
|
/**
|
|
414
|
-
* @public
|
|
415
414
|
* <p>The time in ISO format where to start.</p>
|
|
416
415
|
* <p>It's specified in ISO 8601 format: yyyy-MM-ddThh:mm:ss.SSSZ. For example,
|
|
417
416
|
* 2019-11-08T02:41:28.172Z.</p>
|
|
417
|
+
* @public
|
|
418
418
|
*/
|
|
419
419
|
AbsoluteTime?: string;
|
|
420
420
|
/**
|
|
421
|
-
* @public
|
|
422
421
|
* <p>The start position of the most recent message where you want to start. </p>
|
|
422
|
+
* @public
|
|
423
423
|
*/
|
|
424
424
|
MostRecent?: number;
|
|
425
425
|
}
|
|
@@ -428,40 +428,40 @@ export interface StartPosition {
|
|
|
428
428
|
*/
|
|
429
429
|
export interface GetTranscriptRequest {
|
|
430
430
|
/**
|
|
431
|
-
* @public
|
|
432
431
|
* <p>The contactId from the current contact chain for which transcript is needed.</p>
|
|
432
|
+
* @public
|
|
433
433
|
*/
|
|
434
434
|
ContactId?: string;
|
|
435
435
|
/**
|
|
436
|
-
* @public
|
|
437
436
|
* <p>The maximum number of results to return in the page. Default: 10. </p>
|
|
437
|
+
* @public
|
|
438
438
|
*/
|
|
439
439
|
MaxResults?: number;
|
|
440
440
|
/**
|
|
441
|
-
* @public
|
|
442
441
|
* <p>The pagination token. Use the value returned previously in the next subsequent request
|
|
443
442
|
* to retrieve the next set of results.</p>
|
|
443
|
+
* @public
|
|
444
444
|
*/
|
|
445
445
|
NextToken?: string;
|
|
446
446
|
/**
|
|
447
|
-
* @public
|
|
448
447
|
* <p>The direction from StartPosition from which to retrieve message. Default: BACKWARD
|
|
449
448
|
* when no StartPosition is provided, FORWARD with StartPosition. </p>
|
|
449
|
+
* @public
|
|
450
450
|
*/
|
|
451
451
|
ScanDirection?: ScanDirection;
|
|
452
452
|
/**
|
|
453
|
-
* @public
|
|
454
453
|
* <p>The sort order for the records. Default: DESCENDING.</p>
|
|
454
|
+
* @public
|
|
455
455
|
*/
|
|
456
456
|
SortOrder?: SortKey;
|
|
457
457
|
/**
|
|
458
|
-
* @public
|
|
459
458
|
* <p>A filtering option for where to start.</p>
|
|
459
|
+
* @public
|
|
460
460
|
*/
|
|
461
461
|
StartPosition?: StartPosition;
|
|
462
462
|
/**
|
|
463
|
-
* @public
|
|
464
463
|
* <p>The authentication token associated with the participant's connection.</p>
|
|
464
|
+
* @public
|
|
465
465
|
*/
|
|
466
466
|
ConnectionToken: string | undefined;
|
|
467
467
|
}
|
|
@@ -479,66 +479,66 @@ export declare const ArtifactStatus: {
|
|
|
479
479
|
*/
|
|
480
480
|
export type ArtifactStatus = (typeof ArtifactStatus)[keyof typeof ArtifactStatus];
|
|
481
481
|
/**
|
|
482
|
-
* @public
|
|
483
482
|
* <p>The case-insensitive input to indicate standard MIME type that describes the format of the file
|
|
484
483
|
* that will be uploaded.</p>
|
|
484
|
+
* @public
|
|
485
485
|
*/
|
|
486
486
|
export interface AttachmentItem {
|
|
487
487
|
/**
|
|
488
|
-
* @public
|
|
489
488
|
* <p>Describes the MIME file type of the attachment. For a list of supported file types, see <a href="https://docs.aws.amazon.com/connect/latest/adminguide/feature-limits.html">Feature specifications</a> in the <i>Amazon Connect Administrator Guide</i>.</p>
|
|
489
|
+
* @public
|
|
490
490
|
*/
|
|
491
491
|
ContentType?: string;
|
|
492
492
|
/**
|
|
493
|
-
* @public
|
|
494
493
|
* <p>A unique identifier for the attachment.</p>
|
|
494
|
+
* @public
|
|
495
495
|
*/
|
|
496
496
|
AttachmentId?: string;
|
|
497
497
|
/**
|
|
498
|
-
* @public
|
|
499
498
|
* <p>A case-sensitive name of the attachment being uploaded.</p>
|
|
499
|
+
* @public
|
|
500
500
|
*/
|
|
501
501
|
AttachmentName?: string;
|
|
502
502
|
/**
|
|
503
|
-
* @public
|
|
504
503
|
* <p>Status of the attachment.</p>
|
|
504
|
+
* @public
|
|
505
505
|
*/
|
|
506
506
|
Status?: ArtifactStatus;
|
|
507
507
|
}
|
|
508
508
|
/**
|
|
509
|
-
* @public
|
|
510
509
|
* <p>The receipt for the message delivered to the recipient.</p>
|
|
510
|
+
* @public
|
|
511
511
|
*/
|
|
512
512
|
export interface Receipt {
|
|
513
513
|
/**
|
|
514
|
-
* @public
|
|
515
514
|
* <p>The time when the message was delivered to the recipient.</p>
|
|
515
|
+
* @public
|
|
516
516
|
*/
|
|
517
517
|
DeliveredTimestamp?: string;
|
|
518
518
|
/**
|
|
519
|
-
* @public
|
|
520
519
|
* <p>The time when the message was read by the recipient.</p>
|
|
520
|
+
* @public
|
|
521
521
|
*/
|
|
522
522
|
ReadTimestamp?: string;
|
|
523
523
|
/**
|
|
524
|
-
* @public
|
|
525
524
|
* <p>The identifier of the recipient of the message. </p>
|
|
525
|
+
* @public
|
|
526
526
|
*/
|
|
527
527
|
RecipientParticipantId?: string;
|
|
528
528
|
}
|
|
529
529
|
/**
|
|
530
|
-
* @public
|
|
531
530
|
* <p>Contains metadata related to a message.</p>
|
|
531
|
+
* @public
|
|
532
532
|
*/
|
|
533
533
|
export interface MessageMetadata {
|
|
534
534
|
/**
|
|
535
|
-
* @public
|
|
536
535
|
* <p>The identifier of the message that contains the metadata information. </p>
|
|
536
|
+
* @public
|
|
537
537
|
*/
|
|
538
538
|
MessageId?: string;
|
|
539
539
|
/**
|
|
540
|
-
* @public
|
|
541
540
|
* <p>The list of receipt information for a message for different recipients.</p>
|
|
541
|
+
* @public
|
|
542
542
|
*/
|
|
543
543
|
Receipts?: Receipt[];
|
|
544
544
|
}
|
|
@@ -580,75 +580,75 @@ export declare const ChatItemType: {
|
|
|
580
580
|
*/
|
|
581
581
|
export type ChatItemType = (typeof ChatItemType)[keyof typeof ChatItemType];
|
|
582
582
|
/**
|
|
583
|
-
* @public
|
|
584
583
|
* <p>An item - message or event - that has been sent. </p>
|
|
584
|
+
* @public
|
|
585
585
|
*/
|
|
586
586
|
export interface Item {
|
|
587
587
|
/**
|
|
588
|
-
* @public
|
|
589
588
|
* <p>The time when the message or event was sent.</p>
|
|
590
589
|
* <p>It's specified in ISO 8601 format: yyyy-MM-ddThh:mm:ss.SSSZ. For example,
|
|
591
590
|
* 2019-11-08T02:41:28.172Z.</p>
|
|
591
|
+
* @public
|
|
592
592
|
*/
|
|
593
593
|
AbsoluteTime?: string;
|
|
594
594
|
/**
|
|
595
|
-
* @public
|
|
596
595
|
* <p>The content of the message or event.</p>
|
|
596
|
+
* @public
|
|
597
597
|
*/
|
|
598
598
|
Content?: string;
|
|
599
599
|
/**
|
|
600
|
-
* @public
|
|
601
600
|
* <p>The type of content of the item.</p>
|
|
601
|
+
* @public
|
|
602
602
|
*/
|
|
603
603
|
ContentType?: string;
|
|
604
604
|
/**
|
|
605
|
-
* @public
|
|
606
605
|
* <p>The ID of the item.</p>
|
|
606
|
+
* @public
|
|
607
607
|
*/
|
|
608
608
|
Id?: string;
|
|
609
609
|
/**
|
|
610
|
-
* @public
|
|
611
610
|
* <p>Type of the item: message or event. </p>
|
|
611
|
+
* @public
|
|
612
612
|
*/
|
|
613
613
|
Type?: ChatItemType;
|
|
614
614
|
/**
|
|
615
|
-
* @public
|
|
616
615
|
* <p>The ID of the sender in the session.</p>
|
|
616
|
+
* @public
|
|
617
617
|
*/
|
|
618
618
|
ParticipantId?: string;
|
|
619
619
|
/**
|
|
620
|
-
* @public
|
|
621
620
|
* <p>The chat display name of the sender.</p>
|
|
621
|
+
* @public
|
|
622
622
|
*/
|
|
623
623
|
DisplayName?: string;
|
|
624
624
|
/**
|
|
625
|
-
* @public
|
|
626
625
|
* <p>The role of the sender. For example, is it a customer, agent, or system.</p>
|
|
626
|
+
* @public
|
|
627
627
|
*/
|
|
628
628
|
ParticipantRole?: ParticipantRole;
|
|
629
629
|
/**
|
|
630
|
-
* @public
|
|
631
630
|
* <p>Provides information about the attachments.</p>
|
|
631
|
+
* @public
|
|
632
632
|
*/
|
|
633
633
|
Attachments?: AttachmentItem[];
|
|
634
634
|
/**
|
|
635
|
-
* @public
|
|
636
635
|
* <p>The metadata related to the message. Currently this supports only information related
|
|
637
636
|
* to message receipts.</p>
|
|
637
|
+
* @public
|
|
638
638
|
*/
|
|
639
639
|
MessageMetadata?: MessageMetadata;
|
|
640
640
|
/**
|
|
641
|
-
* @public
|
|
642
641
|
* <p>The contactId on which the transcript item was originally sent. This field is only
|
|
643
642
|
* populated for persistent chats when the transcript item is from the past chat session.
|
|
644
643
|
* For more information, see <a href="https://docs.aws.amazon.com/connect/latest/adminguide/chat-persistence.html">Enable persistent
|
|
645
644
|
* chat</a>.</p>
|
|
645
|
+
* @public
|
|
646
646
|
*/
|
|
647
647
|
RelatedContactId?: string;
|
|
648
648
|
/**
|
|
649
|
-
* @public
|
|
650
649
|
* <p>The contactId on which the transcript item was originally sent. This field is
|
|
651
650
|
* populated only when the transcript item is from the current chat session.</p>
|
|
651
|
+
* @public
|
|
652
652
|
*/
|
|
653
653
|
ContactId?: string;
|
|
654
654
|
}
|
|
@@ -657,19 +657,19 @@ export interface Item {
|
|
|
657
657
|
*/
|
|
658
658
|
export interface GetTranscriptResponse {
|
|
659
659
|
/**
|
|
660
|
-
* @public
|
|
661
660
|
* <p>The initial contact ID for the contact. </p>
|
|
661
|
+
* @public
|
|
662
662
|
*/
|
|
663
663
|
InitialContactId?: string;
|
|
664
664
|
/**
|
|
665
|
-
* @public
|
|
666
665
|
* <p>The list of messages in the session.</p>
|
|
666
|
+
* @public
|
|
667
667
|
*/
|
|
668
668
|
Transcript?: Item[];
|
|
669
669
|
/**
|
|
670
|
-
* @public
|
|
671
670
|
* <p>The pagination token. Use the value returned previously in the next subsequent request
|
|
672
671
|
* to retrieve the next set of results.</p>
|
|
672
|
+
* @public
|
|
673
673
|
*/
|
|
674
674
|
NextToken?: string;
|
|
675
675
|
}
|
|
@@ -678,7 +678,6 @@ export interface GetTranscriptResponse {
|
|
|
678
678
|
*/
|
|
679
679
|
export interface SendEventRequest {
|
|
680
680
|
/**
|
|
681
|
-
* @public
|
|
682
681
|
* <p>The content type of the request. Supported types are:</p>
|
|
683
682
|
* <ul>
|
|
684
683
|
* <li>
|
|
@@ -695,26 +694,27 @@ export interface SendEventRequest {
|
|
|
695
694
|
* <p>application/vnd.amazonaws.connect.event.message.read</p>
|
|
696
695
|
* </li>
|
|
697
696
|
* </ul>
|
|
697
|
+
* @public
|
|
698
698
|
*/
|
|
699
699
|
ContentType: string | undefined;
|
|
700
700
|
/**
|
|
701
|
-
* @public
|
|
702
701
|
* <p>The content of the event to be sent (for example, message text). For content related
|
|
703
702
|
* to message receipts, this is supported in the form of a JSON string.</p>
|
|
704
703
|
* <p>Sample Content: "\{\"messageId\":\"11111111-aaaa-bbbb-cccc-EXAMPLE01234\"\}"</p>
|
|
704
|
+
* @public
|
|
705
705
|
*/
|
|
706
706
|
Content?: string;
|
|
707
707
|
/**
|
|
708
|
-
* @public
|
|
709
708
|
* <p>A unique, case-sensitive identifier that you provide to ensure the idempotency of the
|
|
710
709
|
* request. If not provided, the Amazon Web Services
|
|
711
710
|
* SDK populates this field. For more information about idempotency, see
|
|
712
711
|
* <a href="https://aws.amazon.com/builders-library/making-retries-safe-with-idempotent-APIs/">Making retries safe with idempotent APIs</a>.</p>
|
|
712
|
+
* @public
|
|
713
713
|
*/
|
|
714
714
|
ClientToken?: string;
|
|
715
715
|
/**
|
|
716
|
-
* @public
|
|
717
716
|
* <p>The authentication token associated with the participant's connection.</p>
|
|
717
|
+
* @public
|
|
718
718
|
*/
|
|
719
719
|
ConnectionToken: string | undefined;
|
|
720
720
|
}
|
|
@@ -723,15 +723,15 @@ export interface SendEventRequest {
|
|
|
723
723
|
*/
|
|
724
724
|
export interface SendEventResponse {
|
|
725
725
|
/**
|
|
726
|
-
* @public
|
|
727
726
|
* <p>The ID of the response.</p>
|
|
727
|
+
* @public
|
|
728
728
|
*/
|
|
729
729
|
Id?: string;
|
|
730
730
|
/**
|
|
731
|
-
* @public
|
|
732
731
|
* <p>The time when the event was sent.</p>
|
|
733
732
|
* <p>It's specified in ISO 8601 format: yyyy-MM-ddThh:mm:ss.SSSZ. For example,
|
|
734
733
|
* 2019-11-08T02:41:28.172Z.</p>
|
|
734
|
+
* @public
|
|
735
735
|
*/
|
|
736
736
|
AbsoluteTime?: string;
|
|
737
737
|
}
|
|
@@ -740,14 +740,13 @@ export interface SendEventResponse {
|
|
|
740
740
|
*/
|
|
741
741
|
export interface SendMessageRequest {
|
|
742
742
|
/**
|
|
743
|
-
* @public
|
|
744
743
|
* <p>The type of the content. Supported types are <code>text/plain</code>,
|
|
745
744
|
* <code>text/markdown</code>, <code>application/json</code>, and
|
|
746
745
|
* <code>application/vnd.amazonaws.connect.message.interactive.response</code>.</p>
|
|
746
|
+
* @public
|
|
747
747
|
*/
|
|
748
748
|
ContentType: string | undefined;
|
|
749
749
|
/**
|
|
750
|
-
* @public
|
|
751
750
|
* <p>The content of the message. </p>
|
|
752
751
|
* <ul>
|
|
753
752
|
* <li>
|
|
@@ -764,19 +763,20 @@ export interface SendMessageRequest {
|
|
|
764
763
|
* the Length Constraints are Minimum of 1, Maximum of 12288.</p>
|
|
765
764
|
* </li>
|
|
766
765
|
* </ul>
|
|
766
|
+
* @public
|
|
767
767
|
*/
|
|
768
768
|
Content: string | undefined;
|
|
769
769
|
/**
|
|
770
|
-
* @public
|
|
771
770
|
* <p>A unique, case-sensitive identifier that you provide to ensure the idempotency of the
|
|
772
771
|
* request. If not provided, the Amazon Web Services
|
|
773
772
|
* SDK populates this field. For more information about idempotency, see
|
|
774
773
|
* <a href="https://aws.amazon.com/builders-library/making-retries-safe-with-idempotent-APIs/">Making retries safe with idempotent APIs</a>.</p>
|
|
774
|
+
* @public
|
|
775
775
|
*/
|
|
776
776
|
ClientToken?: string;
|
|
777
777
|
/**
|
|
778
|
-
* @public
|
|
779
778
|
* <p>The authentication token associated with the connection.</p>
|
|
779
|
+
* @public
|
|
780
780
|
*/
|
|
781
781
|
ConnectionToken: string | undefined;
|
|
782
782
|
}
|
|
@@ -785,15 +785,15 @@ export interface SendMessageRequest {
|
|
|
785
785
|
*/
|
|
786
786
|
export interface SendMessageResponse {
|
|
787
787
|
/**
|
|
788
|
-
* @public
|
|
789
788
|
* <p>The ID of the message.</p>
|
|
789
|
+
* @public
|
|
790
790
|
*/
|
|
791
791
|
Id?: string;
|
|
792
792
|
/**
|
|
793
|
-
* @public
|
|
794
793
|
* <p>The time when the message was sent.</p>
|
|
795
794
|
* <p>It's specified in ISO 8601 format: yyyy-MM-ddThh:mm:ss.SSSZ. For example,
|
|
796
795
|
* 2019-11-08T02:41:28.172Z.</p>
|
|
796
|
+
* @public
|
|
797
797
|
*/
|
|
798
798
|
AbsoluteTime?: string;
|
|
799
799
|
}
|
|
@@ -802,53 +802,53 @@ export interface SendMessageResponse {
|
|
|
802
802
|
*/
|
|
803
803
|
export interface StartAttachmentUploadRequest {
|
|
804
804
|
/**
|
|
805
|
-
* @public
|
|
806
805
|
* <p>Describes the MIME file type of the attachment. For a list of supported file types, see <a href="https://docs.aws.amazon.com/connect/latest/adminguide/feature-limits.html">Feature specifications</a> in the <i>Amazon Connect Administrator Guide</i>.</p>
|
|
806
|
+
* @public
|
|
807
807
|
*/
|
|
808
808
|
ContentType: string | undefined;
|
|
809
809
|
/**
|
|
810
|
-
* @public
|
|
811
810
|
* <p>The size of the attachment in bytes.</p>
|
|
811
|
+
* @public
|
|
812
812
|
*/
|
|
813
813
|
AttachmentSizeInBytes: number | undefined;
|
|
814
814
|
/**
|
|
815
|
-
* @public
|
|
816
815
|
* <p>A case-sensitive name of the attachment being uploaded.</p>
|
|
816
|
+
* @public
|
|
817
817
|
*/
|
|
818
818
|
AttachmentName: string | undefined;
|
|
819
819
|
/**
|
|
820
|
-
* @public
|
|
821
820
|
* <p>A unique, case-sensitive identifier that you provide to ensure the idempotency of the
|
|
822
821
|
* request. If not provided, the Amazon Web Services
|
|
823
822
|
* SDK populates this field. For more information about idempotency, see
|
|
824
823
|
* <a href="https://aws.amazon.com/builders-library/making-retries-safe-with-idempotent-APIs/">Making retries safe with idempotent APIs</a>.</p>
|
|
824
|
+
* @public
|
|
825
825
|
*/
|
|
826
826
|
ClientToken?: string;
|
|
827
827
|
/**
|
|
828
|
-
* @public
|
|
829
828
|
* <p>The authentication token associated with the participant's connection.</p>
|
|
829
|
+
* @public
|
|
830
830
|
*/
|
|
831
831
|
ConnectionToken: string | undefined;
|
|
832
832
|
}
|
|
833
833
|
/**
|
|
834
|
-
* @public
|
|
835
834
|
* <p>Fields to be used while uploading the attachment.</p>
|
|
835
|
+
* @public
|
|
836
836
|
*/
|
|
837
837
|
export interface UploadMetadata {
|
|
838
838
|
/**
|
|
839
|
-
* @public
|
|
840
839
|
* <p>This is the pre-signed URL that can be used for uploading the file to Amazon S3 when used in response
|
|
841
840
|
* to <a href="https://docs.aws.amazon.com/connect-participant/latest/APIReference/API_StartAttachmentUpload.html">StartAttachmentUpload</a>.</p>
|
|
841
|
+
* @public
|
|
842
842
|
*/
|
|
843
843
|
Url?: string;
|
|
844
844
|
/**
|
|
845
|
-
* @public
|
|
846
845
|
* <p>The expiration time of the URL in ISO timestamp. It's specified in ISO 8601 format: yyyy-MM-ddThh:mm:ss.SSSZ. For example, 2019-11-08T02:41:28.172Z.</p>
|
|
846
|
+
* @public
|
|
847
847
|
*/
|
|
848
848
|
UrlExpiry?: string;
|
|
849
849
|
/**
|
|
850
|
-
* @public
|
|
851
850
|
* <p>The headers to be provided while uploading the file to the URL.</p>
|
|
851
|
+
* @public
|
|
852
852
|
*/
|
|
853
853
|
HeadersToInclude?: Record<string, string>;
|
|
854
854
|
}
|
|
@@ -857,13 +857,13 @@ export interface UploadMetadata {
|
|
|
857
857
|
*/
|
|
858
858
|
export interface StartAttachmentUploadResponse {
|
|
859
859
|
/**
|
|
860
|
-
* @public
|
|
861
860
|
* <p>A unique identifier for the attachment.</p>
|
|
861
|
+
* @public
|
|
862
862
|
*/
|
|
863
863
|
AttachmentId?: string;
|
|
864
864
|
/**
|
|
865
|
-
* @public
|
|
866
865
|
* <p>Fields to be used while uploading the attachment.</p>
|
|
866
|
+
* @public
|
|
867
867
|
*/
|
|
868
868
|
UploadMetadata?: UploadMetadata;
|
|
869
869
|
}
|
|
@@ -25,6 +25,15 @@ declare const CompleteAttachmentUploadCommand_base: {
|
|
|
25
25
|
ServiceInputTypes,
|
|
26
26
|
ServiceOutputTypes
|
|
27
27
|
>;
|
|
28
|
+
new (
|
|
29
|
+
__0_0: CompleteAttachmentUploadCommandInput
|
|
30
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
31
|
+
CompleteAttachmentUploadCommandInput,
|
|
32
|
+
CompleteAttachmentUploadCommandOutput,
|
|
33
|
+
ConnectParticipantClientResolvedConfig,
|
|
34
|
+
ServiceInputTypes,
|
|
35
|
+
ServiceOutputTypes
|
|
36
|
+
>;
|
|
28
37
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
29
38
|
};
|
|
30
39
|
export declare class CompleteAttachmentUploadCommand extends CompleteAttachmentUploadCommand_base {}
|
|
@@ -25,6 +25,15 @@ declare const CreateParticipantConnectionCommand_base: {
|
|
|
25
25
|
ServiceInputTypes,
|
|
26
26
|
ServiceOutputTypes
|
|
27
27
|
>;
|
|
28
|
+
new (
|
|
29
|
+
__0_0: CreateParticipantConnectionCommandInput
|
|
30
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
31
|
+
CreateParticipantConnectionCommandInput,
|
|
32
|
+
CreateParticipantConnectionCommandOutput,
|
|
33
|
+
ConnectParticipantClientResolvedConfig,
|
|
34
|
+
ServiceInputTypes,
|
|
35
|
+
ServiceOutputTypes
|
|
36
|
+
>;
|
|
28
37
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
29
38
|
};
|
|
30
39
|
export declare class CreateParticipantConnectionCommand extends CreateParticipantConnectionCommand_base {}
|
|
@@ -21,6 +21,15 @@ declare const DescribeViewCommand_base: {
|
|
|
21
21
|
ServiceInputTypes,
|
|
22
22
|
ServiceOutputTypes
|
|
23
23
|
>;
|
|
24
|
+
new (
|
|
25
|
+
__0_0: DescribeViewCommandInput
|
|
26
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
27
|
+
DescribeViewCommandInput,
|
|
28
|
+
DescribeViewCommandOutput,
|
|
29
|
+
ConnectParticipantClientResolvedConfig,
|
|
30
|
+
ServiceInputTypes,
|
|
31
|
+
ServiceOutputTypes
|
|
32
|
+
>;
|
|
24
33
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
25
34
|
};
|
|
26
35
|
export declare class DescribeViewCommand extends DescribeViewCommand_base {}
|
|
@@ -25,6 +25,15 @@ declare const DisconnectParticipantCommand_base: {
|
|
|
25
25
|
ServiceInputTypes,
|
|
26
26
|
ServiceOutputTypes
|
|
27
27
|
>;
|
|
28
|
+
new (
|
|
29
|
+
__0_0: DisconnectParticipantCommandInput
|
|
30
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
31
|
+
DisconnectParticipantCommandInput,
|
|
32
|
+
DisconnectParticipantCommandOutput,
|
|
33
|
+
ConnectParticipantClientResolvedConfig,
|
|
34
|
+
ServiceInputTypes,
|
|
35
|
+
ServiceOutputTypes
|
|
36
|
+
>;
|
|
28
37
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
29
38
|
};
|
|
30
39
|
export declare class DisconnectParticipantCommand extends DisconnectParticipantCommand_base {}
|
|
@@ -24,6 +24,15 @@ declare const GetAttachmentCommand_base: {
|
|
|
24
24
|
ServiceInputTypes,
|
|
25
25
|
ServiceOutputTypes
|
|
26
26
|
>;
|
|
27
|
+
new (
|
|
28
|
+
__0_0: GetAttachmentCommandInput
|
|
29
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
30
|
+
GetAttachmentCommandInput,
|
|
31
|
+
GetAttachmentCommandOutput,
|
|
32
|
+
ConnectParticipantClientResolvedConfig,
|
|
33
|
+
ServiceInputTypes,
|
|
34
|
+
ServiceOutputTypes
|
|
35
|
+
>;
|
|
27
36
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
37
|
};
|
|
29
38
|
export declare class GetAttachmentCommand extends GetAttachmentCommand_base {}
|
|
@@ -24,6 +24,15 @@ declare const GetTranscriptCommand_base: {
|
|
|
24
24
|
ServiceInputTypes,
|
|
25
25
|
ServiceOutputTypes
|
|
26
26
|
>;
|
|
27
|
+
new (
|
|
28
|
+
__0_0: GetTranscriptCommandInput
|
|
29
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
30
|
+
GetTranscriptCommandInput,
|
|
31
|
+
GetTranscriptCommandOutput,
|
|
32
|
+
ConnectParticipantClientResolvedConfig,
|
|
33
|
+
ServiceInputTypes,
|
|
34
|
+
ServiceOutputTypes
|
|
35
|
+
>;
|
|
27
36
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
37
|
};
|
|
29
38
|
export declare class GetTranscriptCommand extends GetTranscriptCommand_base {}
|
|
@@ -21,6 +21,15 @@ declare const SendEventCommand_base: {
|
|
|
21
21
|
ServiceInputTypes,
|
|
22
22
|
ServiceOutputTypes
|
|
23
23
|
>;
|
|
24
|
+
new (
|
|
25
|
+
__0_0: SendEventCommandInput
|
|
26
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
27
|
+
SendEventCommandInput,
|
|
28
|
+
SendEventCommandOutput,
|
|
29
|
+
ConnectParticipantClientResolvedConfig,
|
|
30
|
+
ServiceInputTypes,
|
|
31
|
+
ServiceOutputTypes
|
|
32
|
+
>;
|
|
24
33
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
25
34
|
};
|
|
26
35
|
export declare class SendEventCommand extends SendEventCommand_base {}
|
|
@@ -21,6 +21,15 @@ declare const SendMessageCommand_base: {
|
|
|
21
21
|
ServiceInputTypes,
|
|
22
22
|
ServiceOutputTypes
|
|
23
23
|
>;
|
|
24
|
+
new (
|
|
25
|
+
__0_0: SendMessageCommandInput
|
|
26
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
27
|
+
SendMessageCommandInput,
|
|
28
|
+
SendMessageCommandOutput,
|
|
29
|
+
ConnectParticipantClientResolvedConfig,
|
|
30
|
+
ServiceInputTypes,
|
|
31
|
+
ServiceOutputTypes
|
|
32
|
+
>;
|
|
24
33
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
25
34
|
};
|
|
26
35
|
export declare class SendMessageCommand extends SendMessageCommand_base {}
|
|
@@ -25,6 +25,15 @@ declare const StartAttachmentUploadCommand_base: {
|
|
|
25
25
|
ServiceInputTypes,
|
|
26
26
|
ServiceOutputTypes
|
|
27
27
|
>;
|
|
28
|
+
new (
|
|
29
|
+
__0_0: StartAttachmentUploadCommandInput
|
|
30
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
31
|
+
StartAttachmentUploadCommandInput,
|
|
32
|
+
StartAttachmentUploadCommandOutput,
|
|
33
|
+
ConnectParticipantClientResolvedConfig,
|
|
34
|
+
ServiceInputTypes,
|
|
35
|
+
ServiceOutputTypes
|
|
36
|
+
>;
|
|
28
37
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
29
38
|
};
|
|
30
39
|
export declare class StartAttachmentUploadCommand extends StartAttachmentUploadCommand_base {}
|
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.
|
|
4
|
+
"version": "3.535.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,48 +20,48 @@
|
|
|
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.
|
|
24
|
-
"@aws-sdk/core": "3.
|
|
25
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
27
|
-
"@aws-sdk/middleware-logger": "3.
|
|
28
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
29
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
30
|
-
"@aws-sdk/region-config-resolver": "3.
|
|
31
|
-
"@aws-sdk/types": "3.
|
|
32
|
-
"@aws-sdk/util-endpoints": "3.
|
|
33
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
34
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
35
|
-
"@smithy/config-resolver": "^2.
|
|
36
|
-
"@smithy/core": "^1.
|
|
37
|
-
"@smithy/fetch-http-handler": "^2.
|
|
38
|
-
"@smithy/hash-node": "^2.
|
|
39
|
-
"@smithy/invalid-dependency": "^2.
|
|
40
|
-
"@smithy/middleware-content-length": "^2.
|
|
41
|
-
"@smithy/middleware-endpoint": "^2.
|
|
42
|
-
"@smithy/middleware-retry": "^2.
|
|
43
|
-
"@smithy/middleware-serde": "^2.
|
|
44
|
-
"@smithy/middleware-stack": "^2.
|
|
45
|
-
"@smithy/node-config-provider": "^2.
|
|
46
|
-
"@smithy/node-http-handler": "^2.
|
|
47
|
-
"@smithy/protocol-http": "^3.
|
|
48
|
-
"@smithy/smithy-client": "^2.
|
|
49
|
-
"@smithy/types": "^2.
|
|
50
|
-
"@smithy/url-parser": "^2.
|
|
51
|
-
"@smithy/util-base64": "^2.
|
|
52
|
-
"@smithy/util-body-length-browser": "^2.
|
|
53
|
-
"@smithy/util-body-length-node": "^2.
|
|
54
|
-
"@smithy/util-defaults-mode-browser": "^2.
|
|
55
|
-
"@smithy/util-defaults-mode-node": "^2.
|
|
56
|
-
"@smithy/util-endpoints": "^1.
|
|
57
|
-
"@smithy/util-middleware": "^2.
|
|
58
|
-
"@smithy/util-retry": "^2.
|
|
59
|
-
"@smithy/util-utf8": "^2.
|
|
60
|
-
"tslib": "^2.
|
|
23
|
+
"@aws-sdk/client-sts": "3.535.0",
|
|
24
|
+
"@aws-sdk/core": "3.535.0",
|
|
25
|
+
"@aws-sdk/credential-provider-node": "3.535.0",
|
|
26
|
+
"@aws-sdk/middleware-host-header": "3.535.0",
|
|
27
|
+
"@aws-sdk/middleware-logger": "3.535.0",
|
|
28
|
+
"@aws-sdk/middleware-recursion-detection": "3.535.0",
|
|
29
|
+
"@aws-sdk/middleware-user-agent": "3.535.0",
|
|
30
|
+
"@aws-sdk/region-config-resolver": "3.535.0",
|
|
31
|
+
"@aws-sdk/types": "3.535.0",
|
|
32
|
+
"@aws-sdk/util-endpoints": "3.535.0",
|
|
33
|
+
"@aws-sdk/util-user-agent-browser": "3.535.0",
|
|
34
|
+
"@aws-sdk/util-user-agent-node": "3.535.0",
|
|
35
|
+
"@smithy/config-resolver": "^2.2.0",
|
|
36
|
+
"@smithy/core": "^1.4.0",
|
|
37
|
+
"@smithy/fetch-http-handler": "^2.5.0",
|
|
38
|
+
"@smithy/hash-node": "^2.2.0",
|
|
39
|
+
"@smithy/invalid-dependency": "^2.2.0",
|
|
40
|
+
"@smithy/middleware-content-length": "^2.2.0",
|
|
41
|
+
"@smithy/middleware-endpoint": "^2.5.0",
|
|
42
|
+
"@smithy/middleware-retry": "^2.2.0",
|
|
43
|
+
"@smithy/middleware-serde": "^2.3.0",
|
|
44
|
+
"@smithy/middleware-stack": "^2.2.0",
|
|
45
|
+
"@smithy/node-config-provider": "^2.3.0",
|
|
46
|
+
"@smithy/node-http-handler": "^2.5.0",
|
|
47
|
+
"@smithy/protocol-http": "^3.3.0",
|
|
48
|
+
"@smithy/smithy-client": "^2.5.0",
|
|
49
|
+
"@smithy/types": "^2.12.0",
|
|
50
|
+
"@smithy/url-parser": "^2.2.0",
|
|
51
|
+
"@smithy/util-base64": "^2.3.0",
|
|
52
|
+
"@smithy/util-body-length-browser": "^2.2.0",
|
|
53
|
+
"@smithy/util-body-length-node": "^2.3.0",
|
|
54
|
+
"@smithy/util-defaults-mode-browser": "^2.2.0",
|
|
55
|
+
"@smithy/util-defaults-mode-node": "^2.3.0",
|
|
56
|
+
"@smithy/util-endpoints": "^1.2.0",
|
|
57
|
+
"@smithy/util-middleware": "^2.2.0",
|
|
58
|
+
"@smithy/util-retry": "^2.2.0",
|
|
59
|
+
"@smithy/util-utf8": "^2.3.0",
|
|
60
|
+
"tslib": "^2.6.2",
|
|
61
61
|
"uuid": "^9.0.1"
|
|
62
62
|
},
|
|
63
63
|
"devDependencies": {
|
|
64
|
-
"@smithy/service-client-documentation-generator": "^2.
|
|
64
|
+
"@smithy/service-client-documentation-generator": "^2.2.0",
|
|
65
65
|
"@tsconfig/node14": "1.0.3",
|
|
66
66
|
"@types/node": "^14.14.31",
|
|
67
67
|
"@types/uuid": "^9.0.4",
|