@aws-sdk/client-codeconnections 3.590.0 → 3.592.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/commands/CreateConnectionCommand.d.ts +2 -1
- package/dist-types/commands/CreateHostCommand.d.ts +2 -1
- package/dist-types/commands/CreateRepositoryLinkCommand.d.ts +2 -1
- package/dist-types/commands/CreateSyncConfigurationCommand.d.ts +2 -1
- package/dist-types/commands/DeleteConnectionCommand.d.ts +2 -1
- package/dist-types/commands/DeleteHostCommand.d.ts +2 -1
- package/dist-types/commands/DeleteRepositoryLinkCommand.d.ts +2 -1
- package/dist-types/commands/DeleteSyncConfigurationCommand.d.ts +2 -1
- package/dist-types/commands/GetConnectionCommand.d.ts +2 -1
- package/dist-types/commands/GetHostCommand.d.ts +2 -1
- package/dist-types/commands/GetRepositoryLinkCommand.d.ts +2 -1
- package/dist-types/commands/GetRepositorySyncStatusCommand.d.ts +2 -1
- package/dist-types/commands/GetResourceSyncStatusCommand.d.ts +2 -1
- package/dist-types/commands/GetSyncBlockerSummaryCommand.d.ts +2 -1
- package/dist-types/commands/GetSyncConfigurationCommand.d.ts +2 -1
- package/dist-types/commands/ListConnectionsCommand.d.ts +2 -1
- package/dist-types/commands/ListHostsCommand.d.ts +2 -1
- package/dist-types/commands/ListRepositoryLinksCommand.d.ts +2 -1
- package/dist-types/commands/ListRepositorySyncDefinitionsCommand.d.ts +2 -1
- package/dist-types/commands/ListSyncConfigurationsCommand.d.ts +2 -1
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +2 -1
- package/dist-types/commands/TagResourceCommand.d.ts +2 -1
- package/dist-types/commands/UntagResourceCommand.d.ts +2 -1
- package/dist-types/commands/UpdateHostCommand.d.ts +2 -1
- package/dist-types/commands/UpdateRepositoryLinkCommand.d.ts +2 -1
- package/dist-types/commands/UpdateSyncBlockerCommand.d.ts +2 -1
- package/dist-types/commands/UpdateSyncConfigurationCommand.d.ts +2 -1
- package/dist-types/index.d.ts +2 -2
- package/dist-types/models/CodeConnectionsServiceException.d.ts +2 -1
- package/dist-types/ts3.4/commands/CreateConnectionCommand.d.ts +2 -1
- package/dist-types/ts3.4/commands/CreateHostCommand.d.ts +2 -1
- package/dist-types/ts3.4/commands/CreateRepositoryLinkCommand.d.ts +2 -1
- package/dist-types/ts3.4/commands/CreateSyncConfigurationCommand.d.ts +2 -1
- package/dist-types/ts3.4/commands/DeleteConnectionCommand.d.ts +2 -1
- package/dist-types/ts3.4/commands/DeleteHostCommand.d.ts +2 -1
- package/dist-types/ts3.4/commands/DeleteRepositoryLinkCommand.d.ts +2 -1
- package/dist-types/ts3.4/commands/DeleteSyncConfigurationCommand.d.ts +2 -1
- package/dist-types/ts3.4/commands/GetConnectionCommand.d.ts +2 -1
- package/dist-types/ts3.4/commands/GetHostCommand.d.ts +2 -1
- package/dist-types/ts3.4/commands/GetRepositoryLinkCommand.d.ts +2 -1
- package/dist-types/ts3.4/commands/GetRepositorySyncStatusCommand.d.ts +2 -1
- package/dist-types/ts3.4/commands/GetResourceSyncStatusCommand.d.ts +2 -1
- package/dist-types/ts3.4/commands/GetSyncBlockerSummaryCommand.d.ts +2 -1
- package/dist-types/ts3.4/commands/GetSyncConfigurationCommand.d.ts +2 -1
- package/dist-types/ts3.4/commands/ListConnectionsCommand.d.ts +2 -1
- package/dist-types/ts3.4/commands/ListHostsCommand.d.ts +2 -1
- package/dist-types/ts3.4/commands/ListRepositoryLinksCommand.d.ts +2 -1
- package/dist-types/ts3.4/commands/ListRepositorySyncDefinitionsCommand.d.ts +2 -1
- package/dist-types/ts3.4/commands/ListSyncConfigurationsCommand.d.ts +2 -1
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +2 -1
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +2 -1
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +2 -1
- package/dist-types/ts3.4/commands/UpdateHostCommand.d.ts +2 -1
- package/dist-types/ts3.4/commands/UpdateRepositoryLinkCommand.d.ts +2 -1
- package/dist-types/ts3.4/commands/UpdateSyncBlockerCommand.d.ts +2 -1
- package/dist-types/ts3.4/commands/UpdateSyncConfigurationCommand.d.ts +2 -1
- package/dist-types/ts3.4/models/CodeConnectionsServiceException.d.ts +2 -1
- package/package.json +6 -6
package/dist-types/index.d.ts
CHANGED
|
@@ -84,8 +84,8 @@
|
|
|
84
84
|
export * from "./CodeConnectionsClient";
|
|
85
85
|
export * from "./CodeConnections";
|
|
86
86
|
export { ClientInputEndpointParameters } from "./endpoint/EndpointParameters";
|
|
87
|
-
export { RuntimeExtension } from "./runtimeExtensions";
|
|
88
|
-
export { CodeConnectionsExtensionConfiguration } from "./extensionConfiguration";
|
|
87
|
+
export type { RuntimeExtension } from "./runtimeExtensions";
|
|
88
|
+
export type { CodeConnectionsExtensionConfiguration } from "./extensionConfiguration";
|
|
89
89
|
export * from "./commands";
|
|
90
90
|
export * from "./pagination";
|
|
91
91
|
export * from "./models";
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { ServiceException as __ServiceException, ServiceExceptionOptions as __ServiceExceptionOptions } from "@smithy/smithy-client";
|
|
2
|
-
export {
|
|
2
|
+
export type { __ServiceExceptionOptions };
|
|
3
|
+
export { __ServiceException };
|
|
3
4
|
/**
|
|
4
5
|
* @public
|
|
5
6
|
*
|
|
@@ -9,7 +9,8 @@ import {
|
|
|
9
9
|
CreateConnectionInput,
|
|
10
10
|
CreateConnectionOutput,
|
|
11
11
|
} from "../models/models_0";
|
|
12
|
-
export { __MetadataBearer
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
13
14
|
export interface CreateConnectionCommandInput extends CreateConnectionInput {}
|
|
14
15
|
export interface CreateConnectionCommandOutput
|
|
15
16
|
extends CreateConnectionOutput,
|
|
@@ -6,7 +6,8 @@ import {
|
|
|
6
6
|
ServiceOutputTypes,
|
|
7
7
|
} from "../CodeConnectionsClient";
|
|
8
8
|
import { CreateHostInput, CreateHostOutput } from "../models/models_0";
|
|
9
|
-
export { __MetadataBearer
|
|
9
|
+
export { __MetadataBearer };
|
|
10
|
+
export { $Command };
|
|
10
11
|
export interface CreateHostCommandInput extends CreateHostInput {}
|
|
11
12
|
export interface CreateHostCommandOutput
|
|
12
13
|
extends CreateHostOutput,
|
|
@@ -9,7 +9,8 @@ import {
|
|
|
9
9
|
CreateRepositoryLinkInput,
|
|
10
10
|
CreateRepositoryLinkOutput,
|
|
11
11
|
} from "../models/models_0";
|
|
12
|
-
export { __MetadataBearer
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
13
14
|
export interface CreateRepositoryLinkCommandInput
|
|
14
15
|
extends CreateRepositoryLinkInput {}
|
|
15
16
|
export interface CreateRepositoryLinkCommandOutput
|
|
@@ -9,7 +9,8 @@ import {
|
|
|
9
9
|
CreateSyncConfigurationInput,
|
|
10
10
|
CreateSyncConfigurationOutput,
|
|
11
11
|
} from "../models/models_0";
|
|
12
|
-
export { __MetadataBearer
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
13
14
|
export interface CreateSyncConfigurationCommandInput
|
|
14
15
|
extends CreateSyncConfigurationInput {}
|
|
15
16
|
export interface CreateSyncConfigurationCommandOutput
|
|
@@ -9,7 +9,8 @@ import {
|
|
|
9
9
|
DeleteConnectionInput,
|
|
10
10
|
DeleteConnectionOutput,
|
|
11
11
|
} from "../models/models_0";
|
|
12
|
-
export { __MetadataBearer
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
13
14
|
export interface DeleteConnectionCommandInput extends DeleteConnectionInput {}
|
|
14
15
|
export interface DeleteConnectionCommandOutput
|
|
15
16
|
extends DeleteConnectionOutput,
|
|
@@ -6,7 +6,8 @@ import {
|
|
|
6
6
|
ServiceOutputTypes,
|
|
7
7
|
} from "../CodeConnectionsClient";
|
|
8
8
|
import { DeleteHostInput, DeleteHostOutput } from "../models/models_0";
|
|
9
|
-
export { __MetadataBearer
|
|
9
|
+
export { __MetadataBearer };
|
|
10
|
+
export { $Command };
|
|
10
11
|
export interface DeleteHostCommandInput extends DeleteHostInput {}
|
|
11
12
|
export interface DeleteHostCommandOutput
|
|
12
13
|
extends DeleteHostOutput,
|
|
@@ -9,7 +9,8 @@ import {
|
|
|
9
9
|
DeleteRepositoryLinkInput,
|
|
10
10
|
DeleteRepositoryLinkOutput,
|
|
11
11
|
} from "../models/models_0";
|
|
12
|
-
export { __MetadataBearer
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
13
14
|
export interface DeleteRepositoryLinkCommandInput
|
|
14
15
|
extends DeleteRepositoryLinkInput {}
|
|
15
16
|
export interface DeleteRepositoryLinkCommandOutput
|
|
@@ -9,7 +9,8 @@ import {
|
|
|
9
9
|
DeleteSyncConfigurationInput,
|
|
10
10
|
DeleteSyncConfigurationOutput,
|
|
11
11
|
} from "../models/models_0";
|
|
12
|
-
export { __MetadataBearer
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
13
14
|
export interface DeleteSyncConfigurationCommandInput
|
|
14
15
|
extends DeleteSyncConfigurationInput {}
|
|
15
16
|
export interface DeleteSyncConfigurationCommandOutput
|
|
@@ -6,7 +6,8 @@ import {
|
|
|
6
6
|
ServiceOutputTypes,
|
|
7
7
|
} from "../CodeConnectionsClient";
|
|
8
8
|
import { GetConnectionInput, GetConnectionOutput } from "../models/models_0";
|
|
9
|
-
export { __MetadataBearer
|
|
9
|
+
export { __MetadataBearer };
|
|
10
|
+
export { $Command };
|
|
10
11
|
export interface GetConnectionCommandInput extends GetConnectionInput {}
|
|
11
12
|
export interface GetConnectionCommandOutput
|
|
12
13
|
extends GetConnectionOutput,
|
|
@@ -6,7 +6,8 @@ import {
|
|
|
6
6
|
ServiceOutputTypes,
|
|
7
7
|
} from "../CodeConnectionsClient";
|
|
8
8
|
import { GetHostInput, GetHostOutput } from "../models/models_0";
|
|
9
|
-
export { __MetadataBearer
|
|
9
|
+
export { __MetadataBearer };
|
|
10
|
+
export { $Command };
|
|
10
11
|
export interface GetHostCommandInput extends GetHostInput {}
|
|
11
12
|
export interface GetHostCommandOutput extends GetHostOutput, __MetadataBearer {}
|
|
12
13
|
declare const GetHostCommand_base: {
|
|
@@ -9,7 +9,8 @@ import {
|
|
|
9
9
|
GetRepositoryLinkInput,
|
|
10
10
|
GetRepositoryLinkOutput,
|
|
11
11
|
} from "../models/models_0";
|
|
12
|
-
export { __MetadataBearer
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
13
14
|
export interface GetRepositoryLinkCommandInput extends GetRepositoryLinkInput {}
|
|
14
15
|
export interface GetRepositoryLinkCommandOutput
|
|
15
16
|
extends GetRepositoryLinkOutput,
|
|
@@ -9,7 +9,8 @@ import {
|
|
|
9
9
|
GetRepositorySyncStatusInput,
|
|
10
10
|
GetRepositorySyncStatusOutput,
|
|
11
11
|
} from "../models/models_0";
|
|
12
|
-
export { __MetadataBearer
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
13
14
|
export interface GetRepositorySyncStatusCommandInput
|
|
14
15
|
extends GetRepositorySyncStatusInput {}
|
|
15
16
|
export interface GetRepositorySyncStatusCommandOutput
|
|
@@ -9,7 +9,8 @@ import {
|
|
|
9
9
|
GetResourceSyncStatusInput,
|
|
10
10
|
GetResourceSyncStatusOutput,
|
|
11
11
|
} from "../models/models_0";
|
|
12
|
-
export { __MetadataBearer
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
13
14
|
export interface GetResourceSyncStatusCommandInput
|
|
14
15
|
extends GetResourceSyncStatusInput {}
|
|
15
16
|
export interface GetResourceSyncStatusCommandOutput
|
|
@@ -9,7 +9,8 @@ import {
|
|
|
9
9
|
GetSyncBlockerSummaryInput,
|
|
10
10
|
GetSyncBlockerSummaryOutput,
|
|
11
11
|
} from "../models/models_0";
|
|
12
|
-
export { __MetadataBearer
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
13
14
|
export interface GetSyncBlockerSummaryCommandInput
|
|
14
15
|
extends GetSyncBlockerSummaryInput {}
|
|
15
16
|
export interface GetSyncBlockerSummaryCommandOutput
|
|
@@ -9,7 +9,8 @@ import {
|
|
|
9
9
|
GetSyncConfigurationInput,
|
|
10
10
|
GetSyncConfigurationOutput,
|
|
11
11
|
} from "../models/models_0";
|
|
12
|
-
export { __MetadataBearer
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
13
14
|
export interface GetSyncConfigurationCommandInput
|
|
14
15
|
extends GetSyncConfigurationInput {}
|
|
15
16
|
export interface GetSyncConfigurationCommandOutput
|
|
@@ -9,7 +9,8 @@ import {
|
|
|
9
9
|
ListConnectionsInput,
|
|
10
10
|
ListConnectionsOutput,
|
|
11
11
|
} from "../models/models_0";
|
|
12
|
-
export { __MetadataBearer
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
13
14
|
export interface ListConnectionsCommandInput extends ListConnectionsInput {}
|
|
14
15
|
export interface ListConnectionsCommandOutput
|
|
15
16
|
extends ListConnectionsOutput,
|
|
@@ -6,7 +6,8 @@ import {
|
|
|
6
6
|
ServiceOutputTypes,
|
|
7
7
|
} from "../CodeConnectionsClient";
|
|
8
8
|
import { ListHostsInput, ListHostsOutput } from "../models/models_0";
|
|
9
|
-
export { __MetadataBearer
|
|
9
|
+
export { __MetadataBearer };
|
|
10
|
+
export { $Command };
|
|
10
11
|
export interface ListHostsCommandInput extends ListHostsInput {}
|
|
11
12
|
export interface ListHostsCommandOutput
|
|
12
13
|
extends ListHostsOutput,
|
|
@@ -9,7 +9,8 @@ import {
|
|
|
9
9
|
ListRepositoryLinksInput,
|
|
10
10
|
ListRepositoryLinksOutput,
|
|
11
11
|
} from "../models/models_0";
|
|
12
|
-
export { __MetadataBearer
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
13
14
|
export interface ListRepositoryLinksCommandInput
|
|
14
15
|
extends ListRepositoryLinksInput {}
|
|
15
16
|
export interface ListRepositoryLinksCommandOutput
|
|
@@ -9,7 +9,8 @@ import {
|
|
|
9
9
|
ListRepositorySyncDefinitionsInput,
|
|
10
10
|
ListRepositorySyncDefinitionsOutput,
|
|
11
11
|
} from "../models/models_0";
|
|
12
|
-
export { __MetadataBearer
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
13
14
|
export interface ListRepositorySyncDefinitionsCommandInput
|
|
14
15
|
extends ListRepositorySyncDefinitionsInput {}
|
|
15
16
|
export interface ListRepositorySyncDefinitionsCommandOutput
|
|
@@ -9,7 +9,8 @@ import {
|
|
|
9
9
|
ListSyncConfigurationsInput,
|
|
10
10
|
ListSyncConfigurationsOutput,
|
|
11
11
|
} from "../models/models_0";
|
|
12
|
-
export { __MetadataBearer
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
13
14
|
export interface ListSyncConfigurationsCommandInput
|
|
14
15
|
extends ListSyncConfigurationsInput {}
|
|
15
16
|
export interface ListSyncConfigurationsCommandOutput
|
|
@@ -9,7 +9,8 @@ import {
|
|
|
9
9
|
ListTagsForResourceInput,
|
|
10
10
|
ListTagsForResourceOutput,
|
|
11
11
|
} from "../models/models_0";
|
|
12
|
-
export { __MetadataBearer
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
13
14
|
export interface ListTagsForResourceCommandInput
|
|
14
15
|
extends ListTagsForResourceInput {}
|
|
15
16
|
export interface ListTagsForResourceCommandOutput
|
|
@@ -6,7 +6,8 @@ import {
|
|
|
6
6
|
ServiceOutputTypes,
|
|
7
7
|
} from "../CodeConnectionsClient";
|
|
8
8
|
import { TagResourceInput, TagResourceOutput } from "../models/models_0";
|
|
9
|
-
export { __MetadataBearer
|
|
9
|
+
export { __MetadataBearer };
|
|
10
|
+
export { $Command };
|
|
10
11
|
export interface TagResourceCommandInput extends TagResourceInput {}
|
|
11
12
|
export interface TagResourceCommandOutput
|
|
12
13
|
extends TagResourceOutput,
|
|
@@ -6,7 +6,8 @@ import {
|
|
|
6
6
|
ServiceOutputTypes,
|
|
7
7
|
} from "../CodeConnectionsClient";
|
|
8
8
|
import { UntagResourceInput, UntagResourceOutput } from "../models/models_0";
|
|
9
|
-
export { __MetadataBearer
|
|
9
|
+
export { __MetadataBearer };
|
|
10
|
+
export { $Command };
|
|
10
11
|
export interface UntagResourceCommandInput extends UntagResourceInput {}
|
|
11
12
|
export interface UntagResourceCommandOutput
|
|
12
13
|
extends UntagResourceOutput,
|
|
@@ -6,7 +6,8 @@ import {
|
|
|
6
6
|
ServiceOutputTypes,
|
|
7
7
|
} from "../CodeConnectionsClient";
|
|
8
8
|
import { UpdateHostInput, UpdateHostOutput } from "../models/models_0";
|
|
9
|
-
export { __MetadataBearer
|
|
9
|
+
export { __MetadataBearer };
|
|
10
|
+
export { $Command };
|
|
10
11
|
export interface UpdateHostCommandInput extends UpdateHostInput {}
|
|
11
12
|
export interface UpdateHostCommandOutput
|
|
12
13
|
extends UpdateHostOutput,
|
|
@@ -9,7 +9,8 @@ import {
|
|
|
9
9
|
UpdateRepositoryLinkInput,
|
|
10
10
|
UpdateRepositoryLinkOutput,
|
|
11
11
|
} from "../models/models_0";
|
|
12
|
-
export { __MetadataBearer
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
13
14
|
export interface UpdateRepositoryLinkCommandInput
|
|
14
15
|
extends UpdateRepositoryLinkInput {}
|
|
15
16
|
export interface UpdateRepositoryLinkCommandOutput
|
|
@@ -9,7 +9,8 @@ import {
|
|
|
9
9
|
UpdateSyncBlockerInput,
|
|
10
10
|
UpdateSyncBlockerOutput,
|
|
11
11
|
} from "../models/models_0";
|
|
12
|
-
export { __MetadataBearer
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
13
14
|
export interface UpdateSyncBlockerCommandInput extends UpdateSyncBlockerInput {}
|
|
14
15
|
export interface UpdateSyncBlockerCommandOutput
|
|
15
16
|
extends UpdateSyncBlockerOutput,
|
|
@@ -9,7 +9,8 @@ import {
|
|
|
9
9
|
UpdateSyncConfigurationInput,
|
|
10
10
|
UpdateSyncConfigurationOutput,
|
|
11
11
|
} from "../models/models_0";
|
|
12
|
-
export { __MetadataBearer
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
13
14
|
export interface UpdateSyncConfigurationCommandInput
|
|
14
15
|
extends UpdateSyncConfigurationInput {}
|
|
15
16
|
export interface UpdateSyncConfigurationCommandOutput
|
|
@@ -2,7 +2,8 @@ import {
|
|
|
2
2
|
ServiceException as __ServiceException,
|
|
3
3
|
ServiceExceptionOptions as __ServiceExceptionOptions,
|
|
4
4
|
} from "@smithy/smithy-client";
|
|
5
|
-
export {
|
|
5
|
+
export { __ServiceExceptionOptions };
|
|
6
|
+
export { __ServiceException };
|
|
6
7
|
export declare class CodeConnectionsServiceException extends __ServiceException {
|
|
7
8
|
constructor(options: __ServiceExceptionOptions);
|
|
8
9
|
}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-codeconnections",
|
|
3
3
|
"description": "AWS SDK for JavaScript Codeconnections Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.592.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -20,10 +20,10 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
23
|
-
"@aws-sdk/client-sso-oidc": "3.
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
25
|
-
"@aws-sdk/core": "3.
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
23
|
+
"@aws-sdk/client-sso-oidc": "3.592.0",
|
|
24
|
+
"@aws-sdk/client-sts": "3.592.0",
|
|
25
|
+
"@aws-sdk/core": "3.592.0",
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.592.0",
|
|
27
27
|
"@aws-sdk/middleware-host-header": "3.577.0",
|
|
28
28
|
"@aws-sdk/middleware-logger": "3.577.0",
|
|
29
29
|
"@aws-sdk/middleware-recursion-detection": "3.577.0",
|
|
@@ -34,7 +34,7 @@
|
|
|
34
34
|
"@aws-sdk/util-user-agent-browser": "3.577.0",
|
|
35
35
|
"@aws-sdk/util-user-agent-node": "3.587.0",
|
|
36
36
|
"@smithy/config-resolver": "^3.0.1",
|
|
37
|
-
"@smithy/core": "^2.
|
|
37
|
+
"@smithy/core": "^2.2.0",
|
|
38
38
|
"@smithy/fetch-http-handler": "^3.0.1",
|
|
39
39
|
"@smithy/hash-node": "^3.0.0",
|
|
40
40
|
"@smithy/invalid-dependency": "^3.0.0",
|