@aws-sdk/client-appconfigdata 3.170.0 → 3.178.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/CHANGELOG.md +16 -0
- package/dist-types/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/runtimeConfig.d.ts +1 -1
- package/dist-types/runtimeConfig.native.d.ts +1 -1
- package/dist-types/ts3.4/AppConfigData.d.ts +0 -2
- package/dist-types/ts3.4/AppConfigDataClient.d.ts +0 -25
- package/dist-types/ts3.4/commands/GetLatestConfigurationCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/StartConfigurationSessionCommand.d.ts +0 -2
- package/dist-types/ts3.4/models/AppConfigDataServiceException.d.ts +0 -1
- package/dist-types/ts3.4/models/models_0.d.ts +0 -32
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +3 -2
- package/dist-types/ts3.4/runtimeConfig.d.ts +3 -2
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +3 -2
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +0 -1
- package/package.json +26 -26
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,22 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
# [3.178.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.177.0...v3.178.0) (2022-09-23)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @aws-sdk/client-appconfigdata
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
# [3.171.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.170.0...v3.171.0) (2022-09-14)
|
|
15
|
+
|
|
16
|
+
**Note:** Version bump only for package @aws-sdk/client-appconfigdata
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
|
|
6
22
|
# [3.170.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.169.0...v3.170.0) (2022-09-13)
|
|
7
23
|
|
|
8
24
|
**Note:** Version bump only for package @aws-sdk/client-appconfigdata
|
|
@@ -31,7 +31,7 @@ export declare const getRuntimeConfig: (config: AppConfigDataClientConfig) => {
|
|
|
31
31
|
tls?: boolean | undefined;
|
|
32
32
|
retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
|
|
33
33
|
credentials?: import("@aws-sdk/types").Credentials | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials> | undefined;
|
|
34
|
-
signer?: import("@aws-sdk/types").RequestSigner | import("@aws-sdk/types").
|
|
34
|
+
signer?: import("@aws-sdk/types").RequestSigner | ((authScheme?: import("@aws-sdk/types").AuthScheme | undefined) => Promise<import("@aws-sdk/types").RequestSigner>) | undefined;
|
|
35
35
|
signingEscapePath?: boolean | undefined;
|
|
36
36
|
systemClockOffset?: number | undefined;
|
|
37
37
|
signingRegion?: string | undefined;
|
|
@@ -31,7 +31,7 @@ export declare const getRuntimeConfig: (config: AppConfigDataClientConfig) => {
|
|
|
31
31
|
tls?: boolean | undefined;
|
|
32
32
|
retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
|
|
33
33
|
credentials?: import("@aws-sdk/types").Credentials | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials> | undefined;
|
|
34
|
-
signer?: import("@aws-sdk/types").RequestSigner | import("@aws-sdk/types").
|
|
34
|
+
signer?: import("@aws-sdk/types").RequestSigner | ((authScheme?: import("@aws-sdk/types").AuthScheme | undefined) => Promise<import("@aws-sdk/types").RequestSigner>) | undefined;
|
|
35
35
|
signingEscapePath?: boolean | undefined;
|
|
36
36
|
systemClockOffset?: number | undefined;
|
|
37
37
|
signingRegion?: string | undefined;
|
|
@@ -30,7 +30,7 @@ export declare const getRuntimeConfig: (config: AppConfigDataClientConfig) => {
|
|
|
30
30
|
tls?: boolean | undefined;
|
|
31
31
|
retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
|
|
32
32
|
credentials?: import("@aws-sdk/types").Credentials | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials> | undefined;
|
|
33
|
-
signer?: import("@aws-sdk/types").RequestSigner | import("@aws-sdk/types").
|
|
33
|
+
signer?: import("@aws-sdk/types").RequestSigner | ((authScheme?: import("@aws-sdk/types").AuthScheme | undefined) => Promise<import("@aws-sdk/types").RequestSigner>) | undefined;
|
|
34
34
|
signingEscapePath?: boolean | undefined;
|
|
35
35
|
systemClockOffset?: number | undefined;
|
|
36
36
|
signingRegion?: string | undefined;
|
|
@@ -8,7 +8,6 @@ import {
|
|
|
8
8
|
StartConfigurationSessionCommandInput,
|
|
9
9
|
StartConfigurationSessionCommandOutput,
|
|
10
10
|
} from "./commands/StartConfigurationSessionCommand";
|
|
11
|
-
|
|
12
11
|
export declare class AppConfigData extends AppConfigDataClient {
|
|
13
12
|
getLatestConfiguration(
|
|
14
13
|
args: GetLatestConfigurationCommandInput,
|
|
@@ -23,7 +22,6 @@ export declare class AppConfigData extends AppConfigDataClient {
|
|
|
23
22
|
options: __HttpHandlerOptions,
|
|
24
23
|
cb: (err: any, data?: GetLatestConfigurationCommandOutput) => void
|
|
25
24
|
): void;
|
|
26
|
-
|
|
27
25
|
startConfigurationSession(
|
|
28
26
|
args: StartConfigurationSessionCommandInput,
|
|
29
27
|
options?: __HttpHandlerOptions
|
|
@@ -59,47 +59,26 @@ export declare type ServiceOutputTypes =
|
|
|
59
59
|
export interface ClientDefaults
|
|
60
60
|
extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
|
|
61
61
|
requestHandler?: __HttpHandler;
|
|
62
|
-
|
|
63
62
|
sha256?: __HashConstructor;
|
|
64
|
-
|
|
65
63
|
urlParser?: __UrlParser;
|
|
66
|
-
|
|
67
64
|
bodyLengthChecker?: __BodyLengthCalculator;
|
|
68
|
-
|
|
69
65
|
streamCollector?: __StreamCollector;
|
|
70
|
-
|
|
71
66
|
base64Decoder?: __Decoder;
|
|
72
|
-
|
|
73
67
|
base64Encoder?: __Encoder;
|
|
74
|
-
|
|
75
68
|
utf8Decoder?: __Decoder;
|
|
76
|
-
|
|
77
69
|
utf8Encoder?: __Encoder;
|
|
78
|
-
|
|
79
70
|
runtime?: string;
|
|
80
|
-
|
|
81
71
|
disableHostPrefix?: boolean;
|
|
82
|
-
|
|
83
72
|
maxAttempts?: number | __Provider<number>;
|
|
84
|
-
|
|
85
73
|
retryMode?: string | __Provider<string>;
|
|
86
|
-
|
|
87
74
|
logger?: __Logger;
|
|
88
|
-
|
|
89
75
|
useDualstackEndpoint?: boolean | __Provider<boolean>;
|
|
90
|
-
|
|
91
76
|
useFipsEndpoint?: boolean | __Provider<boolean>;
|
|
92
|
-
|
|
93
77
|
serviceId?: string;
|
|
94
|
-
|
|
95
78
|
region?: string | __Provider<string>;
|
|
96
|
-
|
|
97
79
|
credentialDefaultProvider?: (input: any) => __Provider<__Credentials>;
|
|
98
|
-
|
|
99
80
|
regionInfoProvider?: RegionInfoProvider;
|
|
100
|
-
|
|
101
81
|
defaultUserAgentProvider?: Provider<__UserAgent>;
|
|
102
|
-
|
|
103
82
|
defaultsMode?: DefaultsMode | Provider<DefaultsMode>;
|
|
104
83
|
}
|
|
105
84
|
declare type AppConfigDataClientConfigType = Partial<
|
|
@@ -112,7 +91,6 @@ declare type AppConfigDataClientConfigType = Partial<
|
|
|
112
91
|
HostHeaderInputConfig &
|
|
113
92
|
AwsAuthInputConfig &
|
|
114
93
|
UserAgentInputConfig;
|
|
115
|
-
|
|
116
94
|
export interface AppConfigDataClientConfig
|
|
117
95
|
extends AppConfigDataClientConfigType {}
|
|
118
96
|
declare type AppConfigDataClientResolvedConfigType =
|
|
@@ -124,10 +102,8 @@ declare type AppConfigDataClientResolvedConfigType =
|
|
|
124
102
|
HostHeaderResolvedConfig &
|
|
125
103
|
AwsAuthResolvedConfig &
|
|
126
104
|
UserAgentResolvedConfig;
|
|
127
|
-
|
|
128
105
|
export interface AppConfigDataClientResolvedConfig
|
|
129
106
|
extends AppConfigDataClientResolvedConfigType {}
|
|
130
|
-
|
|
131
107
|
export declare class AppConfigDataClient extends __Client<
|
|
132
108
|
__HttpHandlerOptions,
|
|
133
109
|
ServiceInputTypes,
|
|
@@ -136,7 +112,6 @@ export declare class AppConfigDataClient extends __Client<
|
|
|
136
112
|
> {
|
|
137
113
|
readonly config: AppConfigDataClientResolvedConfig;
|
|
138
114
|
constructor(configuration: AppConfigDataClientConfig);
|
|
139
|
-
|
|
140
115
|
destroy(): void;
|
|
141
116
|
}
|
|
142
117
|
export {};
|
|
@@ -19,7 +19,6 @@ export interface GetLatestConfigurationCommandInput
|
|
|
19
19
|
export interface GetLatestConfigurationCommandOutput
|
|
20
20
|
extends GetLatestConfigurationResponse,
|
|
21
21
|
__MetadataBearer {}
|
|
22
|
-
|
|
23
22
|
export declare class GetLatestConfigurationCommand extends $Command<
|
|
24
23
|
GetLatestConfigurationCommandInput,
|
|
25
24
|
GetLatestConfigurationCommandOutput,
|
|
@@ -27,7 +26,6 @@ export declare class GetLatestConfigurationCommand extends $Command<
|
|
|
27
26
|
> {
|
|
28
27
|
readonly input: GetLatestConfigurationCommandInput;
|
|
29
28
|
constructor(input: GetLatestConfigurationCommandInput);
|
|
30
|
-
|
|
31
29
|
resolveMiddleware(
|
|
32
30
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
31
|
configuration: AppConfigDataClientResolvedConfig,
|
|
@@ -19,7 +19,6 @@ export interface StartConfigurationSessionCommandInput
|
|
|
19
19
|
export interface StartConfigurationSessionCommandOutput
|
|
20
20
|
extends StartConfigurationSessionResponse,
|
|
21
21
|
__MetadataBearer {}
|
|
22
|
-
|
|
23
22
|
export declare class StartConfigurationSessionCommand extends $Command<
|
|
24
23
|
StartConfigurationSessionCommandInput,
|
|
25
24
|
StartConfigurationSessionCommandOutput,
|
|
@@ -27,7 +26,6 @@ export declare class StartConfigurationSessionCommand extends $Command<
|
|
|
27
26
|
> {
|
|
28
27
|
readonly input: StartConfigurationSessionCommandInput;
|
|
29
28
|
constructor(input: StartConfigurationSessionCommandInput);
|
|
30
|
-
|
|
31
29
|
resolveMiddleware(
|
|
32
30
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
31
|
configuration: AppConfigDataClientResolvedConfig,
|
|
@@ -2,7 +2,6 @@ import {
|
|
|
2
2
|
ServiceException as __ServiceException,
|
|
3
3
|
ServiceExceptionOptions as __ServiceExceptionOptions,
|
|
4
4
|
} from "@aws-sdk/smithy-client";
|
|
5
|
-
|
|
6
5
|
export declare class AppConfigDataServiceException extends __ServiceException {
|
|
7
6
|
constructor(options: __ServiceExceptionOptions);
|
|
8
7
|
}
|
|
@@ -2,16 +2,12 @@ import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-cl
|
|
|
2
2
|
import { AppConfigDataServiceException as __BaseException } from "./AppConfigDataServiceException";
|
|
3
3
|
export declare enum InvalidParameterProblem {
|
|
4
4
|
CORRUPTED = "Corrupted",
|
|
5
|
-
|
|
6
5
|
EXPIRED = "Expired",
|
|
7
|
-
|
|
8
6
|
POLL_INTERVAL_NOT_SATISFIED = "PollIntervalNotSatisfied",
|
|
9
7
|
}
|
|
10
|
-
|
|
11
8
|
export interface InvalidParameterDetail {
|
|
12
9
|
Problem?: InvalidParameterProblem | string;
|
|
13
10
|
}
|
|
14
|
-
|
|
15
11
|
export declare type BadRequestDetails =
|
|
16
12
|
| BadRequestDetails.InvalidParametersMember
|
|
17
13
|
| BadRequestDetails.$UnknownMember;
|
|
@@ -33,73 +29,54 @@ export declare namespace BadRequestDetails {
|
|
|
33
29
|
export declare enum BadRequestReason {
|
|
34
30
|
INVALID_PARAMETERS = "InvalidParameters",
|
|
35
31
|
}
|
|
36
|
-
|
|
37
32
|
export declare class BadRequestException extends __BaseException {
|
|
38
33
|
readonly name: "BadRequestException";
|
|
39
34
|
readonly $fault: "client";
|
|
40
35
|
Message?: string;
|
|
41
|
-
|
|
42
36
|
Reason?: BadRequestReason | string;
|
|
43
|
-
|
|
44
37
|
Details?: BadRequestDetails;
|
|
45
|
-
|
|
46
38
|
constructor(
|
|
47
39
|
opts: __ExceptionOptionType<BadRequestException, __BaseException>
|
|
48
40
|
);
|
|
49
41
|
}
|
|
50
|
-
|
|
51
42
|
export declare class InternalServerException extends __BaseException {
|
|
52
43
|
readonly name: "InternalServerException";
|
|
53
44
|
readonly $fault: "server";
|
|
54
45
|
Message?: string;
|
|
55
|
-
|
|
56
46
|
constructor(
|
|
57
47
|
opts: __ExceptionOptionType<InternalServerException, __BaseException>
|
|
58
48
|
);
|
|
59
49
|
}
|
|
60
50
|
export declare enum ResourceType {
|
|
61
51
|
APPLICATION = "Application",
|
|
62
|
-
|
|
63
52
|
CONFIGURATION = "Configuration",
|
|
64
|
-
|
|
65
53
|
CONFIGURATION_PROFILE = "ConfigurationProfile",
|
|
66
|
-
|
|
67
54
|
DEPLOYMENT = "Deployment",
|
|
68
|
-
|
|
69
55
|
ENVIRONMENT = "Environment",
|
|
70
56
|
}
|
|
71
|
-
|
|
72
57
|
export declare class ResourceNotFoundException extends __BaseException {
|
|
73
58
|
readonly name: "ResourceNotFoundException";
|
|
74
59
|
readonly $fault: "client";
|
|
75
60
|
Message?: string;
|
|
76
|
-
|
|
77
61
|
ResourceType?: ResourceType | string;
|
|
78
|
-
|
|
79
62
|
ReferencedBy?: Record<string, string>;
|
|
80
|
-
|
|
81
63
|
constructor(
|
|
82
64
|
opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
|
|
83
65
|
);
|
|
84
66
|
}
|
|
85
67
|
export interface StartConfigurationSessionRequest {
|
|
86
68
|
ApplicationIdentifier: string | undefined;
|
|
87
|
-
|
|
88
69
|
EnvironmentIdentifier: string | undefined;
|
|
89
|
-
|
|
90
70
|
ConfigurationProfileIdentifier: string | undefined;
|
|
91
|
-
|
|
92
71
|
RequiredMinimumPollIntervalInSeconds?: number;
|
|
93
72
|
}
|
|
94
73
|
export interface StartConfigurationSessionResponse {
|
|
95
74
|
InitialConfigurationToken?: string;
|
|
96
75
|
}
|
|
97
|
-
|
|
98
76
|
export declare class ThrottlingException extends __BaseException {
|
|
99
77
|
readonly name: "ThrottlingException";
|
|
100
78
|
readonly $fault: "client";
|
|
101
79
|
Message?: string;
|
|
102
|
-
|
|
103
80
|
constructor(
|
|
104
81
|
opts: __ExceptionOptionType<ThrottlingException, __BaseException>
|
|
105
82
|
);
|
|
@@ -109,34 +86,25 @@ export interface GetLatestConfigurationRequest {
|
|
|
109
86
|
}
|
|
110
87
|
export interface GetLatestConfigurationResponse {
|
|
111
88
|
NextPollConfigurationToken?: string;
|
|
112
|
-
|
|
113
89
|
NextPollIntervalInSeconds?: number;
|
|
114
|
-
|
|
115
90
|
ContentType?: string;
|
|
116
|
-
|
|
117
91
|
Configuration?: Uint8Array;
|
|
118
92
|
}
|
|
119
|
-
|
|
120
93
|
export declare const InvalidParameterDetailFilterSensitiveLog: (
|
|
121
94
|
obj: InvalidParameterDetail
|
|
122
95
|
) => any;
|
|
123
|
-
|
|
124
96
|
export declare const BadRequestDetailsFilterSensitiveLog: (
|
|
125
97
|
obj: BadRequestDetails
|
|
126
98
|
) => any;
|
|
127
|
-
|
|
128
99
|
export declare const StartConfigurationSessionRequestFilterSensitiveLog: (
|
|
129
100
|
obj: StartConfigurationSessionRequest
|
|
130
101
|
) => any;
|
|
131
|
-
|
|
132
102
|
export declare const StartConfigurationSessionResponseFilterSensitiveLog: (
|
|
133
103
|
obj: StartConfigurationSessionResponse
|
|
134
104
|
) => any;
|
|
135
|
-
|
|
136
105
|
export declare const GetLatestConfigurationRequestFilterSensitiveLog: (
|
|
137
106
|
obj: GetLatestConfigurationRequest
|
|
138
107
|
) => any;
|
|
139
|
-
|
|
140
108
|
export declare const GetLatestConfigurationResponseFilterSensitiveLog: (
|
|
141
109
|
obj: GetLatestConfigurationResponse
|
|
142
110
|
) => any;
|
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
import { FetchHttpHandler as RequestHandler } from "@aws-sdk/fetch-http-handler";
|
|
2
2
|
import { AppConfigDataClientConfig } from "./AppConfigDataClient";
|
|
3
|
-
|
|
4
3
|
export declare const getRuntimeConfig: (config: AppConfigDataClientConfig) => {
|
|
5
4
|
runtime: string;
|
|
6
5
|
defaultsMode: import("@aws-sdk/types").Provider<
|
|
@@ -51,7 +50,9 @@ export declare const getRuntimeConfig: (config: AppConfigDataClientConfig) => {
|
|
|
51
50
|
| undefined;
|
|
52
51
|
signer?:
|
|
53
52
|
| import("@aws-sdk/types").RequestSigner
|
|
54
|
-
|
|
|
53
|
+
| ((
|
|
54
|
+
authScheme?: import("@aws-sdk/types").AuthScheme | undefined
|
|
55
|
+
) => Promise<import("@aws-sdk/types").RequestSigner>)
|
|
55
56
|
| undefined;
|
|
56
57
|
signingEscapePath?: boolean | undefined;
|
|
57
58
|
systemClockOffset?: number | undefined;
|
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
import { NodeHttpHandler as RequestHandler } from "@aws-sdk/node-http-handler";
|
|
2
2
|
import { AppConfigDataClientConfig } from "./AppConfigDataClient";
|
|
3
|
-
|
|
4
3
|
export declare const getRuntimeConfig: (config: AppConfigDataClientConfig) => {
|
|
5
4
|
runtime: string;
|
|
6
5
|
defaultsMode: import("@aws-sdk/types").Provider<
|
|
@@ -51,7 +50,9 @@ export declare const getRuntimeConfig: (config: AppConfigDataClientConfig) => {
|
|
|
51
50
|
| undefined;
|
|
52
51
|
signer?:
|
|
53
52
|
| import("@aws-sdk/types").RequestSigner
|
|
54
|
-
|
|
|
53
|
+
| ((
|
|
54
|
+
authScheme?: import("@aws-sdk/types").AuthScheme | undefined
|
|
55
|
+
) => Promise<import("@aws-sdk/types").RequestSigner>)
|
|
55
56
|
| undefined;
|
|
56
57
|
signingEscapePath?: boolean | undefined;
|
|
57
58
|
systemClockOffset?: number | undefined;
|
|
@@ -1,5 +1,4 @@
|
|
|
1
1
|
import { AppConfigDataClientConfig } from "./AppConfigDataClient";
|
|
2
|
-
|
|
3
2
|
export declare const getRuntimeConfig: (config: AppConfigDataClientConfig) => {
|
|
4
3
|
runtime: string;
|
|
5
4
|
sha256: import("@aws-sdk/types").HashConstructor;
|
|
@@ -52,7 +51,9 @@ export declare const getRuntimeConfig: (config: AppConfigDataClientConfig) => {
|
|
|
52
51
|
| undefined;
|
|
53
52
|
signer?:
|
|
54
53
|
| import("@aws-sdk/types").RequestSigner
|
|
55
|
-
|
|
|
54
|
+
| ((
|
|
55
|
+
authScheme?: import("@aws-sdk/types").AuthScheme | undefined
|
|
56
|
+
) => Promise<import("@aws-sdk/types").RequestSigner>)
|
|
56
57
|
| undefined;
|
|
57
58
|
signingEscapePath?: boolean | undefined;
|
|
58
59
|
systemClockOffset?: number | undefined;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-appconfigdata",
|
|
3
3
|
"description": "AWS SDK for JavaScript Appconfigdata Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.178.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",
|
|
@@ -19,35 +19,35 @@
|
|
|
19
19
|
"dependencies": {
|
|
20
20
|
"@aws-crypto/sha256-browser": "2.0.0",
|
|
21
21
|
"@aws-crypto/sha256-js": "2.0.0",
|
|
22
|
-
"@aws-sdk/client-sts": "3.
|
|
23
|
-
"@aws-sdk/config-resolver": "3.
|
|
24
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
25
|
-
"@aws-sdk/fetch-http-handler": "3.
|
|
26
|
-
"@aws-sdk/hash-node": "3.
|
|
27
|
-
"@aws-sdk/invalid-dependency": "3.
|
|
28
|
-
"@aws-sdk/middleware-content-length": "3.
|
|
29
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
30
|
-
"@aws-sdk/middleware-logger": "3.
|
|
31
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
32
|
-
"@aws-sdk/middleware-retry": "3.
|
|
33
|
-
"@aws-sdk/middleware-serde": "3.
|
|
34
|
-
"@aws-sdk/middleware-signing": "3.
|
|
35
|
-
"@aws-sdk/middleware-stack": "3.
|
|
36
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
37
|
-
"@aws-sdk/node-config-provider": "3.
|
|
38
|
-
"@aws-sdk/node-http-handler": "3.
|
|
39
|
-
"@aws-sdk/protocol-http": "3.
|
|
40
|
-
"@aws-sdk/smithy-client": "3.
|
|
41
|
-
"@aws-sdk/types": "3.
|
|
42
|
-
"@aws-sdk/url-parser": "3.
|
|
22
|
+
"@aws-sdk/client-sts": "3.178.0",
|
|
23
|
+
"@aws-sdk/config-resolver": "3.178.0",
|
|
24
|
+
"@aws-sdk/credential-provider-node": "3.178.0",
|
|
25
|
+
"@aws-sdk/fetch-http-handler": "3.178.0",
|
|
26
|
+
"@aws-sdk/hash-node": "3.178.0",
|
|
27
|
+
"@aws-sdk/invalid-dependency": "3.178.0",
|
|
28
|
+
"@aws-sdk/middleware-content-length": "3.178.0",
|
|
29
|
+
"@aws-sdk/middleware-host-header": "3.178.0",
|
|
30
|
+
"@aws-sdk/middleware-logger": "3.178.0",
|
|
31
|
+
"@aws-sdk/middleware-recursion-detection": "3.178.0",
|
|
32
|
+
"@aws-sdk/middleware-retry": "3.178.0",
|
|
33
|
+
"@aws-sdk/middleware-serde": "3.178.0",
|
|
34
|
+
"@aws-sdk/middleware-signing": "3.178.0",
|
|
35
|
+
"@aws-sdk/middleware-stack": "3.178.0",
|
|
36
|
+
"@aws-sdk/middleware-user-agent": "3.178.0",
|
|
37
|
+
"@aws-sdk/node-config-provider": "3.178.0",
|
|
38
|
+
"@aws-sdk/node-http-handler": "3.178.0",
|
|
39
|
+
"@aws-sdk/protocol-http": "3.178.0",
|
|
40
|
+
"@aws-sdk/smithy-client": "3.178.0",
|
|
41
|
+
"@aws-sdk/types": "3.178.0",
|
|
42
|
+
"@aws-sdk/url-parser": "3.178.0",
|
|
43
43
|
"@aws-sdk/util-base64-browser": "3.170.0",
|
|
44
44
|
"@aws-sdk/util-base64-node": "3.170.0",
|
|
45
45
|
"@aws-sdk/util-body-length-browser": "3.170.0",
|
|
46
46
|
"@aws-sdk/util-body-length-node": "3.170.0",
|
|
47
|
-
"@aws-sdk/util-defaults-mode-browser": "3.
|
|
48
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
49
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
50
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
47
|
+
"@aws-sdk/util-defaults-mode-browser": "3.178.0",
|
|
48
|
+
"@aws-sdk/util-defaults-mode-node": "3.178.0",
|
|
49
|
+
"@aws-sdk/util-user-agent-browser": "3.178.0",
|
|
50
|
+
"@aws-sdk/util-user-agent-node": "3.178.0",
|
|
51
51
|
"@aws-sdk/util-utf8-browser": "3.170.0",
|
|
52
52
|
"@aws-sdk/util-utf8-node": "3.170.0",
|
|
53
53
|
"tslib": "^2.3.1"
|