@aws-sdk/client-codeartifact 3.975.0 → 3.980.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/Codeartifact.js +23 -1
- package/dist-types/Codeartifact.d.ts +71 -1
- package/dist-types/ts3.4/Codeartifact.d.ts +75 -1
- package/package.json +18 -18
package/dist-cjs/index.js
CHANGED
|
@@ -2001,6 +2001,26 @@ class UpdateRepositoryCommand extends smithyClient.Command
|
|
|
2001
2001
|
.build() {
|
|
2002
2002
|
}
|
|
2003
2003
|
|
|
2004
|
+
const paginateListAllowedRepositoriesForGroup = core.createPaginator(CodeartifactClient, ListAllowedRepositoriesForGroupCommand, "nextToken", "nextToken", "maxResults");
|
|
2005
|
+
|
|
2006
|
+
const paginateListAssociatedPackages = core.createPaginator(CodeartifactClient, ListAssociatedPackagesCommand, "nextToken", "nextToken", "maxResults");
|
|
2007
|
+
|
|
2008
|
+
const paginateListDomains = core.createPaginator(CodeartifactClient, ListDomainsCommand, "nextToken", "nextToken", "maxResults");
|
|
2009
|
+
|
|
2010
|
+
const paginateListPackageGroups = core.createPaginator(CodeartifactClient, ListPackageGroupsCommand, "nextToken", "nextToken", "maxResults");
|
|
2011
|
+
|
|
2012
|
+
const paginateListPackages = core.createPaginator(CodeartifactClient, ListPackagesCommand, "nextToken", "nextToken", "maxResults");
|
|
2013
|
+
|
|
2014
|
+
const paginateListPackageVersionAssets = core.createPaginator(CodeartifactClient, ListPackageVersionAssetsCommand, "nextToken", "nextToken", "maxResults");
|
|
2015
|
+
|
|
2016
|
+
const paginateListPackageVersions = core.createPaginator(CodeartifactClient, ListPackageVersionsCommand, "nextToken", "nextToken", "maxResults");
|
|
2017
|
+
|
|
2018
|
+
const paginateListRepositoriesInDomain = core.createPaginator(CodeartifactClient, ListRepositoriesInDomainCommand, "nextToken", "nextToken", "maxResults");
|
|
2019
|
+
|
|
2020
|
+
const paginateListRepositories = core.createPaginator(CodeartifactClient, ListRepositoriesCommand, "nextToken", "nextToken", "maxResults");
|
|
2021
|
+
|
|
2022
|
+
const paginateListSubPackageGroups = core.createPaginator(CodeartifactClient, ListSubPackageGroupsCommand, "nextToken", "nextToken", "maxResults");
|
|
2023
|
+
|
|
2004
2024
|
const commands = {
|
|
2005
2025
|
AssociateExternalConnectionCommand,
|
|
2006
2026
|
CopyPackageVersionsCommand,
|
|
@@ -2051,29 +2071,21 @@ const commands = {
|
|
|
2051
2071
|
UpdatePackageVersionsStatusCommand,
|
|
2052
2072
|
UpdateRepositoryCommand,
|
|
2053
2073
|
};
|
|
2074
|
+
const paginators = {
|
|
2075
|
+
paginateListAllowedRepositoriesForGroup,
|
|
2076
|
+
paginateListAssociatedPackages,
|
|
2077
|
+
paginateListDomains,
|
|
2078
|
+
paginateListPackageGroups,
|
|
2079
|
+
paginateListPackages,
|
|
2080
|
+
paginateListPackageVersionAssets,
|
|
2081
|
+
paginateListPackageVersions,
|
|
2082
|
+
paginateListRepositories,
|
|
2083
|
+
paginateListRepositoriesInDomain,
|
|
2084
|
+
paginateListSubPackageGroups,
|
|
2085
|
+
};
|
|
2054
2086
|
class Codeartifact extends CodeartifactClient {
|
|
2055
2087
|
}
|
|
2056
|
-
smithyClient.createAggregatedClient(commands, Codeartifact);
|
|
2057
|
-
|
|
2058
|
-
const paginateListAllowedRepositoriesForGroup = core.createPaginator(CodeartifactClient, ListAllowedRepositoriesForGroupCommand, "nextToken", "nextToken", "maxResults");
|
|
2059
|
-
|
|
2060
|
-
const paginateListAssociatedPackages = core.createPaginator(CodeartifactClient, ListAssociatedPackagesCommand, "nextToken", "nextToken", "maxResults");
|
|
2061
|
-
|
|
2062
|
-
const paginateListDomains = core.createPaginator(CodeartifactClient, ListDomainsCommand, "nextToken", "nextToken", "maxResults");
|
|
2063
|
-
|
|
2064
|
-
const paginateListPackageGroups = core.createPaginator(CodeartifactClient, ListPackageGroupsCommand, "nextToken", "nextToken", "maxResults");
|
|
2065
|
-
|
|
2066
|
-
const paginateListPackages = core.createPaginator(CodeartifactClient, ListPackagesCommand, "nextToken", "nextToken", "maxResults");
|
|
2067
|
-
|
|
2068
|
-
const paginateListPackageVersionAssets = core.createPaginator(CodeartifactClient, ListPackageVersionAssetsCommand, "nextToken", "nextToken", "maxResults");
|
|
2069
|
-
|
|
2070
|
-
const paginateListPackageVersions = core.createPaginator(CodeartifactClient, ListPackageVersionsCommand, "nextToken", "nextToken", "maxResults");
|
|
2071
|
-
|
|
2072
|
-
const paginateListRepositories = core.createPaginator(CodeartifactClient, ListRepositoriesCommand, "nextToken", "nextToken", "maxResults");
|
|
2073
|
-
|
|
2074
|
-
const paginateListRepositoriesInDomain = core.createPaginator(CodeartifactClient, ListRepositoriesInDomainCommand, "nextToken", "nextToken", "maxResults");
|
|
2075
|
-
|
|
2076
|
-
const paginateListSubPackageGroups = core.createPaginator(CodeartifactClient, ListSubPackageGroupsCommand, "nextToken", "nextToken", "maxResults");
|
|
2088
|
+
smithyClient.createAggregatedClient(commands, Codeartifact, { paginators });
|
|
2077
2089
|
|
|
2078
2090
|
const AllowPublish = {
|
|
2079
2091
|
ALLOW: "ALLOW",
|
package/dist-es/Codeartifact.js
CHANGED
|
@@ -48,6 +48,16 @@ import { UpdatePackageGroupCommand, } from "./commands/UpdatePackageGroupCommand
|
|
|
48
48
|
import { UpdatePackageGroupOriginConfigurationCommand, } from "./commands/UpdatePackageGroupOriginConfigurationCommand";
|
|
49
49
|
import { UpdatePackageVersionsStatusCommand, } from "./commands/UpdatePackageVersionsStatusCommand";
|
|
50
50
|
import { UpdateRepositoryCommand, } from "./commands/UpdateRepositoryCommand";
|
|
51
|
+
import { paginateListAllowedRepositoriesForGroup } from "./pagination/ListAllowedRepositoriesForGroupPaginator";
|
|
52
|
+
import { paginateListAssociatedPackages } from "./pagination/ListAssociatedPackagesPaginator";
|
|
53
|
+
import { paginateListDomains } from "./pagination/ListDomainsPaginator";
|
|
54
|
+
import { paginateListPackageGroups } from "./pagination/ListPackageGroupsPaginator";
|
|
55
|
+
import { paginateListPackages } from "./pagination/ListPackagesPaginator";
|
|
56
|
+
import { paginateListPackageVersionAssets } from "./pagination/ListPackageVersionAssetsPaginator";
|
|
57
|
+
import { paginateListPackageVersions } from "./pagination/ListPackageVersionsPaginator";
|
|
58
|
+
import { paginateListRepositoriesInDomain } from "./pagination/ListRepositoriesInDomainPaginator";
|
|
59
|
+
import { paginateListRepositories } from "./pagination/ListRepositoriesPaginator";
|
|
60
|
+
import { paginateListSubPackageGroups } from "./pagination/ListSubPackageGroupsPaginator";
|
|
51
61
|
const commands = {
|
|
52
62
|
AssociateExternalConnectionCommand,
|
|
53
63
|
CopyPackageVersionsCommand,
|
|
@@ -98,6 +108,18 @@ const commands = {
|
|
|
98
108
|
UpdatePackageVersionsStatusCommand,
|
|
99
109
|
UpdateRepositoryCommand,
|
|
100
110
|
};
|
|
111
|
+
const paginators = {
|
|
112
|
+
paginateListAllowedRepositoriesForGroup,
|
|
113
|
+
paginateListAssociatedPackages,
|
|
114
|
+
paginateListDomains,
|
|
115
|
+
paginateListPackageGroups,
|
|
116
|
+
paginateListPackages,
|
|
117
|
+
paginateListPackageVersionAssets,
|
|
118
|
+
paginateListPackageVersions,
|
|
119
|
+
paginateListRepositories,
|
|
120
|
+
paginateListRepositoriesInDomain,
|
|
121
|
+
paginateListSubPackageGroups,
|
|
122
|
+
};
|
|
101
123
|
export class Codeartifact extends CodeartifactClient {
|
|
102
124
|
}
|
|
103
|
-
createAggregatedClient(commands, Codeartifact);
|
|
125
|
+
createAggregatedClient(commands, Codeartifact, { 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 { CodeartifactClient } from "./CodeartifactClient";
|
|
3
3
|
import { AssociateExternalConnectionCommandInput, AssociateExternalConnectionCommandOutput } from "./commands/AssociateExternalConnectionCommand";
|
|
4
4
|
import { CopyPackageVersionsCommandInput, CopyPackageVersionsCommandOutput } from "./commands/CopyPackageVersionsCommand";
|
|
@@ -339,6 +339,76 @@ export interface Codeartifact {
|
|
|
339
339
|
updateRepository(args: UpdateRepositoryCommandInput, options?: __HttpHandlerOptions): Promise<UpdateRepositoryCommandOutput>;
|
|
340
340
|
updateRepository(args: UpdateRepositoryCommandInput, cb: (err: any, data?: UpdateRepositoryCommandOutput) => void): void;
|
|
341
341
|
updateRepository(args: UpdateRepositoryCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateRepositoryCommandOutput) => void): void;
|
|
342
|
+
/**
|
|
343
|
+
* @see {@link ListAllowedRepositoriesForGroupCommand}
|
|
344
|
+
* @param args - command input.
|
|
345
|
+
* @param paginationConfig - optional pagination config.
|
|
346
|
+
* @returns AsyncIterable of {@link ListAllowedRepositoriesForGroupCommandOutput}.
|
|
347
|
+
*/
|
|
348
|
+
paginateListAllowedRepositoriesForGroup(args: ListAllowedRepositoriesForGroupCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListAllowedRepositoriesForGroupCommandOutput>;
|
|
349
|
+
/**
|
|
350
|
+
* @see {@link ListAssociatedPackagesCommand}
|
|
351
|
+
* @param args - command input.
|
|
352
|
+
* @param paginationConfig - optional pagination config.
|
|
353
|
+
* @returns AsyncIterable of {@link ListAssociatedPackagesCommandOutput}.
|
|
354
|
+
*/
|
|
355
|
+
paginateListAssociatedPackages(args: ListAssociatedPackagesCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListAssociatedPackagesCommandOutput>;
|
|
356
|
+
/**
|
|
357
|
+
* @see {@link ListDomainsCommand}
|
|
358
|
+
* @param args - command input.
|
|
359
|
+
* @param paginationConfig - optional pagination config.
|
|
360
|
+
* @returns AsyncIterable of {@link ListDomainsCommandOutput}.
|
|
361
|
+
*/
|
|
362
|
+
paginateListDomains(args?: ListDomainsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListDomainsCommandOutput>;
|
|
363
|
+
/**
|
|
364
|
+
* @see {@link ListPackageGroupsCommand}
|
|
365
|
+
* @param args - command input.
|
|
366
|
+
* @param paginationConfig - optional pagination config.
|
|
367
|
+
* @returns AsyncIterable of {@link ListPackageGroupsCommandOutput}.
|
|
368
|
+
*/
|
|
369
|
+
paginateListPackageGroups(args: ListPackageGroupsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListPackageGroupsCommandOutput>;
|
|
370
|
+
/**
|
|
371
|
+
* @see {@link ListPackagesCommand}
|
|
372
|
+
* @param args - command input.
|
|
373
|
+
* @param paginationConfig - optional pagination config.
|
|
374
|
+
* @returns AsyncIterable of {@link ListPackagesCommandOutput}.
|
|
375
|
+
*/
|
|
376
|
+
paginateListPackages(args: ListPackagesCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListPackagesCommandOutput>;
|
|
377
|
+
/**
|
|
378
|
+
* @see {@link ListPackageVersionAssetsCommand}
|
|
379
|
+
* @param args - command input.
|
|
380
|
+
* @param paginationConfig - optional pagination config.
|
|
381
|
+
* @returns AsyncIterable of {@link ListPackageVersionAssetsCommandOutput}.
|
|
382
|
+
*/
|
|
383
|
+
paginateListPackageVersionAssets(args: ListPackageVersionAssetsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListPackageVersionAssetsCommandOutput>;
|
|
384
|
+
/**
|
|
385
|
+
* @see {@link ListPackageVersionsCommand}
|
|
386
|
+
* @param args - command input.
|
|
387
|
+
* @param paginationConfig - optional pagination config.
|
|
388
|
+
* @returns AsyncIterable of {@link ListPackageVersionsCommandOutput}.
|
|
389
|
+
*/
|
|
390
|
+
paginateListPackageVersions(args: ListPackageVersionsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListPackageVersionsCommandOutput>;
|
|
391
|
+
/**
|
|
392
|
+
* @see {@link ListRepositoriesCommand}
|
|
393
|
+
* @param args - command input.
|
|
394
|
+
* @param paginationConfig - optional pagination config.
|
|
395
|
+
* @returns AsyncIterable of {@link ListRepositoriesCommandOutput}.
|
|
396
|
+
*/
|
|
397
|
+
paginateListRepositories(args?: ListRepositoriesCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListRepositoriesCommandOutput>;
|
|
398
|
+
/**
|
|
399
|
+
* @see {@link ListRepositoriesInDomainCommand}
|
|
400
|
+
* @param args - command input.
|
|
401
|
+
* @param paginationConfig - optional pagination config.
|
|
402
|
+
* @returns AsyncIterable of {@link ListRepositoriesInDomainCommandOutput}.
|
|
403
|
+
*/
|
|
404
|
+
paginateListRepositoriesInDomain(args: ListRepositoriesInDomainCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListRepositoriesInDomainCommandOutput>;
|
|
405
|
+
/**
|
|
406
|
+
* @see {@link ListSubPackageGroupsCommand}
|
|
407
|
+
* @param args - command input.
|
|
408
|
+
* @param paginationConfig - optional pagination config.
|
|
409
|
+
* @returns AsyncIterable of {@link ListSubPackageGroupsCommandOutput}.
|
|
410
|
+
*/
|
|
411
|
+
paginateListSubPackageGroups(args: ListSubPackageGroupsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListSubPackageGroupsCommandOutput>;
|
|
342
412
|
}
|
|
343
413
|
/**
|
|
344
414
|
* <p> CodeArtifact is a fully managed artifact repository compatible with language-native
|
|
@@ -1,4 +1,8 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import {
|
|
2
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
3
|
+
PaginationConfiguration,
|
|
4
|
+
Paginator,
|
|
5
|
+
} from "@smithy/types";
|
|
2
6
|
import { CodeartifactClient } from "./CodeartifactClient";
|
|
3
7
|
import {
|
|
4
8
|
AssociateExternalConnectionCommandInput,
|
|
@@ -831,6 +835,76 @@ export interface Codeartifact {
|
|
|
831
835
|
options: __HttpHandlerOptions,
|
|
832
836
|
cb: (err: any, data?: UpdateRepositoryCommandOutput) => void
|
|
833
837
|
): void;
|
|
838
|
+
paginateListAllowedRepositoriesForGroup(
|
|
839
|
+
args: ListAllowedRepositoriesForGroupCommandInput,
|
|
840
|
+
paginationConfig?: Pick<
|
|
841
|
+
PaginationConfiguration,
|
|
842
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
843
|
+
>
|
|
844
|
+
): Paginator<ListAllowedRepositoriesForGroupCommandOutput>;
|
|
845
|
+
paginateListAssociatedPackages(
|
|
846
|
+
args: ListAssociatedPackagesCommandInput,
|
|
847
|
+
paginationConfig?: Pick<
|
|
848
|
+
PaginationConfiguration,
|
|
849
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
850
|
+
>
|
|
851
|
+
): Paginator<ListAssociatedPackagesCommandOutput>;
|
|
852
|
+
paginateListDomains(
|
|
853
|
+
args?: ListDomainsCommandInput,
|
|
854
|
+
paginationConfig?: Pick<
|
|
855
|
+
PaginationConfiguration,
|
|
856
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
857
|
+
>
|
|
858
|
+
): Paginator<ListDomainsCommandOutput>;
|
|
859
|
+
paginateListPackageGroups(
|
|
860
|
+
args: ListPackageGroupsCommandInput,
|
|
861
|
+
paginationConfig?: Pick<
|
|
862
|
+
PaginationConfiguration,
|
|
863
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
864
|
+
>
|
|
865
|
+
): Paginator<ListPackageGroupsCommandOutput>;
|
|
866
|
+
paginateListPackages(
|
|
867
|
+
args: ListPackagesCommandInput,
|
|
868
|
+
paginationConfig?: Pick<
|
|
869
|
+
PaginationConfiguration,
|
|
870
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
871
|
+
>
|
|
872
|
+
): Paginator<ListPackagesCommandOutput>;
|
|
873
|
+
paginateListPackageVersionAssets(
|
|
874
|
+
args: ListPackageVersionAssetsCommandInput,
|
|
875
|
+
paginationConfig?: Pick<
|
|
876
|
+
PaginationConfiguration,
|
|
877
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
878
|
+
>
|
|
879
|
+
): Paginator<ListPackageVersionAssetsCommandOutput>;
|
|
880
|
+
paginateListPackageVersions(
|
|
881
|
+
args: ListPackageVersionsCommandInput,
|
|
882
|
+
paginationConfig?: Pick<
|
|
883
|
+
PaginationConfiguration,
|
|
884
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
885
|
+
>
|
|
886
|
+
): Paginator<ListPackageVersionsCommandOutput>;
|
|
887
|
+
paginateListRepositories(
|
|
888
|
+
args?: ListRepositoriesCommandInput,
|
|
889
|
+
paginationConfig?: Pick<
|
|
890
|
+
PaginationConfiguration,
|
|
891
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
892
|
+
>
|
|
893
|
+
): Paginator<ListRepositoriesCommandOutput>;
|
|
894
|
+
paginateListRepositoriesInDomain(
|
|
895
|
+
args: ListRepositoriesInDomainCommandInput,
|
|
896
|
+
paginationConfig?: Pick<
|
|
897
|
+
PaginationConfiguration,
|
|
898
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
899
|
+
>
|
|
900
|
+
): Paginator<ListRepositoriesInDomainCommandOutput>;
|
|
901
|
+
paginateListSubPackageGroups(
|
|
902
|
+
args: ListSubPackageGroupsCommandInput,
|
|
903
|
+
paginationConfig?: Pick<
|
|
904
|
+
PaginationConfiguration,
|
|
905
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
906
|
+
>
|
|
907
|
+
): Paginator<ListSubPackageGroupsCommandOutput>;
|
|
834
908
|
}
|
|
835
909
|
export declare class Codeartifact
|
|
836
910
|
extends CodeartifactClient
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-codeartifact",
|
|
3
3
|
"description": "AWS SDK for JavaScript Codeartifact Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.980.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-codeartifact",
|
|
@@ -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.
|
|
32
|
-
"@aws-sdk/util-endpoints": "3.
|
|
33
|
-
"@aws-sdk/util-user-agent-browser": "^3.972.
|
|
34
|
-
"@aws-sdk/util-user-agent-node": "^3.972.
|
|
24
|
+
"@aws-sdk/core": "^3.973.5",
|
|
25
|
+
"@aws-sdk/credential-provider-node": "^3.972.4",
|
|
26
|
+
"@aws-sdk/middleware-host-header": "^3.972.3",
|
|
27
|
+
"@aws-sdk/middleware-logger": "^3.972.3",
|
|
28
|
+
"@aws-sdk/middleware-recursion-detection": "^3.972.3",
|
|
29
|
+
"@aws-sdk/middleware-user-agent": "^3.972.5",
|
|
30
|
+
"@aws-sdk/region-config-resolver": "^3.972.3",
|
|
31
|
+
"@aws-sdk/types": "^3.973.1",
|
|
32
|
+
"@aws-sdk/util-endpoints": "3.980.0",
|
|
33
|
+
"@aws-sdk/util-user-agent-browser": "^3.972.3",
|
|
34
|
+
"@aws-sdk/util-user-agent-node": "^3.972.3",
|
|
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",
|