@aws-sdk/client-connectparticipant 3.130.0 → 3.141.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/CHANGELOG.md +30 -0
- package/README.md +1 -1
- package/dist-cjs/commands/CompleteAttachmentUploadCommand.js +2 -2
- package/dist-cjs/commands/CreateParticipantConnectionCommand.js +2 -2
- package/dist-cjs/commands/DisconnectParticipantCommand.js +2 -2
- package/dist-cjs/commands/GetAttachmentCommand.js +2 -2
- package/dist-cjs/commands/GetTranscriptCommand.js +2 -2
- package/dist-cjs/commands/SendEventCommand.js +2 -2
- package/dist-cjs/commands/SendMessageCommand.js +2 -2
- package/dist-cjs/commands/StartAttachmentUploadCommand.js +2 -2
- package/dist-cjs/models/models_0.js +89 -133
- package/dist-es/commands/CompleteAttachmentUploadCommand.js +3 -3
- package/dist-es/commands/CreateParticipantConnectionCommand.js +3 -3
- package/dist-es/commands/DisconnectParticipantCommand.js +3 -3
- package/dist-es/commands/GetAttachmentCommand.js +3 -3
- package/dist-es/commands/GetTranscriptCommand.js +3 -3
- package/dist-es/commands/SendEventCommand.js +3 -3
- package/dist-es/commands/SendMessageCommand.js +3 -3
- package/dist-es/commands/StartAttachmentUploadCommand.js +3 -3
- package/dist-es/models/models_0.js +22 -88
- package/dist-types/models/models_0.d.ts +88 -132
- package/dist-types/ts3.4/models/models_0.d.ts +44 -88
- package/package.json +7 -7
|
@@ -16,16 +16,8 @@ export interface CompleteAttachmentUploadRequest {
|
|
|
16
16
|
|
|
17
17
|
ConnectionToken: string | undefined;
|
|
18
18
|
}
|
|
19
|
-
export declare namespace CompleteAttachmentUploadRequest {
|
|
20
|
-
|
|
21
|
-
const filterSensitiveLog: (obj: CompleteAttachmentUploadRequest) => any;
|
|
22
|
-
}
|
|
23
19
|
export interface CompleteAttachmentUploadResponse {
|
|
24
20
|
}
|
|
25
|
-
export declare namespace CompleteAttachmentUploadResponse {
|
|
26
|
-
|
|
27
|
-
const filterSensitiveLog: (obj: CompleteAttachmentUploadResponse) => any;
|
|
28
|
-
}
|
|
29
21
|
|
|
30
22
|
export declare class ConflictException extends __BaseException {
|
|
31
23
|
readonly name: "ConflictException";
|
|
@@ -78,10 +70,6 @@ export interface CreateParticipantConnectionRequest {
|
|
|
78
70
|
|
|
79
71
|
ConnectParticipant?: boolean;
|
|
80
72
|
}
|
|
81
|
-
export declare namespace CreateParticipantConnectionRequest {
|
|
82
|
-
|
|
83
|
-
const filterSensitiveLog: (obj: CreateParticipantConnectionRequest) => any;
|
|
84
|
-
}
|
|
85
73
|
|
|
86
74
|
export interface ConnectionCredentials {
|
|
87
75
|
|
|
@@ -89,10 +77,6 @@ export interface ConnectionCredentials {
|
|
|
89
77
|
|
|
90
78
|
Expiry?: string;
|
|
91
79
|
}
|
|
92
|
-
export declare namespace ConnectionCredentials {
|
|
93
|
-
|
|
94
|
-
const filterSensitiveLog: (obj: ConnectionCredentials) => any;
|
|
95
|
-
}
|
|
96
80
|
|
|
97
81
|
export interface Websocket {
|
|
98
82
|
|
|
@@ -100,56 +84,32 @@ export interface Websocket {
|
|
|
100
84
|
|
|
101
85
|
ConnectionExpiry?: string;
|
|
102
86
|
}
|
|
103
|
-
export declare namespace Websocket {
|
|
104
|
-
|
|
105
|
-
const filterSensitiveLog: (obj: Websocket) => any;
|
|
106
|
-
}
|
|
107
87
|
export interface CreateParticipantConnectionResponse {
|
|
108
88
|
|
|
109
89
|
Websocket?: Websocket;
|
|
110
90
|
|
|
111
91
|
ConnectionCredentials?: ConnectionCredentials;
|
|
112
92
|
}
|
|
113
|
-
export declare namespace CreateParticipantConnectionResponse {
|
|
114
|
-
|
|
115
|
-
const filterSensitiveLog: (obj: CreateParticipantConnectionResponse) => any;
|
|
116
|
-
}
|
|
117
93
|
export interface DisconnectParticipantRequest {
|
|
118
94
|
|
|
119
95
|
ClientToken?: string;
|
|
120
96
|
|
|
121
97
|
ConnectionToken: string | undefined;
|
|
122
98
|
}
|
|
123
|
-
export declare namespace DisconnectParticipantRequest {
|
|
124
|
-
|
|
125
|
-
const filterSensitiveLog: (obj: DisconnectParticipantRequest) => any;
|
|
126
|
-
}
|
|
127
99
|
export interface DisconnectParticipantResponse {
|
|
128
100
|
}
|
|
129
|
-
export declare namespace DisconnectParticipantResponse {
|
|
130
|
-
|
|
131
|
-
const filterSensitiveLog: (obj: DisconnectParticipantResponse) => any;
|
|
132
|
-
}
|
|
133
101
|
export interface GetAttachmentRequest {
|
|
134
102
|
|
|
135
103
|
AttachmentId: string | undefined;
|
|
136
104
|
|
|
137
105
|
ConnectionToken: string | undefined;
|
|
138
106
|
}
|
|
139
|
-
export declare namespace GetAttachmentRequest {
|
|
140
|
-
|
|
141
|
-
const filterSensitiveLog: (obj: GetAttachmentRequest) => any;
|
|
142
|
-
}
|
|
143
107
|
export interface GetAttachmentResponse {
|
|
144
108
|
|
|
145
109
|
Url?: string;
|
|
146
110
|
|
|
147
111
|
UrlExpiry?: string;
|
|
148
112
|
}
|
|
149
|
-
export declare namespace GetAttachmentResponse {
|
|
150
|
-
|
|
151
|
-
const filterSensitiveLog: (obj: GetAttachmentResponse) => any;
|
|
152
|
-
}
|
|
153
113
|
export declare enum ScanDirection {
|
|
154
114
|
BACKWARD = "BACKWARD",
|
|
155
115
|
FORWARD = "FORWARD"
|
|
@@ -167,10 +127,6 @@ export interface StartPosition {
|
|
|
167
127
|
|
|
168
128
|
MostRecent?: number;
|
|
169
129
|
}
|
|
170
|
-
export declare namespace StartPosition {
|
|
171
|
-
|
|
172
|
-
const filterSensitiveLog: (obj: StartPosition) => any;
|
|
173
|
-
}
|
|
174
130
|
export interface GetTranscriptRequest {
|
|
175
131
|
|
|
176
132
|
ContactId?: string;
|
|
@@ -187,10 +143,6 @@ export interface GetTranscriptRequest {
|
|
|
187
143
|
|
|
188
144
|
ConnectionToken: string | undefined;
|
|
189
145
|
}
|
|
190
|
-
export declare namespace GetTranscriptRequest {
|
|
191
|
-
|
|
192
|
-
const filterSensitiveLog: (obj: GetTranscriptRequest) => any;
|
|
193
|
-
}
|
|
194
146
|
export declare enum ArtifactStatus {
|
|
195
147
|
APPROVED = "APPROVED",
|
|
196
148
|
IN_PROGRESS = "IN_PROGRESS",
|
|
@@ -207,10 +159,6 @@ export interface AttachmentItem {
|
|
|
207
159
|
|
|
208
160
|
Status?: ArtifactStatus | string;
|
|
209
161
|
}
|
|
210
|
-
export declare namespace AttachmentItem {
|
|
211
|
-
|
|
212
|
-
const filterSensitiveLog: (obj: AttachmentItem) => any;
|
|
213
|
-
}
|
|
214
162
|
export declare enum ParticipantRole {
|
|
215
163
|
AGENT = "AGENT",
|
|
216
164
|
CUSTOMER = "CUSTOMER",
|
|
@@ -249,10 +197,6 @@ export interface Item {
|
|
|
249
197
|
|
|
250
198
|
Attachments?: AttachmentItem[];
|
|
251
199
|
}
|
|
252
|
-
export declare namespace Item {
|
|
253
|
-
|
|
254
|
-
const filterSensitiveLog: (obj: Item) => any;
|
|
255
|
-
}
|
|
256
200
|
export interface GetTranscriptResponse {
|
|
257
201
|
|
|
258
202
|
InitialContactId?: string;
|
|
@@ -261,10 +205,6 @@ export interface GetTranscriptResponse {
|
|
|
261
205
|
|
|
262
206
|
NextToken?: string;
|
|
263
207
|
}
|
|
264
|
-
export declare namespace GetTranscriptResponse {
|
|
265
|
-
|
|
266
|
-
const filterSensitiveLog: (obj: GetTranscriptResponse) => any;
|
|
267
|
-
}
|
|
268
208
|
export interface SendEventRequest {
|
|
269
209
|
|
|
270
210
|
ContentType: string | undefined;
|
|
@@ -275,20 +215,12 @@ export interface SendEventRequest {
|
|
|
275
215
|
|
|
276
216
|
ConnectionToken: string | undefined;
|
|
277
217
|
}
|
|
278
|
-
export declare namespace SendEventRequest {
|
|
279
|
-
|
|
280
|
-
const filterSensitiveLog: (obj: SendEventRequest) => any;
|
|
281
|
-
}
|
|
282
218
|
export interface SendEventResponse {
|
|
283
219
|
|
|
284
220
|
Id?: string;
|
|
285
221
|
|
|
286
222
|
AbsoluteTime?: string;
|
|
287
223
|
}
|
|
288
|
-
export declare namespace SendEventResponse {
|
|
289
|
-
|
|
290
|
-
const filterSensitiveLog: (obj: SendEventResponse) => any;
|
|
291
|
-
}
|
|
292
224
|
export interface SendMessageRequest {
|
|
293
225
|
|
|
294
226
|
ContentType: string | undefined;
|
|
@@ -299,20 +231,12 @@ export interface SendMessageRequest {
|
|
|
299
231
|
|
|
300
232
|
ConnectionToken: string | undefined;
|
|
301
233
|
}
|
|
302
|
-
export declare namespace SendMessageRequest {
|
|
303
|
-
|
|
304
|
-
const filterSensitiveLog: (obj: SendMessageRequest) => any;
|
|
305
|
-
}
|
|
306
234
|
export interface SendMessageResponse {
|
|
307
235
|
|
|
308
236
|
Id?: string;
|
|
309
237
|
|
|
310
238
|
AbsoluteTime?: string;
|
|
311
239
|
}
|
|
312
|
-
export declare namespace SendMessageResponse {
|
|
313
|
-
|
|
314
|
-
const filterSensitiveLog: (obj: SendMessageResponse) => any;
|
|
315
|
-
}
|
|
316
240
|
export interface StartAttachmentUploadRequest {
|
|
317
241
|
|
|
318
242
|
ContentType: string | undefined;
|
|
@@ -325,10 +249,6 @@ export interface StartAttachmentUploadRequest {
|
|
|
325
249
|
|
|
326
250
|
ConnectionToken: string | undefined;
|
|
327
251
|
}
|
|
328
|
-
export declare namespace StartAttachmentUploadRequest {
|
|
329
|
-
|
|
330
|
-
const filterSensitiveLog: (obj: StartAttachmentUploadRequest) => any;
|
|
331
|
-
}
|
|
332
252
|
|
|
333
253
|
export interface UploadMetadata {
|
|
334
254
|
|
|
@@ -338,17 +258,53 @@ export interface UploadMetadata {
|
|
|
338
258
|
|
|
339
259
|
HeadersToInclude?: Record<string, string>;
|
|
340
260
|
}
|
|
341
|
-
export declare namespace UploadMetadata {
|
|
342
|
-
|
|
343
|
-
const filterSensitiveLog: (obj: UploadMetadata) => any;
|
|
344
|
-
}
|
|
345
261
|
export interface StartAttachmentUploadResponse {
|
|
346
262
|
|
|
347
263
|
AttachmentId?: string;
|
|
348
264
|
|
|
349
265
|
UploadMetadata?: UploadMetadata;
|
|
350
266
|
}
|
|
351
|
-
|
|
352
|
-
|
|
353
|
-
|
|
354
|
-
|
|
267
|
+
|
|
268
|
+
export declare const CompleteAttachmentUploadRequestFilterSensitiveLog: (obj: CompleteAttachmentUploadRequest) => any;
|
|
269
|
+
|
|
270
|
+
export declare const CompleteAttachmentUploadResponseFilterSensitiveLog: (obj: CompleteAttachmentUploadResponse) => any;
|
|
271
|
+
|
|
272
|
+
export declare const CreateParticipantConnectionRequestFilterSensitiveLog: (obj: CreateParticipantConnectionRequest) => any;
|
|
273
|
+
|
|
274
|
+
export declare const ConnectionCredentialsFilterSensitiveLog: (obj: ConnectionCredentials) => any;
|
|
275
|
+
|
|
276
|
+
export declare const WebsocketFilterSensitiveLog: (obj: Websocket) => any;
|
|
277
|
+
|
|
278
|
+
export declare const CreateParticipantConnectionResponseFilterSensitiveLog: (obj: CreateParticipantConnectionResponse) => any;
|
|
279
|
+
|
|
280
|
+
export declare const DisconnectParticipantRequestFilterSensitiveLog: (obj: DisconnectParticipantRequest) => any;
|
|
281
|
+
|
|
282
|
+
export declare const DisconnectParticipantResponseFilterSensitiveLog: (obj: DisconnectParticipantResponse) => any;
|
|
283
|
+
|
|
284
|
+
export declare const GetAttachmentRequestFilterSensitiveLog: (obj: GetAttachmentRequest) => any;
|
|
285
|
+
|
|
286
|
+
export declare const GetAttachmentResponseFilterSensitiveLog: (obj: GetAttachmentResponse) => any;
|
|
287
|
+
|
|
288
|
+
export declare const StartPositionFilterSensitiveLog: (obj: StartPosition) => any;
|
|
289
|
+
|
|
290
|
+
export declare const GetTranscriptRequestFilterSensitiveLog: (obj: GetTranscriptRequest) => any;
|
|
291
|
+
|
|
292
|
+
export declare const AttachmentItemFilterSensitiveLog: (obj: AttachmentItem) => any;
|
|
293
|
+
|
|
294
|
+
export declare const ItemFilterSensitiveLog: (obj: Item) => any;
|
|
295
|
+
|
|
296
|
+
export declare const GetTranscriptResponseFilterSensitiveLog: (obj: GetTranscriptResponse) => any;
|
|
297
|
+
|
|
298
|
+
export declare const SendEventRequestFilterSensitiveLog: (obj: SendEventRequest) => any;
|
|
299
|
+
|
|
300
|
+
export declare const SendEventResponseFilterSensitiveLog: (obj: SendEventResponse) => any;
|
|
301
|
+
|
|
302
|
+
export declare const SendMessageRequestFilterSensitiveLog: (obj: SendMessageRequest) => any;
|
|
303
|
+
|
|
304
|
+
export declare const SendMessageResponseFilterSensitiveLog: (obj: SendMessageResponse) => any;
|
|
305
|
+
|
|
306
|
+
export declare const StartAttachmentUploadRequestFilterSensitiveLog: (obj: StartAttachmentUploadRequest) => any;
|
|
307
|
+
|
|
308
|
+
export declare const UploadMetadataFilterSensitiveLog: (obj: UploadMetadata) => any;
|
|
309
|
+
|
|
310
|
+
export declare const StartAttachmentUploadResponseFilterSensitiveLog: (obj: StartAttachmentUploadResponse) => any;
|
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.141.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -18,10 +18,10 @@
|
|
|
18
18
|
"dependencies": {
|
|
19
19
|
"@aws-crypto/sha256-browser": "2.0.0",
|
|
20
20
|
"@aws-crypto/sha256-js": "2.0.0",
|
|
21
|
-
"@aws-sdk/client-sts": "3.
|
|
21
|
+
"@aws-sdk/client-sts": "3.141.0",
|
|
22
22
|
"@aws-sdk/config-resolver": "3.130.0",
|
|
23
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
24
|
-
"@aws-sdk/fetch-http-handler": "3.
|
|
23
|
+
"@aws-sdk/credential-provider-node": "3.141.0",
|
|
24
|
+
"@aws-sdk/fetch-http-handler": "3.131.0",
|
|
25
25
|
"@aws-sdk/hash-node": "3.127.0",
|
|
26
26
|
"@aws-sdk/invalid-dependency": "3.127.0",
|
|
27
27
|
"@aws-sdk/middleware-content-length": "3.127.0",
|
|
@@ -36,15 +36,15 @@
|
|
|
36
36
|
"@aws-sdk/node-config-provider": "3.127.0",
|
|
37
37
|
"@aws-sdk/node-http-handler": "3.127.0",
|
|
38
38
|
"@aws-sdk/protocol-http": "3.127.0",
|
|
39
|
-
"@aws-sdk/smithy-client": "3.
|
|
39
|
+
"@aws-sdk/smithy-client": "3.137.0",
|
|
40
40
|
"@aws-sdk/types": "3.127.0",
|
|
41
41
|
"@aws-sdk/url-parser": "3.127.0",
|
|
42
42
|
"@aws-sdk/util-base64-browser": "3.109.0",
|
|
43
43
|
"@aws-sdk/util-base64-node": "3.55.0",
|
|
44
44
|
"@aws-sdk/util-body-length-browser": "3.55.0",
|
|
45
45
|
"@aws-sdk/util-body-length-node": "3.55.0",
|
|
46
|
-
"@aws-sdk/util-defaults-mode-browser": "3.
|
|
47
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
46
|
+
"@aws-sdk/util-defaults-mode-browser": "3.137.0",
|
|
47
|
+
"@aws-sdk/util-defaults-mode-node": "3.137.0",
|
|
48
48
|
"@aws-sdk/util-user-agent-browser": "3.127.0",
|
|
49
49
|
"@aws-sdk/util-user-agent-node": "3.127.0",
|
|
50
50
|
"@aws-sdk/util-utf8-browser": "3.109.0",
|