@aws-sdk/client-batch 3.974.0 → 3.978.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 +30 -19
- package/dist-es/Batch.js +21 -1
- package/dist-types/Batch.d.ts +64 -1
- package/dist-types/ts3.4/Batch.d.ts +68 -1
- package/package.json +17 -17
package/dist-cjs/index.js
CHANGED
|
@@ -2412,6 +2412,24 @@ class UpdateServiceEnvironmentCommand extends smithyClient.Command
|
|
|
2412
2412
|
.build() {
|
|
2413
2413
|
}
|
|
2414
2414
|
|
|
2415
|
+
const paginateDescribeComputeEnvironments = core.createPaginator(BatchClient, DescribeComputeEnvironmentsCommand, "nextToken", "nextToken", "maxResults");
|
|
2416
|
+
|
|
2417
|
+
const paginateDescribeJobDefinitions = core.createPaginator(BatchClient, DescribeJobDefinitionsCommand, "nextToken", "nextToken", "maxResults");
|
|
2418
|
+
|
|
2419
|
+
const paginateDescribeJobQueues = core.createPaginator(BatchClient, DescribeJobQueuesCommand, "nextToken", "nextToken", "maxResults");
|
|
2420
|
+
|
|
2421
|
+
const paginateDescribeServiceEnvironments = core.createPaginator(BatchClient, DescribeServiceEnvironmentsCommand, "nextToken", "nextToken", "maxResults");
|
|
2422
|
+
|
|
2423
|
+
const paginateListConsumableResources = core.createPaginator(BatchClient, ListConsumableResourcesCommand, "nextToken", "nextToken", "maxResults");
|
|
2424
|
+
|
|
2425
|
+
const paginateListJobsByConsumableResource = core.createPaginator(BatchClient, ListJobsByConsumableResourceCommand, "nextToken", "nextToken", "maxResults");
|
|
2426
|
+
|
|
2427
|
+
const paginateListJobs = core.createPaginator(BatchClient, ListJobsCommand, "nextToken", "nextToken", "maxResults");
|
|
2428
|
+
|
|
2429
|
+
const paginateListSchedulingPolicies = core.createPaginator(BatchClient, ListSchedulingPoliciesCommand, "nextToken", "nextToken", "maxResults");
|
|
2430
|
+
|
|
2431
|
+
const paginateListServiceJobs = core.createPaginator(BatchClient, ListServiceJobsCommand, "nextToken", "nextToken", "maxResults");
|
|
2432
|
+
|
|
2415
2433
|
const commands = {
|
|
2416
2434
|
CancelJobCommand,
|
|
2417
2435
|
CreateComputeEnvironmentCommand,
|
|
@@ -2453,27 +2471,20 @@ const commands = {
|
|
|
2453
2471
|
UpdateSchedulingPolicyCommand,
|
|
2454
2472
|
UpdateServiceEnvironmentCommand,
|
|
2455
2473
|
};
|
|
2474
|
+
const paginators = {
|
|
2475
|
+
paginateDescribeComputeEnvironments,
|
|
2476
|
+
paginateDescribeJobDefinitions,
|
|
2477
|
+
paginateDescribeJobQueues,
|
|
2478
|
+
paginateDescribeServiceEnvironments,
|
|
2479
|
+
paginateListConsumableResources,
|
|
2480
|
+
paginateListJobs,
|
|
2481
|
+
paginateListJobsByConsumableResource,
|
|
2482
|
+
paginateListSchedulingPolicies,
|
|
2483
|
+
paginateListServiceJobs,
|
|
2484
|
+
};
|
|
2456
2485
|
class Batch extends BatchClient {
|
|
2457
2486
|
}
|
|
2458
|
-
smithyClient.createAggregatedClient(commands, Batch);
|
|
2459
|
-
|
|
2460
|
-
const paginateDescribeComputeEnvironments = core.createPaginator(BatchClient, DescribeComputeEnvironmentsCommand, "nextToken", "nextToken", "maxResults");
|
|
2461
|
-
|
|
2462
|
-
const paginateDescribeJobDefinitions = core.createPaginator(BatchClient, DescribeJobDefinitionsCommand, "nextToken", "nextToken", "maxResults");
|
|
2463
|
-
|
|
2464
|
-
const paginateDescribeJobQueues = core.createPaginator(BatchClient, DescribeJobQueuesCommand, "nextToken", "nextToken", "maxResults");
|
|
2465
|
-
|
|
2466
|
-
const paginateDescribeServiceEnvironments = core.createPaginator(BatchClient, DescribeServiceEnvironmentsCommand, "nextToken", "nextToken", "maxResults");
|
|
2467
|
-
|
|
2468
|
-
const paginateListConsumableResources = core.createPaginator(BatchClient, ListConsumableResourcesCommand, "nextToken", "nextToken", "maxResults");
|
|
2469
|
-
|
|
2470
|
-
const paginateListJobs = core.createPaginator(BatchClient, ListJobsCommand, "nextToken", "nextToken", "maxResults");
|
|
2471
|
-
|
|
2472
|
-
const paginateListJobsByConsumableResource = core.createPaginator(BatchClient, ListJobsByConsumableResourceCommand, "nextToken", "nextToken", "maxResults");
|
|
2473
|
-
|
|
2474
|
-
const paginateListSchedulingPolicies = core.createPaginator(BatchClient, ListSchedulingPoliciesCommand, "nextToken", "nextToken", "maxResults");
|
|
2475
|
-
|
|
2476
|
-
const paginateListServiceJobs = core.createPaginator(BatchClient, ListServiceJobsCommand, "nextToken", "nextToken", "maxResults");
|
|
2487
|
+
smithyClient.createAggregatedClient(commands, Batch, { paginators });
|
|
2477
2488
|
|
|
2478
2489
|
const ArrayJobDependency = {
|
|
2479
2490
|
N_TO_N: "N_TO_N",
|
package/dist-es/Batch.js
CHANGED
|
@@ -39,6 +39,15 @@ import { UpdateConsumableResourceCommand, } from "./commands/UpdateConsumableRes
|
|
|
39
39
|
import { UpdateJobQueueCommand, } from "./commands/UpdateJobQueueCommand";
|
|
40
40
|
import { UpdateSchedulingPolicyCommand, } from "./commands/UpdateSchedulingPolicyCommand";
|
|
41
41
|
import { UpdateServiceEnvironmentCommand, } from "./commands/UpdateServiceEnvironmentCommand";
|
|
42
|
+
import { paginateDescribeComputeEnvironments } from "./pagination/DescribeComputeEnvironmentsPaginator";
|
|
43
|
+
import { paginateDescribeJobDefinitions } from "./pagination/DescribeJobDefinitionsPaginator";
|
|
44
|
+
import { paginateDescribeJobQueues } from "./pagination/DescribeJobQueuesPaginator";
|
|
45
|
+
import { paginateDescribeServiceEnvironments } from "./pagination/DescribeServiceEnvironmentsPaginator";
|
|
46
|
+
import { paginateListConsumableResources } from "./pagination/ListConsumableResourcesPaginator";
|
|
47
|
+
import { paginateListJobsByConsumableResource } from "./pagination/ListJobsByConsumableResourcePaginator";
|
|
48
|
+
import { paginateListJobs } from "./pagination/ListJobsPaginator";
|
|
49
|
+
import { paginateListSchedulingPolicies } from "./pagination/ListSchedulingPoliciesPaginator";
|
|
50
|
+
import { paginateListServiceJobs } from "./pagination/ListServiceJobsPaginator";
|
|
42
51
|
const commands = {
|
|
43
52
|
CancelJobCommand,
|
|
44
53
|
CreateComputeEnvironmentCommand,
|
|
@@ -80,6 +89,17 @@ const commands = {
|
|
|
80
89
|
UpdateSchedulingPolicyCommand,
|
|
81
90
|
UpdateServiceEnvironmentCommand,
|
|
82
91
|
};
|
|
92
|
+
const paginators = {
|
|
93
|
+
paginateDescribeComputeEnvironments,
|
|
94
|
+
paginateDescribeJobDefinitions,
|
|
95
|
+
paginateDescribeJobQueues,
|
|
96
|
+
paginateDescribeServiceEnvironments,
|
|
97
|
+
paginateListConsumableResources,
|
|
98
|
+
paginateListJobs,
|
|
99
|
+
paginateListJobsByConsumableResource,
|
|
100
|
+
paginateListSchedulingPolicies,
|
|
101
|
+
paginateListServiceJobs,
|
|
102
|
+
};
|
|
83
103
|
export class Batch extends BatchClient {
|
|
84
104
|
}
|
|
85
|
-
createAggregatedClient(commands, Batch);
|
|
105
|
+
createAggregatedClient(commands, Batch, { paginators });
|
package/dist-types/Batch.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types";
|
|
1
|
+
import type { HttpHandlerOptions as __HttpHandlerOptions, PaginationConfiguration, Paginator } from "@smithy/types";
|
|
2
2
|
import { BatchClient } from "./BatchClient";
|
|
3
3
|
import { CancelJobCommandInput, CancelJobCommandOutput } from "./commands/CancelJobCommand";
|
|
4
4
|
import { CreateComputeEnvironmentCommandInput, CreateComputeEnvironmentCommandOutput } from "./commands/CreateComputeEnvironmentCommand";
|
|
@@ -282,6 +282,69 @@ export interface Batch {
|
|
|
282
282
|
updateServiceEnvironment(args: UpdateServiceEnvironmentCommandInput, options?: __HttpHandlerOptions): Promise<UpdateServiceEnvironmentCommandOutput>;
|
|
283
283
|
updateServiceEnvironment(args: UpdateServiceEnvironmentCommandInput, cb: (err: any, data?: UpdateServiceEnvironmentCommandOutput) => void): void;
|
|
284
284
|
updateServiceEnvironment(args: UpdateServiceEnvironmentCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateServiceEnvironmentCommandOutput) => void): void;
|
|
285
|
+
/**
|
|
286
|
+
* @see {@link DescribeComputeEnvironmentsCommand}
|
|
287
|
+
* @param args - command input.
|
|
288
|
+
* @param paginationConfig - optional pagination config.
|
|
289
|
+
* @returns AsyncIterable of {@link DescribeComputeEnvironmentsCommandOutput}.
|
|
290
|
+
*/
|
|
291
|
+
paginateDescribeComputeEnvironments(args?: DescribeComputeEnvironmentsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<DescribeComputeEnvironmentsCommandOutput>;
|
|
292
|
+
/**
|
|
293
|
+
* @see {@link DescribeJobDefinitionsCommand}
|
|
294
|
+
* @param args - command input.
|
|
295
|
+
* @param paginationConfig - optional pagination config.
|
|
296
|
+
* @returns AsyncIterable of {@link DescribeJobDefinitionsCommandOutput}.
|
|
297
|
+
*/
|
|
298
|
+
paginateDescribeJobDefinitions(args?: DescribeJobDefinitionsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<DescribeJobDefinitionsCommandOutput>;
|
|
299
|
+
/**
|
|
300
|
+
* @see {@link DescribeJobQueuesCommand}
|
|
301
|
+
* @param args - command input.
|
|
302
|
+
* @param paginationConfig - optional pagination config.
|
|
303
|
+
* @returns AsyncIterable of {@link DescribeJobQueuesCommandOutput}.
|
|
304
|
+
*/
|
|
305
|
+
paginateDescribeJobQueues(args?: DescribeJobQueuesCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<DescribeJobQueuesCommandOutput>;
|
|
306
|
+
/**
|
|
307
|
+
* @see {@link DescribeServiceEnvironmentsCommand}
|
|
308
|
+
* @param args - command input.
|
|
309
|
+
* @param paginationConfig - optional pagination config.
|
|
310
|
+
* @returns AsyncIterable of {@link DescribeServiceEnvironmentsCommandOutput}.
|
|
311
|
+
*/
|
|
312
|
+
paginateDescribeServiceEnvironments(args?: DescribeServiceEnvironmentsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<DescribeServiceEnvironmentsCommandOutput>;
|
|
313
|
+
/**
|
|
314
|
+
* @see {@link ListConsumableResourcesCommand}
|
|
315
|
+
* @param args - command input.
|
|
316
|
+
* @param paginationConfig - optional pagination config.
|
|
317
|
+
* @returns AsyncIterable of {@link ListConsumableResourcesCommandOutput}.
|
|
318
|
+
*/
|
|
319
|
+
paginateListConsumableResources(args?: ListConsumableResourcesCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListConsumableResourcesCommandOutput>;
|
|
320
|
+
/**
|
|
321
|
+
* @see {@link ListJobsCommand}
|
|
322
|
+
* @param args - command input.
|
|
323
|
+
* @param paginationConfig - optional pagination config.
|
|
324
|
+
* @returns AsyncIterable of {@link ListJobsCommandOutput}.
|
|
325
|
+
*/
|
|
326
|
+
paginateListJobs(args?: ListJobsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListJobsCommandOutput>;
|
|
327
|
+
/**
|
|
328
|
+
* @see {@link ListJobsByConsumableResourceCommand}
|
|
329
|
+
* @param args - command input.
|
|
330
|
+
* @param paginationConfig - optional pagination config.
|
|
331
|
+
* @returns AsyncIterable of {@link ListJobsByConsumableResourceCommandOutput}.
|
|
332
|
+
*/
|
|
333
|
+
paginateListJobsByConsumableResource(args: ListJobsByConsumableResourceCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListJobsByConsumableResourceCommandOutput>;
|
|
334
|
+
/**
|
|
335
|
+
* @see {@link ListSchedulingPoliciesCommand}
|
|
336
|
+
* @param args - command input.
|
|
337
|
+
* @param paginationConfig - optional pagination config.
|
|
338
|
+
* @returns AsyncIterable of {@link ListSchedulingPoliciesCommandOutput}.
|
|
339
|
+
*/
|
|
340
|
+
paginateListSchedulingPolicies(args?: ListSchedulingPoliciesCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListSchedulingPoliciesCommandOutput>;
|
|
341
|
+
/**
|
|
342
|
+
* @see {@link ListServiceJobsCommand}
|
|
343
|
+
* @param args - command input.
|
|
344
|
+
* @param paginationConfig - optional pagination config.
|
|
345
|
+
* @returns AsyncIterable of {@link ListServiceJobsCommandOutput}.
|
|
346
|
+
*/
|
|
347
|
+
paginateListServiceJobs(args?: ListServiceJobsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListServiceJobsCommandOutput>;
|
|
285
348
|
}
|
|
286
349
|
/**
|
|
287
350
|
* <fullname>Batch</fullname>
|
|
@@ -1,4 +1,8 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import {
|
|
2
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
3
|
+
PaginationConfiguration,
|
|
4
|
+
Paginator,
|
|
5
|
+
} from "@smithy/types";
|
|
2
6
|
import { BatchClient } from "./BatchClient";
|
|
3
7
|
import {
|
|
4
8
|
CancelJobCommandInput,
|
|
@@ -672,5 +676,68 @@ export interface Batch {
|
|
|
672
676
|
options: __HttpHandlerOptions,
|
|
673
677
|
cb: (err: any, data?: UpdateServiceEnvironmentCommandOutput) => void
|
|
674
678
|
): void;
|
|
679
|
+
paginateDescribeComputeEnvironments(
|
|
680
|
+
args?: DescribeComputeEnvironmentsCommandInput,
|
|
681
|
+
paginationConfig?: Pick<
|
|
682
|
+
PaginationConfiguration,
|
|
683
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
684
|
+
>
|
|
685
|
+
): Paginator<DescribeComputeEnvironmentsCommandOutput>;
|
|
686
|
+
paginateDescribeJobDefinitions(
|
|
687
|
+
args?: DescribeJobDefinitionsCommandInput,
|
|
688
|
+
paginationConfig?: Pick<
|
|
689
|
+
PaginationConfiguration,
|
|
690
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
691
|
+
>
|
|
692
|
+
): Paginator<DescribeJobDefinitionsCommandOutput>;
|
|
693
|
+
paginateDescribeJobQueues(
|
|
694
|
+
args?: DescribeJobQueuesCommandInput,
|
|
695
|
+
paginationConfig?: Pick<
|
|
696
|
+
PaginationConfiguration,
|
|
697
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
698
|
+
>
|
|
699
|
+
): Paginator<DescribeJobQueuesCommandOutput>;
|
|
700
|
+
paginateDescribeServiceEnvironments(
|
|
701
|
+
args?: DescribeServiceEnvironmentsCommandInput,
|
|
702
|
+
paginationConfig?: Pick<
|
|
703
|
+
PaginationConfiguration,
|
|
704
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
705
|
+
>
|
|
706
|
+
): Paginator<DescribeServiceEnvironmentsCommandOutput>;
|
|
707
|
+
paginateListConsumableResources(
|
|
708
|
+
args?: ListConsumableResourcesCommandInput,
|
|
709
|
+
paginationConfig?: Pick<
|
|
710
|
+
PaginationConfiguration,
|
|
711
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
712
|
+
>
|
|
713
|
+
): Paginator<ListConsumableResourcesCommandOutput>;
|
|
714
|
+
paginateListJobs(
|
|
715
|
+
args?: ListJobsCommandInput,
|
|
716
|
+
paginationConfig?: Pick<
|
|
717
|
+
PaginationConfiguration,
|
|
718
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
719
|
+
>
|
|
720
|
+
): Paginator<ListJobsCommandOutput>;
|
|
721
|
+
paginateListJobsByConsumableResource(
|
|
722
|
+
args: ListJobsByConsumableResourceCommandInput,
|
|
723
|
+
paginationConfig?: Pick<
|
|
724
|
+
PaginationConfiguration,
|
|
725
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
726
|
+
>
|
|
727
|
+
): Paginator<ListJobsByConsumableResourceCommandOutput>;
|
|
728
|
+
paginateListSchedulingPolicies(
|
|
729
|
+
args?: ListSchedulingPoliciesCommandInput,
|
|
730
|
+
paginationConfig?: Pick<
|
|
731
|
+
PaginationConfiguration,
|
|
732
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
733
|
+
>
|
|
734
|
+
): Paginator<ListSchedulingPoliciesCommandOutput>;
|
|
735
|
+
paginateListServiceJobs(
|
|
736
|
+
args?: ListServiceJobsCommandInput,
|
|
737
|
+
paginationConfig?: Pick<
|
|
738
|
+
PaginationConfiguration,
|
|
739
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
740
|
+
>
|
|
741
|
+
): Paginator<ListServiceJobsCommandOutput>;
|
|
675
742
|
}
|
|
676
743
|
export declare class Batch extends BatchClient implements Batch {}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-batch",
|
|
3
3
|
"description": "AWS SDK for JavaScript Batch Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.978.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-batch",
|
|
@@ -21,38 +21,38 @@
|
|
|
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.973.
|
|
25
|
-
"@aws-sdk/credential-provider-node": "^3.972.
|
|
26
|
-
"@aws-sdk/middleware-host-header": "^3.972.
|
|
27
|
-
"@aws-sdk/middleware-logger": "^3.972.
|
|
28
|
-
"@aws-sdk/middleware-recursion-detection": "^3.972.
|
|
29
|
-
"@aws-sdk/middleware-user-agent": "^3.972.
|
|
30
|
-
"@aws-sdk/region-config-resolver": "^3.972.
|
|
31
|
-
"@aws-sdk/types": "^3.973.
|
|
24
|
+
"@aws-sdk/core": "^3.973.4",
|
|
25
|
+
"@aws-sdk/credential-provider-node": "^3.972.2",
|
|
26
|
+
"@aws-sdk/middleware-host-header": "^3.972.2",
|
|
27
|
+
"@aws-sdk/middleware-logger": "^3.972.2",
|
|
28
|
+
"@aws-sdk/middleware-recursion-detection": "^3.972.2",
|
|
29
|
+
"@aws-sdk/middleware-user-agent": "^3.972.4",
|
|
30
|
+
"@aws-sdk/region-config-resolver": "^3.972.2",
|
|
31
|
+
"@aws-sdk/types": "^3.973.1",
|
|
32
32
|
"@aws-sdk/util-endpoints": "3.972.0",
|
|
33
|
-
"@aws-sdk/util-user-agent-browser": "^3.972.
|
|
34
|
-
"@aws-sdk/util-user-agent-node": "^3.972.
|
|
33
|
+
"@aws-sdk/util-user-agent-browser": "^3.972.2",
|
|
34
|
+
"@aws-sdk/util-user-agent-node": "^3.972.2",
|
|
35
35
|
"@smithy/config-resolver": "^4.4.6",
|
|
36
|
-
"@smithy/core": "^3.
|
|
36
|
+
"@smithy/core": "^3.22.0",
|
|
37
37
|
"@smithy/fetch-http-handler": "^5.3.9",
|
|
38
38
|
"@smithy/hash-node": "^4.2.8",
|
|
39
39
|
"@smithy/invalid-dependency": "^4.2.8",
|
|
40
40
|
"@smithy/middleware-content-length": "^4.2.8",
|
|
41
|
-
"@smithy/middleware-endpoint": "^4.4.
|
|
42
|
-
"@smithy/middleware-retry": "^4.4.
|
|
41
|
+
"@smithy/middleware-endpoint": "^4.4.12",
|
|
42
|
+
"@smithy/middleware-retry": "^4.4.29",
|
|
43
43
|
"@smithy/middleware-serde": "^4.2.9",
|
|
44
44
|
"@smithy/middleware-stack": "^4.2.8",
|
|
45
45
|
"@smithy/node-config-provider": "^4.3.8",
|
|
46
46
|
"@smithy/node-http-handler": "^4.4.8",
|
|
47
47
|
"@smithy/protocol-http": "^5.3.8",
|
|
48
|
-
"@smithy/smithy-client": "^4.
|
|
48
|
+
"@smithy/smithy-client": "^4.11.1",
|
|
49
49
|
"@smithy/types": "^4.12.0",
|
|
50
50
|
"@smithy/url-parser": "^4.2.8",
|
|
51
51
|
"@smithy/util-base64": "^4.3.0",
|
|
52
52
|
"@smithy/util-body-length-browser": "^4.2.0",
|
|
53
53
|
"@smithy/util-body-length-node": "^4.2.1",
|
|
54
|
-
"@smithy/util-defaults-mode-browser": "^4.3.
|
|
55
|
-
"@smithy/util-defaults-mode-node": "^4.2.
|
|
54
|
+
"@smithy/util-defaults-mode-browser": "^4.3.28",
|
|
55
|
+
"@smithy/util-defaults-mode-node": "^4.2.31",
|
|
56
56
|
"@smithy/util-endpoints": "^3.2.8",
|
|
57
57
|
"@smithy/util-middleware": "^4.2.8",
|
|
58
58
|
"@smithy/util-retry": "^4.2.8",
|