@aws-sdk/core 3.750.0 → 3.774.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/submodules/account-id-endpoint/index.js +9 -9
- package/dist-cjs/submodules/client/index.js +3 -3
- package/dist-cjs/submodules/httpAuthSchemes/index.js +5 -5
- package/dist-cjs/submodules/protocols/index.js +4 -4
- package/dist-es/submodules/httpAuthSchemes/aws_sdk/resolveAwsSdkSigV4Config.js +2 -2
- package/dist-types/api-extractor-type-index.d.ts +5 -0
- package/dist-types/submodules/account-id-endpoint/AccountIdEndpointModeConfigResolver.d.ts +0 -3
- package/dist-types/submodules/account-id-endpoint/AccountIdEndpointModeConstants.d.ts +9 -0
- package/dist-types/submodules/httpAuthSchemes/aws_sdk/AwsSdkSigV4Signer.d.ts +2 -1
- package/dist-types/submodules/httpAuthSchemes/aws_sdk/resolveAwsSdkSigV4Config.d.ts +5 -1
- package/dist-types/submodules/protocols/json/parseJsonBody.d.ts +9 -0
- package/dist-types/submodules/protocols/xml/parseXmlBody.d.ts +9 -0
- package/dist-types/ts3.4/api-extractor-type-index.d.ts +5 -0
- package/package.json +15 -15
|
@@ -19,8 +19,8 @@ var __copyProps = (to, from, except, desc) => {
|
|
|
19
19
|
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
20
20
|
|
|
21
21
|
// src/submodules/account-id-endpoint/index.ts
|
|
22
|
-
var
|
|
23
|
-
__export(
|
|
22
|
+
var index_exports = {};
|
|
23
|
+
__export(index_exports, {
|
|
24
24
|
ACCOUNT_ID_ENDPOINT_MODE_VALUES: () => ACCOUNT_ID_ENDPOINT_MODE_VALUES,
|
|
25
25
|
CONFIG_ACCOUNT_ID_ENDPOINT_MODE: () => CONFIG_ACCOUNT_ID_ENDPOINT_MODE,
|
|
26
26
|
DEFAULT_ACCOUNT_ID_ENDPOINT_MODE: () => DEFAULT_ACCOUNT_ID_ENDPOINT_MODE,
|
|
@@ -29,7 +29,7 @@ __export(account_id_endpoint_exports, {
|
|
|
29
29
|
resolveAccountIdEndpointModeConfig: () => resolveAccountIdEndpointModeConfig,
|
|
30
30
|
validateAccountIdEndpointMode: () => validateAccountIdEndpointMode
|
|
31
31
|
});
|
|
32
|
-
module.exports = __toCommonJS(
|
|
32
|
+
module.exports = __toCommonJS(index_exports);
|
|
33
33
|
|
|
34
34
|
// src/submodules/account-id-endpoint/AccountIdEndpointModeConfigResolver.ts
|
|
35
35
|
var import_util_middleware = require("@smithy/util-middleware");
|
|
@@ -49,7 +49,7 @@ var resolveAccountIdEndpointModeConfig = /* @__PURE__ */ __name((input) => {
|
|
|
49
49
|
);
|
|
50
50
|
return {
|
|
51
51
|
...input,
|
|
52
|
-
accountIdEndpointMode: async () => {
|
|
52
|
+
accountIdEndpointMode: /* @__PURE__ */ __name(async () => {
|
|
53
53
|
const accIdMode = await accountIdEndpointModeProvider();
|
|
54
54
|
if (!validateAccountIdEndpointMode(accIdMode)) {
|
|
55
55
|
throw new Error(
|
|
@@ -57,7 +57,7 @@ var resolveAccountIdEndpointModeConfig = /* @__PURE__ */ __name((input) => {
|
|
|
57
57
|
);
|
|
58
58
|
}
|
|
59
59
|
return accIdMode;
|
|
60
|
-
}
|
|
60
|
+
}, "accountIdEndpointMode")
|
|
61
61
|
};
|
|
62
62
|
}, "resolveAccountIdEndpointModeConfig");
|
|
63
63
|
|
|
@@ -69,20 +69,20 @@ var _throw = /* @__PURE__ */ __name((message) => {
|
|
|
69
69
|
var ENV_ACCOUNT_ID_ENDPOINT_MODE = "AWS_ACCOUNT_ID_ENDPOINT_MODE";
|
|
70
70
|
var CONFIG_ACCOUNT_ID_ENDPOINT_MODE = "account_id_endpoint_mode";
|
|
71
71
|
var NODE_ACCOUNT_ID_ENDPOINT_MODE_CONFIG_OPTIONS = {
|
|
72
|
-
environmentVariableSelector: (env) => {
|
|
72
|
+
environmentVariableSelector: /* @__PURE__ */ __name((env) => {
|
|
73
73
|
const value = env[ENV_ACCOUNT_ID_ENDPOINT_MODE];
|
|
74
74
|
if (value && !validateAccountIdEndpointMode(value)) {
|
|
75
75
|
_throw(err);
|
|
76
76
|
}
|
|
77
77
|
return value;
|
|
78
|
-
},
|
|
79
|
-
configFileSelector: (profile) => {
|
|
78
|
+
}, "environmentVariableSelector"),
|
|
79
|
+
configFileSelector: /* @__PURE__ */ __name((profile) => {
|
|
80
80
|
const value = profile[CONFIG_ACCOUNT_ID_ENDPOINT_MODE];
|
|
81
81
|
if (value && !validateAccountIdEndpointMode(value)) {
|
|
82
82
|
_throw(err);
|
|
83
83
|
}
|
|
84
84
|
return value;
|
|
85
|
-
},
|
|
85
|
+
}, "configFileSelector"),
|
|
86
86
|
default: DEFAULT_ACCOUNT_ID_ENDPOINT_MODE
|
|
87
87
|
};
|
|
88
88
|
// Annotate the CommonJS export names for ESM import in node:
|
|
@@ -19,14 +19,14 @@ var __copyProps = (to, from, except, desc) => {
|
|
|
19
19
|
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
20
20
|
|
|
21
21
|
// src/submodules/client/index.ts
|
|
22
|
-
var
|
|
23
|
-
__export(
|
|
22
|
+
var index_exports = {};
|
|
23
|
+
__export(index_exports, {
|
|
24
24
|
emitWarningIfUnsupportedVersion: () => emitWarningIfUnsupportedVersion,
|
|
25
25
|
setCredentialFeature: () => setCredentialFeature,
|
|
26
26
|
setFeature: () => setFeature,
|
|
27
27
|
state: () => state
|
|
28
28
|
});
|
|
29
|
-
module.exports = __toCommonJS(
|
|
29
|
+
module.exports = __toCommonJS(index_exports);
|
|
30
30
|
|
|
31
31
|
// src/submodules/client/emitWarningIfUnsupportedVersion.ts
|
|
32
32
|
var state = {
|
|
@@ -19,8 +19,8 @@ var __copyProps = (to, from, except, desc) => {
|
|
|
19
19
|
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
20
20
|
|
|
21
21
|
// src/submodules/httpAuthSchemes/index.ts
|
|
22
|
-
var
|
|
23
|
-
__export(
|
|
22
|
+
var index_exports = {};
|
|
23
|
+
__export(index_exports, {
|
|
24
24
|
AWSSDKSigV4Signer: () => AWSSDKSigV4Signer,
|
|
25
25
|
AwsSdkSigV4ASigner: () => AwsSdkSigV4ASigner,
|
|
26
26
|
AwsSdkSigV4Signer: () => AwsSdkSigV4Signer,
|
|
@@ -30,7 +30,7 @@ __export(httpAuthSchemes_exports, {
|
|
|
30
30
|
resolveAwsSdkSigV4Config: () => resolveAwsSdkSigV4Config,
|
|
31
31
|
validateSigningProperties: () => validateSigningProperties
|
|
32
32
|
});
|
|
33
|
-
module.exports = __toCommonJS(
|
|
33
|
+
module.exports = __toCommonJS(index_exports);
|
|
34
34
|
|
|
35
35
|
// src/submodules/httpAuthSchemes/aws_sdk/AwsSdkSigV4Signer.ts
|
|
36
36
|
var import_protocol_http2 = require("@smithy/protocol-http");
|
|
@@ -212,7 +212,7 @@ var resolveAwsSdkSigV4Config = /* @__PURE__ */ __name((config) => {
|
|
|
212
212
|
}, "credentialsProvider");
|
|
213
213
|
}
|
|
214
214
|
}
|
|
215
|
-
const boundCredentialsProvider = /* @__PURE__ */ __name(async () => credentialsProvider({ callerClientConfig: config }), "boundCredentialsProvider");
|
|
215
|
+
const boundCredentialsProvider = /* @__PURE__ */ __name(async (options) => credentialsProvider({ ...options, callerClientConfig: config }), "boundCredentialsProvider");
|
|
216
216
|
const {
|
|
217
217
|
// Default for signingEscapePath
|
|
218
218
|
signingEscapePath = true,
|
|
@@ -280,7 +280,7 @@ var resolveAwsSdkSigV4Config = /* @__PURE__ */ __name((config) => {
|
|
|
280
280
|
...config,
|
|
281
281
|
systemClockOffset,
|
|
282
282
|
signingEscapePath,
|
|
283
|
-
credentials: isUserSupplied ? async () => boundCredentialsProvider().then(
|
|
283
|
+
credentials: isUserSupplied ? async (options) => boundCredentialsProvider(options).then(
|
|
284
284
|
(creds) => (0, import_client.setCredentialFeature)(creds, "CREDENTIALS_CODE", "e")
|
|
285
285
|
) : boundCredentialsProvider,
|
|
286
286
|
signer
|
|
@@ -19,8 +19,8 @@ var __copyProps = (to, from, except, desc) => {
|
|
|
19
19
|
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
20
20
|
|
|
21
21
|
// src/submodules/protocols/index.ts
|
|
22
|
-
var
|
|
23
|
-
__export(
|
|
22
|
+
var index_exports = {};
|
|
23
|
+
__export(index_exports, {
|
|
24
24
|
_toBool: () => _toBool,
|
|
25
25
|
_toNum: () => _toNum,
|
|
26
26
|
_toStr: () => _toStr,
|
|
@@ -32,7 +32,7 @@ __export(protocols_exports, {
|
|
|
32
32
|
parseXmlBody: () => parseXmlBody,
|
|
33
33
|
parseXmlErrorBody: () => parseXmlErrorBody
|
|
34
34
|
});
|
|
35
|
-
module.exports = __toCommonJS(
|
|
35
|
+
module.exports = __toCommonJS(index_exports);
|
|
36
36
|
|
|
37
37
|
// src/submodules/protocols/coercing-serializers.ts
|
|
38
38
|
var _toStr = /* @__PURE__ */ __name((val) => {
|
|
@@ -168,7 +168,7 @@ var parseXmlBody = /* @__PURE__ */ __name((streamBody, context) => collectBodySt
|
|
|
168
168
|
ignoreDeclaration: true,
|
|
169
169
|
parseTagValue: false,
|
|
170
170
|
trimValues: false,
|
|
171
|
-
tagValueProcessor: (_, val) => val.trim() === "" && val.includes("\n") ? "" : void 0
|
|
171
|
+
tagValueProcessor: /* @__PURE__ */ __name((_, val) => val.trim() === "" && val.includes("\n") ? "" : void 0, "tagValueProcessor")
|
|
172
172
|
});
|
|
173
173
|
parser.addEntity("#xD", "\r");
|
|
174
174
|
parser.addEntity("#10", "\n");
|
|
@@ -20,7 +20,7 @@ export const resolveAwsSdkSigV4Config = (config) => {
|
|
|
20
20
|
};
|
|
21
21
|
}
|
|
22
22
|
}
|
|
23
|
-
const boundCredentialsProvider = async () => credentialsProvider({ callerClientConfig: config });
|
|
23
|
+
const boundCredentialsProvider = async (options) => credentialsProvider({ ...options, callerClientConfig: config });
|
|
24
24
|
const { signingEscapePath = true, systemClockOffset = config.systemClockOffset || 0, sha256, } = config;
|
|
25
25
|
let signer;
|
|
26
26
|
if (config.signer) {
|
|
@@ -80,7 +80,7 @@ export const resolveAwsSdkSigV4Config = (config) => {
|
|
|
80
80
|
systemClockOffset,
|
|
81
81
|
signingEscapePath,
|
|
82
82
|
credentials: isUserSupplied
|
|
83
|
-
? async () => boundCredentialsProvider().then((creds) => setCredentialFeature(creds, "CREDENTIALS_CODE", "e"))
|
|
83
|
+
? async (options) => boundCredentialsProvider(options).then((creds) => setCredentialFeature(creds, "CREDENTIALS_CODE", "e"))
|
|
84
84
|
: boundCredentialsProvider,
|
|
85
85
|
signer,
|
|
86
86
|
};
|
|
@@ -18,9 +18,6 @@ interface PreviouslyResolved {
|
|
|
18
18
|
* @internal
|
|
19
19
|
*/
|
|
20
20
|
export interface AccountIdEndpointModeResolvedConfig {
|
|
21
|
-
/**
|
|
22
|
-
* Resolved value for input config {config.accountIdEndpointMode}
|
|
23
|
-
*/
|
|
24
21
|
accountIdEndpointMode: Provider<AccountIdEndpointMode>;
|
|
25
22
|
}
|
|
26
23
|
/**
|
|
@@ -1,5 +1,14 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @public
|
|
3
|
+
*/
|
|
1
4
|
export type AccountIdEndpointMode = "disabled" | "preferred" | "required";
|
|
5
|
+
/**
|
|
6
|
+
* @internal
|
|
7
|
+
*/
|
|
2
8
|
export declare const DEFAULT_ACCOUNT_ID_ENDPOINT_MODE = "preferred";
|
|
9
|
+
/**
|
|
10
|
+
* @internal
|
|
11
|
+
*/
|
|
3
12
|
export declare const ACCOUNT_ID_ENDPOINT_MODE_VALUES: AccountIdEndpointMode[];
|
|
4
13
|
/**
|
|
5
14
|
* @internal
|
|
@@ -22,9 +22,9 @@ interface AwsSdkSigV4AuthSigningProperties {
|
|
|
22
22
|
*/
|
|
23
23
|
export declare const validateSigningProperties: (signingProperties: Record<string, unknown>) => Promise<AwsSdkSigV4AuthSigningProperties>;
|
|
24
24
|
/**
|
|
25
|
-
* @internal
|
|
26
25
|
* Note: this is not a signing algorithm implementation. The sign method
|
|
27
26
|
* accepts the real signer as an input parameter.
|
|
27
|
+
* @internal
|
|
28
28
|
*/
|
|
29
29
|
export declare class AwsSdkSigV4Signer implements HttpSigner {
|
|
30
30
|
sign(httpRequest: IHttpRequest,
|
|
@@ -36,6 +36,7 @@ export declare class AwsSdkSigV4Signer implements HttpSigner {
|
|
|
36
36
|
successHandler(httpResponse: HttpResponse | unknown, signingProperties: Record<string, unknown>): void;
|
|
37
37
|
}
|
|
38
38
|
/**
|
|
39
|
+
* @internal
|
|
39
40
|
* @deprecated renamed to {@link AwsSdkSigV4Signer}
|
|
40
41
|
*/
|
|
41
42
|
export declare const AWSSDKSigV4Signer: typeof AwsSdkSigV4Signer;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { SignatureV4CryptoInit, SignatureV4Init } from "@smithy/signature-v4";
|
|
2
2
|
import { AuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider, ChecksumConstructor, HashConstructor, MemoizedProvider, Provider, RegionInfoProvider, RequestSigner } from "@smithy/types";
|
|
3
3
|
/**
|
|
4
|
-
* @
|
|
4
|
+
* @public
|
|
5
5
|
*/
|
|
6
6
|
export interface AwsSdkSigV4AuthInputConfig {
|
|
7
7
|
/**
|
|
@@ -75,21 +75,25 @@ export interface AwsSdkSigV4AuthResolvedConfig {
|
|
|
75
75
|
*/
|
|
76
76
|
export declare const resolveAwsSdkSigV4Config: <T>(config: T & AwsSdkSigV4AuthInputConfig & AwsSdkSigV4PreviouslyResolved) => T & AwsSdkSigV4AuthResolvedConfig;
|
|
77
77
|
/**
|
|
78
|
+
* @internal
|
|
78
79
|
* @deprecated renamed to {@link AwsSdkSigV4AuthInputConfig}
|
|
79
80
|
*/
|
|
80
81
|
export interface AWSSDKSigV4AuthInputConfig extends AwsSdkSigV4AuthInputConfig {
|
|
81
82
|
}
|
|
82
83
|
/**
|
|
84
|
+
* @internal
|
|
83
85
|
* @deprecated renamed to {@link AwsSdkSigV4PreviouslyResolved}
|
|
84
86
|
*/
|
|
85
87
|
export interface AWSSDKSigV4PreviouslyResolved extends AwsSdkSigV4PreviouslyResolved {
|
|
86
88
|
}
|
|
87
89
|
/**
|
|
90
|
+
* @internal
|
|
88
91
|
* @deprecated renamed to {@link AwsSdkSigV4AuthResolvedConfig}
|
|
89
92
|
*/
|
|
90
93
|
export interface AWSSDKSigV4AuthResolvedConfig extends AwsSdkSigV4AuthResolvedConfig {
|
|
91
94
|
}
|
|
92
95
|
/**
|
|
96
|
+
* @internal
|
|
93
97
|
* @deprecated renamed to {@link resolveAwsSdkSigV4Config}
|
|
94
98
|
*/
|
|
95
99
|
export declare const resolveAWSSDKSigV4Config: <T>(config: T & AwsSdkSigV4AuthInputConfig & AwsSdkSigV4PreviouslyResolved) => T & AwsSdkSigV4AuthResolvedConfig;
|
|
@@ -1,4 +1,13 @@
|
|
|
1
1
|
import type { HttpResponse, SerdeContext } from "@smithy/types";
|
|
2
|
+
/**
|
|
3
|
+
* @internal
|
|
4
|
+
*/
|
|
2
5
|
export declare const parseJsonBody: (streamBody: any, context: SerdeContext) => any;
|
|
6
|
+
/**
|
|
7
|
+
* @internal
|
|
8
|
+
*/
|
|
3
9
|
export declare const parseJsonErrorBody: (errorBody: any, context: SerdeContext) => Promise<any>;
|
|
10
|
+
/**
|
|
11
|
+
* @internal
|
|
12
|
+
*/
|
|
4
13
|
export declare const loadRestJsonErrorCode: (output: HttpResponse, data: any) => string | undefined;
|
|
@@ -1,4 +1,13 @@
|
|
|
1
1
|
import type { HttpResponse, SerdeContext } from "@smithy/types";
|
|
2
|
+
/**
|
|
3
|
+
* @internal
|
|
4
|
+
*/
|
|
2
5
|
export declare const parseXmlBody: (streamBody: any, context: SerdeContext) => any;
|
|
6
|
+
/**
|
|
7
|
+
* @internal
|
|
8
|
+
*/
|
|
3
9
|
export declare const parseXmlErrorBody: (errorBody: any, context: SerdeContext) => Promise<any>;
|
|
10
|
+
/**
|
|
11
|
+
* @internal
|
|
12
|
+
*/
|
|
4
13
|
export declare const loadRestXmlErrorCode: (output: HttpResponse, data: any) => string | undefined;
|
package/package.json
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/core",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.774.0",
|
|
4
4
|
"description": "Core functions & classes shared by multiple AWS SDK clients.",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "yarn lint && concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
|
-
"build:cjs": "node ../../scripts/compilation/inline core",
|
|
8
|
-
"build:es": "tsc -p tsconfig.es.json",
|
|
7
|
+
"build:cjs": "node ../../scripts/compilation/inline core && rimraf ./dist-cjs/api-extractor-type-index.js",
|
|
8
|
+
"build:es": "tsc -p tsconfig.es.json && rimraf ./dist-es/api-extractor-type-index.js",
|
|
9
9
|
"build:include:deps": "lerna run --scope $npm_package_name --include-dependencies build",
|
|
10
10
|
"build:types": "tsc -p tsconfig.types.json",
|
|
11
11
|
"build:types:downlevel": "downlevel-dts dist-types dist-types/ts3.4",
|
|
@@ -22,11 +22,11 @@
|
|
|
22
22
|
"types": "./dist-types/index.d.ts",
|
|
23
23
|
"exports": {
|
|
24
24
|
".": {
|
|
25
|
+
"types": "./dist-types/index.d.ts",
|
|
25
26
|
"module": "./dist-es/index.js",
|
|
26
27
|
"node": "./dist-cjs/index.js",
|
|
27
28
|
"import": "./dist-es/index.js",
|
|
28
|
-
"require": "./dist-cjs/index.js"
|
|
29
|
-
"types": "./dist-types/index.d.ts"
|
|
29
|
+
"require": "./dist-cjs/index.js"
|
|
30
30
|
},
|
|
31
31
|
"./package.json": {
|
|
32
32
|
"module": "./package.json",
|
|
@@ -35,32 +35,32 @@
|
|
|
35
35
|
"require": "./package.json"
|
|
36
36
|
},
|
|
37
37
|
"./client": {
|
|
38
|
+
"types": "./dist-types/submodules/client/index.d.ts",
|
|
38
39
|
"module": "./dist-es/submodules/client/index.js",
|
|
39
40
|
"node": "./dist-cjs/submodules/client/index.js",
|
|
40
41
|
"import": "./dist-es/submodules/client/index.js",
|
|
41
|
-
"require": "./dist-cjs/submodules/client/index.js"
|
|
42
|
-
"types": "./dist-types/submodules/client/index.d.ts"
|
|
42
|
+
"require": "./dist-cjs/submodules/client/index.js"
|
|
43
43
|
},
|
|
44
44
|
"./httpAuthSchemes": {
|
|
45
|
+
"types": "./dist-types/submodules/httpAuthSchemes/index.d.ts",
|
|
45
46
|
"module": "./dist-es/submodules/httpAuthSchemes/index.js",
|
|
46
47
|
"node": "./dist-cjs/submodules/httpAuthSchemes/index.js",
|
|
47
48
|
"import": "./dist-es/submodules/httpAuthSchemes/index.js",
|
|
48
|
-
"require": "./dist-cjs/submodules/httpAuthSchemes/index.js"
|
|
49
|
-
"types": "./dist-types/submodules/httpAuthSchemes/index.d.ts"
|
|
49
|
+
"require": "./dist-cjs/submodules/httpAuthSchemes/index.js"
|
|
50
50
|
},
|
|
51
51
|
"./account-id-endpoint": {
|
|
52
|
+
"types": "./dist-types/submodules/account-id-endpoint/index.d.ts",
|
|
52
53
|
"module": "./dist-es/submodules/account-id-endpoint/index.js",
|
|
53
54
|
"node": "./dist-cjs/submodules/account-id-endpoint/index.js",
|
|
54
55
|
"import": "./dist-es/submodules/account-id-endpoint/index.js",
|
|
55
|
-
"require": "./dist-cjs/submodules/account-id-endpoint/index.js"
|
|
56
|
-
"types": "./dist-types/submodules/account-id-endpoint/index.d.ts"
|
|
56
|
+
"require": "./dist-cjs/submodules/account-id-endpoint/index.js"
|
|
57
57
|
},
|
|
58
58
|
"./protocols": {
|
|
59
|
+
"types": "./dist-types/submodules/protocols/index.d.ts",
|
|
59
60
|
"module": "./dist-es/submodules/protocols/index.js",
|
|
60
61
|
"node": "./dist-cjs/submodules/protocols/index.js",
|
|
61
62
|
"import": "./dist-es/submodules/protocols/index.js",
|
|
62
|
-
"require": "./dist-cjs/submodules/protocols/index.js"
|
|
63
|
-
"types": "./dist-types/submodules/protocols/index.d.ts"
|
|
63
|
+
"require": "./dist-cjs/submodules/protocols/index.js"
|
|
64
64
|
}
|
|
65
65
|
},
|
|
66
66
|
"files": [
|
|
@@ -82,12 +82,12 @@
|
|
|
82
82
|
"license": "Apache-2.0",
|
|
83
83
|
"dependencies": {
|
|
84
84
|
"@aws-sdk/types": "3.734.0",
|
|
85
|
-
"@smithy/core": "^3.1.
|
|
85
|
+
"@smithy/core": "^3.1.5",
|
|
86
86
|
"@smithy/node-config-provider": "^4.0.1",
|
|
87
87
|
"@smithy/property-provider": "^4.0.1",
|
|
88
88
|
"@smithy/protocol-http": "^5.0.1",
|
|
89
89
|
"@smithy/signature-v4": "^5.0.1",
|
|
90
|
-
"@smithy/smithy-client": "^4.1.
|
|
90
|
+
"@smithy/smithy-client": "^4.1.6",
|
|
91
91
|
"@smithy/types": "^4.1.0",
|
|
92
92
|
"@smithy/util-middleware": "^4.0.1",
|
|
93
93
|
"fast-xml-parser": "4.4.1",
|