@aws-sdk/client-healthlake 3.1037.0 → 3.1038.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/HealthLake.d.ts +4 -4
- package/dist-types/ts3.4/HealthLake.d.ts +4 -4
- package/dist-types/ts3.4/waiters/waitForFHIRDatastoreActive.d.ts +9 -3
- package/dist-types/ts3.4/waiters/waitForFHIRDatastoreDeleted.d.ts +9 -3
- package/dist-types/ts3.4/waiters/waitForFHIRExportJobCompleted.d.ts +9 -3
- package/dist-types/ts3.4/waiters/waitForFHIRImportJobCompleted.d.ts +9 -3
- package/dist-types/waiters/waitForFHIRDatastoreActive.d.ts +4 -3
- package/dist-types/waiters/waitForFHIRDatastoreDeleted.d.ts +4 -3
- package/dist-types/waiters/waitForFHIRExportJobCompleted.d.ts +4 -3
- package/dist-types/waiters/waitForFHIRImportJobCompleted.d.ts +4 -3
- package/package.json +8 -8
|
@@ -120,25 +120,25 @@ export interface HealthLake {
|
|
|
120
120
|
* @param args - command input.
|
|
121
121
|
* @param waiterConfig - `maxWaitTime` in seconds or waiter config object.
|
|
122
122
|
*/
|
|
123
|
-
waitUntilFHIRDatastoreActive(args: DescribeFHIRDatastoreCommandInput, waiterConfig: number | Omit<WaiterConfiguration<HealthLake>, "client">): Promise<WaiterResult
|
|
123
|
+
waitUntilFHIRDatastoreActive(args: DescribeFHIRDatastoreCommandInput, waiterConfig: number | Omit<WaiterConfiguration<HealthLake>, "client">): Promise<WaiterResult<DescribeFHIRDatastoreCommandOutput>>;
|
|
124
124
|
/**
|
|
125
125
|
* @see {@link DescribeFHIRDatastoreCommand}
|
|
126
126
|
* @param args - command input.
|
|
127
127
|
* @param waiterConfig - `maxWaitTime` in seconds or waiter config object.
|
|
128
128
|
*/
|
|
129
|
-
waitUntilFHIRDatastoreDeleted(args: DescribeFHIRDatastoreCommandInput, waiterConfig: number | Omit<WaiterConfiguration<HealthLake>, "client">): Promise<WaiterResult
|
|
129
|
+
waitUntilFHIRDatastoreDeleted(args: DescribeFHIRDatastoreCommandInput, waiterConfig: number | Omit<WaiterConfiguration<HealthLake>, "client">): Promise<WaiterResult<DescribeFHIRDatastoreCommandOutput>>;
|
|
130
130
|
/**
|
|
131
131
|
* @see {@link DescribeFHIRExportJobCommand}
|
|
132
132
|
* @param args - command input.
|
|
133
133
|
* @param waiterConfig - `maxWaitTime` in seconds or waiter config object.
|
|
134
134
|
*/
|
|
135
|
-
waitUntilFHIRExportJobCompleted(args: DescribeFHIRExportJobCommandInput, waiterConfig: number | Omit<WaiterConfiguration<HealthLake>, "client">): Promise<WaiterResult
|
|
135
|
+
waitUntilFHIRExportJobCompleted(args: DescribeFHIRExportJobCommandInput, waiterConfig: number | Omit<WaiterConfiguration<HealthLake>, "client">): Promise<WaiterResult<DescribeFHIRExportJobCommandOutput>>;
|
|
136
136
|
/**
|
|
137
137
|
* @see {@link DescribeFHIRImportJobCommand}
|
|
138
138
|
* @param args - command input.
|
|
139
139
|
* @param waiterConfig - `maxWaitTime` in seconds or waiter config object.
|
|
140
140
|
*/
|
|
141
|
-
waitUntilFHIRImportJobCompleted(args: DescribeFHIRImportJobCommandInput, waiterConfig: number | Omit<WaiterConfiguration<HealthLake>, "client">): Promise<WaiterResult
|
|
141
|
+
waitUntilFHIRImportJobCompleted(args: DescribeFHIRImportJobCommandInput, waiterConfig: number | Omit<WaiterConfiguration<HealthLake>, "client">): Promise<WaiterResult<DescribeFHIRImportJobCommandOutput>>;
|
|
142
142
|
}
|
|
143
143
|
/**
|
|
144
144
|
* <p>This is the <i>AWS HealthLake API Reference</i>. For an introduction to
|
|
@@ -258,7 +258,7 @@ export interface HealthLake {
|
|
|
258
258
|
WaiterConfiguration<HealthLake>,
|
|
259
259
|
Exclude<keyof WaiterConfiguration<HealthLake>, "client">
|
|
260
260
|
>
|
|
261
|
-
): Promise<WaiterResult
|
|
261
|
+
): Promise<WaiterResult<DescribeFHIRDatastoreCommandOutput>>;
|
|
262
262
|
waitUntilFHIRDatastoreDeleted(
|
|
263
263
|
args: DescribeFHIRDatastoreCommandInput,
|
|
264
264
|
waiterConfig:
|
|
@@ -267,7 +267,7 @@ export interface HealthLake {
|
|
|
267
267
|
WaiterConfiguration<HealthLake>,
|
|
268
268
|
Exclude<keyof WaiterConfiguration<HealthLake>, "client">
|
|
269
269
|
>
|
|
270
|
-
): Promise<WaiterResult
|
|
270
|
+
): Promise<WaiterResult<DescribeFHIRDatastoreCommandOutput>>;
|
|
271
271
|
waitUntilFHIRExportJobCompleted(
|
|
272
272
|
args: DescribeFHIRExportJobCommandInput,
|
|
273
273
|
waiterConfig:
|
|
@@ -276,7 +276,7 @@ export interface HealthLake {
|
|
|
276
276
|
WaiterConfiguration<HealthLake>,
|
|
277
277
|
Exclude<keyof WaiterConfiguration<HealthLake>, "client">
|
|
278
278
|
>
|
|
279
|
-
): Promise<WaiterResult
|
|
279
|
+
): Promise<WaiterResult<DescribeFHIRExportJobCommandOutput>>;
|
|
280
280
|
waitUntilFHIRImportJobCompleted(
|
|
281
281
|
args: DescribeFHIRImportJobCommandInput,
|
|
282
282
|
waiterConfig:
|
|
@@ -285,7 +285,7 @@ export interface HealthLake {
|
|
|
285
285
|
WaiterConfiguration<HealthLake>,
|
|
286
286
|
Exclude<keyof WaiterConfiguration<HealthLake>, "client">
|
|
287
287
|
>
|
|
288
|
-
): Promise<WaiterResult
|
|
288
|
+
): Promise<WaiterResult<DescribeFHIRImportJobCommandOutput>>;
|
|
289
289
|
}
|
|
290
290
|
export declare class HealthLake
|
|
291
291
|
extends HealthLakeClient
|
|
@@ -1,11 +1,17 @@
|
|
|
1
1
|
import { WaiterConfiguration, WaiterResult } from "@smithy/util-waiter";
|
|
2
|
-
import {
|
|
2
|
+
import {
|
|
3
|
+
DescribeFHIRDatastoreCommandInput,
|
|
4
|
+
DescribeFHIRDatastoreCommandOutput,
|
|
5
|
+
} from "../commands/DescribeFHIRDatastoreCommand";
|
|
3
6
|
import { HealthLakeClient } from "../HealthLakeClient";
|
|
7
|
+
import { HealthLakeServiceException } from "../models/HealthLakeServiceException";
|
|
4
8
|
export declare const waitForFHIRDatastoreActive: (
|
|
5
9
|
params: WaiterConfiguration<HealthLakeClient>,
|
|
6
10
|
input: DescribeFHIRDatastoreCommandInput
|
|
7
|
-
) => Promise<
|
|
11
|
+
) => Promise<
|
|
12
|
+
WaiterResult<DescribeFHIRDatastoreCommandOutput | HealthLakeServiceException>
|
|
13
|
+
>;
|
|
8
14
|
export declare const waitUntilFHIRDatastoreActive: (
|
|
9
15
|
params: WaiterConfiguration<HealthLakeClient>,
|
|
10
16
|
input: DescribeFHIRDatastoreCommandInput
|
|
11
|
-
) => Promise<WaiterResult
|
|
17
|
+
) => Promise<WaiterResult<DescribeFHIRDatastoreCommandOutput>>;
|
|
@@ -1,11 +1,17 @@
|
|
|
1
1
|
import { WaiterConfiguration, WaiterResult } from "@smithy/util-waiter";
|
|
2
|
-
import {
|
|
2
|
+
import {
|
|
3
|
+
DescribeFHIRDatastoreCommandInput,
|
|
4
|
+
DescribeFHIRDatastoreCommandOutput,
|
|
5
|
+
} from "../commands/DescribeFHIRDatastoreCommand";
|
|
3
6
|
import { HealthLakeClient } from "../HealthLakeClient";
|
|
7
|
+
import { HealthLakeServiceException } from "../models/HealthLakeServiceException";
|
|
4
8
|
export declare const waitForFHIRDatastoreDeleted: (
|
|
5
9
|
params: WaiterConfiguration<HealthLakeClient>,
|
|
6
10
|
input: DescribeFHIRDatastoreCommandInput
|
|
7
|
-
) => Promise<
|
|
11
|
+
) => Promise<
|
|
12
|
+
WaiterResult<DescribeFHIRDatastoreCommandOutput | HealthLakeServiceException>
|
|
13
|
+
>;
|
|
8
14
|
export declare const waitUntilFHIRDatastoreDeleted: (
|
|
9
15
|
params: WaiterConfiguration<HealthLakeClient>,
|
|
10
16
|
input: DescribeFHIRDatastoreCommandInput
|
|
11
|
-
) => Promise<WaiterResult
|
|
17
|
+
) => Promise<WaiterResult<DescribeFHIRDatastoreCommandOutput>>;
|
|
@@ -1,11 +1,17 @@
|
|
|
1
1
|
import { WaiterConfiguration, WaiterResult } from "@smithy/util-waiter";
|
|
2
|
-
import {
|
|
2
|
+
import {
|
|
3
|
+
DescribeFHIRExportJobCommandInput,
|
|
4
|
+
DescribeFHIRExportJobCommandOutput,
|
|
5
|
+
} from "../commands/DescribeFHIRExportJobCommand";
|
|
3
6
|
import { HealthLakeClient } from "../HealthLakeClient";
|
|
7
|
+
import { HealthLakeServiceException } from "../models/HealthLakeServiceException";
|
|
4
8
|
export declare const waitForFHIRExportJobCompleted: (
|
|
5
9
|
params: WaiterConfiguration<HealthLakeClient>,
|
|
6
10
|
input: DescribeFHIRExportJobCommandInput
|
|
7
|
-
) => Promise<
|
|
11
|
+
) => Promise<
|
|
12
|
+
WaiterResult<DescribeFHIRExportJobCommandOutput | HealthLakeServiceException>
|
|
13
|
+
>;
|
|
8
14
|
export declare const waitUntilFHIRExportJobCompleted: (
|
|
9
15
|
params: WaiterConfiguration<HealthLakeClient>,
|
|
10
16
|
input: DescribeFHIRExportJobCommandInput
|
|
11
|
-
) => Promise<WaiterResult
|
|
17
|
+
) => Promise<WaiterResult<DescribeFHIRExportJobCommandOutput>>;
|
|
@@ -1,11 +1,17 @@
|
|
|
1
1
|
import { WaiterConfiguration, WaiterResult } from "@smithy/util-waiter";
|
|
2
|
-
import {
|
|
2
|
+
import {
|
|
3
|
+
DescribeFHIRImportJobCommandInput,
|
|
4
|
+
DescribeFHIRImportJobCommandOutput,
|
|
5
|
+
} from "../commands/DescribeFHIRImportJobCommand";
|
|
3
6
|
import { HealthLakeClient } from "../HealthLakeClient";
|
|
7
|
+
import { HealthLakeServiceException } from "../models/HealthLakeServiceException";
|
|
4
8
|
export declare const waitForFHIRImportJobCompleted: (
|
|
5
9
|
params: WaiterConfiguration<HealthLakeClient>,
|
|
6
10
|
input: DescribeFHIRImportJobCommandInput
|
|
7
|
-
) => Promise<
|
|
11
|
+
) => Promise<
|
|
12
|
+
WaiterResult<DescribeFHIRImportJobCommandOutput | HealthLakeServiceException>
|
|
13
|
+
>;
|
|
8
14
|
export declare const waitUntilFHIRImportJobCompleted: (
|
|
9
15
|
params: WaiterConfiguration<HealthLakeClient>,
|
|
10
16
|
input: DescribeFHIRImportJobCommandInput
|
|
11
|
-
) => Promise<WaiterResult
|
|
17
|
+
) => Promise<WaiterResult<DescribeFHIRImportJobCommandOutput>>;
|
|
@@ -1,14 +1,15 @@
|
|
|
1
1
|
import { type WaiterConfiguration, type WaiterResult } from "@smithy/util-waiter";
|
|
2
|
-
import { type DescribeFHIRDatastoreCommandInput } from "../commands/DescribeFHIRDatastoreCommand";
|
|
2
|
+
import { type DescribeFHIRDatastoreCommandInput, type DescribeFHIRDatastoreCommandOutput } from "../commands/DescribeFHIRDatastoreCommand";
|
|
3
3
|
import type { HealthLakeClient } from "../HealthLakeClient";
|
|
4
|
+
import type { HealthLakeServiceException } from "../models/HealthLakeServiceException";
|
|
4
5
|
/**
|
|
5
6
|
*
|
|
6
7
|
* @deprecated Use waitUntilFHIRDatastoreActive instead. waitForFHIRDatastoreActive does not throw error in non-success cases.
|
|
7
8
|
*/
|
|
8
|
-
export declare const waitForFHIRDatastoreActive: (params: WaiterConfiguration<HealthLakeClient>, input: DescribeFHIRDatastoreCommandInput) => Promise<WaiterResult
|
|
9
|
+
export declare const waitForFHIRDatastoreActive: (params: WaiterConfiguration<HealthLakeClient>, input: DescribeFHIRDatastoreCommandInput) => Promise<WaiterResult<DescribeFHIRDatastoreCommandOutput | HealthLakeServiceException>>;
|
|
9
10
|
/**
|
|
10
11
|
*
|
|
11
12
|
* @param params - Waiter configuration options.
|
|
12
13
|
* @param input - The input to DescribeFHIRDatastoreCommand for polling.
|
|
13
14
|
*/
|
|
14
|
-
export declare const waitUntilFHIRDatastoreActive: (params: WaiterConfiguration<HealthLakeClient>, input: DescribeFHIRDatastoreCommandInput) => Promise<WaiterResult
|
|
15
|
+
export declare const waitUntilFHIRDatastoreActive: (params: WaiterConfiguration<HealthLakeClient>, input: DescribeFHIRDatastoreCommandInput) => Promise<WaiterResult<DescribeFHIRDatastoreCommandOutput>>;
|
|
@@ -1,14 +1,15 @@
|
|
|
1
1
|
import { type WaiterConfiguration, type WaiterResult } from "@smithy/util-waiter";
|
|
2
|
-
import { type DescribeFHIRDatastoreCommandInput } from "../commands/DescribeFHIRDatastoreCommand";
|
|
2
|
+
import { type DescribeFHIRDatastoreCommandInput, type DescribeFHIRDatastoreCommandOutput } from "../commands/DescribeFHIRDatastoreCommand";
|
|
3
3
|
import type { HealthLakeClient } from "../HealthLakeClient";
|
|
4
|
+
import type { HealthLakeServiceException } from "../models/HealthLakeServiceException";
|
|
4
5
|
/**
|
|
5
6
|
*
|
|
6
7
|
* @deprecated Use waitUntilFHIRDatastoreDeleted instead. waitForFHIRDatastoreDeleted does not throw error in non-success cases.
|
|
7
8
|
*/
|
|
8
|
-
export declare const waitForFHIRDatastoreDeleted: (params: WaiterConfiguration<HealthLakeClient>, input: DescribeFHIRDatastoreCommandInput) => Promise<WaiterResult
|
|
9
|
+
export declare const waitForFHIRDatastoreDeleted: (params: WaiterConfiguration<HealthLakeClient>, input: DescribeFHIRDatastoreCommandInput) => Promise<WaiterResult<DescribeFHIRDatastoreCommandOutput | HealthLakeServiceException>>;
|
|
9
10
|
/**
|
|
10
11
|
*
|
|
11
12
|
* @param params - Waiter configuration options.
|
|
12
13
|
* @param input - The input to DescribeFHIRDatastoreCommand for polling.
|
|
13
14
|
*/
|
|
14
|
-
export declare const waitUntilFHIRDatastoreDeleted: (params: WaiterConfiguration<HealthLakeClient>, input: DescribeFHIRDatastoreCommandInput) => Promise<WaiterResult
|
|
15
|
+
export declare const waitUntilFHIRDatastoreDeleted: (params: WaiterConfiguration<HealthLakeClient>, input: DescribeFHIRDatastoreCommandInput) => Promise<WaiterResult<DescribeFHIRDatastoreCommandOutput>>;
|
|
@@ -1,14 +1,15 @@
|
|
|
1
1
|
import { type WaiterConfiguration, type WaiterResult } from "@smithy/util-waiter";
|
|
2
|
-
import { type DescribeFHIRExportJobCommandInput } from "../commands/DescribeFHIRExportJobCommand";
|
|
2
|
+
import { type DescribeFHIRExportJobCommandInput, type DescribeFHIRExportJobCommandOutput } from "../commands/DescribeFHIRExportJobCommand";
|
|
3
3
|
import type { HealthLakeClient } from "../HealthLakeClient";
|
|
4
|
+
import type { HealthLakeServiceException } from "../models/HealthLakeServiceException";
|
|
4
5
|
/**
|
|
5
6
|
*
|
|
6
7
|
* @deprecated Use waitUntilFHIRExportJobCompleted instead. waitForFHIRExportJobCompleted does not throw error in non-success cases.
|
|
7
8
|
*/
|
|
8
|
-
export declare const waitForFHIRExportJobCompleted: (params: WaiterConfiguration<HealthLakeClient>, input: DescribeFHIRExportJobCommandInput) => Promise<WaiterResult
|
|
9
|
+
export declare const waitForFHIRExportJobCompleted: (params: WaiterConfiguration<HealthLakeClient>, input: DescribeFHIRExportJobCommandInput) => Promise<WaiterResult<DescribeFHIRExportJobCommandOutput | HealthLakeServiceException>>;
|
|
9
10
|
/**
|
|
10
11
|
*
|
|
11
12
|
* @param params - Waiter configuration options.
|
|
12
13
|
* @param input - The input to DescribeFHIRExportJobCommand for polling.
|
|
13
14
|
*/
|
|
14
|
-
export declare const waitUntilFHIRExportJobCompleted: (params: WaiterConfiguration<HealthLakeClient>, input: DescribeFHIRExportJobCommandInput) => Promise<WaiterResult
|
|
15
|
+
export declare const waitUntilFHIRExportJobCompleted: (params: WaiterConfiguration<HealthLakeClient>, input: DescribeFHIRExportJobCommandInput) => Promise<WaiterResult<DescribeFHIRExportJobCommandOutput>>;
|
|
@@ -1,14 +1,15 @@
|
|
|
1
1
|
import { type WaiterConfiguration, type WaiterResult } from "@smithy/util-waiter";
|
|
2
|
-
import { type DescribeFHIRImportJobCommandInput } from "../commands/DescribeFHIRImportJobCommand";
|
|
2
|
+
import { type DescribeFHIRImportJobCommandInput, type DescribeFHIRImportJobCommandOutput } from "../commands/DescribeFHIRImportJobCommand";
|
|
3
3
|
import type { HealthLakeClient } from "../HealthLakeClient";
|
|
4
|
+
import type { HealthLakeServiceException } from "../models/HealthLakeServiceException";
|
|
4
5
|
/**
|
|
5
6
|
*
|
|
6
7
|
* @deprecated Use waitUntilFHIRImportJobCompleted instead. waitForFHIRImportJobCompleted does not throw error in non-success cases.
|
|
7
8
|
*/
|
|
8
|
-
export declare const waitForFHIRImportJobCompleted: (params: WaiterConfiguration<HealthLakeClient>, input: DescribeFHIRImportJobCommandInput) => Promise<WaiterResult
|
|
9
|
+
export declare const waitForFHIRImportJobCompleted: (params: WaiterConfiguration<HealthLakeClient>, input: DescribeFHIRImportJobCommandInput) => Promise<WaiterResult<DescribeFHIRImportJobCommandOutput | HealthLakeServiceException>>;
|
|
9
10
|
/**
|
|
10
11
|
*
|
|
11
12
|
* @param params - Waiter configuration options.
|
|
12
13
|
* @param input - The input to DescribeFHIRImportJobCommand for polling.
|
|
13
14
|
*/
|
|
14
|
-
export declare const waitUntilFHIRImportJobCompleted: (params: WaiterConfiguration<HealthLakeClient>, input: DescribeFHIRImportJobCommandInput) => Promise<WaiterResult
|
|
15
|
+
export declare const waitUntilFHIRImportJobCompleted: (params: WaiterConfiguration<HealthLakeClient>, input: DescribeFHIRImportJobCommandInput) => Promise<WaiterResult<DescribeFHIRImportJobCommandOutput>>;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-healthlake",
|
|
3
3
|
"description": "AWS SDK for JavaScript Healthlake Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.1038.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:types' 'yarn:build:es' && yarn build:cjs",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-healthlake",
|
|
@@ -21,17 +21,17 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
24
|
-
"@aws-sdk/core": "^3.974.
|
|
25
|
-
"@aws-sdk/credential-provider-node": "^3.972.
|
|
24
|
+
"@aws-sdk/core": "^3.974.6",
|
|
25
|
+
"@aws-sdk/credential-provider-node": "^3.972.37",
|
|
26
26
|
"@aws-sdk/middleware-host-header": "^3.972.10",
|
|
27
27
|
"@aws-sdk/middleware-logger": "^3.972.10",
|
|
28
28
|
"@aws-sdk/middleware-recursion-detection": "^3.972.11",
|
|
29
|
-
"@aws-sdk/middleware-user-agent": "^3.972.
|
|
29
|
+
"@aws-sdk/middleware-user-agent": "^3.972.36",
|
|
30
30
|
"@aws-sdk/region-config-resolver": "^3.972.13",
|
|
31
31
|
"@aws-sdk/types": "^3.973.8",
|
|
32
32
|
"@aws-sdk/util-endpoints": "^3.996.8",
|
|
33
33
|
"@aws-sdk/util-user-agent-browser": "^3.972.10",
|
|
34
|
-
"@aws-sdk/util-user-agent-node": "^3.973.
|
|
34
|
+
"@aws-sdk/util-user-agent-node": "^3.973.22",
|
|
35
35
|
"@smithy/config-resolver": "^4.4.17",
|
|
36
36
|
"@smithy/core": "^3.23.17",
|
|
37
37
|
"@smithy/fetch-http-handler": "^5.3.17",
|
|
@@ -39,7 +39,7 @@
|
|
|
39
39
|
"@smithy/invalid-dependency": "^4.2.14",
|
|
40
40
|
"@smithy/middleware-content-length": "^4.2.14",
|
|
41
41
|
"@smithy/middleware-endpoint": "^4.4.32",
|
|
42
|
-
"@smithy/middleware-retry": "^4.5.
|
|
42
|
+
"@smithy/middleware-retry": "^4.5.6",
|
|
43
43
|
"@smithy/middleware-serde": "^4.2.20",
|
|
44
44
|
"@smithy/middleware-stack": "^4.2.14",
|
|
45
45
|
"@smithy/node-config-provider": "^4.3.14",
|
|
@@ -55,9 +55,9 @@
|
|
|
55
55
|
"@smithy/util-defaults-mode-node": "^4.2.54",
|
|
56
56
|
"@smithy/util-endpoints": "^3.4.2",
|
|
57
57
|
"@smithy/util-middleware": "^4.2.14",
|
|
58
|
-
"@smithy/util-retry": "^4.3.
|
|
58
|
+
"@smithy/util-retry": "^4.3.5",
|
|
59
59
|
"@smithy/util-utf8": "^4.2.2",
|
|
60
|
-
"@smithy/util-waiter": "^4.
|
|
60
|
+
"@smithy/util-waiter": "^4.3.0",
|
|
61
61
|
"tslib": "^2.6.2"
|
|
62
62
|
},
|
|
63
63
|
"devDependencies": {
|