mirror of
https://github.com/aws-actions/configure-aws-credentials.git
synced 2026-09-03 06:05:04 +09:00
chore: Update dist
This commit is contained in:
+2
-2
@@ -855,8 +855,8 @@ Apache License
|
|||||||
The following npm packages may be included in this product:
|
The following npm packages may be included in this product:
|
||||||
|
|
||||||
- @aws-sdk/signature-v4-multi-region@3.996.33
|
- @aws-sdk/signature-v4-multi-region@3.996.33
|
||||||
- @smithy/core@3.24.6
|
- @smithy/core@3.25.0
|
||||||
- @smithy/types@4.14.3
|
- @smithy/types@4.15.0
|
||||||
|
|
||||||
These packages each contain the following license:
|
These packages each contain the following license:
|
||||||
|
|
||||||
|
|||||||
+56
-50
@@ -18993,41 +18993,40 @@ var init_MiddlewareStack = __esm({
|
|||||||
// node_modules/@smithy/types/dist-cjs/index.js
|
// node_modules/@smithy/types/dist-cjs/index.js
|
||||||
var require_dist_cjs = __commonJS({
|
var require_dist_cjs = __commonJS({
|
||||||
"node_modules/@smithy/types/dist-cjs/index.js"(exports2) {
|
"node_modules/@smithy/types/dist-cjs/index.js"(exports2) {
|
||||||
"use strict";
|
var HttpAuthLocation;
|
||||||
exports2.HttpAuthLocation = void 0;
|
(function(HttpAuthLocation2) {
|
||||||
(function(HttpAuthLocation) {
|
HttpAuthLocation2["HEADER"] = "header";
|
||||||
HttpAuthLocation["HEADER"] = "header";
|
HttpAuthLocation2["QUERY"] = "query";
|
||||||
HttpAuthLocation["QUERY"] = "query";
|
})(HttpAuthLocation || (HttpAuthLocation = {}));
|
||||||
})(exports2.HttpAuthLocation || (exports2.HttpAuthLocation = {}));
|
var HttpApiKeyAuthLocation2;
|
||||||
exports2.HttpApiKeyAuthLocation = void 0;
|
(function(HttpApiKeyAuthLocation3) {
|
||||||
(function(HttpApiKeyAuthLocation2) {
|
HttpApiKeyAuthLocation3["HEADER"] = "header";
|
||||||
HttpApiKeyAuthLocation2["HEADER"] = "header";
|
HttpApiKeyAuthLocation3["QUERY"] = "query";
|
||||||
HttpApiKeyAuthLocation2["QUERY"] = "query";
|
})(HttpApiKeyAuthLocation2 || (HttpApiKeyAuthLocation2 = {}));
|
||||||
})(exports2.HttpApiKeyAuthLocation || (exports2.HttpApiKeyAuthLocation = {}));
|
var EndpointURLScheme2;
|
||||||
exports2.EndpointURLScheme = void 0;
|
(function(EndpointURLScheme3) {
|
||||||
(function(EndpointURLScheme2) {
|
EndpointURLScheme3["HTTP"] = "http";
|
||||||
EndpointURLScheme2["HTTP"] = "http";
|
EndpointURLScheme3["HTTPS"] = "https";
|
||||||
EndpointURLScheme2["HTTPS"] = "https";
|
})(EndpointURLScheme2 || (EndpointURLScheme2 = {}));
|
||||||
})(exports2.EndpointURLScheme || (exports2.EndpointURLScheme = {}));
|
var AlgorithmId2;
|
||||||
exports2.AlgorithmId = void 0;
|
(function(AlgorithmId3) {
|
||||||
(function(AlgorithmId2) {
|
AlgorithmId3["MD5"] = "md5";
|
||||||
AlgorithmId2["MD5"] = "md5";
|
AlgorithmId3["CRC32"] = "crc32";
|
||||||
AlgorithmId2["CRC32"] = "crc32";
|
AlgorithmId3["CRC32C"] = "crc32c";
|
||||||
AlgorithmId2["CRC32C"] = "crc32c";
|
AlgorithmId3["SHA1"] = "sha1";
|
||||||
AlgorithmId2["SHA1"] = "sha1";
|
AlgorithmId3["SHA256"] = "sha256";
|
||||||
AlgorithmId2["SHA256"] = "sha256";
|
})(AlgorithmId2 || (AlgorithmId2 = {}));
|
||||||
})(exports2.AlgorithmId || (exports2.AlgorithmId = {}));
|
|
||||||
var getChecksumConfiguration2 = (runtimeConfig) => {
|
var getChecksumConfiguration2 = (runtimeConfig) => {
|
||||||
const checksumAlgorithms = [];
|
const checksumAlgorithms = [];
|
||||||
if (runtimeConfig.sha256 !== void 0) {
|
if (runtimeConfig.sha256 !== void 0) {
|
||||||
checksumAlgorithms.push({
|
checksumAlgorithms.push({
|
||||||
algorithmId: () => exports2.AlgorithmId.SHA256,
|
algorithmId: () => AlgorithmId2.SHA256,
|
||||||
checksumConstructor: () => runtimeConfig.sha256
|
checksumConstructor: () => runtimeConfig.sha256
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
if (runtimeConfig.md5 != void 0) {
|
if (runtimeConfig.md5 != void 0) {
|
||||||
checksumAlgorithms.push({
|
checksumAlgorithms.push({
|
||||||
algorithmId: () => exports2.AlgorithmId.MD5,
|
algorithmId: () => AlgorithmId2.MD5,
|
||||||
checksumConstructor: () => runtimeConfig.md5
|
checksumConstructor: () => runtimeConfig.md5
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
@@ -19053,24 +19052,31 @@ var require_dist_cjs = __commonJS({
|
|||||||
var resolveDefaultRuntimeConfig2 = (config) => {
|
var resolveDefaultRuntimeConfig2 = (config) => {
|
||||||
return resolveChecksumRuntimeConfig2(config);
|
return resolveChecksumRuntimeConfig2(config);
|
||||||
};
|
};
|
||||||
exports2.FieldPosition = void 0;
|
var FieldPosition2;
|
||||||
(function(FieldPosition2) {
|
(function(FieldPosition3) {
|
||||||
FieldPosition2[FieldPosition2["HEADER"] = 0] = "HEADER";
|
FieldPosition3[FieldPosition3["HEADER"] = 0] = "HEADER";
|
||||||
FieldPosition2[FieldPosition2["TRAILER"] = 1] = "TRAILER";
|
FieldPosition3[FieldPosition3["TRAILER"] = 1] = "TRAILER";
|
||||||
})(exports2.FieldPosition || (exports2.FieldPosition = {}));
|
})(FieldPosition2 || (FieldPosition2 = {}));
|
||||||
var SMITHY_CONTEXT_KEY3 = "__smithy_context";
|
var SMITHY_CONTEXT_KEY3 = "__smithy_context";
|
||||||
exports2.IniSectionType = void 0;
|
var IniSectionType4;
|
||||||
(function(IniSectionType4) {
|
(function(IniSectionType5) {
|
||||||
IniSectionType4["PROFILE"] = "profile";
|
IniSectionType5["PROFILE"] = "profile";
|
||||||
IniSectionType4["SSO_SESSION"] = "sso-session";
|
IniSectionType5["SSO_SESSION"] = "sso-session";
|
||||||
IniSectionType4["SERVICES"] = "services";
|
IniSectionType5["SERVICES"] = "services";
|
||||||
})(exports2.IniSectionType || (exports2.IniSectionType = {}));
|
})(IniSectionType4 || (IniSectionType4 = {}));
|
||||||
exports2.RequestHandlerProtocol = void 0;
|
var RequestHandlerProtocol;
|
||||||
(function(RequestHandlerProtocol) {
|
(function(RequestHandlerProtocol2) {
|
||||||
RequestHandlerProtocol["HTTP_0_9"] = "http/0.9";
|
RequestHandlerProtocol2["HTTP_0_9"] = "http/0.9";
|
||||||
RequestHandlerProtocol["HTTP_1_0"] = "http/1.0";
|
RequestHandlerProtocol2["HTTP_1_0"] = "http/1.0";
|
||||||
RequestHandlerProtocol["TDS_8_0"] = "tds/8.0";
|
RequestHandlerProtocol2["TDS_8_0"] = "tds/8.0";
|
||||||
})(exports2.RequestHandlerProtocol || (exports2.RequestHandlerProtocol = {}));
|
})(RequestHandlerProtocol || (RequestHandlerProtocol = {}));
|
||||||
|
exports2.AlgorithmId = AlgorithmId2;
|
||||||
|
exports2.EndpointURLScheme = EndpointURLScheme2;
|
||||||
|
exports2.FieldPosition = FieldPosition2;
|
||||||
|
exports2.HttpApiKeyAuthLocation = HttpApiKeyAuthLocation2;
|
||||||
|
exports2.HttpAuthLocation = HttpAuthLocation;
|
||||||
|
exports2.IniSectionType = IniSectionType4;
|
||||||
|
exports2.RequestHandlerProtocol = RequestHandlerProtocol;
|
||||||
exports2.SMITHY_CONTEXT_KEY = SMITHY_CONTEXT_KEY3;
|
exports2.SMITHY_CONTEXT_KEY = SMITHY_CONTEXT_KEY3;
|
||||||
exports2.getDefaultClientConfiguration = getDefaultClientConfiguration2;
|
exports2.getDefaultClientConfiguration = getDefaultClientConfiguration2;
|
||||||
exports2.resolveDefaultRuntimeConfig = resolveDefaultRuntimeConfig2;
|
exports2.resolveDefaultRuntimeConfig = resolveDefaultRuntimeConfig2;
|
||||||
@@ -23491,7 +23497,7 @@ function bindEndpointMiddleware(getEndpointFromConfig2) {
|
|||||||
}
|
}
|
||||||
var init_endpointMiddleware = __esm({
|
var init_endpointMiddleware = __esm({
|
||||||
"node_modules/@smithy/core/dist-es/submodules/endpoints/middleware-endpoint/endpointMiddleware.js"() {
|
"node_modules/@smithy/core/dist-es/submodules/endpoints/middleware-endpoint/endpointMiddleware.js"() {
|
||||||
init_client2();
|
init_transport();
|
||||||
init_getEndpointFromInstructions();
|
init_getEndpointFromInstructions();
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
@@ -29108,7 +29114,7 @@ var init_DefaultRateLimiter = __esm({
|
|||||||
"node_modules/@smithy/core/dist-es/submodules/retry/util-retry/DefaultRateLimiter.js"() {
|
"node_modules/@smithy/core/dist-es/submodules/retry/util-retry/DefaultRateLimiter.js"() {
|
||||||
init_service_error_classification();
|
init_service_error_classification();
|
||||||
DefaultRateLimiter = class _DefaultRateLimiter {
|
DefaultRateLimiter = class _DefaultRateLimiter {
|
||||||
static setTimeoutFn = setTimeout;
|
static setTimeoutFn = (fn, delay) => setTimeout(fn, delay);
|
||||||
beta;
|
beta;
|
||||||
minCapacity;
|
minCapacity;
|
||||||
minFillRate;
|
minFillRate;
|
||||||
@@ -29628,9 +29634,9 @@ var init_StandardRetryStrategy2 = __esm({
|
|||||||
const retryAfter = response.headers[retryAfterHeaderName];
|
const retryAfter = response.headers[retryAfterHeaderName];
|
||||||
const retryAfterSeconds = Number(retryAfter);
|
const retryAfterSeconds = Number(retryAfter);
|
||||||
if (!Number.isNaN(retryAfterSeconds))
|
if (!Number.isNaN(retryAfterSeconds))
|
||||||
return retryAfterSeconds * 1e3;
|
return Math.min(retryAfterSeconds * 1e3, 2e4);
|
||||||
const retryAfterDate = new Date(retryAfter);
|
const retryAfterDate = new Date(retryAfter);
|
||||||
return retryAfterDate.getTime() - Date.now();
|
return Math.min(retryAfterDate.getTime() - Date.now(), 2e4);
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
@@ -30168,7 +30174,7 @@ function convertHttpAuthSchemesToMap(httpAuthSchemes) {
|
|||||||
var httpAuthSchemeMiddleware;
|
var httpAuthSchemeMiddleware;
|
||||||
var init_httpAuthSchemeMiddleware = __esm({
|
var init_httpAuthSchemeMiddleware = __esm({
|
||||||
"node_modules/@smithy/core/dist-es/legacy-root-exports/middleware-http-auth-scheme/httpAuthSchemeMiddleware.js"() {
|
"node_modules/@smithy/core/dist-es/legacy-root-exports/middleware-http-auth-scheme/httpAuthSchemeMiddleware.js"() {
|
||||||
init_client2();
|
init_transport();
|
||||||
init_resolveAuthOptions();
|
init_resolveAuthOptions();
|
||||||
httpAuthSchemeMiddleware = (config, mwOptions) => (next, context) => async (args) => {
|
httpAuthSchemeMiddleware = (config, mwOptions) => (next, context) => async (args) => {
|
||||||
const options = config.httpAuthSchemeProvider(await mwOptions.httpAuthSchemeParametersProvider(config, context, args.input));
|
const options = config.httpAuthSchemeProvider(await mwOptions.httpAuthSchemeParametersProvider(config, context, args.input));
|
||||||
@@ -30267,8 +30273,8 @@ var init_middleware_http_auth_scheme = __esm({
|
|||||||
var defaultErrorHandler, defaultSuccessHandler, httpSigningMiddleware;
|
var defaultErrorHandler, defaultSuccessHandler, httpSigningMiddleware;
|
||||||
var init_httpSigningMiddleware = __esm({
|
var init_httpSigningMiddleware = __esm({
|
||||||
"node_modules/@smithy/core/dist-es/legacy-root-exports/middleware-http-signing/httpSigningMiddleware.js"() {
|
"node_modules/@smithy/core/dist-es/legacy-root-exports/middleware-http-signing/httpSigningMiddleware.js"() {
|
||||||
init_client2();
|
|
||||||
init_protocols();
|
init_protocols();
|
||||||
|
init_transport();
|
||||||
defaultErrorHandler = (signingProperties) => (error3) => {
|
defaultErrorHandler = (signingProperties) => (error3) => {
|
||||||
throw error3;
|
throw error3;
|
||||||
};
|
};
|
||||||
@@ -36311,9 +36317,9 @@ var init_CborCodec = __esm({
|
|||||||
var SmithyRpcV2CborProtocol;
|
var SmithyRpcV2CborProtocol;
|
||||||
var init_SmithyRpcV2CborProtocol = __esm({
|
var init_SmithyRpcV2CborProtocol = __esm({
|
||||||
"node_modules/@smithy/core/dist-es/submodules/cbor/SmithyRpcV2CborProtocol.js"() {
|
"node_modules/@smithy/core/dist-es/submodules/cbor/SmithyRpcV2CborProtocol.js"() {
|
||||||
init_client2();
|
|
||||||
init_protocols();
|
init_protocols();
|
||||||
init_schema();
|
init_schema();
|
||||||
|
init_transport();
|
||||||
init_CborCodec();
|
init_CborCodec();
|
||||||
init_parseCborBody();
|
init_parseCborBody();
|
||||||
SmithyRpcV2CborProtocol = class extends RpcProtocol {
|
SmithyRpcV2CborProtocol = class extends RpcProtocol {
|
||||||
|
|||||||
Reference in New Issue
Block a user