@aws-sdk/client-machine-learning 3.1037.0 → 3.1039.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-es/waiters/waitForMLModelAvailable.js +1 -1
- package/dist-types/MachineLearning.d.ts +4 -4
- package/dist-types/ts3.4/MachineLearning.d.ts +4 -4
- package/dist-types/ts3.4/waiters/waitForBatchPredictionAvailable.d.ts +11 -3
- package/dist-types/ts3.4/waiters/waitForDataSourceAvailable.d.ts +11 -3
- package/dist-types/ts3.4/waiters/waitForEvaluationAvailable.d.ts +11 -3
- package/dist-types/ts3.4/waiters/waitForMLModelAvailable.d.ts +9 -3
- package/dist-types/waiters/waitForBatchPredictionAvailable.d.ts +4 -3
- package/dist-types/waiters/waitForDataSourceAvailable.d.ts +4 -3
- package/dist-types/waiters/waitForEvaluationAvailable.d.ts +4 -3
- package/dist-types/waiters/waitForMLModelAvailable.d.ts +4 -3
- package/package.json +8 -8
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { checkExceptions, createWaiter, WaiterState, } from "@smithy/util-waiter";
|
|
2
|
-
import { DescribeMLModelsCommand } from "../commands/DescribeMLModelsCommand";
|
|
2
|
+
import { DescribeMLModelsCommand, } from "../commands/DescribeMLModelsCommand";
|
|
3
3
|
const checkState = async (client, input) => {
|
|
4
4
|
let reason;
|
|
5
5
|
try {
|
|
@@ -235,25 +235,25 @@ export interface MachineLearning {
|
|
|
235
235
|
* @param args - command input.
|
|
236
236
|
* @param waiterConfig - `maxWaitTime` in seconds or waiter config object.
|
|
237
237
|
*/
|
|
238
|
-
waitUntilBatchPredictionAvailable(args: DescribeBatchPredictionsCommandInput, waiterConfig: number | Omit<WaiterConfiguration<MachineLearning>, "client">): Promise<WaiterResult
|
|
238
|
+
waitUntilBatchPredictionAvailable(args: DescribeBatchPredictionsCommandInput, waiterConfig: number | Omit<WaiterConfiguration<MachineLearning>, "client">): Promise<WaiterResult<DescribeBatchPredictionsCommandOutput>>;
|
|
239
239
|
/**
|
|
240
240
|
* @see {@link DescribeDataSourcesCommand}
|
|
241
241
|
* @param args - command input.
|
|
242
242
|
* @param waiterConfig - `maxWaitTime` in seconds or waiter config object.
|
|
243
243
|
*/
|
|
244
|
-
waitUntilDataSourceAvailable(args: DescribeDataSourcesCommandInput, waiterConfig: number | Omit<WaiterConfiguration<MachineLearning>, "client">): Promise<WaiterResult
|
|
244
|
+
waitUntilDataSourceAvailable(args: DescribeDataSourcesCommandInput, waiterConfig: number | Omit<WaiterConfiguration<MachineLearning>, "client">): Promise<WaiterResult<DescribeDataSourcesCommandOutput>>;
|
|
245
245
|
/**
|
|
246
246
|
* @see {@link DescribeEvaluationsCommand}
|
|
247
247
|
* @param args - command input.
|
|
248
248
|
* @param waiterConfig - `maxWaitTime` in seconds or waiter config object.
|
|
249
249
|
*/
|
|
250
|
-
waitUntilEvaluationAvailable(args: DescribeEvaluationsCommandInput, waiterConfig: number | Omit<WaiterConfiguration<MachineLearning>, "client">): Promise<WaiterResult
|
|
250
|
+
waitUntilEvaluationAvailable(args: DescribeEvaluationsCommandInput, waiterConfig: number | Omit<WaiterConfiguration<MachineLearning>, "client">): Promise<WaiterResult<DescribeEvaluationsCommandOutput>>;
|
|
251
251
|
/**
|
|
252
252
|
* @see {@link DescribeMLModelsCommand}
|
|
253
253
|
* @param args - command input.
|
|
254
254
|
* @param waiterConfig - `maxWaitTime` in seconds or waiter config object.
|
|
255
255
|
*/
|
|
256
|
-
waitUntilMLModelAvailable(args: DescribeMLModelsCommandInput, waiterConfig: number | Omit<WaiterConfiguration<MachineLearning>, "client">): Promise<WaiterResult
|
|
256
|
+
waitUntilMLModelAvailable(args: DescribeMLModelsCommandInput, waiterConfig: number | Omit<WaiterConfiguration<MachineLearning>, "client">): Promise<WaiterResult<DescribeMLModelsCommandOutput>>;
|
|
257
257
|
}
|
|
258
258
|
/**
|
|
259
259
|
* Definition of the public APIs
|
|
@@ -523,7 +523,7 @@ export interface MachineLearning {
|
|
|
523
523
|
WaiterConfiguration<MachineLearning>,
|
|
524
524
|
Exclude<keyof WaiterConfiguration<MachineLearning>, "client">
|
|
525
525
|
>
|
|
526
|
-
): Promise<WaiterResult
|
|
526
|
+
): Promise<WaiterResult<DescribeBatchPredictionsCommandOutput>>;
|
|
527
527
|
waitUntilDataSourceAvailable(
|
|
528
528
|
args: DescribeDataSourcesCommandInput,
|
|
529
529
|
waiterConfig:
|
|
@@ -532,7 +532,7 @@ export interface MachineLearning {
|
|
|
532
532
|
WaiterConfiguration<MachineLearning>,
|
|
533
533
|
Exclude<keyof WaiterConfiguration<MachineLearning>, "client">
|
|
534
534
|
>
|
|
535
|
-
): Promise<WaiterResult
|
|
535
|
+
): Promise<WaiterResult<DescribeDataSourcesCommandOutput>>;
|
|
536
536
|
waitUntilEvaluationAvailable(
|
|
537
537
|
args: DescribeEvaluationsCommandInput,
|
|
538
538
|
waiterConfig:
|
|
@@ -541,7 +541,7 @@ export interface MachineLearning {
|
|
|
541
541
|
WaiterConfiguration<MachineLearning>,
|
|
542
542
|
Exclude<keyof WaiterConfiguration<MachineLearning>, "client">
|
|
543
543
|
>
|
|
544
|
-
): Promise<WaiterResult
|
|
544
|
+
): Promise<WaiterResult<DescribeEvaluationsCommandOutput>>;
|
|
545
545
|
waitUntilMLModelAvailable(
|
|
546
546
|
args: DescribeMLModelsCommandInput,
|
|
547
547
|
waiterConfig:
|
|
@@ -550,7 +550,7 @@ export interface MachineLearning {
|
|
|
550
550
|
WaiterConfiguration<MachineLearning>,
|
|
551
551
|
Exclude<keyof WaiterConfiguration<MachineLearning>, "client">
|
|
552
552
|
>
|
|
553
|
-
): Promise<WaiterResult
|
|
553
|
+
): Promise<WaiterResult<DescribeMLModelsCommandOutput>>;
|
|
554
554
|
}
|
|
555
555
|
export declare class MachineLearning
|
|
556
556
|
extends MachineLearningClient
|
|
@@ -1,11 +1,19 @@
|
|
|
1
1
|
import { WaiterConfiguration, WaiterResult } from "@smithy/util-waiter";
|
|
2
|
-
import {
|
|
2
|
+
import {
|
|
3
|
+
DescribeBatchPredictionsCommandInput,
|
|
4
|
+
DescribeBatchPredictionsCommandOutput,
|
|
5
|
+
} from "../commands/DescribeBatchPredictionsCommand";
|
|
3
6
|
import { MachineLearningClient } from "../MachineLearningClient";
|
|
7
|
+
import { MachineLearningServiceException } from "../models/MachineLearningServiceException";
|
|
4
8
|
export declare const waitForBatchPredictionAvailable: (
|
|
5
9
|
params: WaiterConfiguration<MachineLearningClient>,
|
|
6
10
|
input: DescribeBatchPredictionsCommandInput
|
|
7
|
-
) => Promise<
|
|
11
|
+
) => Promise<
|
|
12
|
+
WaiterResult<
|
|
13
|
+
DescribeBatchPredictionsCommandOutput | MachineLearningServiceException
|
|
14
|
+
>
|
|
15
|
+
>;
|
|
8
16
|
export declare const waitUntilBatchPredictionAvailable: (
|
|
9
17
|
params: WaiterConfiguration<MachineLearningClient>,
|
|
10
18
|
input: DescribeBatchPredictionsCommandInput
|
|
11
|
-
) => Promise<WaiterResult
|
|
19
|
+
) => Promise<WaiterResult<DescribeBatchPredictionsCommandOutput>>;
|
|
@@ -1,11 +1,19 @@
|
|
|
1
1
|
import { WaiterConfiguration, WaiterResult } from "@smithy/util-waiter";
|
|
2
|
-
import {
|
|
2
|
+
import {
|
|
3
|
+
DescribeDataSourcesCommandInput,
|
|
4
|
+
DescribeDataSourcesCommandOutput,
|
|
5
|
+
} from "../commands/DescribeDataSourcesCommand";
|
|
3
6
|
import { MachineLearningClient } from "../MachineLearningClient";
|
|
7
|
+
import { MachineLearningServiceException } from "../models/MachineLearningServiceException";
|
|
4
8
|
export declare const waitForDataSourceAvailable: (
|
|
5
9
|
params: WaiterConfiguration<MachineLearningClient>,
|
|
6
10
|
input: DescribeDataSourcesCommandInput
|
|
7
|
-
) => Promise<
|
|
11
|
+
) => Promise<
|
|
12
|
+
WaiterResult<
|
|
13
|
+
DescribeDataSourcesCommandOutput | MachineLearningServiceException
|
|
14
|
+
>
|
|
15
|
+
>;
|
|
8
16
|
export declare const waitUntilDataSourceAvailable: (
|
|
9
17
|
params: WaiterConfiguration<MachineLearningClient>,
|
|
10
18
|
input: DescribeDataSourcesCommandInput
|
|
11
|
-
) => Promise<WaiterResult
|
|
19
|
+
) => Promise<WaiterResult<DescribeDataSourcesCommandOutput>>;
|
|
@@ -1,11 +1,19 @@
|
|
|
1
1
|
import { WaiterConfiguration, WaiterResult } from "@smithy/util-waiter";
|
|
2
|
-
import {
|
|
2
|
+
import {
|
|
3
|
+
DescribeEvaluationsCommandInput,
|
|
4
|
+
DescribeEvaluationsCommandOutput,
|
|
5
|
+
} from "../commands/DescribeEvaluationsCommand";
|
|
3
6
|
import { MachineLearningClient } from "../MachineLearningClient";
|
|
7
|
+
import { MachineLearningServiceException } from "../models/MachineLearningServiceException";
|
|
4
8
|
export declare const waitForEvaluationAvailable: (
|
|
5
9
|
params: WaiterConfiguration<MachineLearningClient>,
|
|
6
10
|
input: DescribeEvaluationsCommandInput
|
|
7
|
-
) => Promise<
|
|
11
|
+
) => Promise<
|
|
12
|
+
WaiterResult<
|
|
13
|
+
DescribeEvaluationsCommandOutput | MachineLearningServiceException
|
|
14
|
+
>
|
|
15
|
+
>;
|
|
8
16
|
export declare const waitUntilEvaluationAvailable: (
|
|
9
17
|
params: WaiterConfiguration<MachineLearningClient>,
|
|
10
18
|
input: DescribeEvaluationsCommandInput
|
|
11
|
-
) => Promise<WaiterResult
|
|
19
|
+
) => Promise<WaiterResult<DescribeEvaluationsCommandOutput>>;
|
|
@@ -1,11 +1,17 @@
|
|
|
1
1
|
import { WaiterConfiguration, WaiterResult } from "@smithy/util-waiter";
|
|
2
|
-
import {
|
|
2
|
+
import {
|
|
3
|
+
DescribeMLModelsCommandInput,
|
|
4
|
+
DescribeMLModelsCommandOutput,
|
|
5
|
+
} from "../commands/DescribeMLModelsCommand";
|
|
3
6
|
import { MachineLearningClient } from "../MachineLearningClient";
|
|
7
|
+
import { MachineLearningServiceException } from "../models/MachineLearningServiceException";
|
|
4
8
|
export declare const waitForMLModelAvailable: (
|
|
5
9
|
params: WaiterConfiguration<MachineLearningClient>,
|
|
6
10
|
input: DescribeMLModelsCommandInput
|
|
7
|
-
) => Promise<
|
|
11
|
+
) => Promise<
|
|
12
|
+
WaiterResult<DescribeMLModelsCommandOutput | MachineLearningServiceException>
|
|
13
|
+
>;
|
|
8
14
|
export declare const waitUntilMLModelAvailable: (
|
|
9
15
|
params: WaiterConfiguration<MachineLearningClient>,
|
|
10
16
|
input: DescribeMLModelsCommandInput
|
|
11
|
-
) => Promise<WaiterResult
|
|
17
|
+
) => Promise<WaiterResult<DescribeMLModelsCommandOutput>>;
|
|
@@ -1,14 +1,15 @@
|
|
|
1
1
|
import { type WaiterConfiguration, type WaiterResult } from "@smithy/util-waiter";
|
|
2
|
-
import { type DescribeBatchPredictionsCommandInput } from "../commands/DescribeBatchPredictionsCommand";
|
|
2
|
+
import { type DescribeBatchPredictionsCommandInput, type DescribeBatchPredictionsCommandOutput } from "../commands/DescribeBatchPredictionsCommand";
|
|
3
3
|
import type { MachineLearningClient } from "../MachineLearningClient";
|
|
4
|
+
import type { MachineLearningServiceException } from "../models/MachineLearningServiceException";
|
|
4
5
|
/**
|
|
5
6
|
*
|
|
6
7
|
* @deprecated Use waitUntilBatchPredictionAvailable instead. waitForBatchPredictionAvailable does not throw error in non-success cases.
|
|
7
8
|
*/
|
|
8
|
-
export declare const waitForBatchPredictionAvailable: (params: WaiterConfiguration<MachineLearningClient>, input: DescribeBatchPredictionsCommandInput) => Promise<WaiterResult
|
|
9
|
+
export declare const waitForBatchPredictionAvailable: (params: WaiterConfiguration<MachineLearningClient>, input: DescribeBatchPredictionsCommandInput) => Promise<WaiterResult<DescribeBatchPredictionsCommandOutput | MachineLearningServiceException>>;
|
|
9
10
|
/**
|
|
10
11
|
*
|
|
11
12
|
* @param params - Waiter configuration options.
|
|
12
13
|
* @param input - The input to DescribeBatchPredictionsCommand for polling.
|
|
13
14
|
*/
|
|
14
|
-
export declare const waitUntilBatchPredictionAvailable: (params: WaiterConfiguration<MachineLearningClient>, input: DescribeBatchPredictionsCommandInput) => Promise<WaiterResult
|
|
15
|
+
export declare const waitUntilBatchPredictionAvailable: (params: WaiterConfiguration<MachineLearningClient>, input: DescribeBatchPredictionsCommandInput) => Promise<WaiterResult<DescribeBatchPredictionsCommandOutput>>;
|
|
@@ -1,14 +1,15 @@
|
|
|
1
1
|
import { type WaiterConfiguration, type WaiterResult } from "@smithy/util-waiter";
|
|
2
|
-
import { type DescribeDataSourcesCommandInput } from "../commands/DescribeDataSourcesCommand";
|
|
2
|
+
import { type DescribeDataSourcesCommandInput, type DescribeDataSourcesCommandOutput } from "../commands/DescribeDataSourcesCommand";
|
|
3
3
|
import type { MachineLearningClient } from "../MachineLearningClient";
|
|
4
|
+
import type { MachineLearningServiceException } from "../models/MachineLearningServiceException";
|
|
4
5
|
/**
|
|
5
6
|
*
|
|
6
7
|
* @deprecated Use waitUntilDataSourceAvailable instead. waitForDataSourceAvailable does not throw error in non-success cases.
|
|
7
8
|
*/
|
|
8
|
-
export declare const waitForDataSourceAvailable: (params: WaiterConfiguration<MachineLearningClient>, input: DescribeDataSourcesCommandInput) => Promise<WaiterResult
|
|
9
|
+
export declare const waitForDataSourceAvailable: (params: WaiterConfiguration<MachineLearningClient>, input: DescribeDataSourcesCommandInput) => Promise<WaiterResult<DescribeDataSourcesCommandOutput | MachineLearningServiceException>>;
|
|
9
10
|
/**
|
|
10
11
|
*
|
|
11
12
|
* @param params - Waiter configuration options.
|
|
12
13
|
* @param input - The input to DescribeDataSourcesCommand for polling.
|
|
13
14
|
*/
|
|
14
|
-
export declare const waitUntilDataSourceAvailable: (params: WaiterConfiguration<MachineLearningClient>, input: DescribeDataSourcesCommandInput) => Promise<WaiterResult
|
|
15
|
+
export declare const waitUntilDataSourceAvailable: (params: WaiterConfiguration<MachineLearningClient>, input: DescribeDataSourcesCommandInput) => Promise<WaiterResult<DescribeDataSourcesCommandOutput>>;
|
|
@@ -1,14 +1,15 @@
|
|
|
1
1
|
import { type WaiterConfiguration, type WaiterResult } from "@smithy/util-waiter";
|
|
2
|
-
import { type DescribeEvaluationsCommandInput } from "../commands/DescribeEvaluationsCommand";
|
|
2
|
+
import { type DescribeEvaluationsCommandInput, type DescribeEvaluationsCommandOutput } from "../commands/DescribeEvaluationsCommand";
|
|
3
3
|
import type { MachineLearningClient } from "../MachineLearningClient";
|
|
4
|
+
import type { MachineLearningServiceException } from "../models/MachineLearningServiceException";
|
|
4
5
|
/**
|
|
5
6
|
*
|
|
6
7
|
* @deprecated Use waitUntilEvaluationAvailable instead. waitForEvaluationAvailable does not throw error in non-success cases.
|
|
7
8
|
*/
|
|
8
|
-
export declare const waitForEvaluationAvailable: (params: WaiterConfiguration<MachineLearningClient>, input: DescribeEvaluationsCommandInput) => Promise<WaiterResult
|
|
9
|
+
export declare const waitForEvaluationAvailable: (params: WaiterConfiguration<MachineLearningClient>, input: DescribeEvaluationsCommandInput) => Promise<WaiterResult<DescribeEvaluationsCommandOutput | MachineLearningServiceException>>;
|
|
9
10
|
/**
|
|
10
11
|
*
|
|
11
12
|
* @param params - Waiter configuration options.
|
|
12
13
|
* @param input - The input to DescribeEvaluationsCommand for polling.
|
|
13
14
|
*/
|
|
14
|
-
export declare const waitUntilEvaluationAvailable: (params: WaiterConfiguration<MachineLearningClient>, input: DescribeEvaluationsCommandInput) => Promise<WaiterResult
|
|
15
|
+
export declare const waitUntilEvaluationAvailable: (params: WaiterConfiguration<MachineLearningClient>, input: DescribeEvaluationsCommandInput) => Promise<WaiterResult<DescribeEvaluationsCommandOutput>>;
|
|
@@ -1,14 +1,15 @@
|
|
|
1
1
|
import { type WaiterConfiguration, type WaiterResult } from "@smithy/util-waiter";
|
|
2
|
-
import { type DescribeMLModelsCommandInput } from "../commands/DescribeMLModelsCommand";
|
|
2
|
+
import { type DescribeMLModelsCommandInput, type DescribeMLModelsCommandOutput } from "../commands/DescribeMLModelsCommand";
|
|
3
3
|
import type { MachineLearningClient } from "../MachineLearningClient";
|
|
4
|
+
import type { MachineLearningServiceException } from "../models/MachineLearningServiceException";
|
|
4
5
|
/**
|
|
5
6
|
*
|
|
6
7
|
* @deprecated Use waitUntilMLModelAvailable instead. waitForMLModelAvailable does not throw error in non-success cases.
|
|
7
8
|
*/
|
|
8
|
-
export declare const waitForMLModelAvailable: (params: WaiterConfiguration<MachineLearningClient>, input: DescribeMLModelsCommandInput) => Promise<WaiterResult
|
|
9
|
+
export declare const waitForMLModelAvailable: (params: WaiterConfiguration<MachineLearningClient>, input: DescribeMLModelsCommandInput) => Promise<WaiterResult<DescribeMLModelsCommandOutput | MachineLearningServiceException>>;
|
|
9
10
|
/**
|
|
10
11
|
*
|
|
11
12
|
* @param params - Waiter configuration options.
|
|
12
13
|
* @param input - The input to DescribeMLModelsCommand for polling.
|
|
13
14
|
*/
|
|
14
|
-
export declare const waitUntilMLModelAvailable: (params: WaiterConfiguration<MachineLearningClient>, input: DescribeMLModelsCommandInput) => Promise<WaiterResult
|
|
15
|
+
export declare const waitUntilMLModelAvailable: (params: WaiterConfiguration<MachineLearningClient>, input: DescribeMLModelsCommandInput) => Promise<WaiterResult<DescribeMLModelsCommandOutput>>;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-machine-learning",
|
|
3
3
|
"description": "AWS SDK for JavaScript Machine Learning Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.1039.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-machine-learning",
|
|
@@ -21,18 +21,18 @@
|
|
|
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.7",
|
|
25
|
+
"@aws-sdk/credential-provider-node": "^3.972.38",
|
|
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
29
|
"@aws-sdk/middleware-sdk-machinelearning": "^3.972.10",
|
|
30
|
-
"@aws-sdk/middleware-user-agent": "^3.972.
|
|
30
|
+
"@aws-sdk/middleware-user-agent": "^3.972.37",
|
|
31
31
|
"@aws-sdk/region-config-resolver": "^3.972.13",
|
|
32
32
|
"@aws-sdk/types": "^3.973.8",
|
|
33
33
|
"@aws-sdk/util-endpoints": "^3.996.8",
|
|
34
34
|
"@aws-sdk/util-user-agent-browser": "^3.972.10",
|
|
35
|
-
"@aws-sdk/util-user-agent-node": "^3.973.
|
|
35
|
+
"@aws-sdk/util-user-agent-node": "^3.973.23",
|
|
36
36
|
"@smithy/config-resolver": "^4.4.17",
|
|
37
37
|
"@smithy/core": "^3.23.17",
|
|
38
38
|
"@smithy/fetch-http-handler": "^5.3.17",
|
|
@@ -40,7 +40,7 @@
|
|
|
40
40
|
"@smithy/invalid-dependency": "^4.2.14",
|
|
41
41
|
"@smithy/middleware-content-length": "^4.2.14",
|
|
42
42
|
"@smithy/middleware-endpoint": "^4.4.32",
|
|
43
|
-
"@smithy/middleware-retry": "^4.5.
|
|
43
|
+
"@smithy/middleware-retry": "^4.5.7",
|
|
44
44
|
"@smithy/middleware-serde": "^4.2.20",
|
|
45
45
|
"@smithy/middleware-stack": "^4.2.14",
|
|
46
46
|
"@smithy/node-config-provider": "^4.3.14",
|
|
@@ -56,9 +56,9 @@
|
|
|
56
56
|
"@smithy/util-defaults-mode-node": "^4.2.54",
|
|
57
57
|
"@smithy/util-endpoints": "^3.4.2",
|
|
58
58
|
"@smithy/util-middleware": "^4.2.14",
|
|
59
|
-
"@smithy/util-retry": "^4.3.
|
|
59
|
+
"@smithy/util-retry": "^4.3.6",
|
|
60
60
|
"@smithy/util-utf8": "^4.2.2",
|
|
61
|
-
"@smithy/util-waiter": "^4.
|
|
61
|
+
"@smithy/util-waiter": "^4.3.0",
|
|
62
62
|
"tslib": "^2.6.2"
|
|
63
63
|
},
|
|
64
64
|
"devDependencies": {
|