@aws-sdk/client-connectparticipant 3.515.0 → 3.521.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/runtimeConfig.browser.js +1 -1
- package/dist-cjs/runtimeConfig.js +1 -1
- package/dist-es/runtimeConfig.browser.js +1 -1
- package/dist-es/runtimeConfig.js +1 -1
- package/dist-types/ConnectParticipantClient.d.ts +4 -4
- package/dist-types/commands/CompleteAttachmentUploadCommand.d.ts +4 -2
- package/dist-types/commands/GetTranscriptCommand.d.ts +32 -2
- package/dist-types/commands/SendEventCommand.d.ts +11 -2
- package/dist-types/models/models_0.d.ts +24 -16
- package/dist-types/runtimeConfig.browser.d.ts +1 -4
- package/dist-types/runtimeConfig.d.ts +1 -4
- package/dist-types/runtimeConfig.native.d.ts +1 -4
- package/dist-types/ts3.4/ConnectParticipantClient.d.ts +3 -3
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +1 -13
- package/dist-types/ts3.4/runtimeConfig.d.ts +2 -14
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +4 -13
- package/package.json +34 -34
|
@@ -28,7 +28,7 @@ const getRuntimeConfig = (config) => {
|
|
|
28
28
|
(0, util_user_agent_browser_1.defaultUserAgent)({ serviceId: clientSharedValues.serviceId, clientVersion: package_json_1.default.version }),
|
|
29
29
|
maxAttempts: config?.maxAttempts ?? util_retry_1.DEFAULT_MAX_ATTEMPTS,
|
|
30
30
|
region: config?.region ?? (0, invalid_dependency_1.invalidProvider)("Region is missing"),
|
|
31
|
-
requestHandler: config?.requestHandler ??
|
|
31
|
+
requestHandler: fetch_http_handler_1.FetchHttpHandler.create(config?.requestHandler ?? defaultConfigProvider),
|
|
32
32
|
retryMode: config?.retryMode ?? (async () => (await defaultConfigProvider()).retryMode || util_retry_1.DEFAULT_RETRY_MODE),
|
|
33
33
|
sha256: config?.sha256 ?? sha256_browser_1.Sha256,
|
|
34
34
|
streamCollector: config?.streamCollector ?? fetch_http_handler_1.streamCollector,
|
|
@@ -34,7 +34,7 @@ const getRuntimeConfig = (config) => {
|
|
|
34
34
|
(0, util_user_agent_node_1.defaultUserAgent)({ serviceId: clientSharedValues.serviceId, clientVersion: package_json_1.default.version }),
|
|
35
35
|
maxAttempts: config?.maxAttempts ?? (0, node_config_provider_1.loadConfig)(middleware_retry_1.NODE_MAX_ATTEMPT_CONFIG_OPTIONS),
|
|
36
36
|
region: config?.region ?? (0, node_config_provider_1.loadConfig)(config_resolver_1.NODE_REGION_CONFIG_OPTIONS, config_resolver_1.NODE_REGION_CONFIG_FILE_OPTIONS),
|
|
37
|
-
requestHandler: config?.requestHandler ??
|
|
37
|
+
requestHandler: node_http_handler_1.NodeHttpHandler.create(config?.requestHandler ?? defaultConfigProvider),
|
|
38
38
|
retryMode: config?.retryMode ??
|
|
39
39
|
(0, node_config_provider_1.loadConfig)({
|
|
40
40
|
...middleware_retry_1.NODE_RETRY_MODE_CONFIG_OPTIONS,
|
|
@@ -24,7 +24,7 @@ export const getRuntimeConfig = (config) => {
|
|
|
24
24
|
defaultUserAgent({ serviceId: clientSharedValues.serviceId, clientVersion: packageInfo.version }),
|
|
25
25
|
maxAttempts: config?.maxAttempts ?? DEFAULT_MAX_ATTEMPTS,
|
|
26
26
|
region: config?.region ?? invalidProvider("Region is missing"),
|
|
27
|
-
requestHandler: config?.requestHandler ??
|
|
27
|
+
requestHandler: RequestHandler.create(config?.requestHandler ?? defaultConfigProvider),
|
|
28
28
|
retryMode: config?.retryMode ?? (async () => (await defaultConfigProvider()).retryMode || DEFAULT_RETRY_MODE),
|
|
29
29
|
sha256: config?.sha256 ?? Sha256,
|
|
30
30
|
streamCollector: config?.streamCollector ?? streamCollector,
|
package/dist-es/runtimeConfig.js
CHANGED
|
@@ -30,7 +30,7 @@ export const getRuntimeConfig = (config) => {
|
|
|
30
30
|
defaultUserAgent({ serviceId: clientSharedValues.serviceId, clientVersion: packageInfo.version }),
|
|
31
31
|
maxAttempts: config?.maxAttempts ?? loadNodeConfig(NODE_MAX_ATTEMPT_CONFIG_OPTIONS),
|
|
32
32
|
region: config?.region ?? loadNodeConfig(NODE_REGION_CONFIG_OPTIONS, NODE_REGION_CONFIG_FILE_OPTIONS),
|
|
33
|
-
requestHandler: config?.requestHandler ??
|
|
33
|
+
requestHandler: RequestHandler.create(config?.requestHandler ?? defaultConfigProvider),
|
|
34
34
|
retryMode: config?.retryMode ??
|
|
35
35
|
loadNodeConfig({
|
|
36
36
|
...NODE_RETRY_MODE_CONFIG_OPTIONS,
|
|
@@ -3,7 +3,7 @@ import { UserAgentInputConfig, UserAgentResolvedConfig } from "@aws-sdk/middlewa
|
|
|
3
3
|
import { RegionInputConfig, RegionResolvedConfig } from "@smithy/config-resolver";
|
|
4
4
|
import { EndpointInputConfig, EndpointResolvedConfig } from "@smithy/middleware-endpoint";
|
|
5
5
|
import { RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry";
|
|
6
|
-
import {
|
|
6
|
+
import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http";
|
|
7
7
|
import { Client as __Client, DefaultsMode as __DefaultsMode, SmithyConfiguration as __SmithyConfiguration, SmithyResolvedConfiguration as __SmithyResolvedConfiguration } from "@smithy/smithy-client";
|
|
8
8
|
import { AwsCredentialIdentityProvider, BodyLengthCalculator as __BodyLengthCalculator, CheckOptionalClientConfig as __CheckOptionalClientConfig, ChecksumConstructor as __ChecksumConstructor, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, Provider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@smithy/types";
|
|
9
9
|
import { HttpAuthSchemeInputConfig, HttpAuthSchemeResolvedConfig } from "./auth/httpAuthSchemeProvider";
|
|
@@ -30,11 +30,11 @@ export type ServiceOutputTypes = CompleteAttachmentUploadCommandOutput | CreateP
|
|
|
30
30
|
/**
|
|
31
31
|
* @public
|
|
32
32
|
*/
|
|
33
|
-
export interface ClientDefaults extends Partial<
|
|
33
|
+
export interface ClientDefaults extends Partial<__SmithyConfiguration<__HttpHandlerOptions>> {
|
|
34
34
|
/**
|
|
35
|
-
* The HTTP handler to use. Fetch in browser and Https in Nodejs.
|
|
35
|
+
* The HTTP handler to use or its constructor options. Fetch in browser and Https in Nodejs.
|
|
36
36
|
*/
|
|
37
|
-
requestHandler?:
|
|
37
|
+
requestHandler?: __HttpHandlerUserInput;
|
|
38
38
|
/**
|
|
39
39
|
* A constructor for a class implementing the {@link @smithy/types#ChecksumConstructor} interface
|
|
40
40
|
* that computes the SHA-256 HMAC or checksum of a string or binary buffer.
|
|
@@ -27,7 +27,8 @@ declare const CompleteAttachmentUploadCommand_base: {
|
|
|
27
27
|
/**
|
|
28
28
|
* @public
|
|
29
29
|
* <p>Allows you to confirm that the attachment has been uploaded using the pre-signed URL
|
|
30
|
-
* provided in StartAttachmentUpload API.
|
|
30
|
+
* provided in StartAttachmentUpload API. A conflict exception is thrown when an attachment
|
|
31
|
+
* with that identifier is already being uploaded.</p>
|
|
31
32
|
* <note>
|
|
32
33
|
* <p>
|
|
33
34
|
* <code>ConnectionToken</code> is used for invoking this API instead of
|
|
@@ -64,7 +65,8 @@ declare const CompleteAttachmentUploadCommand_base: {
|
|
|
64
65
|
* <p>You do not have sufficient access to perform this action.</p>
|
|
65
66
|
*
|
|
66
67
|
* @throws {@link ConflictException} (client fault)
|
|
67
|
-
* <p>
|
|
68
|
+
* <p>The requested operation conflicts with the current state of a service
|
|
69
|
+
* resource associated with the request. </p>
|
|
68
70
|
*
|
|
69
71
|
* @throws {@link InternalServerException} (server fault)
|
|
70
72
|
* <p>This exception occurs when there is an internal failure in the Amazon Connect service.</p>
|
|
@@ -28,11 +28,41 @@ declare const GetTranscriptCommand_base: {
|
|
|
28
28
|
* @public
|
|
29
29
|
* <p>Retrieves a transcript of the session, including details about any attachments. For
|
|
30
30
|
* information about accessing past chat contact transcripts for a persistent chat, see
|
|
31
|
-
*
|
|
31
|
+
* <a href="https://docs.aws.amazon.com/connect/latest/adminguide/chat-persistence.html">Enable persistent chat</a>. </p>
|
|
32
|
+
* <p>If you have a process that consumes events in the transcript of an chat that has ended, note that chat
|
|
33
|
+
* transcripts contain the following event content types if the event has occurred
|
|
34
|
+
* during the chat session:</p>
|
|
35
|
+
* <ul>
|
|
36
|
+
* <li>
|
|
37
|
+
* <p>
|
|
38
|
+
* <code>application/vnd.amazonaws.connect.event.participant.left</code>
|
|
39
|
+
* </p>
|
|
40
|
+
* </li>
|
|
41
|
+
* <li>
|
|
42
|
+
* <p>
|
|
43
|
+
* <code>application/vnd.amazonaws.connect.event.participant.joined</code>
|
|
44
|
+
* </p>
|
|
45
|
+
* </li>
|
|
46
|
+
* <li>
|
|
47
|
+
* <p>
|
|
48
|
+
* <code>application/vnd.amazonaws.connect.event.chat.ended</code>
|
|
49
|
+
* </p>
|
|
50
|
+
* </li>
|
|
51
|
+
* <li>
|
|
52
|
+
* <p>
|
|
53
|
+
* <code>application/vnd.amazonaws.connect.event.transfer.succeeded</code>
|
|
54
|
+
* </p>
|
|
55
|
+
* </li>
|
|
56
|
+
* <li>
|
|
57
|
+
* <p>
|
|
58
|
+
* <code>application/vnd.amazonaws.connect.event.transfer.failed</code>
|
|
59
|
+
* </p>
|
|
60
|
+
* </li>
|
|
61
|
+
* </ul>
|
|
32
62
|
* <note>
|
|
33
63
|
* <p>
|
|
34
64
|
* <code>ConnectionToken</code> is used for invoking this API instead of
|
|
35
|
-
*
|
|
65
|
+
* <code>ParticipantToken</code>.</p>
|
|
36
66
|
* </note>
|
|
37
67
|
* <p>The Amazon Connect Participant Service APIs do not use <a href="https://docs.aws.amazon.com/general/latest/gr/signature-version-4.html">Signature Version 4
|
|
38
68
|
* authentication</a>.</p>
|
|
@@ -26,7 +26,15 @@ declare const SendEventCommand_base: {
|
|
|
26
26
|
};
|
|
27
27
|
/**
|
|
28
28
|
* @public
|
|
29
|
-
* <
|
|
29
|
+
* <note>
|
|
30
|
+
* <p>The <code>application/vnd.amazonaws.connect.event.connection.acknowledged</code>
|
|
31
|
+
* ContentType will no longer be supported starting December 31, 2024. This event has
|
|
32
|
+
* been migrated to the <a href="https://docs.aws.amazon.com/connect-participant/latest/APIReference/API_CreateParticipantConnection.html">CreateParticipantConnection</a> API using the
|
|
33
|
+
* <code>ConnectParticipant</code> field.</p>
|
|
34
|
+
* </note>
|
|
35
|
+
* <p>Sends an event. Message receipts are not supported when there are more than two active
|
|
36
|
+
* participants in the chat. Using the SendEvent API for message receipts when a supervisor
|
|
37
|
+
* is barged-in will result in a conflict exception.</p>
|
|
30
38
|
* <note>
|
|
31
39
|
* <p>
|
|
32
40
|
* <code>ConnectionToken</code> is used for invoking this API instead of
|
|
@@ -65,7 +73,8 @@ declare const SendEventCommand_base: {
|
|
|
65
73
|
* <p>You do not have sufficient access to perform this action.</p>
|
|
66
74
|
*
|
|
67
75
|
* @throws {@link ConflictException} (client fault)
|
|
68
|
-
* <p>
|
|
76
|
+
* <p>The requested operation conflicts with the current state of a service
|
|
77
|
+
* resource associated with the request. </p>
|
|
69
78
|
*
|
|
70
79
|
* @throws {@link InternalServerException} (server fault)
|
|
71
80
|
* <p>This exception occurs when there is an internal failure in the Amazon Connect service.</p>
|
|
@@ -43,7 +43,8 @@ export interface CompleteAttachmentUploadResponse {
|
|
|
43
43
|
}
|
|
44
44
|
/**
|
|
45
45
|
* @public
|
|
46
|
-
* <p>
|
|
46
|
+
* <p>The requested operation conflicts with the current state of a service
|
|
47
|
+
* resource associated with the request. </p>
|
|
47
48
|
*/
|
|
48
49
|
export declare class ConflictException extends __BaseException {
|
|
49
50
|
readonly name: "ConflictException";
|
|
@@ -124,9 +125,9 @@ export type ConnectionType = (typeof ConnectionType)[keyof typeof ConnectionType
|
|
|
124
125
|
export interface CreateParticipantConnectionRequest {
|
|
125
126
|
/**
|
|
126
127
|
* @public
|
|
127
|
-
* <p>Type of connection information required. If you need
|
|
128
|
-
*
|
|
129
|
-
* <code>Type</code>.</p>
|
|
128
|
+
* <p>Type of connection information required. If you need
|
|
129
|
+
* <code>CONNECTION_CREDENTIALS</code> along with marking participant as connected,
|
|
130
|
+
* pass <code>CONNECTION_CREDENTIALS</code> in <code>Type</code>.</p>
|
|
130
131
|
*/
|
|
131
132
|
Type?: ConnectionType[];
|
|
132
133
|
/**
|
|
@@ -202,8 +203,8 @@ export interface CreateParticipantConnectionResponse {
|
|
|
202
203
|
export interface DescribeViewRequest {
|
|
203
204
|
/**
|
|
204
205
|
* @public
|
|
205
|
-
* <p>An encrypted token originating from the interactive message of a ShowView block
|
|
206
|
-
* Represents the desired view.</p>
|
|
206
|
+
* <p>An encrypted token originating from the interactive message of a ShowView block
|
|
207
|
+
* operation. Represents the desired view.</p>
|
|
207
208
|
*/
|
|
208
209
|
ViewToken: string | undefined;
|
|
209
210
|
/**
|
|
@@ -214,12 +215,14 @@ export interface DescribeViewRequest {
|
|
|
214
215
|
}
|
|
215
216
|
/**
|
|
216
217
|
* @public
|
|
217
|
-
* <p>View content containing all content necessary to render a view except for runtime
|
|
218
|
+
* <p>View content containing all content necessary to render a view except for runtime
|
|
219
|
+
* input data.</p>
|
|
218
220
|
*/
|
|
219
221
|
export interface ViewContent {
|
|
220
222
|
/**
|
|
221
223
|
* @public
|
|
222
|
-
* <p>The schema representing the input data that the view template must be supplied to
|
|
224
|
+
* <p>The schema representing the input data that the view template must be supplied to
|
|
225
|
+
* render.</p>
|
|
223
226
|
*/
|
|
224
227
|
InputSchema?: string;
|
|
225
228
|
/**
|
|
@@ -235,7 +238,8 @@ export interface ViewContent {
|
|
|
235
238
|
}
|
|
236
239
|
/**
|
|
237
240
|
* @public
|
|
238
|
-
* <p>A view resource object. Contains metadata and content necessary to render the
|
|
241
|
+
* <p>A view resource object. Contains metadata and content necessary to render the
|
|
242
|
+
* view.</p>
|
|
239
243
|
*/
|
|
240
244
|
export interface View {
|
|
241
245
|
/**
|
|
@@ -260,7 +264,8 @@ export interface View {
|
|
|
260
264
|
Version?: number;
|
|
261
265
|
/**
|
|
262
266
|
* @public
|
|
263
|
-
* <p>View content containing all content necessary to render a view except for runtime
|
|
267
|
+
* <p>View content containing all content necessary to render a view except for runtime
|
|
268
|
+
* input data.</p>
|
|
264
269
|
*/
|
|
265
270
|
Content?: ViewContent;
|
|
266
271
|
}
|
|
@@ -270,7 +275,8 @@ export interface View {
|
|
|
270
275
|
export interface DescribeViewResponse {
|
|
271
276
|
/**
|
|
272
277
|
* @public
|
|
273
|
-
* <p>A view resource object. Contains metadata and content necessary to render the
|
|
278
|
+
* <p>A view resource object. Contains metadata and content necessary to render the
|
|
279
|
+
* view.</p>
|
|
274
280
|
*/
|
|
275
281
|
View?: View;
|
|
276
282
|
}
|
|
@@ -679,7 +685,8 @@ export interface SendEventRequest {
|
|
|
679
685
|
* <p>application/vnd.amazonaws.connect.event.typing</p>
|
|
680
686
|
* </li>
|
|
681
687
|
* <li>
|
|
682
|
-
* <p>application/vnd.amazonaws.connect.event.connection.acknowledged
|
|
688
|
+
* <p>application/vnd.amazonaws.connect.event.connection.acknowledged (will be
|
|
689
|
+
* deprecated on December 31, 2024) </p>
|
|
683
690
|
* </li>
|
|
684
691
|
* <li>
|
|
685
692
|
* <p>application/vnd.amazonaws.connect.event.message.delivered</p>
|
|
@@ -735,8 +742,8 @@ export interface SendMessageRequest {
|
|
|
735
742
|
/**
|
|
736
743
|
* @public
|
|
737
744
|
* <p>The type of the content. Supported types are <code>text/plain</code>,
|
|
738
|
-
*
|
|
739
|
-
*
|
|
745
|
+
* <code>text/markdown</code>, <code>application/json</code>, and
|
|
746
|
+
* <code>application/vnd.amazonaws.connect.message.interactive.response</code>.</p>
|
|
740
747
|
*/
|
|
741
748
|
ContentType: string | undefined;
|
|
742
749
|
/**
|
|
@@ -752,8 +759,9 @@ export interface SendMessageRequest {
|
|
|
752
759
|
* Maximum of 12000. </p>
|
|
753
760
|
* </li>
|
|
754
761
|
* <li>
|
|
755
|
-
* <p>For
|
|
756
|
-
*
|
|
762
|
+
* <p>For
|
|
763
|
+
* <code>application/vnd.amazonaws.connect.message.interactive.response</code>,
|
|
764
|
+
* the Length Constraints are Minimum of 1, Maximum of 12288.</p>
|
|
757
765
|
* </li>
|
|
758
766
|
* </ul>
|
|
759
767
|
*/
|
|
@@ -11,10 +11,7 @@ export declare const getRuntimeConfig: (config: ConnectParticipantClientConfig)
|
|
|
11
11
|
defaultUserAgentProvider: import("@smithy/types").Provider<import("@smithy/types").UserAgent>;
|
|
12
12
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
13
13
|
region: string | import("@smithy/types").Provider<any>;
|
|
14
|
-
requestHandler:
|
|
15
|
-
updateHttpClientConfig(key: never, value: never): void;
|
|
16
|
-
httpHandlerConfigs(): {};
|
|
17
|
-
}) | RequestHandler;
|
|
14
|
+
requestHandler: import("@smithy/protocol-http").HttpHandler<any> | RequestHandler;
|
|
18
15
|
retryMode: string | import("@smithy/types").Provider<string>;
|
|
19
16
|
sha256: import("@smithy/types").HashConstructor;
|
|
20
17
|
streamCollector: import("@smithy/types").StreamCollector;
|
|
@@ -11,10 +11,7 @@ export declare const getRuntimeConfig: (config: ConnectParticipantClientConfig)
|
|
|
11
11
|
defaultUserAgentProvider: import("@smithy/types").Provider<import("@smithy/types").UserAgent>;
|
|
12
12
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
13
13
|
region: string | import("@smithy/types").Provider<string>;
|
|
14
|
-
requestHandler:
|
|
15
|
-
updateHttpClientConfig(key: never, value: never): void;
|
|
16
|
-
httpHandlerConfigs(): {};
|
|
17
|
-
}) | RequestHandler;
|
|
14
|
+
requestHandler: RequestHandler | import("@smithy/protocol-http").HttpHandler<any>;
|
|
18
15
|
retryMode: string | import("@smithy/types").Provider<string>;
|
|
19
16
|
sha256: import("@smithy/types").HashConstructor;
|
|
20
17
|
streamCollector: import("@smithy/types").StreamCollector;
|
|
@@ -5,10 +5,7 @@ import { ConnectParticipantClientConfig } from "./ConnectParticipantClient";
|
|
|
5
5
|
export declare const getRuntimeConfig: (config: ConnectParticipantClientConfig) => {
|
|
6
6
|
runtime: string;
|
|
7
7
|
sha256: import("@smithy/types").HashConstructor;
|
|
8
|
-
requestHandler:
|
|
9
|
-
updateHttpClientConfig(key: never, value: never): void;
|
|
10
|
-
httpHandlerConfigs(): {};
|
|
11
|
-
}) | import("@smithy/fetch-http-handler").FetchHttpHandler;
|
|
8
|
+
requestHandler: import("@smithy/types").NodeHttpHandlerOptions | import("@smithy/types").FetchHttpHandlerOptions | Record<string, unknown> | import("@smithy/protocol-http").HttpHandler<any> | import("@smithy/fetch-http-handler").FetchHttpHandler;
|
|
12
9
|
apiVersion: string;
|
|
13
10
|
urlParser: import("@smithy/types").UrlParser;
|
|
14
11
|
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
@@ -18,7 +18,7 @@ import {
|
|
|
18
18
|
RetryInputConfig,
|
|
19
19
|
RetryResolvedConfig,
|
|
20
20
|
} from "@smithy/middleware-retry";
|
|
21
|
-
import {
|
|
21
|
+
import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http";
|
|
22
22
|
import {
|
|
23
23
|
Client as __Client,
|
|
24
24
|
DefaultsMode as __DefaultsMode,
|
|
@@ -109,8 +109,8 @@ export type ServiceOutputTypes =
|
|
|
109
109
|
| SendMessageCommandOutput
|
|
110
110
|
| StartAttachmentUploadCommandOutput;
|
|
111
111
|
export interface ClientDefaults
|
|
112
|
-
extends Partial<
|
|
113
|
-
requestHandler?:
|
|
112
|
+
extends Partial<__SmithyConfiguration<__HttpHandlerOptions>> {
|
|
113
|
+
requestHandler?: __HttpHandlerUserInput;
|
|
114
114
|
sha256?: __ChecksumConstructor | __HashConstructor;
|
|
115
115
|
urlParser?: __UrlParser;
|
|
116
116
|
bodyLengthChecker?: __BodyLengthCalculator;
|
|
@@ -17,19 +17,7 @@ export declare const getRuntimeConfig: (
|
|
|
17
17
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
18
18
|
region: string | import("@smithy/types").Provider<any>;
|
|
19
19
|
requestHandler:
|
|
20
|
-
|
|
|
21
|
-
any,
|
|
22
|
-
any,
|
|
23
|
-
import("@smithy/types").HttpHandlerOptions
|
|
24
|
-
> &
|
|
25
|
-
import("@smithy/types").RequestHandler<
|
|
26
|
-
import("@smithy/protocol-http").HttpRequest,
|
|
27
|
-
import("@smithy/protocol-http").HttpResponse,
|
|
28
|
-
import("@smithy/types").HttpHandlerOptions
|
|
29
|
-
> & {
|
|
30
|
-
updateHttpClientConfig(key: never, value: never): void;
|
|
31
|
-
httpHandlerConfigs(): {};
|
|
32
|
-
})
|
|
20
|
+
| import("@smithy/protocol-http").HttpHandler<any>
|
|
33
21
|
| RequestHandler;
|
|
34
22
|
retryMode: string | import("@smithy/types").Provider<string>;
|
|
35
23
|
sha256: import("@smithy/types").HashConstructor;
|
|
@@ -21,20 +21,8 @@ export declare const getRuntimeConfig: (
|
|
|
21
21
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
22
22
|
region: string | import("@smithy/types").Provider<string>;
|
|
23
23
|
requestHandler:
|
|
24
|
-
|
|
|
25
|
-
|
|
26
|
-
any,
|
|
27
|
-
import("@smithy/types").HttpHandlerOptions
|
|
28
|
-
> &
|
|
29
|
-
import("@smithy/types").RequestHandler<
|
|
30
|
-
import("@smithy/protocol-http").HttpRequest,
|
|
31
|
-
import("@smithy/protocol-http").HttpResponse,
|
|
32
|
-
import("@smithy/types").HttpHandlerOptions
|
|
33
|
-
> & {
|
|
34
|
-
updateHttpClientConfig(key: never, value: never): void;
|
|
35
|
-
httpHandlerConfigs(): {};
|
|
36
|
-
})
|
|
37
|
-
| RequestHandler;
|
|
24
|
+
| RequestHandler
|
|
25
|
+
| import("@smithy/protocol-http").HttpHandler<any>;
|
|
38
26
|
retryMode: string | import("@smithy/types").Provider<string>;
|
|
39
27
|
sha256: import("@smithy/types").HashConstructor;
|
|
40
28
|
streamCollector: import("@smithy/types").StreamCollector;
|
|
@@ -5,19 +5,10 @@ export declare const getRuntimeConfig: (
|
|
|
5
5
|
runtime: string;
|
|
6
6
|
sha256: import("@smithy/types").HashConstructor;
|
|
7
7
|
requestHandler:
|
|
8
|
-
|
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
> &
|
|
13
|
-
import("@smithy/types").RequestHandler<
|
|
14
|
-
import("@smithy/protocol-http").HttpRequest,
|
|
15
|
-
import("@smithy/protocol-http").HttpResponse,
|
|
16
|
-
import("@smithy/types").HttpHandlerOptions
|
|
17
|
-
> & {
|
|
18
|
-
updateHttpClientConfig(key: never, value: never): void;
|
|
19
|
-
httpHandlerConfigs(): {};
|
|
20
|
-
})
|
|
8
|
+
| import("@smithy/types").NodeHttpHandlerOptions
|
|
9
|
+
| import("@smithy/types").FetchHttpHandlerOptions
|
|
10
|
+
| Record<string, unknown>
|
|
11
|
+
| import("@smithy/protocol-http").HttpHandler<any>
|
|
21
12
|
| import("@smithy/fetch-http-handler").FetchHttpHandler;
|
|
22
13
|
apiVersion: string;
|
|
23
14
|
urlParser: import("@smithy/types").UrlParser;
|
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.521.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,42 +20,42 @@
|
|
|
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.1.
|
|
36
|
-
"@smithy/core": "^1.3.
|
|
37
|
-
"@smithy/fetch-http-handler": "^2.4.
|
|
38
|
-
"@smithy/hash-node": "^2.1.
|
|
39
|
-
"@smithy/invalid-dependency": "^2.1.
|
|
40
|
-
"@smithy/middleware-content-length": "^2.1.
|
|
41
|
-
"@smithy/middleware-endpoint": "^2.4.
|
|
42
|
-
"@smithy/middleware-retry": "^2.1.
|
|
43
|
-
"@smithy/middleware-serde": "^2.1.
|
|
44
|
-
"@smithy/middleware-stack": "^2.1.
|
|
45
|
-
"@smithy/node-config-provider": "^2.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.1.
|
|
23
|
+
"@aws-sdk/client-sts": "3.521.0",
|
|
24
|
+
"@aws-sdk/core": "3.521.0",
|
|
25
|
+
"@aws-sdk/credential-provider-node": "3.521.0",
|
|
26
|
+
"@aws-sdk/middleware-host-header": "3.521.0",
|
|
27
|
+
"@aws-sdk/middleware-logger": "3.521.0",
|
|
28
|
+
"@aws-sdk/middleware-recursion-detection": "3.521.0",
|
|
29
|
+
"@aws-sdk/middleware-user-agent": "3.521.0",
|
|
30
|
+
"@aws-sdk/region-config-resolver": "3.521.0",
|
|
31
|
+
"@aws-sdk/types": "3.521.0",
|
|
32
|
+
"@aws-sdk/util-endpoints": "3.521.0",
|
|
33
|
+
"@aws-sdk/util-user-agent-browser": "3.521.0",
|
|
34
|
+
"@aws-sdk/util-user-agent-node": "3.521.0",
|
|
35
|
+
"@smithy/config-resolver": "^2.1.2",
|
|
36
|
+
"@smithy/core": "^1.3.3",
|
|
37
|
+
"@smithy/fetch-http-handler": "^2.4.2",
|
|
38
|
+
"@smithy/hash-node": "^2.1.2",
|
|
39
|
+
"@smithy/invalid-dependency": "^2.1.2",
|
|
40
|
+
"@smithy/middleware-content-length": "^2.1.2",
|
|
41
|
+
"@smithy/middleware-endpoint": "^2.4.2",
|
|
42
|
+
"@smithy/middleware-retry": "^2.1.2",
|
|
43
|
+
"@smithy/middleware-serde": "^2.1.2",
|
|
44
|
+
"@smithy/middleware-stack": "^2.1.2",
|
|
45
|
+
"@smithy/node-config-provider": "^2.2.2",
|
|
46
|
+
"@smithy/node-http-handler": "^2.4.0",
|
|
47
|
+
"@smithy/protocol-http": "^3.2.0",
|
|
48
|
+
"@smithy/smithy-client": "^2.4.0",
|
|
49
|
+
"@smithy/types": "^2.10.0",
|
|
50
|
+
"@smithy/url-parser": "^2.1.2",
|
|
51
51
|
"@smithy/util-base64": "^2.1.1",
|
|
52
52
|
"@smithy/util-body-length-browser": "^2.1.1",
|
|
53
53
|
"@smithy/util-body-length-node": "^2.2.1",
|
|
54
|
-
"@smithy/util-defaults-mode-browser": "^2.1.
|
|
55
|
-
"@smithy/util-defaults-mode-node": "^2.2.
|
|
56
|
-
"@smithy/util-endpoints": "^1.1.
|
|
57
|
-
"@smithy/util-middleware": "^2.1.
|
|
58
|
-
"@smithy/util-retry": "^2.1.
|
|
54
|
+
"@smithy/util-defaults-mode-browser": "^2.1.2",
|
|
55
|
+
"@smithy/util-defaults-mode-node": "^2.2.1",
|
|
56
|
+
"@smithy/util-endpoints": "^1.1.2",
|
|
57
|
+
"@smithy/util-middleware": "^2.1.2",
|
|
58
|
+
"@smithy/util-retry": "^2.1.2",
|
|
59
59
|
"@smithy/util-utf8": "^2.1.1",
|
|
60
60
|
"tslib": "^2.5.0",
|
|
61
61
|
"uuid": "^9.0.1"
|