aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--services/docker/mail-server/relay/aws/app.ts103
-rw-r--r--services/docker/mail-server/relay/config.ts8
-rw-r--r--services/docker/mail-server/relay/deno.json1
-rw-r--r--services/docker/mail-server/relay/deno.lock1177
4 files changed, 992 insertions, 297 deletions
diff --git a/services/docker/mail-server/relay/aws/app.ts b/services/docker/mail-server/relay/aws/app.ts
index 51da795..76e2793 100644
--- a/services/docker/mail-server/relay/aws/app.ts
+++ b/services/docker/mail-server/relay/aws/app.ts
@@ -1,4 +1,5 @@
import { parseArgs } from "@std/cli";
+import { decodeBase64 } from "@std/encoding/base64";
import { z } from "zod";
import { zValidator } from "@hono/zod-validator";
@@ -9,6 +10,89 @@ import { AwsMailDeliverer } from "./deliver.ts";
import { AwsMailRetriever } from "./retriever.ts";
import config from "../config.ts";
+const AWS_SNS_MESSAGE_MODEL = z.object({
+ Type: z.enum(["Notification", "SubscriptionConfirmation"]),
+ TopicArn: z.string(),
+ Timestamp: z.string(),
+ Subject: z.string().optional(),
+ SubscribeURL: z.string().optional(),
+ Message: z.string(),
+ MessageId: z.string(),
+ Signature: z.string(),
+ SigningCertURL: z.string(),
+ SignatureVersion: z.string(),
+});
+
+type AwsSnsMessage = z.TypeOf<typeof AWS_SNS_MESSAGE_MODEL>;
+
+const AWS_SES_SNS_MESSAGE_MODEL = z.object({
+ notificationType: z.literal("Received").or(z.string()),
+ receipt: z.object({
+ recipients: z.array(z.string()),
+ }),
+ mail: z.object({
+ messageId: z.string(),
+ }),
+});
+
+const AWS_SNS_SIGNATURE_FIELDS = {
+ Notification: [
+ "Message",
+ "MessageId",
+ "Subject",
+ "Timestamp",
+ "TopicArn",
+ "Type",
+ ],
+ SubscriptionConfirmation: [
+ "Message",
+ "MessageId",
+ "SubscribeURL",
+ "Timestamp",
+ "TopicArn",
+ "Type",
+ ],
+} as const;
+
+async function verifySnsSignature(message: AwsSnsMessage) {
+ const signingCertUrl = message.SigningCertURL;
+
+ if (!new URL(signingCertUrl).hostname.endsWith(".amazonaws.com")) {
+ throw new Error(
+ `Signature cert url ${signingCertUrl} does not belong to aws!!!`,
+ );
+ }
+
+ const signature = message.Signature;
+ const data = AWS_SNS_SIGNATURE_FIELDS[message.Type].filter((field) =>
+ field in message
+ ).flatMap((field) => [field, message[field]]).join("\n");
+ const certData = await (await fetch(signingCertUrl)).bytes();
+ const key = await crypto.subtle.importKey(
+ "pkcs8",
+ certData,
+ {
+ name: "RSA-PSS",
+ hash: message.SignatureVersion === "1" ? "SHA-1" : "SHA-256",
+ },
+ false,
+ ["verify"],
+ );
+ const isVerified = await crypto.subtle.verify(
+ {
+ name: "RSA-PSS",
+ hash: message.SignatureVersion === "1" ? "SHA-1" : "SHA-256",
+ },
+ key,
+ decodeBase64(signature),
+ new TextEncoder().encode(data),
+ );
+
+ if (!isVerified) {
+ throw new Error("Signature does not match!!!");
+ }
+}
+
export class AwsRelayApp extends AppBase {
readonly #aws = new AwsContext();
readonly #retriever;
@@ -35,6 +119,25 @@ export class AwsRelayApp extends AppBase {
});
},
);
+ this.hono.post(
+ `/receive/aws-sns/${config.getValue("awsInboundPath")}`,
+ zValidator("json", AWS_SNS_MESSAGE_MODEL),
+ async (ctx) => {
+ const message = ctx.req.valid("json");
+ await verifySnsSignature(message);
+ if (message.Type === "Notification") {
+ const sesMessage = JSON.parse(message.Message);
+ const parsedSesMessage = AWS_SES_SNS_MESSAGE_MODEL.parse(sesMessage);
+ // TODO: Here!!! Specify receipts!
+ await this.#retriever.deliverS3Mail(parsedSesMessage.mail.messageId);
+ return ctx.json({
+ "msg": "Done!",
+ });
+ } else if (message.Type === "SubscriptionConfirmation") {
+ } else {
+ }
+ },
+ );
}
realServe() {
diff --git a/services/docker/mail-server/relay/config.ts b/services/docker/mail-server/relay/config.ts
index 55d71fa..ec7e7d4 100644
--- a/services/docker/mail-server/relay/config.ts
+++ b/services/docker/mail-server/relay/config.ts
@@ -29,6 +29,14 @@ export const CONFIG_DEFS = {
description: "comma separated addresses used as fallback receipts",
"default": "",
},
+ awsInboundPath: {
+ env: "AWS_INBOUND_PATH",
+ description: "(random set) path for aws sns",
+ },
+ awsInboundKey: {
+ env: "AWS_INBOUND_KEY",
+ description: "(random set) http header Authorization for aws sns",
+ },
awsRegion: { env: "AWS_REGION", description: "aws region" },
awsAccessKeyId: { env: "AWS_USER", description: "aws access key id" },
awsSecretAccessKey: {
diff --git a/services/docker/mail-server/relay/deno.json b/services/docker/mail-server/relay/deno.json
index 9208126..2bf6a0e 100644
--- a/services/docker/mail-server/relay/deno.json
+++ b/services/docker/mail-server/relay/deno.json
@@ -8,6 +8,7 @@
"imports": {
"@aws-sdk/client-s3": "npm:@aws-sdk/client-s3@^3.797.0",
"@aws-sdk/client-sesv2": "npm:@aws-sdk/client-sesv2@^3.782.0",
+ "@aws-sdk/client-sns": "npm:@aws-sdk/client-sns@^3.821.0",
"@db/sqlite": "jsr:@db/sqlite@^0.12.0",
"@hono/zod-validator": "npm:@hono/zod-validator@^0.5.0",
"@smithy/fetch-http-handler": "npm:@smithy/fetch-http-handler@^5.0.4",
diff --git a/services/docker/mail-server/relay/deno.lock b/services/docker/mail-server/relay/deno.lock
index 19293f4..66ecee7 100644
--- a/services/docker/mail-server/relay/deno.lock
+++ b/services/docker/mail-server/relay/deno.lock
@@ -27,6 +27,7 @@
"jsr:@std/testing@^1.0.12": "1.0.12",
"npm:@aws-sdk/client-s3@^3.797.0": "3.797.0",
"npm:@aws-sdk/client-sesv2@^3.782.0": "3.782.0",
+ "npm:@aws-sdk/client-sns@^3.821.0": "3.821.0",
"npm:@hono/zod-validator@0.5": "0.5.0_hono@4.7.10_zod@3.25.20",
"npm:@smithy/fetch-http-handler@^5.0.4": "5.0.4",
"npm:@types/node@*": "22.15.15",
@@ -136,7 +137,7 @@
"integrity": "sha512-nLbCWqQNgUiwwtFsen1AdzAtvuLRsQS8rYgMuxCrdKf9kOssamGLuPwyTY9wyYblNr9+1XM8v6zoDTPPSIeANg==",
"dependencies": [
"@aws-crypto/util",
- "@aws-sdk/types",
+ "@aws-sdk/types@3.775.0",
"tslib"
]
},
@@ -144,7 +145,7 @@
"integrity": "sha512-+iWb8qaHLYKrNvGRbiYRHSdKRWhto5XlZUEBwDjYNf+ly5SVYG6zEoYIdxvf5R3zyeP16w4PLBn3rH1xc74Rag==",
"dependencies": [
"@aws-crypto/util",
- "@aws-sdk/types",
+ "@aws-sdk/types@3.775.0",
"tslib"
]
},
@@ -153,7 +154,7 @@
"dependencies": [
"@aws-crypto/supports-web-crypto",
"@aws-crypto/util",
- "@aws-sdk/types",
+ "@aws-sdk/types@3.775.0",
"@aws-sdk/util-locate-window",
"@smithy/util-utf8@2.3.0",
"tslib"
@@ -165,7 +166,7 @@
"@aws-crypto/sha256-js",
"@aws-crypto/supports-web-crypto",
"@aws-crypto/util",
- "@aws-sdk/types",
+ "@aws-sdk/types@3.775.0",
"@aws-sdk/util-locate-window",
"@smithy/util-utf8@2.3.0",
"tslib"
@@ -175,7 +176,7 @@
"integrity": "sha512-FFQQyu7edu4ufvIZ+OadFpHHOt+eSTBaYaki44c+akjg7qZg9oOQeLlk77F6tSYqjDAFClrHJk9tMf0HdVyOvA==",
"dependencies": [
"@aws-crypto/util",
- "@aws-sdk/types",
+ "@aws-sdk/types@3.775.0",
"tslib"
]
},
@@ -188,7 +189,7 @@
"@aws-crypto/util@5.2.0": {
"integrity": "sha512-4RkU9EsI6ZpBve5fseQlGNUWKMa1RLPQ1dnjnQoe07ldfIzcsGb5hC5W0Dm7u423KWzawlrpbjXBrXCEv9zazQ==",
"dependencies": [
- "@aws-sdk/types",
+ "@aws-sdk/types@3.775.0",
"@smithy/util-utf8@2.3.0",
"tslib"
]
@@ -204,51 +205,51 @@
"@aws-sdk/middleware-bucket-endpoint",
"@aws-sdk/middleware-expect-continue",
"@aws-sdk/middleware-flexible-checksums",
- "@aws-sdk/middleware-host-header",
+ "@aws-sdk/middleware-host-header@3.775.0",
"@aws-sdk/middleware-location-constraint",
- "@aws-sdk/middleware-logger",
- "@aws-sdk/middleware-recursion-detection",
+ "@aws-sdk/middleware-logger@3.775.0",
+ "@aws-sdk/middleware-recursion-detection@3.775.0",
"@aws-sdk/middleware-sdk-s3@3.796.0",
"@aws-sdk/middleware-ssec",
"@aws-sdk/middleware-user-agent@3.796.0",
- "@aws-sdk/region-config-resolver",
+ "@aws-sdk/region-config-resolver@3.775.0",
"@aws-sdk/signature-v4-multi-region@3.796.0",
- "@aws-sdk/types",
+ "@aws-sdk/types@3.775.0",
"@aws-sdk/util-endpoints@3.787.0",
- "@aws-sdk/util-user-agent-browser",
+ "@aws-sdk/util-user-agent-browser@3.775.0",
"@aws-sdk/util-user-agent-node@3.796.0",
"@aws-sdk/xml-builder",
- "@smithy/config-resolver",
- "@smithy/core",
+ "@smithy/config-resolver@4.1.0",
+ "@smithy/core@3.2.0",
"@smithy/eventstream-serde-browser",
"@smithy/eventstream-serde-config-resolver",
"@smithy/eventstream-serde-node",
"@smithy/fetch-http-handler@5.0.2",
"@smithy/hash-blob-browser",
- "@smithy/hash-node",
+ "@smithy/hash-node@4.0.2",
"@smithy/hash-stream-node",
- "@smithy/invalid-dependency",
+ "@smithy/invalid-dependency@4.0.2",
"@smithy/md5-js",
- "@smithy/middleware-content-length",
- "@smithy/middleware-endpoint",
- "@smithy/middleware-retry",
- "@smithy/middleware-serde",
- "@smithy/middleware-stack",
- "@smithy/node-config-provider",
- "@smithy/node-http-handler",
+ "@smithy/middleware-content-length@4.0.2",
+ "@smithy/middleware-endpoint@4.1.0",
+ "@smithy/middleware-retry@4.1.0",
+ "@smithy/middleware-serde@4.0.3",
+ "@smithy/middleware-stack@4.0.2",
+ "@smithy/node-config-provider@4.0.2",
+ "@smithy/node-http-handler@4.0.4",
"@smithy/protocol-http@5.1.0",
- "@smithy/smithy-client",
+ "@smithy/smithy-client@4.2.0",
"@smithy/types@4.2.0",
- "@smithy/url-parser",
+ "@smithy/url-parser@4.0.2",
"@smithy/util-base64",
"@smithy/util-body-length-browser",
"@smithy/util-body-length-node",
- "@smithy/util-defaults-mode-browser",
- "@smithy/util-defaults-mode-node",
- "@smithy/util-endpoints",
- "@smithy/util-middleware",
- "@smithy/util-retry",
- "@smithy/util-stream",
+ "@smithy/util-defaults-mode-browser@4.0.8",
+ "@smithy/util-defaults-mode-node@4.0.8",
+ "@smithy/util-endpoints@3.0.2",
+ "@smithy/util-middleware@4.0.2",
+ "@smithy/util-retry@4.0.2",
+ "@smithy/util-stream@4.2.0",
"@smithy/util-utf8@4.0.0",
"@smithy/util-waiter",
"tslib"
@@ -261,40 +262,84 @@
"@aws-crypto/sha256-js",
"@aws-sdk/core@3.775.0",
"@aws-sdk/credential-provider-node@3.782.0",
- "@aws-sdk/middleware-host-header",
- "@aws-sdk/middleware-logger",
- "@aws-sdk/middleware-recursion-detection",
+ "@aws-sdk/middleware-host-header@3.775.0",
+ "@aws-sdk/middleware-logger@3.775.0",
+ "@aws-sdk/middleware-recursion-detection@3.775.0",
"@aws-sdk/middleware-user-agent@3.782.0",
- "@aws-sdk/region-config-resolver",
+ "@aws-sdk/region-config-resolver@3.775.0",
"@aws-sdk/signature-v4-multi-region@3.775.0",
- "@aws-sdk/types",
+ "@aws-sdk/types@3.775.0",
"@aws-sdk/util-endpoints@3.782.0",
- "@aws-sdk/util-user-agent-browser",
+ "@aws-sdk/util-user-agent-browser@3.775.0",
"@aws-sdk/util-user-agent-node@3.782.0",
- "@smithy/config-resolver",
- "@smithy/core",
+ "@smithy/config-resolver@4.1.0",
+ "@smithy/core@3.2.0",
"@smithy/fetch-http-handler@5.0.2",
- "@smithy/hash-node",
- "@smithy/invalid-dependency",
- "@smithy/middleware-content-length",
- "@smithy/middleware-endpoint",
- "@smithy/middleware-retry",
- "@smithy/middleware-serde",
- "@smithy/middleware-stack",
- "@smithy/node-config-provider",
- "@smithy/node-http-handler",
+ "@smithy/hash-node@4.0.2",
+ "@smithy/invalid-dependency@4.0.2",
+ "@smithy/middleware-content-length@4.0.2",
+ "@smithy/middleware-endpoint@4.1.0",
+ "@smithy/middleware-retry@4.1.0",
+ "@smithy/middleware-serde@4.0.3",
+ "@smithy/middleware-stack@4.0.2",
+ "@smithy/node-config-provider@4.0.2",
+ "@smithy/node-http-handler@4.0.4",
"@smithy/protocol-http@5.1.0",
- "@smithy/smithy-client",
+ "@smithy/smithy-client@4.2.0",
"@smithy/types@4.2.0",
- "@smithy/url-parser",
+ "@smithy/url-parser@4.0.2",
"@smithy/util-base64",
"@smithy/util-body-length-browser",
"@smithy/util-body-length-node",
- "@smithy/util-defaults-mode-browser",
- "@smithy/util-defaults-mode-node",
- "@smithy/util-endpoints",
- "@smithy/util-middleware",
- "@smithy/util-retry",
+ "@smithy/util-defaults-mode-browser@4.0.8",
+ "@smithy/util-defaults-mode-node@4.0.8",
+ "@smithy/util-endpoints@3.0.2",
+ "@smithy/util-middleware@4.0.2",
+ "@smithy/util-retry@4.0.2",
+ "@smithy/util-utf8@4.0.0",
+ "tslib"
+ ]
+ },
+ "@aws-sdk/client-sns@3.821.0": {
+ "integrity": "sha512-I7TLsuAzfD/Cu643i2m5F/c798vNfc3skmDQ96aRei1cM4t1x6JJl/F4IIj6pgDBn4CqfWJ1AaPgmX49opuGuw==",
+ "dependencies": [
+ "@aws-crypto/sha256-browser",
+ "@aws-crypto/sha256-js",
+ "@aws-sdk/core@3.821.0",
+ "@aws-sdk/credential-provider-node@3.821.0",
+ "@aws-sdk/middleware-host-header@3.821.0",
+ "@aws-sdk/middleware-logger@3.821.0",
+ "@aws-sdk/middleware-recursion-detection@3.821.0",
+ "@aws-sdk/middleware-user-agent@3.821.0",
+ "@aws-sdk/region-config-resolver@3.821.0",
+ "@aws-sdk/types@3.821.0",
+ "@aws-sdk/util-endpoints@3.821.0",
+ "@aws-sdk/util-user-agent-browser@3.821.0",
+ "@aws-sdk/util-user-agent-node@3.821.0",
+ "@smithy/config-resolver@4.1.4",
+ "@smithy/core@3.5.1",
+ "@smithy/fetch-http-handler@5.0.4",
+ "@smithy/hash-node@4.0.4",
+ "@smithy/invalid-dependency@4.0.4",
+ "@smithy/middleware-content-length@4.0.4",
+ "@smithy/middleware-endpoint@4.1.9",
+ "@smithy/middleware-retry@4.1.10",
+ "@smithy/middleware-serde@4.0.8",
+ "@smithy/middleware-stack@4.0.4",
+ "@smithy/node-config-provider@4.1.3",
+ "@smithy/node-http-handler@4.0.6",
+ "@smithy/protocol-http@5.1.2",
+ "@smithy/smithy-client@4.4.1",
+ "@smithy/types@4.3.1",
+ "@smithy/url-parser@4.0.4",
+ "@smithy/util-base64",
+ "@smithy/util-body-length-browser",
+ "@smithy/util-body-length-node",
+ "@smithy/util-defaults-mode-browser@4.0.17",
+ "@smithy/util-defaults-mode-node@4.0.17",
+ "@smithy/util-endpoints@3.0.6",
+ "@smithy/util-middleware@4.0.4",
+ "@smithy/util-retry@4.0.5",
"@smithy/util-utf8@4.0.0",
"tslib"
]
@@ -305,39 +350,39 @@
"@aws-crypto/sha256-browser",
"@aws-crypto/sha256-js",
"@aws-sdk/core@3.775.0",
- "@aws-sdk/middleware-host-header",
- "@aws-sdk/middleware-logger",
- "@aws-sdk/middleware-recursion-detection",
+ "@aws-sdk/middleware-host-header@3.775.0",
+ "@aws-sdk/middleware-logger@3.775.0",
+ "@aws-sdk/middleware-recursion-detection@3.775.0",
"@aws-sdk/middleware-user-agent@3.782.0",
- "@aws-sdk/region-config-resolver",
- "@aws-sdk/types",
+ "@aws-sdk/region-config-resolver@3.775.0",
+ "@aws-sdk/types@3.775.0",
"@aws-sdk/util-endpoints@3.782.0",
- "@aws-sdk/util-user-agent-browser",
+ "@aws-sdk/util-user-agent-browser@3.775.0",
"@aws-sdk/util-user-agent-node@3.782.0",
- "@smithy/config-resolver",
- "@smithy/core",
+ "@smithy/config-resolver@4.1.0",
+ "@smithy/core@3.2.0",
"@smithy/fetch-http-handler@5.0.2",
- "@smithy/hash-node",
- "@smithy/invalid-dependency",
- "@smithy/middleware-content-length",
- "@smithy/middleware-endpoint",
- "@smithy/middleware-retry",
- "@smithy/middleware-serde",
- "@smithy/middleware-stack",
- "@smithy/node-config-provider",
- "@smithy/node-http-handler",
+ "@smithy/hash-node@4.0.2",
+ "@smithy/invalid-dependency@4.0.2",
+ "@smithy/middleware-content-length@4.0.2",
+ "@smithy/middleware-endpoint@4.1.0",
+ "@smithy/middleware-retry@4.1.0",
+ "@smithy/middleware-serde@4.0.3",
+ "@smithy/middleware-stack@4.0.2",
+ "@smithy/node-config-provider@4.0.2",
+ "@smithy/node-http-handler@4.0.4",
"@smithy/protocol-http@5.1.0",
- "@smithy/smithy-client",
+ "@smithy/smithy-client@4.2.0",
"@smithy/types@4.2.0",
- "@smithy/url-parser",
+ "@smithy/url-parser@4.0.2",
"@smithy/util-base64",
"@smithy/util-body-length-browser",
"@smithy/util-body-length-node",
- "@smithy/util-defaults-mode-browser",
- "@smithy/util-defaults-mode-node",
- "@smithy/util-endpoints",
- "@smithy/util-middleware",
- "@smithy/util-retry",
+ "@smithy/util-defaults-mode-browser@4.0.8",
+ "@smithy/util-defaults-mode-node@4.0.8",
+ "@smithy/util-endpoints@3.0.2",
+ "@smithy/util-middleware@4.0.2",
+ "@smithy/util-retry@4.0.2",
"@smithy/util-utf8@4.0.0",
"tslib"
]
@@ -348,39 +393,82 @@
"@aws-crypto/sha256-browser",
"@aws-crypto/sha256-js",
"@aws-sdk/core@3.796.0",
- "@aws-sdk/middleware-host-header",
- "@aws-sdk/middleware-logger",
- "@aws-sdk/middleware-recursion-detection",
+ "@aws-sdk/middleware-host-header@3.775.0",
+ "@aws-sdk/middleware-logger@3.775.0",
+ "@aws-sdk/middleware-recursion-detection@3.775.0",
"@aws-sdk/middleware-user-agent@3.796.0",
- "@aws-sdk/region-config-resolver",
- "@aws-sdk/types",
+ "@aws-sdk/region-config-resolver@3.775.0",
+ "@aws-sdk/types@3.775.0",
"@aws-sdk/util-endpoints@3.787.0",
- "@aws-sdk/util-user-agent-browser",
+ "@aws-sdk/util-user-agent-browser@3.775.0",
"@aws-sdk/util-user-agent-node@3.796.0",
- "@smithy/config-resolver",
- "@smithy/core",
+ "@smithy/config-resolver@4.1.0",
+ "@smithy/core@3.2.0",
"@smithy/fetch-http-handler@5.0.2",
- "@smithy/hash-node",
- "@smithy/invalid-dependency",
- "@smithy/middleware-content-length",
- "@smithy/middleware-endpoint",
- "@smithy/middleware-retry",
- "@smithy/middleware-serde",
- "@smithy/middleware-stack",
- "@smithy/node-config-provider",
- "@smithy/node-http-handler",
+ "@smithy/hash-node@4.0.2",
+ "@smithy/invalid-dependency@4.0.2",
+ "@smithy/middleware-content-length@4.0.2",
+ "@smithy/middleware-endpoint@4.1.0",
+ "@smithy/middleware-retry@4.1.0",
+ "@smithy/middleware-serde@4.0.3",
+ "@smithy/middleware-stack@4.0.2",
+ "@smithy/node-config-provider@4.0.2",
+ "@smithy/node-http-handler@4.0.4",
"@smithy/protocol-http@5.1.0",
- "@smithy/smithy-client",
+ "@smithy/smithy-client@4.2.0",
"@smithy/types@4.2.0",
- "@smithy/url-parser",
+ "@smithy/url-parser@4.0.2",
+ "@smithy/util-base64",
+ "@smithy/util-body-length-browser",
+ "@smithy/util-body-length-node",
+ "@smithy/util-defaults-mode-browser@4.0.8",
+ "@smithy/util-defaults-mode-node@4.0.8",
+ "@smithy/util-endpoints@3.0.2",
+ "@smithy/util-middleware@4.0.2",
+ "@smithy/util-retry@4.0.2",
+ "@smithy/util-utf8@4.0.0",
+ "tslib"
+ ]
+ },
+ "@aws-sdk/client-sso@3.821.0": {
+ "integrity": "sha512-aDEBZUKUd/+Tvudi0d9KQlqt2OW2P27LATZX0jkNC8yVk4145bAPS04EYoqdKLuyUn/U33DibEOgKUpxZB12jQ==",
+ "dependencies": [
+ "@aws-crypto/sha256-browser",
+ "@aws-crypto/sha256-js",
+ "@aws-sdk/core@3.821.0",
+ "@aws-sdk/middleware-host-header@3.821.0",
+ "@aws-sdk/middleware-logger@3.821.0",
+ "@aws-sdk/middleware-recursion-detection@3.821.0",
+ "@aws-sdk/middleware-user-agent@3.821.0",
+ "@aws-sdk/region-config-resolver@3.821.0",
+ "@aws-sdk/types@3.821.0",
+ "@aws-sdk/util-endpoints@3.821.0",
+ "@aws-sdk/util-user-agent-browser@3.821.0",
+ "@aws-sdk/util-user-agent-node@3.821.0",
+ "@smithy/config-resolver@4.1.4",
+ "@smithy/core@3.5.1",
+ "@smithy/fetch-http-handler@5.0.4",
+ "@smithy/hash-node@4.0.4",
+ "@smithy/invalid-dependency@4.0.4",
+ "@smithy/middleware-content-length@4.0.4",
+ "@smithy/middleware-endpoint@4.1.9",
+ "@smithy/middleware-retry@4.1.10",
+ "@smithy/middleware-serde@4.0.8",
+ "@smithy/middleware-stack@4.0.4",
+ "@smithy/node-config-provider@4.1.3",
+ "@smithy/node-http-handler@4.0.6",
+ "@smithy/protocol-http@5.1.2",
+ "@smithy/smithy-client@4.4.1",
+ "@smithy/types@4.3.1",
+ "@smithy/url-parser@4.0.4",
"@smithy/util-base64",
"@smithy/util-body-length-browser",
"@smithy/util-body-length-node",
- "@smithy/util-defaults-mode-browser",
- "@smithy/util-defaults-mode-node",
- "@smithy/util-endpoints",
- "@smithy/util-middleware",
- "@smithy/util-retry",
+ "@smithy/util-defaults-mode-browser@4.0.17",
+ "@smithy/util-defaults-mode-node@4.0.17",
+ "@smithy/util-endpoints@3.0.6",
+ "@smithy/util-middleware@4.0.4",
+ "@smithy/util-retry@4.0.5",
"@smithy/util-utf8@4.0.0",
"tslib"
]
@@ -388,15 +476,15 @@
"@aws-sdk/core@3.775.0": {
"integrity": "sha512-8vpW4WihVfz0DX+7WnnLGm3GuQER++b0IwQG35JlQMlgqnc44M//KbJPsIHA0aJUJVwJAEShgfr5dUbY8WUzaA==",
"dependencies": [
- "@aws-sdk/types",
- "@smithy/core",
- "@smithy/node-config-provider",
- "@smithy/property-provider",
+ "@aws-sdk/types@3.775.0",
+ "@smithy/core@3.2.0",
+ "@smithy/node-config-provider@4.0.2",
+ "@smithy/property-provider@4.0.2",
"@smithy/protocol-http@5.1.0",
"@smithy/signature-v4@5.0.2",
- "@smithy/smithy-client",
+ "@smithy/smithy-client@4.2.0",
"@smithy/types@4.2.0",
- "@smithy/util-middleware",
+ "@smithy/util-middleware@4.0.2",
"fast-xml-parser",
"tslib"
]
@@ -404,15 +492,31 @@
"@aws-sdk/core@3.796.0": {
"integrity": "sha512-tH8Sp7lCxISVoLnkyv4AouuXs2CDlMhTuesWa0lq2NX1f+DXsMwSBtN37ttZdpFMw3F8mWdsJt27X9h2Oq868A==",
"dependencies": [
- "@aws-sdk/types",
- "@smithy/core",
- "@smithy/node-config-provider",
- "@smithy/property-provider",
+ "@aws-sdk/types@3.775.0",
+ "@smithy/core@3.2.0",
+ "@smithy/node-config-provider@4.0.2",
+ "@smithy/property-provider@4.0.2",
"@smithy/protocol-http@5.1.0",
"@smithy/signature-v4@5.1.0",
- "@smithy/smithy-client",
+ "@smithy/smithy-client@4.2.0",
"@smithy/types@4.2.0",
- "@smithy/util-middleware",
+ "@smithy/util-middleware@4.0.2",
+ "fast-xml-parser",
+ "tslib"
+ ]
+ },
+ "@aws-sdk/core@3.821.0": {
+ "integrity": "sha512-8eB3wKbmfciQFmxFq7hAjy7mXdUs7vBOR5SwT0ZtQBg0Txc18Lc9tMViqqdO6/KU7OukA6ib2IAVSjIJJEN7FQ==",
+ "dependencies": [
+ "@aws-sdk/types@3.821.0",
+ "@smithy/core@3.5.1",
+ "@smithy/node-config-provider@4.1.3",
+ "@smithy/property-provider@4.0.4",
+ "@smithy/protocol-http@5.1.2",
+ "@smithy/signature-v4@5.1.2",
+ "@smithy/smithy-client@4.4.1",
+ "@smithy/types@4.3.1",
+ "@smithy/util-middleware@4.0.4",
"fast-xml-parser",
"tslib"
]
@@ -421,8 +525,8 @@
"integrity": "sha512-6ESVxwCbGm7WZ17kY1fjmxQud43vzJFoLd4bmlR+idQSWdqlzGDYdcfzpjDKTcivdtNrVYmFvcH1JBUwCRAZhw==",
"dependencies": [
"@aws-sdk/core@3.775.0",
- "@aws-sdk/types",
- "@smithy/property-provider",
+ "@aws-sdk/types@3.775.0",
+ "@smithy/property-provider@4.0.2",
"@smithy/types@4.2.0",
"tslib"
]
@@ -431,24 +535,34 @@
"integrity": "sha512-kQzGKm4IOYYO6vUrai2JocNwhJm4Aml2BsAV+tBhFhhkutE7khf9PUucoVjB78b0J48nF+kdSacqzY+gB81/Uw==",
"dependencies": [
"@aws-sdk/core@3.796.0",
- "@aws-sdk/types",
- "@smithy/property-provider",
+ "@aws-sdk/types@3.775.0",
+ "@smithy/property-provider@4.0.2",
"@smithy/types@4.2.0",
"tslib"
]
},
+ "@aws-sdk/credential-provider-env@3.821.0": {
+ "integrity": "sha512-C+s/A72pd7CXwEsJj9+Uq9T726iIfIF18hGRY8o82xcIEfOyakiPnlisku8zZOaAu+jm0CihbbYN4NyYNQ+HZQ==",
+ "dependencies": [
+ "@aws-sdk/core@3.821.0",
+ "@aws-sdk/types@3.821.0",
+ "@smithy/property-provider@4.0.4",
+ "@smithy/types@4.3.1",
+ "tslib"
+ ]
+ },
"@aws-sdk/credential-provider-http@3.775.0": {
"integrity": "sha512-PjDQeDH/J1S0yWV32wCj2k5liRo0ssXMseCBEkCsD3SqsU8o5cU82b0hMX4sAib/RkglCSZqGO0xMiN0/7ndww==",
"dependencies": [
"@aws-sdk/core@3.775.0",
- "@aws-sdk/types",
+ "@aws-sdk/types@3.775.0",
"@smithy/fetch-http-handler@5.0.2",
- "@smithy/node-http-handler",
- "@smithy/property-provider",
+ "@smithy/node-http-handler@4.0.4",
+ "@smithy/property-provider@4.0.2",
"@smithy/protocol-http@5.1.0",
- "@smithy/smithy-client",
+ "@smithy/smithy-client@4.2.0",
"@smithy/types@4.2.0",
- "@smithy/util-stream",
+ "@smithy/util-stream@4.2.0",
"tslib"
]
},
@@ -456,14 +570,29 @@
"integrity": "sha512-wWOT6VAHIKOuHdKFGm1iyKvx7f6+Kc/YTzFWJPuT+l+CPlXR6ylP1UMIDsHHLKpMzsrh3CH77QDsjkhQrnKkfg==",
"dependencies": [
"@aws-sdk/core@3.796.0",
- "@aws-sdk/types",
+ "@aws-sdk/types@3.775.0",
"@smithy/fetch-http-handler@5.0.2",
- "@smithy/node-http-handler",
- "@smithy/property-provider",
+ "@smithy/node-http-handler@4.0.4",
+ "@smithy/property-provider@4.0.2",
"@smithy/protocol-http@5.1.0",
- "@smithy/smithy-client",
+ "@smithy/smithy-client@4.2.0",
"@smithy/types@4.2.0",
- "@smithy/util-stream",
+ "@smithy/util-stream@4.2.0",
+ "tslib"
+ ]
+ },
+ "@aws-sdk/credential-provider-http@3.821.0": {
+ "integrity": "sha512-gIRzTLnAsRfRSNarCag7G7rhcHagz4x5nNTWRihQs5cwTOghEExDy7Tj5m4TEkv3dcTAsNn+l4tnR4nZXo6R+Q==",
+ "dependencies": [
+ "@aws-sdk/core@3.821.0",
+ "@aws-sdk/types@3.821.0",
+ "@smithy/fetch-http-handler@5.0.4",
+ "@smithy/node-http-handler@4.0.6",
+ "@smithy/property-provider@4.0.4",
+ "@smithy/protocol-http@5.1.2",
+ "@smithy/smithy-client@4.4.1",
+ "@smithy/types@4.3.1",
+ "@smithy/util-stream@4.2.2",
"tslib"
]
},
@@ -477,10 +606,10 @@
"@aws-sdk/credential-provider-sso@3.782.0",
"@aws-sdk/credential-provider-web-identity@3.782.0",
"@aws-sdk/nested-clients@3.782.0",
- "@aws-sdk/types",
- "@smithy/credential-provider-imds",
- "@smithy/property-provider",
- "@smithy/shared-ini-file-loader",
+ "@aws-sdk/types@3.775.0",
+ "@smithy/credential-provider-imds@4.0.2",
+ "@smithy/property-provider@4.0.2",
+ "@smithy/shared-ini-file-loader@4.0.2",
"@smithy/types@4.2.0",
"tslib"
]
@@ -495,14 +624,32 @@
"@aws-sdk/credential-provider-sso@3.797.0",
"@aws-sdk/credential-provider-web-identity@3.797.0",
"@aws-sdk/nested-clients@3.797.0",
- "@aws-sdk/types",
- "@smithy/credential-provider-imds",
- "@smithy/property-provider",
- "@smithy/shared-ini-file-loader",
+ "@aws-sdk/types@3.775.0",
+ "@smithy/credential-provider-imds@4.0.2",
+ "@smithy/property-provider@4.0.2",
+ "@smithy/shared-ini-file-loader@4.0.2",
"@smithy/types@4.2.0",
"tslib"
]
},
+ "@aws-sdk/credential-provider-ini@3.821.0": {
+ "integrity": "sha512-VRTrmsca8kBHtY1tTek1ce+XkK/H0fzodBKcilM/qXjTyumMHPAzVAxKZfSvGC+28/pXyQzhOEyxZfw7giCiWA==",
+ "dependencies": [
+ "@aws-sdk/core@3.821.0",
+ "@aws-sdk/credential-provider-env@3.821.0",
+ "@aws-sdk/credential-provider-http@3.821.0",
+ "@aws-sdk/credential-provider-process@3.821.0",
+ "@aws-sdk/credential-provider-sso@3.821.0",
+ "@aws-sdk/credential-provider-web-identity@3.821.0",
+ "@aws-sdk/nested-clients@3.821.0",
+ "@aws-sdk/types@3.821.0",
+ "@smithy/credential-provider-imds@4.0.6",
+ "@smithy/property-provider@4.0.4",
+ "@smithy/shared-ini-file-loader@4.0.4",
+ "@smithy/types@4.3.1",
+ "tslib"
+ ]
+ },
"@aws-sdk/credential-provider-node@3.782.0": {
"integrity": "sha512-HZiAF+TCEyKjju9dgysjiPIWgt/+VerGaeEp18mvKLNfgKz1d+/82A2USEpNKTze7v3cMFASx3CvL8yYyF7mJw==",
"dependencies": [
@@ -512,10 +659,10 @@
"@aws-sdk/credential-provider-process@3.775.0",
"@aws-sdk/credential-provider-sso@3.782.0",
"@aws-sdk/credential-provider-web-identity@3.782.0",
- "@aws-sdk/types",
- "@smithy/credential-provider-imds",
- "@smithy/property-provider",
- "@smithy/shared-ini-file-loader",
+ "@aws-sdk/types@3.775.0",
+ "@smithy/credential-provider-imds@4.0.2",
+ "@smithy/property-provider@4.0.2",
+ "@smithy/shared-ini-file-loader@4.0.2",
"@smithy/types@4.2.0",
"tslib"
]
@@ -529,21 +676,38 @@
"@aws-sdk/credential-provider-process@3.796.0",
"@aws-sdk/credential-provider-sso@3.797.0",
"@aws-sdk/credential-provider-web-identity@3.797.0",
- "@aws-sdk/types",
- "@smithy/credential-provider-imds",
- "@smithy/property-provider",
- "@smithy/shared-ini-file-loader",
+ "@aws-sdk/types@3.775.0",
+ "@smithy/credential-provider-imds@4.0.2",
+ "@smithy/property-provider@4.0.2",
+ "@smithy/shared-ini-file-loader@4.0.2",
"@smithy/types@4.2.0",
"tslib"
]
},
+ "@aws-sdk/credential-provider-node@3.821.0": {
+ "integrity": "sha512-oBgbcgOXWMgknAfhIdTeHSSVIv+k2LXN9oTbxu1r++o4WWBWrEQ8mHU0Zo9dfr7Uaoqi3pezYZznsBkXnMLEOg==",
+ "dependencies": [
+ "@aws-sdk/credential-provider-env@3.821.0",
+ "@aws-sdk/credential-provider-http@3.821.0",
+ "@aws-sdk/credential-provider-ini@3.821.0",
+ "@aws-sdk/credential-provider-process@3.821.0",
+ "@aws-sdk/credential-provider-sso@3.821.0",
+ "@aws-sdk/credential-provider-web-identity@3.821.0",
+ "@aws-sdk/types@3.821.0",
+ "@smithy/credential-provider-imds@4.0.6",
+ "@smithy/property-provider@4.0.4",
+ "@smithy/shared-ini-file-loader@4.0.4",
+ "@smithy/types@4.3.1",
+ "tslib"
+ ]
+ },
"@aws-sdk/credential-provider-process@3.775.0": {
"integrity": "sha512-A6k68H9rQp+2+7P7SGO90Csw6nrUEm0Qfjpn9Etc4EboZhhCLs9b66umUsTsSBHus4FDIe5JQxfCUyt1wgNogg==",
"dependencies": [
"@aws-sdk/core@3.775.0",
- "@aws-sdk/types",
- "@smithy/property-provider",
- "@smithy/shared-ini-file-loader",
+ "@aws-sdk/types@3.775.0",
+ "@smithy/property-provider@4.0.2",
+ "@smithy/shared-ini-file-loader@4.0.2",
"@smithy/types@4.2.0",
"tslib"
]
@@ -552,22 +716,33 @@
"integrity": "sha512-r4e8/4AdKn/qQbRVocW7oXkpoiuXdTv0qty8AASNLnbQnT1vjD1bvmP6kp4fbHPWgwY8I9h0Dqjp49uy9Bqyuw==",
"dependencies": [
"@aws-sdk/core@3.796.0",
- "@aws-sdk/types",
- "@smithy/property-provider",
- "@smithy/shared-ini-file-loader",
+ "@aws-sdk/types@3.775.0",
+ "@smithy/property-provider@4.0.2",
+ "@smithy/shared-ini-file-loader@4.0.2",
"@smithy/types@4.2.0",
"tslib"
]
},
+ "@aws-sdk/credential-provider-process@3.821.0": {
+ "integrity": "sha512-e18ucfqKB3ICNj5RP/FEdvUfhVK6E9MALOsl8pKP13mwegug46p/1BsZWACD5n+Zf9ViiiHxIO7td03zQixfwA==",
+ "dependencies": [
+ "@aws-sdk/core@3.821.0",
+ "@aws-sdk/types@3.821.0",
+ "@smithy/property-provider@4.0.4",
+ "@smithy/shared-ini-file-loader@4.0.4",
+ "@smithy/types@4.3.1",
+ "tslib"
+ ]
+ },
"@aws-sdk/credential-provider-sso@3.782.0": {
"integrity": "sha512-1y1ucxTtTIGDSNSNxriQY8msinilhe9gGvQpUDYW9gboyC7WQJPDw66imy258V6osdtdi+xoHzVCbCz3WhosMQ==",
"dependencies": [
"@aws-sdk/client-sso@3.782.0",
"@aws-sdk/core@3.775.0",
"@aws-sdk/token-providers@3.782.0",
- "@aws-sdk/types",
- "@smithy/property-provider",
- "@smithy/shared-ini-file-loader",
+ "@aws-sdk/types@3.775.0",
+ "@smithy/property-provider@4.0.2",
+ "@smithy/shared-ini-file-loader@4.0.2",
"@smithy/types@4.2.0",
"tslib"
]
@@ -578,20 +753,33 @@
"@aws-sdk/client-sso@3.797.0",
"@aws-sdk/core@3.796.0",
"@aws-sdk/token-providers@3.797.0",
- "@aws-sdk/types",
- "@smithy/property-provider",
- "@smithy/shared-ini-file-loader",
+ "@aws-sdk/types@3.775.0",
+ "@smithy/property-provider@4.0.2",
+ "@smithy/shared-ini-file-loader@4.0.2",
"@smithy/types@4.2.0",
"tslib"
]
},
+ "@aws-sdk/credential-provider-sso@3.821.0": {
+ "integrity": "sha512-Dt+pheBLom4O/egO4L75/72k9C1qtUOLl0F0h6lmqZe4Mvhz+wDtjoO/MdGC/P1q0kcIX/bBKr0NQ3cIvAH8pA==",
+ "dependencies": [
+ "@aws-sdk/client-sso@3.821.0",
+ "@aws-sdk/core@3.821.0",
+ "@aws-sdk/token-providers@3.821.0",
+ "@aws-sdk/types@3.821.0",
+ "@smithy/property-provider@4.0.4",
+ "@smithy/shared-ini-file-loader@4.0.4",
+ "@smithy/types@4.3.1",
+ "tslib"
+ ]
+ },
"@aws-sdk/credential-provider-web-identity@3.782.0": {
"integrity": "sha512-xCna0opVPaueEbJoclj5C6OpDNi0Gynj+4d7tnuXGgQhTHPyAz8ZyClkVqpi5qvHTgxROdUEDxWqEO5jqRHZHQ==",
"dependencies": [
"@aws-sdk/core@3.775.0",
"@aws-sdk/nested-clients@3.782.0",
- "@aws-sdk/types",
- "@smithy/property-provider",
+ "@aws-sdk/types@3.775.0",
+ "@smithy/property-provider@4.0.2",
"@smithy/types@4.2.0",
"tslib"
]
@@ -601,18 +789,29 @@
"dependencies": [
"@aws-sdk/core@3.796.0",
"@aws-sdk/nested-clients@3.797.0",
- "@aws-sdk/types",
- "@smithy/property-provider",
+ "@aws-sdk/types@3.775.0",
+ "@smithy/property-provider@4.0.2",
"@smithy/types@4.2.0",
"tslib"
]
},
+ "@aws-sdk/credential-provider-web-identity@3.821.0": {
+ "integrity": "sha512-FF5wnRJkxSQaCVVvWNv53K1MhTMgH8d+O+MHTbkv51gVIgVATrtfFQMKBLcEAxzXrgAliIO3LiNv+1TqqBZ+BA==",
+ "dependencies": [
+ "@aws-sdk/core@3.821.0",
+ "@aws-sdk/nested-clients@3.821.0",
+ "@aws-sdk/types@3.821.0",
+ "@smithy/property-provider@4.0.4",
+ "@smithy/types@4.3.1",
+ "tslib"
+ ]
+ },
"@aws-sdk/middleware-bucket-endpoint@3.775.0": {
"integrity": "sha512-qogMIpVChDYr4xiUNC19/RDSw/sKoHkAhouS6Skxiy6s27HBhow1L3Z1qVYXuBmOZGSWPU0xiyZCvOyWrv9s+Q==",
"dependencies": [
- "@aws-sdk/types",
+ "@aws-sdk/types@3.775.0",
"@aws-sdk/util-arn-parser",
- "@smithy/node-config-provider",
+ "@smithy/node-config-provider@4.0.2",
"@smithy/protocol-http@5.1.0",
"@smithy/types@4.2.0",
"@smithy/util-config-provider",
@@ -622,7 +821,7 @@
"@aws-sdk/middleware-expect-continue@3.775.0": {
"integrity": "sha512-Apd3owkIeUW5dnk3au9np2IdW2N0zc9NjTjHiH+Mx3zqwSrc+m+ANgJVgk9mnQjMzU/vb7VuxJ0eqdEbp5gYsg==",
"dependencies": [
- "@aws-sdk/types",
+ "@aws-sdk/types@3.775.0",
"@smithy/protocol-http@5.1.0",
"@smithy/types@4.2.0",
"tslib"
@@ -635,13 +834,13 @@
"@aws-crypto/crc32c",
"@aws-crypto/util",
"@aws-sdk/core@3.796.0",
- "@aws-sdk/types",
+ "@aws-sdk/types@3.775.0",
"@smithy/is-array-buffer@4.0.0",
- "@smithy/node-config-provider",
+ "@smithy/node-config-provider@4.0.2",
"@smithy/protocol-http@5.1.0",
"@smithy/types@4.2.0",
- "@smithy/util-middleware",
- "@smithy/util-stream",
+ "@smithy/util-middleware@4.0.2",
+ "@smithy/util-stream@4.2.0",
"@smithy/util-utf8@4.0.0",
"tslib"
]
@@ -649,16 +848,25 @@
"@aws-sdk/middleware-host-header@3.775.0": {
"integrity": "sha512-tkSegM0Z6WMXpLB8oPys/d+umYIocvO298mGvcMCncpRl77L9XkvSLJIFzaHes+o7djAgIduYw8wKIMStFss2w==",
"dependencies": [
- "@aws-sdk/types",
+ "@aws-sdk/types@3.775.0",
"@smithy/protocol-http@5.1.0",
"@smithy/types@4.2.0",
"tslib"
]
},
+ "@aws-sdk/middleware-host-header@3.821.0": {
+ "integrity": "sha512-xSMR+sopSeWGx5/4pAGhhfMvGBHioVBbqGvDs6pG64xfNwM5vq5s5v6D04e2i+uSTj4qGa71dLUs5I0UzAK3sw==",
+ "dependencies": [
+ "@aws-sdk/types@3.821.0",
+ "@smithy/protocol-http@5.1.2",
+ "@smithy/types@4.3.1",
+ "tslib"
+ ]
+ },
"@aws-sdk/middleware-location-constraint@3.775.0": {
"integrity": "sha512-8TMXEHZXZTFTckQLyBT5aEI8fX11HZcwZseRifvBKKpj0RZDk4F0EEYGxeNSPpUQ7n+PRWyfAEnnZNRdAj/1NQ==",
"dependencies": [
- "@aws-sdk/types",
+ "@aws-sdk/types@3.775.0",
"@smithy/types@4.2.0",
"tslib"
]
@@ -666,35 +874,52 @@
"@aws-sdk/middleware-logger@3.775.0": {
"integrity": "sha512-FaxO1xom4MAoUJsldmR92nT1G6uZxTdNYOFYtdHfd6N2wcNaTuxgjIvqzg5y7QIH9kn58XX/dzf1iTjgqUStZw==",
"dependencies": [
- "@aws-sdk/types",
+ "@aws-sdk/types@3.775.0",
"@smithy/types@4.2.0",
"tslib"
]
},
+ "@aws-sdk/middleware-logger@3.821.0": {
+ "integrity": "sha512-0cvI0ipf2tGx7fXYEEN5fBeZDz2RnHyb9xftSgUsEq7NBxjV0yTZfLJw6Za5rjE6snC80dRN8+bTNR1tuG89zA==",
+ "dependencies": [
+ "@aws-sdk/types@3.821.0",
+ "@smithy/types@4.3.1",
+ "tslib"
+ ]
+ },
"@aws-sdk/middleware-recursion-detection@3.775.0": {
"integrity": "sha512-GLCzC8D0A0YDG5u3F5U03Vb9j5tcOEFhr8oc6PDk0k0vm5VwtZOE6LvK7hcCSoAB4HXyOUM0sQuXrbaAh9OwXA==",
"dependencies": [
- "@aws-sdk/types",
+ "@aws-sdk/types@3.775.0",
"@smithy/protocol-http@5.1.0",
"@smithy/types@4.2.0",
"tslib"
]
},
+ "@aws-sdk/middleware-recursion-detection@3.821.0": {
+ "integrity": "sha512-efmaifbhBoqKG3bAoEfDdcM8hn1psF+4qa7ykWuYmfmah59JBeqHLfz5W9m9JoTwoKPkFcVLWZxnyZzAnVBOIg==",
+ "dependencies": [
+ "@aws-sdk/types@3.821.0",
+ "@smithy/protocol-http@5.1.2",
+ "@smithy/types@4.3.1",
+ "tslib"
+ ]
+ },
"@aws-sdk/middleware-sdk-s3@3.775.0": {
"integrity": "sha512-zsvcu7cWB28JJ60gVvjxPCI7ZU7jWGcpNACPiZGyVtjYXwcxyhXbYEVDSWKsSA6ERpz9XrpLYod8INQWfW3ECg==",
"dependencies": [
"@aws-sdk/core@3.775.0",
- "@aws-sdk/types",
+ "@aws-sdk/types@3.775.0",
"@aws-sdk/util-arn-parser",
- "@smithy/core",
- "@smithy/node-config-provider",
+ "@smithy/core@3.2.0",
+ "@smithy/node-config-provider@4.0.2",
"@smithy/protocol-http@5.1.0",
"@smithy/signature-v4@5.0.2",
- "@smithy/smithy-client",
+ "@smithy/smithy-client@4.2.0",
"@smithy/types@4.2.0",
"@smithy/util-config-provider",
- "@smithy/util-middleware",
- "@smithy/util-stream",
+ "@smithy/util-middleware@4.0.2",
+ "@smithy/util-stream@4.2.0",
"@smithy/util-utf8@4.0.0",
"tslib"
]
@@ -703,17 +928,17 @@
"integrity": "sha512-5o78oE79sGOtYkL7Up02h2nmr9UhGQZJgxE29EBdTw4dZ1EaA46L+C8oA+fBCmAB5xPQsjQqvhRrsr4Lcp+jZQ==",
"dependencies": [
"@aws-sdk/core@3.796.0",
- "@aws-sdk/types",
+ "@aws-sdk/types@3.775.0",
"@aws-sdk/util-arn-parser",
- "@smithy/core",
- "@smithy/node-config-provider",
+ "@smithy/core@3.2.0",
+ "@smithy/node-config-provider@4.0.2",
"@smithy/protocol-http@5.1.0",
"@smithy/signature-v4@5.1.0",
- "@smithy/smithy-client",
+ "@smithy/smithy-client@4.2.0",
"@smithy/types@4.2.0",
"@smithy/util-config-provider",
- "@smithy/util-middleware",
- "@smithy/util-stream",
+ "@smithy/util-middleware@4.0.2",
+ "@smithy/util-stream@4.2.0",
"@smithy/util-utf8@4.0.0",
"tslib"
]
@@ -721,7 +946,7 @@
"@aws-sdk/middleware-ssec@3.775.0": {
"integrity": "sha512-Iw1RHD8vfAWWPzBBIKaojO4GAvQkHOYIpKdAfis/EUSUmSa79QsnXnRqsdcE0mCB0Ylj23yi+ah4/0wh9FsekA==",
"dependencies": [
- "@aws-sdk/types",
+ "@aws-sdk/types@3.775.0",
"@smithy/types@4.2.0",
"tslib"
]
@@ -730,9 +955,9 @@
"integrity": "sha512-i32H2R6IItX+bQ2p4+v2gGO2jA80jQoJO2m1xjU9rYWQW3+ErWy4I5YIuQHTBfb6hSdAHbaRfqPDgbv9J2rjEg==",
"dependencies": [
"@aws-sdk/core@3.775.0",
- "@aws-sdk/types",
+ "@aws-sdk/types@3.775.0",
"@aws-sdk/util-endpoints@3.782.0",
- "@smithy/core",
+ "@smithy/core@3.2.0",
"@smithy/protocol-http@5.1.0",
"@smithy/types@4.2.0",
"tslib"
@@ -742,53 +967,65 @@
"integrity": "sha512-IeNg+3jNWT37J45opi5Jx89hGF0lOnZjiNwlMp3rKq7PlOqy8kWq5J1Gxk0W3tIkPpuf68CtBs/QFrRXWOjsZw==",
"dependencies": [
"@aws-sdk/core@3.796.0",
- "@aws-sdk/types",
+ "@aws-sdk/types@3.775.0",
"@aws-sdk/util-endpoints@3.787.0",
- "@smithy/core",
+ "@smithy/core@3.2.0",
"@smithy/protocol-http@5.1.0",
"@smithy/types@4.2.0",
"tslib"
]
},
+ "@aws-sdk/middleware-user-agent@3.821.0": {
+ "integrity": "sha512-rw8q3TxygMg3VrofN04QyWVCCyGwz3bVthYmBZZseENPWG3Krz1OCKcyqjkTcAxMQlEywOske+GIiOasGKnJ3w==",
+ "dependencies": [
+ "@aws-sdk/core@3.821.0",
+ "@aws-sdk/types@3.821.0",
+ "@aws-sdk/util-endpoints@3.821.0",
+ "@smithy/core@3.5.1",
+ "@smithy/protocol-http@5.1.2",
+ "@smithy/types@4.3.1",
+ "tslib"
+ ]
+ },
"@aws-sdk/nested-clients@3.782.0": {
"integrity": "sha512-QOYC8q7luzHFXrP0xYAqBctoPkynjfV0r9dqntFu4/IWMTyC1vlo1UTxFAjIPyclYw92XJyEkVCVg9v/nQnsUA==",
"dependencies": [
"@aws-crypto/sha256-browser",
"@aws-crypto/sha256-js",
"@aws-sdk/core@3.775.0",
- "@aws-sdk/middleware-host-header",
- "@aws-sdk/middleware-logger",
- "@aws-sdk/middleware-recursion-detection",
+ "@aws-sdk/middleware-host-header@3.775.0",
+ "@aws-sdk/middleware-logger@3.775.0",
+ "@aws-sdk/middleware-recursion-detection@3.775.0",
"@aws-sdk/middleware-user-agent@3.782.0",
- "@aws-sdk/region-config-resolver",
- "@aws-sdk/types",
+ "@aws-sdk/region-config-resolver@3.775.0",
+ "@aws-sdk/types@3.775.0",
"@aws-sdk/util-endpoints@3.782.0",
- "@aws-sdk/util-user-agent-browser",
+ "@aws-sdk/util-user-agent-browser@3.775.0",
"@aws-sdk/util-user-agent-node@3.782.0",
- "@smithy/config-resolver",
- "@smithy/core",
+ "@smithy/config-resolver@4.1.0",
+ "@smithy/core@3.2.0",
"@smithy/fetch-http-handler@5.0.2",
- "@smithy/hash-node",
- "@smithy/invalid-dependency",
- "@smithy/middleware-content-length",
- "@smithy/middleware-endpoint",
- "@smithy/middleware-retry",
- "@smithy/middleware-serde",
- "@smithy/middleware-stack",
- "@smithy/node-config-provider",
- "@smithy/node-http-handler",
+ "@smithy/hash-node@4.0.2",
+ "@smithy/invalid-dependency@4.0.2",
+ "@smithy/middleware-content-length@4.0.2",
+ "@smithy/middleware-endpoint@4.1.0",
+ "@smithy/middleware-retry@4.1.0",
+ "@smithy/middleware-serde@4.0.3",
+ "@smithy/middleware-stack@4.0.2",
+ "@smithy/node-config-provider@4.0.2",
+ "@smithy/node-http-handler@4.0.4",
"@smithy/protocol-http@5.1.0",
- "@smithy/smithy-client",
+ "@smithy/smithy-client@4.2.0",
"@smithy/types@4.2.0",
- "@smithy/url-parser",
+ "@smithy/url-parser@4.0.2",
"@smithy/util-base64",
"@smithy/util-body-length-browser",
"@smithy/util-body-length-node",
- "@smithy/util-defaults-mode-browser",
- "@smithy/util-defaults-mode-node",
- "@smithy/util-endpoints",
- "@smithy/util-middleware",
- "@smithy/util-retry",
+ "@smithy/util-defaults-mode-browser@4.0.8",
+ "@smithy/util-defaults-mode-node@4.0.8",
+ "@smithy/util-endpoints@3.0.2",
+ "@smithy/util-middleware@4.0.2",
+ "@smithy/util-retry@4.0.2",
"@smithy/util-utf8@4.0.0",
"tslib"
]
@@ -799,39 +1036,82 @@
"@aws-crypto/sha256-browser",
"@aws-crypto/sha256-js",
"@aws-sdk/core@3.796.0",
- "@aws-sdk/middleware-host-header",
- "@aws-sdk/middleware-logger",
- "@aws-sdk/middleware-recursion-detection",
+ "@aws-sdk/middleware-host-header@3.775.0",
+ "@aws-sdk/middleware-logger@3.775.0",
+ "@aws-sdk/middleware-recursion-detection@3.775.0",
"@aws-sdk/middleware-user-agent@3.796.0",
- "@aws-sdk/region-config-resolver",
- "@aws-sdk/types",
+ "@aws-sdk/region-config-resolver@3.775.0",
+ "@aws-sdk/types@3.775.0",
"@aws-sdk/util-endpoints@3.787.0",
- "@aws-sdk/util-user-agent-browser",
+ "@aws-sdk/util-user-agent-browser@3.775.0",
"@aws-sdk/util-user-agent-node@3.796.0",
- "@smithy/config-resolver",
- "@smithy/core",
+ "@smithy/config-resolver@4.1.0",
+ "@smithy/core@3.2.0",
"@smithy/fetch-http-handler@5.0.2",
- "@smithy/hash-node",
- "@smithy/invalid-dependency",
- "@smithy/middleware-content-length",
- "@smithy/middleware-endpoint",
- "@smithy/middleware-retry",
- "@smithy/middleware-serde",
- "@smithy/middleware-stack",
- "@smithy/node-config-provider",
- "@smithy/node-http-handler",
+ "@smithy/hash-node@4.0.2",
+ "@smithy/invalid-dependency@4.0.2",
+ "@smithy/middleware-content-length@4.0.2",
+ "@smithy/middleware-endpoint@4.1.0",
+ "@smithy/middleware-retry@4.1.0",
+ "@smithy/middleware-serde@4.0.3",
+ "@smithy/middleware-stack@4.0.2",
+ "@smithy/node-config-provider@4.0.2",
+ "@smithy/node-http-handler@4.0.4",
"@smithy/protocol-http@5.1.0",
- "@smithy/smithy-client",
+ "@smithy/smithy-client@4.2.0",
"@smithy/types@4.2.0",
- "@smithy/url-parser",
+ "@smithy/url-parser@4.0.2",
"@smithy/util-base64",
"@smithy/util-body-length-browser",
"@smithy/util-body-length-node",
- "@smithy/util-defaults-mode-browser",
- "@smithy/util-defaults-mode-node",
- "@smithy/util-endpoints",
- "@smithy/util-middleware",
- "@smithy/util-retry",
+ "@smithy/util-defaults-mode-browser@4.0.8",
+ "@smithy/util-defaults-mode-node@4.0.8",
+ "@smithy/util-endpoints@3.0.2",
+ "@smithy/util-middleware@4.0.2",
+ "@smithy/util-retry@4.0.2",
+ "@smithy/util-utf8@4.0.0",
+ "tslib"
+ ]
+ },
+ "@aws-sdk/nested-clients@3.821.0": {
+ "integrity": "sha512-2IuHcUsWw44ftSEDYU4dvktTEqgyDvkOcfpoGC/UmT4Qo6TVCP3U5tWEGpNK9nN+7nLvekruxxG/jaMt5/oWVw==",
+ "dependencies": [
+ "@aws-crypto/sha256-browser",
+ "@aws-crypto/sha256-js",
+ "@aws-sdk/core@3.821.0",
+ "@aws-sdk/middleware-host-header@3.821.0",
+ "@aws-sdk/middleware-logger@3.821.0",
+ "@aws-sdk/middleware-recursion-detection@3.821.0",
+ "@aws-sdk/middleware-user-agent@3.821.0",
+ "@aws-sdk/region-config-resolver@3.821.0",
+ "@aws-sdk/types@3.821.0",
+ "@aws-sdk/util-endpoints@3.821.0",
+ "@aws-sdk/util-user-agent-browser@3.821.0",
+ "@aws-sdk/util-user-agent-node@3.821.0",
+ "@smithy/config-resolver@4.1.4",
+ "@smithy/core@3.5.1",
+ "@smithy/fetch-http-handler@5.0.4",
+ "@smithy/hash-node@4.0.4",
+ "@smithy/invalid-dependency@4.0.4",
+ "@smithy/middleware-content-length@4.0.4",
+ "@smithy/middleware-endpoint@4.1.9",
+ "@smithy/middleware-retry@4.1.10",
+ "@smithy/middleware-serde@4.0.8",
+ "@smithy/middleware-stack@4.0.4",
+ "@smithy/node-config-provider@4.1.3",
+ "@smithy/node-http-handler@4.0.6",
+ "@smithy/protocol-http@5.1.2",
+ "@smithy/smithy-client@4.4.1",
+ "@smithy/types@4.3.1",
+ "@smithy/url-parser@4.0.4",
+ "@smithy/util-base64",
+ "@smithy/util-body-length-browser",
+ "@smithy/util-body-length-node",
+ "@smithy/util-defaults-mode-browser@4.0.17",
+ "@smithy/util-defaults-mode-node@4.0.17",
+ "@smithy/util-endpoints@3.0.6",
+ "@smithy/util-middleware@4.0.4",
+ "@smithy/util-retry@4.0.5",
"@smithy/util-utf8@4.0.0",
"tslib"
]
@@ -839,11 +1119,22 @@
"@aws-sdk/region-config-resolver@3.775.0": {
"integrity": "sha512-40iH3LJjrQS3LKUJAl7Wj0bln7RFPEvUYKFxtP8a+oKFDO0F65F52xZxIJbPn6sHkxWDAnZlGgdjZXM3p2g5wQ==",
"dependencies": [
- "@aws-sdk/types",
- "@smithy/node-config-provider",
+ "@aws-sdk/types@3.775.0",
+ "@smithy/node-config-provider@4.0.2",
"@smithy/types@4.2.0",
"@smithy/util-config-provider",
- "@smithy/util-middleware",
+ "@smithy/util-middleware@4.0.2",
+ "tslib"
+ ]
+ },
+ "@aws-sdk/region-config-resolver@3.821.0": {
+ "integrity": "sha512-t8og+lRCIIy5nlId0bScNpCkif8sc0LhmtaKsbm0ZPm3sCa/WhCbSZibjbZ28FNjVCV+p0D9RYZx0VDDbtWyjw==",
+ "dependencies": [
+ "@aws-sdk/types@3.821.0",
+ "@smithy/node-config-provider@4.1.3",
+ "@smithy/types@4.3.1",
+ "@smithy/util-config-provider",
+ "@smithy/util-middleware@4.0.4",
"tslib"
]
},
@@ -851,7 +1142,7 @@
"integrity": "sha512-cnGk8GDfTMJ8p7+qSk92QlIk2bmTmFJqhYxcXZ9PysjZtx0xmfCMxnG3Hjy1oU2mt5boPCVSOptqtWixayM17g==",
"dependencies": [
"@aws-sdk/middleware-sdk-s3@3.775.0",
- "@aws-sdk/types",
+ "@aws-sdk/types@3.775.0",
"@smithy/protocol-http@5.1.0",
"@smithy/signature-v4@5.0.2",
"@smithy/types@4.2.0",
@@ -862,7 +1153,7 @@
"integrity": "sha512-JAOLdvazTc9HlTFslSrIOrKRMuOruuM3FeGw0hyfLP/RIbjd9bqe/xLIzDSJr3wpCpJs0sXoofwJgXtgTipvjA==",
"dependencies": [
"@aws-sdk/middleware-sdk-s3@3.796.0",
- "@aws-sdk/types",
+ "@aws-sdk/types@3.775.0",
"@smithy/protocol-http@5.1.0",
"@smithy/signature-v4@5.1.0",
"@smithy/types@4.2.0",
@@ -873,9 +1164,9 @@
"integrity": "sha512-4tPuk/3+THPrzKaXW4jE2R67UyGwHLFizZ47pcjJWbhb78IIJAy94vbeqEQ+veS84KF5TXcU7g5jGTXC0D70Wg==",
"dependencies": [
"@aws-sdk/nested-clients@3.782.0",
- "@aws-sdk/types",
- "@smithy/property-provider",
- "@smithy/shared-ini-file-loader",
+ "@aws-sdk/types@3.775.0",
+ "@smithy/property-provider@4.0.2",
+ "@smithy/shared-ini-file-loader@4.0.2",
"@smithy/types@4.2.0",
"tslib"
]
@@ -884,13 +1175,25 @@
"integrity": "sha512-TLFkP4BBdkH2zCXhG3JjaYrRft25MMZ+6/YDz1C/ikq2Zk8krUbVoSmhtYMVz10JtxAPiQ++w0vI/qbz2JSDXg==",
"dependencies": [
"@aws-sdk/nested-clients@3.797.0",
- "@aws-sdk/types",
- "@smithy/property-provider",
- "@smithy/shared-ini-file-loader",
+ "@aws-sdk/types@3.775.0",
+ "@smithy/property-provider@4.0.2",
+ "@smithy/shared-ini-file-loader@4.0.2",
"@smithy/types@4.2.0",
"tslib"
]
},
+ "@aws-sdk/token-providers@3.821.0": {
+ "integrity": "sha512-qJ7wgKhdxGbPg718zWXbCYKDuSWZNU3TSw64hPRW6FtbZrIyZxObpiTKC6DKwfsVoZZhHEoP/imGykN1OdOTJA==",
+ "dependencies": [
+ "@aws-sdk/core@3.821.0",
+ "@aws-sdk/nested-clients@3.821.0",
+ "@aws-sdk/types@3.821.0",
+ "@smithy/property-provider@4.0.4",
+ "@smithy/shared-ini-file-loader@4.0.4",
+ "@smithy/types@4.3.1",
+ "tslib"
+ ]
+ },
"@aws-sdk/types@3.775.0": {
"integrity": "sha512-ZoGKwa4C9fC9Av6bdfqcW6Ix5ot05F/S4VxWR2nHuMv7hzfmAjTOcUiWT7UR4hM/U0whf84VhDtXN/DWAk52KA==",
"dependencies": [
@@ -898,6 +1201,13 @@
"tslib"
]
},
+ "@aws-sdk/types@3.821.0": {
+ "integrity": "sha512-Znroqdai1a90TlxGaJ+FK1lwC0fHpo97Xjsp5UKGR5JODYm7f9+/fF17ebO1KdoBr/Rm0UIFiF5VmI8ts9F1eA==",
+ "dependencies": [
+ "@smithy/types@4.3.1",
+ "tslib"
+ ]
+ },
"@aws-sdk/util-arn-parser@3.723.0": {
"integrity": "sha512-ZhEfvUwNliOQROcAk34WJWVYTlTa4694kSVhDSjW6lE1bMataPnIN8A0ycukEzBXmd8ZSoBcQLn6lKGl7XIJ5w==",
"dependencies": [
@@ -907,18 +1217,27 @@
"@aws-sdk/util-endpoints@3.782.0": {
"integrity": "sha512-/RJOAO7o7HI6lEa4ASbFFLHGU9iPK876BhsVfnl54MvApPVYWQ9sHO0anOUim2S5lQTwd/6ghuH3rFYSq/+rdw==",
"dependencies": [
- "@aws-sdk/types",
+ "@aws-sdk/types@3.775.0",
"@smithy/types@4.2.0",
- "@smithy/util-endpoints",
+ "@smithy/util-endpoints@3.0.2",
"tslib"
]
},
"@aws-sdk/util-endpoints@3.787.0": {
"integrity": "sha512-fd3zkiOkwnbdbN0Xp9TsP5SWrmv0SpT70YEdbb8wAj2DWQwiCmFszaSs+YCvhoCdmlR3Wl9Spu0pGpSAGKeYvQ==",
"dependencies": [
- "@aws-sdk/types",
+ "@aws-sdk/types@3.775.0",
"@smithy/types@4.2.0",
- "@smithy/util-endpoints",
+ "@smithy/util-endpoints@3.0.2",
+ "tslib"
+ ]
+ },
+ "@aws-sdk/util-endpoints@3.821.0": {
+ "integrity": "sha512-Uknt/zUZnLE76zaAAPEayOeF5/4IZ2puTFXvcSCWHsi9m3tqbb9UozlnlVqvCZLCRWfQryZQoG2W4XSS3qgk5A==",
+ "dependencies": [
+ "@aws-sdk/types@3.821.0",
+ "@smithy/types@4.3.1",
+ "@smithy/util-endpoints@3.0.6",
"tslib"
]
},
@@ -931,18 +1250,27 @@
"@aws-sdk/util-user-agent-browser@3.775.0": {
"integrity": "sha512-txw2wkiJmZKVdDbscK7VBK+u+TJnRtlUjRTLei+elZg2ADhpQxfVAQl436FUeIv6AhB/oRHW6/K/EAGXUSWi0A==",
"dependencies": [
- "@aws-sdk/types",
+ "@aws-sdk/types@3.775.0",
"@smithy/types@4.2.0",
"bowser",
"tslib"
]
},
+ "@aws-sdk/util-user-agent-browser@3.821.0": {
+ "integrity": "sha512-irWZHyM0Jr1xhC+38OuZ7JB6OXMLPZlj48thElpsO1ZSLRkLZx5+I7VV6k3sp2yZ7BYbKz/G2ojSv4wdm7XTLw==",
+ "dependencies": [
+ "@aws-sdk/types@3.821.0",
+ "@smithy/types@4.3.1",
+ "bowser",
+ "tslib"
+ ]
+ },
"@aws-sdk/util-user-agent-node@3.782.0": {
"integrity": "sha512-dMFkUBgh2Bxuw8fYZQoH/u3H4afQ12VSkzEi//qFiDTwbKYq+u+RYjc8GLDM6JSK1BShMu5AVR7HD4ap1TYUnA==",
"dependencies": [
"@aws-sdk/middleware-user-agent@3.782.0",
- "@aws-sdk/types",
- "@smithy/node-config-provider",
+ "@aws-sdk/types@3.775.0",
+ "@smithy/node-config-provider@4.0.2",
"@smithy/types@4.2.0",
"tslib"
]
@@ -951,12 +1279,22 @@
"integrity": "sha512-9fQpNcHgVFitf1tbTT8V1xGRoRHSmOAWjrhevo6Tc0WoINMAKz+4JNqfVGWRE5Tmtpq0oHKo1RmvxXQQtJYciA==",
"dependencies": [
"@aws-sdk/middleware-user-agent@3.796.0",
- "@aws-sdk/types",
- "@smithy/node-config-provider",
+ "@aws-sdk/types@3.775.0",
+ "@smithy/node-config-provider@4.0.2",
"@smithy/types@4.2.0",
"tslib"
]
},
+ "@aws-sdk/util-user-agent-node@3.821.0": {
+ "integrity": "sha512-YwMXc9EvuzJgnLBTyiQly2juPujXwDgcMHB0iSN92tHe7Dd1jJ1feBmTgdClaaqCeHFUaFpw+3JU/ZUJ6LjR+A==",
+ "dependencies": [
+ "@aws-sdk/middleware-user-agent@3.821.0",
+ "@aws-sdk/types@3.821.0",
+ "@smithy/node-config-provider@4.1.3",
+ "@smithy/types@4.3.1",
+ "tslib"
+ ]
+ },
"@aws-sdk/xml-builder@3.775.0": {
"integrity": "sha512-b9NGO6FKJeLGYnV7Z1yvcP1TNU4dkD5jNsLWOF1/sygZoASaQhNOlaiJ/1OH331YQ1R1oWk38nBb0frsYkDsOQ==",
"dependencies": [
@@ -1013,6 +1351,13 @@
"tslib"
]
},
+ "@smithy/abort-controller@4.0.4": {
+ "integrity": "sha512-gJnEjZMvigPDQWHrW3oPrFhQtkrgqBkyjj3pCIdF3A5M6vsZODG93KNlfJprv6bp4245bdT32fsHK4kkH3KYDA==",
+ "dependencies": [
+ "@smithy/types@4.3.1",
+ "tslib"
+ ]
+ },
"@smithy/chunked-blob-reader-native@4.0.0": {
"integrity": "sha512-R9wM2yPmfEMsUmlMlIgSzOyICs0x9uu7UTHoccMyt7BWw8shcGM8HqB355+BZCPBcySvbTYMs62EgEQkNxz2ig==",
"dependencies": [
@@ -1029,22 +1374,46 @@
"@smithy/config-resolver@4.1.0": {
"integrity": "sha512-8smPlwhga22pwl23fM5ew4T9vfLUCeFXlcqNOCD5M5h8VmNPNUE9j6bQSuRXpDSV11L/E/SwEBQuW8hr6+nS1A==",
"dependencies": [
- "@smithy/node-config-provider",
+ "@smithy/node-config-provider@4.0.2",
"@smithy/types@4.2.0",
"@smithy/util-config-provider",
- "@smithy/util-middleware",
+ "@smithy/util-middleware@4.0.2",
+ "tslib"
+ ]
+ },
+ "@smithy/config-resolver@4.1.4": {
+ "integrity": "sha512-prmU+rDddxHOH0oNcwemL+SwnzcG65sBF2yXRO7aeXIn/xTlq2pX7JLVbkBnVLowHLg4/OL4+jBmv9hVrVGS+w==",
+ "dependencies": [
+ "@smithy/node-config-provider@4.1.3",
+ "@smithy/types@4.3.1",
+ "@smithy/util-config-provider",
+ "@smithy/util-middleware@4.0.4",
"tslib"
]
},
"@smithy/core@3.2.0": {
"integrity": "sha512-k17bgQhVZ7YmUvA8at4af1TDpl0NDMBuBKJl8Yg0nrefwmValU+CnA5l/AriVdQNthU/33H3nK71HrLgqOPr1Q==",
"dependencies": [
- "@smithy/middleware-serde",
+ "@smithy/middleware-serde@4.0.3",
"@smithy/protocol-http@5.1.0",
"@smithy/types@4.2.0",
"@smithy/util-body-length-browser",
- "@smithy/util-middleware",
- "@smithy/util-stream",
+ "@smithy/util-middleware@4.0.2",
+ "@smithy/util-stream@4.2.0",
+ "@smithy/util-utf8@4.0.0",
+ "tslib"
+ ]
+ },
+ "@smithy/core@3.5.1": {
+ "integrity": "sha512-xSw7bZEFKwOKrm/iv8e2BLt2ur98YZdrRD6nII8ditQeUsY2Q1JmIQ0rpILOhaLKYxxG2ivnoOpokzr9qLyDWA==",
+ "dependencies": [
+ "@smithy/middleware-serde@4.0.8",
+ "@smithy/protocol-http@5.1.2",
+ "@smithy/types@4.3.1",
+ "@smithy/util-base64",
+ "@smithy/util-body-length-browser",
+ "@smithy/util-middleware@4.0.4",
+ "@smithy/util-stream@4.2.2",
"@smithy/util-utf8@4.0.0",
"tslib"
]
@@ -1052,10 +1421,20 @@
"@smithy/credential-provider-imds@4.0.2": {
"integrity": "sha512-32lVig6jCaWBHnY+OEQ6e6Vnt5vDHaLiydGrwYMW9tPqO688hPGTYRamYJ1EptxEC2rAwJrHWmPoKRBl4iTa8w==",
"dependencies": [
- "@smithy/node-config-provider",
- "@smithy/property-provider",
+ "@smithy/node-config-provider@4.0.2",
+ "@smithy/property-provider@4.0.2",
"@smithy/types@4.2.0",
- "@smithy/url-parser",
+ "@smithy/url-parser@4.0.2",
+ "tslib"
+ ]
+ },
+ "@smithy/credential-provider-imds@4.0.6": {
+ "integrity": "sha512-hKMWcANhUiNbCJouYkZ9V3+/Qf9pteR1dnwgdyzR09R4ODEYx8BbUysHwRSyex4rZ9zapddZhLFTnT4ZijR4pw==",
+ "dependencies": [
+ "@smithy/node-config-provider@4.1.3",
+ "@smithy/property-provider@4.0.4",
+ "@smithy/types@4.3.1",
+ "@smithy/url-parser@4.0.4",
"tslib"
]
},
@@ -1137,6 +1516,15 @@
"tslib"
]
},
+ "@smithy/hash-node@4.0.4": {
+ "integrity": "sha512-qnbTPUhCVnCgBp4z4BUJUhOEkVwxiEi1cyFM+Zj6o+aY8OFGxUQleKWq8ltgp3dujuhXojIvJWdoqpm6dVO3lQ==",
+ "dependencies": [
+ "@smithy/types@4.3.1",
+ "@smithy/util-buffer-from@4.0.0",
+ "@smithy/util-utf8@4.0.0",
+ "tslib"
+ ]
+ },
"@smithy/hash-stream-node@4.0.2": {
"integrity": "sha512-POWDuTznzbIwlEXEvvXoPMS10y0WKXK790soe57tFRfvf4zBHyzE529HpZMqmDdwG9MfFflnyzndUQ8j78ZdSg==",
"dependencies": [
@@ -1152,6 +1540,13 @@
"tslib"
]
},
+ "@smithy/invalid-dependency@4.0.4": {
+ "integrity": "sha512-bNYMi7WKTJHu0gn26wg8OscncTt1t2b8KcsZxvOv56XA6cyXtOAAAaNP7+m45xfppXfOatXF3Sb1MNsLUgVLTw==",
+ "dependencies": [
+ "@smithy/types@4.3.1",
+ "tslib"
+ ]
+ },
"@smithy/is-array-buffer@2.2.0": {
"integrity": "sha512-GGP3O9QFD24uGeAXYUjwSTXARoqpZykHadOmA8G5vfJPK0/DC67qa//0qvqrJzL1xc8WQWX7/yc7fwudjPHPhA==",
"dependencies": [
@@ -1180,29 +1575,64 @@
"tslib"
]
},
+ "@smithy/middleware-content-length@4.0.4": {
+ "integrity": "sha512-F7gDyfI2BB1Kc+4M6rpuOLne5LOcEknH1n6UQB69qv+HucXBR1rkzXBnQTB2q46sFy1PM/zuSJOB532yc8bg3w==",
+ "dependencies": [
+ "@smithy/protocol-http@5.1.2",
+ "@smithy/types@4.3.1",
+ "tslib"
+ ]
+ },
"@smithy/middleware-endpoint@4.1.0": {
"integrity": "sha512-xhLimgNCbCzsUppRTGXWkZywksuTThxaIB0HwbpsVLY5sceac4e1TZ/WKYqufQLaUy+gUSJGNdwD2jo3cXL0iA==",
"dependencies": [
- "@smithy/core",
- "@smithy/middleware-serde",
- "@smithy/node-config-provider",
- "@smithy/shared-ini-file-loader",
+ "@smithy/core@3.2.0",
+ "@smithy/middleware-serde@4.0.3",
+ "@smithy/node-config-provider@4.0.2",
+ "@smithy/shared-ini-file-loader@4.0.2",
"@smithy/types@4.2.0",
- "@smithy/url-parser",
- "@smithy/util-middleware",
+ "@smithy/url-parser@4.0.2",
+ "@smithy/util-middleware@4.0.2",
+ "tslib"
+ ]
+ },
+ "@smithy/middleware-endpoint@4.1.9": {
+ "integrity": "sha512-AjDgX4UjORLltD/LZCBQTwjQqEfyrx/GeDTHcYLzIgf87pIT70tMWnN87NQpJru1K4ITirY2htSOxNECZJCBOg==",
+ "dependencies": [
+ "@smithy/core@3.5.1",
+ "@smithy/middleware-serde@4.0.8",
+ "@smithy/node-config-provider@4.1.3",
+ "@smithy/shared-ini-file-loader@4.0.4",
+ "@smithy/types@4.3.1",
+ "@smithy/url-parser@4.0.4",
+ "@smithy/util-middleware@4.0.4",
"tslib"
]
},
"@smithy/middleware-retry@4.1.0": {
"integrity": "sha512-2zAagd1s6hAaI/ap6SXi5T3dDwBOczOMCSkkYzktqN1+tzbk1GAsHNAdo/1uzxz3Ky02jvZQwbi/vmDA6z4Oyg==",
"dependencies": [
- "@smithy/node-config-provider",
+ "@smithy/node-config-provider@4.0.2",
"@smithy/protocol-http@5.1.0",
- "@smithy/service-error-classification",
- "@smithy/smithy-client",
+ "@smithy/service-error-classification@4.0.2",
+ "@smithy/smithy-client@4.2.0",
"@smithy/types@4.2.0",
- "@smithy/util-middleware",
- "@smithy/util-retry",
+ "@smithy/util-middleware@4.0.2",
+ "@smithy/util-retry@4.0.2",
+ "tslib",
+ "uuid"
+ ]
+ },
+ "@smithy/middleware-retry@4.1.10": {
+ "integrity": "sha512-RyhcA3sZIIvAo6r48b2Nx2qfg0OnyohlaV0fw415xrQyx5HQ2bvHl9vs/WBiDXIP49mCfws5wX4308c9Pi/isw==",
+ "dependencies": [
+ "@smithy/node-config-provider@4.1.3",
+ "@smithy/protocol-http@5.1.2",
+ "@smithy/service-error-classification@4.0.5",
+ "@smithy/smithy-client@4.4.1",
+ "@smithy/types@4.3.1",
+ "@smithy/util-middleware@4.0.4",
+ "@smithy/util-retry@4.0.5",
"tslib",
"uuid"
]
@@ -1214,6 +1644,14 @@
"tslib"
]
},
+ "@smithy/middleware-serde@4.0.8": {
+ "integrity": "sha512-iSSl7HJoJaGyMIoNn2B7czghOVwJ9nD7TMvLhMWeSB5vt0TnEYyRRqPJu/TqW76WScaNvYYB8nRoiBHR9S1Ddw==",
+ "dependencies": [
+ "@smithy/protocol-http@5.1.2",
+ "@smithy/types@4.3.1",
+ "tslib"
+ ]
+ },
"@smithy/middleware-stack@4.0.2": {
"integrity": "sha512-eSPVcuJJGVYrFYu2hEq8g8WWdJav3sdrI4o2c6z/rjnYDd3xH9j9E7deZQCzFn4QvGPouLngH3dQ+QVTxv5bOQ==",
"dependencies": [
@@ -1221,25 +1659,51 @@
"tslib"
]
},
+ "@smithy/middleware-stack@4.0.4": {
+ "integrity": "sha512-kagK5ggDrBUCCzI93ft6DjteNSfY8Ulr83UtySog/h09lTIOAJ/xUSObutanlPT0nhoHAkpmW9V5K8oPyLh+QA==",
+ "dependencies": [
+ "@smithy/types@4.3.1",
+ "tslib"
+ ]
+ },
"@smithy/node-config-provider@4.0.2": {
"integrity": "sha512-WgCkILRZfJwJ4Da92a6t3ozN/zcvYyJGUTmfGbgS/FkCcoCjl7G4FJaCDN1ySdvLvemnQeo25FdkyMSTSwulsw==",
"dependencies": [
- "@smithy/property-provider",
- "@smithy/shared-ini-file-loader",
+ "@smithy/property-provider@4.0.2",
+ "@smithy/shared-ini-file-loader@4.0.2",
"@smithy/types@4.2.0",
"tslib"
]
},
+ "@smithy/node-config-provider@4.1.3": {
+ "integrity": "sha512-HGHQr2s59qaU1lrVH6MbLlmOBxadtzTsoO4c+bF5asdgVik3I8o7JIOzoeqWc5MjVa+vD36/LWE0iXKpNqooRw==",
+ "dependencies": [
+ "@smithy/property-provider@4.0.4",
+ "@smithy/shared-ini-file-loader@4.0.4",
+ "@smithy/types@4.3.1",
+ "tslib"
+ ]
+ },
"@smithy/node-http-handler@4.0.4": {
"integrity": "sha512-/mdqabuAT3o/ihBGjL94PUbTSPSRJ0eeVTdgADzow0wRJ0rN4A27EOrtlK56MYiO1fDvlO3jVTCxQtQmK9dZ1g==",
"dependencies": [
- "@smithy/abort-controller",
+ "@smithy/abort-controller@4.0.2",
"@smithy/protocol-http@5.1.0",
"@smithy/querystring-builder@4.0.2",
"@smithy/types@4.2.0",
"tslib"
]
},
+ "@smithy/node-http-handler@4.0.6": {
+ "integrity": "sha512-NqbmSz7AW2rvw4kXhKGrYTiJVDHnMsFnX4i+/FzcZAfbOBauPYs2ekuECkSbtqaxETLLTu9Rl/ex6+I2BKErPA==",
+ "dependencies": [
+ "@smithy/abort-controller@4.0.4",
+ "@smithy/protocol-http@5.1.2",
+ "@smithy/querystring-builder@4.0.4",
+ "@smithy/types@4.3.1",
+ "tslib"
+ ]
+ },
"@smithy/property-provider@4.0.2": {
"integrity": "sha512-wNRoQC1uISOuNc2s4hkOYwYllmiyrvVXWMtq+TysNRVQaHm4yoafYQyjN/goYZS+QbYlPIbb/QRjaUZMuzwQ7A==",
"dependencies": [
@@ -1247,6 +1711,13 @@
"tslib"
]
},
+ "@smithy/property-provider@4.0.4": {
+ "integrity": "sha512-qHJ2sSgu4FqF4U/5UUp4DhXNmdTrgmoAai6oQiM+c5RZ/sbDwJ12qxB1M6FnP+Tn/ggkPZf9ccn4jqKSINaquw==",
+ "dependencies": [
+ "@smithy/types@4.3.1",
+ "tslib"
+ ]
+ },
"@smithy/protocol-http@5.1.0": {
"integrity": "sha512-KxAOL1nUNw2JTYrtviRRjEnykIDhxc84qMBzxvu1MUfQfHTuBlCG7PA6EdVwqpJjH7glw7FqQoFxUJSyBQgu7g==",
"dependencies": [
@@ -1284,12 +1755,25 @@
"tslib"
]
},
+ "@smithy/querystring-parser@4.0.4": {
+ "integrity": "sha512-6yZf53i/qB8gRHH/l2ZwUG5xgkPgQF15/KxH0DdXMDHjesA9MeZje/853ifkSY0x4m5S+dfDZ+c4x439PF0M2w==",
+ "dependencies": [
+ "@smithy/types@4.3.1",
+ "tslib"
+ ]
+ },
"@smithy/service-error-classification@4.0.2": {
"integrity": "sha512-LA86xeFpTKn270Hbkixqs5n73S+LVM0/VZco8dqd+JT75Dyx3Lcw/MraL7ybjmz786+160K8rPOmhsq0SocoJQ==",
"dependencies": [
"@smithy/types@4.2.0"
]
},
+ "@smithy/service-error-classification@4.0.5": {
+ "integrity": "sha512-LvcfhrnCBvCmTee81pRlh1F39yTS/+kYleVeLCwNtkY8wtGg8V/ca9rbZZvYIl8OjlMtL6KIjaiL/lgVqHD2nA==",
+ "dependencies": [
+ "@smithy/types@4.3.1"
+ ]
+ },
"@smithy/shared-ini-file-loader@4.0.2": {
"integrity": "sha512-J9/gTWBGVuFZ01oVA6vdb4DAjf1XbDhK6sLsu3OS9qmLrS6KB5ygpeHiM3miIbj1qgSJ96GYszXFWv6ErJ8QEw==",
"dependencies": [
@@ -1297,6 +1781,13 @@
"tslib"
]
},
+ "@smithy/shared-ini-file-loader@4.0.4": {
+ "integrity": "sha512-63X0260LoFBjrHifPDs+nM9tV0VMkOTl4JRMYNuKh/f5PauSjowTfvF3LogfkWdcPoxsA9UjqEOgjeYIbhb7Nw==",
+ "dependencies": [
+ "@smithy/types@4.3.1",
+ "tslib"
+ ]
+ },
"@smithy/signature-v4@5.0.2": {
"integrity": "sha512-Mz+mc7okA73Lyz8zQKJNyr7lIcHLiPYp0+oiqiMNc/t7/Kf2BENs5d63pEj7oPqdjaum6g0Fc8wC78dY1TgtXw==",
"dependencies": [
@@ -1304,7 +1795,7 @@
"@smithy/protocol-http@5.1.0",
"@smithy/types@4.2.0",
"@smithy/util-hex-encoding",
- "@smithy/util-middleware",
+ "@smithy/util-middleware@4.0.2",
"@smithy/util-uri-escape",
"@smithy/util-utf8@4.0.0",
"tslib"
@@ -1317,7 +1808,20 @@
"@smithy/protocol-http@5.1.0",
"@smithy/types@4.2.0",
"@smithy/util-hex-encoding",
- "@smithy/util-middleware",
+ "@smithy/util-middleware@4.0.2",
+ "@smithy/util-uri-escape",
+ "@smithy/util-utf8@4.0.0",
+ "tslib"
+ ]
+ },
+ "@smithy/signature-v4@5.1.2": {
+ "integrity": "sha512-d3+U/VpX7a60seHziWnVZOHuEgJlclufjkS6zhXvxcJgkJq4UWdH5eOBLzHRMx6gXjsdT9h6lfpmLzbrdupHgQ==",
+ "dependencies": [
+ "@smithy/is-array-buffer@4.0.0",
+ "@smithy/protocol-http@5.1.2",
+ "@smithy/types@4.3.1",
+ "@smithy/util-hex-encoding",
+ "@smithy/util-middleware@4.0.4",
"@smithy/util-uri-escape",
"@smithy/util-utf8@4.0.0",
"tslib"
@@ -1326,12 +1830,24 @@
"@smithy/smithy-client@4.2.0": {
"integrity": "sha512-Qs65/w30pWV7LSFAez9DKy0Koaoh3iHhpcpCCJ4waj/iqwsuSzJna2+vYwq46yBaqO5ZbP9TjUsATUNxrKeBdw==",
"dependencies": [
- "@smithy/core",
- "@smithy/middleware-endpoint",
- "@smithy/middleware-stack",
+ "@smithy/core@3.2.0",
+ "@smithy/middleware-endpoint@4.1.0",
+ "@smithy/middleware-stack@4.0.2",
"@smithy/protocol-http@5.1.0",
"@smithy/types@4.2.0",
- "@smithy/util-stream",
+ "@smithy/util-stream@4.2.0",
+ "tslib"
+ ]
+ },
+ "@smithy/smithy-client@4.4.1": {
+ "integrity": "sha512-XPbcHRfd0iwx8dY5XCBCGyI7uweMW0oezYezxXcG8ANgvZ5YPuC6Ylh+n0bTHpdU3SCMZOnhzgVklYz+p3fIhw==",
+ "dependencies": [
+ "@smithy/core@3.5.1",
+ "@smithy/middleware-endpoint@4.1.9",
+ "@smithy/middleware-stack@4.0.4",
+ "@smithy/protocol-http@5.1.2",
+ "@smithy/types@4.3.1",
+ "@smithy/util-stream@4.2.2",
"tslib"
]
},
@@ -1350,11 +1866,19 @@
"@smithy/url-parser@4.0.2": {
"integrity": "sha512-Bm8n3j2ScqnT+kJaClSVCMeiSenK6jVAzZCNewsYWuZtnBehEz4r2qP0riZySZVfzB+03XZHJeqfmJDkeeSLiQ==",
"dependencies": [
- "@smithy/querystring-parser",
+ "@smithy/querystring-parser@4.0.2",
"@smithy/types@4.2.0",
"tslib"
]
},
+ "@smithy/url-parser@4.0.4": {
+ "integrity": "sha512-eMkc144MuN7B0TDA4U2fKs+BqczVbk3W+qIvcoCY6D1JY3hnAdCuhCZODC+GAeaxj0p6Jroz4+XMUn3PCxQQeQ==",
+ "dependencies": [
+ "@smithy/querystring-parser@4.0.4",
+ "@smithy/types@4.3.1",
+ "tslib"
+ ]
+ },
"@smithy/util-base64@4.0.0": {
"integrity": "sha512-CvHfCmO2mchox9kjrtzoHkWHxjHZzaFojLc8quxXY7WAAMAg43nuxwv95tATVgQFNDwd4M9S1qFzj40Ul41Kmg==",
"dependencies": [
@@ -1395,24 +1919,46 @@
"tslib"
]
},
+ "@smithy/util-defaults-mode-browser@4.0.17": {
+ "integrity": "sha512-HXq5181qnXmIwB7VrwqwP8rsJybHMoYuJnNoXy4PROs2pfSI4sWDMASF2i+7Lo+u64Y6xowhegcdxczowgJtZg==",
+ "dependencies": [
+ "@smithy/property-provider@4.0.4",
+ "@smithy/smithy-client@4.4.1",
+ "@smithy/types@4.3.1",
+ "bowser",
+ "tslib"
+ ]
+ },
"@smithy/util-defaults-mode-browser@4.0.8": {
"integrity": "sha512-ZTypzBra+lI/LfTYZeop9UjoJhhGRTg3pxrNpfSTQLd3AJ37r2z4AXTKpq1rFXiiUIJsYyFgNJdjWRGP/cbBaQ==",
"dependencies": [
- "@smithy/property-provider",
- "@smithy/smithy-client",
+ "@smithy/property-provider@4.0.2",
+ "@smithy/smithy-client@4.2.0",
"@smithy/types@4.2.0",
"bowser",
"tslib"
]
},
+ "@smithy/util-defaults-mode-node@4.0.17": {
+ "integrity": "sha512-RfU2A5LjFhEHw4Nwl1GZNitK4AUWu5jGtigAUDoQtfDUvYHpQxcuLw2QGAdKDtKRflIiHSZ8wXBDR36H9R2Ang==",
+ "dependencies": [
+ "@smithy/config-resolver@4.1.4",
+ "@smithy/credential-provider-imds@4.0.6",
+ "@smithy/node-config-provider@4.1.3",
+ "@smithy/property-provider@4.0.4",
+ "@smithy/smithy-client@4.4.1",
+ "@smithy/types@4.3.1",
+ "tslib"
+ ]
+ },
"@smithy/util-defaults-mode-node@4.0.8": {
"integrity": "sha512-Rgk0Jc/UDfRTzVthye/k2dDsz5Xxs9LZaKCNPgJTRyoyBoeiNCnHsYGOyu1PKN+sDyPnJzMOz22JbwxzBp9NNA==",
"dependencies": [
- "@smithy/config-resolver",
- "@smithy/credential-provider-imds",
- "@smithy/node-config-provider",
- "@smithy/property-provider",
- "@smithy/smithy-client",
+ "@smithy/config-resolver@4.1.0",
+ "@smithy/credential-provider-imds@4.0.2",
+ "@smithy/node-config-provider@4.0.2",
+ "@smithy/property-provider@4.0.2",
+ "@smithy/smithy-client@4.2.0",
"@smithy/types@4.2.0",
"tslib"
]
@@ -1420,11 +1966,19 @@
"@smithy/util-endpoints@3.0.2": {
"integrity": "sha512-6QSutU5ZyrpNbnd51zRTL7goojlcnuOB55+F9VBD+j8JpRY50IGamsjlycrmpn8PQkmJucFW8A0LSfXj7jjtLQ==",
"dependencies": [
- "@smithy/node-config-provider",
+ "@smithy/node-config-provider@4.0.2",
"@smithy/types@4.2.0",
"tslib"
]
},
+ "@smithy/util-endpoints@3.0.6": {
+ "integrity": "sha512-YARl3tFL3WgPuLzljRUnrS2ngLiUtkwhQtj8PAL13XZSyUiNLQxwG3fBBq3QXFqGFUXepIN73pINp3y8c2nBmA==",
+ "dependencies": [
+ "@smithy/node-config-provider@4.1.3",
+ "@smithy/types@4.3.1",
+ "tslib"
+ ]
+ },
"@smithy/util-hex-encoding@4.0.0": {
"integrity": "sha512-Yk5mLhHtfIgW2W2WQZWSg5kuMZCVbvhFmC7rV4IO2QqnZdbEFPmQnCcGMAX2z/8Qj3B9hYYNjZOhWym+RwhePw==",
"dependencies": [
@@ -1438,19 +1992,34 @@
"tslib"
]
},
+ "@smithy/util-middleware@4.0.4": {
+ "integrity": "sha512-9MLKmkBmf4PRb0ONJikCbCwORACcil6gUWojwARCClT7RmLzF04hUR4WdRprIXal7XVyrddadYNfp2eF3nrvtQ==",
+ "dependencies": [
+ "@smithy/types@4.3.1",
+ "tslib"
+ ]
+ },
"@smithy/util-retry@4.0.2": {
"integrity": "sha512-Qryc+QG+7BCpvjloFLQrmlSd0RsVRHejRXd78jNO3+oREueCjwG1CCEH1vduw/ZkM1U9TztwIKVIi3+8MJScGg==",
"dependencies": [
- "@smithy/service-error-classification",
+ "@smithy/service-error-classification@4.0.2",
"@smithy/types@4.2.0",
"tslib"
]
},
+ "@smithy/util-retry@4.0.5": {
+ "integrity": "sha512-V7MSjVDTlEt/plmOFBn1762Dyu5uqMrV2Pl2X0dYk4XvWfdWJNe9Bs5Bzb56wkCuiWjSfClVMGcsuKrGj7S/yg==",
+ "dependencies": [
+ "@smithy/service-error-classification@4.0.5",
+ "@smithy/types@4.3.1",
+ "tslib"
+ ]
+ },
"@smithy/util-stream@4.2.0": {
"integrity": "sha512-Vj1TtwWnuWqdgQI6YTUF5hQ/0jmFiOYsc51CSMgj7QfyO+RF4EnT2HNjoviNlOOmgzgvf3f5yno+EiC4vrnaWQ==",
"dependencies": [
"@smithy/fetch-http-handler@5.0.2",
- "@smithy/node-http-handler",
+ "@smithy/node-http-handler@4.0.4",
"@smithy/types@4.2.0",
"@smithy/util-base64",
"@smithy/util-buffer-from@4.0.0",
@@ -1459,6 +2028,19 @@
"tslib"
]
},
+ "@smithy/util-stream@4.2.2": {
+ "integrity": "sha512-aI+GLi7MJoVxg24/3J1ipwLoYzgkB4kUfogZfnslcYlynj3xsQ0e7vk4TnTro9hhsS5PvX1mwmkRqqHQjwcU7w==",
+ "dependencies": [
+ "@smithy/fetch-http-handler@5.0.4",
+ "@smithy/node-http-handler@4.0.6",
+ "@smithy/types@4.3.1",
+ "@smithy/util-base64",
+ "@smithy/util-buffer-from@4.0.0",
+ "@smithy/util-hex-encoding",
+ "@smithy/util-utf8@4.0.0",
+ "tslib"
+ ]
+ },
"@smithy/util-uri-escape@4.0.0": {
"integrity": "sha512-77yfbCbQMtgtTylO9itEAdpPXSog3ZxMe09AEhm0dU0NLTalV70ghDZFR+Nfi1C60jnJoh/Re4090/DuZh2Omg==",
"dependencies": [
@@ -1482,7 +2064,7 @@
"@smithy/util-waiter@4.0.3": {
"integrity": "sha512-JtaY3FxmD+te+KSI2FJuEcfNC9T/DGGVf551babM7fAaXhjJUt7oSYurH1Devxd2+BOSUACCgt3buinx4UnmEA==",
"dependencies": [
- "@smithy/abort-controller",
+ "@smithy/abort-controller@4.0.2",
"@smithy/types@4.2.0",
"tslib"
]
@@ -1544,6 +2126,7 @@
"jsr:@std/testing@^1.0.12",
"npm:@aws-sdk/client-s3@^3.797.0",
"npm:@aws-sdk/client-sesv2@^3.782.0",
+ "npm:@aws-sdk/client-sns@^3.821.0",
"npm:@hono/zod-validator@0.5",
"npm:@smithy/fetch-http-handler@^5.0.4",
"npm:email-addresses@5",