@aws-sdk/client-connectparticipant 3.1137.0 → 3.1138.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-cjs/index.js
CHANGED
|
@@ -69,7 +69,7 @@ const commonParams = {
|
|
|
69
69
|
UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
|
|
70
70
|
};
|
|
71
71
|
|
|
72
|
-
var version = "3.
|
|
72
|
+
var version = "3.1137.0";
|
|
73
73
|
var packageInfo = {
|
|
74
74
|
version: version};
|
|
75
75
|
|
|
@@ -379,10 +379,10 @@ const _hH = "httpHeader";
|
|
|
379
379
|
const _s = "smithy.ts.sdk.synthetic.com.amazonaws.connectparticipant";
|
|
380
380
|
const _se = "server";
|
|
381
381
|
const n0 = "com.amazonaws.connectparticipant";
|
|
382
|
-
const _s_registry = TypeRegistry
|
|
382
|
+
const _s_registry = new TypeRegistry(_s);
|
|
383
383
|
var ConnectParticipantServiceException$ = [-3, _s, "ConnectParticipantServiceException", 0, [], []];
|
|
384
384
|
_s_registry.registerError(ConnectParticipantServiceException$, ConnectParticipantServiceException);
|
|
385
|
-
const n0_registry = TypeRegistry
|
|
385
|
+
const n0_registry = new TypeRegistry(n0);
|
|
386
386
|
var AccessDeniedException$ = [-3, n0, _ADE,
|
|
387
387
|
{ [_e]: _c, [_hE]: 403 },
|
|
388
388
|
[_M],
|
|
@@ -136,10 +136,10 @@ const n0 = "com.amazonaws.connectparticipant";
|
|
|
136
136
|
import { TypeRegistry } from "@smithy/core/schema";
|
|
137
137
|
import { ConnectParticipantServiceException } from "../models/ConnectParticipantServiceException";
|
|
138
138
|
import { AccessDeniedException, ConflictException, InternalServerException, ResourceNotFoundException, ServiceQuotaExceededException, ThrottlingException, ValidationException, } from "../models/errors";
|
|
139
|
-
const _s_registry = TypeRegistry
|
|
139
|
+
const _s_registry = new TypeRegistry(_s);
|
|
140
140
|
export var ConnectParticipantServiceException$ = [-3, _s, "ConnectParticipantServiceException", 0, [], []];
|
|
141
141
|
_s_registry.registerError(ConnectParticipantServiceException$, ConnectParticipantServiceException);
|
|
142
|
-
const n0_registry = TypeRegistry
|
|
142
|
+
const n0_registry = new TypeRegistry(n0);
|
|
143
143
|
export var AccessDeniedException$ = [-3, n0, _ADE,
|
|
144
144
|
{ [_e]: _c, [_hE]: 403 },
|
|
145
145
|
[_M],
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import type { HttpHandlerOptions as __HttpHandlerOptions, PaginationConfiguration, Paginator } from "@smithy/types";
|
|
1
|
+
import type { HttpHandlerOptions as __HttpHandlerOptions, MetricsRecorder as __MetricsRecorder, PaginationConfiguration, Paginator } from "@smithy/types";
|
|
2
2
|
import { type CancelParticipantAuthenticationCommandInput, type CancelParticipantAuthenticationCommandOutput } from "./commands/CancelParticipantAuthenticationCommand";
|
|
3
3
|
import { type CompleteAttachmentUploadCommandInput, type CompleteAttachmentUploadCommandOutput } from "./commands/CompleteAttachmentUploadCommand";
|
|
4
4
|
import { type CreateParticipantConnectionCommandInput, type CreateParticipantConnectionCommandOutput } from "./commands/CreateParticipantConnectionCommand";
|
|
@@ -11,73 +11,79 @@ import { type SendEventCommandInput, type SendEventCommandOutput } from "./comma
|
|
|
11
11
|
import { type SendMessageCommandInput, type SendMessageCommandOutput } from "./commands/SendMessageCommand";
|
|
12
12
|
import { type StartAttachmentUploadCommandInput, type StartAttachmentUploadCommandOutput } from "./commands/StartAttachmentUploadCommand";
|
|
13
13
|
import { ConnectParticipantClient } from "./ConnectParticipantClient";
|
|
14
|
+
/**
|
|
15
|
+
* @public
|
|
16
|
+
*/
|
|
17
|
+
export interface ConnectParticipantRequestOptions extends __HttpHandlerOptions {
|
|
18
|
+
metricsRecorder?: __MetricsRecorder<unknown>;
|
|
19
|
+
}
|
|
14
20
|
export interface ConnectParticipant {
|
|
15
21
|
/**
|
|
16
22
|
* @see {@link CancelParticipantAuthenticationCommand}
|
|
17
23
|
*/
|
|
18
|
-
cancelParticipantAuthentication(args: CancelParticipantAuthenticationCommandInput, options?:
|
|
24
|
+
cancelParticipantAuthentication(args: CancelParticipantAuthenticationCommandInput, options?: ConnectParticipantRequestOptions): Promise<CancelParticipantAuthenticationCommandOutput>;
|
|
19
25
|
cancelParticipantAuthentication(args: CancelParticipantAuthenticationCommandInput, cb: (err: any, data?: CancelParticipantAuthenticationCommandOutput) => void): void;
|
|
20
|
-
cancelParticipantAuthentication(args: CancelParticipantAuthenticationCommandInput, options:
|
|
26
|
+
cancelParticipantAuthentication(args: CancelParticipantAuthenticationCommandInput, options: ConnectParticipantRequestOptions, cb: (err: any, data?: CancelParticipantAuthenticationCommandOutput) => void): void;
|
|
21
27
|
/**
|
|
22
28
|
* @see {@link CompleteAttachmentUploadCommand}
|
|
23
29
|
*/
|
|
24
|
-
completeAttachmentUpload(args: CompleteAttachmentUploadCommandInput, options?:
|
|
30
|
+
completeAttachmentUpload(args: CompleteAttachmentUploadCommandInput, options?: ConnectParticipantRequestOptions): Promise<CompleteAttachmentUploadCommandOutput>;
|
|
25
31
|
completeAttachmentUpload(args: CompleteAttachmentUploadCommandInput, cb: (err: any, data?: CompleteAttachmentUploadCommandOutput) => void): void;
|
|
26
|
-
completeAttachmentUpload(args: CompleteAttachmentUploadCommandInput, options:
|
|
32
|
+
completeAttachmentUpload(args: CompleteAttachmentUploadCommandInput, options: ConnectParticipantRequestOptions, cb: (err: any, data?: CompleteAttachmentUploadCommandOutput) => void): void;
|
|
27
33
|
/**
|
|
28
34
|
* @see {@link CreateParticipantConnectionCommand}
|
|
29
35
|
*/
|
|
30
|
-
createParticipantConnection(args: CreateParticipantConnectionCommandInput, options?:
|
|
36
|
+
createParticipantConnection(args: CreateParticipantConnectionCommandInput, options?: ConnectParticipantRequestOptions): Promise<CreateParticipantConnectionCommandOutput>;
|
|
31
37
|
createParticipantConnection(args: CreateParticipantConnectionCommandInput, cb: (err: any, data?: CreateParticipantConnectionCommandOutput) => void): void;
|
|
32
|
-
createParticipantConnection(args: CreateParticipantConnectionCommandInput, options:
|
|
38
|
+
createParticipantConnection(args: CreateParticipantConnectionCommandInput, options: ConnectParticipantRequestOptions, cb: (err: any, data?: CreateParticipantConnectionCommandOutput) => void): void;
|
|
33
39
|
/**
|
|
34
40
|
* @see {@link DescribeViewCommand}
|
|
35
41
|
*/
|
|
36
|
-
describeView(args: DescribeViewCommandInput, options?:
|
|
42
|
+
describeView(args: DescribeViewCommandInput, options?: ConnectParticipantRequestOptions): Promise<DescribeViewCommandOutput>;
|
|
37
43
|
describeView(args: DescribeViewCommandInput, cb: (err: any, data?: DescribeViewCommandOutput) => void): void;
|
|
38
|
-
describeView(args: DescribeViewCommandInput, options:
|
|
44
|
+
describeView(args: DescribeViewCommandInput, options: ConnectParticipantRequestOptions, cb: (err: any, data?: DescribeViewCommandOutput) => void): void;
|
|
39
45
|
/**
|
|
40
46
|
* @see {@link DisconnectParticipantCommand}
|
|
41
47
|
*/
|
|
42
|
-
disconnectParticipant(args: DisconnectParticipantCommandInput, options?:
|
|
48
|
+
disconnectParticipant(args: DisconnectParticipantCommandInput, options?: ConnectParticipantRequestOptions): Promise<DisconnectParticipantCommandOutput>;
|
|
43
49
|
disconnectParticipant(args: DisconnectParticipantCommandInput, cb: (err: any, data?: DisconnectParticipantCommandOutput) => void): void;
|
|
44
|
-
disconnectParticipant(args: DisconnectParticipantCommandInput, options:
|
|
50
|
+
disconnectParticipant(args: DisconnectParticipantCommandInput, options: ConnectParticipantRequestOptions, cb: (err: any, data?: DisconnectParticipantCommandOutput) => void): void;
|
|
45
51
|
/**
|
|
46
52
|
* @see {@link GetAttachmentCommand}
|
|
47
53
|
*/
|
|
48
|
-
getAttachment(args: GetAttachmentCommandInput, options?:
|
|
54
|
+
getAttachment(args: GetAttachmentCommandInput, options?: ConnectParticipantRequestOptions): Promise<GetAttachmentCommandOutput>;
|
|
49
55
|
getAttachment(args: GetAttachmentCommandInput, cb: (err: any, data?: GetAttachmentCommandOutput) => void): void;
|
|
50
|
-
getAttachment(args: GetAttachmentCommandInput, options:
|
|
56
|
+
getAttachment(args: GetAttachmentCommandInput, options: ConnectParticipantRequestOptions, cb: (err: any, data?: GetAttachmentCommandOutput) => void): void;
|
|
51
57
|
/**
|
|
52
58
|
* @see {@link GetAuthenticationUrlCommand}
|
|
53
59
|
*/
|
|
54
|
-
getAuthenticationUrl(args: GetAuthenticationUrlCommandInput, options?:
|
|
60
|
+
getAuthenticationUrl(args: GetAuthenticationUrlCommandInput, options?: ConnectParticipantRequestOptions): Promise<GetAuthenticationUrlCommandOutput>;
|
|
55
61
|
getAuthenticationUrl(args: GetAuthenticationUrlCommandInput, cb: (err: any, data?: GetAuthenticationUrlCommandOutput) => void): void;
|
|
56
|
-
getAuthenticationUrl(args: GetAuthenticationUrlCommandInput, options:
|
|
62
|
+
getAuthenticationUrl(args: GetAuthenticationUrlCommandInput, options: ConnectParticipantRequestOptions, cb: (err: any, data?: GetAuthenticationUrlCommandOutput) => void): void;
|
|
57
63
|
/**
|
|
58
64
|
* @see {@link GetTranscriptCommand}
|
|
59
65
|
*/
|
|
60
|
-
getTranscript(args: GetTranscriptCommandInput, options?:
|
|
66
|
+
getTranscript(args: GetTranscriptCommandInput, options?: ConnectParticipantRequestOptions): Promise<GetTranscriptCommandOutput>;
|
|
61
67
|
getTranscript(args: GetTranscriptCommandInput, cb: (err: any, data?: GetTranscriptCommandOutput) => void): void;
|
|
62
|
-
getTranscript(args: GetTranscriptCommandInput, options:
|
|
68
|
+
getTranscript(args: GetTranscriptCommandInput, options: ConnectParticipantRequestOptions, cb: (err: any, data?: GetTranscriptCommandOutput) => void): void;
|
|
63
69
|
/**
|
|
64
70
|
* @see {@link SendEventCommand}
|
|
65
71
|
*/
|
|
66
|
-
sendEvent(args: SendEventCommandInput, options?:
|
|
72
|
+
sendEvent(args: SendEventCommandInput, options?: ConnectParticipantRequestOptions): Promise<SendEventCommandOutput>;
|
|
67
73
|
sendEvent(args: SendEventCommandInput, cb: (err: any, data?: SendEventCommandOutput) => void): void;
|
|
68
|
-
sendEvent(args: SendEventCommandInput, options:
|
|
74
|
+
sendEvent(args: SendEventCommandInput, options: ConnectParticipantRequestOptions, cb: (err: any, data?: SendEventCommandOutput) => void): void;
|
|
69
75
|
/**
|
|
70
76
|
* @see {@link SendMessageCommand}
|
|
71
77
|
*/
|
|
72
|
-
sendMessage(args: SendMessageCommandInput, options?:
|
|
78
|
+
sendMessage(args: SendMessageCommandInput, options?: ConnectParticipantRequestOptions): Promise<SendMessageCommandOutput>;
|
|
73
79
|
sendMessage(args: SendMessageCommandInput, cb: (err: any, data?: SendMessageCommandOutput) => void): void;
|
|
74
|
-
sendMessage(args: SendMessageCommandInput, options:
|
|
80
|
+
sendMessage(args: SendMessageCommandInput, options: ConnectParticipantRequestOptions, cb: (err: any, data?: SendMessageCommandOutput) => void): void;
|
|
75
81
|
/**
|
|
76
82
|
* @see {@link StartAttachmentUploadCommand}
|
|
77
83
|
*/
|
|
78
|
-
startAttachmentUpload(args: StartAttachmentUploadCommandInput, options?:
|
|
84
|
+
startAttachmentUpload(args: StartAttachmentUploadCommandInput, options?: ConnectParticipantRequestOptions): Promise<StartAttachmentUploadCommandOutput>;
|
|
79
85
|
startAttachmentUpload(args: StartAttachmentUploadCommandInput, cb: (err: any, data?: StartAttachmentUploadCommandOutput) => void): void;
|
|
80
|
-
startAttachmentUpload(args: StartAttachmentUploadCommandInput, options:
|
|
86
|
+
startAttachmentUpload(args: StartAttachmentUploadCommandInput, options: ConnectParticipantRequestOptions, cb: (err: any, data?: StartAttachmentUploadCommandOutput) => void): void;
|
|
81
87
|
/**
|
|
82
88
|
* @see {@link GetTranscriptCommand}
|
|
83
89
|
* @param args - command input.
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import {
|
|
2
2
|
HttpHandlerOptions as __HttpHandlerOptions,
|
|
3
|
+
MetricsRecorder as __MetricsRecorder,
|
|
3
4
|
PaginationConfiguration,
|
|
4
5
|
Paginator,
|
|
5
6
|
} from "@smithy/types";
|
|
@@ -42,10 +43,13 @@ import {
|
|
|
42
43
|
StartAttachmentUploadCommandOutput,
|
|
43
44
|
} from "./commands/StartAttachmentUploadCommand";
|
|
44
45
|
import { ConnectParticipantClient } from "./ConnectParticipantClient";
|
|
46
|
+
export interface ConnectParticipantRequestOptions extends __HttpHandlerOptions {
|
|
47
|
+
metricsRecorder?: __MetricsRecorder<unknown>;
|
|
48
|
+
}
|
|
45
49
|
export interface ConnectParticipant {
|
|
46
50
|
cancelParticipantAuthentication(
|
|
47
51
|
args: CancelParticipantAuthenticationCommandInput,
|
|
48
|
-
options?:
|
|
52
|
+
options?: ConnectParticipantRequestOptions,
|
|
49
53
|
): Promise<CancelParticipantAuthenticationCommandOutput>;
|
|
50
54
|
cancelParticipantAuthentication(
|
|
51
55
|
args: CancelParticipantAuthenticationCommandInput,
|
|
@@ -53,12 +57,12 @@ export interface ConnectParticipant {
|
|
|
53
57
|
): void;
|
|
54
58
|
cancelParticipantAuthentication(
|
|
55
59
|
args: CancelParticipantAuthenticationCommandInput,
|
|
56
|
-
options:
|
|
60
|
+
options: ConnectParticipantRequestOptions,
|
|
57
61
|
cb: (err: any, data?: CancelParticipantAuthenticationCommandOutput) => void,
|
|
58
62
|
): void;
|
|
59
63
|
completeAttachmentUpload(
|
|
60
64
|
args: CompleteAttachmentUploadCommandInput,
|
|
61
|
-
options?:
|
|
65
|
+
options?: ConnectParticipantRequestOptions,
|
|
62
66
|
): Promise<CompleteAttachmentUploadCommandOutput>;
|
|
63
67
|
completeAttachmentUpload(
|
|
64
68
|
args: CompleteAttachmentUploadCommandInput,
|
|
@@ -66,12 +70,12 @@ export interface ConnectParticipant {
|
|
|
66
70
|
): void;
|
|
67
71
|
completeAttachmentUpload(
|
|
68
72
|
args: CompleteAttachmentUploadCommandInput,
|
|
69
|
-
options:
|
|
73
|
+
options: ConnectParticipantRequestOptions,
|
|
70
74
|
cb: (err: any, data?: CompleteAttachmentUploadCommandOutput) => void,
|
|
71
75
|
): void;
|
|
72
76
|
createParticipantConnection(
|
|
73
77
|
args: CreateParticipantConnectionCommandInput,
|
|
74
|
-
options?:
|
|
78
|
+
options?: ConnectParticipantRequestOptions,
|
|
75
79
|
): Promise<CreateParticipantConnectionCommandOutput>;
|
|
76
80
|
createParticipantConnection(
|
|
77
81
|
args: CreateParticipantConnectionCommandInput,
|
|
@@ -79,12 +83,12 @@ export interface ConnectParticipant {
|
|
|
79
83
|
): void;
|
|
80
84
|
createParticipantConnection(
|
|
81
85
|
args: CreateParticipantConnectionCommandInput,
|
|
82
|
-
options:
|
|
86
|
+
options: ConnectParticipantRequestOptions,
|
|
83
87
|
cb: (err: any, data?: CreateParticipantConnectionCommandOutput) => void,
|
|
84
88
|
): void;
|
|
85
89
|
describeView(
|
|
86
90
|
args: DescribeViewCommandInput,
|
|
87
|
-
options?:
|
|
91
|
+
options?: ConnectParticipantRequestOptions,
|
|
88
92
|
): Promise<DescribeViewCommandOutput>;
|
|
89
93
|
describeView(
|
|
90
94
|
args: DescribeViewCommandInput,
|
|
@@ -92,12 +96,12 @@ export interface ConnectParticipant {
|
|
|
92
96
|
): void;
|
|
93
97
|
describeView(
|
|
94
98
|
args: DescribeViewCommandInput,
|
|
95
|
-
options:
|
|
99
|
+
options: ConnectParticipantRequestOptions,
|
|
96
100
|
cb: (err: any, data?: DescribeViewCommandOutput) => void,
|
|
97
101
|
): void;
|
|
98
102
|
disconnectParticipant(
|
|
99
103
|
args: DisconnectParticipantCommandInput,
|
|
100
|
-
options?:
|
|
104
|
+
options?: ConnectParticipantRequestOptions,
|
|
101
105
|
): Promise<DisconnectParticipantCommandOutput>;
|
|
102
106
|
disconnectParticipant(
|
|
103
107
|
args: DisconnectParticipantCommandInput,
|
|
@@ -105,12 +109,12 @@ export interface ConnectParticipant {
|
|
|
105
109
|
): void;
|
|
106
110
|
disconnectParticipant(
|
|
107
111
|
args: DisconnectParticipantCommandInput,
|
|
108
|
-
options:
|
|
112
|
+
options: ConnectParticipantRequestOptions,
|
|
109
113
|
cb: (err: any, data?: DisconnectParticipantCommandOutput) => void,
|
|
110
114
|
): void;
|
|
111
115
|
getAttachment(
|
|
112
116
|
args: GetAttachmentCommandInput,
|
|
113
|
-
options?:
|
|
117
|
+
options?: ConnectParticipantRequestOptions,
|
|
114
118
|
): Promise<GetAttachmentCommandOutput>;
|
|
115
119
|
getAttachment(
|
|
116
120
|
args: GetAttachmentCommandInput,
|
|
@@ -118,12 +122,12 @@ export interface ConnectParticipant {
|
|
|
118
122
|
): void;
|
|
119
123
|
getAttachment(
|
|
120
124
|
args: GetAttachmentCommandInput,
|
|
121
|
-
options:
|
|
125
|
+
options: ConnectParticipantRequestOptions,
|
|
122
126
|
cb: (err: any, data?: GetAttachmentCommandOutput) => void,
|
|
123
127
|
): void;
|
|
124
128
|
getAuthenticationUrl(
|
|
125
129
|
args: GetAuthenticationUrlCommandInput,
|
|
126
|
-
options?:
|
|
130
|
+
options?: ConnectParticipantRequestOptions,
|
|
127
131
|
): Promise<GetAuthenticationUrlCommandOutput>;
|
|
128
132
|
getAuthenticationUrl(
|
|
129
133
|
args: GetAuthenticationUrlCommandInput,
|
|
@@ -131,12 +135,12 @@ export interface ConnectParticipant {
|
|
|
131
135
|
): void;
|
|
132
136
|
getAuthenticationUrl(
|
|
133
137
|
args: GetAuthenticationUrlCommandInput,
|
|
134
|
-
options:
|
|
138
|
+
options: ConnectParticipantRequestOptions,
|
|
135
139
|
cb: (err: any, data?: GetAuthenticationUrlCommandOutput) => void,
|
|
136
140
|
): void;
|
|
137
141
|
getTranscript(
|
|
138
142
|
args: GetTranscriptCommandInput,
|
|
139
|
-
options?:
|
|
143
|
+
options?: ConnectParticipantRequestOptions,
|
|
140
144
|
): Promise<GetTranscriptCommandOutput>;
|
|
141
145
|
getTranscript(
|
|
142
146
|
args: GetTranscriptCommandInput,
|
|
@@ -144,12 +148,12 @@ export interface ConnectParticipant {
|
|
|
144
148
|
): void;
|
|
145
149
|
getTranscript(
|
|
146
150
|
args: GetTranscriptCommandInput,
|
|
147
|
-
options:
|
|
151
|
+
options: ConnectParticipantRequestOptions,
|
|
148
152
|
cb: (err: any, data?: GetTranscriptCommandOutput) => void,
|
|
149
153
|
): void;
|
|
150
154
|
sendEvent(
|
|
151
155
|
args: SendEventCommandInput,
|
|
152
|
-
options?:
|
|
156
|
+
options?: ConnectParticipantRequestOptions,
|
|
153
157
|
): Promise<SendEventCommandOutput>;
|
|
154
158
|
sendEvent(
|
|
155
159
|
args: SendEventCommandInput,
|
|
@@ -157,12 +161,12 @@ export interface ConnectParticipant {
|
|
|
157
161
|
): void;
|
|
158
162
|
sendEvent(
|
|
159
163
|
args: SendEventCommandInput,
|
|
160
|
-
options:
|
|
164
|
+
options: ConnectParticipantRequestOptions,
|
|
161
165
|
cb: (err: any, data?: SendEventCommandOutput) => void,
|
|
162
166
|
): void;
|
|
163
167
|
sendMessage(
|
|
164
168
|
args: SendMessageCommandInput,
|
|
165
|
-
options?:
|
|
169
|
+
options?: ConnectParticipantRequestOptions,
|
|
166
170
|
): Promise<SendMessageCommandOutput>;
|
|
167
171
|
sendMessage(
|
|
168
172
|
args: SendMessageCommandInput,
|
|
@@ -170,12 +174,12 @@ export interface ConnectParticipant {
|
|
|
170
174
|
): void;
|
|
171
175
|
sendMessage(
|
|
172
176
|
args: SendMessageCommandInput,
|
|
173
|
-
options:
|
|
177
|
+
options: ConnectParticipantRequestOptions,
|
|
174
178
|
cb: (err: any, data?: SendMessageCommandOutput) => void,
|
|
175
179
|
): void;
|
|
176
180
|
startAttachmentUpload(
|
|
177
181
|
args: StartAttachmentUploadCommandInput,
|
|
178
|
-
options?:
|
|
182
|
+
options?: ConnectParticipantRequestOptions,
|
|
179
183
|
): Promise<StartAttachmentUploadCommandOutput>;
|
|
180
184
|
startAttachmentUpload(
|
|
181
185
|
args: StartAttachmentUploadCommandInput,
|
|
@@ -183,7 +187,7 @@ export interface ConnectParticipant {
|
|
|
183
187
|
): void;
|
|
184
188
|
startAttachmentUpload(
|
|
185
189
|
args: StartAttachmentUploadCommandInput,
|
|
186
|
-
options:
|
|
190
|
+
options: ConnectParticipantRequestOptions,
|
|
187
191
|
cb: (err: any, data?: StartAttachmentUploadCommandOutput) => void,
|
|
188
192
|
): void;
|
|
189
193
|
paginateGetTranscript(
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-connectparticipant",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.1138.0",
|
|
4
4
|
"description": "AWS SDK for JavaScript Connectparticipant Client for Node.js, Browser and React Native",
|
|
5
5
|
"homepage": "https://github.com/aws/aws-sdk-js-v3/tree/main/clients/client-connectparticipant",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -46,13 +46,13 @@
|
|
|
46
46
|
"test:index": "tsc -p tsconfig.test.json && node ./test/index-objects.spec.mjs"
|
|
47
47
|
},
|
|
48
48
|
"dependencies": {
|
|
49
|
-
"@aws-sdk/core": "^3.978.
|
|
50
|
-
"@aws-sdk/credential-provider-node": "^3.972.
|
|
51
|
-
"@aws-sdk/types": "^3.974.
|
|
52
|
-
"@smithy/core": "^3.
|
|
53
|
-
"@smithy/fetch-http-handler": "^5.
|
|
54
|
-
"@smithy/node-http-handler": "^4.
|
|
55
|
-
"@smithy/types": "^4.
|
|
49
|
+
"@aws-sdk/core": "^3.978.1",
|
|
50
|
+
"@aws-sdk/credential-provider-node": "^3.972.84",
|
|
51
|
+
"@aws-sdk/types": "^3.974.6",
|
|
52
|
+
"@smithy/core": "^3.35.0",
|
|
53
|
+
"@smithy/fetch-http-handler": "^5.8.0",
|
|
54
|
+
"@smithy/node-http-handler": "^4.12.1",
|
|
55
|
+
"@smithy/types": "^4.19.0",
|
|
56
56
|
"tslib": "^2.6.2"
|
|
57
57
|
},
|
|
58
58
|
"devDependencies": {
|