@aws-sdk/client-inspector 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 +33 -21
- package/dist-es/Inspector.js +23 -1
- package/dist-types/Inspector.d.ts +71 -1
- package/dist-types/ts3.4/Inspector.d.ts +75 -1
- package/package.json +17 -17
package/dist-cjs/index.js
CHANGED
|
@@ -1797,6 +1797,26 @@ class UpdateAssessmentTargetCommand extends smithyClient.Command
|
|
|
1797
1797
|
.build() {
|
|
1798
1798
|
}
|
|
1799
1799
|
|
|
1800
|
+
const paginateGetExclusionsPreview = core.createPaginator(InspectorClient, GetExclusionsPreviewCommand, "nextToken", "nextToken", "maxResults");
|
|
1801
|
+
|
|
1802
|
+
const paginateListAssessmentRunAgents = core.createPaginator(InspectorClient, ListAssessmentRunAgentsCommand, "nextToken", "nextToken", "maxResults");
|
|
1803
|
+
|
|
1804
|
+
const paginateListAssessmentRuns = core.createPaginator(InspectorClient, ListAssessmentRunsCommand, "nextToken", "nextToken", "maxResults");
|
|
1805
|
+
|
|
1806
|
+
const paginateListAssessmentTargets = core.createPaginator(InspectorClient, ListAssessmentTargetsCommand, "nextToken", "nextToken", "maxResults");
|
|
1807
|
+
|
|
1808
|
+
const paginateListAssessmentTemplates = core.createPaginator(InspectorClient, ListAssessmentTemplatesCommand, "nextToken", "nextToken", "maxResults");
|
|
1809
|
+
|
|
1810
|
+
const paginateListEventSubscriptions = core.createPaginator(InspectorClient, ListEventSubscriptionsCommand, "nextToken", "nextToken", "maxResults");
|
|
1811
|
+
|
|
1812
|
+
const paginateListExclusions = core.createPaginator(InspectorClient, ListExclusionsCommand, "nextToken", "nextToken", "maxResults");
|
|
1813
|
+
|
|
1814
|
+
const paginateListFindings = core.createPaginator(InspectorClient, ListFindingsCommand, "nextToken", "nextToken", "maxResults");
|
|
1815
|
+
|
|
1816
|
+
const paginateListRulesPackages = core.createPaginator(InspectorClient, ListRulesPackagesCommand, "nextToken", "nextToken", "maxResults");
|
|
1817
|
+
|
|
1818
|
+
const paginatePreviewAgents = core.createPaginator(InspectorClient, PreviewAgentsCommand, "nextToken", "nextToken", "maxResults");
|
|
1819
|
+
|
|
1800
1820
|
const commands = {
|
|
1801
1821
|
AddAttributesToFindingsCommand,
|
|
1802
1822
|
CreateAssessmentTargetCommand,
|
|
@@ -1836,29 +1856,21 @@ const commands = {
|
|
|
1836
1856
|
UnsubscribeFromEventCommand,
|
|
1837
1857
|
UpdateAssessmentTargetCommand,
|
|
1838
1858
|
};
|
|
1859
|
+
const paginators = {
|
|
1860
|
+
paginateGetExclusionsPreview,
|
|
1861
|
+
paginateListAssessmentRunAgents,
|
|
1862
|
+
paginateListAssessmentRuns,
|
|
1863
|
+
paginateListAssessmentTargets,
|
|
1864
|
+
paginateListAssessmentTemplates,
|
|
1865
|
+
paginateListEventSubscriptions,
|
|
1866
|
+
paginateListExclusions,
|
|
1867
|
+
paginateListFindings,
|
|
1868
|
+
paginateListRulesPackages,
|
|
1869
|
+
paginatePreviewAgents,
|
|
1870
|
+
};
|
|
1839
1871
|
class Inspector extends InspectorClient {
|
|
1840
1872
|
}
|
|
1841
|
-
smithyClient.createAggregatedClient(commands, Inspector);
|
|
1842
|
-
|
|
1843
|
-
const paginateGetExclusionsPreview = core.createPaginator(InspectorClient, GetExclusionsPreviewCommand, "nextToken", "nextToken", "maxResults");
|
|
1844
|
-
|
|
1845
|
-
const paginateListAssessmentRunAgents = core.createPaginator(InspectorClient, ListAssessmentRunAgentsCommand, "nextToken", "nextToken", "maxResults");
|
|
1846
|
-
|
|
1847
|
-
const paginateListAssessmentRuns = core.createPaginator(InspectorClient, ListAssessmentRunsCommand, "nextToken", "nextToken", "maxResults");
|
|
1848
|
-
|
|
1849
|
-
const paginateListAssessmentTargets = core.createPaginator(InspectorClient, ListAssessmentTargetsCommand, "nextToken", "nextToken", "maxResults");
|
|
1850
|
-
|
|
1851
|
-
const paginateListAssessmentTemplates = core.createPaginator(InspectorClient, ListAssessmentTemplatesCommand, "nextToken", "nextToken", "maxResults");
|
|
1852
|
-
|
|
1853
|
-
const paginateListEventSubscriptions = core.createPaginator(InspectorClient, ListEventSubscriptionsCommand, "nextToken", "nextToken", "maxResults");
|
|
1854
|
-
|
|
1855
|
-
const paginateListExclusions = core.createPaginator(InspectorClient, ListExclusionsCommand, "nextToken", "nextToken", "maxResults");
|
|
1856
|
-
|
|
1857
|
-
const paginateListFindings = core.createPaginator(InspectorClient, ListFindingsCommand, "nextToken", "nextToken", "maxResults");
|
|
1858
|
-
|
|
1859
|
-
const paginateListRulesPackages = core.createPaginator(InspectorClient, ListRulesPackagesCommand, "nextToken", "nextToken", "maxResults");
|
|
1860
|
-
|
|
1861
|
-
const paginatePreviewAgents = core.createPaginator(InspectorClient, PreviewAgentsCommand, "nextToken", "nextToken", "maxResults");
|
|
1873
|
+
smithyClient.createAggregatedClient(commands, Inspector, { paginators });
|
|
1862
1874
|
|
|
1863
1875
|
const AccessDeniedErrorCode = {
|
|
1864
1876
|
ACCESS_DENIED_TO_ASSESSMENT_RUN: "ACCESS_DENIED_TO_ASSESSMENT_RUN",
|
package/dist-es/Inspector.js
CHANGED
|
@@ -37,6 +37,16 @@ import { SubscribeToEventCommand, } from "./commands/SubscribeToEventCommand";
|
|
|
37
37
|
import { UnsubscribeFromEventCommand, } from "./commands/UnsubscribeFromEventCommand";
|
|
38
38
|
import { UpdateAssessmentTargetCommand, } from "./commands/UpdateAssessmentTargetCommand";
|
|
39
39
|
import { InspectorClient } from "./InspectorClient";
|
|
40
|
+
import { paginateGetExclusionsPreview } from "./pagination/GetExclusionsPreviewPaginator";
|
|
41
|
+
import { paginateListAssessmentRunAgents } from "./pagination/ListAssessmentRunAgentsPaginator";
|
|
42
|
+
import { paginateListAssessmentRuns } from "./pagination/ListAssessmentRunsPaginator";
|
|
43
|
+
import { paginateListAssessmentTargets } from "./pagination/ListAssessmentTargetsPaginator";
|
|
44
|
+
import { paginateListAssessmentTemplates } from "./pagination/ListAssessmentTemplatesPaginator";
|
|
45
|
+
import { paginateListEventSubscriptions } from "./pagination/ListEventSubscriptionsPaginator";
|
|
46
|
+
import { paginateListExclusions } from "./pagination/ListExclusionsPaginator";
|
|
47
|
+
import { paginateListFindings } from "./pagination/ListFindingsPaginator";
|
|
48
|
+
import { paginateListRulesPackages } from "./pagination/ListRulesPackagesPaginator";
|
|
49
|
+
import { paginatePreviewAgents } from "./pagination/PreviewAgentsPaginator";
|
|
40
50
|
const commands = {
|
|
41
51
|
AddAttributesToFindingsCommand,
|
|
42
52
|
CreateAssessmentTargetCommand,
|
|
@@ -76,6 +86,18 @@ const commands = {
|
|
|
76
86
|
UnsubscribeFromEventCommand,
|
|
77
87
|
UpdateAssessmentTargetCommand,
|
|
78
88
|
};
|
|
89
|
+
const paginators = {
|
|
90
|
+
paginateGetExclusionsPreview,
|
|
91
|
+
paginateListAssessmentRunAgents,
|
|
92
|
+
paginateListAssessmentRuns,
|
|
93
|
+
paginateListAssessmentTargets,
|
|
94
|
+
paginateListAssessmentTemplates,
|
|
95
|
+
paginateListEventSubscriptions,
|
|
96
|
+
paginateListExclusions,
|
|
97
|
+
paginateListFindings,
|
|
98
|
+
paginateListRulesPackages,
|
|
99
|
+
paginatePreviewAgents,
|
|
100
|
+
};
|
|
79
101
|
export class Inspector extends InspectorClient {
|
|
80
102
|
}
|
|
81
|
-
createAggregatedClient(commands, Inspector);
|
|
103
|
+
createAggregatedClient(commands, Inspector, { paginators });
|
|
@@ -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 { AddAttributesToFindingsCommandInput, AddAttributesToFindingsCommandOutput } from "./commands/AddAttributesToFindingsCommand";
|
|
3
3
|
import { CreateAssessmentTargetCommandInput, CreateAssessmentTargetCommandOutput } from "./commands/CreateAssessmentTargetCommand";
|
|
4
4
|
import { CreateAssessmentTemplateCommandInput, CreateAssessmentTemplateCommandOutput } from "./commands/CreateAssessmentTemplateCommand";
|
|
@@ -267,6 +267,76 @@ export interface Inspector {
|
|
|
267
267
|
updateAssessmentTarget(args: UpdateAssessmentTargetCommandInput, options?: __HttpHandlerOptions): Promise<UpdateAssessmentTargetCommandOutput>;
|
|
268
268
|
updateAssessmentTarget(args: UpdateAssessmentTargetCommandInput, cb: (err: any, data?: UpdateAssessmentTargetCommandOutput) => void): void;
|
|
269
269
|
updateAssessmentTarget(args: UpdateAssessmentTargetCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateAssessmentTargetCommandOutput) => void): void;
|
|
270
|
+
/**
|
|
271
|
+
* @see {@link GetExclusionsPreviewCommand}
|
|
272
|
+
* @param args - command input.
|
|
273
|
+
* @param paginationConfig - optional pagination config.
|
|
274
|
+
* @returns AsyncIterable of {@link GetExclusionsPreviewCommandOutput}.
|
|
275
|
+
*/
|
|
276
|
+
paginateGetExclusionsPreview(args: GetExclusionsPreviewCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<GetExclusionsPreviewCommandOutput>;
|
|
277
|
+
/**
|
|
278
|
+
* @see {@link ListAssessmentRunAgentsCommand}
|
|
279
|
+
* @param args - command input.
|
|
280
|
+
* @param paginationConfig - optional pagination config.
|
|
281
|
+
* @returns AsyncIterable of {@link ListAssessmentRunAgentsCommandOutput}.
|
|
282
|
+
*/
|
|
283
|
+
paginateListAssessmentRunAgents(args: ListAssessmentRunAgentsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListAssessmentRunAgentsCommandOutput>;
|
|
284
|
+
/**
|
|
285
|
+
* @see {@link ListAssessmentRunsCommand}
|
|
286
|
+
* @param args - command input.
|
|
287
|
+
* @param paginationConfig - optional pagination config.
|
|
288
|
+
* @returns AsyncIterable of {@link ListAssessmentRunsCommandOutput}.
|
|
289
|
+
*/
|
|
290
|
+
paginateListAssessmentRuns(args?: ListAssessmentRunsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListAssessmentRunsCommandOutput>;
|
|
291
|
+
/**
|
|
292
|
+
* @see {@link ListAssessmentTargetsCommand}
|
|
293
|
+
* @param args - command input.
|
|
294
|
+
* @param paginationConfig - optional pagination config.
|
|
295
|
+
* @returns AsyncIterable of {@link ListAssessmentTargetsCommandOutput}.
|
|
296
|
+
*/
|
|
297
|
+
paginateListAssessmentTargets(args?: ListAssessmentTargetsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListAssessmentTargetsCommandOutput>;
|
|
298
|
+
/**
|
|
299
|
+
* @see {@link ListAssessmentTemplatesCommand}
|
|
300
|
+
* @param args - command input.
|
|
301
|
+
* @param paginationConfig - optional pagination config.
|
|
302
|
+
* @returns AsyncIterable of {@link ListAssessmentTemplatesCommandOutput}.
|
|
303
|
+
*/
|
|
304
|
+
paginateListAssessmentTemplates(args?: ListAssessmentTemplatesCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListAssessmentTemplatesCommandOutput>;
|
|
305
|
+
/**
|
|
306
|
+
* @see {@link ListEventSubscriptionsCommand}
|
|
307
|
+
* @param args - command input.
|
|
308
|
+
* @param paginationConfig - optional pagination config.
|
|
309
|
+
* @returns AsyncIterable of {@link ListEventSubscriptionsCommandOutput}.
|
|
310
|
+
*/
|
|
311
|
+
paginateListEventSubscriptions(args?: ListEventSubscriptionsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListEventSubscriptionsCommandOutput>;
|
|
312
|
+
/**
|
|
313
|
+
* @see {@link ListExclusionsCommand}
|
|
314
|
+
* @param args - command input.
|
|
315
|
+
* @param paginationConfig - optional pagination config.
|
|
316
|
+
* @returns AsyncIterable of {@link ListExclusionsCommandOutput}.
|
|
317
|
+
*/
|
|
318
|
+
paginateListExclusions(args: ListExclusionsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListExclusionsCommandOutput>;
|
|
319
|
+
/**
|
|
320
|
+
* @see {@link ListFindingsCommand}
|
|
321
|
+
* @param args - command input.
|
|
322
|
+
* @param paginationConfig - optional pagination config.
|
|
323
|
+
* @returns AsyncIterable of {@link ListFindingsCommandOutput}.
|
|
324
|
+
*/
|
|
325
|
+
paginateListFindings(args?: ListFindingsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListFindingsCommandOutput>;
|
|
326
|
+
/**
|
|
327
|
+
* @see {@link ListRulesPackagesCommand}
|
|
328
|
+
* @param args - command input.
|
|
329
|
+
* @param paginationConfig - optional pagination config.
|
|
330
|
+
* @returns AsyncIterable of {@link ListRulesPackagesCommandOutput}.
|
|
331
|
+
*/
|
|
332
|
+
paginateListRulesPackages(args?: ListRulesPackagesCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListRulesPackagesCommandOutput>;
|
|
333
|
+
/**
|
|
334
|
+
* @see {@link PreviewAgentsCommand}
|
|
335
|
+
* @param args - command input.
|
|
336
|
+
* @param paginationConfig - optional pagination config.
|
|
337
|
+
* @returns AsyncIterable of {@link PreviewAgentsCommandOutput}.
|
|
338
|
+
*/
|
|
339
|
+
paginatePreviewAgents(args: PreviewAgentsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<PreviewAgentsCommandOutput>;
|
|
270
340
|
}
|
|
271
341
|
/**
|
|
272
342
|
* <fullname>Amazon Inspector</fullname>
|
|
@@ -1,4 +1,8 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import {
|
|
2
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
3
|
+
PaginationConfiguration,
|
|
4
|
+
Paginator,
|
|
5
|
+
} from "@smithy/types";
|
|
2
6
|
import {
|
|
3
7
|
AddAttributesToFindingsCommandInput,
|
|
4
8
|
AddAttributesToFindingsCommandOutput,
|
|
@@ -637,5 +641,75 @@ export interface Inspector {
|
|
|
637
641
|
options: __HttpHandlerOptions,
|
|
638
642
|
cb: (err: any, data?: UpdateAssessmentTargetCommandOutput) => void
|
|
639
643
|
): void;
|
|
644
|
+
paginateGetExclusionsPreview(
|
|
645
|
+
args: GetExclusionsPreviewCommandInput,
|
|
646
|
+
paginationConfig?: Pick<
|
|
647
|
+
PaginationConfiguration,
|
|
648
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
649
|
+
>
|
|
650
|
+
): Paginator<GetExclusionsPreviewCommandOutput>;
|
|
651
|
+
paginateListAssessmentRunAgents(
|
|
652
|
+
args: ListAssessmentRunAgentsCommandInput,
|
|
653
|
+
paginationConfig?: Pick<
|
|
654
|
+
PaginationConfiguration,
|
|
655
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
656
|
+
>
|
|
657
|
+
): Paginator<ListAssessmentRunAgentsCommandOutput>;
|
|
658
|
+
paginateListAssessmentRuns(
|
|
659
|
+
args?: ListAssessmentRunsCommandInput,
|
|
660
|
+
paginationConfig?: Pick<
|
|
661
|
+
PaginationConfiguration,
|
|
662
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
663
|
+
>
|
|
664
|
+
): Paginator<ListAssessmentRunsCommandOutput>;
|
|
665
|
+
paginateListAssessmentTargets(
|
|
666
|
+
args?: ListAssessmentTargetsCommandInput,
|
|
667
|
+
paginationConfig?: Pick<
|
|
668
|
+
PaginationConfiguration,
|
|
669
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
670
|
+
>
|
|
671
|
+
): Paginator<ListAssessmentTargetsCommandOutput>;
|
|
672
|
+
paginateListAssessmentTemplates(
|
|
673
|
+
args?: ListAssessmentTemplatesCommandInput,
|
|
674
|
+
paginationConfig?: Pick<
|
|
675
|
+
PaginationConfiguration,
|
|
676
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
677
|
+
>
|
|
678
|
+
): Paginator<ListAssessmentTemplatesCommandOutput>;
|
|
679
|
+
paginateListEventSubscriptions(
|
|
680
|
+
args?: ListEventSubscriptionsCommandInput,
|
|
681
|
+
paginationConfig?: Pick<
|
|
682
|
+
PaginationConfiguration,
|
|
683
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
684
|
+
>
|
|
685
|
+
): Paginator<ListEventSubscriptionsCommandOutput>;
|
|
686
|
+
paginateListExclusions(
|
|
687
|
+
args: ListExclusionsCommandInput,
|
|
688
|
+
paginationConfig?: Pick<
|
|
689
|
+
PaginationConfiguration,
|
|
690
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
691
|
+
>
|
|
692
|
+
): Paginator<ListExclusionsCommandOutput>;
|
|
693
|
+
paginateListFindings(
|
|
694
|
+
args?: ListFindingsCommandInput,
|
|
695
|
+
paginationConfig?: Pick<
|
|
696
|
+
PaginationConfiguration,
|
|
697
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
698
|
+
>
|
|
699
|
+
): Paginator<ListFindingsCommandOutput>;
|
|
700
|
+
paginateListRulesPackages(
|
|
701
|
+
args?: ListRulesPackagesCommandInput,
|
|
702
|
+
paginationConfig?: Pick<
|
|
703
|
+
PaginationConfiguration,
|
|
704
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
705
|
+
>
|
|
706
|
+
): Paginator<ListRulesPackagesCommandOutput>;
|
|
707
|
+
paginatePreviewAgents(
|
|
708
|
+
args: PreviewAgentsCommandInput,
|
|
709
|
+
paginationConfig?: Pick<
|
|
710
|
+
PaginationConfiguration,
|
|
711
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
712
|
+
>
|
|
713
|
+
): Paginator<PreviewAgentsCommandOutput>;
|
|
640
714
|
}
|
|
641
715
|
export declare class Inspector extends InspectorClient implements Inspector {}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-inspector",
|
|
3
3
|
"description": "AWS SDK for JavaScript Inspector 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-inspector",
|
|
@@ -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",
|