diff --git a/packages/amplify/amplify/backend.ts b/packages/amplify/amplify/backend.ts index c9adfe9d..210e9830 100644 --- a/packages/amplify/amplify/backend.ts +++ b/packages/amplify/amplify/backend.ts @@ -52,6 +52,12 @@ const TelemetryBackendSecretsManagerMQTTCredentials = new secretsmanager.Secret( }, ); +const MLCorrelationMatrixSecrets = secretsmanager.Secret.fromSecretNameV2( + TelemetryBackendStack, + "MLCorrelationMatrixSecrets", + "MLCorrelationMatrixSecrets", +); + const TimescaleConnectionString = secretsmanager.Secret.fromSecretNameV2( TelemetryBackendStack, "TimescaleConnectionString", @@ -367,14 +373,24 @@ TelemetryECSTaskDefinition.addContainer("TheContainer", { TimescaleConnectionString, "DATABASE_USERNAME", ), + + LAP_CORRELATION_MATRIX_FUNCTION_NAME: ecs.Secret.fromSecretsManager( + MLCorrelationMatrixSecrets, + "LAP_CORRELATION_MATRIX_FUNCTION_NAME", + ), MQTT_PASSWORD: ecs.Secret.fromSecretsManager( TelemetryBackendSecretsManagerMQTTCredentials, "password", ), + MQTT_USERNAME: ecs.Secret.fromSecretsManager( TelemetryBackendSecretsManagerMQTTCredentials, "username", ), + PACKET_CORRELATION_MATRIX_FUNCTION_NAME: ecs.Secret.fromSecretsManager( + MLCorrelationMatrixSecrets, + "PACKET_CORRELATION_MATRIX_FUNCTION_NAME", + ), PRIVATE_KEY: ecs.Secret.fromSecretsManager( TelemetryBackendSecretsManagerPrivKey, ), @@ -395,6 +411,7 @@ TelemetryBackendSecretsManagerMQTTCredentials.grantRead( TelemetryECSTaskDefinition.taskRole, ); TimescaleConnectionString.grantRead(TelemetryECSTaskDefinition.taskRole); +MLCorrelationMatrixSecrets.grantRead(TelemetryECSTaskDefinition.taskRole); const TelemetryBackendVPCSecurityGroup = ec2.SecurityGroup.fromSecurityGroupId( TelemetryBackendStack, diff --git a/packages/client/.env.example b/packages/client/.env.example index 133a736a..4991ae47 100644 --- a/packages/client/.env.example +++ b/packages/client/.env.example @@ -1 +1,2 @@ -NEXT_PUBLIC_MAPSAPIKEY='' \ No newline at end of file +NEXT_PUBLIC_MAPSAPIKEY='' +SOCKET_URL=localhost:3001 diff --git a/packages/client/src/pages/api/getLapCorrelationMatrix.ts b/packages/client/src/pages/api/getLapCorrelationMatrix.ts index d0ba2c09..22a15553 100644 --- a/packages/client/src/pages/api/getLapCorrelationMatrix.ts +++ b/packages/client/src/pages/api/getLapCorrelationMatrix.ts @@ -1,18 +1,28 @@ import type { NextApiRequest, NextApiResponse } from "next"; -const API_ROUTE = process.env.GET_LAP_CORRELATION_MATRIX_URL; -if (!API_ROUTE) { - throw new Error("GET_LAP_CORRELATION_MATRIX_URL is not defined"); -} +import { prodURL } from "@shared/helios-types"; + +const BACKEND_ROUTE = `${prodURL}/ml/correlation-matrix/lap`; + export default async function handler( - req: NextApiRequest, + _req: NextApiRequest, res: NextApiResponse, ) { try { - const result = await fetch(API_ROUTE as string); + const result = await fetch(BACKEND_ROUTE); + + if (!result.ok) { + const errorData = await result.json().catch(() => ({})); + return res.status(result.status).json({ + error: errorData.error || "Failed to fetch correlation matrix data", + }); + } + const graph = await result.json(); res.status(200).json(graph); } catch (err) { - res.status(500).json({ error: "failed to load data" + err }); + res.status(500).json({ + error: `Failed to load data: ${err instanceof Error ? err.message : String(err)}`, + }); } } diff --git a/packages/client/src/pages/api/getPacketCorrelationMatrix.ts b/packages/client/src/pages/api/getPacketCorrelationMatrix.ts index 478f6410..ebf07fa5 100644 --- a/packages/client/src/pages/api/getPacketCorrelationMatrix.ts +++ b/packages/client/src/pages/api/getPacketCorrelationMatrix.ts @@ -1,18 +1,28 @@ import type { NextApiRequest, NextApiResponse } from "next"; -const API_ROUTE = process.env.GET_PACKET_CORRELATION_MATRIX_URL; -if (!API_ROUTE) { - throw new Error("GET_PACKET_CORRELATION_MATRIX_URL is not defined"); -} +import { prodURL } from "@shared/helios-types"; + +const BACKEND_ROUTE = `${prodURL}/ml/correlation-matrix/packet`; + export default async function handler( - req: NextApiRequest, + _req: NextApiRequest, res: NextApiResponse, ) { try { - const result = await fetch(API_ROUTE as string); + const result = await fetch(BACKEND_ROUTE); + + if (!result.ok) { + const errorData = await result.json().catch(() => ({})); + return res.status(result.status).json({ + error: errorData.error || "Failed to fetch correlation matrix data", + }); + } + const graph = await result.json(); res.status(200).json(graph); } catch (err) { - res.status(500).json({ error: "failed to load data" + err }); + res.status(500).json({ + error: `Failed to load data: ${err instanceof Error ? err.message : String(err)}`, + }); } } diff --git a/packages/server/.env.example b/packages/server/.env.example index 641cc63a..e7e198c6 100644 --- a/packages/server/.env.example +++ b/packages/server/.env.example @@ -30,3 +30,6 @@ DATABASE_PORT= ######################## LAP_POSITION_PASSWORD="changeme" + +GET_PACKET_CORRELATION_MATRIX_URL='https://myApiGatewayForPacketMatrix.lambda-url.region.on.aws/' +GET_LAP_CORRELATION_MATRIX_URL='https://myApiGatewayForLapMatrix.lambda-url.region.on.aws/' \ No newline at end of file diff --git a/packages/server/package.json b/packages/server/package.json index d242428e..88c76d9e 100644 --- a/packages/server/package.json +++ b/packages/server/package.json @@ -11,6 +11,7 @@ }, "dependencies": { "@aws-sdk/client-dynamodb": "^3.682.0", + "@aws-sdk/client-lambda": "^3.980.0", "@aws-sdk/lib-dynamodb": "^3.682.0", "@faker-js/faker": "^9.0.3", "@godaddy/terminus": "^4.12.1", @@ -25,6 +26,7 @@ "log4js": "^6.9.1", "module-alias": "^2.2.3", "mqtt": "^5.8.0", + "node-cache": "^5.1.2", "rimraf": "^5.0.5", "socket.io": "^4.7.5", "ts-node": "^10.9.2", @@ -39,6 +41,7 @@ "@types/eslint": "^9.6.0", "@types/express": "^4.17.21", "@types/node": "^20.14.10", + "@types/node-cache": "^4.1.3", "@types/prettier": "^3.0.0", "@types/sqlite3": "^3.1.11", "@typescript-eslint/eslint-plugin": "^7.4.0", diff --git a/packages/server/src/controllers/routeControllers/machineLearning.controller.ts b/packages/server/src/controllers/routeControllers/machineLearning.controller.ts new file mode 100644 index 00000000..4c48a2ec --- /dev/null +++ b/packages/server/src/controllers/routeControllers/machineLearning.controller.ts @@ -0,0 +1,368 @@ +import { type Request, type Response } from "express"; +import https from "https"; +import NodeCache from "node-cache"; + +import { createApplicationLogger } from "@/utils/logger"; + +import { InvokeCommand, LambdaClient } from "@aws-sdk/client-lambda"; +import { NodeHttpHandler } from "@smithy/node-http-handler"; + +const CACHE_KEY = { + LAP_CORRELATION_MATRIX: "lap_correlation_matrix", + PACKET_CORRELATION_MATRIX: "packet_correlation_matrix", +} as const; + +// # AWS Credentials (choose one method - see AWS_LAMBDA_SDK_SETUP.md) +// # Method 1: Environment variables (easiest for development) +// # AWS_ACCESS_KEY_ID=your-access-key-id +// # AWS_SECRET_ACCESS_KEY=your-secret-access-key + +// # Method 2: Use ~/.aws/credentials file (recommended for local dev) +// # Method 3: IAM role (automatic on EC2/ECS/Lambda - best for production) + +// Extract Lambda function names or ARNs from environment variables +// You can use either function names or full ARNs +// Leave as undefined if not set (validation happens at request time) +const PACKET_CORRELATION_MATRIX_FUNCTION = + process.env.PACKET_CORRELATION_MATRIX_FUNCTION_NAME; +const LAP_CORRELATION_MATRIX_FUNCTION = + process.env.LAP_CORRELATION_MATRIX_FUNCTION_NAME; + +// AWS Region for Lambda functions +const AWS_REGION = process.env.AWS_REGION ?? "ca-central-1"; + +// Cache instance with 1-hour TTL +const cache = new NodeCache({ + checkperiod: 600, // Check for expired keys every 10 minutes + stdTTL: 3600, // 1 hour default TTL + useClones: false, // Don't clone objects for better performance +}); + +// Initialize AWS Lambda client +// Credentials are automatically loaded from: +// 1. Environment variables (AWS_ACCESS_KEY_ID, AWS_SECRET_ACCESS_KEY) +// 2. IAM role (if running on EC2/ECS/Lambda) +// 3. AWS credentials file (~/.aws/credentials) + +// ⚠️ WARNING: SSL certificate validation is disabled in development mode only +// This fixes "unable to get local issuer certificate" errors on local machines +// NEVER disable SSL validation in production - it's a security risk! +const lambdaClient = new LambdaClient({ + maxAttempts: 3, // Automatic retries + region: AWS_REGION, + requestHandler: new NodeHttpHandler({ + httpsAgent: new https.Agent({ + // Disable SSL certificate validation ONLY in development + // In production, this will be true (SSL validation enabled) + rejectUnauthorized: process.env.NODE_ENV === "production", + }), + }), +}); + +/** + * Invoke Lambda function with error handling using AWS SDK + * @param functionName - Lambda function name or ARN + * @param logger - Logger instance + * @returns Parsed JSON response from Lambda + */ +async function invokeLambdaFunction( + functionName: string, + logger: ReturnType, +): Promise { + const startTime = Date.now(); + logger.info(`Invoking Lambda function: ${functionName}`); + + try { + const command = new InvokeCommand({ + FunctionName: functionName, + InvocationType: "RequestResponse", // Synchronous invocation + LogType: "Tail", // Include execution logs in response + }); + + const response = await lambdaClient.send(command); + const duration = Date.now() - startTime; + + // Check for Lambda function errors + if (response.FunctionError) { + const errorPayload = response.Payload + ? new TextDecoder().decode(response.Payload) + : "Unknown error"; + throw new Error( + `Lambda function error: ${response.FunctionError}. Payload: ${errorPayload}`, + ); + } + + // Parse the response payload + if (!response.Payload) { + throw new Error("Lambda function returned empty payload"); + } + + const payloadString = new TextDecoder().decode(response.Payload); + const lambdaResponse = JSON.parse(payloadString); + + // Lambda functions with Function URLs return a response with statusCode and body + // The body is a JSON string that needs to be parsed again + let data: unknown; + if (lambdaResponse.body) { + // Parse the body string to get the actual data + data = JSON.parse(lambdaResponse.body); + } else { + // Direct invocation without Function URL wrapper + data = lambdaResponse; + } + + logger.info( + `Lambda invocation successful, duration: ${duration}ms, status: ${response.StatusCode}`, + ); + + // Log execution details if available + if (response.LogResult) { + const logs = Buffer.from(response.LogResult, "base64").toString("utf-8"); + logger.debug(`Lambda execution logs: ${logs}`); + } + + return data; + } catch (error) { + const duration = Date.now() - startTime; + logger.error( + `Lambda invocation failed after ${duration}ms: ${error instanceof Error ? error.message : String(error)}`, + ); + throw error; + } +} + +/** + * GET /ml/correlation-matrix/packet + * Returns packet correlation matrix data (cached or from Lambda) + */ +export const getPacketCorrelationMatrix = async ( + request: Request, + response: Response, +) => { + const logger = createApplicationLogger( + "machineLearning.controller.ts", + request, + response, + ); + + logger.info(`ENTRY - ${request.method} ${request.url}`); + + try { + // Check cache first + const cachedData = cache.get(CACHE_KEY.PACKET_CORRELATION_MATRIX); + + if (cachedData !== undefined) { + const stats = cache.getStats(); + logger.info( + `Cache HIT for key: ${CACHE_KEY.PACKET_CORRELATION_MATRIX} (Total hits: ${stats.hits}, Total misses: ${stats.misses})`, + ); + logger.info(`EXIT - ${request.method} ${request.url} - ${200} (cached)`); + return response.status(200).json(cachedData); + } + + // Cache miss + const stats = cache.getStats(); + logger.info( + `Cache MISS for key: ${CACHE_KEY.PACKET_CORRELATION_MATRIX} (Total hits: ${stats.hits}, Total misses: ${stats.misses})`, + ); + + // Validate Lambda function is configured + if (!PACKET_CORRELATION_MATRIX_FUNCTION) { + logger.error( + "PACKET_CORRELATION_MATRIX_FUNCTION_NAME environment variable is not configured", + ); + return response.status(503).json({ + error: + "Lambda function not configured. Please set PACKET_CORRELATION_MATRIX_FUNCTION_NAME environment variable.", + }); + } + + // Invoke Lambda function + const data = await invokeLambdaFunction( + PACKET_CORRELATION_MATRIX_FUNCTION, + logger, + ); + + // Store in cache + cache.set(CACHE_KEY.PACKET_CORRELATION_MATRIX, data); + + logger.info( + `EXIT - ${request.method} ${request.url} - ${200} (from Lambda)`, + ); + return response.status(200).json(data); + } catch (error) { + logger.error( + `ERROR - ${request.method} ${request.url} - ${error instanceof Error ? error.message : String(error)}`, + ); + return response.status(503).json({ + error: + "Service temporarily unavailable. Unable to fetch correlation matrix data.", + }); + } +}; + +/** + * GET /ml/correlation-matrix/lap + * Returns lap correlation matrix data (cached or from Lambda) + */ +export const getLapCorrelationMatrix = async ( + request: Request, + response: Response, +) => { + const logger = createApplicationLogger( + "machineLearning.controller.ts", + request, + response, + ); + + logger.info(`ENTRY - ${request.method} ${request.url}`); + + try { + // Check cache first + const cachedData = cache.get(CACHE_KEY.LAP_CORRELATION_MATRIX); + + if (cachedData !== undefined) { + const stats = cache.getStats(); + logger.info( + `Cache HIT for key: ${CACHE_KEY.LAP_CORRELATION_MATRIX} (Total hits: ${stats.hits}, Total misses: ${stats.misses})`, + ); + logger.info(`EXIT - ${request.method} ${request.url} - ${200} (cached)`); + return response.status(200).json(cachedData); + } + + // Cache miss + const stats = cache.getStats(); + logger.info( + `Cache MISS for key: ${CACHE_KEY.LAP_CORRELATION_MATRIX} (Total hits: ${stats.hits}, Total misses: ${stats.misses})`, + ); + + // Validate Lambda function is configured + if (!LAP_CORRELATION_MATRIX_FUNCTION) { + logger.error( + "LAP_CORRELATION_MATRIX_FUNCTION_NAME environment variable is not configured", + ); + return response.status(503).json({ + error: + "Lambda function not configured. Please set LAP_CORRELATION_MATRIX_FUNCTION_NAME environment variable.", + }); + } + + // Invoke Lambda function + const data = await invokeLambdaFunction( + LAP_CORRELATION_MATRIX_FUNCTION, + logger, + ); + + // Store in cache + cache.set(CACHE_KEY.LAP_CORRELATION_MATRIX, data); + + logger.info( + `EXIT - ${request.method} ${request.url} - ${200} (from Lambda)`, + ); + return response.status(200).json(data); + } catch (error) { + logger.error( + `ERROR - ${request.method} ${request.url} - ${error instanceof Error ? error.message : String(error)}`, + ); + return response.status(503).json({ + error: + "Service temporarily unavailable. Unable to fetch correlation matrix data.", + }); + } +}; + +/** + * POST /ml/invalidate + * Manually invalidate cache for correlation matrices + */ +export const invalidateCache = async (request: Request, response: Response) => { + const logger = createApplicationLogger( + "machineLearning.controller.ts", + request, + response, + ); + + logger.info(`ENTRY - ${request.method} ${request.url}`); + + try { + const { key } = request.body; + + if (key && key !== "all") { + // Invalidate specific key + if (!Object.values(CACHE_KEY).includes(key)) { + logger.warn(`Invalid cache key provided: ${key}`); + return response.status(400).json({ + error: `Invalid cache key. Valid keys: ${Object.values(CACHE_KEY).join(", ")}, or "all"`, + }); + } + + const deleted = cache.del(key); + logger.info(`Cache INVALIDATE for key: ${key}, existed: ${deleted > 0}`); + logger.info(`EXIT - ${request.method} ${request.url} - ${200}`); + return response.status(200).json({ + invalidated: deleted > 0, + key, + message: + deleted > 0 + ? `Cache for ${key} invalidated successfully` + : `No cache found for ${key}`, + }); + } else { + // Invalidate all caches + const keys = cache.keys(); + cache.flushAll(); + logger.info(`Cache INVALIDATE ALL, cleared ${keys.length} entries`); + logger.info(`EXIT - ${request.method} ${request.url} - ${200}`); + return response.status(200).json({ + message: "All caches invalidated successfully", + }); + } + } catch (error) { + logger.error( + `ERROR - ${request.method} ${request.url} - ${error instanceof Error ? error.message : String(error)}`, + ); + return response.status(500).json({ + error: "Failed to invalidate cache", + }); + } +}; + +/** + * GET /ml/health + * Health check endpoint with cache statistics + */ +export const getHealthCorrelationMatrix = ( + request: Request, + response: Response, +) => { + const logger = createApplicationLogger( + "machineLearning.controller.ts", + request, + response, + ); + + logger.info(`ENTRY - ${request.method} ${request.url}`); + + const stats = cache.getStats(); + const hitRate = + stats.hits + stats.misses > 0 + ? (stats.hits / (stats.hits + stats.misses)) * 100 + : 0; + + const data = { + cacheStats: { + hitRate, + hits: stats.hits, + keys: stats.keys, + ksize: stats.ksize, + misses: stats.misses, + vsize: stats.vsize, + }, + date: new Date(), + message: "OK", + uptime: process.uptime() + " seconds", + }; + + logger.info(`EXIT - ${request.method} ${request.url} - ${200}`); + return response.status(200).json(data); +}; diff --git a/packages/server/src/index.ts b/packages/server/src/index.ts index a4376554..68954ebe 100644 --- a/packages/server/src/index.ts +++ b/packages/server/src/index.ts @@ -12,6 +12,7 @@ import "module-alias"; import driverRouter from "@/routes/driver.route"; import healthRouter from "@/routes/health.route"; +import machineLearningRouter from "@/routes/machineLearning.route"; import playbackRouter from "@/routes/playback.route"; import { @@ -45,6 +46,7 @@ app.use("/", healthRouter); app.use("/", playbackRouter); app.use("/", lapRouter); app.use("/", driverRouter); +app.use("/", machineLearningRouter); export const logger = createLightweightApplicationLogger("index.ts"); axiosRetry(axios, { diff --git a/packages/server/src/routes/machineLearning.route.ts b/packages/server/src/routes/machineLearning.route.ts new file mode 100644 index 00000000..edf1264e --- /dev/null +++ b/packages/server/src/routes/machineLearning.route.ts @@ -0,0 +1,18 @@ +import express from "express"; + +import * as controllers from "@/controllers/routeControllers/machineLearning.controller"; + +const machineLearningRouter = express.Router(); + +machineLearningRouter.get( + "/ml/correlation-matrix/packet", + controllers.getPacketCorrelationMatrix, +); +machineLearningRouter.get( + "/ml/correlation-matrix/lap", + controllers.getLapCorrelationMatrix, +); +machineLearningRouter.post("/ml/invalidate", controllers.invalidateCache); +machineLearningRouter.get("/ml/health", controllers.getHealthCorrelationMatrix); + +export default machineLearningRouter; diff --git a/yarn.lock b/yarn.lock index 20936431..d7ce4532 100644 --- a/yarn.lock +++ b/yarn.lock @@ -51,75 +51,75 @@ __metadata: linkType: hard "@aws-amplify/ai-constructs@npm:^1.5.3": - version: 1.5.4 - resolution: "@aws-amplify/ai-constructs@npm:1.5.4" + version: 1.6.0 + resolution: "@aws-amplify/ai-constructs@npm:1.6.0" dependencies: - "@aws-amplify/backend-output-schemas": "npm:^1.7.1" - "@aws-amplify/plugin-types": "npm:^1.11.1" + "@aws-amplify/backend-output-schemas": "npm:^1.8.0" + "@aws-amplify/plugin-types": "npm:^1.11.2" "@aws-sdk/client-bedrock-runtime": "npm:3.622.0" - "@smithy/types": "npm:^4.1.0" + "@smithy/types": "npm:^4.9.0" json-schema-to-ts: "npm:^3.1.1" peerDependencies: - aws-cdk-lib: ^2.189.1 + aws-cdk-lib: ^2.234.1 constructs: ^10.0.0 - checksum: 10c0/4bea420f72173c60114c7effb0e101adb753b320999b810ec3127ae334f3165fce8b322dcb55a215c3a69cd6ec5bb266797788db4ce43a4012c44b8f6bb6ec21 + checksum: 10c0/cbf55ff4b30263c84332b71ea4b1109f639ada004f01a01245a877744d27fdac674d232d0375a4e09ff8460f88d236f8abc1d99a591b99b9e1431e45234b1a6d languageName: node linkType: hard -"@aws-amplify/analytics@npm:7.0.89": - version: 7.0.89 - resolution: "@aws-amplify/analytics@npm:7.0.89" +"@aws-amplify/analytics@npm:7.0.92": + version: 7.0.92 + resolution: "@aws-amplify/analytics@npm:7.0.92" dependencies: - "@aws-sdk/client-firehose": "npm:3.621.0" - "@aws-sdk/client-kinesis": "npm:3.621.0" - "@aws-sdk/client-personalize-events": "npm:3.621.0" + "@aws-sdk/client-firehose": "npm:3.723.0" + "@aws-sdk/client-kinesis": "npm:3.723.0" + "@aws-sdk/client-personalize-events": "npm:3.723.0" "@smithy/util-utf8": "npm:2.0.0" tslib: "npm:^2.5.0" peerDependencies: "@aws-amplify/core": ^6.1.0 - checksum: 10c0/9fc06de592a43d838a5fb9259ecf18de36ba1529591eb567c8728663dcfb5afdc40cd8de4c336f51be8cce431dd003a5d0f96f423d1a1c14ef2d46fbba5bf30d + checksum: 10c0/06eb72bede56206f92008322e0c3833a0f55f9df482986cd962a78f0fdb456ac179149f52a4b90d41fe4aaa6a7f28d76769c65dd2c4573328be6678181da6206 languageName: node linkType: hard -"@aws-amplify/api-graphql@npm:4.8.1": - version: 4.8.1 - resolution: "@aws-amplify/api-graphql@npm:4.8.1" +"@aws-amplify/api-graphql@npm:4.8.4": + version: 4.8.4 + resolution: "@aws-amplify/api-graphql@npm:4.8.4" dependencies: - "@aws-amplify/api-rest": "npm:4.5.0" - "@aws-amplify/core": "npm:6.14.0" + "@aws-amplify/api-rest": "npm:4.6.2" + "@aws-amplify/core": "npm:6.16.0" "@aws-amplify/data-schema": "npm:^1.7.0" - "@aws-sdk/types": "npm:3.387.0" + "@aws-sdk/types": "npm:3.723.0" graphql: "npm:15.8.0" rxjs: "npm:^7.8.1" tslib: "npm:^2.5.0" uuid: "npm:^11.0.0" - checksum: 10c0/72df9a5b1e8ffe4186587aec00a40b88b08b41bbede7a54bde4f56021e32b33b30453105746d420c3b9eaaa9bf2e9ff4bb9ed5a27ff6b59cf89e9b4f652e20c8 + checksum: 10c0/7220cfe5e26e0f38f2f0f457385e498f33c1567e750db2f76be9ad7b9e1e3a0bacc3f3338a115288fab9ff75b9a59f720b7fab49a6d03956bd09358621181b37 languageName: node linkType: hard -"@aws-amplify/api-rest@npm:4.5.0": - version: 4.5.0 - resolution: "@aws-amplify/api-rest@npm:4.5.0" +"@aws-amplify/api-rest@npm:4.6.2": + version: 4.6.2 + resolution: "@aws-amplify/api-rest@npm:4.6.2" dependencies: tslib: "npm:^2.5.0" peerDependencies: "@aws-amplify/core": ^6.1.0 - checksum: 10c0/31d5782a3edc8528546c3dd1c2c4272a3e1b09cadfb6b7fd8a15c5cf4c79c34718240c1142d0ccbadb3be4ba8b2812ea4928d65b7a6f6a61c8b223854532906c + checksum: 10c0/9232b2b4c5a150afc099a548fecc1585ed0af6a21c50e558d1af22e6b8e7ec581662a5fd7ba96adde88639cceb6d39df1757b8bdb2d0e0d3a10d29b12bb82ade languageName: node linkType: hard -"@aws-amplify/api@npm:6.3.20": - version: 6.3.20 - resolution: "@aws-amplify/api@npm:6.3.20" +"@aws-amplify/api@npm:6.3.23": + version: 6.3.23 + resolution: "@aws-amplify/api@npm:6.3.23" dependencies: - "@aws-amplify/api-graphql": "npm:4.8.1" - "@aws-amplify/api-rest": "npm:4.5.0" + "@aws-amplify/api-graphql": "npm:4.8.4" + "@aws-amplify/api-rest": "npm:4.6.2" "@aws-amplify/data-schema": "npm:^1.7.0" rxjs: "npm:^7.8.1" tslib: "npm:^2.5.0" peerDependencies: "@aws-amplify/core": ^6.1.0 - checksum: 10c0/ed5272b6f65c6ab8990321fe114aa099609e0b56f52990e56c06c5eacb6e75d1e524b68ffb321f294d5be7918f853002fc67bd8d3fe293bef398ee302a1e3f2e + checksum: 10c0/3fc3313209de407f1c0929a40493bd5eff7538f2e8dc7e86d076d51cf6717110110210e82375e45708232c435bb9ff4cdaf6654f7319671526b21275dc3b1c6f languageName: node linkType: hard @@ -184,24 +184,25 @@ __metadata: languageName: node linkType: hard -"@aws-amplify/auth-construct@npm:^1.9.0": - version: 1.9.0 - resolution: "@aws-amplify/auth-construct@npm:1.9.0" +"@aws-amplify/auth-construct@npm:^1.11.0": + version: 1.11.0 + resolution: "@aws-amplify/auth-construct@npm:1.11.0" dependencies: - "@aws-amplify/backend-output-schemas": "npm:^1.7.1" - "@aws-amplify/backend-output-storage": "npm:^1.3.2" - "@aws-amplify/plugin-types": "npm:^1.11.1" - "@aws-sdk/util-arn-parser": "npm:^3.723.0" + "@aws-amplify/backend-output-schemas": "npm:^1.8.0" + "@aws-amplify/backend-output-storage": "npm:^1.3.3" + "@aws-amplify/platform-core": "npm:^1.10.4" + "@aws-amplify/plugin-types": "npm:^1.11.2" + "@aws-sdk/util-arn-parser": "npm:^3.893.0" peerDependencies: - aws-cdk-lib: ^2.189.1 + aws-cdk-lib: ^2.234.1 constructs: ^10.0.0 - checksum: 10c0/039362ed8b6f05a8b85e5715b437a331e6899577aed2e6c1cb6e003cec9e544ebf833ae0e5e6dacb9f6f00b07373c176a7108ff8883ae0897b2d2353bc0cd0c9 + checksum: 10c0/a1df965d4581cee5a3d3644d4bfec6e42419eb052568821153abdbcff41ab0428dd1f9caddd855bc2557b0daa07a476e0530965eaf8c5ccaf8b483a574b5a60b languageName: node linkType: hard -"@aws-amplify/auth@npm:6.17.0": - version: 6.17.0 - resolution: "@aws-amplify/auth@npm:6.17.0" +"@aws-amplify/auth@npm:6.18.0": + version: 6.18.0 + resolution: "@aws-amplify/auth@npm:6.18.0" dependencies: "@aws-crypto/sha256-js": "npm:5.2.0" "@smithy/types": "npm:^3.3.0" @@ -212,22 +213,22 @@ __metadata: peerDependenciesMeta: "@aws-amplify/react-native": optional: true - checksum: 10c0/68a937bc14e540c5a0f1892256cd5caa6c952ff8fe301b26795c4a73610af0a8714d732f888905c30cb89a1c7b8aa3086a887025ae3ba5bf37f229b3c95b039b + checksum: 10c0/0381603ce8f5a34a533150d4ff56abeb53526d42232e3936743900c797556eba73f970114020cfc89120b68181ab0726808009cc4231f67b529451686a537c5a languageName: node linkType: hard -"@aws-amplify/backend-auth@npm:^1.8.0": - version: 1.8.0 - resolution: "@aws-amplify/backend-auth@npm:1.8.0" +"@aws-amplify/backend-auth@npm:^1.9.1": + version: 1.9.1 + resolution: "@aws-amplify/backend-auth@npm:1.9.1" dependencies: - "@aws-amplify/auth-construct": "npm:^1.9.0" - "@aws-amplify/backend-output-schemas": "npm:^1.7.1" - "@aws-amplify/backend-output-storage": "npm:^1.3.2" - "@aws-amplify/plugin-types": "npm:^1.11.1" + "@aws-amplify/auth-construct": "npm:^1.11.0" + "@aws-amplify/backend-output-schemas": "npm:^1.8.0" + "@aws-amplify/backend-output-storage": "npm:^1.3.3" + "@aws-amplify/plugin-types": "npm:^1.11.2" peerDependencies: - aws-cdk-lib: ^2.189.1 + aws-cdk-lib: ^2.234.1 constructs: ^10.0.0 - checksum: 10c0/0aee9af84e99e711265f225d2f35cafc7b799e7b5872757deabb9e41370e8ac77cb728c2af887596faa2127f7313efd8f89b7769dc1be4958f010b5578a13e79 + checksum: 10c0/d235de9567bf44634a5d8b41cfb29e1912785d9e22117be7693b59937bba6557a369dd376a3551722ad31acf4eadfae1c740f8e0ed44718590861640a4d93895 languageName: node linkType: hard @@ -264,21 +265,21 @@ __metadata: languageName: node linkType: hard -"@aws-amplify/backend-data@npm:^1.6.2": - version: 1.6.2 - resolution: "@aws-amplify/backend-data@npm:1.6.2" +"@aws-amplify/backend-data@npm:^1.6.3": + version: 1.6.3 + resolution: "@aws-amplify/backend-data@npm:1.6.3" dependencies: - "@aws-amplify/backend-output-schemas": "npm:^1.7.1" - "@aws-amplify/backend-output-storage": "npm:^1.3.2" + "@aws-amplify/backend-output-schemas": "npm:^1.8.0" + "@aws-amplify/backend-output-storage": "npm:^1.3.3" "@aws-amplify/data-construct": "npm:^1.15.1" "@aws-amplify/data-schema-types": "npm:^1.2.0" "@aws-amplify/graphql-generator": "npm:^0.5.1" - "@aws-amplify/plugin-types": "npm:^1.11.1" + "@aws-amplify/plugin-types": "npm:^1.11.2" graphql: "npm:^15.8.0" peerDependencies: - aws-cdk-lib: ^2.189.1 + aws-cdk-lib: ^2.234.1 constructs: ^10.0.0 - checksum: 10c0/447f236040d954b299224a5c9e84c412405817d9e5aecbdb7f58b8b4bae639b41b5e708d9072966247398b052da7a5e66a26b904d539e18c2c2e828a1785bb1e + checksum: 10c0/36a33ecb88dcfbce6d13765f6f85e06937d5a3435addf4a7d66886456424f9169b4796c9e61d8f69458ad8ef64700dcb120b28ee15931fdb25a24a4e16bb29cc languageName: node linkType: hard @@ -297,19 +298,19 @@ __metadata: languageName: node linkType: hard -"@aws-amplify/backend-function@npm:^1.15.1": - version: 1.15.1 - resolution: "@aws-amplify/backend-function@npm:1.15.1" +"@aws-amplify/backend-function@npm:^1.16.0": + version: 1.16.0 + resolution: "@aws-amplify/backend-function@npm:1.16.0" dependencies: - "@aws-amplify/backend-output-schemas": "npm:^1.7.1" - "@aws-amplify/backend-output-storage": "npm:^1.3.2" - "@aws-amplify/plugin-types": "npm:^1.11.1" - "@aws-sdk/client-s3": "npm:^3.750.0" + "@aws-amplify/backend-output-schemas": "npm:^1.8.0" + "@aws-amplify/backend-output-storage": "npm:^1.3.3" + "@aws-amplify/plugin-types": "npm:^1.11.2" + "@aws-sdk/client-s3": "npm:^3.936.0" execa: "npm:^9.5.1" peerDependencies: - aws-cdk-lib: ^2.189.1 + aws-cdk-lib: ^2.234.1 constructs: ^10.0.0 - checksum: 10c0/c87851f8cac7d3b206b1768f9da1ba3f13d24aa881a8269f92da510b180806bfc31af086a59d4d2aed1ec83284fd3611f231188b68a9f098562761b95b2c8097 + checksum: 10c0/714630b0b3bcf957c84cc89b9aceca3eb843cac6e73d6a1e0259bbc6d21244a9c02042e8856dcaba4daec42494e7574305269eb44517539fa91380803d00fac4 languageName: node linkType: hard @@ -331,25 +332,25 @@ __metadata: languageName: node linkType: hard -"@aws-amplify/backend-output-schemas@npm:^1.0.0, @aws-amplify/backend-output-schemas@npm:^1.7.1": - version: 1.7.1 - resolution: "@aws-amplify/backend-output-schemas@npm:1.7.1" +"@aws-amplify/backend-output-schemas@npm:^1.0.0, @aws-amplify/backend-output-schemas@npm:^1.7.1, @aws-amplify/backend-output-schemas@npm:^1.8.0": + version: 1.8.0 + resolution: "@aws-amplify/backend-output-schemas@npm:1.8.0" peerDependencies: zod: 3.25.17 - checksum: 10c0/d585ad6fa9b13e3d7879c3bdb985933f19287aa0ad8f03e68e25ac750bc0612504bc3926003f2702df642fa1edd80945ccc7cd27a4b9db14b99c8b4bb21319ca + checksum: 10c0/52cf1a28ff5bb77ec6038f308aa3b8dab824a06016f5e40ea0a1cc1a4d24343f26b439f6e36c5827954adab3796edf45c584e82ba7a6aee3d111b4c2323e2755 languageName: node linkType: hard -"@aws-amplify/backend-output-storage@npm:^1.0.0, @aws-amplify/backend-output-storage@npm:^1.3.2": - version: 1.3.2 - resolution: "@aws-amplify/backend-output-storage@npm:1.3.2" +"@aws-amplify/backend-output-storage@npm:^1.0.0, @aws-amplify/backend-output-storage@npm:^1.3.3": + version: 1.3.3 + resolution: "@aws-amplify/backend-output-storage@npm:1.3.3" dependencies: - "@aws-amplify/backend-output-schemas": "npm:^1.7.1" - "@aws-amplify/platform-core": "npm:^1.10.1" - "@aws-amplify/plugin-types": "npm:^1.11.1" + "@aws-amplify/backend-output-schemas": "npm:^1.8.0" + "@aws-amplify/platform-core": "npm:^1.10.4" + "@aws-amplify/plugin-types": "npm:^1.11.2" peerDependencies: - aws-cdk-lib: ^2.189.1 - checksum: 10c0/343dd3a4cfd42860b8741a63206b8fa5650297767bc63c363f18f412eb2cbe7de8bceda2569bb031f0749d8dc316ff917064263889d7dede36e513a376ad43c4 + aws-cdk-lib: ^2.234.1 + checksum: 10c0/5beecec40fe2f43690ed8289f17b3b8cd5e1d5450e987866d303b1e6fd4b3476ac4a56f2719d4e58f7b9abc44233e23b2b9202a2f539036040993878be0ab111 languageName: node linkType: hard @@ -364,51 +365,51 @@ __metadata: languageName: node linkType: hard -"@aws-amplify/backend-secret@npm:^1.4.1": - version: 1.4.1 - resolution: "@aws-amplify/backend-secret@npm:1.4.1" +"@aws-amplify/backend-secret@npm:^1.4.2": + version: 1.4.2 + resolution: "@aws-amplify/backend-secret@npm:1.4.2" dependencies: - "@aws-amplify/platform-core": "npm:^1.10.1" + "@aws-amplify/platform-core": "npm:^1.10.3" "@aws-amplify/plugin-types": "npm:^1.11.1" - "@aws-sdk/client-ssm": "npm:^3.750.0" - checksum: 10c0/c2cc5b5447a63e5cae76ba56f858b2c3785c02395e4c436c7b0a3e931ac919174e4a9829ad782dcce077280c5628c98e8f577960ac4e879365146838568d35b0 + "@aws-sdk/client-ssm": "npm:^3.936.0" + checksum: 10c0/7bec59b7d54ef61fde2b1c4f8941965dd4a079122d5ae971ae05a75db7cced5fed4cd9e4de0d71e053c703c2991df497c16e29c3c56209d7fc7087d5fd528da2 languageName: node linkType: hard -"@aws-amplify/backend-storage@npm:^1.4.2": - version: 1.4.2 - resolution: "@aws-amplify/backend-storage@npm:1.4.2" +"@aws-amplify/backend-storage@npm:^1.4.3": + version: 1.4.3 + resolution: "@aws-amplify/backend-storage@npm:1.4.3" dependencies: - "@aws-amplify/backend-output-schemas": "npm:^1.7.1" - "@aws-amplify/backend-output-storage": "npm:^1.3.2" - "@aws-amplify/plugin-types": "npm:^1.11.1" + "@aws-amplify/backend-output-schemas": "npm:^1.8.0" + "@aws-amplify/backend-output-storage": "npm:^1.3.3" + "@aws-amplify/plugin-types": "npm:^1.11.2" peerDependencies: - aws-cdk-lib: ^2.189.1 + aws-cdk-lib: ^2.234.1 constructs: ^10.0.0 - checksum: 10c0/61171b241583fbe584b785e3af8f8f4a1566bfa291ebe71fde34b824457ff384b2aa9d1faecd89254409bc798a9b6744b682886cd10e6798fd8b24e4bccc3ed7 + checksum: 10c0/0571c88be735a4920eddb2947364dcb75f372ec0fa49fa75ba09cfaaab92f440ab77cb4db70ca310e35dab52540290f41d2eaab95d4ccf9035d68d2eeebabbe1 languageName: node linkType: hard "@aws-amplify/backend@npm:^1.0.4": - version: 1.18.0 - resolution: "@aws-amplify/backend@npm:1.18.0" - dependencies: - "@aws-amplify/backend-auth": "npm:^1.8.0" - "@aws-amplify/backend-data": "npm:^1.6.2" - "@aws-amplify/backend-function": "npm:^1.15.1" - "@aws-amplify/backend-output-schemas": "npm:^1.7.1" - "@aws-amplify/backend-output-storage": "npm:^1.3.2" - "@aws-amplify/backend-secret": "npm:^1.4.1" - "@aws-amplify/backend-storage": "npm:^1.4.2" - "@aws-amplify/client-config": "npm:^1.9.0" + version: 1.20.0 + resolution: "@aws-amplify/backend@npm:1.20.0" + dependencies: + "@aws-amplify/backend-auth": "npm:^1.9.1" + "@aws-amplify/backend-data": "npm:^1.6.3" + "@aws-amplify/backend-function": "npm:^1.16.0" + "@aws-amplify/backend-output-schemas": "npm:^1.8.0" + "@aws-amplify/backend-output-storage": "npm:^1.3.3" + "@aws-amplify/backend-secret": "npm:^1.4.2" + "@aws-amplify/backend-storage": "npm:^1.4.3" + "@aws-amplify/client-config": "npm:^1.10.0" "@aws-amplify/data-schema": "npm:^1.13.4" - "@aws-amplify/platform-core": "npm:^1.10.1" - "@aws-amplify/plugin-types": "npm:^1.11.1" - "@aws-sdk/client-amplify": "npm:^3.750.0" + "@aws-amplify/platform-core": "npm:^1.10.4" + "@aws-amplify/plugin-types": "npm:^1.11.2" + "@aws-sdk/client-amplify": "npm:^3.936.0" peerDependencies: - aws-cdk-lib: ^2.189.1 + aws-cdk-lib: ^2.234.1 constructs: ^10.0.0 - checksum: 10c0/54ba28499d17b11a60935e53bc71d1aa37b77d8c4eb0d22a8b7268ee431f2cef1a5ccb035438e26c4fcfab39482dc83597b37abd3d1a98d39d9c81eaeb964f29 + checksum: 10c0/bab50a852e205febaef01681531a899f4e150b2541c62ce07f0d28a269c29809bf45c5029f7b7e634bea2ee48fefb233b2cbf2902dda86a78c9be523143481ba languageName: node linkType: hard @@ -468,21 +469,21 @@ __metadata: languageName: node linkType: hard -"@aws-amplify/client-config@npm:^1.9.0": - version: 1.9.0 - resolution: "@aws-amplify/client-config@npm:1.9.0" +"@aws-amplify/client-config@npm:^1.10.0": + version: 1.10.0 + resolution: "@aws-amplify/client-config@npm:1.10.0" dependencies: - "@aws-amplify/backend-output-schemas": "npm:^1.7.1" + "@aws-amplify/backend-output-schemas": "npm:^1.8.0" "@aws-amplify/deployed-backend-client": "npm:^1.8.1" - "@aws-amplify/model-generator": "npm:^1.2.1" - "@aws-amplify/platform-core": "npm:^1.10.1" - "@aws-amplify/plugin-types": "npm:^1.11.1" + "@aws-amplify/model-generator": "npm:^1.2.2" + "@aws-amplify/platform-core": "npm:^1.10.4" + "@aws-amplify/plugin-types": "npm:^1.11.2" zod: "npm:3.25.17" peerDependencies: "@aws-sdk/client-amplify": ^3.750.0 "@aws-sdk/client-cloudformation": ^3.750.0 "@aws-sdk/client-s3": ^3.750.0 - checksum: 10c0/22b2af1ec3bf84a0eff718d5add141aaf290fd129bb58e1e570b288839ec016ccce3cffbdc3956be0e4eea16145e8a31090252e4c0ce3fb392404b50eedc77cd + checksum: 10c0/823038d8f578bb3ea1583f05247f6cb690d1db441b4a3f2cbb8b51f027337c1f3f4f6a23f1dae006b07dae13702d69233f890166e7dd6b2a300d6509e94d8d6d languageName: node linkType: hard @@ -516,19 +517,19 @@ __metadata: languageName: node linkType: hard -"@aws-amplify/core@npm:6.14.0": - version: 6.14.0 - resolution: "@aws-amplify/core@npm:6.14.0" +"@aws-amplify/core@npm:6.16.0": + version: 6.16.0 + resolution: "@aws-amplify/core@npm:6.16.0" dependencies: "@aws-crypto/sha256-js": "npm:5.2.0" - "@aws-sdk/types": "npm:3.398.0" + "@aws-sdk/types": "npm:3.723.0" "@smithy/util-hex-encoding": "npm:2.0.0" "@types/uuid": "npm:^9.0.0" js-cookie: "npm:^3.0.5" rxjs: "npm:^7.8.1" tslib: "npm:^2.5.0" uuid: "npm:^11.0.0" - checksum: 10c0/6140b85715f8d4717ef4b222adb60d0edafe78d89f58f0121d59149ca03865f94afc5e968299c6dbd28c3a23c9b596e0f9b3a508e58873aba917fb06f3481d3b + checksum: 10c0/8b9f56d0ab8e25bcb949b8d6d77d3fbdc0cf179f9bcec867ef72ebdba0135821ba1c5f94192839a05cc7f107064d468c275b7e2cdec1ab69274e6692513ea58d languageName: node linkType: hard @@ -671,12 +672,12 @@ __metadata: linkType: hard "@aws-amplify/data-schema-types@npm:*, @aws-amplify/data-schema-types@npm:^1.2.0": - version: 1.2.0 - resolution: "@aws-amplify/data-schema-types@npm:1.2.0" + version: 1.2.1 + resolution: "@aws-amplify/data-schema-types@npm:1.2.1" dependencies: graphql: "npm:15.8.0" rxjs: "npm:^7.8.1" - checksum: 10c0/aa24a3c94561731fec8096d9caf03a4c70a83bb9f8a3f9cd7cc53c3de1932c6e89f58fc9ed64b741470cfc74d93884958167d49b88251dd426cc1b156bebf1ab + checksum: 10c0/55196fb8533f0067161d7fcbe4ca1c22bab3bb5496974ab252a884cb41ff99054437055c3b620070e51b8aefa0f29721d83b97de39c8ecc4860be268e44a954e languageName: node linkType: hard @@ -691,24 +692,24 @@ __metadata: linkType: hard "@aws-amplify/data-schema@npm:^1.13.4, @aws-amplify/data-schema@npm:^1.7.0": - version: 1.22.0 - resolution: "@aws-amplify/data-schema@npm:1.22.0" + version: 1.23.0 + resolution: "@aws-amplify/data-schema@npm:1.23.0" dependencies: "@aws-amplify/data-schema-types": "npm:*" "@smithy/util-base64": "npm:^3.0.0" "@types/aws-lambda": "npm:^8.10.134" "@types/json-schema": "npm:^7.0.15" rxjs: "npm:^7.8.1" - checksum: 10c0/b3d41cccf7b24e47fc80aa54f1e5f7c2c7204269e1a8786fe715df14ac95c9653587a15327166ad32c01715fa3ba22b8c8d8393957e060adf513938f47127cdd + checksum: 10c0/eccc35f01f33d4d2ebe20bd26df5d36778058e54938d3b05f3402592e852308fe78c2ed233341fbb104123d8e60ea88bd134c01ad174d2b8b04f75deba93b9db languageName: node linkType: hard -"@aws-amplify/datastore@npm:5.1.1": - version: 5.1.1 - resolution: "@aws-amplify/datastore@npm:5.1.1" +"@aws-amplify/datastore@npm:5.1.4": + version: 5.1.4 + resolution: "@aws-amplify/datastore@npm:5.1.4" dependencies: - "@aws-amplify/api": "npm:6.3.20" - "@aws-amplify/api-graphql": "npm:4.8.1" + "@aws-amplify/api": "npm:6.3.23" + "@aws-amplify/api-graphql": "npm:4.8.4" buffer: "npm:4.9.2" idb: "npm:5.0.6" immer: "npm:9.0.6" @@ -716,7 +717,7 @@ __metadata: ulid: "npm:^2.3.0" peerDependencies: "@aws-amplify/core": ^6.1.0 - checksum: 10c0/66ffacaa9bdae5cc3528f68703ae02ff7f32ca601bc5e1c3af1e40ba589f5f6884d39e6a96155ea87f3f805775d4589764a327d339b749b0d625bc6063edfe39 + checksum: 10c0/9025e51d0b9f4477817fadadfd3f08ec78f8716fdc5a097308b8ef021cf22dd108ab897d9adbe28c98b9c7d85c3a1b1e3278366463ff2a0979fd17abc055e653 languageName: node linkType: hard @@ -1402,38 +1403,38 @@ __metadata: languageName: node linkType: hard -"@aws-amplify/model-generator@npm:^1.2.1": - version: 1.2.1 - resolution: "@aws-amplify/model-generator@npm:1.2.1" +"@aws-amplify/model-generator@npm:^1.2.2": + version: 1.2.2 + resolution: "@aws-amplify/model-generator@npm:1.2.2" dependencies: "@aws-amplify/backend-output-schemas": "npm:^1.7.1" "@aws-amplify/deployed-backend-client": "npm:^1.8.1" "@aws-amplify/graphql-generator": "npm:^0.5.1" "@aws-amplify/graphql-types-generator": "npm:^3.6.0" - "@aws-amplify/platform-core": "npm:^1.10.1" + "@aws-amplify/platform-core": "npm:^1.10.3" "@aws-amplify/plugin-types": "npm:^1.11.1" - "@aws-sdk/client-appsync": "npm:^3.750.0" - "@aws-sdk/client-s3": "npm:^3.750.0" - "@aws-sdk/credential-providers": "npm:^3.750.0" - "@aws-sdk/types": "npm:^3.734.0" + "@aws-sdk/client-appsync": "npm:^3.936.0" + "@aws-sdk/client-s3": "npm:^3.937.0" + "@aws-sdk/credential-providers": "npm:^3.936.0" + "@aws-sdk/types": "npm:^3.936.0" graphql: "npm:^15.8.0" peerDependencies: "@aws-sdk/client-amplify": ^3.750.0 "@aws-sdk/client-cloudformation": ^3.750.0 - checksum: 10c0/55d7b35a693163a42e95f9a4b50ff8cae762b2dad451498b357bc08a517c53a28d274bd6fef0f96ab876755fce3070071fea653d5c6ce16a0da05d73b5ecc018 + checksum: 10c0/0dc8b2a7988fccd091b6928bbd7e837d7806b473381ab07ebfb5bbbdf55278f81dd14270689b2c8db4459c899af70b2db88b1b180f1c33a7f5184538cabb2256 languageName: node linkType: hard -"@aws-amplify/notifications@npm:2.0.89": - version: 2.0.89 - resolution: "@aws-amplify/notifications@npm:2.0.89" +"@aws-amplify/notifications@npm:2.0.92": + version: 2.0.92 + resolution: "@aws-amplify/notifications@npm:2.0.92" dependencies: - "@aws-sdk/types": "npm:3.398.0" + "@aws-sdk/types": "npm:3.723.0" lodash: "npm:^4.17.21" tslib: "npm:^2.5.0" peerDependencies: "@aws-amplify/core": ^6.1.0 - checksum: 10c0/bddae8778d279718da85cc577c15be920157f81e05e45b5c4bd470e8449d4e551cb0e97a12a9323ec6180ebdc0919542f5ee5385b17f21a466bba23785052930 + checksum: 10c0/8fef8c277d404dc3846fafc8f1d0740fa49485c3a60b42f4d0d3549166c91e4efc6d45df343fe513d7d59b25c38c6314ea380f9e4973b4b419a869fc75a990ed languageName: node linkType: hard @@ -1465,12 +1466,12 @@ __metadata: languageName: node linkType: hard -"@aws-amplify/platform-core@npm:^1.0.0, @aws-amplify/platform-core@npm:^1.10.1": - version: 1.10.2 - resolution: "@aws-amplify/platform-core@npm:1.10.2" +"@aws-amplify/platform-core@npm:^1.0.0, @aws-amplify/platform-core@npm:^1.10.1, @aws-amplify/platform-core@npm:^1.10.3, @aws-amplify/platform-core@npm:^1.10.4": + version: 1.10.4 + resolution: "@aws-amplify/platform-core@npm:1.10.4" dependencies: - "@aws-amplify/plugin-types": "npm:^1.11.1" - "@aws-sdk/client-sts": "npm:^3.750.0" + "@aws-amplify/plugin-types": "npm:^1.11.2" + "@aws-sdk/client-sts": "npm:^3.936.0" "@opentelemetry/api": "npm:^1.9.0" "@opentelemetry/core": "npm:^2.0.0" "@opentelemetry/sdk-trace-base": "npm:^2.0.0" @@ -1481,9 +1482,9 @@ __metadata: uuid: "npm:^11.1.0" zod: "npm:3.25.17" peerDependencies: - aws-cdk-lib: ^2.189.1 + aws-cdk-lib: ^2.234.1 constructs: ^10.0.0 - checksum: 10c0/0c5a11a351cedce0b7d83244a6f857651cda271ecc3da92925c2597d0e99f3d1f9ebd3e835c486dbb2a805ac8db9ffc08e1bc18b4b92415a899bdf079d829945 + checksum: 10c0/b2f940a4ad0760217e3653a8753a2102ab52d6c705ffeadb828cfcca9c27b173e7b23bd117e36fe21848e0e2c39c36ff8797a101cbbfd54c48f2c7930e4e6d79 languageName: node linkType: hard @@ -1519,16 +1520,16 @@ __metadata: languageName: node linkType: hard -"@aws-amplify/plugin-types@npm:^1.0.0, @aws-amplify/plugin-types@npm:^1.11.1": - version: 1.11.1 - resolution: "@aws-amplify/plugin-types@npm:1.11.1" +"@aws-amplify/plugin-types@npm:^1.0.0, @aws-amplify/plugin-types@npm:^1.11.1, @aws-amplify/plugin-types@npm:^1.11.2": + version: 1.11.2 + resolution: "@aws-amplify/plugin-types@npm:1.11.2" dependencies: "@aws-cdk/toolkit-lib": "npm:1.6.1" peerDependencies: "@aws-sdk/types": ^3.734.0 - aws-cdk-lib: ^2.189.1 + aws-cdk-lib: ^2.234.1 constructs: ^10.0.0 - checksum: 10c0/4bebb76238baf9fff41d8ed92d7913f485ab6925ec1945ee6717a6e5f8dd059d81389e1cba92c5ac2d64d6827c05f1c025f2eddb032c4284d51bfc6dd85e62c1 + checksum: 10c0/ecc3996af9799084f6725f90a8030f1ba19181800c197035c612d0ffe582bd814819c4e08c721efd27cec289eb9951ad3bdea81e2432a77be8f18e9b08aeb13c languageName: node linkType: hard @@ -1557,11 +1558,11 @@ __metadata: languageName: node linkType: hard -"@aws-amplify/storage@npm:6.10.1": - version: 6.10.1 - resolution: "@aws-amplify/storage@npm:6.10.1" +"@aws-amplify/storage@npm:6.12.0": + version: 6.12.0 + resolution: "@aws-amplify/storage@npm:6.12.0" dependencies: - "@aws-sdk/types": "npm:3.398.0" + "@aws-sdk/types": "npm:3.723.0" "@smithy/md5-js": "npm:2.0.7" buffer: "npm:4.9.2" crc-32: "npm:1.2.2" @@ -1569,14 +1570,14 @@ __metadata: tslib: "npm:^2.5.0" peerDependencies: "@aws-amplify/core": ^6.1.0 - checksum: 10c0/4817335523c6eb89de7b1055a67e37e2e6446ae7785f633ef6c34e5a15b09d531e74977624eb34fb782d7d14a9098fef1095f63855d6f791b76ee785f8af07b3 + checksum: 10c0/fb54b46958ea118c4d13504ecdcce4c10c0b35a26dd741b0e3dff8cd2c31592968834fdb05479ed3804ead5f84062ee31861f013960b663d85b48afe9aa0523d languageName: node linkType: hard -"@aws-cdk/asset-awscli-v1@npm:2.2.242": - version: 2.2.242 - resolution: "@aws-cdk/asset-awscli-v1@npm:2.2.242" - checksum: 10c0/bf0d1694de559accb4dc28257eccbd959d37d5d2c5572aa77bc3a01612796b6fcf616e6b5fbb52f0212f61ee36e7eba333ba3a387142789eaf6b3a98e819c814 +"@aws-cdk/asset-awscli-v1@npm:2.2.263": + version: 2.2.263 + resolution: "@aws-cdk/asset-awscli-v1@npm:2.2.263" + checksum: 10c0/d84d00fa1f576a7774a15f30431675fe174e2d42369117bf6b336c33b89525d61628364c084460029b23fa404b73474559af2274773e9e4f06be962f322690ff languageName: node linkType: hard @@ -1587,21 +1588,22 @@ __metadata: languageName: node linkType: hard -"@aws-cdk/aws-service-spec@npm:^0.1.95": - version: 0.1.125 - resolution: "@aws-cdk/aws-service-spec@npm:0.1.125" +"@aws-cdk/aws-service-spec@npm:^0.1.132": + version: 0.1.147 + resolution: "@aws-cdk/aws-service-spec@npm:0.1.147" dependencies: - "@aws-cdk/service-spec-types": "npm:^0.0.191" + "@aws-cdk/service-spec-types": "npm:^0.0.213" "@cdklabs/tskb": "npm:^0.0.4" - checksum: 10c0/9bfee2773f598dfa2aeab63e7e1fee5665fa4d8736c8093832fa37240a8ce7df51f0baddb94a09eb15188bdeff244bb414d5aaef4cda1b9bef2e5cbeae9dffa5 + checksum: 10c0/a65daa3796da05ca998efc74f1b51c5a9dbde11131a3dbdd0973b253798d8bab6052cd575b4be5c85b8a21233dc88084027484edf99796bd708463a225d3fc55 languageName: node linkType: hard "@aws-cdk/cdk-assets-lib@npm:^1": - version: 1.0.5 - resolution: "@aws-cdk/cdk-assets-lib@npm:1.0.5" + version: 1.2.1 + resolution: "@aws-cdk/cdk-assets-lib@npm:1.2.1" dependencies: - "@aws-cdk/cloud-assembly-schema": "npm:>=48.20.0" + "@aws-cdk/cloud-assembly-api": "npm:2.0.1" + "@aws-cdk/cloud-assembly-schema": "npm:>=50.3.0" "@aws-cdk/cx-api": "npm:^2" "@aws-sdk/client-ecr": "npm:^3" "@aws-sdk/client-s3": "npm:^3" @@ -1615,11 +1617,33 @@ __metadata: glob: "npm:^11.1.0" mime: "npm:^2" minimatch: "npm:10.0.1" - checksum: 10c0/55769c907dd267298ed169aad640c07e4a1e2ba2df7a8bbefcd4c0260335ae3ec2b1a06bed75a9ba2b501d6e5040546a8dbd1cfc306dc49b12365d3470c165fe + checksum: 10c0/a71c125c0aad763dd2b7bd8443ca7ff15c4bbc712d28b384a24c17ff56419f037a116d027ec9ee56c8527517b08a12216a9b97efb7d68f0fb5c123b08ec2c489 + languageName: node + linkType: hard + +"@aws-cdk/cloud-assembly-api@npm:2.0.1": + version: 2.0.1 + resolution: "@aws-cdk/cloud-assembly-api@npm:2.0.1" + dependencies: + jsonschema: "npm:~1.4.1" + semver: "npm:^7.7.3" + peerDependencies: + "@aws-cdk/cloud-assembly-schema": ">=50.3.0" + checksum: 10c0/48345bf3239f4b0d23752c6523452244adedfd28bbe4bae296171fbfc5f821f48ef68a8b7c8ca46bab099fb472a48f2d4a74bd81c7696f4a66e6bbb2d75be0b7 + languageName: node + linkType: hard + +"@aws-cdk/cloud-assembly-schema@npm:>=48.6.0, @aws-cdk/cloud-assembly-schema@npm:>=50.3.0": + version: 50.3.0 + resolution: "@aws-cdk/cloud-assembly-schema@npm:50.3.0" + dependencies: + jsonschema: "npm:~1.4.1" + semver: "npm:^7.7.3" + checksum: 10c0/139829232684c70d1d99526a4b747d412720cacb1ef2b3b934de7e88ab4c75a877dbeb872db0d46d978715f8a66377cfe28fb7f87badc0e073d0575c2f15c16d languageName: node linkType: hard -"@aws-cdk/cloud-assembly-schema@npm:>=48.20.0, @aws-cdk/cloud-assembly-schema@npm:>=48.6.0, @aws-cdk/cloud-assembly-schema@npm:^48.6.0": +"@aws-cdk/cloud-assembly-schema@npm:^48.20.0": version: 48.20.0 resolution: "@aws-cdk/cloud-assembly-schema@npm:48.20.0" dependencies: @@ -1630,48 +1654,48 @@ __metadata: linkType: hard "@aws-cdk/cloudformation-diff@npm:^2": - version: 2.184.1 - resolution: "@aws-cdk/cloudformation-diff@npm:2.184.1" + version: 2.185.1 + resolution: "@aws-cdk/cloudformation-diff@npm:2.185.1" dependencies: - "@aws-cdk/aws-service-spec": "npm:^0.1.95" - "@aws-cdk/service-spec-types": "npm:^0.0.161" + "@aws-cdk/aws-service-spec": "npm:^0.1.132" + "@aws-cdk/service-spec-types": "npm:^0.0.198" chalk: "npm:^4" - diff: "npm:^7.0.0" + diff: "npm:^8.0.3" fast-deep-equal: "npm:^3.1.3" string-width: "npm:^4" table: "npm:^6" peerDependencies: "@aws-sdk/client-cloudformation": ^3 - checksum: 10c0/8bf1b8e4350919dc490843c8c0ec86a5b5a1bd37d338e32f36aca89b0f26194609918a2d6075eb10febf4f8fbeb98e0c601c2c07a3ba0f21103d8fa1c5d36827 + checksum: 10c0/4a3dc8df3f123211d71da9602ce753d013fb5758adc129ef113b5f2d37a2fa71c446fbb735a8e81d4aeb3e049e2bfc580998a99b5475a968e8b2444bf6a363fc languageName: node linkType: hard "@aws-cdk/cx-api@npm:^2": - version: 2.230.0 - resolution: "@aws-cdk/cx-api@npm:2.230.0" + version: 2.236.0 + resolution: "@aws-cdk/cx-api@npm:2.236.0" dependencies: - semver: "npm:^7.7.2" + semver: "npm:^7.7.3" peerDependencies: "@aws-cdk/cloud-assembly-schema": ">=45.0.0" - checksum: 10c0/59b612023f91e9dded93f996a2fbc67698901aefb5f61ab763cc20fc6ae71592864c5ebae5988e6063d9c8516021fde6b647e545dbbe950f063d46932e260f39 + checksum: 10c0/2b07701a991ea85c1fcc3574085bd2b613b6e21a99374a68d9b9e0159a97bd413bbe910a7660808c408eca58ce0216f2abddd2ec28b11502102d8451bd08a0ae languageName: node linkType: hard -"@aws-cdk/service-spec-types@npm:^0.0.161": - version: 0.0.161 - resolution: "@aws-cdk/service-spec-types@npm:0.0.161" +"@aws-cdk/service-spec-types@npm:^0.0.198": + version: 0.0.198 + resolution: "@aws-cdk/service-spec-types@npm:0.0.198" dependencies: - "@cdklabs/tskb": "npm:^0.0.3" - checksum: 10c0/2de1c7df0d52629f4769f543ea895a83498e3e4775e0f46d4fc999df7c3410451f3748f3e4a7553e762a7693d8232b4d0f3faf65f7720aabc8d66fb68833b8d7 + "@cdklabs/tskb": "npm:^0.0.4" + checksum: 10c0/e5f9a67a554d647de724258f9a6567ef07a371782ab7c7599fa1e6f258c5366de394bfd40fae49ac27e558d34cba036fcbb970e4aaf566e63d7196be1ec37126 languageName: node linkType: hard -"@aws-cdk/service-spec-types@npm:^0.0.191": - version: 0.0.191 - resolution: "@aws-cdk/service-spec-types@npm:0.0.191" +"@aws-cdk/service-spec-types@npm:^0.0.213": + version: 0.0.213 + resolution: "@aws-cdk/service-spec-types@npm:0.0.213" dependencies: "@cdklabs/tskb": "npm:^0.0.4" - checksum: 10c0/8631db12613653ac672a01858f6ca804990e3efeac44a93edfffc39c0ef21051281dccc92519eec368091ba08a1a5fda605a7605c54ec900f2337135e7f14f5a + checksum: 10c0/3c5365ce6dc81b54bd4ac6c5a8ee20eac1d939e2b7bc4bbb0031d33d1b1d70c418b381ec063970ecce54ff20933152212e6dd54e6993c2ed4bd4a65f1f5ce6b7 languageName: node linkType: hard @@ -1866,145 +1890,145 @@ __metadata: languageName: node linkType: hard -"@aws-sdk/client-amplify@npm:^3.465.0, @aws-sdk/client-amplify@npm:^3.750.0": - version: 3.940.0 - resolution: "@aws-sdk/client-amplify@npm:3.940.0" +"@aws-sdk/client-amplify@npm:^3.465.0, @aws-sdk/client-amplify@npm:^3.936.0": + version: 3.980.0 + resolution: "@aws-sdk/client-amplify@npm:3.980.0" dependencies: "@aws-crypto/sha256-browser": "npm:5.2.0" "@aws-crypto/sha256-js": "npm:5.2.0" - "@aws-sdk/core": "npm:3.940.0" - "@aws-sdk/credential-provider-node": "npm:3.940.0" - "@aws-sdk/middleware-host-header": "npm:3.936.0" - "@aws-sdk/middleware-logger": "npm:3.936.0" - "@aws-sdk/middleware-recursion-detection": "npm:3.936.0" - "@aws-sdk/middleware-user-agent": "npm:3.940.0" - "@aws-sdk/region-config-resolver": "npm:3.936.0" - "@aws-sdk/types": "npm:3.936.0" - "@aws-sdk/util-endpoints": "npm:3.936.0" - "@aws-sdk/util-user-agent-browser": "npm:3.936.0" - "@aws-sdk/util-user-agent-node": "npm:3.940.0" - "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" - "@smithy/fetch-http-handler": "npm:^5.3.6" - "@smithy/hash-node": "npm:^4.2.5" - "@smithy/invalid-dependency": "npm:^4.2.5" - "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" - "@smithy/middleware-serde": "npm:^4.2.6" - "@smithy/middleware-stack": "npm:^4.2.5" - "@smithy/node-config-provider": "npm:^4.3.5" - "@smithy/node-http-handler": "npm:^4.4.5" - "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" - "@smithy/types": "npm:^4.9.0" - "@smithy/url-parser": "npm:^4.2.5" + "@aws-sdk/core": "npm:^3.973.5" + "@aws-sdk/credential-provider-node": "npm:^3.972.4" + "@aws-sdk/middleware-host-header": "npm:^3.972.3" + "@aws-sdk/middleware-logger": "npm:^3.972.3" + "@aws-sdk/middleware-recursion-detection": "npm:^3.972.3" + "@aws-sdk/middleware-user-agent": "npm:^3.972.5" + "@aws-sdk/region-config-resolver": "npm:^3.972.3" + "@aws-sdk/types": "npm:^3.973.1" + "@aws-sdk/util-endpoints": "npm:3.980.0" + "@aws-sdk/util-user-agent-browser": "npm:^3.972.3" + "@aws-sdk/util-user-agent-node": "npm:^3.972.3" + "@smithy/config-resolver": "npm:^4.4.6" + "@smithy/core": "npm:^3.22.0" + "@smithy/fetch-http-handler": "npm:^5.3.9" + "@smithy/hash-node": "npm:^4.2.8" + "@smithy/invalid-dependency": "npm:^4.2.8" + "@smithy/middleware-content-length": "npm:^4.2.8" + "@smithy/middleware-endpoint": "npm:^4.4.12" + "@smithy/middleware-retry": "npm:^4.4.29" + "@smithy/middleware-serde": "npm:^4.2.9" + "@smithy/middleware-stack": "npm:^4.2.8" + "@smithy/node-config-provider": "npm:^4.3.8" + "@smithy/node-http-handler": "npm:^4.4.8" + "@smithy/protocol-http": "npm:^5.3.8" + "@smithy/smithy-client": "npm:^4.11.1" + "@smithy/types": "npm:^4.12.0" + "@smithy/url-parser": "npm:^4.2.8" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" - "@smithy/util-endpoints": "npm:^3.2.5" - "@smithy/util-middleware": "npm:^4.2.5" - "@smithy/util-retry": "npm:^4.2.5" + "@smithy/util-defaults-mode-browser": "npm:^4.3.28" + "@smithy/util-defaults-mode-node": "npm:^4.2.31" + "@smithy/util-endpoints": "npm:^3.2.8" + "@smithy/util-middleware": "npm:^4.2.8" + "@smithy/util-retry": "npm:^4.2.8" "@smithy/util-utf8": "npm:^4.2.0" tslib: "npm:^2.6.2" - checksum: 10c0/2c093ac67fbc25e9bf015029a56119cc0d3955740e5926f5147a15105c39f318f40db289cfeabfe1b58e35040c453c715ed5a6359b23319dddbef0391d5743f8 + checksum: 10c0/896c82ecd4b5b110673d07c7e59eedd548cbd02e9f5e7a32a17294cc35c8c7895632b5e37142b61779f9dac1b39a9b7fdecc53854267e79055d00a0688961fa3 languageName: node linkType: hard "@aws-sdk/client-amplifyuibuilder@npm:^3.465.0": - version: 3.940.0 - resolution: "@aws-sdk/client-amplifyuibuilder@npm:3.940.0" + version: 3.980.0 + resolution: "@aws-sdk/client-amplifyuibuilder@npm:3.980.0" dependencies: "@aws-crypto/sha256-browser": "npm:5.2.0" "@aws-crypto/sha256-js": "npm:5.2.0" - "@aws-sdk/core": "npm:3.940.0" - "@aws-sdk/credential-provider-node": "npm:3.940.0" - "@aws-sdk/middleware-host-header": "npm:3.936.0" - "@aws-sdk/middleware-logger": "npm:3.936.0" - "@aws-sdk/middleware-recursion-detection": "npm:3.936.0" - "@aws-sdk/middleware-user-agent": "npm:3.940.0" - "@aws-sdk/region-config-resolver": "npm:3.936.0" - "@aws-sdk/types": "npm:3.936.0" - "@aws-sdk/util-endpoints": "npm:3.936.0" - "@aws-sdk/util-user-agent-browser": "npm:3.936.0" - "@aws-sdk/util-user-agent-node": "npm:3.940.0" - "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" - "@smithy/fetch-http-handler": "npm:^5.3.6" - "@smithy/hash-node": "npm:^4.2.5" - "@smithy/invalid-dependency": "npm:^4.2.5" - "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" - "@smithy/middleware-serde": "npm:^4.2.6" - "@smithy/middleware-stack": "npm:^4.2.5" - "@smithy/node-config-provider": "npm:^4.3.5" - "@smithy/node-http-handler": "npm:^4.4.5" - "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" - "@smithy/types": "npm:^4.9.0" - "@smithy/url-parser": "npm:^4.2.5" + "@aws-sdk/core": "npm:^3.973.5" + "@aws-sdk/credential-provider-node": "npm:^3.972.4" + "@aws-sdk/middleware-host-header": "npm:^3.972.3" + "@aws-sdk/middleware-logger": "npm:^3.972.3" + "@aws-sdk/middleware-recursion-detection": "npm:^3.972.3" + "@aws-sdk/middleware-user-agent": "npm:^3.972.5" + "@aws-sdk/region-config-resolver": "npm:^3.972.3" + "@aws-sdk/types": "npm:^3.973.1" + "@aws-sdk/util-endpoints": "npm:3.980.0" + "@aws-sdk/util-user-agent-browser": "npm:^3.972.3" + "@aws-sdk/util-user-agent-node": "npm:^3.972.3" + "@smithy/config-resolver": "npm:^4.4.6" + "@smithy/core": "npm:^3.22.0" + "@smithy/fetch-http-handler": "npm:^5.3.9" + "@smithy/hash-node": "npm:^4.2.8" + "@smithy/invalid-dependency": "npm:^4.2.8" + "@smithy/middleware-content-length": "npm:^4.2.8" + "@smithy/middleware-endpoint": "npm:^4.4.12" + "@smithy/middleware-retry": "npm:^4.4.29" + "@smithy/middleware-serde": "npm:^4.2.9" + "@smithy/middleware-stack": "npm:^4.2.8" + "@smithy/node-config-provider": "npm:^4.3.8" + "@smithy/node-http-handler": "npm:^4.4.8" + "@smithy/protocol-http": "npm:^5.3.8" + "@smithy/smithy-client": "npm:^4.11.1" + "@smithy/types": "npm:^4.12.0" + "@smithy/url-parser": "npm:^4.2.8" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" - "@smithy/util-endpoints": "npm:^3.2.5" - "@smithy/util-middleware": "npm:^4.2.5" - "@smithy/util-retry": "npm:^4.2.5" + "@smithy/util-defaults-mode-browser": "npm:^4.3.28" + "@smithy/util-defaults-mode-node": "npm:^4.2.31" + "@smithy/util-endpoints": "npm:^3.2.8" + "@smithy/util-middleware": "npm:^4.2.8" + "@smithy/util-retry": "npm:^4.2.8" "@smithy/util-utf8": "npm:^4.2.0" tslib: "npm:^2.6.2" - checksum: 10c0/e49f55a2ddc3dd243de6911848b943b0940318eec17d5e422fa2054e48784874c0093b3424b0b19fce064ed9496751f11ed3ee85258fc6f12deca6409681df03 + checksum: 10c0/b72ff2b4f8a2b9de04395c292b9bcb26a48a16255773321868088f9aec5e1a0c7669d5534056c24b608f3fc8c5dc066197cb86bf9bd80a0bf9f88f26412d0030 languageName: node linkType: hard -"@aws-sdk/client-appsync@npm:^3, @aws-sdk/client-appsync@npm:^3.465.0, @aws-sdk/client-appsync@npm:^3.750.0": - version: 3.940.0 - resolution: "@aws-sdk/client-appsync@npm:3.940.0" +"@aws-sdk/client-appsync@npm:^3, @aws-sdk/client-appsync@npm:^3.465.0, @aws-sdk/client-appsync@npm:^3.936.0": + version: 3.980.0 + resolution: "@aws-sdk/client-appsync@npm:3.980.0" dependencies: "@aws-crypto/sha256-browser": "npm:5.2.0" "@aws-crypto/sha256-js": "npm:5.2.0" - "@aws-sdk/core": "npm:3.940.0" - "@aws-sdk/credential-provider-node": "npm:3.940.0" - "@aws-sdk/middleware-host-header": "npm:3.936.0" - "@aws-sdk/middleware-logger": "npm:3.936.0" - "@aws-sdk/middleware-recursion-detection": "npm:3.936.0" - "@aws-sdk/middleware-user-agent": "npm:3.940.0" - "@aws-sdk/region-config-resolver": "npm:3.936.0" - "@aws-sdk/types": "npm:3.936.0" - "@aws-sdk/util-endpoints": "npm:3.936.0" - "@aws-sdk/util-user-agent-browser": "npm:3.936.0" - "@aws-sdk/util-user-agent-node": "npm:3.940.0" - "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" - "@smithy/fetch-http-handler": "npm:^5.3.6" - "@smithy/hash-node": "npm:^4.2.5" - "@smithy/invalid-dependency": "npm:^4.2.5" - "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" - "@smithy/middleware-serde": "npm:^4.2.6" - "@smithy/middleware-stack": "npm:^4.2.5" - "@smithy/node-config-provider": "npm:^4.3.5" - "@smithy/node-http-handler": "npm:^4.4.5" - "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" - "@smithy/types": "npm:^4.9.0" - "@smithy/url-parser": "npm:^4.2.5" + "@aws-sdk/core": "npm:^3.973.5" + "@aws-sdk/credential-provider-node": "npm:^3.972.4" + "@aws-sdk/middleware-host-header": "npm:^3.972.3" + "@aws-sdk/middleware-logger": "npm:^3.972.3" + "@aws-sdk/middleware-recursion-detection": "npm:^3.972.3" + "@aws-sdk/middleware-user-agent": "npm:^3.972.5" + "@aws-sdk/region-config-resolver": "npm:^3.972.3" + "@aws-sdk/types": "npm:^3.973.1" + "@aws-sdk/util-endpoints": "npm:3.980.0" + "@aws-sdk/util-user-agent-browser": "npm:^3.972.3" + "@aws-sdk/util-user-agent-node": "npm:^3.972.3" + "@smithy/config-resolver": "npm:^4.4.6" + "@smithy/core": "npm:^3.22.0" + "@smithy/fetch-http-handler": "npm:^5.3.9" + "@smithy/hash-node": "npm:^4.2.8" + "@smithy/invalid-dependency": "npm:^4.2.8" + "@smithy/middleware-content-length": "npm:^4.2.8" + "@smithy/middleware-endpoint": "npm:^4.4.12" + "@smithy/middleware-retry": "npm:^4.4.29" + "@smithy/middleware-serde": "npm:^4.2.9" + "@smithy/middleware-stack": "npm:^4.2.8" + "@smithy/node-config-provider": "npm:^4.3.8" + "@smithy/node-http-handler": "npm:^4.4.8" + "@smithy/protocol-http": "npm:^5.3.8" + "@smithy/smithy-client": "npm:^4.11.1" + "@smithy/types": "npm:^4.12.0" + "@smithy/url-parser": "npm:^4.2.8" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" - "@smithy/util-endpoints": "npm:^3.2.5" - "@smithy/util-middleware": "npm:^4.2.5" - "@smithy/util-retry": "npm:^4.2.5" - "@smithy/util-stream": "npm:^4.5.6" + "@smithy/util-defaults-mode-browser": "npm:^4.3.28" + "@smithy/util-defaults-mode-node": "npm:^4.2.31" + "@smithy/util-endpoints": "npm:^3.2.8" + "@smithy/util-middleware": "npm:^4.2.8" + "@smithy/util-retry": "npm:^4.2.8" + "@smithy/util-stream": "npm:^4.5.10" "@smithy/util-utf8": "npm:^4.2.0" tslib: "npm:^2.6.2" - checksum: 10c0/a231f88886ec8d87dc54352db9c0355fb5d915e4acf8692c9c146eb72f692debada70b77d85069b2a6da3ffee9c616c829ad22fd965f8c9f0d98fb192dbc38b7 + checksum: 10c0/8d6d14c1c1805face0b1801307daaf09d2d3175dbe2244eb558fa17e21cc505eb846f09781589bf6ff19555d984a7e888e3a671b700f3b373655345d51687273 languageName: node linkType: hard @@ -2062,1140 +2086,1092 @@ __metadata: linkType: hard "@aws-sdk/client-bedrock-runtime@npm:^3.622.0": - version: 3.941.0 - resolution: "@aws-sdk/client-bedrock-runtime@npm:3.941.0" + version: 3.980.0 + resolution: "@aws-sdk/client-bedrock-runtime@npm:3.980.0" dependencies: "@aws-crypto/sha256-browser": "npm:5.2.0" "@aws-crypto/sha256-js": "npm:5.2.0" - "@aws-sdk/core": "npm:3.940.0" - "@aws-sdk/credential-provider-node": "npm:3.940.0" - "@aws-sdk/eventstream-handler-node": "npm:3.936.0" - "@aws-sdk/middleware-eventstream": "npm:3.936.0" - "@aws-sdk/middleware-host-header": "npm:3.936.0" - "@aws-sdk/middleware-logger": "npm:3.936.0" - "@aws-sdk/middleware-recursion-detection": "npm:3.936.0" - "@aws-sdk/middleware-user-agent": "npm:3.940.0" - "@aws-sdk/middleware-websocket": "npm:3.936.0" - "@aws-sdk/region-config-resolver": "npm:3.936.0" - "@aws-sdk/token-providers": "npm:3.940.0" - "@aws-sdk/types": "npm:3.936.0" - "@aws-sdk/util-endpoints": "npm:3.936.0" - "@aws-sdk/util-user-agent-browser": "npm:3.936.0" - "@aws-sdk/util-user-agent-node": "npm:3.940.0" - "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" - "@smithy/eventstream-serde-browser": "npm:^4.2.5" - "@smithy/eventstream-serde-config-resolver": "npm:^4.3.5" - "@smithy/eventstream-serde-node": "npm:^4.2.5" - "@smithy/fetch-http-handler": "npm:^5.3.6" - "@smithy/hash-node": "npm:^4.2.5" - "@smithy/invalid-dependency": "npm:^4.2.5" - "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" - "@smithy/middleware-serde": "npm:^4.2.6" - "@smithy/middleware-stack": "npm:^4.2.5" - "@smithy/node-config-provider": "npm:^4.3.5" - "@smithy/node-http-handler": "npm:^4.4.5" - "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" - "@smithy/types": "npm:^4.9.0" - "@smithy/url-parser": "npm:^4.2.5" + "@aws-sdk/core": "npm:^3.973.5" + "@aws-sdk/credential-provider-node": "npm:^3.972.4" + "@aws-sdk/eventstream-handler-node": "npm:^3.972.3" + "@aws-sdk/middleware-eventstream": "npm:^3.972.3" + "@aws-sdk/middleware-host-header": "npm:^3.972.3" + "@aws-sdk/middleware-logger": "npm:^3.972.3" + "@aws-sdk/middleware-recursion-detection": "npm:^3.972.3" + "@aws-sdk/middleware-user-agent": "npm:^3.972.5" + "@aws-sdk/middleware-websocket": "npm:^3.972.3" + "@aws-sdk/region-config-resolver": "npm:^3.972.3" + "@aws-sdk/token-providers": "npm:3.980.0" + "@aws-sdk/types": "npm:^3.973.1" + "@aws-sdk/util-endpoints": "npm:3.980.0" + "@aws-sdk/util-user-agent-browser": "npm:^3.972.3" + "@aws-sdk/util-user-agent-node": "npm:^3.972.3" + "@smithy/config-resolver": "npm:^4.4.6" + "@smithy/core": "npm:^3.22.0" + "@smithy/eventstream-serde-browser": "npm:^4.2.8" + "@smithy/eventstream-serde-config-resolver": "npm:^4.3.8" + "@smithy/eventstream-serde-node": "npm:^4.2.8" + "@smithy/fetch-http-handler": "npm:^5.3.9" + "@smithy/hash-node": "npm:^4.2.8" + "@smithy/invalid-dependency": "npm:^4.2.8" + "@smithy/middleware-content-length": "npm:^4.2.8" + "@smithy/middleware-endpoint": "npm:^4.4.12" + "@smithy/middleware-retry": "npm:^4.4.29" + "@smithy/middleware-serde": "npm:^4.2.9" + "@smithy/middleware-stack": "npm:^4.2.8" + "@smithy/node-config-provider": "npm:^4.3.8" + "@smithy/node-http-handler": "npm:^4.4.8" + "@smithy/protocol-http": "npm:^5.3.8" + "@smithy/smithy-client": "npm:^4.11.1" + "@smithy/types": "npm:^4.12.0" + "@smithy/url-parser": "npm:^4.2.8" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" - "@smithy/util-endpoints": "npm:^3.2.5" - "@smithy/util-middleware": "npm:^4.2.5" - "@smithy/util-retry": "npm:^4.2.5" - "@smithy/util-stream": "npm:^4.5.6" + "@smithy/util-defaults-mode-browser": "npm:^4.3.28" + "@smithy/util-defaults-mode-node": "npm:^4.2.31" + "@smithy/util-endpoints": "npm:^3.2.8" + "@smithy/util-middleware": "npm:^4.2.8" + "@smithy/util-retry": "npm:^4.2.8" + "@smithy/util-stream": "npm:^4.5.10" "@smithy/util-utf8": "npm:^4.2.0" tslib: "npm:^2.6.2" - checksum: 10c0/5da4dede993c28318fbf54ebbc299acd3c1cb8b138112f0bd29681dba3511accf3ad3ae60f1c68de1bc4cb457b15d5afefc6b3650faf34038ba2b01e15c45d30 + checksum: 10c0/8067329d9a7ed7c6adc6d76971fd3dd628c270ad828e0524561cb4ab60a7a79a598d162b4f17c97c76108f6440d2dc4b65b272410daad8ac15a0e1994147a2d0 languageName: node linkType: hard "@aws-sdk/client-cloudcontrol@npm:^3": - version: 3.940.0 - resolution: "@aws-sdk/client-cloudcontrol@npm:3.940.0" + version: 3.980.0 + resolution: "@aws-sdk/client-cloudcontrol@npm:3.980.0" dependencies: "@aws-crypto/sha256-browser": "npm:5.2.0" "@aws-crypto/sha256-js": "npm:5.2.0" - "@aws-sdk/core": "npm:3.940.0" - "@aws-sdk/credential-provider-node": "npm:3.940.0" - "@aws-sdk/middleware-host-header": "npm:3.936.0" - "@aws-sdk/middleware-logger": "npm:3.936.0" - "@aws-sdk/middleware-recursion-detection": "npm:3.936.0" - "@aws-sdk/middleware-user-agent": "npm:3.940.0" - "@aws-sdk/region-config-resolver": "npm:3.936.0" - "@aws-sdk/types": "npm:3.936.0" - "@aws-sdk/util-endpoints": "npm:3.936.0" - "@aws-sdk/util-user-agent-browser": "npm:3.936.0" - "@aws-sdk/util-user-agent-node": "npm:3.940.0" - "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" - "@smithy/fetch-http-handler": "npm:^5.3.6" - "@smithy/hash-node": "npm:^4.2.5" - "@smithy/invalid-dependency": "npm:^4.2.5" - "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" - "@smithy/middleware-serde": "npm:^4.2.6" - "@smithy/middleware-stack": "npm:^4.2.5" - "@smithy/node-config-provider": "npm:^4.3.5" - "@smithy/node-http-handler": "npm:^4.4.5" - "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" - "@smithy/types": "npm:^4.9.0" - "@smithy/url-parser": "npm:^4.2.5" + "@aws-sdk/core": "npm:^3.973.5" + "@aws-sdk/credential-provider-node": "npm:^3.972.4" + "@aws-sdk/middleware-host-header": "npm:^3.972.3" + "@aws-sdk/middleware-logger": "npm:^3.972.3" + "@aws-sdk/middleware-recursion-detection": "npm:^3.972.3" + "@aws-sdk/middleware-user-agent": "npm:^3.972.5" + "@aws-sdk/region-config-resolver": "npm:^3.972.3" + "@aws-sdk/types": "npm:^3.973.1" + "@aws-sdk/util-endpoints": "npm:3.980.0" + "@aws-sdk/util-user-agent-browser": "npm:^3.972.3" + "@aws-sdk/util-user-agent-node": "npm:^3.972.3" + "@smithy/config-resolver": "npm:^4.4.6" + "@smithy/core": "npm:^3.22.0" + "@smithy/fetch-http-handler": "npm:^5.3.9" + "@smithy/hash-node": "npm:^4.2.8" + "@smithy/invalid-dependency": "npm:^4.2.8" + "@smithy/middleware-content-length": "npm:^4.2.8" + "@smithy/middleware-endpoint": "npm:^4.4.12" + "@smithy/middleware-retry": "npm:^4.4.29" + "@smithy/middleware-serde": "npm:^4.2.9" + "@smithy/middleware-stack": "npm:^4.2.8" + "@smithy/node-config-provider": "npm:^4.3.8" + "@smithy/node-http-handler": "npm:^4.4.8" + "@smithy/protocol-http": "npm:^5.3.8" + "@smithy/smithy-client": "npm:^4.11.1" + "@smithy/types": "npm:^4.12.0" + "@smithy/url-parser": "npm:^4.2.8" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" - "@smithy/util-endpoints": "npm:^3.2.5" - "@smithy/util-middleware": "npm:^4.2.5" - "@smithy/util-retry": "npm:^4.2.5" + "@smithy/util-defaults-mode-browser": "npm:^4.3.28" + "@smithy/util-defaults-mode-node": "npm:^4.2.31" + "@smithy/util-endpoints": "npm:^3.2.8" + "@smithy/util-middleware": "npm:^4.2.8" + "@smithy/util-retry": "npm:^4.2.8" "@smithy/util-utf8": "npm:^4.2.0" - "@smithy/util-waiter": "npm:^4.2.5" + "@smithy/util-waiter": "npm:^4.2.8" tslib: "npm:^2.6.2" - checksum: 10c0/cf0b4c6c2d0d4dd7f33be2db414550b4f52a3c77eb1126da38f14d1237bfafb6cad113d5c886d1522ca4717469a43a06429d67c7315a1e4b486d7df52be4d49c + checksum: 10c0/fd4bcd8809fd5a686a8535a1540803cbcbef26b66ed4378b348d02e9866059cc35b97e4e321fbda5b17cc5c666cba2a259fbb656b85548868aa56404a47ff8f3 languageName: node linkType: hard "@aws-sdk/client-cloudformation@npm:^3, @aws-sdk/client-cloudformation@npm:^3.465.0": - version: 3.940.0 - resolution: "@aws-sdk/client-cloudformation@npm:3.940.0" + version: 3.980.0 + resolution: "@aws-sdk/client-cloudformation@npm:3.980.0" dependencies: "@aws-crypto/sha256-browser": "npm:5.2.0" "@aws-crypto/sha256-js": "npm:5.2.0" - "@aws-sdk/core": "npm:3.940.0" - "@aws-sdk/credential-provider-node": "npm:3.940.0" - "@aws-sdk/middleware-host-header": "npm:3.936.0" - "@aws-sdk/middleware-logger": "npm:3.936.0" - "@aws-sdk/middleware-recursion-detection": "npm:3.936.0" - "@aws-sdk/middleware-user-agent": "npm:3.940.0" - "@aws-sdk/region-config-resolver": "npm:3.936.0" - "@aws-sdk/types": "npm:3.936.0" - "@aws-sdk/util-endpoints": "npm:3.936.0" - "@aws-sdk/util-user-agent-browser": "npm:3.936.0" - "@aws-sdk/util-user-agent-node": "npm:3.940.0" - "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" - "@smithy/fetch-http-handler": "npm:^5.3.6" - "@smithy/hash-node": "npm:^4.2.5" - "@smithy/invalid-dependency": "npm:^4.2.5" - "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" - "@smithy/middleware-serde": "npm:^4.2.6" - "@smithy/middleware-stack": "npm:^4.2.5" - "@smithy/node-config-provider": "npm:^4.3.5" - "@smithy/node-http-handler": "npm:^4.4.5" - "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" - "@smithy/types": "npm:^4.9.0" - "@smithy/url-parser": "npm:^4.2.5" + "@aws-sdk/core": "npm:^3.973.5" + "@aws-sdk/credential-provider-node": "npm:^3.972.4" + "@aws-sdk/middleware-host-header": "npm:^3.972.3" + "@aws-sdk/middleware-logger": "npm:^3.972.3" + "@aws-sdk/middleware-recursion-detection": "npm:^3.972.3" + "@aws-sdk/middleware-user-agent": "npm:^3.972.5" + "@aws-sdk/region-config-resolver": "npm:^3.972.3" + "@aws-sdk/types": "npm:^3.973.1" + "@aws-sdk/util-endpoints": "npm:3.980.0" + "@aws-sdk/util-user-agent-browser": "npm:^3.972.3" + "@aws-sdk/util-user-agent-node": "npm:^3.972.3" + "@smithy/config-resolver": "npm:^4.4.6" + "@smithy/core": "npm:^3.22.0" + "@smithy/fetch-http-handler": "npm:^5.3.9" + "@smithy/hash-node": "npm:^4.2.8" + "@smithy/invalid-dependency": "npm:^4.2.8" + "@smithy/middleware-content-length": "npm:^4.2.8" + "@smithy/middleware-endpoint": "npm:^4.4.12" + "@smithy/middleware-retry": "npm:^4.4.29" + "@smithy/middleware-serde": "npm:^4.2.9" + "@smithy/middleware-stack": "npm:^4.2.8" + "@smithy/node-config-provider": "npm:^4.3.8" + "@smithy/node-http-handler": "npm:^4.4.8" + "@smithy/protocol-http": "npm:^5.3.8" + "@smithy/smithy-client": "npm:^4.11.1" + "@smithy/types": "npm:^4.12.0" + "@smithy/url-parser": "npm:^4.2.8" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" - "@smithy/util-endpoints": "npm:^3.2.5" - "@smithy/util-middleware": "npm:^4.2.5" - "@smithy/util-retry": "npm:^4.2.5" + "@smithy/util-defaults-mode-browser": "npm:^4.3.28" + "@smithy/util-defaults-mode-node": "npm:^4.2.31" + "@smithy/util-endpoints": "npm:^3.2.8" + "@smithy/util-middleware": "npm:^4.2.8" + "@smithy/util-retry": "npm:^4.2.8" "@smithy/util-utf8": "npm:^4.2.0" - "@smithy/util-waiter": "npm:^4.2.5" + "@smithy/util-waiter": "npm:^4.2.8" tslib: "npm:^2.6.2" - checksum: 10c0/44208d24d48772de4269fcd09afb4d4d5fe08b1e61fae0c73321e69f22b23b9cf4513ef95e61e8ed40a7413328dbfccefe7666c83d1392a6dd761606e2d07023 + checksum: 10c0/21f5d4d21d61bdd6ff6895846b9eb6be285bbf36c623febd7feceb326db386aa69d3e17a3afb5a557ca838e73b0c98732927fc3c930386d9d414a84df45fb1ce languageName: node linkType: hard "@aws-sdk/client-cloudwatch-logs@npm:^3": - version: 3.940.0 - resolution: "@aws-sdk/client-cloudwatch-logs@npm:3.940.0" + version: 3.980.0 + resolution: "@aws-sdk/client-cloudwatch-logs@npm:3.980.0" dependencies: "@aws-crypto/sha256-browser": "npm:5.2.0" "@aws-crypto/sha256-js": "npm:5.2.0" - "@aws-sdk/core": "npm:3.940.0" - "@aws-sdk/credential-provider-node": "npm:3.940.0" - "@aws-sdk/middleware-host-header": "npm:3.936.0" - "@aws-sdk/middleware-logger": "npm:3.936.0" - "@aws-sdk/middleware-recursion-detection": "npm:3.936.0" - "@aws-sdk/middleware-user-agent": "npm:3.940.0" - "@aws-sdk/region-config-resolver": "npm:3.936.0" - "@aws-sdk/types": "npm:3.936.0" - "@aws-sdk/util-endpoints": "npm:3.936.0" - "@aws-sdk/util-user-agent-browser": "npm:3.936.0" - "@aws-sdk/util-user-agent-node": "npm:3.940.0" - "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" - "@smithy/eventstream-serde-browser": "npm:^4.2.5" - "@smithy/eventstream-serde-config-resolver": "npm:^4.3.5" - "@smithy/eventstream-serde-node": "npm:^4.2.5" - "@smithy/fetch-http-handler": "npm:^5.3.6" - "@smithy/hash-node": "npm:^4.2.5" - "@smithy/invalid-dependency": "npm:^4.2.5" - "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" - "@smithy/middleware-serde": "npm:^4.2.6" - "@smithy/middleware-stack": "npm:^4.2.5" - "@smithy/node-config-provider": "npm:^4.3.5" - "@smithy/node-http-handler": "npm:^4.4.5" - "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" - "@smithy/types": "npm:^4.9.0" - "@smithy/url-parser": "npm:^4.2.5" + "@aws-sdk/core": "npm:^3.973.5" + "@aws-sdk/credential-provider-node": "npm:^3.972.4" + "@aws-sdk/middleware-host-header": "npm:^3.972.3" + "@aws-sdk/middleware-logger": "npm:^3.972.3" + "@aws-sdk/middleware-recursion-detection": "npm:^3.972.3" + "@aws-sdk/middleware-user-agent": "npm:^3.972.5" + "@aws-sdk/region-config-resolver": "npm:^3.972.3" + "@aws-sdk/types": "npm:^3.973.1" + "@aws-sdk/util-endpoints": "npm:3.980.0" + "@aws-sdk/util-user-agent-browser": "npm:^3.972.3" + "@aws-sdk/util-user-agent-node": "npm:^3.972.3" + "@smithy/config-resolver": "npm:^4.4.6" + "@smithy/core": "npm:^3.22.0" + "@smithy/eventstream-serde-browser": "npm:^4.2.8" + "@smithy/eventstream-serde-config-resolver": "npm:^4.3.8" + "@smithy/eventstream-serde-node": "npm:^4.2.8" + "@smithy/fetch-http-handler": "npm:^5.3.9" + "@smithy/hash-node": "npm:^4.2.8" + "@smithy/invalid-dependency": "npm:^4.2.8" + "@smithy/middleware-content-length": "npm:^4.2.8" + "@smithy/middleware-endpoint": "npm:^4.4.12" + "@smithy/middleware-retry": "npm:^4.4.29" + "@smithy/middleware-serde": "npm:^4.2.9" + "@smithy/middleware-stack": "npm:^4.2.8" + "@smithy/node-config-provider": "npm:^4.3.8" + "@smithy/node-http-handler": "npm:^4.4.8" + "@smithy/protocol-http": "npm:^5.3.8" + "@smithy/smithy-client": "npm:^4.11.1" + "@smithy/types": "npm:^4.12.0" + "@smithy/url-parser": "npm:^4.2.8" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" - "@smithy/util-endpoints": "npm:^3.2.5" - "@smithy/util-middleware": "npm:^4.2.5" - "@smithy/util-retry": "npm:^4.2.5" + "@smithy/util-defaults-mode-browser": "npm:^4.3.28" + "@smithy/util-defaults-mode-node": "npm:^4.2.31" + "@smithy/util-endpoints": "npm:^3.2.8" + "@smithy/util-middleware": "npm:^4.2.8" + "@smithy/util-retry": "npm:^4.2.8" "@smithy/util-utf8": "npm:^4.2.0" tslib: "npm:^2.6.2" - checksum: 10c0/9b6c2027fd119b9064dc23f5020fd56612f9bec9612ee35d5103d7cbe8bfaf3d3407d764b569599d062c91cf4e488c347b1887f3779ac064a028d9fa586ed9c8 + checksum: 10c0/03716cd78e3332b7bc23d405dd37da2da9f9f372b7e32b46108a0e66552e016ed1109c7340118c163755f3afb2d21a643568984d63dff83e5dee8978d2c3717d languageName: node linkType: hard "@aws-sdk/client-codebuild@npm:^3": - version: 3.940.0 - resolution: "@aws-sdk/client-codebuild@npm:3.940.0" + version: 3.980.0 + resolution: "@aws-sdk/client-codebuild@npm:3.980.0" dependencies: "@aws-crypto/sha256-browser": "npm:5.2.0" "@aws-crypto/sha256-js": "npm:5.2.0" - "@aws-sdk/core": "npm:3.940.0" - "@aws-sdk/credential-provider-node": "npm:3.940.0" - "@aws-sdk/middleware-host-header": "npm:3.936.0" - "@aws-sdk/middleware-logger": "npm:3.936.0" - "@aws-sdk/middleware-recursion-detection": "npm:3.936.0" - "@aws-sdk/middleware-user-agent": "npm:3.940.0" - "@aws-sdk/region-config-resolver": "npm:3.936.0" - "@aws-sdk/types": "npm:3.936.0" - "@aws-sdk/util-endpoints": "npm:3.936.0" - "@aws-sdk/util-user-agent-browser": "npm:3.936.0" - "@aws-sdk/util-user-agent-node": "npm:3.940.0" - "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" - "@smithy/fetch-http-handler": "npm:^5.3.6" - "@smithy/hash-node": "npm:^4.2.5" - "@smithy/invalid-dependency": "npm:^4.2.5" - "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" - "@smithy/middleware-serde": "npm:^4.2.6" - "@smithy/middleware-stack": "npm:^4.2.5" - "@smithy/node-config-provider": "npm:^4.3.5" - "@smithy/node-http-handler": "npm:^4.4.5" - "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" - "@smithy/types": "npm:^4.9.0" - "@smithy/url-parser": "npm:^4.2.5" + "@aws-sdk/core": "npm:^3.973.5" + "@aws-sdk/credential-provider-node": "npm:^3.972.4" + "@aws-sdk/middleware-host-header": "npm:^3.972.3" + "@aws-sdk/middleware-logger": "npm:^3.972.3" + "@aws-sdk/middleware-recursion-detection": "npm:^3.972.3" + "@aws-sdk/middleware-user-agent": "npm:^3.972.5" + "@aws-sdk/region-config-resolver": "npm:^3.972.3" + "@aws-sdk/types": "npm:^3.973.1" + "@aws-sdk/util-endpoints": "npm:3.980.0" + "@aws-sdk/util-user-agent-browser": "npm:^3.972.3" + "@aws-sdk/util-user-agent-node": "npm:^3.972.3" + "@smithy/config-resolver": "npm:^4.4.6" + "@smithy/core": "npm:^3.22.0" + "@smithy/fetch-http-handler": "npm:^5.3.9" + "@smithy/hash-node": "npm:^4.2.8" + "@smithy/invalid-dependency": "npm:^4.2.8" + "@smithy/middleware-content-length": "npm:^4.2.8" + "@smithy/middleware-endpoint": "npm:^4.4.12" + "@smithy/middleware-retry": "npm:^4.4.29" + "@smithy/middleware-serde": "npm:^4.2.9" + "@smithy/middleware-stack": "npm:^4.2.8" + "@smithy/node-config-provider": "npm:^4.3.8" + "@smithy/node-http-handler": "npm:^4.4.8" + "@smithy/protocol-http": "npm:^5.3.8" + "@smithy/smithy-client": "npm:^4.11.1" + "@smithy/types": "npm:^4.12.0" + "@smithy/url-parser": "npm:^4.2.8" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" - "@smithy/util-endpoints": "npm:^3.2.5" - "@smithy/util-middleware": "npm:^4.2.5" - "@smithy/util-retry": "npm:^4.2.5" + "@smithy/util-defaults-mode-browser": "npm:^4.3.28" + "@smithy/util-defaults-mode-node": "npm:^4.2.31" + "@smithy/util-endpoints": "npm:^3.2.8" + "@smithy/util-middleware": "npm:^4.2.8" + "@smithy/util-retry": "npm:^4.2.8" "@smithy/util-utf8": "npm:^4.2.0" tslib: "npm:^2.6.2" - checksum: 10c0/ec44169a3c46f02e6a03d4f365a6602625d2eeb331a396b325af50cfcd67ce0c796c05d313c9c6b4a00cf4af886e9d96e140b9557b92367ce4852a21ab995c94 + checksum: 10c0/d9bc2d0ebc536c71d6873a17c4b08afcce4593011a9f555316603337a05e493a36de9f59b022f8c326c31ff07d67f033f1b3a40075836b3768c8c8f6136fe04a languageName: node linkType: hard -"@aws-sdk/client-cognito-identity@npm:3.940.0": - version: 3.940.0 - resolution: "@aws-sdk/client-cognito-identity@npm:3.940.0" +"@aws-sdk/client-cognito-identity@npm:3.980.0": + version: 3.980.0 + resolution: "@aws-sdk/client-cognito-identity@npm:3.980.0" dependencies: "@aws-crypto/sha256-browser": "npm:5.2.0" "@aws-crypto/sha256-js": "npm:5.2.0" - "@aws-sdk/core": "npm:3.940.0" - "@aws-sdk/credential-provider-node": "npm:3.940.0" - "@aws-sdk/middleware-host-header": "npm:3.936.0" - "@aws-sdk/middleware-logger": "npm:3.936.0" - "@aws-sdk/middleware-recursion-detection": "npm:3.936.0" - "@aws-sdk/middleware-user-agent": "npm:3.940.0" - "@aws-sdk/region-config-resolver": "npm:3.936.0" - "@aws-sdk/types": "npm:3.936.0" - "@aws-sdk/util-endpoints": "npm:3.936.0" - "@aws-sdk/util-user-agent-browser": "npm:3.936.0" - "@aws-sdk/util-user-agent-node": "npm:3.940.0" - "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" - "@smithy/fetch-http-handler": "npm:^5.3.6" - "@smithy/hash-node": "npm:^4.2.5" - "@smithy/invalid-dependency": "npm:^4.2.5" - "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" - "@smithy/middleware-serde": "npm:^4.2.6" - "@smithy/middleware-stack": "npm:^4.2.5" - "@smithy/node-config-provider": "npm:^4.3.5" - "@smithy/node-http-handler": "npm:^4.4.5" - "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" - "@smithy/types": "npm:^4.9.0" - "@smithy/url-parser": "npm:^4.2.5" + "@aws-sdk/core": "npm:^3.973.5" + "@aws-sdk/credential-provider-node": "npm:^3.972.4" + "@aws-sdk/middleware-host-header": "npm:^3.972.3" + "@aws-sdk/middleware-logger": "npm:^3.972.3" + "@aws-sdk/middleware-recursion-detection": "npm:^3.972.3" + "@aws-sdk/middleware-user-agent": "npm:^3.972.5" + "@aws-sdk/region-config-resolver": "npm:^3.972.3" + "@aws-sdk/types": "npm:^3.973.1" + "@aws-sdk/util-endpoints": "npm:3.980.0" + "@aws-sdk/util-user-agent-browser": "npm:^3.972.3" + "@aws-sdk/util-user-agent-node": "npm:^3.972.3" + "@smithy/config-resolver": "npm:^4.4.6" + "@smithy/core": "npm:^3.22.0" + "@smithy/fetch-http-handler": "npm:^5.3.9" + "@smithy/hash-node": "npm:^4.2.8" + "@smithy/invalid-dependency": "npm:^4.2.8" + "@smithy/middleware-content-length": "npm:^4.2.8" + "@smithy/middleware-endpoint": "npm:^4.4.12" + "@smithy/middleware-retry": "npm:^4.4.29" + "@smithy/middleware-serde": "npm:^4.2.9" + "@smithy/middleware-stack": "npm:^4.2.8" + "@smithy/node-config-provider": "npm:^4.3.8" + "@smithy/node-http-handler": "npm:^4.4.8" + "@smithy/protocol-http": "npm:^5.3.8" + "@smithy/smithy-client": "npm:^4.11.1" + "@smithy/types": "npm:^4.12.0" + "@smithy/url-parser": "npm:^4.2.8" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" - "@smithy/util-endpoints": "npm:^3.2.5" - "@smithy/util-middleware": "npm:^4.2.5" - "@smithy/util-retry": "npm:^4.2.5" + "@smithy/util-defaults-mode-browser": "npm:^4.3.28" + "@smithy/util-defaults-mode-node": "npm:^4.2.31" + "@smithy/util-endpoints": "npm:^3.2.8" + "@smithy/util-middleware": "npm:^4.2.8" + "@smithy/util-retry": "npm:^4.2.8" "@smithy/util-utf8": "npm:^4.2.0" tslib: "npm:^2.6.2" - checksum: 10c0/6ebd33c5832b8e4a9fce5224f96c0c659a4ad5352619440378699c3f89a27c7db77b89b0db89a1607eb1555df9e4db2a4ce298ebfb7858bbafcce319950d9b5e + checksum: 10c0/7a247502e8346882d6f656bdc8c17f2101ef20b500eda51b088ae2e8cf815e67eeffb3aa3689f063465385e53af162e4ec632ce7d0034259d85f2b27374c328e languageName: node linkType: hard "@aws-sdk/client-dynamodb@npm:^3.682.0": - version: 3.940.0 - resolution: "@aws-sdk/client-dynamodb@npm:3.940.0" + version: 3.980.0 + resolution: "@aws-sdk/client-dynamodb@npm:3.980.0" dependencies: "@aws-crypto/sha256-browser": "npm:5.2.0" "@aws-crypto/sha256-js": "npm:5.2.0" - "@aws-sdk/core": "npm:3.940.0" - "@aws-sdk/credential-provider-node": "npm:3.940.0" - "@aws-sdk/middleware-endpoint-discovery": "npm:3.936.0" - "@aws-sdk/middleware-host-header": "npm:3.936.0" - "@aws-sdk/middleware-logger": "npm:3.936.0" - "@aws-sdk/middleware-recursion-detection": "npm:3.936.0" - "@aws-sdk/middleware-user-agent": "npm:3.940.0" - "@aws-sdk/region-config-resolver": "npm:3.936.0" - "@aws-sdk/types": "npm:3.936.0" - "@aws-sdk/util-endpoints": "npm:3.936.0" - "@aws-sdk/util-user-agent-browser": "npm:3.936.0" - "@aws-sdk/util-user-agent-node": "npm:3.940.0" - "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" - "@smithy/fetch-http-handler": "npm:^5.3.6" - "@smithy/hash-node": "npm:^4.2.5" - "@smithy/invalid-dependency": "npm:^4.2.5" - "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" - "@smithy/middleware-serde": "npm:^4.2.6" - "@smithy/middleware-stack": "npm:^4.2.5" - "@smithy/node-config-provider": "npm:^4.3.5" - "@smithy/node-http-handler": "npm:^4.4.5" - "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" - "@smithy/types": "npm:^4.9.0" - "@smithy/url-parser": "npm:^4.2.5" + "@aws-sdk/core": "npm:^3.973.5" + "@aws-sdk/credential-provider-node": "npm:^3.972.4" + "@aws-sdk/dynamodb-codec": "npm:^3.972.5" + "@aws-sdk/middleware-endpoint-discovery": "npm:^3.972.3" + "@aws-sdk/middleware-host-header": "npm:^3.972.3" + "@aws-sdk/middleware-logger": "npm:^3.972.3" + "@aws-sdk/middleware-recursion-detection": "npm:^3.972.3" + "@aws-sdk/middleware-user-agent": "npm:^3.972.5" + "@aws-sdk/region-config-resolver": "npm:^3.972.3" + "@aws-sdk/types": "npm:^3.973.1" + "@aws-sdk/util-endpoints": "npm:3.980.0" + "@aws-sdk/util-user-agent-browser": "npm:^3.972.3" + "@aws-sdk/util-user-agent-node": "npm:^3.972.3" + "@smithy/config-resolver": "npm:^4.4.6" + "@smithy/core": "npm:^3.22.0" + "@smithy/fetch-http-handler": "npm:^5.3.9" + "@smithy/hash-node": "npm:^4.2.8" + "@smithy/invalid-dependency": "npm:^4.2.8" + "@smithy/middleware-content-length": "npm:^4.2.8" + "@smithy/middleware-endpoint": "npm:^4.4.12" + "@smithy/middleware-retry": "npm:^4.4.29" + "@smithy/middleware-serde": "npm:^4.2.9" + "@smithy/middleware-stack": "npm:^4.2.8" + "@smithy/node-config-provider": "npm:^4.3.8" + "@smithy/node-http-handler": "npm:^4.4.8" + "@smithy/protocol-http": "npm:^5.3.8" + "@smithy/smithy-client": "npm:^4.11.1" + "@smithy/types": "npm:^4.12.0" + "@smithy/url-parser": "npm:^4.2.8" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" - "@smithy/util-endpoints": "npm:^3.2.5" - "@smithy/util-middleware": "npm:^4.2.5" - "@smithy/util-retry": "npm:^4.2.5" + "@smithy/util-defaults-mode-browser": "npm:^4.3.28" + "@smithy/util-defaults-mode-node": "npm:^4.2.31" + "@smithy/util-endpoints": "npm:^3.2.8" + "@smithy/util-middleware": "npm:^4.2.8" + "@smithy/util-retry": "npm:^4.2.8" "@smithy/util-utf8": "npm:^4.2.0" - "@smithy/util-waiter": "npm:^4.2.5" + "@smithy/util-waiter": "npm:^4.2.8" tslib: "npm:^2.6.2" - checksum: 10c0/36a11c205a1c3f2a4327510b6dbd073fc729c64b91214952f1d6647b49afc2f4cc375ac9cb65e0abea79f192b7b74b0fae89eccf46f699b1b742c765cae4ed08 + checksum: 10c0/07ee61f890e5157be2f66a4e6d4c8274171c7c826c5906a3a1e938ea0b177f23772253a7569abdb131091feb5e61da3c66e3bd8e2f3883444ac28164e31e0546 languageName: node linkType: hard "@aws-sdk/client-ec2@npm:^3": - version: 3.940.0 - resolution: "@aws-sdk/client-ec2@npm:3.940.0" + version: 3.980.0 + resolution: "@aws-sdk/client-ec2@npm:3.980.0" dependencies: "@aws-crypto/sha256-browser": "npm:5.2.0" "@aws-crypto/sha256-js": "npm:5.2.0" - "@aws-sdk/core": "npm:3.940.0" - "@aws-sdk/credential-provider-node": "npm:3.940.0" - "@aws-sdk/middleware-host-header": "npm:3.936.0" - "@aws-sdk/middleware-logger": "npm:3.936.0" - "@aws-sdk/middleware-recursion-detection": "npm:3.936.0" - "@aws-sdk/middleware-sdk-ec2": "npm:3.936.0" - "@aws-sdk/middleware-user-agent": "npm:3.940.0" - "@aws-sdk/region-config-resolver": "npm:3.936.0" - "@aws-sdk/types": "npm:3.936.0" - "@aws-sdk/util-endpoints": "npm:3.936.0" - "@aws-sdk/util-user-agent-browser": "npm:3.936.0" - "@aws-sdk/util-user-agent-node": "npm:3.940.0" - "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" - "@smithy/fetch-http-handler": "npm:^5.3.6" - "@smithy/hash-node": "npm:^4.2.5" - "@smithy/invalid-dependency": "npm:^4.2.5" - "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" - "@smithy/middleware-serde": "npm:^4.2.6" - "@smithy/middleware-stack": "npm:^4.2.5" - "@smithy/node-config-provider": "npm:^4.3.5" - "@smithy/node-http-handler": "npm:^4.4.5" - "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" - "@smithy/types": "npm:^4.9.0" - "@smithy/url-parser": "npm:^4.2.5" + "@aws-sdk/core": "npm:^3.973.5" + "@aws-sdk/credential-provider-node": "npm:^3.972.4" + "@aws-sdk/middleware-host-header": "npm:^3.972.3" + "@aws-sdk/middleware-logger": "npm:^3.972.3" + "@aws-sdk/middleware-recursion-detection": "npm:^3.972.3" + "@aws-sdk/middleware-sdk-ec2": "npm:^3.972.5" + "@aws-sdk/middleware-user-agent": "npm:^3.972.5" + "@aws-sdk/region-config-resolver": "npm:^3.972.3" + "@aws-sdk/types": "npm:^3.973.1" + "@aws-sdk/util-endpoints": "npm:3.980.0" + "@aws-sdk/util-user-agent-browser": "npm:^3.972.3" + "@aws-sdk/util-user-agent-node": "npm:^3.972.3" + "@smithy/config-resolver": "npm:^4.4.6" + "@smithy/core": "npm:^3.22.0" + "@smithy/fetch-http-handler": "npm:^5.3.9" + "@smithy/hash-node": "npm:^4.2.8" + "@smithy/invalid-dependency": "npm:^4.2.8" + "@smithy/middleware-content-length": "npm:^4.2.8" + "@smithy/middleware-endpoint": "npm:^4.4.12" + "@smithy/middleware-retry": "npm:^4.4.29" + "@smithy/middleware-serde": "npm:^4.2.9" + "@smithy/middleware-stack": "npm:^4.2.8" + "@smithy/node-config-provider": "npm:^4.3.8" + "@smithy/node-http-handler": "npm:^4.4.8" + "@smithy/protocol-http": "npm:^5.3.8" + "@smithy/smithy-client": "npm:^4.11.1" + "@smithy/types": "npm:^4.12.0" + "@smithy/url-parser": "npm:^4.2.8" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" - "@smithy/util-endpoints": "npm:^3.2.5" - "@smithy/util-middleware": "npm:^4.2.5" - "@smithy/util-retry": "npm:^4.2.5" + "@smithy/util-defaults-mode-browser": "npm:^4.3.28" + "@smithy/util-defaults-mode-node": "npm:^4.2.31" + "@smithy/util-endpoints": "npm:^3.2.8" + "@smithy/util-middleware": "npm:^4.2.8" + "@smithy/util-retry": "npm:^4.2.8" "@smithy/util-utf8": "npm:^4.2.0" - "@smithy/util-waiter": "npm:^4.2.5" + "@smithy/util-waiter": "npm:^4.2.8" tslib: "npm:^2.6.2" - checksum: 10c0/c4a6104b403fb08c76db2dff4fb3f7d52ff6a96184d2f120f9505639418daeb848c0dfb7c49f49ad7d6c046ce2ca88409bec8f4d0c5f8df7adf76a147f1b1175 + checksum: 10c0/1a916e6677d75ca06c81ef30c8b195f5efe7151799a0abb8f524027c62e6e15d2f187b14fec32cbe67fdc80334710ac8c8abdd38978405d499bce5a2f05d9a83 languageName: node linkType: hard "@aws-sdk/client-ecr@npm:^3": - version: 3.940.0 - resolution: "@aws-sdk/client-ecr@npm:3.940.0" + version: 3.980.0 + resolution: "@aws-sdk/client-ecr@npm:3.980.0" dependencies: "@aws-crypto/sha256-browser": "npm:5.2.0" "@aws-crypto/sha256-js": "npm:5.2.0" - "@aws-sdk/core": "npm:3.940.0" - "@aws-sdk/credential-provider-node": "npm:3.940.0" - "@aws-sdk/middleware-host-header": "npm:3.936.0" - "@aws-sdk/middleware-logger": "npm:3.936.0" - "@aws-sdk/middleware-recursion-detection": "npm:3.936.0" - "@aws-sdk/middleware-user-agent": "npm:3.940.0" - "@aws-sdk/region-config-resolver": "npm:3.936.0" - "@aws-sdk/types": "npm:3.936.0" - "@aws-sdk/util-endpoints": "npm:3.936.0" - "@aws-sdk/util-user-agent-browser": "npm:3.936.0" - "@aws-sdk/util-user-agent-node": "npm:3.940.0" - "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" - "@smithy/fetch-http-handler": "npm:^5.3.6" - "@smithy/hash-node": "npm:^4.2.5" - "@smithy/invalid-dependency": "npm:^4.2.5" - "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" - "@smithy/middleware-serde": "npm:^4.2.6" - "@smithy/middleware-stack": "npm:^4.2.5" - "@smithy/node-config-provider": "npm:^4.3.5" - "@smithy/node-http-handler": "npm:^4.4.5" - "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" - "@smithy/types": "npm:^4.9.0" - "@smithy/url-parser": "npm:^4.2.5" + "@aws-sdk/core": "npm:^3.973.5" + "@aws-sdk/credential-provider-node": "npm:^3.972.4" + "@aws-sdk/middleware-host-header": "npm:^3.972.3" + "@aws-sdk/middleware-logger": "npm:^3.972.3" + "@aws-sdk/middleware-recursion-detection": "npm:^3.972.3" + "@aws-sdk/middleware-user-agent": "npm:^3.972.5" + "@aws-sdk/region-config-resolver": "npm:^3.972.3" + "@aws-sdk/types": "npm:^3.973.1" + "@aws-sdk/util-endpoints": "npm:3.980.0" + "@aws-sdk/util-user-agent-browser": "npm:^3.972.3" + "@aws-sdk/util-user-agent-node": "npm:^3.972.3" + "@smithy/config-resolver": "npm:^4.4.6" + "@smithy/core": "npm:^3.22.0" + "@smithy/fetch-http-handler": "npm:^5.3.9" + "@smithy/hash-node": "npm:^4.2.8" + "@smithy/invalid-dependency": "npm:^4.2.8" + "@smithy/middleware-content-length": "npm:^4.2.8" + "@smithy/middleware-endpoint": "npm:^4.4.12" + "@smithy/middleware-retry": "npm:^4.4.29" + "@smithy/middleware-serde": "npm:^4.2.9" + "@smithy/middleware-stack": "npm:^4.2.8" + "@smithy/node-config-provider": "npm:^4.3.8" + "@smithy/node-http-handler": "npm:^4.4.8" + "@smithy/protocol-http": "npm:^5.3.8" + "@smithy/smithy-client": "npm:^4.11.1" + "@smithy/types": "npm:^4.12.0" + "@smithy/url-parser": "npm:^4.2.8" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" - "@smithy/util-endpoints": "npm:^3.2.5" - "@smithy/util-middleware": "npm:^4.2.5" - "@smithy/util-retry": "npm:^4.2.5" + "@smithy/util-defaults-mode-browser": "npm:^4.3.28" + "@smithy/util-defaults-mode-node": "npm:^4.2.31" + "@smithy/util-endpoints": "npm:^3.2.8" + "@smithy/util-middleware": "npm:^4.2.8" + "@smithy/util-retry": "npm:^4.2.8" "@smithy/util-utf8": "npm:^4.2.0" - "@smithy/util-waiter": "npm:^4.2.5" + "@smithy/util-waiter": "npm:^4.2.8" tslib: "npm:^2.6.2" - checksum: 10c0/ab295c9610ff564c284f065d1d9cbb3877c013ff2190d0a3867a25613333e415091d5f2939a34f1161c148523652a54042ff31ad3b5397cc2c62cd23cb568e83 + checksum: 10c0/8bf0331fc3fcc759c86f0ac4142821f2da8f266958f43e4a0abe5c323c4cd1e5681415b66dbe176d5c92186d358299343fe4b480e4fc4010f9e9f8a1e4372bd9 languageName: node linkType: hard "@aws-sdk/client-ecs@npm:^3": - version: 3.940.0 - resolution: "@aws-sdk/client-ecs@npm:3.940.0" + version: 3.980.0 + resolution: "@aws-sdk/client-ecs@npm:3.980.0" dependencies: "@aws-crypto/sha256-browser": "npm:5.2.0" "@aws-crypto/sha256-js": "npm:5.2.0" - "@aws-sdk/core": "npm:3.940.0" - "@aws-sdk/credential-provider-node": "npm:3.940.0" - "@aws-sdk/middleware-host-header": "npm:3.936.0" - "@aws-sdk/middleware-logger": "npm:3.936.0" - "@aws-sdk/middleware-recursion-detection": "npm:3.936.0" - "@aws-sdk/middleware-user-agent": "npm:3.940.0" - "@aws-sdk/region-config-resolver": "npm:3.936.0" - "@aws-sdk/types": "npm:3.936.0" - "@aws-sdk/util-endpoints": "npm:3.936.0" - "@aws-sdk/util-user-agent-browser": "npm:3.936.0" - "@aws-sdk/util-user-agent-node": "npm:3.940.0" - "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" - "@smithy/fetch-http-handler": "npm:^5.3.6" - "@smithy/hash-node": "npm:^4.2.5" - "@smithy/invalid-dependency": "npm:^4.2.5" - "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" - "@smithy/middleware-serde": "npm:^4.2.6" - "@smithy/middleware-stack": "npm:^4.2.5" - "@smithy/node-config-provider": "npm:^4.3.5" - "@smithy/node-http-handler": "npm:^4.4.5" - "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" - "@smithy/types": "npm:^4.9.0" - "@smithy/url-parser": "npm:^4.2.5" + "@aws-sdk/core": "npm:^3.973.5" + "@aws-sdk/credential-provider-node": "npm:^3.972.4" + "@aws-sdk/middleware-host-header": "npm:^3.972.3" + "@aws-sdk/middleware-logger": "npm:^3.972.3" + "@aws-sdk/middleware-recursion-detection": "npm:^3.972.3" + "@aws-sdk/middleware-user-agent": "npm:^3.972.5" + "@aws-sdk/region-config-resolver": "npm:^3.972.3" + "@aws-sdk/types": "npm:^3.973.1" + "@aws-sdk/util-endpoints": "npm:3.980.0" + "@aws-sdk/util-user-agent-browser": "npm:^3.972.3" + "@aws-sdk/util-user-agent-node": "npm:^3.972.3" + "@smithy/config-resolver": "npm:^4.4.6" + "@smithy/core": "npm:^3.22.0" + "@smithy/fetch-http-handler": "npm:^5.3.9" + "@smithy/hash-node": "npm:^4.2.8" + "@smithy/invalid-dependency": "npm:^4.2.8" + "@smithy/middleware-content-length": "npm:^4.2.8" + "@smithy/middleware-endpoint": "npm:^4.4.12" + "@smithy/middleware-retry": "npm:^4.4.29" + "@smithy/middleware-serde": "npm:^4.2.9" + "@smithy/middleware-stack": "npm:^4.2.8" + "@smithy/node-config-provider": "npm:^4.3.8" + "@smithy/node-http-handler": "npm:^4.4.8" + "@smithy/protocol-http": "npm:^5.3.8" + "@smithy/smithy-client": "npm:^4.11.1" + "@smithy/types": "npm:^4.12.0" + "@smithy/url-parser": "npm:^4.2.8" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" - "@smithy/util-endpoints": "npm:^3.2.5" - "@smithy/util-middleware": "npm:^4.2.5" - "@smithy/util-retry": "npm:^4.2.5" + "@smithy/util-defaults-mode-browser": "npm:^4.3.28" + "@smithy/util-defaults-mode-node": "npm:^4.2.31" + "@smithy/util-endpoints": "npm:^3.2.8" + "@smithy/util-middleware": "npm:^4.2.8" + "@smithy/util-retry": "npm:^4.2.8" "@smithy/util-utf8": "npm:^4.2.0" - "@smithy/util-waiter": "npm:^4.2.5" + "@smithy/util-waiter": "npm:^4.2.8" tslib: "npm:^2.6.2" - checksum: 10c0/695bb640e51d6c895ea61069677eb4cef640a037ebd9a18c52f2c2bc67592f0a3ca0badb2af96846263ef722818f8d5b0dd0d0cdfa8bc2b2902694e071680a9f + checksum: 10c0/4059d4797488910cb5dde0e73e518c61afdb65d94cffac5d19ea23328a97e0cc21f868801bbd529218c84d91f12289ad3d05eb5ee5b7df90754d8d4fdb3cc851 languageName: node linkType: hard "@aws-sdk/client-elastic-load-balancing-v2@npm:^3": - version: 3.940.0 - resolution: "@aws-sdk/client-elastic-load-balancing-v2@npm:3.940.0" + version: 3.980.0 + resolution: "@aws-sdk/client-elastic-load-balancing-v2@npm:3.980.0" dependencies: "@aws-crypto/sha256-browser": "npm:5.2.0" "@aws-crypto/sha256-js": "npm:5.2.0" - "@aws-sdk/core": "npm:3.940.0" - "@aws-sdk/credential-provider-node": "npm:3.940.0" - "@aws-sdk/middleware-host-header": "npm:3.936.0" - "@aws-sdk/middleware-logger": "npm:3.936.0" - "@aws-sdk/middleware-recursion-detection": "npm:3.936.0" - "@aws-sdk/middleware-user-agent": "npm:3.940.0" - "@aws-sdk/region-config-resolver": "npm:3.936.0" - "@aws-sdk/types": "npm:3.936.0" - "@aws-sdk/util-endpoints": "npm:3.936.0" - "@aws-sdk/util-user-agent-browser": "npm:3.936.0" - "@aws-sdk/util-user-agent-node": "npm:3.940.0" - "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" - "@smithy/fetch-http-handler": "npm:^5.3.6" - "@smithy/hash-node": "npm:^4.2.5" - "@smithy/invalid-dependency": "npm:^4.2.5" - "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" - "@smithy/middleware-serde": "npm:^4.2.6" - "@smithy/middleware-stack": "npm:^4.2.5" - "@smithy/node-config-provider": "npm:^4.3.5" - "@smithy/node-http-handler": "npm:^4.4.5" - "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" - "@smithy/types": "npm:^4.9.0" - "@smithy/url-parser": "npm:^4.2.5" + "@aws-sdk/core": "npm:^3.973.5" + "@aws-sdk/credential-provider-node": "npm:^3.972.4" + "@aws-sdk/middleware-host-header": "npm:^3.972.3" + "@aws-sdk/middleware-logger": "npm:^3.972.3" + "@aws-sdk/middleware-recursion-detection": "npm:^3.972.3" + "@aws-sdk/middleware-user-agent": "npm:^3.972.5" + "@aws-sdk/region-config-resolver": "npm:^3.972.3" + "@aws-sdk/types": "npm:^3.973.1" + "@aws-sdk/util-endpoints": "npm:3.980.0" + "@aws-sdk/util-user-agent-browser": "npm:^3.972.3" + "@aws-sdk/util-user-agent-node": "npm:^3.972.3" + "@smithy/config-resolver": "npm:^4.4.6" + "@smithy/core": "npm:^3.22.0" + "@smithy/fetch-http-handler": "npm:^5.3.9" + "@smithy/hash-node": "npm:^4.2.8" + "@smithy/invalid-dependency": "npm:^4.2.8" + "@smithy/middleware-content-length": "npm:^4.2.8" + "@smithy/middleware-endpoint": "npm:^4.4.12" + "@smithy/middleware-retry": "npm:^4.4.29" + "@smithy/middleware-serde": "npm:^4.2.9" + "@smithy/middleware-stack": "npm:^4.2.8" + "@smithy/node-config-provider": "npm:^4.3.8" + "@smithy/node-http-handler": "npm:^4.4.8" + "@smithy/protocol-http": "npm:^5.3.8" + "@smithy/smithy-client": "npm:^4.11.1" + "@smithy/types": "npm:^4.12.0" + "@smithy/url-parser": "npm:^4.2.8" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" - "@smithy/util-endpoints": "npm:^3.2.5" - "@smithy/util-middleware": "npm:^4.2.5" - "@smithy/util-retry": "npm:^4.2.5" + "@smithy/util-defaults-mode-browser": "npm:^4.3.28" + "@smithy/util-defaults-mode-node": "npm:^4.2.31" + "@smithy/util-endpoints": "npm:^3.2.8" + "@smithy/util-middleware": "npm:^4.2.8" + "@smithy/util-retry": "npm:^4.2.8" "@smithy/util-utf8": "npm:^4.2.0" - "@smithy/util-waiter": "npm:^4.2.5" + "@smithy/util-waiter": "npm:^4.2.8" tslib: "npm:^2.6.2" - checksum: 10c0/3758262cfe5e0cdc856cea7e5920b0dc8c13ace1ce2bed78230516dff8d7ba8f32175461bf5eb4a03ad924c8d7b838d7b8e77b231e8d549beb6ab44dc5f44b2b + checksum: 10c0/d1ca21667c0280a99ec311786c431de0b2c26eb41eba1be326f7fd5b0b7daf0fadd2a80dd7f3a1c2c3be5ee7212e2069bb499c3425da6ba1d06ae39c7e77146a languageName: node linkType: hard -"@aws-sdk/client-firehose@npm:3.621.0": - version: 3.621.0 - resolution: "@aws-sdk/client-firehose@npm:3.621.0" +"@aws-sdk/client-firehose@npm:3.723.0": + version: 3.723.0 + resolution: "@aws-sdk/client-firehose@npm:3.723.0" dependencies: "@aws-crypto/sha256-browser": "npm:5.2.0" "@aws-crypto/sha256-js": "npm:5.2.0" - "@aws-sdk/client-sso-oidc": "npm:3.621.0" - "@aws-sdk/client-sts": "npm:3.621.0" - "@aws-sdk/core": "npm:3.621.0" - "@aws-sdk/credential-provider-node": "npm:3.621.0" - "@aws-sdk/middleware-host-header": "npm:3.620.0" - "@aws-sdk/middleware-logger": "npm:3.609.0" - "@aws-sdk/middleware-recursion-detection": "npm:3.620.0" - "@aws-sdk/middleware-user-agent": "npm:3.620.0" - "@aws-sdk/region-config-resolver": "npm:3.614.0" - "@aws-sdk/types": "npm:3.609.0" - "@aws-sdk/util-endpoints": "npm:3.614.0" - "@aws-sdk/util-user-agent-browser": "npm:3.609.0" - "@aws-sdk/util-user-agent-node": "npm:3.614.0" - "@smithy/config-resolver": "npm:^3.0.5" - "@smithy/core": "npm:^2.3.1" - "@smithy/fetch-http-handler": "npm:^3.2.4" - "@smithy/hash-node": "npm:^3.0.3" - "@smithy/invalid-dependency": "npm:^3.0.3" - "@smithy/middleware-content-length": "npm:^3.0.5" - "@smithy/middleware-endpoint": "npm:^3.1.0" - "@smithy/middleware-retry": "npm:^3.0.13" - "@smithy/middleware-serde": "npm:^3.0.3" - "@smithy/middleware-stack": "npm:^3.0.3" - "@smithy/node-config-provider": "npm:^3.1.4" - "@smithy/node-http-handler": "npm:^3.1.4" - "@smithy/protocol-http": "npm:^4.1.0" - "@smithy/smithy-client": "npm:^3.1.11" - "@smithy/types": "npm:^3.3.0" - "@smithy/url-parser": "npm:^3.0.3" - "@smithy/util-base64": "npm:^3.0.0" - "@smithy/util-body-length-browser": "npm:^3.0.0" - "@smithy/util-body-length-node": "npm:^3.0.0" - "@smithy/util-defaults-mode-browser": "npm:^3.0.13" - "@smithy/util-defaults-mode-node": "npm:^3.0.13" - "@smithy/util-endpoints": "npm:^2.0.5" - "@smithy/util-middleware": "npm:^3.0.3" - "@smithy/util-retry": "npm:^3.0.3" - "@smithy/util-utf8": "npm:^3.0.0" - tslib: "npm:^2.6.2" - checksum: 10c0/581523328acc3d89201276ac5dc8582ddc82a2a12c4c785d08f2c16361ebb4b338f511f474fe3095397fbfcd45d1b67dc5d0e735c2c345c7b56f66046169a08f + "@aws-sdk/client-sso-oidc": "npm:3.723.0" + "@aws-sdk/client-sts": "npm:3.723.0" + "@aws-sdk/core": "npm:3.723.0" + "@aws-sdk/credential-provider-node": "npm:3.723.0" + "@aws-sdk/middleware-host-header": "npm:3.723.0" + "@aws-sdk/middleware-logger": "npm:3.723.0" + "@aws-sdk/middleware-recursion-detection": "npm:3.723.0" + "@aws-sdk/middleware-user-agent": "npm:3.723.0" + "@aws-sdk/region-config-resolver": "npm:3.723.0" + "@aws-sdk/types": "npm:3.723.0" + "@aws-sdk/util-endpoints": "npm:3.723.0" + "@aws-sdk/util-user-agent-browser": "npm:3.723.0" + "@aws-sdk/util-user-agent-node": "npm:3.723.0" + "@smithy/config-resolver": "npm:^4.0.0" + "@smithy/core": "npm:^3.0.0" + "@smithy/fetch-http-handler": "npm:^5.0.0" + "@smithy/hash-node": "npm:^4.0.0" + "@smithy/invalid-dependency": "npm:^4.0.0" + "@smithy/middleware-content-length": "npm:^4.0.0" + "@smithy/middleware-endpoint": "npm:^4.0.0" + "@smithy/middleware-retry": "npm:^4.0.0" + "@smithy/middleware-serde": "npm:^4.0.0" + "@smithy/middleware-stack": "npm:^4.0.0" + "@smithy/node-config-provider": "npm:^4.0.0" + "@smithy/node-http-handler": "npm:^4.0.0" + "@smithy/protocol-http": "npm:^5.0.0" + "@smithy/smithy-client": "npm:^4.0.0" + "@smithy/types": "npm:^4.0.0" + "@smithy/url-parser": "npm:^4.0.0" + "@smithy/util-base64": "npm:^4.0.0" + "@smithy/util-body-length-browser": "npm:^4.0.0" + "@smithy/util-body-length-node": "npm:^4.0.0" + "@smithy/util-defaults-mode-browser": "npm:^4.0.0" + "@smithy/util-defaults-mode-node": "npm:^4.0.0" + "@smithy/util-endpoints": "npm:^3.0.0" + "@smithy/util-middleware": "npm:^4.0.0" + "@smithy/util-retry": "npm:^4.0.0" + "@smithy/util-utf8": "npm:^4.0.0" + tslib: "npm:^2.6.2" + checksum: 10c0/1e07e4813157baaf8a02ca6ef20c5b2a4027edbfb965015b849d54cfd44032fdc07c9889d311ff4066921d410293884be63448dd068f726b39834d24ab3bbd40 languageName: node linkType: hard "@aws-sdk/client-iam@npm:^3": - version: 3.940.0 - resolution: "@aws-sdk/client-iam@npm:3.940.0" + version: 3.980.0 + resolution: "@aws-sdk/client-iam@npm:3.980.0" dependencies: "@aws-crypto/sha256-browser": "npm:5.2.0" "@aws-crypto/sha256-js": "npm:5.2.0" - "@aws-sdk/core": "npm:3.940.0" - "@aws-sdk/credential-provider-node": "npm:3.940.0" - "@aws-sdk/middleware-host-header": "npm:3.936.0" - "@aws-sdk/middleware-logger": "npm:3.936.0" - "@aws-sdk/middleware-recursion-detection": "npm:3.936.0" - "@aws-sdk/middleware-user-agent": "npm:3.940.0" - "@aws-sdk/region-config-resolver": "npm:3.936.0" - "@aws-sdk/types": "npm:3.936.0" - "@aws-sdk/util-endpoints": "npm:3.936.0" - "@aws-sdk/util-user-agent-browser": "npm:3.936.0" - "@aws-sdk/util-user-agent-node": "npm:3.940.0" - "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" - "@smithy/fetch-http-handler": "npm:^5.3.6" - "@smithy/hash-node": "npm:^4.2.5" - "@smithy/invalid-dependency": "npm:^4.2.5" - "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" - "@smithy/middleware-serde": "npm:^4.2.6" - "@smithy/middleware-stack": "npm:^4.2.5" - "@smithy/node-config-provider": "npm:^4.3.5" - "@smithy/node-http-handler": "npm:^4.4.5" - "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" - "@smithy/types": "npm:^4.9.0" - "@smithy/url-parser": "npm:^4.2.5" + "@aws-sdk/core": "npm:^3.973.5" + "@aws-sdk/credential-provider-node": "npm:^3.972.4" + "@aws-sdk/middleware-host-header": "npm:^3.972.3" + "@aws-sdk/middleware-logger": "npm:^3.972.3" + "@aws-sdk/middleware-recursion-detection": "npm:^3.972.3" + "@aws-sdk/middleware-user-agent": "npm:^3.972.5" + "@aws-sdk/region-config-resolver": "npm:^3.972.3" + "@aws-sdk/types": "npm:^3.973.1" + "@aws-sdk/util-endpoints": "npm:3.980.0" + "@aws-sdk/util-user-agent-browser": "npm:^3.972.3" + "@aws-sdk/util-user-agent-node": "npm:^3.972.3" + "@smithy/config-resolver": "npm:^4.4.6" + "@smithy/core": "npm:^3.22.0" + "@smithy/fetch-http-handler": "npm:^5.3.9" + "@smithy/hash-node": "npm:^4.2.8" + "@smithy/invalid-dependency": "npm:^4.2.8" + "@smithy/middleware-content-length": "npm:^4.2.8" + "@smithy/middleware-endpoint": "npm:^4.4.12" + "@smithy/middleware-retry": "npm:^4.4.29" + "@smithy/middleware-serde": "npm:^4.2.9" + "@smithy/middleware-stack": "npm:^4.2.8" + "@smithy/node-config-provider": "npm:^4.3.8" + "@smithy/node-http-handler": "npm:^4.4.8" + "@smithy/protocol-http": "npm:^5.3.8" + "@smithy/smithy-client": "npm:^4.11.1" + "@smithy/types": "npm:^4.12.0" + "@smithy/url-parser": "npm:^4.2.8" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" - "@smithy/util-endpoints": "npm:^3.2.5" - "@smithy/util-middleware": "npm:^4.2.5" - "@smithy/util-retry": "npm:^4.2.5" + "@smithy/util-defaults-mode-browser": "npm:^4.3.28" + "@smithy/util-defaults-mode-node": "npm:^4.2.31" + "@smithy/util-endpoints": "npm:^3.2.8" + "@smithy/util-middleware": "npm:^4.2.8" + "@smithy/util-retry": "npm:^4.2.8" "@smithy/util-utf8": "npm:^4.2.0" - "@smithy/util-waiter": "npm:^4.2.5" + "@smithy/util-waiter": "npm:^4.2.8" tslib: "npm:^2.6.2" - checksum: 10c0/5acbe90cfa9909e51c0a261a0b9b6fbbd7e3a579014c15732094ea49ea97628c2f85a58ef651a423725ca931fdb504f1863684793d330285242c27a204cbfef5 + checksum: 10c0/3d6a5058c2a167de9acf23253210ea7f074660e2b51745722452382f620bb29c9f003ce874a48be387be3e49cb6e9d399a68a9dd85fe97a64bf7c5050739bfed languageName: node linkType: hard -"@aws-sdk/client-kinesis@npm:3.621.0": - version: 3.621.0 - resolution: "@aws-sdk/client-kinesis@npm:3.621.0" +"@aws-sdk/client-kinesis@npm:3.723.0": + version: 3.723.0 + resolution: "@aws-sdk/client-kinesis@npm:3.723.0" dependencies: "@aws-crypto/sha256-browser": "npm:5.2.0" "@aws-crypto/sha256-js": "npm:5.2.0" - "@aws-sdk/client-sso-oidc": "npm:3.621.0" - "@aws-sdk/client-sts": "npm:3.621.0" - "@aws-sdk/core": "npm:3.621.0" - "@aws-sdk/credential-provider-node": "npm:3.621.0" - "@aws-sdk/middleware-host-header": "npm:3.620.0" - "@aws-sdk/middleware-logger": "npm:3.609.0" - "@aws-sdk/middleware-recursion-detection": "npm:3.620.0" - "@aws-sdk/middleware-user-agent": "npm:3.620.0" - "@aws-sdk/region-config-resolver": "npm:3.614.0" - "@aws-sdk/types": "npm:3.609.0" - "@aws-sdk/util-endpoints": "npm:3.614.0" - "@aws-sdk/util-user-agent-browser": "npm:3.609.0" - "@aws-sdk/util-user-agent-node": "npm:3.614.0" - "@smithy/config-resolver": "npm:^3.0.5" - "@smithy/core": "npm:^2.3.1" - "@smithy/eventstream-serde-browser": "npm:^3.0.5" - "@smithy/eventstream-serde-config-resolver": "npm:^3.0.3" - "@smithy/eventstream-serde-node": "npm:^3.0.4" - "@smithy/fetch-http-handler": "npm:^3.2.4" - "@smithy/hash-node": "npm:^3.0.3" - "@smithy/invalid-dependency": "npm:^3.0.3" - "@smithy/middleware-content-length": "npm:^3.0.5" - "@smithy/middleware-endpoint": "npm:^3.1.0" - "@smithy/middleware-retry": "npm:^3.0.13" - "@smithy/middleware-serde": "npm:^3.0.3" - "@smithy/middleware-stack": "npm:^3.0.3" - "@smithy/node-config-provider": "npm:^3.1.4" - "@smithy/node-http-handler": "npm:^3.1.4" - "@smithy/protocol-http": "npm:^4.1.0" - "@smithy/smithy-client": "npm:^3.1.11" - "@smithy/types": "npm:^3.3.0" - "@smithy/url-parser": "npm:^3.0.3" - "@smithy/util-base64": "npm:^3.0.0" - "@smithy/util-body-length-browser": "npm:^3.0.0" - "@smithy/util-body-length-node": "npm:^3.0.0" - "@smithy/util-defaults-mode-browser": "npm:^3.0.13" - "@smithy/util-defaults-mode-node": "npm:^3.0.13" - "@smithy/util-endpoints": "npm:^2.0.5" - "@smithy/util-middleware": "npm:^3.0.3" - "@smithy/util-retry": "npm:^3.0.3" - "@smithy/util-utf8": "npm:^3.0.0" - "@smithy/util-waiter": "npm:^3.1.2" - tslib: "npm:^2.6.2" - checksum: 10c0/ed07d7942a910b27e17e3da53a732648b465474be78e808a30d525e6b69c1ebfc1accb2a8cbd42e456d842497a5df1dfed0a4d18ea9eab891d53edaf35816db9 + "@aws-sdk/client-sso-oidc": "npm:3.723.0" + "@aws-sdk/client-sts": "npm:3.723.0" + "@aws-sdk/core": "npm:3.723.0" + "@aws-sdk/credential-provider-node": "npm:3.723.0" + "@aws-sdk/middleware-host-header": "npm:3.723.0" + "@aws-sdk/middleware-logger": "npm:3.723.0" + "@aws-sdk/middleware-recursion-detection": "npm:3.723.0" + "@aws-sdk/middleware-user-agent": "npm:3.723.0" + "@aws-sdk/region-config-resolver": "npm:3.723.0" + "@aws-sdk/types": "npm:3.723.0" + "@aws-sdk/util-endpoints": "npm:3.723.0" + "@aws-sdk/util-user-agent-browser": "npm:3.723.0" + "@aws-sdk/util-user-agent-node": "npm:3.723.0" + "@smithy/config-resolver": "npm:^4.0.0" + "@smithy/core": "npm:^3.0.0" + "@smithy/eventstream-serde-browser": "npm:^4.0.0" + "@smithy/eventstream-serde-config-resolver": "npm:^4.0.0" + "@smithy/eventstream-serde-node": "npm:^4.0.0" + "@smithy/fetch-http-handler": "npm:^5.0.0" + "@smithy/hash-node": "npm:^4.0.0" + "@smithy/invalid-dependency": "npm:^4.0.0" + "@smithy/middleware-content-length": "npm:^4.0.0" + "@smithy/middleware-endpoint": "npm:^4.0.0" + "@smithy/middleware-retry": "npm:^4.0.0" + "@smithy/middleware-serde": "npm:^4.0.0" + "@smithy/middleware-stack": "npm:^4.0.0" + "@smithy/node-config-provider": "npm:^4.0.0" + "@smithy/node-http-handler": "npm:^4.0.0" + "@smithy/protocol-http": "npm:^5.0.0" + "@smithy/smithy-client": "npm:^4.0.0" + "@smithy/types": "npm:^4.0.0" + "@smithy/url-parser": "npm:^4.0.0" + "@smithy/util-base64": "npm:^4.0.0" + "@smithy/util-body-length-browser": "npm:^4.0.0" + "@smithy/util-body-length-node": "npm:^4.0.0" + "@smithy/util-defaults-mode-browser": "npm:^4.0.0" + "@smithy/util-defaults-mode-node": "npm:^4.0.0" + "@smithy/util-endpoints": "npm:^3.0.0" + "@smithy/util-middleware": "npm:^4.0.0" + "@smithy/util-retry": "npm:^4.0.0" + "@smithy/util-utf8": "npm:^4.0.0" + "@smithy/util-waiter": "npm:^4.0.0" + tslib: "npm:^2.6.2" + checksum: 10c0/537553d36286862f0240d8012fd3e0507411ad2c16dcdf22caa9fdeb32252ea4bdbf459d25f1d391d01b51c2f731ee5ed0bea2661a4b05f2da8eabc2d58ab2bf languageName: node linkType: hard "@aws-sdk/client-kms@npm:^3": - version: 3.940.0 - resolution: "@aws-sdk/client-kms@npm:3.940.0" + version: 3.980.0 + resolution: "@aws-sdk/client-kms@npm:3.980.0" dependencies: "@aws-crypto/sha256-browser": "npm:5.2.0" "@aws-crypto/sha256-js": "npm:5.2.0" - "@aws-sdk/core": "npm:3.940.0" - "@aws-sdk/credential-provider-node": "npm:3.940.0" - "@aws-sdk/middleware-host-header": "npm:3.936.0" - "@aws-sdk/middleware-logger": "npm:3.936.0" - "@aws-sdk/middleware-recursion-detection": "npm:3.936.0" - "@aws-sdk/middleware-user-agent": "npm:3.940.0" - "@aws-sdk/region-config-resolver": "npm:3.936.0" - "@aws-sdk/types": "npm:3.936.0" - "@aws-sdk/util-endpoints": "npm:3.936.0" - "@aws-sdk/util-user-agent-browser": "npm:3.936.0" - "@aws-sdk/util-user-agent-node": "npm:3.940.0" - "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" - "@smithy/fetch-http-handler": "npm:^5.3.6" - "@smithy/hash-node": "npm:^4.2.5" - "@smithy/invalid-dependency": "npm:^4.2.5" - "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" - "@smithy/middleware-serde": "npm:^4.2.6" - "@smithy/middleware-stack": "npm:^4.2.5" - "@smithy/node-config-provider": "npm:^4.3.5" - "@smithy/node-http-handler": "npm:^4.4.5" - "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" - "@smithy/types": "npm:^4.9.0" - "@smithy/url-parser": "npm:^4.2.5" + "@aws-sdk/core": "npm:^3.973.5" + "@aws-sdk/credential-provider-node": "npm:^3.972.4" + "@aws-sdk/middleware-host-header": "npm:^3.972.3" + "@aws-sdk/middleware-logger": "npm:^3.972.3" + "@aws-sdk/middleware-recursion-detection": "npm:^3.972.3" + "@aws-sdk/middleware-user-agent": "npm:^3.972.5" + "@aws-sdk/region-config-resolver": "npm:^3.972.3" + "@aws-sdk/types": "npm:^3.973.1" + "@aws-sdk/util-endpoints": "npm:3.980.0" + "@aws-sdk/util-user-agent-browser": "npm:^3.972.3" + "@aws-sdk/util-user-agent-node": "npm:^3.972.3" + "@smithy/config-resolver": "npm:^4.4.6" + "@smithy/core": "npm:^3.22.0" + "@smithy/fetch-http-handler": "npm:^5.3.9" + "@smithy/hash-node": "npm:^4.2.8" + "@smithy/invalid-dependency": "npm:^4.2.8" + "@smithy/middleware-content-length": "npm:^4.2.8" + "@smithy/middleware-endpoint": "npm:^4.4.12" + "@smithy/middleware-retry": "npm:^4.4.29" + "@smithy/middleware-serde": "npm:^4.2.9" + "@smithy/middleware-stack": "npm:^4.2.8" + "@smithy/node-config-provider": "npm:^4.3.8" + "@smithy/node-http-handler": "npm:^4.4.8" + "@smithy/protocol-http": "npm:^5.3.8" + "@smithy/smithy-client": "npm:^4.11.1" + "@smithy/types": "npm:^4.12.0" + "@smithy/url-parser": "npm:^4.2.8" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" - "@smithy/util-endpoints": "npm:^3.2.5" - "@smithy/util-middleware": "npm:^4.2.5" - "@smithy/util-retry": "npm:^4.2.5" + "@smithy/util-defaults-mode-browser": "npm:^4.3.28" + "@smithy/util-defaults-mode-node": "npm:^4.2.31" + "@smithy/util-endpoints": "npm:^3.2.8" + "@smithy/util-middleware": "npm:^4.2.8" + "@smithy/util-retry": "npm:^4.2.8" "@smithy/util-utf8": "npm:^4.2.0" tslib: "npm:^2.6.2" - checksum: 10c0/06a0a4ea980cc9034315f12d5f6af1af59a935e874e239a324deeb0aaa1707a6b23bae952843388e8f9d49aa24e0285429bd10f62b498dc8e7eda23751f1d576 + checksum: 10c0/438cc0c20031f9f5a02be413d2fc69ae63e87dd9613d88d81f228ca85d25b3941ea2314f774aead931bf864120c21d1b5aabda4d687901338dcba2986b710eda languageName: node linkType: hard -"@aws-sdk/client-lambda@npm:^3": - version: 3.940.0 - resolution: "@aws-sdk/client-lambda@npm:3.940.0" +"@aws-sdk/client-lambda@npm:^3, @aws-sdk/client-lambda@npm:^3.980.0": + version: 3.980.0 + resolution: "@aws-sdk/client-lambda@npm:3.980.0" dependencies: "@aws-crypto/sha256-browser": "npm:5.2.0" "@aws-crypto/sha256-js": "npm:5.2.0" - "@aws-sdk/core": "npm:3.940.0" - "@aws-sdk/credential-provider-node": "npm:3.940.0" - "@aws-sdk/middleware-host-header": "npm:3.936.0" - "@aws-sdk/middleware-logger": "npm:3.936.0" - "@aws-sdk/middleware-recursion-detection": "npm:3.936.0" - "@aws-sdk/middleware-user-agent": "npm:3.940.0" - "@aws-sdk/region-config-resolver": "npm:3.936.0" - "@aws-sdk/types": "npm:3.936.0" - "@aws-sdk/util-endpoints": "npm:3.936.0" - "@aws-sdk/util-user-agent-browser": "npm:3.936.0" - "@aws-sdk/util-user-agent-node": "npm:3.940.0" - "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" - "@smithy/eventstream-serde-browser": "npm:^4.2.5" - "@smithy/eventstream-serde-config-resolver": "npm:^4.3.5" - "@smithy/eventstream-serde-node": "npm:^4.2.5" - "@smithy/fetch-http-handler": "npm:^5.3.6" - "@smithy/hash-node": "npm:^4.2.5" - "@smithy/invalid-dependency": "npm:^4.2.5" - "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" - "@smithy/middleware-serde": "npm:^4.2.6" - "@smithy/middleware-stack": "npm:^4.2.5" - "@smithy/node-config-provider": "npm:^4.3.5" - "@smithy/node-http-handler": "npm:^4.4.5" - "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" - "@smithy/types": "npm:^4.9.0" - "@smithy/url-parser": "npm:^4.2.5" + "@aws-sdk/core": "npm:^3.973.5" + "@aws-sdk/credential-provider-node": "npm:^3.972.4" + "@aws-sdk/middleware-host-header": "npm:^3.972.3" + "@aws-sdk/middleware-logger": "npm:^3.972.3" + "@aws-sdk/middleware-recursion-detection": "npm:^3.972.3" + "@aws-sdk/middleware-user-agent": "npm:^3.972.5" + "@aws-sdk/region-config-resolver": "npm:^3.972.3" + "@aws-sdk/types": "npm:^3.973.1" + "@aws-sdk/util-endpoints": "npm:3.980.0" + "@aws-sdk/util-user-agent-browser": "npm:^3.972.3" + "@aws-sdk/util-user-agent-node": "npm:^3.972.3" + "@smithy/config-resolver": "npm:^4.4.6" + "@smithy/core": "npm:^3.22.0" + "@smithy/eventstream-serde-browser": "npm:^4.2.8" + "@smithy/eventstream-serde-config-resolver": "npm:^4.3.8" + "@smithy/eventstream-serde-node": "npm:^4.2.8" + "@smithy/fetch-http-handler": "npm:^5.3.9" + "@smithy/hash-node": "npm:^4.2.8" + "@smithy/invalid-dependency": "npm:^4.2.8" + "@smithy/middleware-content-length": "npm:^4.2.8" + "@smithy/middleware-endpoint": "npm:^4.4.12" + "@smithy/middleware-retry": "npm:^4.4.29" + "@smithy/middleware-serde": "npm:^4.2.9" + "@smithy/middleware-stack": "npm:^4.2.8" + "@smithy/node-config-provider": "npm:^4.3.8" + "@smithy/node-http-handler": "npm:^4.4.8" + "@smithy/protocol-http": "npm:^5.3.8" + "@smithy/smithy-client": "npm:^4.11.1" + "@smithy/types": "npm:^4.12.0" + "@smithy/url-parser": "npm:^4.2.8" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" - "@smithy/util-endpoints": "npm:^3.2.5" - "@smithy/util-middleware": "npm:^4.2.5" - "@smithy/util-retry": "npm:^4.2.5" - "@smithy/util-stream": "npm:^4.5.6" + "@smithy/util-defaults-mode-browser": "npm:^4.3.28" + "@smithy/util-defaults-mode-node": "npm:^4.2.31" + "@smithy/util-endpoints": "npm:^3.2.8" + "@smithy/util-middleware": "npm:^4.2.8" + "@smithy/util-retry": "npm:^4.2.8" + "@smithy/util-stream": "npm:^4.5.10" "@smithy/util-utf8": "npm:^4.2.0" - "@smithy/util-waiter": "npm:^4.2.5" + "@smithy/util-waiter": "npm:^4.2.8" tslib: "npm:^2.6.2" - checksum: 10c0/eb4fe9bcbacd1b609fb84bd9117f01a30296c66f884a78bf6c9c77b591823d8bd1c52ce9274b13520d48158b669c1389132510a9db367e2fef7baa92c07f070e + checksum: 10c0/1aee115aab64e913d07c2d5622f6b525f857c8154f09073e086315f4943bc88b81fb0d47b1a14007ac564681bdda7da688da1ffc4e8a607c9da9cbe6f4c40e3b languageName: node linkType: hard -"@aws-sdk/client-personalize-events@npm:3.621.0": - version: 3.621.0 - resolution: "@aws-sdk/client-personalize-events@npm:3.621.0" +"@aws-sdk/client-personalize-events@npm:3.723.0": + version: 3.723.0 + resolution: "@aws-sdk/client-personalize-events@npm:3.723.0" dependencies: "@aws-crypto/sha256-browser": "npm:5.2.0" "@aws-crypto/sha256-js": "npm:5.2.0" - "@aws-sdk/client-sso-oidc": "npm:3.621.0" - "@aws-sdk/client-sts": "npm:3.621.0" - "@aws-sdk/core": "npm:3.621.0" - "@aws-sdk/credential-provider-node": "npm:3.621.0" - "@aws-sdk/middleware-host-header": "npm:3.620.0" - "@aws-sdk/middleware-logger": "npm:3.609.0" - "@aws-sdk/middleware-recursion-detection": "npm:3.620.0" - "@aws-sdk/middleware-user-agent": "npm:3.620.0" - "@aws-sdk/region-config-resolver": "npm:3.614.0" - "@aws-sdk/types": "npm:3.609.0" - "@aws-sdk/util-endpoints": "npm:3.614.0" - "@aws-sdk/util-user-agent-browser": "npm:3.609.0" - "@aws-sdk/util-user-agent-node": "npm:3.614.0" - "@smithy/config-resolver": "npm:^3.0.5" - "@smithy/core": "npm:^2.3.1" - "@smithy/fetch-http-handler": "npm:^3.2.4" - "@smithy/hash-node": "npm:^3.0.3" - "@smithy/invalid-dependency": "npm:^3.0.3" - "@smithy/middleware-content-length": "npm:^3.0.5" - "@smithy/middleware-endpoint": "npm:^3.1.0" - "@smithy/middleware-retry": "npm:^3.0.13" - "@smithy/middleware-serde": "npm:^3.0.3" - "@smithy/middleware-stack": "npm:^3.0.3" - "@smithy/node-config-provider": "npm:^3.1.4" - "@smithy/node-http-handler": "npm:^3.1.4" - "@smithy/protocol-http": "npm:^4.1.0" - "@smithy/smithy-client": "npm:^3.1.11" - "@smithy/types": "npm:^3.3.0" - "@smithy/url-parser": "npm:^3.0.3" - "@smithy/util-base64": "npm:^3.0.0" - "@smithy/util-body-length-browser": "npm:^3.0.0" - "@smithy/util-body-length-node": "npm:^3.0.0" - "@smithy/util-defaults-mode-browser": "npm:^3.0.13" - "@smithy/util-defaults-mode-node": "npm:^3.0.13" - "@smithy/util-endpoints": "npm:^2.0.5" - "@smithy/util-middleware": "npm:^3.0.3" - "@smithy/util-retry": "npm:^3.0.3" - "@smithy/util-utf8": "npm:^3.0.0" - tslib: "npm:^2.6.2" - checksum: 10c0/c07b4ef102c740c7236b996cda36e819d510988a3237f08c477d897dbf345d875f481b7c34dd9a20ebd80b1b9c186b918f8e982e21d17c486cd6ab0831474bf9 + "@aws-sdk/client-sso-oidc": "npm:3.723.0" + "@aws-sdk/client-sts": "npm:3.723.0" + "@aws-sdk/core": "npm:3.723.0" + "@aws-sdk/credential-provider-node": "npm:3.723.0" + "@aws-sdk/middleware-host-header": "npm:3.723.0" + "@aws-sdk/middleware-logger": "npm:3.723.0" + "@aws-sdk/middleware-recursion-detection": "npm:3.723.0" + "@aws-sdk/middleware-user-agent": "npm:3.723.0" + "@aws-sdk/region-config-resolver": "npm:3.723.0" + "@aws-sdk/types": "npm:3.723.0" + "@aws-sdk/util-endpoints": "npm:3.723.0" + "@aws-sdk/util-user-agent-browser": "npm:3.723.0" + "@aws-sdk/util-user-agent-node": "npm:3.723.0" + "@smithy/config-resolver": "npm:^4.0.0" + "@smithy/core": "npm:^3.0.0" + "@smithy/fetch-http-handler": "npm:^5.0.0" + "@smithy/hash-node": "npm:^4.0.0" + "@smithy/invalid-dependency": "npm:^4.0.0" + "@smithy/middleware-content-length": "npm:^4.0.0" + "@smithy/middleware-endpoint": "npm:^4.0.0" + "@smithy/middleware-retry": "npm:^4.0.0" + "@smithy/middleware-serde": "npm:^4.0.0" + "@smithy/middleware-stack": "npm:^4.0.0" + "@smithy/node-config-provider": "npm:^4.0.0" + "@smithy/node-http-handler": "npm:^4.0.0" + "@smithy/protocol-http": "npm:^5.0.0" + "@smithy/smithy-client": "npm:^4.0.0" + "@smithy/types": "npm:^4.0.0" + "@smithy/url-parser": "npm:^4.0.0" + "@smithy/util-base64": "npm:^4.0.0" + "@smithy/util-body-length-browser": "npm:^4.0.0" + "@smithy/util-body-length-node": "npm:^4.0.0" + "@smithy/util-defaults-mode-browser": "npm:^4.0.0" + "@smithy/util-defaults-mode-node": "npm:^4.0.0" + "@smithy/util-endpoints": "npm:^3.0.0" + "@smithy/util-middleware": "npm:^4.0.0" + "@smithy/util-retry": "npm:^4.0.0" + "@smithy/util-utf8": "npm:^4.0.0" + tslib: "npm:^2.6.2" + checksum: 10c0/901eebdd55ee650f2eafdec1cf51b9fd4b99508f54f27480c3c5cb67c19f3aa5880ed5b2ddafe4b472f84645106027533189d70ad3e6c9ed3975a959802a8113 languageName: node linkType: hard "@aws-sdk/client-route-53@npm:^3, @aws-sdk/client-route-53@npm:^3.658.1": - version: 3.940.0 - resolution: "@aws-sdk/client-route-53@npm:3.940.0" + version: 3.980.0 + resolution: "@aws-sdk/client-route-53@npm:3.980.0" dependencies: "@aws-crypto/sha256-browser": "npm:5.2.0" "@aws-crypto/sha256-js": "npm:5.2.0" - "@aws-sdk/core": "npm:3.940.0" - "@aws-sdk/credential-provider-node": "npm:3.940.0" - "@aws-sdk/middleware-host-header": "npm:3.936.0" - "@aws-sdk/middleware-logger": "npm:3.936.0" - "@aws-sdk/middleware-recursion-detection": "npm:3.936.0" - "@aws-sdk/middleware-sdk-route53": "npm:3.936.0" - "@aws-sdk/middleware-user-agent": "npm:3.940.0" - "@aws-sdk/region-config-resolver": "npm:3.936.0" - "@aws-sdk/types": "npm:3.936.0" - "@aws-sdk/util-endpoints": "npm:3.936.0" - "@aws-sdk/util-user-agent-browser": "npm:3.936.0" - "@aws-sdk/util-user-agent-node": "npm:3.940.0" - "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" - "@smithy/fetch-http-handler": "npm:^5.3.6" - "@smithy/hash-node": "npm:^4.2.5" - "@smithy/invalid-dependency": "npm:^4.2.5" - "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" - "@smithy/middleware-serde": "npm:^4.2.6" - "@smithy/middleware-stack": "npm:^4.2.5" - "@smithy/node-config-provider": "npm:^4.3.5" - "@smithy/node-http-handler": "npm:^4.4.5" - "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" - "@smithy/types": "npm:^4.9.0" - "@smithy/url-parser": "npm:^4.2.5" + "@aws-sdk/core": "npm:^3.973.5" + "@aws-sdk/credential-provider-node": "npm:^3.972.4" + "@aws-sdk/middleware-host-header": "npm:^3.972.3" + "@aws-sdk/middleware-logger": "npm:^3.972.3" + "@aws-sdk/middleware-recursion-detection": "npm:^3.972.3" + "@aws-sdk/middleware-sdk-route53": "npm:^3.972.3" + "@aws-sdk/middleware-user-agent": "npm:^3.972.5" + "@aws-sdk/region-config-resolver": "npm:^3.972.3" + "@aws-sdk/types": "npm:^3.973.1" + "@aws-sdk/util-endpoints": "npm:3.980.0" + "@aws-sdk/util-user-agent-browser": "npm:^3.972.3" + "@aws-sdk/util-user-agent-node": "npm:^3.972.3" + "@smithy/config-resolver": "npm:^4.4.6" + "@smithy/core": "npm:^3.22.0" + "@smithy/fetch-http-handler": "npm:^5.3.9" + "@smithy/hash-node": "npm:^4.2.8" + "@smithy/invalid-dependency": "npm:^4.2.8" + "@smithy/middleware-content-length": "npm:^4.2.8" + "@smithy/middleware-endpoint": "npm:^4.4.12" + "@smithy/middleware-retry": "npm:^4.4.29" + "@smithy/middleware-serde": "npm:^4.2.9" + "@smithy/middleware-stack": "npm:^4.2.8" + "@smithy/node-config-provider": "npm:^4.3.8" + "@smithy/node-http-handler": "npm:^4.4.8" + "@smithy/protocol-http": "npm:^5.3.8" + "@smithy/smithy-client": "npm:^4.11.1" + "@smithy/types": "npm:^4.12.0" + "@smithy/url-parser": "npm:^4.2.8" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" - "@smithy/util-endpoints": "npm:^3.2.5" - "@smithy/util-middleware": "npm:^4.2.5" - "@smithy/util-retry": "npm:^4.2.5" + "@smithy/util-defaults-mode-browser": "npm:^4.3.28" + "@smithy/util-defaults-mode-node": "npm:^4.2.31" + "@smithy/util-endpoints": "npm:^3.2.8" + "@smithy/util-middleware": "npm:^4.2.8" + "@smithy/util-retry": "npm:^4.2.8" "@smithy/util-utf8": "npm:^4.2.0" - "@smithy/util-waiter": "npm:^4.2.5" + "@smithy/util-waiter": "npm:^4.2.8" tslib: "npm:^2.6.2" - checksum: 10c0/4c19e4af9154fd2cba685429f9d71bd1a4ca1ef9efaa0ee43a16ea3b0ca00faadcc8c6da889ab24492d1526c6317bb7633a6980b22a3e241a59f377f7cd7bb25 + checksum: 10c0/73f76fb01733c502e96b41401bac05d19eb84afca11bfeeb92a500ac78076d08d8067e08b2abde65b404342e1e1559eb2a63f65531dc436b0498dc85215acc20 languageName: node linkType: hard -"@aws-sdk/client-s3@npm:^3, @aws-sdk/client-s3@npm:^3.465.0, @aws-sdk/client-s3@npm:^3.750.0": - version: 3.940.0 - resolution: "@aws-sdk/client-s3@npm:3.940.0" +"@aws-sdk/client-s3@npm:^3, @aws-sdk/client-s3@npm:^3.465.0, @aws-sdk/client-s3@npm:^3.936.0, @aws-sdk/client-s3@npm:^3.937.0": + version: 3.980.0 + resolution: "@aws-sdk/client-s3@npm:3.980.0" dependencies: "@aws-crypto/sha1-browser": "npm:5.2.0" "@aws-crypto/sha256-browser": "npm:5.2.0" "@aws-crypto/sha256-js": "npm:5.2.0" - "@aws-sdk/core": "npm:3.940.0" - "@aws-sdk/credential-provider-node": "npm:3.940.0" - "@aws-sdk/middleware-bucket-endpoint": "npm:3.936.0" - "@aws-sdk/middleware-expect-continue": "npm:3.936.0" - "@aws-sdk/middleware-flexible-checksums": "npm:3.940.0" - "@aws-sdk/middleware-host-header": "npm:3.936.0" - "@aws-sdk/middleware-location-constraint": "npm:3.936.0" - "@aws-sdk/middleware-logger": "npm:3.936.0" - "@aws-sdk/middleware-recursion-detection": "npm:3.936.0" - "@aws-sdk/middleware-sdk-s3": "npm:3.940.0" - "@aws-sdk/middleware-ssec": "npm:3.936.0" - "@aws-sdk/middleware-user-agent": "npm:3.940.0" - "@aws-sdk/region-config-resolver": "npm:3.936.0" - "@aws-sdk/signature-v4-multi-region": "npm:3.940.0" - "@aws-sdk/types": "npm:3.936.0" - "@aws-sdk/util-endpoints": "npm:3.936.0" - "@aws-sdk/util-user-agent-browser": "npm:3.936.0" - "@aws-sdk/util-user-agent-node": "npm:3.940.0" - "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" - "@smithy/eventstream-serde-browser": "npm:^4.2.5" - "@smithy/eventstream-serde-config-resolver": "npm:^4.3.5" - "@smithy/eventstream-serde-node": "npm:^4.2.5" - "@smithy/fetch-http-handler": "npm:^5.3.6" - "@smithy/hash-blob-browser": "npm:^4.2.6" - "@smithy/hash-node": "npm:^4.2.5" - "@smithy/hash-stream-node": "npm:^4.2.5" - "@smithy/invalid-dependency": "npm:^4.2.5" - "@smithy/md5-js": "npm:^4.2.5" - "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" - "@smithy/middleware-serde": "npm:^4.2.6" - "@smithy/middleware-stack": "npm:^4.2.5" - "@smithy/node-config-provider": "npm:^4.3.5" - "@smithy/node-http-handler": "npm:^4.4.5" - "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" - "@smithy/types": "npm:^4.9.0" - "@smithy/url-parser": "npm:^4.2.5" + "@aws-sdk/core": "npm:^3.973.5" + "@aws-sdk/credential-provider-node": "npm:^3.972.4" + "@aws-sdk/middleware-bucket-endpoint": "npm:^3.972.3" + "@aws-sdk/middleware-expect-continue": "npm:^3.972.3" + "@aws-sdk/middleware-flexible-checksums": "npm:^3.972.3" + "@aws-sdk/middleware-host-header": "npm:^3.972.3" + "@aws-sdk/middleware-location-constraint": "npm:^3.972.3" + "@aws-sdk/middleware-logger": "npm:^3.972.3" + "@aws-sdk/middleware-recursion-detection": "npm:^3.972.3" + "@aws-sdk/middleware-sdk-s3": "npm:^3.972.5" + "@aws-sdk/middleware-ssec": "npm:^3.972.3" + "@aws-sdk/middleware-user-agent": "npm:^3.972.5" + "@aws-sdk/region-config-resolver": "npm:^3.972.3" + "@aws-sdk/signature-v4-multi-region": "npm:3.980.0" + "@aws-sdk/types": "npm:^3.973.1" + "@aws-sdk/util-endpoints": "npm:3.980.0" + "@aws-sdk/util-user-agent-browser": "npm:^3.972.3" + "@aws-sdk/util-user-agent-node": "npm:^3.972.3" + "@smithy/config-resolver": "npm:^4.4.6" + "@smithy/core": "npm:^3.22.0" + "@smithy/eventstream-serde-browser": "npm:^4.2.8" + "@smithy/eventstream-serde-config-resolver": "npm:^4.3.8" + "@smithy/eventstream-serde-node": "npm:^4.2.8" + "@smithy/fetch-http-handler": "npm:^5.3.9" + "@smithy/hash-blob-browser": "npm:^4.2.9" + "@smithy/hash-node": "npm:^4.2.8" + "@smithy/hash-stream-node": "npm:^4.2.8" + "@smithy/invalid-dependency": "npm:^4.2.8" + "@smithy/md5-js": "npm:^4.2.8" + "@smithy/middleware-content-length": "npm:^4.2.8" + "@smithy/middleware-endpoint": "npm:^4.4.12" + "@smithy/middleware-retry": "npm:^4.4.29" + "@smithy/middleware-serde": "npm:^4.2.9" + "@smithy/middleware-stack": "npm:^4.2.8" + "@smithy/node-config-provider": "npm:^4.3.8" + "@smithy/node-http-handler": "npm:^4.4.8" + "@smithy/protocol-http": "npm:^5.3.8" + "@smithy/smithy-client": "npm:^4.11.1" + "@smithy/types": "npm:^4.12.0" + "@smithy/url-parser": "npm:^4.2.8" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" - "@smithy/util-endpoints": "npm:^3.2.5" - "@smithy/util-middleware": "npm:^4.2.5" - "@smithy/util-retry": "npm:^4.2.5" - "@smithy/util-stream": "npm:^4.5.6" + "@smithy/util-defaults-mode-browser": "npm:^4.3.28" + "@smithy/util-defaults-mode-node": "npm:^4.2.31" + "@smithy/util-endpoints": "npm:^3.2.8" + "@smithy/util-middleware": "npm:^4.2.8" + "@smithy/util-retry": "npm:^4.2.8" + "@smithy/util-stream": "npm:^4.5.10" "@smithy/util-utf8": "npm:^4.2.0" - "@smithy/util-waiter": "npm:^4.2.5" + "@smithy/util-waiter": "npm:^4.2.8" tslib: "npm:^2.6.2" - checksum: 10c0/349b6afcf0940e453472137b0fe13a57896946926a7b03333f2435665ba79000a54c70072e011d76aa7c52512d88a0195ef57794eb996d31a24253e906526b03 + checksum: 10c0/00a32c3cddb8828c3670c4657fb95a080a91f74ea8cb606b2cdcd0fcf77d57b4394bc4e843e0000ff3000e8b92e523c27cca1bf0dfab9f5ab45bf6f12cc4722c languageName: node linkType: hard "@aws-sdk/client-secrets-manager@npm:^3, @aws-sdk/client-secrets-manager@npm:^3.658.1": - version: 3.940.0 - resolution: "@aws-sdk/client-secrets-manager@npm:3.940.0" + version: 3.980.0 + resolution: "@aws-sdk/client-secrets-manager@npm:3.980.0" dependencies: "@aws-crypto/sha256-browser": "npm:5.2.0" "@aws-crypto/sha256-js": "npm:5.2.0" - "@aws-sdk/core": "npm:3.940.0" - "@aws-sdk/credential-provider-node": "npm:3.940.0" - "@aws-sdk/middleware-host-header": "npm:3.936.0" - "@aws-sdk/middleware-logger": "npm:3.936.0" - "@aws-sdk/middleware-recursion-detection": "npm:3.936.0" - "@aws-sdk/middleware-user-agent": "npm:3.940.0" - "@aws-sdk/region-config-resolver": "npm:3.936.0" - "@aws-sdk/types": "npm:3.936.0" - "@aws-sdk/util-endpoints": "npm:3.936.0" - "@aws-sdk/util-user-agent-browser": "npm:3.936.0" - "@aws-sdk/util-user-agent-node": "npm:3.940.0" - "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" - "@smithy/fetch-http-handler": "npm:^5.3.6" - "@smithy/hash-node": "npm:^4.2.5" - "@smithy/invalid-dependency": "npm:^4.2.5" - "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" - "@smithy/middleware-serde": "npm:^4.2.6" - "@smithy/middleware-stack": "npm:^4.2.5" - "@smithy/node-config-provider": "npm:^4.3.5" - "@smithy/node-http-handler": "npm:^4.4.5" - "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" - "@smithy/types": "npm:^4.9.0" - "@smithy/url-parser": "npm:^4.2.5" + "@aws-sdk/core": "npm:^3.973.5" + "@aws-sdk/credential-provider-node": "npm:^3.972.4" + "@aws-sdk/middleware-host-header": "npm:^3.972.3" + "@aws-sdk/middleware-logger": "npm:^3.972.3" + "@aws-sdk/middleware-recursion-detection": "npm:^3.972.3" + "@aws-sdk/middleware-user-agent": "npm:^3.972.5" + "@aws-sdk/region-config-resolver": "npm:^3.972.3" + "@aws-sdk/types": "npm:^3.973.1" + "@aws-sdk/util-endpoints": "npm:3.980.0" + "@aws-sdk/util-user-agent-browser": "npm:^3.972.3" + "@aws-sdk/util-user-agent-node": "npm:^3.972.3" + "@smithy/config-resolver": "npm:^4.4.6" + "@smithy/core": "npm:^3.22.0" + "@smithy/fetch-http-handler": "npm:^5.3.9" + "@smithy/hash-node": "npm:^4.2.8" + "@smithy/invalid-dependency": "npm:^4.2.8" + "@smithy/middleware-content-length": "npm:^4.2.8" + "@smithy/middleware-endpoint": "npm:^4.4.12" + "@smithy/middleware-retry": "npm:^4.4.29" + "@smithy/middleware-serde": "npm:^4.2.9" + "@smithy/middleware-stack": "npm:^4.2.8" + "@smithy/node-config-provider": "npm:^4.3.8" + "@smithy/node-http-handler": "npm:^4.4.8" + "@smithy/protocol-http": "npm:^5.3.8" + "@smithy/smithy-client": "npm:^4.11.1" + "@smithy/types": "npm:^4.12.0" + "@smithy/url-parser": "npm:^4.2.8" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" - "@smithy/util-endpoints": "npm:^3.2.5" - "@smithy/util-middleware": "npm:^4.2.5" - "@smithy/util-retry": "npm:^4.2.5" + "@smithy/util-defaults-mode-browser": "npm:^4.3.28" + "@smithy/util-defaults-mode-node": "npm:^4.2.31" + "@smithy/util-endpoints": "npm:^3.2.8" + "@smithy/util-middleware": "npm:^4.2.8" + "@smithy/util-retry": "npm:^4.2.8" "@smithy/util-utf8": "npm:^4.2.0" tslib: "npm:^2.6.2" - checksum: 10c0/138aa365fcdfee00bc3450adc6b4062c0fd88f0a563a0bfe89cc1519d2c1debdb04b9a1ef5984a6f18a5bfc55576e641f0bb7cf62419f0f751014586d1fe6b93 + checksum: 10c0/2a915d465d2f1e8ed5c4ada74b08822e0ad22ca528790d73be0cb9b366cef1a088394b8f66ae5dac4a133a51e0b74e3f2689332c720b5f26f47e6b72b5a5d451 languageName: node linkType: hard "@aws-sdk/client-sfn@npm:^3": - version: 3.940.0 - resolution: "@aws-sdk/client-sfn@npm:3.940.0" + version: 3.980.0 + resolution: "@aws-sdk/client-sfn@npm:3.980.0" dependencies: "@aws-crypto/sha256-browser": "npm:5.2.0" "@aws-crypto/sha256-js": "npm:5.2.0" - "@aws-sdk/core": "npm:3.940.0" - "@aws-sdk/credential-provider-node": "npm:3.940.0" - "@aws-sdk/middleware-host-header": "npm:3.936.0" - "@aws-sdk/middleware-logger": "npm:3.936.0" - "@aws-sdk/middleware-recursion-detection": "npm:3.936.0" - "@aws-sdk/middleware-user-agent": "npm:3.940.0" - "@aws-sdk/region-config-resolver": "npm:3.936.0" - "@aws-sdk/types": "npm:3.936.0" - "@aws-sdk/util-endpoints": "npm:3.936.0" - "@aws-sdk/util-user-agent-browser": "npm:3.936.0" - "@aws-sdk/util-user-agent-node": "npm:3.940.0" - "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" - "@smithy/fetch-http-handler": "npm:^5.3.6" - "@smithy/hash-node": "npm:^4.2.5" - "@smithy/invalid-dependency": "npm:^4.2.5" - "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" - "@smithy/middleware-serde": "npm:^4.2.6" - "@smithy/middleware-stack": "npm:^4.2.5" - "@smithy/node-config-provider": "npm:^4.3.5" - "@smithy/node-http-handler": "npm:^4.4.5" - "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" - "@smithy/types": "npm:^4.9.0" - "@smithy/url-parser": "npm:^4.2.5" + "@aws-sdk/core": "npm:^3.973.5" + "@aws-sdk/credential-provider-node": "npm:^3.972.4" + "@aws-sdk/middleware-host-header": "npm:^3.972.3" + "@aws-sdk/middleware-logger": "npm:^3.972.3" + "@aws-sdk/middleware-recursion-detection": "npm:^3.972.3" + "@aws-sdk/middleware-user-agent": "npm:^3.972.5" + "@aws-sdk/region-config-resolver": "npm:^3.972.3" + "@aws-sdk/types": "npm:^3.973.1" + "@aws-sdk/util-endpoints": "npm:3.980.0" + "@aws-sdk/util-user-agent-browser": "npm:^3.972.3" + "@aws-sdk/util-user-agent-node": "npm:^3.972.3" + "@smithy/config-resolver": "npm:^4.4.6" + "@smithy/core": "npm:^3.22.0" + "@smithy/fetch-http-handler": "npm:^5.3.9" + "@smithy/hash-node": "npm:^4.2.8" + "@smithy/invalid-dependency": "npm:^4.2.8" + "@smithy/middleware-content-length": "npm:^4.2.8" + "@smithy/middleware-endpoint": "npm:^4.4.12" + "@smithy/middleware-retry": "npm:^4.4.29" + "@smithy/middleware-serde": "npm:^4.2.9" + "@smithy/middleware-stack": "npm:^4.2.8" + "@smithy/node-config-provider": "npm:^4.3.8" + "@smithy/node-http-handler": "npm:^4.4.8" + "@smithy/protocol-http": "npm:^5.3.8" + "@smithy/smithy-client": "npm:^4.11.1" + "@smithy/types": "npm:^4.12.0" + "@smithy/url-parser": "npm:^4.2.8" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" - "@smithy/util-endpoints": "npm:^3.2.5" - "@smithy/util-middleware": "npm:^4.2.5" - "@smithy/util-retry": "npm:^4.2.5" + "@smithy/util-defaults-mode-browser": "npm:^4.3.28" + "@smithy/util-defaults-mode-node": "npm:^4.2.31" + "@smithy/util-endpoints": "npm:^3.2.8" + "@smithy/util-middleware": "npm:^4.2.8" + "@smithy/util-retry": "npm:^4.2.8" "@smithy/util-utf8": "npm:^4.2.0" tslib: "npm:^2.6.2" - checksum: 10c0/edc05ef3417c93360bfe56b43340396231980b4f3dd7b0cd0c0391e1bfeefb648ea1e52b84bf116b42aacbf2da3eacba20b75ad377b85c16aa2cd0cfac81254c + checksum: 10c0/4fb95a76d93cd0ed2338711548cba9e08f712261aac2b4dd8ea1fc119e34eac24016627ec10bfd01c8e7da917ca6ccd23e8089b9692045a2e94f9ca3cc069b19 languageName: node linkType: hard -"@aws-sdk/client-ssm@npm:^3, @aws-sdk/client-ssm@npm:^3.465.0, @aws-sdk/client-ssm@npm:^3.750.0": - version: 3.940.0 - resolution: "@aws-sdk/client-ssm@npm:3.940.0" +"@aws-sdk/client-ssm@npm:^3, @aws-sdk/client-ssm@npm:^3.465.0, @aws-sdk/client-ssm@npm:^3.936.0": + version: 3.980.0 + resolution: "@aws-sdk/client-ssm@npm:3.980.0" dependencies: "@aws-crypto/sha256-browser": "npm:5.2.0" "@aws-crypto/sha256-js": "npm:5.2.0" - "@aws-sdk/core": "npm:3.940.0" - "@aws-sdk/credential-provider-node": "npm:3.940.0" - "@aws-sdk/middleware-host-header": "npm:3.936.0" - "@aws-sdk/middleware-logger": "npm:3.936.0" - "@aws-sdk/middleware-recursion-detection": "npm:3.936.0" - "@aws-sdk/middleware-user-agent": "npm:3.940.0" - "@aws-sdk/region-config-resolver": "npm:3.936.0" - "@aws-sdk/types": "npm:3.936.0" - "@aws-sdk/util-endpoints": "npm:3.936.0" - "@aws-sdk/util-user-agent-browser": "npm:3.936.0" - "@aws-sdk/util-user-agent-node": "npm:3.940.0" - "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" - "@smithy/fetch-http-handler": "npm:^5.3.6" - "@smithy/hash-node": "npm:^4.2.5" - "@smithy/invalid-dependency": "npm:^4.2.5" - "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" - "@smithy/middleware-serde": "npm:^4.2.6" - "@smithy/middleware-stack": "npm:^4.2.5" - "@smithy/node-config-provider": "npm:^4.3.5" - "@smithy/node-http-handler": "npm:^4.4.5" - "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" - "@smithy/types": "npm:^4.9.0" - "@smithy/url-parser": "npm:^4.2.5" + "@aws-sdk/core": "npm:^3.973.5" + "@aws-sdk/credential-provider-node": "npm:^3.972.4" + "@aws-sdk/middleware-host-header": "npm:^3.972.3" + "@aws-sdk/middleware-logger": "npm:^3.972.3" + "@aws-sdk/middleware-recursion-detection": "npm:^3.972.3" + "@aws-sdk/middleware-user-agent": "npm:^3.972.5" + "@aws-sdk/region-config-resolver": "npm:^3.972.3" + "@aws-sdk/types": "npm:^3.973.1" + "@aws-sdk/util-endpoints": "npm:3.980.0" + "@aws-sdk/util-user-agent-browser": "npm:^3.972.3" + "@aws-sdk/util-user-agent-node": "npm:^3.972.3" + "@smithy/config-resolver": "npm:^4.4.6" + "@smithy/core": "npm:^3.22.0" + "@smithy/fetch-http-handler": "npm:^5.3.9" + "@smithy/hash-node": "npm:^4.2.8" + "@smithy/invalid-dependency": "npm:^4.2.8" + "@smithy/middleware-content-length": "npm:^4.2.8" + "@smithy/middleware-endpoint": "npm:^4.4.12" + "@smithy/middleware-retry": "npm:^4.4.29" + "@smithy/middleware-serde": "npm:^4.2.9" + "@smithy/middleware-stack": "npm:^4.2.8" + "@smithy/node-config-provider": "npm:^4.3.8" + "@smithy/node-http-handler": "npm:^4.4.8" + "@smithy/protocol-http": "npm:^5.3.8" + "@smithy/smithy-client": "npm:^4.11.1" + "@smithy/types": "npm:^4.12.0" + "@smithy/url-parser": "npm:^4.2.8" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" - "@smithy/util-endpoints": "npm:^3.2.5" - "@smithy/util-middleware": "npm:^4.2.5" - "@smithy/util-retry": "npm:^4.2.5" + "@smithy/util-defaults-mode-browser": "npm:^4.3.28" + "@smithy/util-defaults-mode-node": "npm:^4.2.31" + "@smithy/util-endpoints": "npm:^3.2.8" + "@smithy/util-middleware": "npm:^4.2.8" + "@smithy/util-retry": "npm:^4.2.8" "@smithy/util-utf8": "npm:^4.2.0" - "@smithy/util-waiter": "npm:^4.2.5" + "@smithy/util-waiter": "npm:^4.2.8" tslib: "npm:^2.6.2" - checksum: 10c0/51bc53731a1cfdc90dc525a80f5eb5eb46fe9622687f42091e25f40a9fdb2469086e7de1bc059cfb4860431be5f59f89c3505527d94bbcad2c49228ad8d34db0 - languageName: node - linkType: hard - -"@aws-sdk/client-sso-oidc@npm:3.621.0": - version: 3.621.0 - resolution: "@aws-sdk/client-sso-oidc@npm:3.621.0" - dependencies: - "@aws-crypto/sha256-browser": "npm:5.2.0" - "@aws-crypto/sha256-js": "npm:5.2.0" - "@aws-sdk/core": "npm:3.621.0" - "@aws-sdk/credential-provider-node": "npm:3.621.0" - "@aws-sdk/middleware-host-header": "npm:3.620.0" - "@aws-sdk/middleware-logger": "npm:3.609.0" - "@aws-sdk/middleware-recursion-detection": "npm:3.620.0" - "@aws-sdk/middleware-user-agent": "npm:3.620.0" - "@aws-sdk/region-config-resolver": "npm:3.614.0" - "@aws-sdk/types": "npm:3.609.0" - "@aws-sdk/util-endpoints": "npm:3.614.0" - "@aws-sdk/util-user-agent-browser": "npm:3.609.0" - "@aws-sdk/util-user-agent-node": "npm:3.614.0" - "@smithy/config-resolver": "npm:^3.0.5" - "@smithy/core": "npm:^2.3.1" - "@smithy/fetch-http-handler": "npm:^3.2.4" - "@smithy/hash-node": "npm:^3.0.3" - "@smithy/invalid-dependency": "npm:^3.0.3" - "@smithy/middleware-content-length": "npm:^3.0.5" - "@smithy/middleware-endpoint": "npm:^3.1.0" - "@smithy/middleware-retry": "npm:^3.0.13" - "@smithy/middleware-serde": "npm:^3.0.3" - "@smithy/middleware-stack": "npm:^3.0.3" - "@smithy/node-config-provider": "npm:^3.1.4" - "@smithy/node-http-handler": "npm:^3.1.4" - "@smithy/protocol-http": "npm:^4.1.0" - "@smithy/smithy-client": "npm:^3.1.11" - "@smithy/types": "npm:^3.3.0" - "@smithy/url-parser": "npm:^3.0.3" - "@smithy/util-base64": "npm:^3.0.0" - "@smithy/util-body-length-browser": "npm:^3.0.0" - "@smithy/util-body-length-node": "npm:^3.0.0" - "@smithy/util-defaults-mode-browser": "npm:^3.0.13" - "@smithy/util-defaults-mode-node": "npm:^3.0.13" - "@smithy/util-endpoints": "npm:^2.0.5" - "@smithy/util-middleware": "npm:^3.0.3" - "@smithy/util-retry": "npm:^3.0.3" - "@smithy/util-utf8": "npm:^3.0.0" - tslib: "npm:^2.6.2" - peerDependencies: - "@aws-sdk/client-sts": ^3.621.0 - checksum: 10c0/600a196da24da566d2cc126fbba47c013724c91d399911614c13d0ebf4af33f4d0553da0da40ac7146d8e593cd4c46ebd4d7313a61a6c1d2dc9fb03948a98796 + checksum: 10c0/c30ad2215d503ce8ba7aef76fdf0580201fda0203a43971d21b7ee43eccc8a968d38ba841ddc1f3defa9e522fa927d6e3944a092831a620ad6ac59c6e72826f6 languageName: node linkType: hard @@ -3297,6 +3273,55 @@ __metadata: languageName: node linkType: hard +"@aws-sdk/client-sso-oidc@npm:3.723.0": + version: 3.723.0 + resolution: "@aws-sdk/client-sso-oidc@npm:3.723.0" + dependencies: + "@aws-crypto/sha256-browser": "npm:5.2.0" + "@aws-crypto/sha256-js": "npm:5.2.0" + "@aws-sdk/core": "npm:3.723.0" + "@aws-sdk/credential-provider-node": "npm:3.723.0" + "@aws-sdk/middleware-host-header": "npm:3.723.0" + "@aws-sdk/middleware-logger": "npm:3.723.0" + "@aws-sdk/middleware-recursion-detection": "npm:3.723.0" + "@aws-sdk/middleware-user-agent": "npm:3.723.0" + "@aws-sdk/region-config-resolver": "npm:3.723.0" + "@aws-sdk/types": "npm:3.723.0" + "@aws-sdk/util-endpoints": "npm:3.723.0" + "@aws-sdk/util-user-agent-browser": "npm:3.723.0" + "@aws-sdk/util-user-agent-node": "npm:3.723.0" + "@smithy/config-resolver": "npm:^4.0.0" + "@smithy/core": "npm:^3.0.0" + "@smithy/fetch-http-handler": "npm:^5.0.0" + "@smithy/hash-node": "npm:^4.0.0" + "@smithy/invalid-dependency": "npm:^4.0.0" + "@smithy/middleware-content-length": "npm:^4.0.0" + "@smithy/middleware-endpoint": "npm:^4.0.0" + "@smithy/middleware-retry": "npm:^4.0.0" + "@smithy/middleware-serde": "npm:^4.0.0" + "@smithy/middleware-stack": "npm:^4.0.0" + "@smithy/node-config-provider": "npm:^4.0.0" + "@smithy/node-http-handler": "npm:^4.0.0" + "@smithy/protocol-http": "npm:^5.0.0" + "@smithy/smithy-client": "npm:^4.0.0" + "@smithy/types": "npm:^4.0.0" + "@smithy/url-parser": "npm:^4.0.0" + "@smithy/util-base64": "npm:^4.0.0" + "@smithy/util-body-length-browser": "npm:^4.0.0" + "@smithy/util-body-length-node": "npm:^4.0.0" + "@smithy/util-defaults-mode-browser": "npm:^4.0.0" + "@smithy/util-defaults-mode-node": "npm:^4.0.0" + "@smithy/util-endpoints": "npm:^3.0.0" + "@smithy/util-middleware": "npm:^4.0.0" + "@smithy/util-retry": "npm:^4.0.0" + "@smithy/util-utf8": "npm:^4.0.0" + tslib: "npm:^2.6.2" + peerDependencies: + "@aws-sdk/client-sts": ^3.723.0 + checksum: 10c0/76c1807b5f1b6b49acdfc3ccee627e62a27396e7963ceacd0561a52d537d2275e973738bf4694607669284bc976292169c536a8ee7122fa58b0a0579707f4986 + languageName: node + linkType: hard + "@aws-sdk/client-sso@npm:3.445.0": version: 3.445.0 resolution: "@aws-sdk/client-sso@npm:3.445.0" @@ -3341,52 +3366,6 @@ __metadata: languageName: node linkType: hard -"@aws-sdk/client-sso@npm:3.621.0": - version: 3.621.0 - resolution: "@aws-sdk/client-sso@npm:3.621.0" - dependencies: - "@aws-crypto/sha256-browser": "npm:5.2.0" - "@aws-crypto/sha256-js": "npm:5.2.0" - "@aws-sdk/core": "npm:3.621.0" - "@aws-sdk/middleware-host-header": "npm:3.620.0" - "@aws-sdk/middleware-logger": "npm:3.609.0" - "@aws-sdk/middleware-recursion-detection": "npm:3.620.0" - "@aws-sdk/middleware-user-agent": "npm:3.620.0" - "@aws-sdk/region-config-resolver": "npm:3.614.0" - "@aws-sdk/types": "npm:3.609.0" - "@aws-sdk/util-endpoints": "npm:3.614.0" - "@aws-sdk/util-user-agent-browser": "npm:3.609.0" - "@aws-sdk/util-user-agent-node": "npm:3.614.0" - "@smithy/config-resolver": "npm:^3.0.5" - "@smithy/core": "npm:^2.3.1" - "@smithy/fetch-http-handler": "npm:^3.2.4" - "@smithy/hash-node": "npm:^3.0.3" - "@smithy/invalid-dependency": "npm:^3.0.3" - "@smithy/middleware-content-length": "npm:^3.0.5" - "@smithy/middleware-endpoint": "npm:^3.1.0" - "@smithy/middleware-retry": "npm:^3.0.13" - "@smithy/middleware-serde": "npm:^3.0.3" - "@smithy/middleware-stack": "npm:^3.0.3" - "@smithy/node-config-provider": "npm:^3.1.4" - "@smithy/node-http-handler": "npm:^3.1.4" - "@smithy/protocol-http": "npm:^4.1.0" - "@smithy/smithy-client": "npm:^3.1.11" - "@smithy/types": "npm:^3.3.0" - "@smithy/url-parser": "npm:^3.0.3" - "@smithy/util-base64": "npm:^3.0.0" - "@smithy/util-body-length-browser": "npm:^3.0.0" - "@smithy/util-body-length-node": "npm:^3.0.0" - "@smithy/util-defaults-mode-browser": "npm:^3.0.13" - "@smithy/util-defaults-mode-node": "npm:^3.0.13" - "@smithy/util-endpoints": "npm:^2.0.5" - "@smithy/util-middleware": "npm:^3.0.3" - "@smithy/util-retry": "npm:^3.0.3" - "@smithy/util-utf8": "npm:^3.0.0" - tslib: "npm:^2.6.2" - checksum: 10c0/6a276bcd6bbb32849504124bd7fe63dcb151b4a978cef9207909b24ce82bdec8dd8df39f3175530e2633ed056c4abab460a594b180765f3078ca7c3646728c9c - languageName: node - linkType: hard - "@aws-sdk/client-sso@npm:3.622.0": version: 3.622.0 resolution: "@aws-sdk/client-sso@npm:3.622.0" @@ -3479,49 +3458,95 @@ __metadata: languageName: node linkType: hard -"@aws-sdk/client-sso@npm:3.940.0": - version: 3.940.0 - resolution: "@aws-sdk/client-sso@npm:3.940.0" +"@aws-sdk/client-sso@npm:3.723.0": + version: 3.723.0 + resolution: "@aws-sdk/client-sso@npm:3.723.0" dependencies: "@aws-crypto/sha256-browser": "npm:5.2.0" "@aws-crypto/sha256-js": "npm:5.2.0" - "@aws-sdk/core": "npm:3.940.0" - "@aws-sdk/middleware-host-header": "npm:3.936.0" - "@aws-sdk/middleware-logger": "npm:3.936.0" - "@aws-sdk/middleware-recursion-detection": "npm:3.936.0" - "@aws-sdk/middleware-user-agent": "npm:3.940.0" - "@aws-sdk/region-config-resolver": "npm:3.936.0" - "@aws-sdk/types": "npm:3.936.0" - "@aws-sdk/util-endpoints": "npm:3.936.0" - "@aws-sdk/util-user-agent-browser": "npm:3.936.0" - "@aws-sdk/util-user-agent-node": "npm:3.940.0" - "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" - "@smithy/fetch-http-handler": "npm:^5.3.6" - "@smithy/hash-node": "npm:^4.2.5" - "@smithy/invalid-dependency": "npm:^4.2.5" - "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" - "@smithy/middleware-serde": "npm:^4.2.6" - "@smithy/middleware-stack": "npm:^4.2.5" - "@smithy/node-config-provider": "npm:^4.3.5" - "@smithy/node-http-handler": "npm:^4.4.5" - "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" - "@smithy/types": "npm:^4.9.0" - "@smithy/url-parser": "npm:^4.2.5" + "@aws-sdk/core": "npm:3.723.0" + "@aws-sdk/middleware-host-header": "npm:3.723.0" + "@aws-sdk/middleware-logger": "npm:3.723.0" + "@aws-sdk/middleware-recursion-detection": "npm:3.723.0" + "@aws-sdk/middleware-user-agent": "npm:3.723.0" + "@aws-sdk/region-config-resolver": "npm:3.723.0" + "@aws-sdk/types": "npm:3.723.0" + "@aws-sdk/util-endpoints": "npm:3.723.0" + "@aws-sdk/util-user-agent-browser": "npm:3.723.0" + "@aws-sdk/util-user-agent-node": "npm:3.723.0" + "@smithy/config-resolver": "npm:^4.0.0" + "@smithy/core": "npm:^3.0.0" + "@smithy/fetch-http-handler": "npm:^5.0.0" + "@smithy/hash-node": "npm:^4.0.0" + "@smithy/invalid-dependency": "npm:^4.0.0" + "@smithy/middleware-content-length": "npm:^4.0.0" + "@smithy/middleware-endpoint": "npm:^4.0.0" + "@smithy/middleware-retry": "npm:^4.0.0" + "@smithy/middleware-serde": "npm:^4.0.0" + "@smithy/middleware-stack": "npm:^4.0.0" + "@smithy/node-config-provider": "npm:^4.0.0" + "@smithy/node-http-handler": "npm:^4.0.0" + "@smithy/protocol-http": "npm:^5.0.0" + "@smithy/smithy-client": "npm:^4.0.0" + "@smithy/types": "npm:^4.0.0" + "@smithy/url-parser": "npm:^4.0.0" + "@smithy/util-base64": "npm:^4.0.0" + "@smithy/util-body-length-browser": "npm:^4.0.0" + "@smithy/util-body-length-node": "npm:^4.0.0" + "@smithy/util-defaults-mode-browser": "npm:^4.0.0" + "@smithy/util-defaults-mode-node": "npm:^4.0.0" + "@smithy/util-endpoints": "npm:^3.0.0" + "@smithy/util-middleware": "npm:^4.0.0" + "@smithy/util-retry": "npm:^4.0.0" + "@smithy/util-utf8": "npm:^4.0.0" + tslib: "npm:^2.6.2" + checksum: 10c0/456c08e48723bdaeda383d72055c24265fad2e6cbd60a37a872d2dc5a3c9cbb7bfb2f2d585010ddc933bb5a046d8708d12cf15d34317d141f9440cb83687a87a + languageName: node + linkType: hard + +"@aws-sdk/client-sso@npm:3.980.0": + version: 3.980.0 + resolution: "@aws-sdk/client-sso@npm:3.980.0" + dependencies: + "@aws-crypto/sha256-browser": "npm:5.2.0" + "@aws-crypto/sha256-js": "npm:5.2.0" + "@aws-sdk/core": "npm:^3.973.5" + "@aws-sdk/middleware-host-header": "npm:^3.972.3" + "@aws-sdk/middleware-logger": "npm:^3.972.3" + "@aws-sdk/middleware-recursion-detection": "npm:^3.972.3" + "@aws-sdk/middleware-user-agent": "npm:^3.972.5" + "@aws-sdk/region-config-resolver": "npm:^3.972.3" + "@aws-sdk/types": "npm:^3.973.1" + "@aws-sdk/util-endpoints": "npm:3.980.0" + "@aws-sdk/util-user-agent-browser": "npm:^3.972.3" + "@aws-sdk/util-user-agent-node": "npm:^3.972.3" + "@smithy/config-resolver": "npm:^4.4.6" + "@smithy/core": "npm:^3.22.0" + "@smithy/fetch-http-handler": "npm:^5.3.9" + "@smithy/hash-node": "npm:^4.2.8" + "@smithy/invalid-dependency": "npm:^4.2.8" + "@smithy/middleware-content-length": "npm:^4.2.8" + "@smithy/middleware-endpoint": "npm:^4.4.12" + "@smithy/middleware-retry": "npm:^4.4.29" + "@smithy/middleware-serde": "npm:^4.2.9" + "@smithy/middleware-stack": "npm:^4.2.8" + "@smithy/node-config-provider": "npm:^4.3.8" + "@smithy/node-http-handler": "npm:^4.4.8" + "@smithy/protocol-http": "npm:^5.3.8" + "@smithy/smithy-client": "npm:^4.11.1" + "@smithy/types": "npm:^4.12.0" + "@smithy/url-parser": "npm:^4.2.8" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" - "@smithy/util-endpoints": "npm:^3.2.5" - "@smithy/util-middleware": "npm:^4.2.5" - "@smithy/util-retry": "npm:^4.2.5" + "@smithy/util-defaults-mode-browser": "npm:^4.3.28" + "@smithy/util-defaults-mode-node": "npm:^4.2.31" + "@smithy/util-endpoints": "npm:^3.2.8" + "@smithy/util-middleware": "npm:^4.2.8" + "@smithy/util-retry": "npm:^4.2.8" "@smithy/util-utf8": "npm:^4.2.0" tslib: "npm:^2.6.2" - checksum: 10c0/c0f6c8bc4ad55f2b573fbc40f472b974679c11c6e2bc224b1b9a4f4a9134895b37127eaaa588d56cb2e32522de4921dd813ae7229f5db4fedeeea1d06500e74c + checksum: 10c0/870a684d7772971d482361e9ed94d2cd86ffa0d47f572e2f01ba44e7f5954cd91b1e832961deadcb5afaf1fee6f26cce755a3cc5299f3336e1f26b1d652aa2c1 languageName: node linkType: hard @@ -3573,54 +3598,6 @@ __metadata: languageName: node linkType: hard -"@aws-sdk/client-sts@npm:3.621.0": - version: 3.621.0 - resolution: "@aws-sdk/client-sts@npm:3.621.0" - dependencies: - "@aws-crypto/sha256-browser": "npm:5.2.0" - "@aws-crypto/sha256-js": "npm:5.2.0" - "@aws-sdk/client-sso-oidc": "npm:3.621.0" - "@aws-sdk/core": "npm:3.621.0" - "@aws-sdk/credential-provider-node": "npm:3.621.0" - "@aws-sdk/middleware-host-header": "npm:3.620.0" - "@aws-sdk/middleware-logger": "npm:3.609.0" - "@aws-sdk/middleware-recursion-detection": "npm:3.620.0" - "@aws-sdk/middleware-user-agent": "npm:3.620.0" - "@aws-sdk/region-config-resolver": "npm:3.614.0" - "@aws-sdk/types": "npm:3.609.0" - "@aws-sdk/util-endpoints": "npm:3.614.0" - "@aws-sdk/util-user-agent-browser": "npm:3.609.0" - "@aws-sdk/util-user-agent-node": "npm:3.614.0" - "@smithy/config-resolver": "npm:^3.0.5" - "@smithy/core": "npm:^2.3.1" - "@smithy/fetch-http-handler": "npm:^3.2.4" - "@smithy/hash-node": "npm:^3.0.3" - "@smithy/invalid-dependency": "npm:^3.0.3" - "@smithy/middleware-content-length": "npm:^3.0.5" - "@smithy/middleware-endpoint": "npm:^3.1.0" - "@smithy/middleware-retry": "npm:^3.0.13" - "@smithy/middleware-serde": "npm:^3.0.3" - "@smithy/middleware-stack": "npm:^3.0.3" - "@smithy/node-config-provider": "npm:^3.1.4" - "@smithy/node-http-handler": "npm:^3.1.4" - "@smithy/protocol-http": "npm:^4.1.0" - "@smithy/smithy-client": "npm:^3.1.11" - "@smithy/types": "npm:^3.3.0" - "@smithy/url-parser": "npm:^3.0.3" - "@smithy/util-base64": "npm:^3.0.0" - "@smithy/util-body-length-browser": "npm:^3.0.0" - "@smithy/util-body-length-node": "npm:^3.0.0" - "@smithy/util-defaults-mode-browser": "npm:^3.0.13" - "@smithy/util-defaults-mode-node": "npm:^3.0.13" - "@smithy/util-endpoints": "npm:^2.0.5" - "@smithy/util-middleware": "npm:^3.0.3" - "@smithy/util-retry": "npm:^3.0.3" - "@smithy/util-utf8": "npm:^3.0.0" - tslib: "npm:^2.6.2" - checksum: 10c0/bfee49ac83b2167c3da1eab7a2d55f8e7e2bc5c0cc5914e0ca46e109cca682a29d9149b0bb5880dd9e7cc6ed1aed3c1c2a2299a4c2c099f9c222cb74f320564c - languageName: node - linkType: hard - "@aws-sdk/client-sts@npm:3.622.0": version: 3.622.0 resolution: "@aws-sdk/client-sts@npm:3.622.0" @@ -3669,50 +3646,98 @@ __metadata: languageName: node linkType: hard -"@aws-sdk/client-sts@npm:^3, @aws-sdk/client-sts@npm:^3.465.0, @aws-sdk/client-sts@npm:^3.624.0, @aws-sdk/client-sts@npm:^3.750.0": - version: 3.940.0 - resolution: "@aws-sdk/client-sts@npm:3.940.0" +"@aws-sdk/client-sts@npm:3.723.0": + version: 3.723.0 + resolution: "@aws-sdk/client-sts@npm:3.723.0" dependencies: "@aws-crypto/sha256-browser": "npm:5.2.0" "@aws-crypto/sha256-js": "npm:5.2.0" - "@aws-sdk/core": "npm:3.940.0" - "@aws-sdk/credential-provider-node": "npm:3.940.0" - "@aws-sdk/middleware-host-header": "npm:3.936.0" - "@aws-sdk/middleware-logger": "npm:3.936.0" - "@aws-sdk/middleware-recursion-detection": "npm:3.936.0" - "@aws-sdk/middleware-user-agent": "npm:3.940.0" - "@aws-sdk/region-config-resolver": "npm:3.936.0" - "@aws-sdk/types": "npm:3.936.0" - "@aws-sdk/util-endpoints": "npm:3.936.0" - "@aws-sdk/util-user-agent-browser": "npm:3.936.0" - "@aws-sdk/util-user-agent-node": "npm:3.940.0" - "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" - "@smithy/fetch-http-handler": "npm:^5.3.6" - "@smithy/hash-node": "npm:^4.2.5" - "@smithy/invalid-dependency": "npm:^4.2.5" - "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" - "@smithy/middleware-serde": "npm:^4.2.6" - "@smithy/middleware-stack": "npm:^4.2.5" - "@smithy/node-config-provider": "npm:^4.3.5" - "@smithy/node-http-handler": "npm:^4.4.5" - "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" - "@smithy/types": "npm:^4.9.0" - "@smithy/url-parser": "npm:^4.2.5" + "@aws-sdk/client-sso-oidc": "npm:3.723.0" + "@aws-sdk/core": "npm:3.723.0" + "@aws-sdk/credential-provider-node": "npm:3.723.0" + "@aws-sdk/middleware-host-header": "npm:3.723.0" + "@aws-sdk/middleware-logger": "npm:3.723.0" + "@aws-sdk/middleware-recursion-detection": "npm:3.723.0" + "@aws-sdk/middleware-user-agent": "npm:3.723.0" + "@aws-sdk/region-config-resolver": "npm:3.723.0" + "@aws-sdk/types": "npm:3.723.0" + "@aws-sdk/util-endpoints": "npm:3.723.0" + "@aws-sdk/util-user-agent-browser": "npm:3.723.0" + "@aws-sdk/util-user-agent-node": "npm:3.723.0" + "@smithy/config-resolver": "npm:^4.0.0" + "@smithy/core": "npm:^3.0.0" + "@smithy/fetch-http-handler": "npm:^5.0.0" + "@smithy/hash-node": "npm:^4.0.0" + "@smithy/invalid-dependency": "npm:^4.0.0" + "@smithy/middleware-content-length": "npm:^4.0.0" + "@smithy/middleware-endpoint": "npm:^4.0.0" + "@smithy/middleware-retry": "npm:^4.0.0" + "@smithy/middleware-serde": "npm:^4.0.0" + "@smithy/middleware-stack": "npm:^4.0.0" + "@smithy/node-config-provider": "npm:^4.0.0" + "@smithy/node-http-handler": "npm:^4.0.0" + "@smithy/protocol-http": "npm:^5.0.0" + "@smithy/smithy-client": "npm:^4.0.0" + "@smithy/types": "npm:^4.0.0" + "@smithy/url-parser": "npm:^4.0.0" + "@smithy/util-base64": "npm:^4.0.0" + "@smithy/util-body-length-browser": "npm:^4.0.0" + "@smithy/util-body-length-node": "npm:^4.0.0" + "@smithy/util-defaults-mode-browser": "npm:^4.0.0" + "@smithy/util-defaults-mode-node": "npm:^4.0.0" + "@smithy/util-endpoints": "npm:^3.0.0" + "@smithy/util-middleware": "npm:^4.0.0" + "@smithy/util-retry": "npm:^4.0.0" + "@smithy/util-utf8": "npm:^4.0.0" + tslib: "npm:^2.6.2" + checksum: 10c0/eb18bb3e43803d95f2eeb47aa6de904df17ca8568c98b9e46874afd45003358229b2f3ca2f3e2f0afdb340d00610142d4b2b474925046bd4617769a4bd8ca3a3 + languageName: node + linkType: hard + +"@aws-sdk/client-sts@npm:^3, @aws-sdk/client-sts@npm:^3.465.0, @aws-sdk/client-sts@npm:^3.624.0, @aws-sdk/client-sts@npm:^3.936.0": + version: 3.980.0 + resolution: "@aws-sdk/client-sts@npm:3.980.0" + dependencies: + "@aws-crypto/sha256-browser": "npm:5.2.0" + "@aws-crypto/sha256-js": "npm:5.2.0" + "@aws-sdk/core": "npm:^3.973.5" + "@aws-sdk/credential-provider-node": "npm:^3.972.4" + "@aws-sdk/middleware-host-header": "npm:^3.972.3" + "@aws-sdk/middleware-logger": "npm:^3.972.3" + "@aws-sdk/middleware-recursion-detection": "npm:^3.972.3" + "@aws-sdk/middleware-user-agent": "npm:^3.972.5" + "@aws-sdk/region-config-resolver": "npm:^3.972.3" + "@aws-sdk/types": "npm:^3.973.1" + "@aws-sdk/util-endpoints": "npm:3.980.0" + "@aws-sdk/util-user-agent-browser": "npm:^3.972.3" + "@aws-sdk/util-user-agent-node": "npm:^3.972.3" + "@smithy/config-resolver": "npm:^4.4.6" + "@smithy/core": "npm:^3.22.0" + "@smithy/fetch-http-handler": "npm:^5.3.9" + "@smithy/hash-node": "npm:^4.2.8" + "@smithy/invalid-dependency": "npm:^4.2.8" + "@smithy/middleware-content-length": "npm:^4.2.8" + "@smithy/middleware-endpoint": "npm:^4.4.12" + "@smithy/middleware-retry": "npm:^4.4.29" + "@smithy/middleware-serde": "npm:^4.2.9" + "@smithy/middleware-stack": "npm:^4.2.8" + "@smithy/node-config-provider": "npm:^4.3.8" + "@smithy/node-http-handler": "npm:^4.4.8" + "@smithy/protocol-http": "npm:^5.3.8" + "@smithy/smithy-client": "npm:^4.11.1" + "@smithy/types": "npm:^4.12.0" + "@smithy/url-parser": "npm:^4.2.8" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" - "@smithy/util-endpoints": "npm:^3.2.5" - "@smithy/util-middleware": "npm:^4.2.5" - "@smithy/util-retry": "npm:^4.2.5" + "@smithy/util-defaults-mode-browser": "npm:^4.3.28" + "@smithy/util-defaults-mode-node": "npm:^4.2.31" + "@smithy/util-endpoints": "npm:^3.2.8" + "@smithy/util-middleware": "npm:^4.2.8" + "@smithy/util-retry": "npm:^4.2.8" "@smithy/util-utf8": "npm:^4.2.0" tslib: "npm:^2.6.2" - checksum: 10c0/10a7c98e868a63fd06525d94223c3311581d7b3050d09f75ea3900117bc1b13c93b6465f2fcb2596e82d7c5068510bb8ec1b275ed869a94a0d771d1ffae3cf84 + checksum: 10c0/a50834ff94796a648b1df7109aa258698edd6c0980ffeac3d58e7dbd7149ecdeeef2a88c3dc49052ed3a94ffbdc1a3bbd66a6f579075b7c2ed53e9f9278e1727 languageName: node linkType: hard @@ -3726,23 +3751,6 @@ __metadata: languageName: node linkType: hard -"@aws-sdk/core@npm:3.621.0": - version: 3.621.0 - resolution: "@aws-sdk/core@npm:3.621.0" - dependencies: - "@smithy/core": "npm:^2.3.1" - "@smithy/node-config-provider": "npm:^3.1.4" - "@smithy/protocol-http": "npm:^4.1.0" - "@smithy/signature-v4": "npm:^4.1.0" - "@smithy/smithy-client": "npm:^3.1.11" - "@smithy/types": "npm:^3.3.0" - "@smithy/util-middleware": "npm:^3.0.3" - fast-xml-parser: "npm:4.4.1" - tslib: "npm:^2.6.2" - checksum: 10c0/7c23da79289b73b6e34eca04eb28200c3e800ca360ed4dc7cd0c2b17839cc6bc9f151589eb78fe3dc71632800bea540529ec8f6d26ac909ddebc30b6bc7a6c65 - languageName: node - linkType: hard - "@aws-sdk/core@npm:3.622.0": version: 3.622.0 resolution: "@aws-sdk/core@npm:3.622.0" @@ -3778,37 +3786,66 @@ __metadata: languageName: node linkType: hard -"@aws-sdk/core@npm:3.940.0": - version: 3.940.0 - resolution: "@aws-sdk/core@npm:3.940.0" +"@aws-sdk/core@npm:3.723.0": + version: 3.723.0 + resolution: "@aws-sdk/core@npm:3.723.0" dependencies: - "@aws-sdk/types": "npm:3.936.0" - "@aws-sdk/xml-builder": "npm:3.930.0" - "@smithy/core": "npm:^3.18.5" - "@smithy/node-config-provider": "npm:^4.3.5" - "@smithy/property-provider": "npm:^4.2.5" - "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/signature-v4": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" - "@smithy/types": "npm:^4.9.0" + "@aws-sdk/types": "npm:3.723.0" + "@smithy/core": "npm:^3.0.0" + "@smithy/node-config-provider": "npm:^4.0.0" + "@smithy/property-provider": "npm:^4.0.0" + "@smithy/protocol-http": "npm:^5.0.0" + "@smithy/signature-v4": "npm:^5.0.0" + "@smithy/smithy-client": "npm:^4.0.0" + "@smithy/types": "npm:^4.0.0" + "@smithy/util-middleware": "npm:^4.0.0" + fast-xml-parser: "npm:4.4.1" + tslib: "npm:^2.6.2" + checksum: 10c0/391007791890dae226ffffb617a7bb8f9ef99a114364257a7ccb8dc62ed6a171736552c763fc0f20eb5d70893bff09103268f0d090c88c9e955441649cfad443 + languageName: node + linkType: hard + +"@aws-sdk/core@npm:^3.973.5": + version: 3.973.5 + resolution: "@aws-sdk/core@npm:3.973.5" + dependencies: + "@aws-sdk/types": "npm:^3.973.1" + "@aws-sdk/xml-builder": "npm:^3.972.2" + "@smithy/core": "npm:^3.22.0" + "@smithy/node-config-provider": "npm:^4.3.8" + "@smithy/property-provider": "npm:^4.2.8" + "@smithy/protocol-http": "npm:^5.3.8" + "@smithy/signature-v4": "npm:^5.3.8" + "@smithy/smithy-client": "npm:^4.11.1" + "@smithy/types": "npm:^4.12.0" "@smithy/util-base64": "npm:^4.3.0" - "@smithy/util-middleware": "npm:^4.2.5" + "@smithy/util-middleware": "npm:^4.2.8" "@smithy/util-utf8": "npm:^4.2.0" tslib: "npm:^2.6.2" - checksum: 10c0/090b960007d3fe7a6f54d6e9a739f7de51c25d6e8f7519821ed94d8760508a9a1f034bc4ffc8b87a797eba485baf7024d45fc86556ce224b35da2530fe85af20 + checksum: 10c0/d885f0cb18185a4958df724bc914b0d2ee18f4ed16fe4f250dc85b90d87c32251513b49806007a46f01f3220a7abe75990062f8e31c1e466e5e7a7e5d41dcae5 languageName: node linkType: hard -"@aws-sdk/credential-provider-cognito-identity@npm:3.940.0": - version: 3.940.0 - resolution: "@aws-sdk/credential-provider-cognito-identity@npm:3.940.0" +"@aws-sdk/crc64-nvme@npm:3.972.0": + version: 3.972.0 + resolution: "@aws-sdk/crc64-nvme@npm:3.972.0" dependencies: - "@aws-sdk/client-cognito-identity": "npm:3.940.0" - "@aws-sdk/types": "npm:3.936.0" - "@smithy/property-provider": "npm:^4.2.5" - "@smithy/types": "npm:^4.9.0" + "@smithy/types": "npm:^4.12.0" + tslib: "npm:^2.6.2" + checksum: 10c0/c756b934baa51a7582f5efc8a935b3ce3403f0574451ffa8769e2cecac4cd5f08e0c6f0d5cb85c3e3bcf34cbc475c10e9d8302265a5b1fbb37424b5ac2580a6f + languageName: node + linkType: hard + +"@aws-sdk/credential-provider-cognito-identity@npm:^3.972.3": + version: 3.972.3 + resolution: "@aws-sdk/credential-provider-cognito-identity@npm:3.972.3" + dependencies: + "@aws-sdk/client-cognito-identity": "npm:3.980.0" + "@aws-sdk/types": "npm:^3.973.1" + "@smithy/property-provider": "npm:^4.2.8" + "@smithy/types": "npm:^4.12.0" tslib: "npm:^2.6.2" - checksum: 10c0/e8842f32885f4e69de6c81c040c4137c6b67c0a5b40d1deb8f5b42c3b65512e883a8ca65c7d6636bac678de3428f01a5544b0a2c561229546d486fe44d0cf755 + checksum: 10c0/aaebb8e67bad5a8a1d10b99a1be492d5ffb20952b91cc622c37eec69a720c32a7dcde2f5af79627bd85a0880ea3e485385f24d53e5fe369b68eaff0fb5d40df6 languageName: node linkType: hard @@ -3836,33 +3873,29 @@ __metadata: languageName: node linkType: hard -"@aws-sdk/credential-provider-env@npm:3.940.0": - version: 3.940.0 - resolution: "@aws-sdk/credential-provider-env@npm:3.940.0" +"@aws-sdk/credential-provider-env@npm:3.723.0": + version: 3.723.0 + resolution: "@aws-sdk/credential-provider-env@npm:3.723.0" dependencies: - "@aws-sdk/core": "npm:3.940.0" - "@aws-sdk/types": "npm:3.936.0" - "@smithy/property-provider": "npm:^4.2.5" - "@smithy/types": "npm:^4.9.0" + "@aws-sdk/core": "npm:3.723.0" + "@aws-sdk/types": "npm:3.723.0" + "@smithy/property-provider": "npm:^4.0.0" + "@smithy/types": "npm:^4.0.0" tslib: "npm:^2.6.2" - checksum: 10c0/538ede72ad6357ccc613957b11bcd254789cd502e14938c26870c326ff1518df9bb5b23fd4d1139bac77b4394ea6a1a621ad025609d62f86d7b363636ca73e5e + checksum: 10c0/be8a37e68e700eede985511ca72730cc862971760548c89589d5168c8f53c2ab361b033ee0711fcbac2b5609faf3365d532c3534b9e4cb61609f42f9d1f086ba languageName: node linkType: hard -"@aws-sdk/credential-provider-http@npm:3.621.0": - version: 3.621.0 - resolution: "@aws-sdk/credential-provider-http@npm:3.621.0" +"@aws-sdk/credential-provider-env@npm:^3.972.3": + version: 3.972.3 + resolution: "@aws-sdk/credential-provider-env@npm:3.972.3" dependencies: - "@aws-sdk/types": "npm:3.609.0" - "@smithy/fetch-http-handler": "npm:^3.2.4" - "@smithy/node-http-handler": "npm:^3.1.4" - "@smithy/property-provider": "npm:^3.1.3" - "@smithy/protocol-http": "npm:^4.1.0" - "@smithy/smithy-client": "npm:^3.1.11" - "@smithy/types": "npm:^3.3.0" - "@smithy/util-stream": "npm:^3.1.3" + "@aws-sdk/core": "npm:^3.973.5" + "@aws-sdk/types": "npm:^3.973.1" + "@smithy/property-provider": "npm:^4.2.8" + "@smithy/types": "npm:^4.12.0" tslib: "npm:^2.6.2" - checksum: 10c0/d92dfea07d432059189f61735a6504439804463a4a3ff2b0ed22f9ce70ffbfa003f3137236b18c268a4a63b9d25d358110fc9d566a56936d71cd2f31fc2a2286 + checksum: 10c0/f6eaa47673282fad838fc22d93ce2b81365955c689750b2a346ed49b646ec1f03424c22da6cbdd5673378da854f5de02ef5d3f3bee6a080f1656d79a3b0b0b4f languageName: node linkType: hard @@ -3900,21 +3933,39 @@ __metadata: languageName: node linkType: hard -"@aws-sdk/credential-provider-http@npm:3.940.0": - version: 3.940.0 - resolution: "@aws-sdk/credential-provider-http@npm:3.940.0" +"@aws-sdk/credential-provider-http@npm:3.723.0": + version: 3.723.0 + resolution: "@aws-sdk/credential-provider-http@npm:3.723.0" dependencies: - "@aws-sdk/core": "npm:3.940.0" - "@aws-sdk/types": "npm:3.936.0" - "@smithy/fetch-http-handler": "npm:^5.3.6" - "@smithy/node-http-handler": "npm:^4.4.5" - "@smithy/property-provider": "npm:^4.2.5" - "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" - "@smithy/types": "npm:^4.9.0" - "@smithy/util-stream": "npm:^4.5.6" + "@aws-sdk/core": "npm:3.723.0" + "@aws-sdk/types": "npm:3.723.0" + "@smithy/fetch-http-handler": "npm:^5.0.0" + "@smithy/node-http-handler": "npm:^4.0.0" + "@smithy/property-provider": "npm:^4.0.0" + "@smithy/protocol-http": "npm:^5.0.0" + "@smithy/smithy-client": "npm:^4.0.0" + "@smithy/types": "npm:^4.0.0" + "@smithy/util-stream": "npm:^4.0.0" + tslib: "npm:^2.6.2" + checksum: 10c0/407d1169a54246e3bb5ba839870fa5d2e10cd42b9780adc72d763201243d7d80576e2aa430793768e131c7637195e585c6696c153f013d99d25db3f16739762f + languageName: node + linkType: hard + +"@aws-sdk/credential-provider-http@npm:^3.972.5": + version: 3.972.5 + resolution: "@aws-sdk/credential-provider-http@npm:3.972.5" + dependencies: + "@aws-sdk/core": "npm:^3.973.5" + "@aws-sdk/types": "npm:^3.973.1" + "@smithy/fetch-http-handler": "npm:^5.3.9" + "@smithy/node-http-handler": "npm:^4.4.8" + "@smithy/property-provider": "npm:^4.2.8" + "@smithy/protocol-http": "npm:^5.3.8" + "@smithy/smithy-client": "npm:^4.11.1" + "@smithy/types": "npm:^4.12.0" + "@smithy/util-stream": "npm:^4.5.10" tslib: "npm:^2.6.2" - checksum: 10c0/a3092b60041cb5be3d07891c1be959b14420a5d630372030877970c7d111c0ca8881daeb6740c16767c3a587a9a65d5e6aa8081a73a58a6cccefc98f9307a9e3 + checksum: 10c0/cd1302286ad7e2a403c4a8217999af46ff3d00442a1392e7312acb2cf544154edfb4f3d1c9f263a6c76fb30f4d95d36dacf2881309cadbbd703cdea2ca9d26c9 languageName: node linkType: hard @@ -3936,27 +3987,6 @@ __metadata: languageName: node linkType: hard -"@aws-sdk/credential-provider-ini@npm:3.621.0": - version: 3.621.0 - resolution: "@aws-sdk/credential-provider-ini@npm:3.621.0" - dependencies: - "@aws-sdk/credential-provider-env": "npm:3.620.1" - "@aws-sdk/credential-provider-http": "npm:3.621.0" - "@aws-sdk/credential-provider-process": "npm:3.620.1" - "@aws-sdk/credential-provider-sso": "npm:3.621.0" - "@aws-sdk/credential-provider-web-identity": "npm:3.621.0" - "@aws-sdk/types": "npm:3.609.0" - "@smithy/credential-provider-imds": "npm:^3.2.0" - "@smithy/property-provider": "npm:^3.1.3" - "@smithy/shared-ini-file-loader": "npm:^3.1.4" - "@smithy/types": "npm:^3.3.0" - tslib: "npm:^2.6.2" - peerDependencies: - "@aws-sdk/client-sts": ^3.621.0 - checksum: 10c0/01b6c8a7a045422dd0826aed3e7fa3a9584bd28d3ce6abee322e5114b03adc362a6b1ea27c226371d76e6f671cf6593fb8d604054f126c40fb3df8f7abb9076b - languageName: node - linkType: hard - "@aws-sdk/credential-provider-ini@npm:3.622.0": version: 3.622.0 resolution: "@aws-sdk/credential-provider-ini@npm:3.622.0" @@ -3999,41 +4029,63 @@ __metadata: languageName: node linkType: hard -"@aws-sdk/credential-provider-ini@npm:3.940.0, @aws-sdk/credential-provider-ini@npm:^3.465.0": - version: 3.940.0 - resolution: "@aws-sdk/credential-provider-ini@npm:3.940.0" +"@aws-sdk/credential-provider-ini@npm:3.723.0": + version: 3.723.0 + resolution: "@aws-sdk/credential-provider-ini@npm:3.723.0" dependencies: - "@aws-sdk/core": "npm:3.940.0" - "@aws-sdk/credential-provider-env": "npm:3.940.0" - "@aws-sdk/credential-provider-http": "npm:3.940.0" - "@aws-sdk/credential-provider-login": "npm:3.940.0" - "@aws-sdk/credential-provider-process": "npm:3.940.0" - "@aws-sdk/credential-provider-sso": "npm:3.940.0" - "@aws-sdk/credential-provider-web-identity": "npm:3.940.0" - "@aws-sdk/nested-clients": "npm:3.940.0" - "@aws-sdk/types": "npm:3.936.0" - "@smithy/credential-provider-imds": "npm:^4.2.5" - "@smithy/property-provider": "npm:^4.2.5" - "@smithy/shared-ini-file-loader": "npm:^4.4.0" - "@smithy/types": "npm:^4.9.0" + "@aws-sdk/core": "npm:3.723.0" + "@aws-sdk/credential-provider-env": "npm:3.723.0" + "@aws-sdk/credential-provider-http": "npm:3.723.0" + "@aws-sdk/credential-provider-process": "npm:3.723.0" + "@aws-sdk/credential-provider-sso": "npm:3.723.0" + "@aws-sdk/credential-provider-web-identity": "npm:3.723.0" + "@aws-sdk/types": "npm:3.723.0" + "@smithy/credential-provider-imds": "npm:^4.0.0" + "@smithy/property-provider": "npm:^4.0.0" + "@smithy/shared-ini-file-loader": "npm:^4.0.0" + "@smithy/types": "npm:^4.0.0" + tslib: "npm:^2.6.2" + peerDependencies: + "@aws-sdk/client-sts": ^3.723.0 + checksum: 10c0/0d432dfabec92221360ee0ee3e43618d83eabcbc3f16a783d2679dc00e563e66d6971ab4f7e99d4dffeddf04ae404bd2ff5b6aaa023f35a6fdfcff90bdf9f7e5 + languageName: node + linkType: hard + +"@aws-sdk/credential-provider-ini@npm:^3.465.0, @aws-sdk/credential-provider-ini@npm:^3.972.3": + version: 3.972.3 + resolution: "@aws-sdk/credential-provider-ini@npm:3.972.3" + dependencies: + "@aws-sdk/core": "npm:^3.973.5" + "@aws-sdk/credential-provider-env": "npm:^3.972.3" + "@aws-sdk/credential-provider-http": "npm:^3.972.5" + "@aws-sdk/credential-provider-login": "npm:^3.972.3" + "@aws-sdk/credential-provider-process": "npm:^3.972.3" + "@aws-sdk/credential-provider-sso": "npm:^3.972.3" + "@aws-sdk/credential-provider-web-identity": "npm:^3.972.3" + "@aws-sdk/nested-clients": "npm:3.980.0" + "@aws-sdk/types": "npm:^3.973.1" + "@smithy/credential-provider-imds": "npm:^4.2.8" + "@smithy/property-provider": "npm:^4.2.8" + "@smithy/shared-ini-file-loader": "npm:^4.4.3" + "@smithy/types": "npm:^4.12.0" tslib: "npm:^2.6.2" - checksum: 10c0/28b78575da447ea9a8f21c926fe0b1ef037e886a1676d60e168702abbeb070241a869b758bab1522e9e97ad7940376e30e7866c72201fab46a3dd67c4073af94 + checksum: 10c0/6a6bae412805829756afbad4250265c7bdc1c11fc24cd1892bc0cfb58c8178edfbe233e16bcf40fb38e772fcf76b5089fa4e46170609007d9ed03e7ca45f36b2 languageName: node linkType: hard -"@aws-sdk/credential-provider-login@npm:3.940.0": - version: 3.940.0 - resolution: "@aws-sdk/credential-provider-login@npm:3.940.0" +"@aws-sdk/credential-provider-login@npm:^3.972.3": + version: 3.972.3 + resolution: "@aws-sdk/credential-provider-login@npm:3.972.3" dependencies: - "@aws-sdk/core": "npm:3.940.0" - "@aws-sdk/nested-clients": "npm:3.940.0" - "@aws-sdk/types": "npm:3.936.0" - "@smithy/property-provider": "npm:^4.2.5" - "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/shared-ini-file-loader": "npm:^4.4.0" - "@smithy/types": "npm:^4.9.0" + "@aws-sdk/core": "npm:^3.973.5" + "@aws-sdk/nested-clients": "npm:3.980.0" + "@aws-sdk/types": "npm:^3.973.1" + "@smithy/property-provider": "npm:^4.2.8" + "@smithy/protocol-http": "npm:^5.3.8" + "@smithy/shared-ini-file-loader": "npm:^4.4.3" + "@smithy/types": "npm:^4.12.0" tslib: "npm:^2.6.2" - checksum: 10c0/a408b413bf13c73c25bec80323e0cb59a86cf44b724156db6fd34cd8ae72b55af81a0c7c6325d1f99b85bd5f04aa64edadd06910c4f7ab0e5f8a714c54aad26e + checksum: 10c0/79d41f8437ffcb6a98e262ebd2a635848acec8c4c1f945b217a773e4352ef38a61e41f64481edab303ab27d8bb089d040295eba288e366e34237262aea7469cc languageName: node linkType: hard @@ -4056,26 +4108,6 @@ __metadata: languageName: node linkType: hard -"@aws-sdk/credential-provider-node@npm:3.621.0": - version: 3.621.0 - resolution: "@aws-sdk/credential-provider-node@npm:3.621.0" - dependencies: - "@aws-sdk/credential-provider-env": "npm:3.620.1" - "@aws-sdk/credential-provider-http": "npm:3.621.0" - "@aws-sdk/credential-provider-ini": "npm:3.621.0" - "@aws-sdk/credential-provider-process": "npm:3.620.1" - "@aws-sdk/credential-provider-sso": "npm:3.621.0" - "@aws-sdk/credential-provider-web-identity": "npm:3.621.0" - "@aws-sdk/types": "npm:3.609.0" - "@smithy/credential-provider-imds": "npm:^3.2.0" - "@smithy/property-provider": "npm:^3.1.3" - "@smithy/shared-ini-file-loader": "npm:^3.1.4" - "@smithy/types": "npm:^3.3.0" - tslib: "npm:^2.6.2" - checksum: 10c0/284c3140a615fdaf76f7a965e9bb9a1e60b43b68c69a095c758d10a82978a32e3fe39962a4491c64066cfd53c11188045ab183d34f90e1152bae95ebaf1ce290 - languageName: node - linkType: hard - "@aws-sdk/credential-provider-node@npm:3.622.0": version: 3.622.0 resolution: "@aws-sdk/credential-provider-node@npm:3.622.0" @@ -4116,23 +4148,43 @@ __metadata: languageName: node linkType: hard -"@aws-sdk/credential-provider-node@npm:3.940.0": - version: 3.940.0 - resolution: "@aws-sdk/credential-provider-node@npm:3.940.0" +"@aws-sdk/credential-provider-node@npm:3.723.0": + version: 3.723.0 + resolution: "@aws-sdk/credential-provider-node@npm:3.723.0" dependencies: - "@aws-sdk/credential-provider-env": "npm:3.940.0" - "@aws-sdk/credential-provider-http": "npm:3.940.0" - "@aws-sdk/credential-provider-ini": "npm:3.940.0" - "@aws-sdk/credential-provider-process": "npm:3.940.0" - "@aws-sdk/credential-provider-sso": "npm:3.940.0" - "@aws-sdk/credential-provider-web-identity": "npm:3.940.0" - "@aws-sdk/types": "npm:3.936.0" - "@smithy/credential-provider-imds": "npm:^4.2.5" - "@smithy/property-provider": "npm:^4.2.5" - "@smithy/shared-ini-file-loader": "npm:^4.4.0" - "@smithy/types": "npm:^4.9.0" + "@aws-sdk/credential-provider-env": "npm:3.723.0" + "@aws-sdk/credential-provider-http": "npm:3.723.0" + "@aws-sdk/credential-provider-ini": "npm:3.723.0" + "@aws-sdk/credential-provider-process": "npm:3.723.0" + "@aws-sdk/credential-provider-sso": "npm:3.723.0" + "@aws-sdk/credential-provider-web-identity": "npm:3.723.0" + "@aws-sdk/types": "npm:3.723.0" + "@smithy/credential-provider-imds": "npm:^4.0.0" + "@smithy/property-provider": "npm:^4.0.0" + "@smithy/shared-ini-file-loader": "npm:^4.0.0" + "@smithy/types": "npm:^4.0.0" tslib: "npm:^2.6.2" - checksum: 10c0/ecaa866d4cf9bce5cdf71e67d76e3e1b35e0f57b266f2b3447c08ccd5555c5b19d83a015cc153d2b6165ff6b1fce0c55d08eb306dcde909583741200ae287469 + checksum: 10c0/ebfdcea3d856060ad7a4c809bf0755fcd28a1c61614b8cfd23bb4e355726fdf7e21be70211cc8e6ea5168467b2343aea50967b2d6912f80c60bdb8183f4e8fc7 + languageName: node + linkType: hard + +"@aws-sdk/credential-provider-node@npm:^3.972.4": + version: 3.972.4 + resolution: "@aws-sdk/credential-provider-node@npm:3.972.4" + dependencies: + "@aws-sdk/credential-provider-env": "npm:^3.972.3" + "@aws-sdk/credential-provider-http": "npm:^3.972.5" + "@aws-sdk/credential-provider-ini": "npm:^3.972.3" + "@aws-sdk/credential-provider-process": "npm:^3.972.3" + "@aws-sdk/credential-provider-sso": "npm:^3.972.3" + "@aws-sdk/credential-provider-web-identity": "npm:^3.972.3" + "@aws-sdk/types": "npm:^3.973.1" + "@smithy/credential-provider-imds": "npm:^4.2.8" + "@smithy/property-provider": "npm:^4.2.8" + "@smithy/shared-ini-file-loader": "npm:^4.4.3" + "@smithy/types": "npm:^4.12.0" + tslib: "npm:^2.6.2" + checksum: 10c0/5646e02bff929514aa255547868912df454419e39219ef4a1977ba68163554db5ce34b7b3dbed5f4f9856eac4387dcc9e687b5f8f21a4559aaf07b77b25cbb1e languageName: node linkType: hard @@ -4162,17 +4214,31 @@ __metadata: languageName: node linkType: hard -"@aws-sdk/credential-provider-process@npm:3.940.0": - version: 3.940.0 - resolution: "@aws-sdk/credential-provider-process@npm:3.940.0" +"@aws-sdk/credential-provider-process@npm:3.723.0": + version: 3.723.0 + resolution: "@aws-sdk/credential-provider-process@npm:3.723.0" dependencies: - "@aws-sdk/core": "npm:3.940.0" - "@aws-sdk/types": "npm:3.936.0" - "@smithy/property-provider": "npm:^4.2.5" - "@smithy/shared-ini-file-loader": "npm:^4.4.0" - "@smithy/types": "npm:^4.9.0" + "@aws-sdk/core": "npm:3.723.0" + "@aws-sdk/types": "npm:3.723.0" + "@smithy/property-provider": "npm:^4.0.0" + "@smithy/shared-ini-file-loader": "npm:^4.0.0" + "@smithy/types": "npm:^4.0.0" + tslib: "npm:^2.6.2" + checksum: 10c0/078e936584a80910695fd37dfc8fd2781e8c495aa02ff7033075d2d80cf43963b8383ae401d46ec23765c9b54200554d0fae5af49d684c6ae46da060772861ad + languageName: node + linkType: hard + +"@aws-sdk/credential-provider-process@npm:^3.972.3": + version: 3.972.3 + resolution: "@aws-sdk/credential-provider-process@npm:3.972.3" + dependencies: + "@aws-sdk/core": "npm:^3.973.5" + "@aws-sdk/types": "npm:^3.973.1" + "@smithy/property-provider": "npm:^4.2.8" + "@smithy/shared-ini-file-loader": "npm:^4.4.3" + "@smithy/types": "npm:^4.12.0" tslib: "npm:^2.6.2" - checksum: 10c0/42aba573606be61f5d82120fa5379ff6eaf819be0972b20b08422a25b7f41c2113eaa762476590a08912ca248bd7eddf3504bd6620b18a98574450315b4962d0 + checksum: 10c0/e8b8d502d879228f05b1abb9f372fa7645ed64d66385ad0771c621d0a374a4b0d54b8bb9657f073945bebfd42a732cf5b621bb2ac0f476a68143027809e6fc2d languageName: node linkType: hard @@ -4191,21 +4257,6 @@ __metadata: languageName: node linkType: hard -"@aws-sdk/credential-provider-sso@npm:3.621.0": - version: 3.621.0 - resolution: "@aws-sdk/credential-provider-sso@npm:3.621.0" - dependencies: - "@aws-sdk/client-sso": "npm:3.621.0" - "@aws-sdk/token-providers": "npm:3.614.0" - "@aws-sdk/types": "npm:3.609.0" - "@smithy/property-provider": "npm:^3.1.3" - "@smithy/shared-ini-file-loader": "npm:^3.1.4" - "@smithy/types": "npm:^3.3.0" - tslib: "npm:^2.6.2" - checksum: 10c0/dca9c793136ca2113f675b641a537bed6ce1a1fa004747cc5320aefd0caebc9dbc48ca176390cca4feed09316ca3790bcaf63383d58902fd0f6d9ab3406d7e85 - languageName: node - linkType: hard - "@aws-sdk/credential-provider-sso@npm:3.622.0": version: 3.622.0 resolution: "@aws-sdk/credential-provider-sso@npm:3.622.0" @@ -4236,19 +4287,35 @@ __metadata: languageName: node linkType: hard -"@aws-sdk/credential-provider-sso@npm:3.940.0": - version: 3.940.0 - resolution: "@aws-sdk/credential-provider-sso@npm:3.940.0" +"@aws-sdk/credential-provider-sso@npm:3.723.0": + version: 3.723.0 + resolution: "@aws-sdk/credential-provider-sso@npm:3.723.0" dependencies: - "@aws-sdk/client-sso": "npm:3.940.0" - "@aws-sdk/core": "npm:3.940.0" - "@aws-sdk/token-providers": "npm:3.940.0" - "@aws-sdk/types": "npm:3.936.0" - "@smithy/property-provider": "npm:^4.2.5" - "@smithy/shared-ini-file-loader": "npm:^4.4.0" - "@smithy/types": "npm:^4.9.0" + "@aws-sdk/client-sso": "npm:3.723.0" + "@aws-sdk/core": "npm:3.723.0" + "@aws-sdk/token-providers": "npm:3.723.0" + "@aws-sdk/types": "npm:3.723.0" + "@smithy/property-provider": "npm:^4.0.0" + "@smithy/shared-ini-file-loader": "npm:^4.0.0" + "@smithy/types": "npm:^4.0.0" + tslib: "npm:^2.6.2" + checksum: 10c0/b051420762d1c815dbf7e04ddae4a625049393c1651ed0c507429f14e44d0f5ea70c9bfec87cf6f9a3e7f13932786cbec6a9f3c830bf3f56ec758746751baa5e + languageName: node + linkType: hard + +"@aws-sdk/credential-provider-sso@npm:^3.972.3": + version: 3.972.3 + resolution: "@aws-sdk/credential-provider-sso@npm:3.972.3" + dependencies: + "@aws-sdk/client-sso": "npm:3.980.0" + "@aws-sdk/core": "npm:^3.973.5" + "@aws-sdk/token-providers": "npm:3.980.0" + "@aws-sdk/types": "npm:^3.973.1" + "@smithy/property-provider": "npm:^4.2.8" + "@smithy/shared-ini-file-loader": "npm:^4.4.3" + "@smithy/types": "npm:^4.12.0" tslib: "npm:^2.6.2" - checksum: 10c0/fd6397d6df02ce23b1151a4453d35fd123b15a71322aab3e50885268ecac21cd441bc02063b0ad834d57ce57e70c3cf07f1e6ad75814e7baf74741a5919d3e9c + checksum: 10c0/0fac73cc425afea70b8237b12f561dcc7c9991b700c051fa74a8d438ffbc9bbfe255fd66fc40bf646d8e87092f59179f439de5106d9c1d8eef19577e64091272 languageName: node linkType: hard @@ -4278,190 +4345,222 @@ __metadata: languageName: node linkType: hard -"@aws-sdk/credential-provider-web-identity@npm:3.940.0": - version: 3.940.0 - resolution: "@aws-sdk/credential-provider-web-identity@npm:3.940.0" +"@aws-sdk/credential-provider-web-identity@npm:3.723.0": + version: 3.723.0 + resolution: "@aws-sdk/credential-provider-web-identity@npm:3.723.0" dependencies: - "@aws-sdk/core": "npm:3.940.0" - "@aws-sdk/nested-clients": "npm:3.940.0" - "@aws-sdk/types": "npm:3.936.0" - "@smithy/property-provider": "npm:^4.2.5" - "@smithy/shared-ini-file-loader": "npm:^4.4.0" - "@smithy/types": "npm:^4.9.0" + "@aws-sdk/core": "npm:3.723.0" + "@aws-sdk/types": "npm:3.723.0" + "@smithy/property-provider": "npm:^4.0.0" + "@smithy/types": "npm:^4.0.0" tslib: "npm:^2.6.2" - checksum: 10c0/9967bbde6603372b89a600cfed211caa769709e34b27f90f627ee5b60c5994b6db0f17b4bbd1ea4ac133092691dc94a0776ba82a187075e875005c864eb7e851 - languageName: node - linkType: hard - -"@aws-sdk/credential-providers@npm:^3, @aws-sdk/credential-providers@npm:^3.465.0, @aws-sdk/credential-providers@npm:^3.750.0": - version: 3.940.0 - resolution: "@aws-sdk/credential-providers@npm:3.940.0" - dependencies: - "@aws-sdk/client-cognito-identity": "npm:3.940.0" - "@aws-sdk/core": "npm:3.940.0" - "@aws-sdk/credential-provider-cognito-identity": "npm:3.940.0" - "@aws-sdk/credential-provider-env": "npm:3.940.0" - "@aws-sdk/credential-provider-http": "npm:3.940.0" - "@aws-sdk/credential-provider-ini": "npm:3.940.0" - "@aws-sdk/credential-provider-login": "npm:3.940.0" - "@aws-sdk/credential-provider-node": "npm:3.940.0" - "@aws-sdk/credential-provider-process": "npm:3.940.0" - "@aws-sdk/credential-provider-sso": "npm:3.940.0" - "@aws-sdk/credential-provider-web-identity": "npm:3.940.0" - "@aws-sdk/nested-clients": "npm:3.940.0" - "@aws-sdk/types": "npm:3.936.0" - "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" - "@smithy/credential-provider-imds": "npm:^4.2.5" - "@smithy/node-config-provider": "npm:^4.3.5" - "@smithy/property-provider": "npm:^4.2.5" - "@smithy/types": "npm:^4.9.0" + peerDependencies: + "@aws-sdk/client-sts": ^3.723.0 + checksum: 10c0/689e1f5d00336c49317db815e1521c7cbad9b6b1d202b879efd70f3bdda26b2256eb96d4ce6a128ab9747d4c9f9dc1acc0656a99b216f2b960f65e93c20bfa14 + languageName: node + linkType: hard + +"@aws-sdk/credential-provider-web-identity@npm:^3.972.3": + version: 3.972.3 + resolution: "@aws-sdk/credential-provider-web-identity@npm:3.972.3" + dependencies: + "@aws-sdk/core": "npm:^3.973.5" + "@aws-sdk/nested-clients": "npm:3.980.0" + "@aws-sdk/types": "npm:^3.973.1" + "@smithy/property-provider": "npm:^4.2.8" + "@smithy/shared-ini-file-loader": "npm:^4.4.3" + "@smithy/types": "npm:^4.12.0" + tslib: "npm:^2.6.2" + checksum: 10c0/5e8661ccd91a6452c357afe6c62d8ea74df71bccae71e7f64fcdf2c9e70331033f414f4a435fdd163015963d223fafc90125e85b20e29aa213b0dee0600b8db9 + languageName: node + linkType: hard + +"@aws-sdk/credential-providers@npm:^3, @aws-sdk/credential-providers@npm:^3.465.0, @aws-sdk/credential-providers@npm:^3.936.0": + version: 3.980.0 + resolution: "@aws-sdk/credential-providers@npm:3.980.0" + dependencies: + "@aws-sdk/client-cognito-identity": "npm:3.980.0" + "@aws-sdk/core": "npm:^3.973.5" + "@aws-sdk/credential-provider-cognito-identity": "npm:^3.972.3" + "@aws-sdk/credential-provider-env": "npm:^3.972.3" + "@aws-sdk/credential-provider-http": "npm:^3.972.5" + "@aws-sdk/credential-provider-ini": "npm:^3.972.3" + "@aws-sdk/credential-provider-login": "npm:^3.972.3" + "@aws-sdk/credential-provider-node": "npm:^3.972.4" + "@aws-sdk/credential-provider-process": "npm:^3.972.3" + "@aws-sdk/credential-provider-sso": "npm:^3.972.3" + "@aws-sdk/credential-provider-web-identity": "npm:^3.972.3" + "@aws-sdk/nested-clients": "npm:3.980.0" + "@aws-sdk/types": "npm:^3.973.1" + "@smithy/config-resolver": "npm:^4.4.6" + "@smithy/core": "npm:^3.22.0" + "@smithy/credential-provider-imds": "npm:^4.2.8" + "@smithy/node-config-provider": "npm:^4.3.8" + "@smithy/property-provider": "npm:^4.2.8" + "@smithy/types": "npm:^4.12.0" tslib: "npm:^2.6.2" - checksum: 10c0/fba297f16ca5bbde33bbec15826c001f8afca419e161cf3fa36f6b06ae87b367ed162acde2a47164fa16c5e87f336bef49a27706399827383344259f562ddfa4 + checksum: 10c0/b9e3a3844ee08e056bd44e4b6f471991092c9fc8ca229f3c1b2417205fd19a57352b206ee3081ff36d17d1dd209dfb3855d88b92757027873199b9a44cfe330c + languageName: node + linkType: hard + +"@aws-sdk/dynamodb-codec@npm:^3.972.5": + version: 3.972.5 + resolution: "@aws-sdk/dynamodb-codec@npm:3.972.5" + dependencies: + "@aws-sdk/core": "npm:^3.973.5" + "@smithy/core": "npm:^3.22.0" + "@smithy/smithy-client": "npm:^4.11.1" + "@smithy/types": "npm:^4.12.0" + "@smithy/util-base64": "npm:^4.3.0" + tslib: "npm:^2.6.2" + peerDependencies: + "@aws-sdk/client-dynamodb": 3.980.0 + checksum: 10c0/ab48ee5b6b9f5f3311c4ee5816eb51cf270305595a410792535ce5d66b7da782c73a9d12124ec63cad1b85718b42a143b0a8046b37c9a7f0e9c8f90efeb89c92 languageName: node linkType: hard "@aws-sdk/ec2-metadata-service@npm:^3": - version: 3.940.0 - resolution: "@aws-sdk/ec2-metadata-service@npm:3.940.0" + version: 3.980.0 + resolution: "@aws-sdk/ec2-metadata-service@npm:3.980.0" dependencies: - "@aws-sdk/types": "npm:3.936.0" - "@smithy/node-config-provider": "npm:^4.3.5" - "@smithy/node-http-handler": "npm:^4.4.5" - "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/types": "npm:^4.9.0" - "@smithy/util-stream": "npm:^4.5.6" + "@aws-sdk/types": "npm:^3.973.1" + "@smithy/node-config-provider": "npm:^4.3.8" + "@smithy/node-http-handler": "npm:^4.4.8" + "@smithy/protocol-http": "npm:^5.3.8" + "@smithy/types": "npm:^4.12.0" + "@smithy/util-stream": "npm:^4.5.10" tslib: "npm:^2.6.2" - checksum: 10c0/dede5287f51e722d436b4773efd0f8da96b7bf5832ab53d9794b400b01aa67e5e6fa1e3eed1fe023e62b43e0abfbffc8bc8764e5386da5f834ee3c4390403f47 + checksum: 10c0/388cc98f2d2adc71968fa4f79792b83aa3f212ebe6f5979095a658a12dac6399a8ad7bd3140f53416a86c7a617f021631110b7487492591f668d553eb8a58c24 languageName: node linkType: hard -"@aws-sdk/endpoint-cache@npm:3.893.0": - version: 3.893.0 - resolution: "@aws-sdk/endpoint-cache@npm:3.893.0" +"@aws-sdk/endpoint-cache@npm:^3.972.2": + version: 3.972.2 + resolution: "@aws-sdk/endpoint-cache@npm:3.972.2" dependencies: mnemonist: "npm:0.38.3" tslib: "npm:^2.6.2" - checksum: 10c0/6f7725ab605b57ef6d19eec78cff1e3b21296640e16da496216671583fe0aef69f6bc4b982110460784c8c2c607f034944c88eda32a36da87482081847a9ce9e + checksum: 10c0/e4b0cfe50d5aa0e3a1f299c1202d4b93a2273f4ac82efb2b1734d6a5b25c5d55eac1c29a5a6e0b5c33e602e993435a0fd36a2f3bb9523e531252d7de705f0a8d languageName: node linkType: hard -"@aws-sdk/eventstream-handler-node@npm:3.936.0": - version: 3.936.0 - resolution: "@aws-sdk/eventstream-handler-node@npm:3.936.0" +"@aws-sdk/eventstream-handler-node@npm:^3.972.3": + version: 3.972.3 + resolution: "@aws-sdk/eventstream-handler-node@npm:3.972.3" dependencies: - "@aws-sdk/types": "npm:3.936.0" - "@smithy/eventstream-codec": "npm:^4.2.5" - "@smithy/types": "npm:^4.9.0" + "@aws-sdk/types": "npm:^3.973.1" + "@smithy/eventstream-codec": "npm:^4.2.8" + "@smithy/types": "npm:^4.12.0" tslib: "npm:^2.6.2" - checksum: 10c0/946b848c83e20b6d11d9a58e33dc472f5e2f5dd30c3edd57344f6e2942684683fc325ea126d988d9a6c549674f9b1d0a6f819037bd588784848fc05cfb377003 + checksum: 10c0/c25b105d30c4c2e7e491f8549be498c49ff64ab8260403f0e65c0e06f0076080b7c99bbd1efcdf2db11c4b6ce8b453bbaf10748b2f3e2c17c4d847e032b2381d languageName: node linkType: hard "@aws-sdk/lib-dynamodb@npm:^3.682.0": - version: 3.940.0 - resolution: "@aws-sdk/lib-dynamodb@npm:3.940.0" + version: 3.980.0 + resolution: "@aws-sdk/lib-dynamodb@npm:3.980.0" dependencies: - "@aws-sdk/core": "npm:3.940.0" - "@aws-sdk/util-dynamodb": "npm:3.940.0" - "@smithy/core": "npm:^3.18.5" - "@smithy/smithy-client": "npm:^4.9.8" - "@smithy/types": "npm:^4.9.0" + "@aws-sdk/core": "npm:^3.973.5" + "@aws-sdk/util-dynamodb": "npm:3.980.0" + "@smithy/core": "npm:^3.22.0" + "@smithy/smithy-client": "npm:^4.11.1" + "@smithy/types": "npm:^4.12.0" tslib: "npm:^2.6.2" peerDependencies: - "@aws-sdk/client-dynamodb": ^3.940.0 - checksum: 10c0/720f95063efc6135e0785f25eb7c402e9b2fcce6009ddc628bcc9bc1b49eb0eb4e95ab7e773a7c1db69f32a8144e006a7271477d0364643e59f1fcb1caafdbc3 + "@aws-sdk/client-dynamodb": 3.980.0 + checksum: 10c0/7a4aa5471d9a61327438a3c8babad138cf80cfd2a8671b46cec4f1dd9c3095cc4e5739d077a6a17e5890006c4df04ab1027c70c481a5b91307dbadf27a669c4c languageName: node linkType: hard "@aws-sdk/lib-storage@npm:^3": - version: 3.940.0 - resolution: "@aws-sdk/lib-storage@npm:3.940.0" + version: 3.980.0 + resolution: "@aws-sdk/lib-storage@npm:3.980.0" dependencies: - "@smithy/abort-controller": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/abort-controller": "npm:^4.2.8" + "@smithy/middleware-endpoint": "npm:^4.4.12" + "@smithy/smithy-client": "npm:^4.11.1" buffer: "npm:5.6.0" events: "npm:3.3.0" stream-browserify: "npm:3.0.0" tslib: "npm:^2.6.2" peerDependencies: - "@aws-sdk/client-s3": ^3.940.0 - checksum: 10c0/e3c3118fa352f588f816a603ab91a2be10fd1d9c2008837d9d1ff1026b6116360f002da92e574f7c3c09c6a9c576f41ac42c8064b847c43510efa46188b6e80c + "@aws-sdk/client-s3": 3.980.0 + checksum: 10c0/ed285bfb98955bb9621665b0bdba3c4d86e0acafa64091bc19b690cb5e462a2e1352549df956ff65105f042d5db87346d2d0a7a286687985402e92812ee04065 languageName: node linkType: hard -"@aws-sdk/middleware-bucket-endpoint@npm:3.936.0": - version: 3.936.0 - resolution: "@aws-sdk/middleware-bucket-endpoint@npm:3.936.0" +"@aws-sdk/middleware-bucket-endpoint@npm:^3.972.3": + version: 3.972.3 + resolution: "@aws-sdk/middleware-bucket-endpoint@npm:3.972.3" dependencies: - "@aws-sdk/types": "npm:3.936.0" - "@aws-sdk/util-arn-parser": "npm:3.893.0" - "@smithy/node-config-provider": "npm:^4.3.5" - "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/types": "npm:^4.9.0" + "@aws-sdk/types": "npm:^3.973.1" + "@aws-sdk/util-arn-parser": "npm:^3.972.2" + "@smithy/node-config-provider": "npm:^4.3.8" + "@smithy/protocol-http": "npm:^5.3.8" + "@smithy/types": "npm:^4.12.0" "@smithy/util-config-provider": "npm:^4.2.0" tslib: "npm:^2.6.2" - checksum: 10c0/697c02f0ecf057615b08acf8f7a2359e0e692bb47029bdb7310c5fb2c46af86c2b755c835cff5271ccfdf17b9e1fcdae2954d22af7ba80136a77ee1c70c3dda6 + checksum: 10c0/391c8f6d514c41543c6a66578ce6d7d29c9cf8677d9a4d07bc0cae27418fb47b65e8104a7a4f9ac2bc3d6ae2ce73dca3ed44fd7fbafb4bcb3cb06858bcae8230 languageName: node linkType: hard -"@aws-sdk/middleware-endpoint-discovery@npm:3.936.0": - version: 3.936.0 - resolution: "@aws-sdk/middleware-endpoint-discovery@npm:3.936.0" +"@aws-sdk/middleware-endpoint-discovery@npm:^3.972.3": + version: 3.972.3 + resolution: "@aws-sdk/middleware-endpoint-discovery@npm:3.972.3" dependencies: - "@aws-sdk/endpoint-cache": "npm:3.893.0" - "@aws-sdk/types": "npm:3.936.0" - "@smithy/node-config-provider": "npm:^4.3.5" - "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/types": "npm:^4.9.0" + "@aws-sdk/endpoint-cache": "npm:^3.972.2" + "@aws-sdk/types": "npm:^3.973.1" + "@smithy/node-config-provider": "npm:^4.3.8" + "@smithy/protocol-http": "npm:^5.3.8" + "@smithy/types": "npm:^4.12.0" tslib: "npm:^2.6.2" - checksum: 10c0/088bfece8549cee186c6590ea06b8b1aa7502f937a4ffbd786b643579cd083c2c7d7205f3167c4800c886549ab3df785b83a036234a572ec00fff362514575b6 + checksum: 10c0/1ce7e5a64081a15b5da24176f0382b7556a47baae19cb2f14760f20a434bdcf3f76fafcb28684e4062d83aef24d2b3ed8fb0cbfff6023b41b45d5ef603d0587d languageName: node linkType: hard -"@aws-sdk/middleware-eventstream@npm:3.936.0": - version: 3.936.0 - resolution: "@aws-sdk/middleware-eventstream@npm:3.936.0" +"@aws-sdk/middleware-eventstream@npm:^3.972.3": + version: 3.972.3 + resolution: "@aws-sdk/middleware-eventstream@npm:3.972.3" dependencies: - "@aws-sdk/types": "npm:3.936.0" - "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/types": "npm:^4.9.0" + "@aws-sdk/types": "npm:^3.973.1" + "@smithy/protocol-http": "npm:^5.3.8" + "@smithy/types": "npm:^4.12.0" tslib: "npm:^2.6.2" - checksum: 10c0/be46f88738d0665ec37cd6fd0eb5f6015dfd6e0a618207867fba7d2ddf80a8be44bf69c5d706f9f5b94ad6a23158ebfd2c262c00bfece5357fddc75647065e0d + checksum: 10c0/4baaca894c7366a22bfd34c71adee6cc31aac53a973e57bddd39eec793196586483e8f95fbb1ed6d5b9a11e8acc208ecd058af7c64d681712ac342b1959b63ee languageName: node linkType: hard -"@aws-sdk/middleware-expect-continue@npm:3.936.0": - version: 3.936.0 - resolution: "@aws-sdk/middleware-expect-continue@npm:3.936.0" +"@aws-sdk/middleware-expect-continue@npm:^3.972.3": + version: 3.972.3 + resolution: "@aws-sdk/middleware-expect-continue@npm:3.972.3" dependencies: - "@aws-sdk/types": "npm:3.936.0" - "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/types": "npm:^4.9.0" + "@aws-sdk/types": "npm:^3.973.1" + "@smithy/protocol-http": "npm:^5.3.8" + "@smithy/types": "npm:^4.12.0" tslib: "npm:^2.6.2" - checksum: 10c0/1945b4985d76e2ff0b34a11965b67774ded31384e057e16daf46461217824d634aa1a84fbafb74fdd8bfb3ddb4a9d947877ef15e225798d52131c63fafbe715c + checksum: 10c0/69bcb15de22c3895df744d85eb668238fb7a307975b4e236c6c19f41f3c2f07a036de06db637abd8accbfadf06c557d3578ad71ac18ef71a3d52091f8ade5b87 languageName: node linkType: hard -"@aws-sdk/middleware-flexible-checksums@npm:3.940.0": - version: 3.940.0 - resolution: "@aws-sdk/middleware-flexible-checksums@npm:3.940.0" +"@aws-sdk/middleware-flexible-checksums@npm:^3.972.3": + version: 3.972.3 + resolution: "@aws-sdk/middleware-flexible-checksums@npm:3.972.3" dependencies: "@aws-crypto/crc32": "npm:5.2.0" "@aws-crypto/crc32c": "npm:5.2.0" "@aws-crypto/util": "npm:5.2.0" - "@aws-sdk/core": "npm:3.940.0" - "@aws-sdk/types": "npm:3.936.0" + "@aws-sdk/core": "npm:^3.973.5" + "@aws-sdk/crc64-nvme": "npm:3.972.0" + "@aws-sdk/types": "npm:^3.973.1" "@smithy/is-array-buffer": "npm:^4.2.0" - "@smithy/node-config-provider": "npm:^4.3.5" - "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/types": "npm:^4.9.0" - "@smithy/util-middleware": "npm:^4.2.5" - "@smithy/util-stream": "npm:^4.5.6" + "@smithy/node-config-provider": "npm:^4.3.8" + "@smithy/protocol-http": "npm:^5.3.8" + "@smithy/types": "npm:^4.12.0" + "@smithy/util-middleware": "npm:^4.2.8" + "@smithy/util-stream": "npm:^4.5.10" "@smithy/util-utf8": "npm:^4.2.0" tslib: "npm:^2.6.2" - checksum: 10c0/d5d0b549baf03c1f103fe6a266f980d9f93116ac12d98285819192a29e1a0e58eb2ca12a9e5f6f3290294ec8fac85d0c0bb992105b895d93c4328dbc7aa665fb + checksum: 10c0/c843377b467edb626f5a11c9aa84ef525491236dcaec02b17363d409d13c755c8df29170b93f0940d140c131b8a197d664c43fdb7bb32d4072c4d201939a55cf languageName: node linkType: hard @@ -4489,26 +4588,38 @@ __metadata: languageName: node linkType: hard -"@aws-sdk/middleware-host-header@npm:3.936.0": - version: 3.936.0 - resolution: "@aws-sdk/middleware-host-header@npm:3.936.0" +"@aws-sdk/middleware-host-header@npm:3.723.0": + version: 3.723.0 + resolution: "@aws-sdk/middleware-host-header@npm:3.723.0" dependencies: - "@aws-sdk/types": "npm:3.936.0" - "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/types": "npm:^4.9.0" + "@aws-sdk/types": "npm:3.723.0" + "@smithy/protocol-http": "npm:^5.0.0" + "@smithy/types": "npm:^4.0.0" tslib: "npm:^2.6.2" - checksum: 10c0/524221650f88650c4a9cc60f7ed1bdd215f4112e120ad75807ee9b51358a1016c867e0b696cae91256aac084fa091cb230b2f579388c4b59e680b8a3e2bc7d29 + checksum: 10c0/183196230f8675d821a1c3de6cfb54cb3575a245d60221eea8fb4b6cea3b64dda1c4a836f6bd7d3240c494840f68b5f25a6b39223be7cb0e0a1a35bdab9e5691 languageName: node linkType: hard -"@aws-sdk/middleware-location-constraint@npm:3.936.0": - version: 3.936.0 - resolution: "@aws-sdk/middleware-location-constraint@npm:3.936.0" +"@aws-sdk/middleware-host-header@npm:^3.972.3": + version: 3.972.3 + resolution: "@aws-sdk/middleware-host-header@npm:3.972.3" dependencies: - "@aws-sdk/types": "npm:3.936.0" - "@smithy/types": "npm:^4.9.0" + "@aws-sdk/types": "npm:^3.973.1" + "@smithy/protocol-http": "npm:^5.3.8" + "@smithy/types": "npm:^4.12.0" + tslib: "npm:^2.6.2" + checksum: 10c0/680a1934403b1544cbe1998ca22d684ff28bbbea78db8bea515bae80f7ede7ce762b2eb6fd5a56030b3a9a56a964e1c62ad40a8e2343e06862e1ccaa0cc3331b + languageName: node + linkType: hard + +"@aws-sdk/middleware-location-constraint@npm:^3.972.3": + version: 3.972.3 + resolution: "@aws-sdk/middleware-location-constraint@npm:3.972.3" + dependencies: + "@aws-sdk/types": "npm:^3.973.1" + "@smithy/types": "npm:^4.12.0" tslib: "npm:^2.6.2" - checksum: 10c0/5e2e51f7a3b7d5f47a425ca33735fa8e0efbb44bf28a4283bb156fed94cd6fc215e89868e82fafeb652184505c8bb1b82d85a03f3221187450b5f4169bcc484f + checksum: 10c0/a2a284f24147aaf2a5367cd280f6646700bec03bd5dc66e1db0cf871904d64d21d77f45767edc2cbe2d9ffbd7d55141ff30df0143cc63ae7fe8b89559916bbb5 languageName: node linkType: hard @@ -4534,14 +4645,25 @@ __metadata: languageName: node linkType: hard -"@aws-sdk/middleware-logger@npm:3.936.0": - version: 3.936.0 - resolution: "@aws-sdk/middleware-logger@npm:3.936.0" +"@aws-sdk/middleware-logger@npm:3.723.0": + version: 3.723.0 + resolution: "@aws-sdk/middleware-logger@npm:3.723.0" dependencies: - "@aws-sdk/types": "npm:3.936.0" - "@smithy/types": "npm:^4.9.0" + "@aws-sdk/types": "npm:3.723.0" + "@smithy/types": "npm:^4.0.0" + tslib: "npm:^2.6.2" + checksum: 10c0/ed0d29e525d3893bf2e2b34f7964b7070b338def35997646a950902e20abce3ff5244b046d0504441c378292b3c319691afcc658badda9927eed7991d810ff8c + languageName: node + linkType: hard + +"@aws-sdk/middleware-logger@npm:^3.972.3": + version: 3.972.3 + resolution: "@aws-sdk/middleware-logger@npm:3.972.3" + dependencies: + "@aws-sdk/types": "npm:^3.973.1" + "@smithy/types": "npm:^4.12.0" tslib: "npm:^2.6.2" - checksum: 10c0/9f94ae2f30a7b42d7423e3bee868e08d5ac1314e5ed9882fd5e457cb50ba87fcc7c859c0629210a64b1b9a595844988876a005c2a02f63c615ae19eee9baafba + checksum: 10c0/3cb6c1eddb7344f14f634fe1d6c9e7571ec8fe856ccf62dab71fae5fcef302f3b0e97d9ddb5ee90a427e14f28672cf406e8dadf30693e590f0d2a7eb1b439934 languageName: node linkType: hard @@ -4569,65 +4691,77 @@ __metadata: languageName: node linkType: hard -"@aws-sdk/middleware-recursion-detection@npm:3.936.0": - version: 3.936.0 - resolution: "@aws-sdk/middleware-recursion-detection@npm:3.936.0" +"@aws-sdk/middleware-recursion-detection@npm:3.723.0": + version: 3.723.0 + resolution: "@aws-sdk/middleware-recursion-detection@npm:3.723.0" dependencies: - "@aws-sdk/types": "npm:3.936.0" - "@aws/lambda-invoke-store": "npm:^0.2.0" - "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/types": "npm:^4.9.0" + "@aws-sdk/types": "npm:3.723.0" + "@smithy/protocol-http": "npm:^5.0.0" + "@smithy/types": "npm:^4.0.0" tslib: "npm:^2.6.2" - checksum: 10c0/3230f4868899d2c811231f1edf19c768feb2d250bace28644672a4ddf53c4fe1f7a88c3cbbafa2bade08cb685a60743fc8dfb70c893081a1805cc3e79e76244b + checksum: 10c0/d8cf89ec99aa72ac9496d183ff0a8994329f050e569924bc5e4e732b50900a9b7ef7608101a29dd4b4815b7f59270faf42634d5033f11b190ffcc88a6fc91812 languageName: node linkType: hard -"@aws-sdk/middleware-sdk-ec2@npm:3.936.0": - version: 3.936.0 - resolution: "@aws-sdk/middleware-sdk-ec2@npm:3.936.0" +"@aws-sdk/middleware-recursion-detection@npm:^3.972.3": + version: 3.972.3 + resolution: "@aws-sdk/middleware-recursion-detection@npm:3.972.3" dependencies: - "@aws-sdk/types": "npm:3.936.0" - "@aws-sdk/util-format-url": "npm:3.936.0" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/signature-v4": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" - "@smithy/types": "npm:^4.9.0" + "@aws-sdk/types": "npm:^3.973.1" + "@aws/lambda-invoke-store": "npm:^0.2.2" + "@smithy/protocol-http": "npm:^5.3.8" + "@smithy/types": "npm:^4.12.0" tslib: "npm:^2.6.2" - checksum: 10c0/48b810facc30e894aa1af90009b93e3df2a38d2edba787edadf1a9a1784c8c2a4f3de4e0bc421b764957ddb50312e87581fabb6f8d30bbb8846fb9e8a79234e2 + checksum: 10c0/cc3e30e6968f18a5456c9b786b95579f688dd429422f6792211ebeaa462cf87186fd93996a8f034ce4abd95f39cfc0071c1cb801ad751be766617aac585cbb09 languageName: node linkType: hard -"@aws-sdk/middleware-sdk-route53@npm:3.936.0": - version: 3.936.0 - resolution: "@aws-sdk/middleware-sdk-route53@npm:3.936.0" +"@aws-sdk/middleware-sdk-ec2@npm:^3.972.5": + version: 3.972.5 + resolution: "@aws-sdk/middleware-sdk-ec2@npm:3.972.5" dependencies: - "@aws-sdk/types": "npm:3.936.0" - "@smithy/types": "npm:^4.9.0" + "@aws-sdk/types": "npm:^3.973.1" + "@aws-sdk/util-format-url": "npm:^3.972.3" + "@smithy/middleware-endpoint": "npm:^4.4.12" + "@smithy/protocol-http": "npm:^5.3.8" + "@smithy/signature-v4": "npm:^5.3.8" + "@smithy/smithy-client": "npm:^4.11.1" + "@smithy/types": "npm:^4.12.0" tslib: "npm:^2.6.2" - checksum: 10c0/4de06ffd7728de3ae88ebf1455524534a49972690a389078d8aa50ae65af4472b803cd843f61ccf2942f9c1756ee4613224854657d99e343b5b51e266746674c + checksum: 10c0/49aab56ab563948d04810a83fa57a1e6f99a43550a7f40ddb404bf553b645e690e53e6c6d1df7261d9750890e61bb9892c382ac844eed908cb88b9d39f81e071 languageName: node linkType: hard -"@aws-sdk/middleware-sdk-s3@npm:3.940.0": - version: 3.940.0 - resolution: "@aws-sdk/middleware-sdk-s3@npm:3.940.0" +"@aws-sdk/middleware-sdk-route53@npm:^3.972.3": + version: 3.972.3 + resolution: "@aws-sdk/middleware-sdk-route53@npm:3.972.3" dependencies: - "@aws-sdk/core": "npm:3.940.0" - "@aws-sdk/types": "npm:3.936.0" - "@aws-sdk/util-arn-parser": "npm:3.893.0" - "@smithy/core": "npm:^3.18.5" - "@smithy/node-config-provider": "npm:^4.3.5" - "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/signature-v4": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" - "@smithy/types": "npm:^4.9.0" + "@aws-sdk/types": "npm:^3.973.1" + "@smithy/types": "npm:^4.12.0" + tslib: "npm:^2.6.2" + checksum: 10c0/e9be190d34fcfa58866bb93c4ac19097dd645ee87e4fb76e2d4c803e7320a6483108a406f9e256143b146232418cf4a9ebcaf3e0ddc41dce57ff3cd67a3ae5b0 + languageName: node + linkType: hard + +"@aws-sdk/middleware-sdk-s3@npm:^3.972.5": + version: 3.972.5 + resolution: "@aws-sdk/middleware-sdk-s3@npm:3.972.5" + dependencies: + "@aws-sdk/core": "npm:^3.973.5" + "@aws-sdk/types": "npm:^3.973.1" + "@aws-sdk/util-arn-parser": "npm:^3.972.2" + "@smithy/core": "npm:^3.22.0" + "@smithy/node-config-provider": "npm:^4.3.8" + "@smithy/protocol-http": "npm:^5.3.8" + "@smithy/signature-v4": "npm:^5.3.8" + "@smithy/smithy-client": "npm:^4.11.1" + "@smithy/types": "npm:^4.12.0" "@smithy/util-config-provider": "npm:^4.2.0" - "@smithy/util-middleware": "npm:^4.2.5" - "@smithy/util-stream": "npm:^4.5.6" + "@smithy/util-middleware": "npm:^4.2.8" + "@smithy/util-stream": "npm:^4.5.10" "@smithy/util-utf8": "npm:^4.2.0" tslib: "npm:^2.6.2" - checksum: 10c0/ecd85d7c391f53d5dc26658289428c2444781b1e612d98c8d86dca4d8ff07ac473886cfd07f396592ab14abc59651d7954e2fa532e2efbb84e29f5ecbc69f00f + checksum: 10c0/d60f867c8a4293aee79474abdae5a13e84f0d8eb71b556316dc7b56a0108cb4fae94514284a0b2764c39545661b28edb06f18b46f88bc4023762a64d814ea956 languageName: node linkType: hard @@ -4658,14 +4792,14 @@ __metadata: languageName: node linkType: hard -"@aws-sdk/middleware-ssec@npm:3.936.0": - version: 3.936.0 - resolution: "@aws-sdk/middleware-ssec@npm:3.936.0" +"@aws-sdk/middleware-ssec@npm:^3.972.3": + version: 3.972.3 + resolution: "@aws-sdk/middleware-ssec@npm:3.972.3" dependencies: - "@aws-sdk/types": "npm:3.936.0" - "@smithy/types": "npm:^4.9.0" + "@aws-sdk/types": "npm:^3.973.1" + "@smithy/types": "npm:^4.12.0" tslib: "npm:^2.6.2" - checksum: 10c0/44dd8474596cb64be010303e2e7509964ce98f788d7d856c29e25edaeace0ad160f85c6106b6de0098b62823261b2226aa79a0aa91ea78032a07f030343fd2ba + checksum: 10c0/d4e1df3531947adbbd1cf64d89c5ad7b3596ffc471e83a32f555e0bd05e976d2bd183975689da60e4229bd0611cd53642a3b2355877348e99cdd3a1b7d4135ad languageName: node linkType: hard @@ -4708,82 +4842,97 @@ __metadata: languageName: node linkType: hard -"@aws-sdk/middleware-user-agent@npm:3.940.0": - version: 3.940.0 - resolution: "@aws-sdk/middleware-user-agent@npm:3.940.0" +"@aws-sdk/middleware-user-agent@npm:3.723.0": + version: 3.723.0 + resolution: "@aws-sdk/middleware-user-agent@npm:3.723.0" dependencies: - "@aws-sdk/core": "npm:3.940.0" - "@aws-sdk/types": "npm:3.936.0" - "@aws-sdk/util-endpoints": "npm:3.936.0" - "@smithy/core": "npm:^3.18.5" - "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/types": "npm:^4.9.0" + "@aws-sdk/core": "npm:3.723.0" + "@aws-sdk/types": "npm:3.723.0" + "@aws-sdk/util-endpoints": "npm:3.723.0" + "@smithy/core": "npm:^3.0.0" + "@smithy/protocol-http": "npm:^5.0.0" + "@smithy/types": "npm:^4.0.0" tslib: "npm:^2.6.2" - checksum: 10c0/1756e35c96c5289857c65c8620d9e3afe5b14259fb0bb1290f8f08d879dd62a44569b28c505e2a56e641300df4e15fd7f29e788d1301ee2a0926caab6d2d0b9f + checksum: 10c0/9eaf19dcedc85ebfdcf3298ae7142fb1c1cc350e03456311f77f3785b5549ad0fdbb5615f8afd90242e6916cc9b5e02609028532d740f14ce310a6a28e20ffab languageName: node linkType: hard -"@aws-sdk/middleware-websocket@npm:3.936.0": - version: 3.936.0 - resolution: "@aws-sdk/middleware-websocket@npm:3.936.0" +"@aws-sdk/middleware-user-agent@npm:^3.972.5": + version: 3.972.5 + resolution: "@aws-sdk/middleware-user-agent@npm:3.972.5" dependencies: - "@aws-sdk/types": "npm:3.936.0" - "@aws-sdk/util-format-url": "npm:3.936.0" - "@smithy/eventstream-codec": "npm:^4.2.5" - "@smithy/eventstream-serde-browser": "npm:^4.2.5" - "@smithy/fetch-http-handler": "npm:^5.3.6" - "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/signature-v4": "npm:^5.3.5" - "@smithy/types": "npm:^4.9.0" + "@aws-sdk/core": "npm:^3.973.5" + "@aws-sdk/types": "npm:^3.973.1" + "@aws-sdk/util-endpoints": "npm:3.980.0" + "@smithy/core": "npm:^3.22.0" + "@smithy/protocol-http": "npm:^5.3.8" + "@smithy/types": "npm:^4.12.0" + tslib: "npm:^2.6.2" + checksum: 10c0/62b39d3c1dcd008d168bd91cb8ab872a7d2079be363359c55b7e3383d4d3eb0ed0e8cdb8eeeb0762f664d1c4c0d73fd1c3f3cc7ee28c2619ec6328ce5f05c426 + languageName: node + linkType: hard + +"@aws-sdk/middleware-websocket@npm:^3.972.3": + version: 3.972.3 + resolution: "@aws-sdk/middleware-websocket@npm:3.972.3" + dependencies: + "@aws-sdk/types": "npm:^3.973.1" + "@aws-sdk/util-format-url": "npm:^3.972.3" + "@smithy/eventstream-codec": "npm:^4.2.8" + "@smithy/eventstream-serde-browser": "npm:^4.2.8" + "@smithy/fetch-http-handler": "npm:^5.3.9" + "@smithy/protocol-http": "npm:^5.3.8" + "@smithy/signature-v4": "npm:^5.3.8" + "@smithy/types": "npm:^4.12.0" "@smithy/util-hex-encoding": "npm:^4.2.0" tslib: "npm:^2.6.2" - checksum: 10c0/3e78fbf062a69e806addfb49aace47a2d554f1ef899ed9a6ff7b3437b4c7fd14be26d901a6b4ad3c2f3e499324cd4f75ecc39f75823a78e026c24833307c79cf + checksum: 10c0/57336cfb9acfaacd979c20a90ed6a814842f3dba7bd899b85124001297af9d0d77261142b5ddc4ee6670c4bd9c14a4145ac5ff059b6a6d820e096804bbac0865 languageName: node linkType: hard -"@aws-sdk/nested-clients@npm:3.940.0, @aws-sdk/nested-clients@npm:^3.777.0": - version: 3.940.0 - resolution: "@aws-sdk/nested-clients@npm:3.940.0" +"@aws-sdk/nested-clients@npm:3.980.0, @aws-sdk/nested-clients@npm:^3.777.0": + version: 3.980.0 + resolution: "@aws-sdk/nested-clients@npm:3.980.0" dependencies: "@aws-crypto/sha256-browser": "npm:5.2.0" "@aws-crypto/sha256-js": "npm:5.2.0" - "@aws-sdk/core": "npm:3.940.0" - "@aws-sdk/middleware-host-header": "npm:3.936.0" - "@aws-sdk/middleware-logger": "npm:3.936.0" - "@aws-sdk/middleware-recursion-detection": "npm:3.936.0" - "@aws-sdk/middleware-user-agent": "npm:3.940.0" - "@aws-sdk/region-config-resolver": "npm:3.936.0" - "@aws-sdk/types": "npm:3.936.0" - "@aws-sdk/util-endpoints": "npm:3.936.0" - "@aws-sdk/util-user-agent-browser": "npm:3.936.0" - "@aws-sdk/util-user-agent-node": "npm:3.940.0" - "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" - "@smithy/fetch-http-handler": "npm:^5.3.6" - "@smithy/hash-node": "npm:^4.2.5" - "@smithy/invalid-dependency": "npm:^4.2.5" - "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" - "@smithy/middleware-serde": "npm:^4.2.6" - "@smithy/middleware-stack": "npm:^4.2.5" - "@smithy/node-config-provider": "npm:^4.3.5" - "@smithy/node-http-handler": "npm:^4.4.5" - "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" - "@smithy/types": "npm:^4.9.0" - "@smithy/url-parser": "npm:^4.2.5" + "@aws-sdk/core": "npm:^3.973.5" + "@aws-sdk/middleware-host-header": "npm:^3.972.3" + "@aws-sdk/middleware-logger": "npm:^3.972.3" + "@aws-sdk/middleware-recursion-detection": "npm:^3.972.3" + "@aws-sdk/middleware-user-agent": "npm:^3.972.5" + "@aws-sdk/region-config-resolver": "npm:^3.972.3" + "@aws-sdk/types": "npm:^3.973.1" + "@aws-sdk/util-endpoints": "npm:3.980.0" + "@aws-sdk/util-user-agent-browser": "npm:^3.972.3" + "@aws-sdk/util-user-agent-node": "npm:^3.972.3" + "@smithy/config-resolver": "npm:^4.4.6" + "@smithy/core": "npm:^3.22.0" + "@smithy/fetch-http-handler": "npm:^5.3.9" + "@smithy/hash-node": "npm:^4.2.8" + "@smithy/invalid-dependency": "npm:^4.2.8" + "@smithy/middleware-content-length": "npm:^4.2.8" + "@smithy/middleware-endpoint": "npm:^4.4.12" + "@smithy/middleware-retry": "npm:^4.4.29" + "@smithy/middleware-serde": "npm:^4.2.9" + "@smithy/middleware-stack": "npm:^4.2.8" + "@smithy/node-config-provider": "npm:^4.3.8" + "@smithy/node-http-handler": "npm:^4.4.8" + "@smithy/protocol-http": "npm:^5.3.8" + "@smithy/smithy-client": "npm:^4.11.1" + "@smithy/types": "npm:^4.12.0" + "@smithy/url-parser": "npm:^4.2.8" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" - "@smithy/util-endpoints": "npm:^3.2.5" - "@smithy/util-middleware": "npm:^4.2.5" - "@smithy/util-retry": "npm:^4.2.5" + "@smithy/util-defaults-mode-browser": "npm:^4.3.28" + "@smithy/util-defaults-mode-node": "npm:^4.2.31" + "@smithy/util-endpoints": "npm:^3.2.8" + "@smithy/util-middleware": "npm:^4.2.8" + "@smithy/util-retry": "npm:^4.2.8" "@smithy/util-utf8": "npm:^4.2.0" tslib: "npm:^2.6.2" - checksum: 10c0/6695cd044d5b43f26a6d2ae533dcd56f6a8780dc0a19e152af1dfb1017fa1a1813c1e742ca7ba608561f881f4cd4e18f957293698d880d857b460dd715b8ac50 + checksum: 10c0/0a5d36cf859ea7c717fdf0cae9cdd29c23a161068f3b16e4dfd6330ac32d564dc155c18b99b6feb058524afaee88ad7c7515d781b8e7622a0b94020dd3bf16ff languageName: node linkType: hard @@ -4814,30 +4963,44 @@ __metadata: languageName: node linkType: hard -"@aws-sdk/region-config-resolver@npm:3.936.0, @aws-sdk/region-config-resolver@npm:^3.465.0": - version: 3.936.0 - resolution: "@aws-sdk/region-config-resolver@npm:3.936.0" +"@aws-sdk/region-config-resolver@npm:3.723.0": + version: 3.723.0 + resolution: "@aws-sdk/region-config-resolver@npm:3.723.0" dependencies: - "@aws-sdk/types": "npm:3.936.0" - "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/node-config-provider": "npm:^4.3.5" - "@smithy/types": "npm:^4.9.0" + "@aws-sdk/types": "npm:3.723.0" + "@smithy/node-config-provider": "npm:^4.0.0" + "@smithy/types": "npm:^4.0.0" + "@smithy/util-config-provider": "npm:^4.0.0" + "@smithy/util-middleware": "npm:^4.0.0" tslib: "npm:^2.6.2" - checksum: 10c0/67ecf8f3575abe5c6b802afd6d8ba73ce54a97e6ff613eee36c4536a61ecfc732e2ac3a938829275122c4e645b40c0838c9a3904cebf6fc6d229c149e623a7f3 + checksum: 10c0/c51c07fe9cbeb04a28ed715e073055aae00e4c6a4d553e7383796041de539f0d90b7df3f10035f8c6cea8f4817b1c36df83f53736a401ae7f75446f37cce0add languageName: node linkType: hard -"@aws-sdk/signature-v4-multi-region@npm:3.940.0": - version: 3.940.0 - resolution: "@aws-sdk/signature-v4-multi-region@npm:3.940.0" +"@aws-sdk/region-config-resolver@npm:^3.465.0, @aws-sdk/region-config-resolver@npm:^3.972.3": + version: 3.972.3 + resolution: "@aws-sdk/region-config-resolver@npm:3.972.3" dependencies: - "@aws-sdk/middleware-sdk-s3": "npm:3.940.0" - "@aws-sdk/types": "npm:3.936.0" - "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/signature-v4": "npm:^5.3.5" - "@smithy/types": "npm:^4.9.0" + "@aws-sdk/types": "npm:^3.973.1" + "@smithy/config-resolver": "npm:^4.4.6" + "@smithy/node-config-provider": "npm:^4.3.8" + "@smithy/types": "npm:^4.12.0" tslib: "npm:^2.6.2" - checksum: 10c0/877127f4f3a64e62e110b80b7f1c0f6e99a670e2263d4efa2c46c5ae249ee9cf5081a1e38e1f8c3df2fedffb772f6a33f348f95b2301246c9b37b46c32aa055e + checksum: 10c0/6682f729ba131b9067f7af77bcb49f3cae41668614e5c3b21ce8f091346a6961e852d0b72e15f262ad1fdccc9f4190680b35f756244cd691b6314b2866e071d9 + languageName: node + linkType: hard + +"@aws-sdk/signature-v4-multi-region@npm:3.980.0": + version: 3.980.0 + resolution: "@aws-sdk/signature-v4-multi-region@npm:3.980.0" + dependencies: + "@aws-sdk/middleware-sdk-s3": "npm:^3.972.5" + "@aws-sdk/types": "npm:^3.973.1" + "@smithy/protocol-http": "npm:^5.3.8" + "@smithy/signature-v4": "npm:^5.3.8" + "@smithy/types": "npm:^4.12.0" + tslib: "npm:^2.6.2" + checksum: 10c0/6dedf84fc255b0a772787ae45212a43e8cb43544b7a4815096ee87cb590dd6197b6012bb5fb1a8e46a68a32ebd52ec52e94f727031e241e12116701b82da9277 languageName: node linkType: hard @@ -4901,38 +5064,33 @@ __metadata: languageName: node linkType: hard -"@aws-sdk/token-providers@npm:3.940.0": - version: 3.940.0 - resolution: "@aws-sdk/token-providers@npm:3.940.0" +"@aws-sdk/token-providers@npm:3.723.0": + version: 3.723.0 + resolution: "@aws-sdk/token-providers@npm:3.723.0" dependencies: - "@aws-sdk/core": "npm:3.940.0" - "@aws-sdk/nested-clients": "npm:3.940.0" - "@aws-sdk/types": "npm:3.936.0" - "@smithy/property-provider": "npm:^4.2.5" - "@smithy/shared-ini-file-loader": "npm:^4.4.0" - "@smithy/types": "npm:^4.9.0" + "@aws-sdk/types": "npm:3.723.0" + "@smithy/property-provider": "npm:^4.0.0" + "@smithy/shared-ini-file-loader": "npm:^4.0.0" + "@smithy/types": "npm:^4.0.0" tslib: "npm:^2.6.2" - checksum: 10c0/6dc90385d521521124eb65a1acdc28c792f5c353c15cc61ba08f7e2dae45f3ad81e02603eb0c244f453409becf73ec7c4e92a32048a464f07e85055a84faf0d7 - languageName: node - linkType: hard - -"@aws-sdk/types@npm:3.387.0": - version: 3.387.0 - resolution: "@aws-sdk/types@npm:3.387.0" - dependencies: - "@smithy/types": "npm:^2.1.0" - tslib: "npm:^2.5.0" - checksum: 10c0/a8a3771197c5196bec598e435c7e3ae851224a9ce59e18389564a65cde13cf62ba979bfc49608e3c2feed2ebbacc0615b9ea80051c89ad2b6166270c5e5e6aff + peerDependencies: + "@aws-sdk/client-sso-oidc": ^3.723.0 + checksum: 10c0/54f9865801b5c7c43158e95101bd6aaa5d5bee2e8cb553fbac52faadcb023fda898929139301eb1c9632762b314e48e7af8cf11c438bb7eba3348f7eb8297a1a languageName: node linkType: hard -"@aws-sdk/types@npm:3.398.0": - version: 3.398.0 - resolution: "@aws-sdk/types@npm:3.398.0" +"@aws-sdk/token-providers@npm:3.980.0": + version: 3.980.0 + resolution: "@aws-sdk/token-providers@npm:3.980.0" dependencies: - "@smithy/types": "npm:^2.2.2" - tslib: "npm:^2.5.0" - checksum: 10c0/a41a60d64840eb8df11f126c644e4569dc3b0cfab4107751530fdff2af90740ee5ed840bf7cf90c81fb82ddb9d8f309b8ee1d2328a1bc9729c6409f90fa11674 + "@aws-sdk/core": "npm:^3.973.5" + "@aws-sdk/nested-clients": "npm:3.980.0" + "@aws-sdk/types": "npm:^3.973.1" + "@smithy/property-provider": "npm:^4.2.8" + "@smithy/shared-ini-file-loader": "npm:^4.4.3" + "@smithy/types": "npm:^4.12.0" + tslib: "npm:^2.6.2" + checksum: 10c0/2ab2bd78bf356dce70c6ba12a5f288644c0b9d2cce90bcfb6a72f48eef9ea34f2579e8a485644ba16ef5501d10e2f0b8e312a2c3d893f721043a27a07663d588 languageName: node linkType: hard @@ -4956,6 +5114,16 @@ __metadata: languageName: node linkType: hard +"@aws-sdk/types@npm:3.723.0": + version: 3.723.0 + resolution: "@aws-sdk/types@npm:3.723.0" + dependencies: + "@smithy/types": "npm:^4.0.0" + tslib: "npm:^2.6.2" + checksum: 10c0/b13f2ef66a0de96df9a6ff227531579483b0d7a735ca3a936ba881d528ccae8b36d568f69914c343c972c0b84057366947980ed2ab60c642443564c2ad3739fe + languageName: node + linkType: hard + "@aws-sdk/types@npm:3.734.0": version: 3.734.0 resolution: "@aws-sdk/types@npm:3.734.0" @@ -4966,33 +5134,33 @@ __metadata: languageName: node linkType: hard -"@aws-sdk/types@npm:3.936.0, @aws-sdk/types@npm:^3.222.0, @aws-sdk/types@npm:^3.465.0, @aws-sdk/types@npm:^3.734.0": - version: 3.936.0 - resolution: "@aws-sdk/types@npm:3.936.0" +"@aws-sdk/types@npm:^3.222.0, @aws-sdk/types@npm:^3.465.0, @aws-sdk/types@npm:^3.734.0, @aws-sdk/types@npm:^3.936.0, @aws-sdk/types@npm:^3.973.1": + version: 3.973.1 + resolution: "@aws-sdk/types@npm:3.973.1" dependencies: - "@smithy/types": "npm:^4.9.0" + "@smithy/types": "npm:^4.12.0" tslib: "npm:^2.6.2" - checksum: 10c0/6f7eeabd0ada675b3b8e969d512f7ce29602a1dd6af154e3d6977f0a6f03084ca3be9498d091142369636a7b7d9f1b22e58156c741d1d088c4939581848054bb + checksum: 10c0/8a4a183cc39b4d6f4d065ece884b50d397a54b17add32b649f49adbe676174e7bee2c3c94394fc5227a4fccb96c34482291a1eb2702158e1dbb12c441af32863 languageName: node linkType: hard -"@aws-sdk/util-arn-parser@npm:3.893.0, @aws-sdk/util-arn-parser@npm:^3.723.0": - version: 3.893.0 - resolution: "@aws-sdk/util-arn-parser@npm:3.893.0" +"@aws-sdk/util-arn-parser@npm:^3.893.0, @aws-sdk/util-arn-parser@npm:^3.972.2": + version: 3.972.2 + resolution: "@aws-sdk/util-arn-parser@npm:3.972.2" dependencies: tslib: "npm:^2.6.2" - checksum: 10c0/c8bbc1e258674e791929f1259a3f2422433c0b8c5470808a958ef4320bb9ca7c27783b617da3b9e04d9a1cd1d0b547da2858249dbec816f1098c02731b551aac + checksum: 10c0/94aec6e0217da6add9d2334e8ec1c0c23955d279478e0161d00f66fd3527baf8a483e6fc41ecc2fb44e0b4116b52e85847a525ee7bdf43ff07d206f1e4ef03c9 languageName: node linkType: hard -"@aws-sdk/util-dynamodb@npm:3.940.0": - version: 3.940.0 - resolution: "@aws-sdk/util-dynamodb@npm:3.940.0" +"@aws-sdk/util-dynamodb@npm:3.980.0": + version: 3.980.0 + resolution: "@aws-sdk/util-dynamodb@npm:3.980.0" dependencies: tslib: "npm:^2.6.2" peerDependencies: - "@aws-sdk/client-dynamodb": ^3.940.0 - checksum: 10c0/a68e5959fb98045d6849fe56cbb6d2dd747756dc43669f825c11ec354e329278052a85c438a0ce095c4c0799b4d100057a59cec3cdde6bd03de4c9741793e809 + "@aws-sdk/client-dynamodb": 3.980.0 + checksum: 10c0/912efd8a57c00b62d1238ae4637c6aa9b073d49f0eb21f5456ade109fefd9f27f6e89514d39a89e87ffe9bcae6283c45c800d2e32bbe76f09bb6ad4eba59c386 languageName: node linkType: hard @@ -5031,6 +5199,18 @@ __metadata: languageName: node linkType: hard +"@aws-sdk/util-endpoints@npm:3.723.0": + version: 3.723.0 + resolution: "@aws-sdk/util-endpoints@npm:3.723.0" + dependencies: + "@aws-sdk/types": "npm:3.723.0" + "@smithy/types": "npm:^4.0.0" + "@smithy/util-endpoints": "npm:^3.0.0" + tslib: "npm:^2.6.2" + checksum: 10c0/e5c977537c7f85f8772aae1d5df9355d827cb169d7a8d69e144c360ac219bd7a4e8803e5e0215d1c45704b0a4078f2fdb148943470ca3be64401d0c6c284f65a + languageName: node + linkType: hard + "@aws-sdk/util-endpoints@npm:3.734.0": version: 3.734.0 resolution: "@aws-sdk/util-endpoints@npm:3.734.0" @@ -5043,37 +5223,37 @@ __metadata: languageName: node linkType: hard -"@aws-sdk/util-endpoints@npm:3.936.0": - version: 3.936.0 - resolution: "@aws-sdk/util-endpoints@npm:3.936.0" +"@aws-sdk/util-endpoints@npm:3.980.0": + version: 3.980.0 + resolution: "@aws-sdk/util-endpoints@npm:3.980.0" dependencies: - "@aws-sdk/types": "npm:3.936.0" - "@smithy/types": "npm:^4.9.0" - "@smithy/url-parser": "npm:^4.2.5" - "@smithy/util-endpoints": "npm:^3.2.5" + "@aws-sdk/types": "npm:^3.973.1" + "@smithy/types": "npm:^4.12.0" + "@smithy/url-parser": "npm:^4.2.8" + "@smithy/util-endpoints": "npm:^3.2.8" tslib: "npm:^2.6.2" - checksum: 10c0/13b1ae923ea8c09cb8ea91e7fec6d4c3138300140a23a437348dea826f50c00bf1331d4b1b1169232bedb311cbc3cc51284bd8d57820d9b028f928d06c61573f + checksum: 10c0/0de91a4d1e2382f45fbfcbd4e1424d2088fd58479483235b5dec23875a10fe11502a2482295ef14763793eeb607c4a0c1f75d2fc4101868e33f0837deab9a6ba languageName: node linkType: hard -"@aws-sdk/util-format-url@npm:3.936.0": - version: 3.936.0 - resolution: "@aws-sdk/util-format-url@npm:3.936.0" +"@aws-sdk/util-format-url@npm:^3.972.3": + version: 3.972.3 + resolution: "@aws-sdk/util-format-url@npm:3.972.3" dependencies: - "@aws-sdk/types": "npm:3.936.0" - "@smithy/querystring-builder": "npm:^4.2.5" - "@smithy/types": "npm:^4.9.0" + "@aws-sdk/types": "npm:^3.973.1" + "@smithy/querystring-builder": "npm:^4.2.8" + "@smithy/types": "npm:^4.12.0" tslib: "npm:^2.6.2" - checksum: 10c0/f7e01f704af64ef6003aaba92cedaf0319ea3cbbf8ee3e05778b0f14c08b8484cdcec96cfbf8093cc7e44bbed2385682c664fb96d4d48c53865ab645579fdbf4 + checksum: 10c0/dd7d63d7550198d257f6b5fb5c351ccd7442a1e9959391b8141a9af85504ef6267e5b4bea3d61efbdc71465bb39a66970b5c2bd27441a6c7fd82bc7983c06350 languageName: node linkType: hard "@aws-sdk/util-locate-window@npm:^3.0.0": - version: 3.893.0 - resolution: "@aws-sdk/util-locate-window@npm:3.893.0" + version: 3.965.4 + resolution: "@aws-sdk/util-locate-window@npm:3.965.4" dependencies: tslib: "npm:^2.6.2" - checksum: 10c0/ed2232d1eff567a7fa96bed87d56f03ac183dc20ba0ea262edb35f0b66aea201b987f447a5c383adc5694c80275700345946c0ad3183b30a6f9ec2f89be789d8 + checksum: 10c0/c87bef4cbeef564cb101f3d80b1dee008667e5a8c301b974dc25ec275e8d503a3226d3740bbfc4c1e17781719b7b8f06a25deea8196919caeaf87b0b8117286d languageName: node linkType: hard @@ -5101,15 +5281,27 @@ __metadata: languageName: node linkType: hard -"@aws-sdk/util-user-agent-browser@npm:3.936.0": - version: 3.936.0 - resolution: "@aws-sdk/util-user-agent-browser@npm:3.936.0" +"@aws-sdk/util-user-agent-browser@npm:3.723.0": + version: 3.723.0 + resolution: "@aws-sdk/util-user-agent-browser@npm:3.723.0" dependencies: - "@aws-sdk/types": "npm:3.936.0" - "@smithy/types": "npm:^4.9.0" + "@aws-sdk/types": "npm:3.723.0" + "@smithy/types": "npm:^4.0.0" + bowser: "npm:^2.11.0" + tslib: "npm:^2.6.2" + checksum: 10c0/10f3c757d35a8bc07fe85a8cd2af7bfa7f96dc71b5b434e840da84aefb791048907e7f25447999b132bd93c828107b7408de938bbbee5055ebcb7ad7abeeb0b8 + languageName: node + linkType: hard + +"@aws-sdk/util-user-agent-browser@npm:^3.972.3": + version: 3.972.3 + resolution: "@aws-sdk/util-user-agent-browser@npm:3.972.3" + dependencies: + "@aws-sdk/types": "npm:^3.973.1" + "@smithy/types": "npm:^4.12.0" bowser: "npm:^2.11.0" tslib: "npm:^2.6.2" - checksum: 10c0/5dec40c3ca7cfe0779cadcd8c67d8aa174a385bd38ebe0c54b01b2554c833519dd2714f68aa1809d5268d8614167f3187199f5f28559a2992cc5a5a816458e64 + checksum: 10c0/637f1396cfbca7b352ffaf332998c4223c35d0fa41431c106151a34c6bfe7c9e32e6a6dc7e75c495714e05f3729ae1f61996da923156c3edcb33e217e24328ad languageName: node linkType: hard @@ -5147,21 +5339,39 @@ __metadata: languageName: node linkType: hard -"@aws-sdk/util-user-agent-node@npm:3.940.0": - version: 3.940.0 - resolution: "@aws-sdk/util-user-agent-node@npm:3.940.0" +"@aws-sdk/util-user-agent-node@npm:3.723.0": + version: 3.723.0 + resolution: "@aws-sdk/util-user-agent-node@npm:3.723.0" dependencies: - "@aws-sdk/middleware-user-agent": "npm:3.940.0" - "@aws-sdk/types": "npm:3.936.0" - "@smithy/node-config-provider": "npm:^4.3.5" - "@smithy/types": "npm:^4.9.0" + "@aws-sdk/middleware-user-agent": "npm:3.723.0" + "@aws-sdk/types": "npm:3.723.0" + "@smithy/node-config-provider": "npm:^4.0.0" + "@smithy/types": "npm:^4.0.0" + tslib: "npm:^2.6.2" + peerDependencies: + aws-crt: ">=1.0.0" + peerDependenciesMeta: + aws-crt: + optional: true + checksum: 10c0/dd4ed9baae07861517013ac86994a90fc2a95bee4352623f14506102e139bb024833254723d4f854652516da265b5f78890802e527bde138829de5bae30a4c35 + languageName: node + linkType: hard + +"@aws-sdk/util-user-agent-node@npm:^3.972.3": + version: 3.972.3 + resolution: "@aws-sdk/util-user-agent-node@npm:3.972.3" + dependencies: + "@aws-sdk/middleware-user-agent": "npm:^3.972.5" + "@aws-sdk/types": "npm:^3.973.1" + "@smithy/node-config-provider": "npm:^4.3.8" + "@smithy/types": "npm:^4.12.0" tslib: "npm:^2.6.2" peerDependencies: aws-crt: ">=1.0.0" peerDependenciesMeta: aws-crt: optional: true - checksum: 10c0/0287c87d3e4bb8f679c54123314ed164013b357ad7a8eefd1685ecef14c6fed062e31e9a689c6e761acc49a1f3eb1903a95d450f823c76fb89f49a4729a83a93 + checksum: 10c0/179a8554c503b5239d27a1c0b2592092a8afcec324bb5b97c23816577d94172f62817d4f789f6ad0c9f7245909e47ba53666e8dbf9f655d1507bda71ae6fadfc languageName: node linkType: hard @@ -5174,62 +5384,62 @@ __metadata: languageName: node linkType: hard -"@aws-sdk/xml-builder@npm:3.930.0": - version: 3.930.0 - resolution: "@aws-sdk/xml-builder@npm:3.930.0" +"@aws-sdk/xml-builder@npm:^3.972.2": + version: 3.972.2 + resolution: "@aws-sdk/xml-builder@npm:3.972.2" dependencies: - "@smithy/types": "npm:^4.9.0" + "@smithy/types": "npm:^4.12.0" fast-xml-parser: "npm:5.2.5" tslib: "npm:^2.6.2" - checksum: 10c0/f46b8544ef54083944c179e85e3468023f5b960354f0c4e0c5261918c42d6a56a23807d3c88a73fe982b38f40e5d4e7e9e6885ebad7fec0df7be83dc7596abb6 + checksum: 10c0/117661fc70e01431402901c7dac7bbc785d91ddd712e234f9549bc2de9d18aaff6cd2d4e3e277f07c06fc02c4ae87e76b01edfd0de7e791512714ec15f49fab5 languageName: node linkType: hard -"@aws/lambda-invoke-store@npm:^0.2.0": - version: 0.2.1 - resolution: "@aws/lambda-invoke-store@npm:0.2.1" - checksum: 10c0/7fdfd6e4b175d36dae522556efc51b0f7445af3d55e516acee0f4e52946833ec9655be45cb3bdefec5974c0c6e5bcca3ad1bce7d397eb5f7a2393623867fb4b2 +"@aws/lambda-invoke-store@npm:^0.2.2": + version: 0.2.3 + resolution: "@aws/lambda-invoke-store@npm:0.2.3" + checksum: 10c0/3869a5d2494ff81fba306d603c0f2e36c59f89c4efdffd1105a208a595da77059547209a163b6f0c1b716e9d273ce24f94dcbd5a08bad74b2602d13711b0cb3b languageName: node linkType: hard -"@babel/code-frame@npm:^7.0.0, @babel/code-frame@npm:^7.22.13, @babel/code-frame@npm:^7.27.1": - version: 7.27.1 - resolution: "@babel/code-frame@npm:7.27.1" +"@babel/code-frame@npm:^7.0.0, @babel/code-frame@npm:^7.22.13, @babel/code-frame@npm:^7.28.6, @babel/code-frame@npm:^7.29.0": + version: 7.29.0 + resolution: "@babel/code-frame@npm:7.29.0" dependencies: - "@babel/helper-validator-identifier": "npm:^7.27.1" + "@babel/helper-validator-identifier": "npm:^7.28.5" js-tokens: "npm:^4.0.0" picocolors: "npm:^1.1.1" - checksum: 10c0/5dd9a18baa5fce4741ba729acc3a3272c49c25cb8736c4b18e113099520e7ef7b545a4096a26d600e4416157e63e87d66db46aa3fbf0a5f2286da2705c12da00 + checksum: 10c0/d34cc504e7765dfb576a663d97067afb614525806b5cad1a5cc1a7183b916fec8ff57fa233585e3926fd5a9e6b31aae6df91aa81ae9775fb7a28f658d3346f0d languageName: node linkType: hard -"@babel/compat-data@npm:^7.20.5, @babel/compat-data@npm:^7.27.2": - version: 7.28.5 - resolution: "@babel/compat-data@npm:7.28.5" - checksum: 10c0/702a25de73087b0eba325c1d10979eed7c9b6662677386ba7b5aa6eace0fc0676f78343bae080a0176ae26f58bd5535d73b9d0fbb547fef377692e8b249353a7 +"@babel/compat-data@npm:^7.20.5, @babel/compat-data@npm:^7.28.6": + version: 7.29.0 + resolution: "@babel/compat-data@npm:7.29.0" + checksum: 10c0/08f348554989d23aa801bf1405aa34b15e841c0d52d79da7e524285c77a5f9d298e70e11d91cc578d8e2c9542efc586d50c5f5cf8e1915b254a9dcf786913a94 languageName: node linkType: hard "@babel/core@npm:^7.14.0": - version: 7.28.5 - resolution: "@babel/core@npm:7.28.5" - dependencies: - "@babel/code-frame": "npm:^7.27.1" - "@babel/generator": "npm:^7.28.5" - "@babel/helper-compilation-targets": "npm:^7.27.2" - "@babel/helper-module-transforms": "npm:^7.28.3" - "@babel/helpers": "npm:^7.28.4" - "@babel/parser": "npm:^7.28.5" - "@babel/template": "npm:^7.27.2" - "@babel/traverse": "npm:^7.28.5" - "@babel/types": "npm:^7.28.5" + version: 7.29.0 + resolution: "@babel/core@npm:7.29.0" + dependencies: + "@babel/code-frame": "npm:^7.29.0" + "@babel/generator": "npm:^7.29.0" + "@babel/helper-compilation-targets": "npm:^7.28.6" + "@babel/helper-module-transforms": "npm:^7.28.6" + "@babel/helpers": "npm:^7.28.6" + "@babel/parser": "npm:^7.29.0" + "@babel/template": "npm:^7.28.6" + "@babel/traverse": "npm:^7.29.0" + "@babel/types": "npm:^7.29.0" "@jridgewell/remapping": "npm:^2.3.5" convert-source-map: "npm:^2.0.0" debug: "npm:^4.1.0" gensync: "npm:^1.0.0-beta.2" json5: "npm:^2.2.3" semver: "npm:^6.3.1" - checksum: 10c0/535f82238027621da6bdffbdbe896ebad3558b311d6f8abc680637a9859b96edbf929ab010757055381570b29cf66c4a295b5618318d27a4273c0e2033925e72 + checksum: 10c0/5127d2e8e842ae409e11bcbb5c2dff9874abf5415e8026925af7308e903f4f43397341467a130490d1a39884f461bc2b67f3063bce0be44340db89687fd852aa languageName: node linkType: hard @@ -5257,20 +5467,20 @@ __metadata: languageName: node linkType: hard -"@babel/generator@npm:^7.14.0, @babel/generator@npm:^7.23.0, @babel/generator@npm:^7.28.5": - version: 7.28.5 - resolution: "@babel/generator@npm:7.28.5" +"@babel/generator@npm:^7.14.0, @babel/generator@npm:^7.23.0, @babel/generator@npm:^7.29.0": + version: 7.29.0 + resolution: "@babel/generator@npm:7.29.0" dependencies: - "@babel/parser": "npm:^7.28.5" - "@babel/types": "npm:^7.28.5" + "@babel/parser": "npm:^7.29.0" + "@babel/types": "npm:^7.29.0" "@jridgewell/gen-mapping": "npm:^0.3.12" "@jridgewell/trace-mapping": "npm:^0.3.28" jsesc: "npm:^3.0.2" - checksum: 10c0/9f219fe1d5431b6919f1a5c60db8d5d34fe546c0d8f5a8511b32f847569234ffc8032beb9e7404649a143f54e15224ecb53a3d11b6bb85c3203e573d91fca752 + checksum: 10c0/5c3df8f2475bfd5f97ad0211c52171aff630088b148e7b89d056b39d69855179bc9f2d1ee200263c76c2398a49e4fdbb38b9709ebc4f043cc04d9ee09a66668a languageName: node linkType: hard -"@babel/helper-annotate-as-pure@npm:^7.27.1, @babel/helper-annotate-as-pure@npm:^7.27.3": +"@babel/helper-annotate-as-pure@npm:^7.27.3": version: 7.27.3 resolution: "@babel/helper-annotate-as-pure@npm:7.27.3" dependencies: @@ -5279,33 +5489,33 @@ __metadata: languageName: node linkType: hard -"@babel/helper-compilation-targets@npm:^7.20.7, @babel/helper-compilation-targets@npm:^7.27.1, @babel/helper-compilation-targets@npm:^7.27.2": - version: 7.27.2 - resolution: "@babel/helper-compilation-targets@npm:7.27.2" +"@babel/helper-compilation-targets@npm:^7.20.7, @babel/helper-compilation-targets@npm:^7.27.1, @babel/helper-compilation-targets@npm:^7.28.6": + version: 7.28.6 + resolution: "@babel/helper-compilation-targets@npm:7.28.6" dependencies: - "@babel/compat-data": "npm:^7.27.2" + "@babel/compat-data": "npm:^7.28.6" "@babel/helper-validator-option": "npm:^7.27.1" browserslist: "npm:^4.24.0" lru-cache: "npm:^5.1.1" semver: "npm:^6.3.1" - checksum: 10c0/f338fa00dcfea931804a7c55d1a1c81b6f0a09787e528ec580d5c21b3ecb3913f6cb0f361368973ce953b824d910d3ac3e8a8ee15192710d3563826447193ad1 + checksum: 10c0/3fcdf3b1b857a1578e99d20508859dbd3f22f3c87b8a0f3dc540627b4be539bae7f6e61e49d931542fe5b557545347272bbdacd7f58a5c77025a18b745593a50 languageName: node linkType: hard "@babel/helper-create-class-features-plugin@npm:^7.18.6": - version: 7.28.5 - resolution: "@babel/helper-create-class-features-plugin@npm:7.28.5" + version: 7.28.6 + resolution: "@babel/helper-create-class-features-plugin@npm:7.28.6" dependencies: "@babel/helper-annotate-as-pure": "npm:^7.27.3" "@babel/helper-member-expression-to-functions": "npm:^7.28.5" "@babel/helper-optimise-call-expression": "npm:^7.27.1" - "@babel/helper-replace-supers": "npm:^7.27.1" + "@babel/helper-replace-supers": "npm:^7.28.6" "@babel/helper-skip-transparent-expression-wrappers": "npm:^7.27.1" - "@babel/traverse": "npm:^7.28.5" + "@babel/traverse": "npm:^7.28.6" semver: "npm:^6.3.1" peerDependencies: "@babel/core": ^7.0.0 - checksum: 10c0/786a6514efcf4514aaad85beed419b9184d059f4c9a9a95108f320142764999827252a851f7071de19f29424d369616573ecbaa347f1ce23fb12fc6827d9ff56 + checksum: 10c0/0b62b46717891f4366006b88c9b7f277980d4f578c4c3789b7a4f5a2e09e121de4cda9a414ab403986745cd3ad1af3fe2d948c9f78ab80d4dc085afc9602af50 languageName: node linkType: hard @@ -5344,7 +5554,7 @@ __metadata: languageName: node linkType: hard -"@babel/helper-member-expression-to-functions@npm:^7.27.1, @babel/helper-member-expression-to-functions@npm:^7.28.5": +"@babel/helper-member-expression-to-functions@npm:^7.28.5": version: 7.28.5 resolution: "@babel/helper-member-expression-to-functions@npm:7.28.5" dependencies: @@ -5354,26 +5564,26 @@ __metadata: languageName: node linkType: hard -"@babel/helper-module-imports@npm:^7.16.7, @babel/helper-module-imports@npm:^7.27.1": - version: 7.27.1 - resolution: "@babel/helper-module-imports@npm:7.27.1" +"@babel/helper-module-imports@npm:^7.16.7, @babel/helper-module-imports@npm:^7.28.6": + version: 7.28.6 + resolution: "@babel/helper-module-imports@npm:7.28.6" dependencies: - "@babel/traverse": "npm:^7.27.1" - "@babel/types": "npm:^7.27.1" - checksum: 10c0/e00aace096e4e29290ff8648455c2bc4ed982f0d61dbf2db1b5e750b9b98f318bf5788d75a4f974c151bd318fd549e81dbcab595f46b14b81c12eda3023f51e8 + "@babel/traverse": "npm:^7.28.6" + "@babel/types": "npm:^7.28.6" + checksum: 10c0/b49d8d8f204d9dbfd5ac70c54e533e5269afb3cea966a9d976722b13e9922cc773a653405f53c89acb247d5aebdae4681d631a3ae3df77ec046b58da76eda2ac languageName: node linkType: hard -"@babel/helper-module-transforms@npm:^7.27.1, @babel/helper-module-transforms@npm:^7.28.3": - version: 7.28.3 - resolution: "@babel/helper-module-transforms@npm:7.28.3" +"@babel/helper-module-transforms@npm:^7.28.6": + version: 7.28.6 + resolution: "@babel/helper-module-transforms@npm:7.28.6" dependencies: - "@babel/helper-module-imports": "npm:^7.27.1" - "@babel/helper-validator-identifier": "npm:^7.27.1" - "@babel/traverse": "npm:^7.28.3" + "@babel/helper-module-imports": "npm:^7.28.6" + "@babel/helper-validator-identifier": "npm:^7.28.5" + "@babel/traverse": "npm:^7.28.6" peerDependencies: "@babel/core": ^7.0.0 - checksum: 10c0/549be62515a6d50cd4cfefcab1b005c47f89bd9135a22d602ee6a5e3a01f27571868ada10b75b033569f24dc4a2bb8d04bfa05ee75c16da7ade2d0db1437fcdb + checksum: 10c0/6f03e14fc30b287ce0b839474b5f271e72837d0cafe6b172d759184d998fbee3903a035e81e07c2c596449e504f453463d58baa65b6f40a37ded5bec74620b2b languageName: node linkType: hard @@ -5386,23 +5596,23 @@ __metadata: languageName: node linkType: hard -"@babel/helper-plugin-utils@npm:^7.12.13, @babel/helper-plugin-utils@npm:^7.18.6, @babel/helper-plugin-utils@npm:^7.20.2, @babel/helper-plugin-utils@npm:^7.27.1, @babel/helper-plugin-utils@npm:^7.8.0": - version: 7.27.1 - resolution: "@babel/helper-plugin-utils@npm:7.27.1" - checksum: 10c0/94cf22c81a0c11a09b197b41ab488d416ff62254ce13c57e62912c85700dc2e99e555225787a4099ff6bae7a1812d622c80fbaeda824b79baa10a6c5ac4cf69b +"@babel/helper-plugin-utils@npm:^7.12.13, @babel/helper-plugin-utils@npm:^7.18.6, @babel/helper-plugin-utils@npm:^7.20.2, @babel/helper-plugin-utils@npm:^7.27.1, @babel/helper-plugin-utils@npm:^7.28.6, @babel/helper-plugin-utils@npm:^7.8.0": + version: 7.28.6 + resolution: "@babel/helper-plugin-utils@npm:7.28.6" + checksum: 10c0/3f5f8acc152fdbb69a84b8624145ff4f9b9f6e776cb989f9f968f8606eb7185c5c3cfcf3ba08534e37e1e0e1c118ac67080610333f56baa4f7376c99b5f1143d languageName: node linkType: hard -"@babel/helper-replace-supers@npm:^7.27.1": - version: 7.27.1 - resolution: "@babel/helper-replace-supers@npm:7.27.1" +"@babel/helper-replace-supers@npm:^7.27.1, @babel/helper-replace-supers@npm:^7.28.6": + version: 7.28.6 + resolution: "@babel/helper-replace-supers@npm:7.28.6" dependencies: - "@babel/helper-member-expression-to-functions": "npm:^7.27.1" + "@babel/helper-member-expression-to-functions": "npm:^7.28.5" "@babel/helper-optimise-call-expression": "npm:^7.27.1" - "@babel/traverse": "npm:^7.27.1" + "@babel/traverse": "npm:^7.28.6" peerDependencies: "@babel/core": ^7.0.0 - checksum: 10c0/4f2eaaf5fcc196580221a7ccd0f8873447b5d52745ad4096418f6101a1d2e712e9f93722c9a32bc9769a1dc197e001f60d6f5438d4dfde4b9c6a9e4df719354c + checksum: 10c0/04663c6389551b99b8c3e7ba4e2638b8ca2a156418c26771516124c53083aa8e74b6a45abe5dd46360af79709a0e9c6b72c076d0eab9efecdd5aaf836e79d8d5 languageName: node linkType: hard @@ -5432,7 +5642,7 @@ __metadata: languageName: node linkType: hard -"@babel/helper-validator-identifier@npm:^7.16.7, @babel/helper-validator-identifier@npm:^7.27.1, @babel/helper-validator-identifier@npm:^7.28.5": +"@babel/helper-validator-identifier@npm:^7.16.7, @babel/helper-validator-identifier@npm:^7.28.5": version: 7.28.5 resolution: "@babel/helper-validator-identifier@npm:7.28.5" checksum: 10c0/42aaebed91f739a41f3d80b72752d1f95fd7c72394e8e4bd7cdd88817e0774d80a432451bcba17c2c642c257c483bf1d409dd4548883429ea9493a3bc4ab0847 @@ -5446,24 +5656,24 @@ __metadata: languageName: node linkType: hard -"@babel/helpers@npm:^7.28.4": - version: 7.28.4 - resolution: "@babel/helpers@npm:7.28.4" +"@babel/helpers@npm:^7.28.6": + version: 7.28.6 + resolution: "@babel/helpers@npm:7.28.6" dependencies: - "@babel/template": "npm:^7.27.2" - "@babel/types": "npm:^7.28.4" - checksum: 10c0/aaa5fb8098926dfed5f223adf2c5e4c7fbba4b911b73dfec2d7d3083f8ba694d201a206db673da2d9b3ae8c01793e795767654558c450c8c14b4c2175b4fcb44 + "@babel/template": "npm:^7.28.6" + "@babel/types": "npm:^7.28.6" + checksum: 10c0/c4a779c66396bb0cf619402d92f1610601ff3832db2d3b86b9c9dd10983bf79502270e97ac6d5280cea1b1a37de2f06ecbac561bd2271545270407fbe64027cb languageName: node linkType: hard -"@babel/parser@npm:^7.14.0, @babel/parser@npm:^7.20.5, @babel/parser@npm:^7.23.0, @babel/parser@npm:^7.27.2, @babel/parser@npm:^7.28.5": - version: 7.28.5 - resolution: "@babel/parser@npm:7.28.5" +"@babel/parser@npm:^7.14.0, @babel/parser@npm:^7.20.5, @babel/parser@npm:^7.23.0, @babel/parser@npm:^7.28.6, @babel/parser@npm:^7.29.0": + version: 7.29.0 + resolution: "@babel/parser@npm:7.29.0" dependencies: - "@babel/types": "npm:^7.28.5" + "@babel/types": "npm:^7.29.0" bin: parser: ./bin/babel-parser.js - checksum: 10c0/5bbe48bf2c79594ac02b490a41ffde7ef5aa22a9a88ad6bcc78432a6ba8a9d638d531d868bd1f104633f1f6bba9905746e15185b8276a3756c42b765d131b1ef + checksum: 10c0/333b2aa761264b91577a74bee86141ef733f9f9f6d4fc52548e4847dc35dfbf821f58c46832c637bfa761a6d9909d6a68f7d1ed59e17e4ffbb958dc510c17b62 languageName: node linkType: hard @@ -5506,24 +5716,24 @@ __metadata: linkType: hard "@babel/plugin-syntax-flow@npm:^7.0.0, @babel/plugin-syntax-flow@npm:^7.27.1": - version: 7.27.1 - resolution: "@babel/plugin-syntax-flow@npm:7.27.1" + version: 7.28.6 + resolution: "@babel/plugin-syntax-flow@npm:7.28.6" dependencies: - "@babel/helper-plugin-utils": "npm:^7.27.1" + "@babel/helper-plugin-utils": "npm:^7.28.6" peerDependencies: "@babel/core": ^7.0.0-0 - checksum: 10c0/4d34ca47044398665cbe0293baea7be230ca4090bc7981ffba5273402a215c95976c6f811c7b32f10b326cc6aab6886f26c29630c429aa45c3f350c5ccdfdbbf + checksum: 10c0/a00114adcbbdaef07638f6a2e8c3ea63d65b3d27f088e8e53c5f35b8dc50813c0e1006fac4fb109782f9cdd41ad2f1cb9838359fecbb3d1f6141b4002358f52c languageName: node linkType: hard -"@babel/plugin-syntax-jsx@npm:^7.0.0, @babel/plugin-syntax-jsx@npm:^7.27.1": - version: 7.27.1 - resolution: "@babel/plugin-syntax-jsx@npm:7.27.1" +"@babel/plugin-syntax-jsx@npm:^7.0.0, @babel/plugin-syntax-jsx@npm:^7.28.6": + version: 7.28.6 + resolution: "@babel/plugin-syntax-jsx@npm:7.28.6" dependencies: - "@babel/helper-plugin-utils": "npm:^7.27.1" + "@babel/helper-plugin-utils": "npm:^7.28.6" peerDependencies: "@babel/core": ^7.0.0-0 - checksum: 10c0/bc5afe6a458d5f0492c02a54ad98c5756a0c13bd6d20609aae65acd560a9e141b0876da5f358dce34ea136f271c1016df58b461184d7ae9c4321e0f98588bc84 + checksum: 10c0/b98fc3cd75e4ca3d5ca1162f610c286e14ede1486e0d297c13a5eb0ac85680ac9656d17d348bddd9160a54d797a08cea5eaac02b9330ddebb7b26732b7b99fb5 languageName: node linkType: hard @@ -5561,41 +5771,41 @@ __metadata: linkType: hard "@babel/plugin-transform-block-scoping@npm:^7.0.0": - version: 7.28.5 - resolution: "@babel/plugin-transform-block-scoping@npm:7.28.5" + version: 7.28.6 + resolution: "@babel/plugin-transform-block-scoping@npm:7.28.6" dependencies: - "@babel/helper-plugin-utils": "npm:^7.27.1" + "@babel/helper-plugin-utils": "npm:^7.28.6" peerDependencies: "@babel/core": ^7.0.0-0 - checksum: 10c0/6b098887b375c23813ccee7a00179501fc5f709b4ee5a4b2a5c5c9ef3b44cee49e240214b1a9b4ad2bd1911fab3335eac2f0a3c5f014938a1b61bec84cec4845 + checksum: 10c0/2e3e09e1f9770b56cef4dcbffddf262508fd03416072f815ac66b2b224a3a12cd285cfec12fc067f1add414e7db5ce6dafb5164a6e0fb1a728e6a97d0c6f6e9d languageName: node linkType: hard "@babel/plugin-transform-classes@npm:^7.0.0": - version: 7.28.4 - resolution: "@babel/plugin-transform-classes@npm:7.28.4" + version: 7.28.6 + resolution: "@babel/plugin-transform-classes@npm:7.28.6" dependencies: "@babel/helper-annotate-as-pure": "npm:^7.27.3" - "@babel/helper-compilation-targets": "npm:^7.27.2" + "@babel/helper-compilation-targets": "npm:^7.28.6" "@babel/helper-globals": "npm:^7.28.0" - "@babel/helper-plugin-utils": "npm:^7.27.1" - "@babel/helper-replace-supers": "npm:^7.27.1" - "@babel/traverse": "npm:^7.28.4" + "@babel/helper-plugin-utils": "npm:^7.28.6" + "@babel/helper-replace-supers": "npm:^7.28.6" + "@babel/traverse": "npm:^7.28.6" peerDependencies: "@babel/core": ^7.0.0-0 - checksum: 10c0/76687ed37216ff012c599870dc00183fb716f22e1a02fe9481943664c0e4d0d88c3da347dc3fe290d4728f4d47cd594ffa621d23845e2bb8ab446e586308e066 + checksum: 10c0/dc22f1f6eadab17305128fbf9cc5f30e87a51a77dd0a6d5498097994e8a9b9a90ab298c11edf2342acbeaac9edc9c601cad72eedcf4b592cd465a787d7f41490 languageName: node linkType: hard "@babel/plugin-transform-computed-properties@npm:^7.0.0": - version: 7.27.1 - resolution: "@babel/plugin-transform-computed-properties@npm:7.27.1" + version: 7.28.6 + resolution: "@babel/plugin-transform-computed-properties@npm:7.28.6" dependencies: - "@babel/helper-plugin-utils": "npm:^7.27.1" - "@babel/template": "npm:^7.27.1" + "@babel/helper-plugin-utils": "npm:^7.28.6" + "@babel/template": "npm:^7.28.6" peerDependencies: "@babel/core": ^7.0.0-0 - checksum: 10c0/e09a12f8c8ae0e6a6144c102956947b4ec05f6c844169121d0ec4529c2d30ad1dc59fee67736193b87a402f44552c888a519a680a31853bdb4d34788c28af3b0 + checksum: 10c0/1e9893503ae6d651125701cc29450e87c0b873c8febebff19da75da9c40cfb7968c52c28bf948244e461110aeb7b3591f2cc199b7406ff74a24c50c7a5729f39 languageName: node linkType: hard @@ -5671,14 +5881,14 @@ __metadata: linkType: hard "@babel/plugin-transform-modules-commonjs@npm:^7.0.0": - version: 7.27.1 - resolution: "@babel/plugin-transform-modules-commonjs@npm:7.27.1" + version: 7.28.6 + resolution: "@babel/plugin-transform-modules-commonjs@npm:7.28.6" dependencies: - "@babel/helper-module-transforms": "npm:^7.27.1" - "@babel/helper-plugin-utils": "npm:^7.27.1" + "@babel/helper-module-transforms": "npm:^7.28.6" + "@babel/helper-plugin-utils": "npm:^7.28.6" peerDependencies: "@babel/core": ^7.0.0-0 - checksum: 10c0/4def972dcd23375a266ea1189115a4ff61744b2c9366fc1de648b3fab2c650faf1a94092de93a33ff18858d2e6c4dddeeee5384cb42ba0129baeab01a5cdf1e2 + checksum: 10c0/7c45992797c6150644c8552feff4a016ba7bd6d59ff2b039ed969a9c5b20a6804cd9d21db5045fc8cca8ca7f08262497e354e93f8f2be6a1cdf3fbfa8c31a9b6 languageName: node linkType: hard @@ -5728,17 +5938,17 @@ __metadata: linkType: hard "@babel/plugin-transform-react-jsx@npm:^7.0.0": - version: 7.27.1 - resolution: "@babel/plugin-transform-react-jsx@npm:7.27.1" + version: 7.28.6 + resolution: "@babel/plugin-transform-react-jsx@npm:7.28.6" dependencies: - "@babel/helper-annotate-as-pure": "npm:^7.27.1" - "@babel/helper-module-imports": "npm:^7.27.1" - "@babel/helper-plugin-utils": "npm:^7.27.1" - "@babel/plugin-syntax-jsx": "npm:^7.27.1" - "@babel/types": "npm:^7.27.1" + "@babel/helper-annotate-as-pure": "npm:^7.27.3" + "@babel/helper-module-imports": "npm:^7.28.6" + "@babel/helper-plugin-utils": "npm:^7.28.6" + "@babel/plugin-syntax-jsx": "npm:^7.28.6" + "@babel/types": "npm:^7.28.6" peerDependencies: "@babel/core": ^7.0.0-0 - checksum: 10c0/1a08637c39fc78c9760dd4a3ed363fdbc762994bf83ed7872ad5bda0232fcd0fc557332f2ce36b522c0226dfd9cc8faac6b88eddda535f24825198a689e571af + checksum: 10c0/cc75b9bb3997751df6cf7e86afe1b3fa33130b5031a412f6f12cc5faec083650fe852de0af5ec8f88d3588cc3428a3f514d3bc1f423d26f8b014cc5dff9f15a7 languageName: node linkType: hard @@ -5754,14 +5964,14 @@ __metadata: linkType: hard "@babel/plugin-transform-spread@npm:^7.0.0": - version: 7.27.1 - resolution: "@babel/plugin-transform-spread@npm:7.27.1" + version: 7.28.6 + resolution: "@babel/plugin-transform-spread@npm:7.28.6" dependencies: - "@babel/helper-plugin-utils": "npm:^7.27.1" + "@babel/helper-plugin-utils": "npm:^7.28.6" "@babel/helper-skip-transparent-expression-wrappers": "npm:^7.27.1" peerDependencies: "@babel/core": ^7.0.0-0 - checksum: 10c0/b34fc58b33bd35b47d67416655c2cbc8578fbb3948b4592bc15eb6d8b4046986e25c06e3b9929460fa4ab08e9653582415e7ef8b87d265e1239251bdf5a4c162 + checksum: 10c0/bcac50e558d6f0c501cbce19ec197af558cef51fe3b3a6eba27276e323e57a5be28109b4264a5425ac12a67bf95d6af9c2a42b05e79c522ce913fb9529259d76 languageName: node linkType: hard @@ -5776,21 +5986,21 @@ __metadata: languageName: node linkType: hard -"@babel/runtime@npm:^7.0.0, @babel/runtime@npm:^7.10.1, @babel/runtime@npm:^7.12.5, @babel/runtime@npm:^7.15.4, @babel/runtime@npm:^7.17.8, @babel/runtime@npm:^7.18.3, @babel/runtime@npm:^7.20.13, @babel/runtime@npm:^7.23.8, @babel/runtime@npm:^7.23.9, @babel/runtime@npm:^7.24.5, @babel/runtime@npm:^7.26.0, @babel/runtime@npm:^7.28.4, @babel/runtime@npm:^7.5.5, @babel/runtime@npm:^7.8.7": - version: 7.28.4 - resolution: "@babel/runtime@npm:7.28.4" - checksum: 10c0/792ce7af9750fb9b93879cc9d1db175701c4689da890e6ced242ea0207c9da411ccf16dc04e689cc01158b28d7898c40d75598f4559109f761c12ce01e959bf7 +"@babel/runtime@npm:^7.0.0, @babel/runtime@npm:^7.10.1, @babel/runtime@npm:^7.12.5, @babel/runtime@npm:^7.15.4, @babel/runtime@npm:^7.17.8, @babel/runtime@npm:^7.18.3, @babel/runtime@npm:^7.20.13, @babel/runtime@npm:^7.23.8, @babel/runtime@npm:^7.23.9, @babel/runtime@npm:^7.24.5, @babel/runtime@npm:^7.26.0, @babel/runtime@npm:^7.28.6, @babel/runtime@npm:^7.5.5, @babel/runtime@npm:^7.8.7": + version: 7.28.6 + resolution: "@babel/runtime@npm:7.28.6" + checksum: 10c0/358cf2429992ac1c466df1a21c1601d595c46930a13c1d4662fde908d44ee78ec3c183aaff513ecb01ef8c55c3624afe0309eeeb34715672dbfadb7feedb2c0d languageName: node linkType: hard -"@babel/template@npm:^7.24.7, @babel/template@npm:^7.27.1, @babel/template@npm:^7.27.2": - version: 7.27.2 - resolution: "@babel/template@npm:7.27.2" +"@babel/template@npm:^7.24.7, @babel/template@npm:^7.28.6": + version: 7.28.6 + resolution: "@babel/template@npm:7.28.6" dependencies: - "@babel/code-frame": "npm:^7.27.1" - "@babel/parser": "npm:^7.27.2" - "@babel/types": "npm:^7.27.1" - checksum: 10c0/ed9e9022651e463cc5f2cc21942f0e74544f1754d231add6348ff1b472985a3b3502041c0be62dc99ed2d12cfae0c51394bf827452b98a2f8769c03b87aadc81 + "@babel/code-frame": "npm:^7.28.6" + "@babel/parser": "npm:^7.28.6" + "@babel/types": "npm:^7.28.6" + checksum: 10c0/66d87225ed0bc77f888181ae2d97845021838c619944877f7c4398c6748bcf611f216dfd6be74d39016af502bca876e6ce6873db3c49e4ac354c56d34d57e9f5 languageName: node linkType: hard @@ -5812,18 +6022,18 @@ __metadata: languageName: node linkType: hard -"@babel/traverse@npm:^7.14.0, @babel/traverse@npm:^7.27.1, @babel/traverse@npm:^7.28.3, @babel/traverse@npm:^7.28.4, @babel/traverse@npm:^7.28.5": - version: 7.28.5 - resolution: "@babel/traverse@npm:7.28.5" +"@babel/traverse@npm:^7.14.0, @babel/traverse@npm:^7.27.1, @babel/traverse@npm:^7.28.5, @babel/traverse@npm:^7.28.6, @babel/traverse@npm:^7.29.0": + version: 7.29.0 + resolution: "@babel/traverse@npm:7.29.0" dependencies: - "@babel/code-frame": "npm:^7.27.1" - "@babel/generator": "npm:^7.28.5" + "@babel/code-frame": "npm:^7.29.0" + "@babel/generator": "npm:^7.29.0" "@babel/helper-globals": "npm:^7.28.0" - "@babel/parser": "npm:^7.28.5" - "@babel/template": "npm:^7.27.2" - "@babel/types": "npm:^7.28.5" + "@babel/parser": "npm:^7.29.0" + "@babel/template": "npm:^7.28.6" + "@babel/types": "npm:^7.29.0" debug: "npm:^4.3.1" - checksum: 10c0/f6c4a595993ae2b73f2d4cd9c062f2e232174d293edd4abe1d715bd6281da8d99e47c65857e8d0917d9384c65972f4acdebc6749a7c40a8fcc38b3c7fb3e706f + checksum: 10c0/f63ef6e58d02a9fbf3c0e2e5f1c877da3e0bc57f91a19d2223d53e356a76859cbaf51171c9211c71816d94a0e69efa2732fd27ffc0e1bbc84b636e60932333eb languageName: node linkType: hard @@ -5848,13 +6058,13 @@ __metadata: languageName: node linkType: hard -"@babel/types@npm:^7.0.0, @babel/types@npm:^7.17.0, @babel/types@npm:^7.23.0, @babel/types@npm:^7.24.7, @babel/types@npm:^7.27.1, @babel/types@npm:^7.27.3, @babel/types@npm:^7.28.4, @babel/types@npm:^7.28.5": - version: 7.28.5 - resolution: "@babel/types@npm:7.28.5" +"@babel/types@npm:^7.0.0, @babel/types@npm:^7.17.0, @babel/types@npm:^7.23.0, @babel/types@npm:^7.24.7, @babel/types@npm:^7.27.1, @babel/types@npm:^7.27.3, @babel/types@npm:^7.28.5, @babel/types@npm:^7.28.6, @babel/types@npm:^7.29.0": + version: 7.29.0 + resolution: "@babel/types@npm:7.29.0" dependencies: "@babel/helper-string-parser": "npm:^7.27.1" "@babel/helper-validator-identifier": "npm:^7.28.5" - checksum: 10c0/a5a483d2100befbf125793640dec26b90b95fd233a94c19573325898a5ce1e52cdfa96e495c7dcc31b5eca5b66ce3e6d4a0f5a4a62daec271455959f208ab08a + checksum: 10c0/23cc3466e83bcbfab8b9bd0edaafdb5d4efdb88b82b3be6728bbade5ba2f0996f84f63b1c5f7a8c0d67efded28300898a5f930b171bb40b311bca2029c4e9b4f languageName: node linkType: hard @@ -5865,13 +6075,6 @@ __metadata: languageName: node linkType: hard -"@cdklabs/tskb@npm:^0.0.3": - version: 0.0.3 - resolution: "@cdklabs/tskb@npm:0.0.3" - checksum: 10c0/01b976c661f13dbafb57b9c481fd08f05104847da59cf9a07f4d1c95c3955a904d242c2ea503827bcd01d5203f0810f8d3a0465cd0339f585e0b15f3a7c49d85 - languageName: node - linkType: hard - "@cdklabs/tskb@npm:^0.0.4": version: 0.0.4 resolution: "@cdklabs/tskb@npm:0.0.4" @@ -5879,9 +6082,9 @@ __metadata: languageName: node linkType: hard -"@cesium/engine@npm:^22.0.0": - version: 22.0.0 - resolution: "@cesium/engine@npm:22.0.0" +"@cesium/engine@npm:^22.2.0": + version: 22.2.0 + resolution: "@cesium/engine@npm:22.2.0" dependencies: "@cesium/wasm-splats": "npm:^0.1.0-alpha.2" "@spz-loader/core": "npm:0.3.0" @@ -5889,7 +6092,7 @@ __metadata: "@zip.js/zip.js": "npm:^2.8.1" autolinker: "npm:^4.0.0" bitmap-sdf: "npm:^1.0.3" - dompurify: "npm:^3.0.2" + dompurify: "npm:^3.3.0" draco3d: "npm:^1.5.1" earcut: "npm:^3.0.0" grapheme-splitter: "npm:^1.0.4" @@ -5898,13 +6101,13 @@ __metadata: ktx-parse: "npm:^1.0.0" lerc: "npm:^2.0.0" mersenne-twister: "npm:^1.1.0" - meshoptimizer: "npm:^0.25.0" + meshoptimizer: "npm:^1.0.1" pako: "npm:^2.0.4" - protobufjs: "npm:^7.1.0" + protobufjs: "npm:^8.0.0" rbush: "npm:^4.0.1" topojson-client: "npm:^3.1.0" urijs: "npm:^1.19.7" - checksum: 10c0/fc8566cab47c4e7a87cb96110df3d1758b5000c1076f7942940e645e6c03a1d1d010028ceb4b3ce6d90f0fccfce42d13a82529256b20a256502ff3936e1985d7 + checksum: 10c0/331fff971e0cb9977745b48c57cb1f8787e337db1e188c5d2a6af6c8a359b0fd70db3d04b895c03dcccf2aff6054a1886562acace04c7c802015745e10d8861d languageName: node linkType: hard @@ -5915,13 +6118,13 @@ __metadata: languageName: node linkType: hard -"@cesium/widgets@npm:^14.0.0": - version: 14.0.0 - resolution: "@cesium/widgets@npm:14.0.0" +"@cesium/widgets@npm:^14.2.0": + version: 14.2.0 + resolution: "@cesium/widgets@npm:14.2.0" dependencies: - "@cesium/engine": "npm:^22.0.0" + "@cesium/engine": "npm:^22.2.0" nosleep.js: "npm:^0.12.0" - checksum: 10c0/8dbda1623aaca390e95be17795d7e1b1bf413c18aee7b3d987fa096b78d5800ff5e23543c74bea7e2fd215de79bbaad93edcdcb64dc8e8039eb7f12f43edd3d2 + checksum: 10c0/7b0d9bdad53a65d3c8cb77a44c1e1bd3b7c18ad243643798c53a2eb433b8d4c78a2f503bdab31f8d9c10d4ad0c8140668ccea3a6d5748b751b1286f822cf48c6 languageName: node linkType: hard @@ -5942,21 +6145,21 @@ __metadata: linkType: hard "@emnapi/core@npm:^1.1.0, @emnapi/core@npm:^1.4.3": - version: 1.7.1 - resolution: "@emnapi/core@npm:1.7.1" + version: 1.8.1 + resolution: "@emnapi/core@npm:1.8.1" dependencies: "@emnapi/wasi-threads": "npm:1.1.0" tslib: "npm:^2.4.0" - checksum: 10c0/f3740be23440b439333e3ae3832163f60c96c4e35337f3220ceba88f36ee89a57a871d27c94eb7a9ff98a09911ed9a2089e477ab549f4d30029f8b907f84a351 + checksum: 10c0/2c242f4b49779bac403e1cbcc98edacdb1c8ad36562408ba9a20663824669e930bc8493be46a2522d9dc946b8d96cd7073970bae914928c7671b5221c85b432e languageName: node linkType: hard "@emnapi/runtime@npm:^1.1.0, @emnapi/runtime@npm:^1.2.0, @emnapi/runtime@npm:^1.4.3": - version: 1.7.1 - resolution: "@emnapi/runtime@npm:1.7.1" + version: 1.8.1 + resolution: "@emnapi/runtime@npm:1.8.1" dependencies: tslib: "npm:^2.4.0" - checksum: 10c0/26b851cd3e93877d8732a985a2ebf5152325bbacc6204ef5336a47359dedcc23faeb08cdfcb8bb389b5401b3e894b882bc1a1e55b4b7c1ed1e67c991a760ddd5 + checksum: 10c0/f4929d75e37aafb24da77d2f58816761fe3f826aad2e37fa6d4421dac9060cbd5098eea1ac3c9ecc4526b89deb58153852fa432f87021dc57863f2ff726d713f languageName: node linkType: hard @@ -6122,9 +6325,9 @@ __metadata: languageName: node linkType: hard -"@esbuild/aix-ppc64@npm:0.25.12": - version: 0.25.12 - resolution: "@esbuild/aix-ppc64@npm:0.25.12" +"@esbuild/aix-ppc64@npm:0.27.2": + version: 0.27.2 + resolution: "@esbuild/aix-ppc64@npm:0.27.2" conditions: os=aix & cpu=ppc64 languageName: node linkType: hard @@ -6136,9 +6339,9 @@ __metadata: languageName: node linkType: hard -"@esbuild/android-arm64@npm:0.25.12": - version: 0.25.12 - resolution: "@esbuild/android-arm64@npm:0.25.12" +"@esbuild/android-arm64@npm:0.27.2": + version: 0.27.2 + resolution: "@esbuild/android-arm64@npm:0.27.2" conditions: os=android & cpu=arm64 languageName: node linkType: hard @@ -6150,9 +6353,9 @@ __metadata: languageName: node linkType: hard -"@esbuild/android-arm@npm:0.25.12": - version: 0.25.12 - resolution: "@esbuild/android-arm@npm:0.25.12" +"@esbuild/android-arm@npm:0.27.2": + version: 0.27.2 + resolution: "@esbuild/android-arm@npm:0.27.2" conditions: os=android & cpu=arm languageName: node linkType: hard @@ -6164,9 +6367,9 @@ __metadata: languageName: node linkType: hard -"@esbuild/android-x64@npm:0.25.12": - version: 0.25.12 - resolution: "@esbuild/android-x64@npm:0.25.12" +"@esbuild/android-x64@npm:0.27.2": + version: 0.27.2 + resolution: "@esbuild/android-x64@npm:0.27.2" conditions: os=android & cpu=x64 languageName: node linkType: hard @@ -6178,9 +6381,9 @@ __metadata: languageName: node linkType: hard -"@esbuild/darwin-arm64@npm:0.25.12": - version: 0.25.12 - resolution: "@esbuild/darwin-arm64@npm:0.25.12" +"@esbuild/darwin-arm64@npm:0.27.2": + version: 0.27.2 + resolution: "@esbuild/darwin-arm64@npm:0.27.2" conditions: os=darwin & cpu=arm64 languageName: node linkType: hard @@ -6192,9 +6395,9 @@ __metadata: languageName: node linkType: hard -"@esbuild/darwin-x64@npm:0.25.12": - version: 0.25.12 - resolution: "@esbuild/darwin-x64@npm:0.25.12" +"@esbuild/darwin-x64@npm:0.27.2": + version: 0.27.2 + resolution: "@esbuild/darwin-x64@npm:0.27.2" conditions: os=darwin & cpu=x64 languageName: node linkType: hard @@ -6206,9 +6409,9 @@ __metadata: languageName: node linkType: hard -"@esbuild/freebsd-arm64@npm:0.25.12": - version: 0.25.12 - resolution: "@esbuild/freebsd-arm64@npm:0.25.12" +"@esbuild/freebsd-arm64@npm:0.27.2": + version: 0.27.2 + resolution: "@esbuild/freebsd-arm64@npm:0.27.2" conditions: os=freebsd & cpu=arm64 languageName: node linkType: hard @@ -6220,9 +6423,9 @@ __metadata: languageName: node linkType: hard -"@esbuild/freebsd-x64@npm:0.25.12": - version: 0.25.12 - resolution: "@esbuild/freebsd-x64@npm:0.25.12" +"@esbuild/freebsd-x64@npm:0.27.2": + version: 0.27.2 + resolution: "@esbuild/freebsd-x64@npm:0.27.2" conditions: os=freebsd & cpu=x64 languageName: node linkType: hard @@ -6234,9 +6437,9 @@ __metadata: languageName: node linkType: hard -"@esbuild/linux-arm64@npm:0.25.12": - version: 0.25.12 - resolution: "@esbuild/linux-arm64@npm:0.25.12" +"@esbuild/linux-arm64@npm:0.27.2": + version: 0.27.2 + resolution: "@esbuild/linux-arm64@npm:0.27.2" conditions: os=linux & cpu=arm64 languageName: node linkType: hard @@ -6248,9 +6451,9 @@ __metadata: languageName: node linkType: hard -"@esbuild/linux-arm@npm:0.25.12": - version: 0.25.12 - resolution: "@esbuild/linux-arm@npm:0.25.12" +"@esbuild/linux-arm@npm:0.27.2": + version: 0.27.2 + resolution: "@esbuild/linux-arm@npm:0.27.2" conditions: os=linux & cpu=arm languageName: node linkType: hard @@ -6262,9 +6465,9 @@ __metadata: languageName: node linkType: hard -"@esbuild/linux-ia32@npm:0.25.12": - version: 0.25.12 - resolution: "@esbuild/linux-ia32@npm:0.25.12" +"@esbuild/linux-ia32@npm:0.27.2": + version: 0.27.2 + resolution: "@esbuild/linux-ia32@npm:0.27.2" conditions: os=linux & cpu=ia32 languageName: node linkType: hard @@ -6276,9 +6479,9 @@ __metadata: languageName: node linkType: hard -"@esbuild/linux-loong64@npm:0.25.12": - version: 0.25.12 - resolution: "@esbuild/linux-loong64@npm:0.25.12" +"@esbuild/linux-loong64@npm:0.27.2": + version: 0.27.2 + resolution: "@esbuild/linux-loong64@npm:0.27.2" conditions: os=linux & cpu=loong64 languageName: node linkType: hard @@ -6290,9 +6493,9 @@ __metadata: languageName: node linkType: hard -"@esbuild/linux-mips64el@npm:0.25.12": - version: 0.25.12 - resolution: "@esbuild/linux-mips64el@npm:0.25.12" +"@esbuild/linux-mips64el@npm:0.27.2": + version: 0.27.2 + resolution: "@esbuild/linux-mips64el@npm:0.27.2" conditions: os=linux & cpu=mips64el languageName: node linkType: hard @@ -6304,9 +6507,9 @@ __metadata: languageName: node linkType: hard -"@esbuild/linux-ppc64@npm:0.25.12": - version: 0.25.12 - resolution: "@esbuild/linux-ppc64@npm:0.25.12" +"@esbuild/linux-ppc64@npm:0.27.2": + version: 0.27.2 + resolution: "@esbuild/linux-ppc64@npm:0.27.2" conditions: os=linux & cpu=ppc64 languageName: node linkType: hard @@ -6318,9 +6521,9 @@ __metadata: languageName: node linkType: hard -"@esbuild/linux-riscv64@npm:0.25.12": - version: 0.25.12 - resolution: "@esbuild/linux-riscv64@npm:0.25.12" +"@esbuild/linux-riscv64@npm:0.27.2": + version: 0.27.2 + resolution: "@esbuild/linux-riscv64@npm:0.27.2" conditions: os=linux & cpu=riscv64 languageName: node linkType: hard @@ -6332,9 +6535,9 @@ __metadata: languageName: node linkType: hard -"@esbuild/linux-s390x@npm:0.25.12": - version: 0.25.12 - resolution: "@esbuild/linux-s390x@npm:0.25.12" +"@esbuild/linux-s390x@npm:0.27.2": + version: 0.27.2 + resolution: "@esbuild/linux-s390x@npm:0.27.2" conditions: os=linux & cpu=s390x languageName: node linkType: hard @@ -6346,16 +6549,16 @@ __metadata: languageName: node linkType: hard -"@esbuild/linux-x64@npm:0.25.12": - version: 0.25.12 - resolution: "@esbuild/linux-x64@npm:0.25.12" +"@esbuild/linux-x64@npm:0.27.2": + version: 0.27.2 + resolution: "@esbuild/linux-x64@npm:0.27.2" conditions: os=linux & cpu=x64 languageName: node linkType: hard -"@esbuild/netbsd-arm64@npm:0.25.12": - version: 0.25.12 - resolution: "@esbuild/netbsd-arm64@npm:0.25.12" +"@esbuild/netbsd-arm64@npm:0.27.2": + version: 0.27.2 + resolution: "@esbuild/netbsd-arm64@npm:0.27.2" conditions: os=netbsd & cpu=arm64 languageName: node linkType: hard @@ -6367,9 +6570,9 @@ __metadata: languageName: node linkType: hard -"@esbuild/netbsd-x64@npm:0.25.12": - version: 0.25.12 - resolution: "@esbuild/netbsd-x64@npm:0.25.12" +"@esbuild/netbsd-x64@npm:0.27.2": + version: 0.27.2 + resolution: "@esbuild/netbsd-x64@npm:0.27.2" conditions: os=netbsd & cpu=x64 languageName: node linkType: hard @@ -6381,9 +6584,9 @@ __metadata: languageName: node linkType: hard -"@esbuild/openbsd-arm64@npm:0.25.12": - version: 0.25.12 - resolution: "@esbuild/openbsd-arm64@npm:0.25.12" +"@esbuild/openbsd-arm64@npm:0.27.2": + version: 0.27.2 + resolution: "@esbuild/openbsd-arm64@npm:0.27.2" conditions: os=openbsd & cpu=arm64 languageName: node linkType: hard @@ -6395,16 +6598,16 @@ __metadata: languageName: node linkType: hard -"@esbuild/openbsd-x64@npm:0.25.12": - version: 0.25.12 - resolution: "@esbuild/openbsd-x64@npm:0.25.12" +"@esbuild/openbsd-x64@npm:0.27.2": + version: 0.27.2 + resolution: "@esbuild/openbsd-x64@npm:0.27.2" conditions: os=openbsd & cpu=x64 languageName: node linkType: hard -"@esbuild/openharmony-arm64@npm:0.25.12": - version: 0.25.12 - resolution: "@esbuild/openharmony-arm64@npm:0.25.12" +"@esbuild/openharmony-arm64@npm:0.27.2": + version: 0.27.2 + resolution: "@esbuild/openharmony-arm64@npm:0.27.2" conditions: os=openharmony & cpu=arm64 languageName: node linkType: hard @@ -6416,9 +6619,9 @@ __metadata: languageName: node linkType: hard -"@esbuild/sunos-x64@npm:0.25.12": - version: 0.25.12 - resolution: "@esbuild/sunos-x64@npm:0.25.12" +"@esbuild/sunos-x64@npm:0.27.2": + version: 0.27.2 + resolution: "@esbuild/sunos-x64@npm:0.27.2" conditions: os=sunos & cpu=x64 languageName: node linkType: hard @@ -6430,9 +6633,9 @@ __metadata: languageName: node linkType: hard -"@esbuild/win32-arm64@npm:0.25.12": - version: 0.25.12 - resolution: "@esbuild/win32-arm64@npm:0.25.12" +"@esbuild/win32-arm64@npm:0.27.2": + version: 0.27.2 + resolution: "@esbuild/win32-arm64@npm:0.27.2" conditions: os=win32 & cpu=arm64 languageName: node linkType: hard @@ -6444,9 +6647,9 @@ __metadata: languageName: node linkType: hard -"@esbuild/win32-ia32@npm:0.25.12": - version: 0.25.12 - resolution: "@esbuild/win32-ia32@npm:0.25.12" +"@esbuild/win32-ia32@npm:0.27.2": + version: 0.27.2 + resolution: "@esbuild/win32-ia32@npm:0.27.2" conditions: os=win32 & cpu=ia32 languageName: node linkType: hard @@ -6458,25 +6661,25 @@ __metadata: languageName: node linkType: hard -"@esbuild/win32-x64@npm:0.25.12": - version: 0.25.12 - resolution: "@esbuild/win32-x64@npm:0.25.12" +"@esbuild/win32-x64@npm:0.27.2": + version: 0.27.2 + resolution: "@esbuild/win32-x64@npm:0.27.2" conditions: os=win32 & cpu=x64 languageName: node linkType: hard -"@eslint-community/eslint-utils@npm:^4.2.0, @eslint-community/eslint-utils@npm:^4.4.0, @eslint-community/eslint-utils@npm:^4.7.0": - version: 4.9.0 - resolution: "@eslint-community/eslint-utils@npm:4.9.0" +"@eslint-community/eslint-utils@npm:^4.2.0, @eslint-community/eslint-utils@npm:^4.4.0, @eslint-community/eslint-utils@npm:^4.9.1": + version: 4.9.1 + resolution: "@eslint-community/eslint-utils@npm:4.9.1" dependencies: eslint-visitor-keys: "npm:^3.4.3" peerDependencies: eslint: ^6.0.0 || ^7.0.0 || >=8.0.0 - checksum: 10c0/8881e22d519326e7dba85ea915ac7a143367c805e6ba1374c987aa2fbdd09195cc51183d2da72c0e2ff388f84363e1b220fd0d19bef10c272c63455162176817 + checksum: 10c0/dc4ab5e3e364ef27e33666b11f4b86e1a6c1d7cbf16f0c6ff87b1619b3562335e9201a3d6ce806221887ff780ec9d828962a290bb910759fd40a674686503f02 languageName: node linkType: hard -"@eslint-community/regexpp@npm:^4.10.0, @eslint-community/regexpp@npm:^4.6.1": +"@eslint-community/regexpp@npm:^4.10.0, @eslint-community/regexpp@npm:^4.12.2, @eslint-community/regexpp@npm:^4.6.1": version: 4.12.2 resolution: "@eslint-community/regexpp@npm:4.12.2" checksum: 10c0/fddcbc66851b308478d04e302a4d771d6917a0b3740dc351513c0da9ca2eab8a1adf99f5e0aa7ab8b13fa0df005c81adeee7e63a92f3effd7d367a163b721c2d @@ -6521,34 +6724,34 @@ __metadata: languageName: node linkType: hard -"@floating-ui/core@npm:^1.7.3": - version: 1.7.3 - resolution: "@floating-ui/core@npm:1.7.3" +"@floating-ui/core@npm:^1.7.4": + version: 1.7.4 + resolution: "@floating-ui/core@npm:1.7.4" dependencies: "@floating-ui/utils": "npm:^0.2.10" - checksum: 10c0/edfc23800122d81df0df0fb780b7328ae6c5f00efbb55bd48ea340f4af8c5b3b121ceb4bb81220966ab0f87b443204d37105abdd93d94846468be3243984144c + checksum: 10c0/b1175d92c0edbd0053c4ba014ad1f798ccc107de87a43a099e97af6265610cc25ef600f2b15d3763d39a79f7d36db11fcb84d0c28027beb3317e13a7ba197516 languageName: node linkType: hard -"@floating-ui/dom@npm:^1.7.4": - version: 1.7.4 - resolution: "@floating-ui/dom@npm:1.7.4" +"@floating-ui/dom@npm:^1.7.5": + version: 1.7.5 + resolution: "@floating-ui/dom@npm:1.7.5" dependencies: - "@floating-ui/core": "npm:^1.7.3" + "@floating-ui/core": "npm:^1.7.4" "@floating-ui/utils": "npm:^0.2.10" - checksum: 10c0/da6166c25f9b0729caa9f498685a73a0e28251613b35d27db8de8014bc9d045158a23c092b405321a3d67c2064909b6e2a7e6c1c9cc0f62967dca5779f5aef30 + checksum: 10c0/94bd262127fbf1177e542f4908cb07c17392782b1ca0ab9f2dfd7e102cabcc77b4de807847304dcb4c864d4b48e8ba292b27cdcfaca3ad4e3525ab397b766a3a languageName: node linkType: hard "@floating-ui/react-dom@npm:^2.1.2": - version: 2.1.6 - resolution: "@floating-ui/react-dom@npm:2.1.6" + version: 2.1.7 + resolution: "@floating-ui/react-dom@npm:2.1.7" dependencies: - "@floating-ui/dom": "npm:^1.7.4" + "@floating-ui/dom": "npm:^1.7.5" peerDependencies: react: ">=16.8.0" react-dom: ">=16.8.0" - checksum: 10c0/6654834a8e73ecbdbc6cad2ad8f7abc698ac7c1800ded4d61113525c591c03d2e3b59d3cf9205859221465ea38c87af4f9e6e204703c5b7a7e85332d1eef2e18 + checksum: 10c0/3ef4a53ac93d2757e7995ce0313b3c14c5c5c66f2cb893256cc70c74713ff1c192f88a1bde02e2f50e951a7a3d8513b14611a4dbcc2d313def1f7003f7296dba languageName: node linkType: hard @@ -6744,16 +6947,16 @@ __metadata: linkType: hard "@graphql-tools/apollo-engine-loader@npm:^8.0.0": - version: 8.0.27 - resolution: "@graphql-tools/apollo-engine-loader@npm:8.0.27" + version: 8.0.28 + resolution: "@graphql-tools/apollo-engine-loader@npm:8.0.28" dependencies: - "@graphql-tools/utils": "npm:^10.11.0" + "@graphql-tools/utils": "npm:^11.0.0" "@whatwg-node/fetch": "npm:^0.10.13" - sync-fetch: "npm:0.6.0-2" + sync-fetch: "npm:0.6.0" tslib: "npm:^2.4.0" peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 - checksum: 10c0/692b7fd7d224078c1ecc089283cd03cd24acbe11a751da3672a8cc6a77ef86d22c73cd092c4c6199977cd716768129ae10a5bbd6bd9f13398736af0714cf9769 + checksum: 10c0/235cfaf9e8137dd4a55358547807259a5c80cf23d6ce013da5cc8367ad7ace554e73b189aa9435378a910d302b457d661cde53cabbda7e7e994fa5e9d663cad1 languageName: node linkType: hard @@ -6769,15 +6972,15 @@ __metadata: languageName: node linkType: hard -"@graphql-tools/merge@npm:^9.1.6": - version: 9.1.6 - resolution: "@graphql-tools/merge@npm:9.1.6" +"@graphql-tools/merge@npm:^9.1.7": + version: 9.1.7 + resolution: "@graphql-tools/merge@npm:9.1.7" dependencies: - "@graphql-tools/utils": "npm:^10.11.0" + "@graphql-tools/utils": "npm:^11.0.0" tslib: "npm:^2.4.0" peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 - checksum: 10c0/4e51bc41101fa70c72393075d0fb419fcc92b0ecdf93bb7a749787f7cd699291af86e75c29a6447bec138d28ea79d4fba6bb27e5182ff2d33861d2af6fc759ff + checksum: 10c0/b1dbebb12419e9d1d2f2ae6a92bbbe67dca4def052b6225259c3fee5d98a178668614f7faf68cfb2097e6598a7ef69309e1e9e93db6a5e219731b7613ab9805a languageName: node linkType: hard @@ -6806,15 +7009,15 @@ __metadata: linkType: hard "@graphql-tools/schema@npm:^10.0.0": - version: 10.0.30 - resolution: "@graphql-tools/schema@npm:10.0.30" + version: 10.0.31 + resolution: "@graphql-tools/schema@npm:10.0.31" dependencies: - "@graphql-tools/merge": "npm:^9.1.6" - "@graphql-tools/utils": "npm:^10.11.0" + "@graphql-tools/merge": "npm:^9.1.7" + "@graphql-tools/utils": "npm:^11.0.0" tslib: "npm:^2.4.0" peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 - checksum: 10c0/62252b535e5062e34a2fa39bbcc978396e0d514f5bd3d77cd072de2578fd2e1b43ca15952ead901cc96db31dce2d4d94fe5f51e59a60a57c3b5f84b2e2df3e26 + checksum: 10c0/d95b969d8f118e642a963b4a947314e475affba0acc0470132e52164d7fd483eccf13c8dbf70b33be535309af17b480fd7061c947ce6d76092d7d2a3527a499f languageName: node linkType: hard @@ -6832,7 +7035,7 @@ __metadata: languageName: node linkType: hard -"@graphql-tools/utils@npm:^10.0.0, @graphql-tools/utils@npm:^10.11.0": +"@graphql-tools/utils@npm:^10.0.0": version: 10.11.0 resolution: "@graphql-tools/utils@npm:10.11.0" dependencies: @@ -6846,6 +7049,20 @@ __metadata: languageName: node linkType: hard +"@graphql-tools/utils@npm:^11.0.0": + version: 11.0.0 + resolution: "@graphql-tools/utils@npm:11.0.0" + dependencies: + "@graphql-typed-document-node/core": "npm:^3.1.1" + "@whatwg-node/promise-helpers": "npm:^1.0.0" + cross-inspect: "npm:1.0.1" + tslib: "npm:^2.4.0" + peerDependencies: + graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 + checksum: 10c0/008f7d033b900bab7daf073c34d2b5502f52005a3dfa9761dfd550d64734c7cd47c2cc92f130f24c5911ceed91315494b54e6849ed345004e59e84377ab1f6c7 + languageName: node + linkType: hard + "@graphql-tools/utils@npm:^6.0.18": version: 6.2.4 resolution: "@graphql-tools/utils@npm:6.2.4" @@ -7485,17 +7702,17 @@ __metadata: linkType: hard "@mantine/dates@npm:^8.0.1": - version: 8.3.9 - resolution: "@mantine/dates@npm:8.3.9" + version: 8.3.13 + resolution: "@mantine/dates@npm:8.3.13" dependencies: clsx: "npm:^2.1.1" peerDependencies: - "@mantine/core": 8.3.9 - "@mantine/hooks": 8.3.9 + "@mantine/core": 8.3.13 + "@mantine/hooks": 8.3.13 dayjs: ">=1.0.0" react: ^18.x || ^19.x react-dom: ^18.x || ^19.x - checksum: 10c0/6ea59bac4de23566dedfa0a7508a89ab7340cb9c98a868967a0f9c2db1e20bd743b95f91d9b42563a9cbc490e3abfee62f5c5beca72d1bb554852729932e84a0 + checksum: 10c0/c20f7ce33ff701c845851cb5870889e544efb6c3f7eed5ce33279986414055932dbdef289afadfb20cfb6e41e612d9c0a07a3cd4699e625c2ee22b7bc740403c languageName: node linkType: hard @@ -8131,8 +8348,8 @@ __metadata: linkType: hard "@nx/devkit@npm:>=17.1.2 < 21": - version: 20.8.3 - resolution: "@nx/devkit@npm:20.8.3" + version: 20.8.4 + resolution: "@nx/devkit@npm:20.8.4" dependencies: ejs: "npm:^3.1.7" enquirer: "npm:~2.3.6" @@ -8144,7 +8361,7 @@ __metadata: yargs-parser: "npm:21.1.1" peerDependencies: nx: ">= 19 <= 21" - checksum: 10c0/5721bbb6eee71958353f2c260253ef359b67629e90adc635eb9d0a20ec2b690f0e46a750f4540c385895bd231c5781a6eddaa6d028244b35190e80c9584502ab + checksum: 10c0/25a72c5dec472e2c4b5738c8c72f508ae2b335c2c2ce6395c46c3e75eb7eb33be6154f34c515b5d02e28a9406d63b00081291633efdf0b1e81d7991e4a30b722 languageName: node linkType: hard @@ -8357,162 +8574,162 @@ __metadata: languageName: node linkType: hard -"@opentelemetry/core@npm:2.2.0, @opentelemetry/core@npm:^2.0.0": - version: 2.2.0 - resolution: "@opentelemetry/core@npm:2.2.0" +"@opentelemetry/core@npm:2.5.0, @opentelemetry/core@npm:^2.0.0": + version: 2.5.0 + resolution: "@opentelemetry/core@npm:2.5.0" dependencies: "@opentelemetry/semantic-conventions": "npm:^1.29.0" peerDependencies: "@opentelemetry/api": ">=1.0.0 <1.10.0" - checksum: 10c0/f618b63f2f560d052791d2406b1411722aa4b0585031242e6906f869f0a707ffe725c4b29bf18aed1f202e1ab5dfc3a9f769c517ac8521338b33ac8c4265fba9 + checksum: 10c0/5bc67c74513036bb5a22955027382f24cff405601837546e66588ef9c87c161b7e872ed1ac63d910f88288ec1c0f00fc5ea5e750c9d63b2dabd3ab4a30fcf7b8 languageName: node linkType: hard -"@opentelemetry/resources@npm:2.2.0": - version: 2.2.0 - resolution: "@opentelemetry/resources@npm:2.2.0" +"@opentelemetry/resources@npm:2.5.0": + version: 2.5.0 + resolution: "@opentelemetry/resources@npm:2.5.0" dependencies: - "@opentelemetry/core": "npm:2.2.0" + "@opentelemetry/core": "npm:2.5.0" "@opentelemetry/semantic-conventions": "npm:^1.29.0" peerDependencies: "@opentelemetry/api": ">=1.3.0 <1.10.0" - checksum: 10c0/f08fa69ccccb6d14b6932fabe6f8e097c0dfc41ae8f4c0f6c54fb04bc3d9c04e742da3e22d7240d74b585287101126d97a0da192b493a9724dc07a56ca1b77e0 + checksum: 10c0/30073a5db368e5ed8c44ac87e6ebd4da53b5050e14e367610fa79a049eee3e5e5a82c4fbc1a9cc539d845b68983b74643c094e111baf114159e75ded1d67db08 languageName: node linkType: hard "@opentelemetry/sdk-trace-base@npm:^2.0.0": - version: 2.2.0 - resolution: "@opentelemetry/sdk-trace-base@npm:2.2.0" + version: 2.5.0 + resolution: "@opentelemetry/sdk-trace-base@npm:2.5.0" dependencies: - "@opentelemetry/core": "npm:2.2.0" - "@opentelemetry/resources": "npm:2.2.0" + "@opentelemetry/core": "npm:2.5.0" + "@opentelemetry/resources": "npm:2.5.0" "@opentelemetry/semantic-conventions": "npm:^1.29.0" peerDependencies: "@opentelemetry/api": ">=1.3.0 <1.10.0" - checksum: 10c0/a67715b71d7253cd61ea79954f56491796ac7a660d03d5381fd81defd4546042bb465b27e1b6eee4b1ed32c00305a5349a16d04fd44314c9a1d371a0a638107a + checksum: 10c0/5b9f90f128dbdfdda4ccd17a3fa7580cf8389d30c0b5be34d810d5cf2873954c6c662241d0a88caa217e691720c40daebb189e1baf4ba93620c153ae9ee4672a languageName: node linkType: hard "@opentelemetry/semantic-conventions@npm:^1.29.0": - version: 1.38.0 - resolution: "@opentelemetry/semantic-conventions@npm:1.38.0" - checksum: 10c0/ae93e39ac18bf47df2b11d43e9a0dc1673b9d33e5f1e7f357c92968e6329fb9a67cf8a447e9a7150948ee3f8178b38274db365b8fa775a8c54802e0c6ccdd2ca + version: 1.39.0 + resolution: "@opentelemetry/semantic-conventions@npm:1.39.0" + checksum: 10c0/1a8cc16e83ccd80aeb910e78146e8cde8482ac45feb3693348eec5983d8ad254f977f2b61db76f043ab0fa6009a27df610a9cff286a217d6cd4c114216861d0f languageName: node linkType: hard -"@parcel/watcher-android-arm64@npm:2.5.1": - version: 2.5.1 - resolution: "@parcel/watcher-android-arm64@npm:2.5.1" +"@parcel/watcher-android-arm64@npm:2.5.6": + version: 2.5.6 + resolution: "@parcel/watcher-android-arm64@npm:2.5.6" conditions: os=android & cpu=arm64 languageName: node linkType: hard -"@parcel/watcher-darwin-arm64@npm:2.5.1": - version: 2.5.1 - resolution: "@parcel/watcher-darwin-arm64@npm:2.5.1" +"@parcel/watcher-darwin-arm64@npm:2.5.6": + version: 2.5.6 + resolution: "@parcel/watcher-darwin-arm64@npm:2.5.6" conditions: os=darwin & cpu=arm64 languageName: node linkType: hard -"@parcel/watcher-darwin-x64@npm:2.5.1": - version: 2.5.1 - resolution: "@parcel/watcher-darwin-x64@npm:2.5.1" +"@parcel/watcher-darwin-x64@npm:2.5.6": + version: 2.5.6 + resolution: "@parcel/watcher-darwin-x64@npm:2.5.6" conditions: os=darwin & cpu=x64 languageName: node linkType: hard -"@parcel/watcher-freebsd-x64@npm:2.5.1": - version: 2.5.1 - resolution: "@parcel/watcher-freebsd-x64@npm:2.5.1" +"@parcel/watcher-freebsd-x64@npm:2.5.6": + version: 2.5.6 + resolution: "@parcel/watcher-freebsd-x64@npm:2.5.6" conditions: os=freebsd & cpu=x64 languageName: node linkType: hard -"@parcel/watcher-linux-arm-glibc@npm:2.5.1": - version: 2.5.1 - resolution: "@parcel/watcher-linux-arm-glibc@npm:2.5.1" +"@parcel/watcher-linux-arm-glibc@npm:2.5.6": + version: 2.5.6 + resolution: "@parcel/watcher-linux-arm-glibc@npm:2.5.6" conditions: os=linux & cpu=arm & libc=glibc languageName: node linkType: hard -"@parcel/watcher-linux-arm-musl@npm:2.5.1": - version: 2.5.1 - resolution: "@parcel/watcher-linux-arm-musl@npm:2.5.1" +"@parcel/watcher-linux-arm-musl@npm:2.5.6": + version: 2.5.6 + resolution: "@parcel/watcher-linux-arm-musl@npm:2.5.6" conditions: os=linux & cpu=arm & libc=musl languageName: node linkType: hard -"@parcel/watcher-linux-arm64-glibc@npm:2.5.1": - version: 2.5.1 - resolution: "@parcel/watcher-linux-arm64-glibc@npm:2.5.1" +"@parcel/watcher-linux-arm64-glibc@npm:2.5.6": + version: 2.5.6 + resolution: "@parcel/watcher-linux-arm64-glibc@npm:2.5.6" conditions: os=linux & cpu=arm64 & libc=glibc languageName: node linkType: hard -"@parcel/watcher-linux-arm64-musl@npm:2.5.1": - version: 2.5.1 - resolution: "@parcel/watcher-linux-arm64-musl@npm:2.5.1" +"@parcel/watcher-linux-arm64-musl@npm:2.5.6": + version: 2.5.6 + resolution: "@parcel/watcher-linux-arm64-musl@npm:2.5.6" conditions: os=linux & cpu=arm64 & libc=musl languageName: node linkType: hard -"@parcel/watcher-linux-x64-glibc@npm:2.5.1": - version: 2.5.1 - resolution: "@parcel/watcher-linux-x64-glibc@npm:2.5.1" +"@parcel/watcher-linux-x64-glibc@npm:2.5.6": + version: 2.5.6 + resolution: "@parcel/watcher-linux-x64-glibc@npm:2.5.6" conditions: os=linux & cpu=x64 & libc=glibc languageName: node linkType: hard -"@parcel/watcher-linux-x64-musl@npm:2.5.1": - version: 2.5.1 - resolution: "@parcel/watcher-linux-x64-musl@npm:2.5.1" +"@parcel/watcher-linux-x64-musl@npm:2.5.6": + version: 2.5.6 + resolution: "@parcel/watcher-linux-x64-musl@npm:2.5.6" conditions: os=linux & cpu=x64 & libc=musl languageName: node linkType: hard -"@parcel/watcher-win32-arm64@npm:2.5.1": - version: 2.5.1 - resolution: "@parcel/watcher-win32-arm64@npm:2.5.1" +"@parcel/watcher-win32-arm64@npm:2.5.6": + version: 2.5.6 + resolution: "@parcel/watcher-win32-arm64@npm:2.5.6" conditions: os=win32 & cpu=arm64 languageName: node linkType: hard -"@parcel/watcher-win32-ia32@npm:2.5.1": - version: 2.5.1 - resolution: "@parcel/watcher-win32-ia32@npm:2.5.1" +"@parcel/watcher-win32-ia32@npm:2.5.6": + version: 2.5.6 + resolution: "@parcel/watcher-win32-ia32@npm:2.5.6" conditions: os=win32 & cpu=ia32 languageName: node linkType: hard -"@parcel/watcher-win32-x64@npm:2.5.1": - version: 2.5.1 - resolution: "@parcel/watcher-win32-x64@npm:2.5.1" +"@parcel/watcher-win32-x64@npm:2.5.6": + version: 2.5.6 + resolution: "@parcel/watcher-win32-x64@npm:2.5.6" conditions: os=win32 & cpu=x64 languageName: node linkType: hard "@parcel/watcher@npm:^2.4.1": - version: 2.5.1 - resolution: "@parcel/watcher@npm:2.5.1" - dependencies: - "@parcel/watcher-android-arm64": "npm:2.5.1" - "@parcel/watcher-darwin-arm64": "npm:2.5.1" - "@parcel/watcher-darwin-x64": "npm:2.5.1" - "@parcel/watcher-freebsd-x64": "npm:2.5.1" - "@parcel/watcher-linux-arm-glibc": "npm:2.5.1" - "@parcel/watcher-linux-arm-musl": "npm:2.5.1" - "@parcel/watcher-linux-arm64-glibc": "npm:2.5.1" - "@parcel/watcher-linux-arm64-musl": "npm:2.5.1" - "@parcel/watcher-linux-x64-glibc": "npm:2.5.1" - "@parcel/watcher-linux-x64-musl": "npm:2.5.1" - "@parcel/watcher-win32-arm64": "npm:2.5.1" - "@parcel/watcher-win32-ia32": "npm:2.5.1" - "@parcel/watcher-win32-x64": "npm:2.5.1" - detect-libc: "npm:^1.0.3" + version: 2.5.6 + resolution: "@parcel/watcher@npm:2.5.6" + dependencies: + "@parcel/watcher-android-arm64": "npm:2.5.6" + "@parcel/watcher-darwin-arm64": "npm:2.5.6" + "@parcel/watcher-darwin-x64": "npm:2.5.6" + "@parcel/watcher-freebsd-x64": "npm:2.5.6" + "@parcel/watcher-linux-arm-glibc": "npm:2.5.6" + "@parcel/watcher-linux-arm-musl": "npm:2.5.6" + "@parcel/watcher-linux-arm64-glibc": "npm:2.5.6" + "@parcel/watcher-linux-arm64-musl": "npm:2.5.6" + "@parcel/watcher-linux-x64-glibc": "npm:2.5.6" + "@parcel/watcher-linux-x64-musl": "npm:2.5.6" + "@parcel/watcher-win32-arm64": "npm:2.5.6" + "@parcel/watcher-win32-ia32": "npm:2.5.6" + "@parcel/watcher-win32-x64": "npm:2.5.6" + detect-libc: "npm:^2.0.3" is-glob: "npm:^4.0.3" - micromatch: "npm:^4.0.5" node-addon-api: "npm:^7.0.0" node-gyp: "npm:latest" + picomatch: "npm:^4.0.3" dependenciesMeta: "@parcel/watcher-android-arm64": optional: true @@ -8540,7 +8757,7 @@ __metadata: optional: true "@parcel/watcher-win32-x64": optional: true - checksum: 10c0/8f35073d0c0b34a63d4c8d2213482f0ebc6a25de7b2cdd415d19cb929964a793cb285b68d1d50bfb732b070b3c82a2fdb4eb9c250eab709a1cd9d63345455a82 + checksum: 10c0/1e1d91f92e94e4640089a7cead243b2b81ca9aa8e1c862a97a25f589e84fbf1ad93abeb503f325c43a8c0e024ae0e74b48ec42c1cd84e8e423a3a87d25ded4f2 languageName: node linkType: hard @@ -8671,8 +8888,8 @@ __metadata: linkType: hard "@peculiar/x509@npm:^1.11.0": - version: 1.14.2 - resolution: "@peculiar/x509@npm:1.14.2" + version: 1.14.3 + resolution: "@peculiar/x509@npm:1.14.3" dependencies: "@peculiar/asn1-cms": "npm:^2.6.0" "@peculiar/asn1-csr": "npm:^2.6.0" @@ -8685,7 +8902,7 @@ __metadata: reflect-metadata: "npm:^0.2.2" tslib: "npm:^2.8.1" tsyringe: "npm:^4.10.0" - checksum: 10c0/b62ecca8d7a3364f3541f8db811198877001480deca25fd90df77409e7c0bcaa08c7f12ce4401835b70e03014e8410fcc17a4fc49a09546dea5e55d7d1c61187 + checksum: 10c0/949231ca9daf84534bfe255f28a856df497302fed294d227c6a28e50f5cfb67ed1d91afe6db787b88294ce042295243dbcb44455fe2efa5ed07428a74392eec9 languageName: node linkType: hard @@ -9070,13 +9287,13 @@ __metadata: languageName: node linkType: hard -"@smithy/abort-controller@npm:^4.2.5": - version: 4.2.5 - resolution: "@smithy/abort-controller@npm:4.2.5" +"@smithy/abort-controller@npm:^4.2.8": + version: 4.2.8 + resolution: "@smithy/abort-controller@npm:4.2.8" dependencies: - "@smithy/types": "npm:^4.9.0" + "@smithy/types": "npm:^4.12.0" tslib: "npm:^2.6.2" - checksum: 10c0/aaca4d8a87100f4b8805bb034cae9315b9bf813a029576d3417a1a1ecd5c1d9e92907349ffaf9d6606c4fc20483ac28864565c1e6dec6f2a7d8709522c8b5290 + checksum: 10c0/2c2094ebd0b842a478746da74a74feaf579ca5fe03d7a1a7868ba7d048d88e2479edad8d2791d22d7bb9e5e774c1df4201a3ffa360c3aefaf158f692c45594f8 languageName: node linkType: hard @@ -9125,21 +9342,21 @@ __metadata: languageName: node linkType: hard -"@smithy/config-resolver@npm:^4, @smithy/config-resolver@npm:^4.4.3": - version: 4.4.3 - resolution: "@smithy/config-resolver@npm:4.4.3" +"@smithy/config-resolver@npm:^4, @smithy/config-resolver@npm:^4.0.0, @smithy/config-resolver@npm:^4.4.6": + version: 4.4.6 + resolution: "@smithy/config-resolver@npm:4.4.6" dependencies: - "@smithy/node-config-provider": "npm:^4.3.5" - "@smithy/types": "npm:^4.9.0" + "@smithy/node-config-provider": "npm:^4.3.8" + "@smithy/types": "npm:^4.12.0" "@smithy/util-config-provider": "npm:^4.2.0" - "@smithy/util-endpoints": "npm:^3.2.5" - "@smithy/util-middleware": "npm:^4.2.5" + "@smithy/util-endpoints": "npm:^3.2.8" + "@smithy/util-middleware": "npm:^4.2.8" tslib: "npm:^2.6.2" - checksum: 10c0/e28844ea32776b2d2790e134bdfcb700f5a8f4bcd7aeac9869ddac635012eb2911d5abbddf36ae63703dff3af435015095b381b17a3cb4d2b1ba1c02cdc9f314 + checksum: 10c0/ab3de62329d53ca886d0efb2e10e904c3d3a7e564cda6b4d710d8512d2f4b9980e5346614da511d978c6a9a6c3c71f968e7c752dac36dfd61219d2e6fd0695cc languageName: node linkType: hard -"@smithy/core@npm:^2.3.1, @smithy/core@npm:^2.3.2, @smithy/core@npm:^2.4.0, @smithy/core@npm:^2.5.7": +"@smithy/core@npm:^2.3.2, @smithy/core@npm:^2.4.0, @smithy/core@npm:^2.5.7": version: 2.5.7 resolution: "@smithy/core@npm:2.5.7" dependencies: @@ -9155,21 +9372,21 @@ __metadata: languageName: node linkType: hard -"@smithy/core@npm:^3.18.5": - version: 3.18.5 - resolution: "@smithy/core@npm:3.18.5" +"@smithy/core@npm:^3.0.0, @smithy/core@npm:^3.22.0": + version: 3.22.0 + resolution: "@smithy/core@npm:3.22.0" dependencies: - "@smithy/middleware-serde": "npm:^4.2.6" - "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/types": "npm:^4.9.0" + "@smithy/middleware-serde": "npm:^4.2.9" + "@smithy/protocol-http": "npm:^5.3.8" + "@smithy/types": "npm:^4.12.0" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" - "@smithy/util-middleware": "npm:^4.2.5" - "@smithy/util-stream": "npm:^4.5.6" + "@smithy/util-middleware": "npm:^4.2.8" + "@smithy/util-stream": "npm:^4.5.10" "@smithy/util-utf8": "npm:^4.2.0" "@smithy/uuid": "npm:^1.1.0" tslib: "npm:^2.6.2" - checksum: 10c0/c6ccaf4a0639524e0141905224cbbd0142a98ee4917bc0e3e914bcc887be5f7740f1baa2717dab131f5e185fa69002d3cb5cb1a40e5a1a31c5c2c30bd946060d + checksum: 10c0/5f5ec90fe0d0e63a5e3d0086c70c206f278bb0032c6f22f7224844be16e923cbbe373b95ce37059362445978d571610db23fce5f9798c0405e879d0824bf9a7f languageName: node linkType: hard @@ -9199,16 +9416,16 @@ __metadata: languageName: node linkType: hard -"@smithy/credential-provider-imds@npm:^4.2.5": - version: 4.2.5 - resolution: "@smithy/credential-provider-imds@npm:4.2.5" +"@smithy/credential-provider-imds@npm:^4.0.0, @smithy/credential-provider-imds@npm:^4.2.8": + version: 4.2.8 + resolution: "@smithy/credential-provider-imds@npm:4.2.8" dependencies: - "@smithy/node-config-provider": "npm:^4.3.5" - "@smithy/property-provider": "npm:^4.2.5" - "@smithy/types": "npm:^4.9.0" - "@smithy/url-parser": "npm:^4.2.5" + "@smithy/node-config-provider": "npm:^4.3.8" + "@smithy/property-provider": "npm:^4.2.8" + "@smithy/types": "npm:^4.12.0" + "@smithy/url-parser": "npm:^4.2.8" tslib: "npm:^2.6.2" - checksum: 10c0/98efbb03e75d71392baac12755c677b72bbb239b84ff3e776aabc0d192f4501d35da8b81956b48e266501eeff37d3bde56ab188fefb5422bf107a0f20bfd7674 + checksum: 10c0/e53cec39703aa197df6bf38985403ad69ecd45e17ee5caadb53945d0a36b22332ff04e4d2d6a8d7c8e4bea9e6edabf6abf7cc6dafbc6cfbf7c20a88223e6fc55 languageName: node linkType: hard @@ -9224,15 +9441,15 @@ __metadata: languageName: node linkType: hard -"@smithy/eventstream-codec@npm:^4.2.5": - version: 4.2.5 - resolution: "@smithy/eventstream-codec@npm:4.2.5" +"@smithy/eventstream-codec@npm:^4.2.8": + version: 4.2.8 + resolution: "@smithy/eventstream-codec@npm:4.2.8" dependencies: "@aws-crypto/crc32": "npm:5.2.0" - "@smithy/types": "npm:^4.9.0" + "@smithy/types": "npm:^4.12.0" "@smithy/util-hex-encoding": "npm:^4.2.0" tslib: "npm:^2.6.2" - checksum: 10c0/4fbfe558291502af7afb86af3217d283d9a149f63a4b9871e54cfd9a295ec8e276df7e6c924728e023ac897c3f124f5ff3954037b6e9344b9f43f681f2ffa4b7 + checksum: 10c0/ec468850dabce86d88075765b3a5f95e865850a6d98f6f395ead49af3d20316f50cce755b31f0e0b9ab027676f688814f76f68acc7c642483a6e196b25643e78 languageName: node linkType: hard @@ -9247,14 +9464,14 @@ __metadata: languageName: node linkType: hard -"@smithy/eventstream-serde-browser@npm:^4.2.5": - version: 4.2.5 - resolution: "@smithy/eventstream-serde-browser@npm:4.2.5" +"@smithy/eventstream-serde-browser@npm:^4.0.0, @smithy/eventstream-serde-browser@npm:^4.2.8": + version: 4.2.8 + resolution: "@smithy/eventstream-serde-browser@npm:4.2.8" dependencies: - "@smithy/eventstream-serde-universal": "npm:^4.2.5" - "@smithy/types": "npm:^4.9.0" + "@smithy/eventstream-serde-universal": "npm:^4.2.8" + "@smithy/types": "npm:^4.12.0" tslib: "npm:^2.6.2" - checksum: 10c0/ea7d26520aa51ddb4eec0c30d4a1a2a016c3ca111f112fb6ff578c8c64027f9982b63368fd185fda7d19ddbdbd0c73a4314c08b151e19bf6d32690fa0794aa32 + checksum: 10c0/9f5abf3073ac58dcd88db3cf28f1edaa73c2b5c4b3249b0b6bfdb4cd51b328f64f66ac5918145aa20842a3277b38339d88ae414c86610b9ee6ef099b2f8310a0 languageName: node linkType: hard @@ -9268,13 +9485,13 @@ __metadata: languageName: node linkType: hard -"@smithy/eventstream-serde-config-resolver@npm:^4.3.5": - version: 4.3.5 - resolution: "@smithy/eventstream-serde-config-resolver@npm:4.3.5" +"@smithy/eventstream-serde-config-resolver@npm:^4.0.0, @smithy/eventstream-serde-config-resolver@npm:^4.3.8": + version: 4.3.8 + resolution: "@smithy/eventstream-serde-config-resolver@npm:4.3.8" dependencies: - "@smithy/types": "npm:^4.9.0" + "@smithy/types": "npm:^4.12.0" tslib: "npm:^2.6.2" - checksum: 10c0/122336be4a488cb6cd3ce2c99c8bfdab0055a2cc26edf1b18ed133cdae37ad1619229440d7a14e555b10236051af74749e12a92b1cc6e8563311ee4de1525749 + checksum: 10c0/10f80501ab34918e26caed612d7bd8c4cfb0771994c108212be27dd0a05cec4175141b24edfc455255af3677513cf75154946fc4c2e3ae5093ee1065e06801f2 languageName: node linkType: hard @@ -9289,14 +9506,14 @@ __metadata: languageName: node linkType: hard -"@smithy/eventstream-serde-node@npm:^4.2.5": - version: 4.2.5 - resolution: "@smithy/eventstream-serde-node@npm:4.2.5" +"@smithy/eventstream-serde-node@npm:^4.0.0, @smithy/eventstream-serde-node@npm:^4.2.8": + version: 4.2.8 + resolution: "@smithy/eventstream-serde-node@npm:4.2.8" dependencies: - "@smithy/eventstream-serde-universal": "npm:^4.2.5" - "@smithy/types": "npm:^4.9.0" + "@smithy/eventstream-serde-universal": "npm:^4.2.8" + "@smithy/types": "npm:^4.12.0" tslib: "npm:^2.6.2" - checksum: 10c0/1b06fe0c4d70f1e07c27c5c17eb75cd2947a05533f2741c5256a96ce2dd65f34098d99512c60a0d3a0748dd88d7b00976d67231d3d0a9e93099eba9322e69ab8 + checksum: 10c0/9b0c37ffd3f0d08a9c4170742fbc8fb14e38e34ee164642d102477a9e339fa8f12920b2ff9017903954e036a7219bbc9008a6942d3e68fefbfd1285a5fd9168b languageName: node linkType: hard @@ -9311,14 +9528,14 @@ __metadata: languageName: node linkType: hard -"@smithy/eventstream-serde-universal@npm:^4.2.5": - version: 4.2.5 - resolution: "@smithy/eventstream-serde-universal@npm:4.2.5" +"@smithy/eventstream-serde-universal@npm:^4.2.8": + version: 4.2.8 + resolution: "@smithy/eventstream-serde-universal@npm:4.2.8" dependencies: - "@smithy/eventstream-codec": "npm:^4.2.5" - "@smithy/types": "npm:^4.9.0" + "@smithy/eventstream-codec": "npm:^4.2.8" + "@smithy/types": "npm:^4.12.0" tslib: "npm:^2.6.2" - checksum: 10c0/eff3c79b57dfbdbc44d12f50a801ec725063ed2f8f311b149a4846db0a48ee6fb3c540f085bf58dc93e1dee329d4d8ae076cb38f22cd14d9acd3f20db6e23119 + checksum: 10c0/06a3388efbc10bebb97b78800c72dea0baf5552b33e51d64cada6fa5eea891389c81a8e214d1eb0b5d72a8135c121b610b7dcecaef2a160e017d59d99110e956 languageName: node linkType: hard @@ -9361,28 +9578,28 @@ __metadata: languageName: node linkType: hard -"@smithy/fetch-http-handler@npm:^5.3.6": - version: 5.3.6 - resolution: "@smithy/fetch-http-handler@npm:5.3.6" +"@smithy/fetch-http-handler@npm:^5.0.0, @smithy/fetch-http-handler@npm:^5.3.9": + version: 5.3.9 + resolution: "@smithy/fetch-http-handler@npm:5.3.9" dependencies: - "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/querystring-builder": "npm:^4.2.5" - "@smithy/types": "npm:^4.9.0" + "@smithy/protocol-http": "npm:^5.3.8" + "@smithy/querystring-builder": "npm:^4.2.8" + "@smithy/types": "npm:^4.12.0" "@smithy/util-base64": "npm:^4.3.0" tslib: "npm:^2.6.2" - checksum: 10c0/8ae0401c69cf941bc2716d0372fad715f7d80e23c5aba5e30ac3abc632a02de5895a417419064324c6853857c7bcffab45fc39393cc0b46d07a11b591015a68a + checksum: 10c0/43b341d1594da4a076a48896f552b96d5e817054e9a354d10001ad51f05cb0f976c8d12529bd462a88cff23c8ab3ca475705db0855751616c08505fc6d083db2 languageName: node linkType: hard -"@smithy/hash-blob-browser@npm:^4.2.6": - version: 4.2.6 - resolution: "@smithy/hash-blob-browser@npm:4.2.6" +"@smithy/hash-blob-browser@npm:^4.2.9": + version: 4.2.9 + resolution: "@smithy/hash-blob-browser@npm:4.2.9" dependencies: "@smithy/chunked-blob-reader": "npm:^5.2.0" "@smithy/chunked-blob-reader-native": "npm:^4.2.1" - "@smithy/types": "npm:^4.9.0" + "@smithy/types": "npm:^4.12.0" tslib: "npm:^2.6.2" - checksum: 10c0/53f125cb48acc55fb5093d4c88cb7122ff140e357bf85588fc5ce82c849a74401be9921739d5bc1a16431ffdc8bf8a54e412d5f4f7f703998f15c912e4e706e4 + checksum: 10c0/19a55c5ebd62ea489e6a7c4e47267739ee83c00cc73430c4584b1685db7f1444d33814e78489f8346bcf20689d719e554010ec9cd4d2758acf9c724fa3590692 languageName: node linkType: hard @@ -9410,26 +9627,26 @@ __metadata: languageName: node linkType: hard -"@smithy/hash-node@npm:^4.2.5": - version: 4.2.5 - resolution: "@smithy/hash-node@npm:4.2.5" +"@smithy/hash-node@npm:^4.0.0, @smithy/hash-node@npm:^4.2.8": + version: 4.2.8 + resolution: "@smithy/hash-node@npm:4.2.8" dependencies: - "@smithy/types": "npm:^4.9.0" + "@smithy/types": "npm:^4.12.0" "@smithy/util-buffer-from": "npm:^4.2.0" "@smithy/util-utf8": "npm:^4.2.0" tslib: "npm:^2.6.2" - checksum: 10c0/e0c24b8b93be02a491303a014ba57e2bb746f3f8905df330d8a480c94480803e0f93d76cdbc3d8229b7673a22e68b23ee6f5ce4d6db1ac2c427cc36e804fedcf + checksum: 10c0/541de03fce0623ea72c0e44cb15d16001d3c4ff7f0ac8b03a53b59c3c526d9d0196297f0f2bc9b08f9e108c4920983a54df0281ba36941b30c7940195c618222 languageName: node linkType: hard -"@smithy/hash-stream-node@npm:^4.2.5": - version: 4.2.5 - resolution: "@smithy/hash-stream-node@npm:4.2.5" +"@smithy/hash-stream-node@npm:^4.2.8": + version: 4.2.8 + resolution: "@smithy/hash-stream-node@npm:4.2.8" dependencies: - "@smithy/types": "npm:^4.9.0" + "@smithy/types": "npm:^4.12.0" "@smithy/util-utf8": "npm:^4.2.0" tslib: "npm:^2.6.2" - checksum: 10c0/11a8731ad277e9ecdaa53637eaed4a81cc23d1d47289460fb4ec50d593bd09ef91dba02375d6c422ae837f5dc45ebd99209b5794facf938b899268bc76ad009b + checksum: 10c0/fc9639d55e4131fe40a299abb0a83b22a43ea88138c0a5074768b5b1ce2e7c9980b34298983739d01507b2408d5fd9fe4f234f581ad4656fb7198605c5dc3d35 languageName: node linkType: hard @@ -9453,13 +9670,13 @@ __metadata: languageName: node linkType: hard -"@smithy/invalid-dependency@npm:^4.2.5": - version: 4.2.5 - resolution: "@smithy/invalid-dependency@npm:4.2.5" +"@smithy/invalid-dependency@npm:^4.0.0, @smithy/invalid-dependency@npm:^4.2.8": + version: 4.2.8 + resolution: "@smithy/invalid-dependency@npm:4.2.8" dependencies: - "@smithy/types": "npm:^4.9.0" + "@smithy/types": "npm:^4.12.0" tslib: "npm:^2.6.2" - checksum: 10c0/0b3e7608d3c145ad557c04eb5b0f7f10dd93f5eaf1d36b724b0e4ff3c3f500893e19b8ecf02ede4822bc36c049a4e03b69890a37e776a4ac6cfcc8e2f6fa843e + checksum: 10c0/b224c6692ec745c30c022114c53328a69caf00e6848f3920fe180e5836440a9dfebf67bf4d6cc8f1fabe4d88be2f60f5428c93cbe80de3baefb0710b7a4b0e7c languageName: node linkType: hard @@ -9501,14 +9718,14 @@ __metadata: languageName: node linkType: hard -"@smithy/md5-js@npm:^4.2.5": - version: 4.2.5 - resolution: "@smithy/md5-js@npm:4.2.5" +"@smithy/md5-js@npm:^4.2.8": + version: 4.2.8 + resolution: "@smithy/md5-js@npm:4.2.8" dependencies: - "@smithy/types": "npm:^4.9.0" + "@smithy/types": "npm:^4.12.0" "@smithy/util-utf8": "npm:^4.2.0" tslib: "npm:^2.6.2" - checksum: 10c0/0a7c4c8b330482181beb14ef618d3fb77c6282c2f6880df24db04e1149dfeff66455001a3320805a8761e34b1dc3b520f3110c5ef3126bf54d42ca15b160860b + checksum: 10c0/cbc2ad4862214437ca04c0e946d21df9c2553006725a13f97c3dc3b5bc9fd9b95ccbb1005c0763e75b29f88ebcbbd7b217f19c8f4c88ab36be1ab60ded030859 languageName: node linkType: hard @@ -9534,14 +9751,14 @@ __metadata: languageName: node linkType: hard -"@smithy/middleware-content-length@npm:^4.2.5": - version: 4.2.5 - resolution: "@smithy/middleware-content-length@npm:4.2.5" +"@smithy/middleware-content-length@npm:^4.0.0, @smithy/middleware-content-length@npm:^4.2.8": + version: 4.2.8 + resolution: "@smithy/middleware-content-length@npm:4.2.8" dependencies: - "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/types": "npm:^4.9.0" + "@smithy/protocol-http": "npm:^5.3.8" + "@smithy/types": "npm:^4.12.0" tslib: "npm:^2.6.2" - checksum: 10c0/672a29ab57b80dcebd841624c6a762980b17dc658ca0f7c948c0739fedacf3c6a43d0c3f63e79f13aa4069d9fb1f52266bcd5980d9e6907b2f62b918c286b861 + checksum: 10c0/27a732a4207936da2b57212d7abb2d55d398d483e507fefb540e2ea20247795770bd73bfc7a4d488de3aa923810241014eb05a4cfa1b8354b4e284161d1bec42 languageName: node linkType: hard @@ -9576,19 +9793,19 @@ __metadata: languageName: node linkType: hard -"@smithy/middleware-endpoint@npm:^4, @smithy/middleware-endpoint@npm:^4.3.12": - version: 4.3.12 - resolution: "@smithy/middleware-endpoint@npm:4.3.12" +"@smithy/middleware-endpoint@npm:^4, @smithy/middleware-endpoint@npm:^4.0.0, @smithy/middleware-endpoint@npm:^4.4.12": + version: 4.4.12 + resolution: "@smithy/middleware-endpoint@npm:4.4.12" dependencies: - "@smithy/core": "npm:^3.18.5" - "@smithy/middleware-serde": "npm:^4.2.6" - "@smithy/node-config-provider": "npm:^4.3.5" - "@smithy/shared-ini-file-loader": "npm:^4.4.0" - "@smithy/types": "npm:^4.9.0" - "@smithy/url-parser": "npm:^4.2.5" - "@smithy/util-middleware": "npm:^4.2.5" + "@smithy/core": "npm:^3.22.0" + "@smithy/middleware-serde": "npm:^4.2.9" + "@smithy/node-config-provider": "npm:^4.3.8" + "@smithy/shared-ini-file-loader": "npm:^4.4.3" + "@smithy/types": "npm:^4.12.0" + "@smithy/url-parser": "npm:^4.2.8" + "@smithy/util-middleware": "npm:^4.2.8" tslib: "npm:^2.6.2" - checksum: 10c0/0bfb1d825d15eed389e603e547aab134c8064c3e82fad9241f721d0f896d2f3490516d8b0a845869c78a1d071040df26cd4e3234b171bab130f0da13cb4f2a94 + checksum: 10c0/437226c46c0a9bc4f654f05bbca47279fd572dcee5587736e6a4aff23c1611d91658d344625754a19734d9ee24f39659a6a7146ace59dd4e425b76e7a4334336 languageName: node linkType: hard @@ -9609,7 +9826,7 @@ __metadata: languageName: node linkType: hard -"@smithy/middleware-retry@npm:^3.0.13, @smithy/middleware-retry@npm:^3.0.14, @smithy/middleware-retry@npm:^3.0.15": +"@smithy/middleware-retry@npm:^3.0.14, @smithy/middleware-retry@npm:^3.0.15": version: 3.0.34 resolution: "@smithy/middleware-retry@npm:3.0.34" dependencies: @@ -9626,20 +9843,20 @@ __metadata: languageName: node linkType: hard -"@smithy/middleware-retry@npm:^4.4.12": - version: 4.4.12 - resolution: "@smithy/middleware-retry@npm:4.4.12" +"@smithy/middleware-retry@npm:^4.0.0, @smithy/middleware-retry@npm:^4.4.29": + version: 4.4.29 + resolution: "@smithy/middleware-retry@npm:4.4.29" dependencies: - "@smithy/node-config-provider": "npm:^4.3.5" - "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/service-error-classification": "npm:^4.2.5" - "@smithy/smithy-client": "npm:^4.9.8" - "@smithy/types": "npm:^4.9.0" - "@smithy/util-middleware": "npm:^4.2.5" - "@smithy/util-retry": "npm:^4.2.5" + "@smithy/node-config-provider": "npm:^4.3.8" + "@smithy/protocol-http": "npm:^5.3.8" + "@smithy/service-error-classification": "npm:^4.2.8" + "@smithy/smithy-client": "npm:^4.11.1" + "@smithy/types": "npm:^4.12.0" + "@smithy/util-middleware": "npm:^4.2.8" + "@smithy/util-retry": "npm:^4.2.8" "@smithy/uuid": "npm:^1.1.0" tslib: "npm:^2.6.2" - checksum: 10c0/3c958a58c6346b07d3d1231e4835754fe159f4697bb2b8d8a0e173ec9325e92d5e73a21b1f8f7854b390fc5a5715c44a44a50ea389c17edf95178a8173d819c4 + checksum: 10c0/c6d307e21b279b33ce2384f88bcc377ceedc03233e8885d0e3951fa3d9dfcfc92d27a9e8abd8c7d383431aa29f61292196cb727cdaf53b43aa173482c035cba4 languageName: node linkType: hard @@ -9663,14 +9880,14 @@ __metadata: languageName: node linkType: hard -"@smithy/middleware-serde@npm:^4.2.6": - version: 4.2.6 - resolution: "@smithy/middleware-serde@npm:4.2.6" +"@smithy/middleware-serde@npm:^4.0.0, @smithy/middleware-serde@npm:^4.2.9": + version: 4.2.9 + resolution: "@smithy/middleware-serde@npm:4.2.9" dependencies: - "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/types": "npm:^4.9.0" + "@smithy/protocol-http": "npm:^5.3.8" + "@smithy/types": "npm:^4.12.0" tslib: "npm:^2.6.2" - checksum: 10c0/c7b4f806f3664573f119b35b91f4adaa62ec2501bae37133ca5837b24a879514812c0820345340a3281374307bd4f468c0da058c2fe0b854baa5db114403326a + checksum: 10c0/72164c91690f3cb3bcbb1638dad4ddc245c48cf92f1663740a65df430c35e5f6c94c51a88645c0085ff138ad6ededba45106b94698fbaaec527ae653e40829a9 languageName: node linkType: hard @@ -9694,13 +9911,13 @@ __metadata: languageName: node linkType: hard -"@smithy/middleware-stack@npm:^4.2.5": - version: 4.2.5 - resolution: "@smithy/middleware-stack@npm:4.2.5" +"@smithy/middleware-stack@npm:^4.0.0, @smithy/middleware-stack@npm:^4.2.8": + version: 4.2.8 + resolution: "@smithy/middleware-stack@npm:4.2.8" dependencies: - "@smithy/types": "npm:^4.9.0" + "@smithy/types": "npm:^4.12.0" tslib: "npm:^2.6.2" - checksum: 10c0/c88476053920bb54dbf0c407b22cf5e17f497def265ee6bbdacd559144acb3142082e9f5439745da3d96655aa0aafdbb33cab14ba02ec4c3b108eab512c612b8 + checksum: 10c0/3d931a12f1e9d691bcdca5f1889378266fcd20ab97f46983a08585492bf90fecb644b00886db908ec902efadb5f983a6365ae0dd351245d52c78ef3091e0d058 languageName: node linkType: hard @@ -9728,15 +9945,15 @@ __metadata: languageName: node linkType: hard -"@smithy/node-config-provider@npm:^4, @smithy/node-config-provider@npm:^4.3.5": - version: 4.3.5 - resolution: "@smithy/node-config-provider@npm:4.3.5" +"@smithy/node-config-provider@npm:^4, @smithy/node-config-provider@npm:^4.0.0, @smithy/node-config-provider@npm:^4.3.8": + version: 4.3.8 + resolution: "@smithy/node-config-provider@npm:4.3.8" dependencies: - "@smithy/property-provider": "npm:^4.2.5" - "@smithy/shared-ini-file-loader": "npm:^4.4.0" - "@smithy/types": "npm:^4.9.0" + "@smithy/property-provider": "npm:^4.2.8" + "@smithy/shared-ini-file-loader": "npm:^4.4.3" + "@smithy/types": "npm:^4.12.0" tslib: "npm:^2.6.2" - checksum: 10c0/433eb6cab0a96fc7391351925098954265f630986777a0443f8e05f1d22b5b5ebba62cb26c4d9d0989eb747a0c4921bfa833593872715810cabc3998cf5e2816 + checksum: 10c0/da474576b586f70e90db8f7c2c0d03aac40380435b973b4c5c759910b11cd5c75d89191da21499a83bae3ef12b8317b7421e509c3b5114f3d42d672de7c35f93 languageName: node linkType: hard @@ -9766,16 +9983,16 @@ __metadata: languageName: node linkType: hard -"@smithy/node-http-handler@npm:^4.4.5": - version: 4.4.5 - resolution: "@smithy/node-http-handler@npm:4.4.5" +"@smithy/node-http-handler@npm:^4.0.0, @smithy/node-http-handler@npm:^4.4.8": + version: 4.4.8 + resolution: "@smithy/node-http-handler@npm:4.4.8" dependencies: - "@smithy/abort-controller": "npm:^4.2.5" - "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/querystring-builder": "npm:^4.2.5" - "@smithy/types": "npm:^4.9.0" + "@smithy/abort-controller": "npm:^4.2.8" + "@smithy/protocol-http": "npm:^5.3.8" + "@smithy/querystring-builder": "npm:^4.2.8" + "@smithy/types": "npm:^4.12.0" tslib: "npm:^2.6.2" - checksum: 10c0/5385f20466e4ecf7e7fd9b1309077820fa65e213b806fce4ec08191c9af216da03bae6e03c5860fedf6d87c5aeba660721e1c4e0114a1d1a5d8a1cf840c30604 + checksum: 10c0/d16fe026cd7942947033dc1e48d2914d2fad64388ad6a2bf8ff4cd22d7c3bf5e47ddae051350d6c1e681b35b9c8648ed693558825074915ea0a61ef189374869 languageName: node linkType: hard @@ -9799,13 +10016,13 @@ __metadata: languageName: node linkType: hard -"@smithy/property-provider@npm:^4, @smithy/property-provider@npm:^4.2.5": - version: 4.2.5 - resolution: "@smithy/property-provider@npm:4.2.5" +"@smithy/property-provider@npm:^4, @smithy/property-provider@npm:^4.0.0, @smithy/property-provider@npm:^4.2.8": + version: 4.2.8 + resolution: "@smithy/property-provider@npm:4.2.8" dependencies: - "@smithy/types": "npm:^4.9.0" + "@smithy/types": "npm:^4.12.0" tslib: "npm:^2.6.2" - checksum: 10c0/bea8cf1758e90779476b5a44d722a63a658bee27a00e2f4f2b0b6e96ee14e2e66e3a23674c51619eb00c0472592a1d658249d7ee79cf19847ac10c698b3b67af + checksum: 10c0/3883dc620ad63db9df86aae19c6cad12be76deb8775f5b75a94773c1b907173dce5dcdd6cd255bcd7f8156ea2840c05e15c9e68e975344989710daaa3e63761c languageName: node linkType: hard @@ -9829,13 +10046,13 @@ __metadata: languageName: node linkType: hard -"@smithy/protocol-http@npm:^5.3.5": - version: 5.3.5 - resolution: "@smithy/protocol-http@npm:5.3.5" +"@smithy/protocol-http@npm:^5.0.0, @smithy/protocol-http@npm:^5.3.8": + version: 5.3.8 + resolution: "@smithy/protocol-http@npm:5.3.8" dependencies: - "@smithy/types": "npm:^4.9.0" + "@smithy/types": "npm:^4.12.0" tslib: "npm:^2.6.2" - checksum: 10c0/15e6bfbf39a8740b5cce729b84d470835887442f0f662325eb55d1f02d8d790772595446bb7f776d2852ca6f6ff67d7a9f45a3eab0bc757997c82564a483f3dc + checksum: 10c0/13285091174a893c695f4e44debcaf7fc8be3e8140188020c9a29d9cc70acf46345039b231b0b7c136f864dc02b87d48e7aedb657f6888eaa5ff76295a7deafe languageName: node linkType: hard @@ -9861,14 +10078,14 @@ __metadata: languageName: node linkType: hard -"@smithy/querystring-builder@npm:^4.2.5": - version: 4.2.5 - resolution: "@smithy/querystring-builder@npm:4.2.5" +"@smithy/querystring-builder@npm:^4.2.8": + version: 4.2.8 + resolution: "@smithy/querystring-builder@npm:4.2.8" dependencies: - "@smithy/types": "npm:^4.9.0" + "@smithy/types": "npm:^4.12.0" "@smithy/util-uri-escape": "npm:^4.2.0" tslib: "npm:^2.6.2" - checksum: 10c0/1dbbf4792a90c7f4c3948526200a61b83c0444d86da6b925501611c11c4a12bdfe7e1870e66c10353128821cf5f9fedb509af85deb6c2015be0ef298a6d03972 + checksum: 10c0/21995656fad2198b6d2960367e84ec847609dd317a6dcc2eb133b78abd3c3816221316a50cbdcd20fb773d24e942a182b3844a334c7694bae091085c6edc2798 languageName: node linkType: hard @@ -9892,13 +10109,13 @@ __metadata: languageName: node linkType: hard -"@smithy/querystring-parser@npm:^4.2.5": - version: 4.2.5 - resolution: "@smithy/querystring-parser@npm:4.2.5" +"@smithy/querystring-parser@npm:^4.2.8": + version: 4.2.8 + resolution: "@smithy/querystring-parser@npm:4.2.8" dependencies: - "@smithy/types": "npm:^4.9.0" + "@smithy/types": "npm:^4.12.0" tslib: "npm:^2.6.2" - checksum: 10c0/83c4200282469791a3266d8f44c6ce9128b0adb42ee9f097bac31fafa5bb62eb1cfcab29ff0641fe48d2585089109633eb1d99151dc91e4879dae563898fecdc + checksum: 10c0/997a4e94438091461c1e8ccc66b3c1e7f243eaac22b2598d34d67de7332c1b8a2963cca98499f91638a4505aab07c968b3c9db1ff2aa29682a783fb6374b53e1 languageName: node linkType: hard @@ -9920,12 +10137,12 @@ __metadata: languageName: node linkType: hard -"@smithy/service-error-classification@npm:^4.2.5": - version: 4.2.5 - resolution: "@smithy/service-error-classification@npm:4.2.5" +"@smithy/service-error-classification@npm:^4.2.8": + version: 4.2.8 + resolution: "@smithy/service-error-classification@npm:4.2.8" dependencies: - "@smithy/types": "npm:^4.9.0" - checksum: 10c0/d1a3ef99b4474ad71cd6279e581e174fd5421646618360200350c4d346b2227ddae14a71a88c32442e88b1261ed080e87df6b3d34298833be6cf5db95d266db4 + "@smithy/types": "npm:^4.12.0" + checksum: 10c0/10a31e4c73839f2b372df026223df3370f06ea584854c57e13967a306eac3de073af1f3998ae4df5ecb0d46ccc2cb737270794f9be572b36510ece946010a5b3 languageName: node linkType: hard @@ -9949,13 +10166,13 @@ __metadata: languageName: node linkType: hard -"@smithy/shared-ini-file-loader@npm:^4, @smithy/shared-ini-file-loader@npm:^4.4.0": - version: 4.4.0 - resolution: "@smithy/shared-ini-file-loader@npm:4.4.0" +"@smithy/shared-ini-file-loader@npm:^4, @smithy/shared-ini-file-loader@npm:^4.0.0, @smithy/shared-ini-file-loader@npm:^4.4.3": + version: 4.4.3 + resolution: "@smithy/shared-ini-file-loader@npm:4.4.3" dependencies: - "@smithy/types": "npm:^4.9.0" + "@smithy/types": "npm:^4.12.0" tslib: "npm:^2.6.2" - checksum: 10c0/a674622375df25685e793b0c777e856f439a79614240445b7f5982b263b5525f6f6f2c02ab4058db7e6a8988d9b1809181cc70bf4d06ea2a71608fecad6ea6d1 + checksum: 10c0/6d625499d5c61d68c0adbfca8e9f04f0c1e011137226f8af09fc8c7aa1594e4297317d7ef64345f5ca09b8948833ea7f4f3df7df621f2fc68c74d540c1a017b8 languageName: node linkType: hard @@ -9990,19 +10207,19 @@ __metadata: languageName: node linkType: hard -"@smithy/signature-v4@npm:^5.3.5": - version: 5.3.5 - resolution: "@smithy/signature-v4@npm:5.3.5" +"@smithy/signature-v4@npm:^5.0.0, @smithy/signature-v4@npm:^5.3.8": + version: 5.3.8 + resolution: "@smithy/signature-v4@npm:5.3.8" dependencies: "@smithy/is-array-buffer": "npm:^4.2.0" - "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/types": "npm:^4.9.0" + "@smithy/protocol-http": "npm:^5.3.8" + "@smithy/types": "npm:^4.12.0" "@smithy/util-hex-encoding": "npm:^4.2.0" - "@smithy/util-middleware": "npm:^4.2.5" + "@smithy/util-middleware": "npm:^4.2.8" "@smithy/util-uri-escape": "npm:^4.2.0" "@smithy/util-utf8": "npm:^4.2.0" tslib: "npm:^2.6.2" - checksum: 10c0/e4e8f28fc53f9609f5d290d2f94f0736713a5269061b959e6be6da3ed2ef58511ba56c2727b4557349ae5201c0879555a28df4bd717e6d1789a52a678deef876 + checksum: 10c0/5959ae4d22fedb707543b193a4fb12902fcc9b07452ea1ea9366fde702680a6e862f4b92d12a2f7d1677bc62a97963e707092147f1e7876bb2e419d7a8842d67 languageName: node linkType: hard @@ -10020,7 +10237,7 @@ __metadata: languageName: node linkType: hard -"@smithy/smithy-client@npm:^3.1.11, @smithy/smithy-client@npm:^3.1.12, @smithy/smithy-client@npm:^3.2.0, @smithy/smithy-client@npm:^3.7.0": +"@smithy/smithy-client@npm:^3.1.12, @smithy/smithy-client@npm:^3.2.0, @smithy/smithy-client@npm:^3.7.0": version: 3.7.0 resolution: "@smithy/smithy-client@npm:3.7.0" dependencies: @@ -10035,22 +10252,22 @@ __metadata: languageName: node linkType: hard -"@smithy/smithy-client@npm:^4.9.8": - version: 4.9.8 - resolution: "@smithy/smithy-client@npm:4.9.8" +"@smithy/smithy-client@npm:^4.0.0, @smithy/smithy-client@npm:^4.11.1": + version: 4.11.1 + resolution: "@smithy/smithy-client@npm:4.11.1" dependencies: - "@smithy/core": "npm:^3.18.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-stack": "npm:^4.2.5" - "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/types": "npm:^4.9.0" - "@smithy/util-stream": "npm:^4.5.6" + "@smithy/core": "npm:^3.22.0" + "@smithy/middleware-endpoint": "npm:^4.4.12" + "@smithy/middleware-stack": "npm:^4.2.8" + "@smithy/protocol-http": "npm:^5.3.8" + "@smithy/types": "npm:^4.12.0" + "@smithy/util-stream": "npm:^4.5.10" tslib: "npm:^2.6.2" - checksum: 10c0/42752686da591865cea0f5f7379eb729bdba003ddf59cfc05368e4155b350d6499772426e66b32c9e9af003fe1eb812170652a5d0f996097df4411c722120852 + checksum: 10c0/f1f52aab126d0550d6a142e76f8d060710c334331547cd8fd9a86bdbcd47262331b898271eb4af68211fd032411c64c1f4dfbf173adc0d007d016b3815b6cf45 languageName: node linkType: hard -"@smithy/types@npm:^2.1.0, @smithy/types@npm:^2.12.0, @smithy/types@npm:^2.2.2, @smithy/types@npm:^2.3.1, @smithy/types@npm:^2.4.0": +"@smithy/types@npm:^2.12.0, @smithy/types@npm:^2.3.1, @smithy/types@npm:^2.4.0": version: 2.12.0 resolution: "@smithy/types@npm:2.12.0" dependencies: @@ -10068,12 +10285,12 @@ __metadata: languageName: node linkType: hard -"@smithy/types@npm:^4.1.0, @smithy/types@npm:^4.9.0": - version: 4.9.0 - resolution: "@smithy/types@npm:4.9.0" +"@smithy/types@npm:^4.0.0, @smithy/types@npm:^4.1.0, @smithy/types@npm:^4.12.0, @smithy/types@npm:^4.9.0": + version: 4.12.0 + resolution: "@smithy/types@npm:4.12.0" dependencies: tslib: "npm:^2.6.2" - checksum: 10c0/7068428d2e98eafb7f7e03d10f919ae0e7ea2f339b5afca1631be3d6a6cb3512d5dc57ca95d4dab533a3ad587eeba3a1c77305eb4e563fbc067abda170482ff5 + checksum: 10c0/ac81de3f24b43e52a5089279bced4ff04a853e0bdc80143a234e79f7f40cbd61d85497b08a252265570b4637a3cf265cf85a7a09e5f194937fe30706498640b7 languageName: node linkType: hard @@ -10099,14 +10316,14 @@ __metadata: languageName: node linkType: hard -"@smithy/url-parser@npm:^4.2.5": - version: 4.2.5 - resolution: "@smithy/url-parser@npm:4.2.5" +"@smithy/url-parser@npm:^4.0.0, @smithy/url-parser@npm:^4.2.8": + version: 4.2.8 + resolution: "@smithy/url-parser@npm:4.2.8" dependencies: - "@smithy/querystring-parser": "npm:^4.2.5" - "@smithy/types": "npm:^4.9.0" + "@smithy/querystring-parser": "npm:^4.2.8" + "@smithy/types": "npm:^4.12.0" tslib: "npm:^2.6.2" - checksum: 10c0/1d8241eeaaaa6401e1de670c2ebcd3992f9abb175f399c92aec1b30de81ce8023f66e0b7079be966b0a891c878a798d4cb08a09f410bcb795799e8ae9057e99a + checksum: 10c0/a3a5fa00b01ccc89de620a12286278f3dc86a14c1de0a7a576db2f2296c71a8b21b7ed8f8776d770647225a73f33afba4fe1a69de741515246117506532dad3c languageName: node linkType: hard @@ -10132,7 +10349,7 @@ __metadata: languageName: node linkType: hard -"@smithy/util-base64@npm:^4.3.0": +"@smithy/util-base64@npm:^4.0.0, @smithy/util-base64@npm:^4.3.0": version: 4.3.0 resolution: "@smithy/util-base64@npm:4.3.0" dependencies: @@ -10161,7 +10378,7 @@ __metadata: languageName: node linkType: hard -"@smithy/util-body-length-browser@npm:^4.2.0": +"@smithy/util-body-length-browser@npm:^4.0.0, @smithy/util-body-length-browser@npm:^4.2.0": version: 4.2.0 resolution: "@smithy/util-body-length-browser@npm:4.2.0" dependencies: @@ -10188,7 +10405,7 @@ __metadata: languageName: node linkType: hard -"@smithy/util-body-length-node@npm:^4.2.1": +"@smithy/util-body-length-node@npm:^4.0.0, @smithy/util-body-length-node@npm:^4.2.1": version: 4.2.1 resolution: "@smithy/util-body-length-node@npm:4.2.1" dependencies: @@ -10245,7 +10462,7 @@ __metadata: languageName: node linkType: hard -"@smithy/util-config-provider@npm:^4.2.0": +"@smithy/util-config-provider@npm:^4.0.0, @smithy/util-config-provider@npm:^4.2.0": version: 4.2.0 resolution: "@smithy/util-config-provider@npm:4.2.0" dependencies: @@ -10267,7 +10484,7 @@ __metadata: languageName: node linkType: hard -"@smithy/util-defaults-mode-browser@npm:^3.0.13, @smithy/util-defaults-mode-browser@npm:^3.0.14, @smithy/util-defaults-mode-browser@npm:^3.0.15": +"@smithy/util-defaults-mode-browser@npm:^3.0.14, @smithy/util-defaults-mode-browser@npm:^3.0.15": version: 3.0.34 resolution: "@smithy/util-defaults-mode-browser@npm:3.0.34" dependencies: @@ -10280,15 +10497,15 @@ __metadata: languageName: node linkType: hard -"@smithy/util-defaults-mode-browser@npm:^4.3.11": - version: 4.3.11 - resolution: "@smithy/util-defaults-mode-browser@npm:4.3.11" +"@smithy/util-defaults-mode-browser@npm:^4.0.0, @smithy/util-defaults-mode-browser@npm:^4.3.28": + version: 4.3.28 + resolution: "@smithy/util-defaults-mode-browser@npm:4.3.28" dependencies: - "@smithy/property-provider": "npm:^4.2.5" - "@smithy/smithy-client": "npm:^4.9.8" - "@smithy/types": "npm:^4.9.0" + "@smithy/property-provider": "npm:^4.2.8" + "@smithy/smithy-client": "npm:^4.11.1" + "@smithy/types": "npm:^4.12.0" tslib: "npm:^2.6.2" - checksum: 10c0/ec5601922356a7249448007d03036e9ffc9ddede5f2567f5de2a826a2dc18c1f27c038543eae96a58837a248f412fbb67c965cc43e1029a2519e8440760e790f + checksum: 10c0/6bb97990edc2ba659010627c83aad7ac228d9999136989c21c6bffd9ca69ea2550d1d9d5cddcbb910c50c3d0d53d1434a42d83a4811d51a4d216c3008f4ed19c languageName: node linkType: hard @@ -10307,7 +10524,7 @@ __metadata: languageName: node linkType: hard -"@smithy/util-defaults-mode-node@npm:^3.0.13, @smithy/util-defaults-mode-node@npm:^3.0.14, @smithy/util-defaults-mode-node@npm:^3.0.15": +"@smithy/util-defaults-mode-node@npm:^3.0.14, @smithy/util-defaults-mode-node@npm:^3.0.15": version: 3.0.34 resolution: "@smithy/util-defaults-mode-node@npm:3.0.34" dependencies: @@ -10322,18 +10539,18 @@ __metadata: languageName: node linkType: hard -"@smithy/util-defaults-mode-node@npm:^4.2.14": - version: 4.2.14 - resolution: "@smithy/util-defaults-mode-node@npm:4.2.14" +"@smithy/util-defaults-mode-node@npm:^4.0.0, @smithy/util-defaults-mode-node@npm:^4.2.31": + version: 4.2.31 + resolution: "@smithy/util-defaults-mode-node@npm:4.2.31" dependencies: - "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/credential-provider-imds": "npm:^4.2.5" - "@smithy/node-config-provider": "npm:^4.3.5" - "@smithy/property-provider": "npm:^4.2.5" - "@smithy/smithy-client": "npm:^4.9.8" - "@smithy/types": "npm:^4.9.0" + "@smithy/config-resolver": "npm:^4.4.6" + "@smithy/credential-provider-imds": "npm:^4.2.8" + "@smithy/node-config-provider": "npm:^4.3.8" + "@smithy/property-provider": "npm:^4.2.8" + "@smithy/smithy-client": "npm:^4.11.1" + "@smithy/types": "npm:^4.12.0" tslib: "npm:^2.6.2" - checksum: 10c0/965860eddf4f73de7574060bc717a8ca27591456ca0cd36f114ceab2ba5a05cb53931b40088642bc866e3bde9f812bb60b5a12ff04fe1820d059b362a9443a41 + checksum: 10c0/f8e9b09be0f8baae48f050612468bb5bb34dad98ac57926f5290f9dd729aefd1ef513bc93b9a7c3be5bbf09fb9c9ccd575517e81eb1d7ce911c60093687e5f7a languageName: node linkType: hard @@ -10359,14 +10576,14 @@ __metadata: languageName: node linkType: hard -"@smithy/util-endpoints@npm:^3.0.1, @smithy/util-endpoints@npm:^3.2.5": - version: 3.2.5 - resolution: "@smithy/util-endpoints@npm:3.2.5" +"@smithy/util-endpoints@npm:^3.0.0, @smithy/util-endpoints@npm:^3.0.1, @smithy/util-endpoints@npm:^3.2.8": + version: 3.2.8 + resolution: "@smithy/util-endpoints@npm:3.2.8" dependencies: - "@smithy/node-config-provider": "npm:^4.3.5" - "@smithy/types": "npm:^4.9.0" + "@smithy/node-config-provider": "npm:^4.3.8" + "@smithy/types": "npm:^4.12.0" tslib: "npm:^2.6.2" - checksum: 10c0/919767b499062d804938471ff02220b74662bf0fc9b7ecf7e7aa6c29f8a23bbc9c68c53718c4bc70c802f7917e4729a37a95c63a3990904047352e36183ddae3 + checksum: 10c0/7baade0e0b8c1a9ae04251aea5572908d27007305eaf9a9a01350d702ac02492cf4311040edcb766e77091c70dc58c0aadb6145b319ca309dc43caf43512c05c languageName: node linkType: hard @@ -10426,13 +10643,13 @@ __metadata: languageName: node linkType: hard -"@smithy/util-middleware@npm:^4.2.5": - version: 4.2.5 - resolution: "@smithy/util-middleware@npm:4.2.5" +"@smithy/util-middleware@npm:^4.0.0, @smithy/util-middleware@npm:^4.2.8": + version: 4.2.8 + resolution: "@smithy/util-middleware@npm:4.2.8" dependencies: - "@smithy/types": "npm:^4.9.0" + "@smithy/types": "npm:^4.12.0" tslib: "npm:^2.6.2" - checksum: 10c0/6b05a986ec2b992e3dc016148394e812064e33f0d70f30a57c9e2ae419cb7215a16430e2afff683abdf72cb686b06e43d0afa3a86abc72fbaa130976a7e2bbfb + checksum: 10c0/9c3faa8445e377d83da404a449e84ebc95c29faed210bb0f1fe28ddfb0ab0f8fe9ef54db7920a2dc0312c7db04c1590c805e25abcb9c1e3ac21f79597fc2c25c languageName: node linkType: hard @@ -10458,14 +10675,14 @@ __metadata: languageName: node linkType: hard -"@smithy/util-retry@npm:^4, @smithy/util-retry@npm:^4.2.5": - version: 4.2.5 - resolution: "@smithy/util-retry@npm:4.2.5" +"@smithy/util-retry@npm:^4, @smithy/util-retry@npm:^4.0.0, @smithy/util-retry@npm:^4.2.8": + version: 4.2.8 + resolution: "@smithy/util-retry@npm:4.2.8" dependencies: - "@smithy/service-error-classification": "npm:^4.2.5" - "@smithy/types": "npm:^4.9.0" + "@smithy/service-error-classification": "npm:^4.2.8" + "@smithy/types": "npm:^4.12.0" tslib: "npm:^2.6.2" - checksum: 10c0/3b330df346de40bdc49356f3fdf7164adefbd2b45d4beed6fd7d655569c2dcb1f52a7fd77d7a9ace8f6eeed9f5612cb02a60f66463972f934fae347e20c97b14 + checksum: 10c0/5329f7e0144114ce7bece310a30c0f094adfe3bcb4a3c9d6d67bb0a8fef72b454bad4ccfecb8cfbeaae025c10a668e88beca08a7e04f28ec8faad8f16db791e9 languageName: node linkType: hard @@ -10501,19 +10718,19 @@ __metadata: languageName: node linkType: hard -"@smithy/util-stream@npm:^4.5.6": - version: 4.5.6 - resolution: "@smithy/util-stream@npm:4.5.6" +"@smithy/util-stream@npm:^4.0.0, @smithy/util-stream@npm:^4.5.10": + version: 4.5.10 + resolution: "@smithy/util-stream@npm:4.5.10" dependencies: - "@smithy/fetch-http-handler": "npm:^5.3.6" - "@smithy/node-http-handler": "npm:^4.4.5" - "@smithy/types": "npm:^4.9.0" + "@smithy/fetch-http-handler": "npm:^5.3.9" + "@smithy/node-http-handler": "npm:^4.4.8" + "@smithy/types": "npm:^4.12.0" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-buffer-from": "npm:^4.2.0" "@smithy/util-hex-encoding": "npm:^4.2.0" "@smithy/util-utf8": "npm:^4.2.0" tslib: "npm:^2.6.2" - checksum: 10c0/42bb6f834b3f617cf2e421450cf43f7259c1cc4cd7c7ad230e4c929fed265ef7b9f3610977df497115978f3d7a80d569ea1abbbef8d595e6b2e1a4ccca3a37fa + checksum: 10c0/cd22dc18246fa458637c41c4e4cf3dfa586d0e25b4a861c422ea433920667ff8b21b6365450227f4fea6c3a35953f8693930a164d4fac0cf026d72ee40ca54c1 languageName: node linkType: hard @@ -10574,7 +10791,7 @@ __metadata: languageName: node linkType: hard -"@smithy/util-utf8@npm:^4.2.0": +"@smithy/util-utf8@npm:^4.0.0, @smithy/util-utf8@npm:^4.2.0": version: 4.2.0 resolution: "@smithy/util-utf8@npm:4.2.0" dependencies: @@ -10584,25 +10801,14 @@ __metadata: languageName: node linkType: hard -"@smithy/util-waiter@npm:^3.1.2": - version: 3.2.0 - resolution: "@smithy/util-waiter@npm:3.2.0" - dependencies: - "@smithy/abort-controller": "npm:^3.1.9" - "@smithy/types": "npm:^3.7.2" - tslib: "npm:^2.6.2" - checksum: 10c0/9b4a2a9f254f8218909dcc1586d3ea4026b5efc261b948f6ca89e240c317264ac93aaf66a5a8ee07ce2b6733d531179bb25d8ffcb8a0d4016ae2f81d32e45669 - languageName: node - linkType: hard - -"@smithy/util-waiter@npm:^4, @smithy/util-waiter@npm:^4.2.5": - version: 4.2.5 - resolution: "@smithy/util-waiter@npm:4.2.5" +"@smithy/util-waiter@npm:^4, @smithy/util-waiter@npm:^4.0.0, @smithy/util-waiter@npm:^4.2.8": + version: 4.2.8 + resolution: "@smithy/util-waiter@npm:4.2.8" dependencies: - "@smithy/abort-controller": "npm:^4.2.5" - "@smithy/types": "npm:^4.9.0" + "@smithy/abort-controller": "npm:^4.2.8" + "@smithy/types": "npm:^4.12.0" tslib: "npm:^2.6.2" - checksum: 10c0/5d822613ab32e95f4c69ac3f1763a14eb88965ae26c589d45b7921ecd849f0c38cd7aea2a0c3651ac2345699e67d86076595178a015516fd385ecb028a7afedf + checksum: 10c0/456ef90229d342af8869599a4977c5058f798d051bf9b5df4069cf742e07be7ec62d0d9793829099dd90b96595fd2d4035346db8e75986b2166edb27d44423d4 languageName: node linkType: hard @@ -10811,9 +11017,9 @@ __metadata: linkType: hard "@types/aws-lambda@npm:^8.10.134": - version: 8.10.159 - resolution: "@types/aws-lambda@npm:8.10.159" - checksum: 10c0/87d2b01949c47a13f4b8c97372e4b028b3faa5d421a23770be47a86f8ebcd74e7eea0179b552055ca58383854141bafb039da2d90e4e2a030c3b8e9a743ed9ec + version: 8.10.160 + resolution: "@types/aws-lambda@npm:8.10.160" + checksum: 10c0/0f524cbcab95108b9ef4876a0458fec11b948baa43741874bc5f10e6ba66bdde5245185adc33838fc057c6a2610a23ae610d3059ae90961eb8fdd126c042ebea languageName: node linkType: hard @@ -10880,14 +11086,14 @@ __metadata: linkType: hard "@types/express-serve-static-core@npm:^4.17.33": - version: 4.19.7 - resolution: "@types/express-serve-static-core@npm:4.19.7" + version: 4.19.8 + resolution: "@types/express-serve-static-core@npm:4.19.8" dependencies: "@types/node": "npm:*" "@types/qs": "npm:*" "@types/range-parser": "npm:*" "@types/send": "npm:*" - checksum: 10c0/c239df87863b8515e68dcb18203a9e2ba6108f86fdc385090284464a57a6dca6abb60a961cb6a73fea2110576f4f8acefa1cb06b60d14b6b0e5104478e7d57d1 + checksum: 10c0/6fb58a85b209e0e421b29c52e0a51dbf7c039b711c604cf45d46470937a5c7c16b30aa5ce9bf7da0bd8a2e9361c95b5055599c0500a96bf4414d26c81f02d7fe languageName: node linkType: hard @@ -10948,9 +11154,9 @@ __metadata: linkType: hard "@types/lodash@npm:^4, @types/lodash@npm:^4.14.175": - version: 4.17.21 - resolution: "@types/lodash@npm:4.17.21" - checksum: 10c0/73cb006e047d8871e9d63f3a165543bf16c44a5b6fe3f9f6299e37cb8d67a7b1d55ac730959a81f9def510fd07232ff7e30e05413e5d5a12793baad84ebe36c3 + version: 4.17.23 + resolution: "@types/lodash@npm:4.17.23" + checksum: 10c0/9d9cbfb684e064a2b78aab9e220d398c9c2a7d36bc51a07b184ff382fa043a99b3d00c16c7f109b4eb8614118f4869678dbae7d5c6700ed16fb9340e26cc0bf6 languageName: node linkType: hard @@ -11000,21 +11206,30 @@ __metadata: languageName: node linkType: hard +"@types/node-cache@npm:^4.1.3": + version: 4.1.3 + resolution: "@types/node-cache@npm:4.1.3" + dependencies: + "@types/node": "npm:*" + checksum: 10c0/0d661b8a66808033590e06704a44433a3b0c56ef88618b90ae36804fc8c5eeba9496d598390efdaa58036df07118a105689da7cf97101a409c70731f5a75cc7c + languageName: node + linkType: hard + "@types/node@npm:*, @types/node@npm:>=10.0.0, @types/node@npm:>=13.7.0": - version: 24.10.1 - resolution: "@types/node@npm:24.10.1" + version: 25.1.0 + resolution: "@types/node@npm:25.1.0" dependencies: undici-types: "npm:~7.16.0" - checksum: 10c0/d6bca7a78f550fbb376f236f92b405d676003a8a09a1b411f55920ef34286ee3ee51f566203920e835478784df52662b5b2af89159d9d319352e9ea21801c002 + checksum: 10c0/5f393a127dc9565e2e152514a271455d580c7095afc51302e73ffe8aac3526b64ebacc3c10dd40c93cef81a95436ef2c6a8b522930df567a3f6b189c0eef649a languageName: node linkType: hard "@types/node@npm:^20.10.7, @types/node@npm:^20.14.10": - version: 20.19.25 - resolution: "@types/node@npm:20.19.25" + version: 20.19.30 + resolution: "@types/node@npm:20.19.30" dependencies: undici-types: "npm:~6.21.0" - checksum: 10c0/992f18cb03264e8dc2fd3cb64f428ee4997cb6d928dad68bf4b752eacac73062697ce7ce6a0e71a6d15af510814397a20597a72332dfec638e02fb3a382ad014 + checksum: 10c0/23dbea652727d947ea35fc1c4e8acb7e1c535e85f6c139c3a4697864a5af164655ce305ab0877ea4cca537deee0405bf56aeac714f236ae1a3dd0fa6b87cc860 languageName: node linkType: hard @@ -11047,13 +11262,13 @@ __metadata: linkType: hard "@types/pg@npm:^8.11.0": - version: 8.15.6 - resolution: "@types/pg@npm:8.15.6" + version: 8.16.0 + resolution: "@types/pg@npm:8.16.0" dependencies: "@types/node": "npm:*" pg-protocol: "npm:*" pg-types: "npm:^2.2.0" - checksum: 10c0/7f93f83a4da0dc6133918f824d826fa34e78fb8cf86392d28a0e095c836c6910c014ced5d4b364d83e8485a65ce369adeb9663b14ba301241d4c0f80073007f3 + checksum: 10c0/421fe7c07d5c0226835d362414a63653f86251ee966150d807ed60174c13921d1b8a3e2f1c2bfba9659ec0282ca50974030c4c1efcd575003eb922ea12ca7d05 languageName: node linkType: hard @@ -11067,9 +11282,9 @@ __metadata: linkType: hard "@types/plotly.js@npm:*, @types/plotly.js@npm:^3.0.0": - version: 3.0.8 - resolution: "@types/plotly.js@npm:3.0.8" - checksum: 10c0/7b8b26a07c8fb863ab1950089eb5c6f67896d65628409f17ab1beaf0a0ffa338cb2171aec108b2460205267ad65e67b10e739f8f74fbf476229202d4487d869b + version: 3.0.9 + resolution: "@types/plotly.js@npm:3.0.9" + checksum: 10c0/8f5aa3cc96f6351e978d491356407e69cd417f6fc64df458cb90a5e382515b37e61dff7fe7416ed7d8ad2f3cdbbe1d7c1629d184bcf33e00111c39b3dce0b28e languageName: node linkType: hard @@ -11113,12 +11328,12 @@ __metadata: linkType: hard "@types/react-plotly.js@npm:^2.6.3": - version: 2.6.3 - resolution: "@types/react-plotly.js@npm:2.6.3" + version: 2.6.4 + resolution: "@types/react-plotly.js@npm:2.6.4" dependencies: "@types/plotly.js": "npm:*" "@types/react": "npm:*" - checksum: 10c0/8cd6f99766009d541615471251b377200c5fd00a08995b64566f4cdfb6d1938ee64ba38d3847c7fe3d1d7515e59c1b0111e3262481480540b1a5e5a041cc4e3b + checksum: 10c0/e1483e77b2162a7284b186665131a053560a84293c85ade16cd65039383c3894550397cf2b599ce1c870521622f81b176ddbdbe7a10da937b3b88e4aa4b90d4a languageName: node linkType: hard @@ -11141,11 +11356,11 @@ __metadata: linkType: hard "@types/react@npm:*": - version: 19.2.7 - resolution: "@types/react@npm:19.2.7" + version: 19.2.10 + resolution: "@types/react@npm:19.2.10" dependencies: csstype: "npm:^3.2.2" - checksum: 10c0/a7b75f1f9fcb34badd6f84098be5e35a0aeca614bc91f93d2698664c0b2ba5ad128422bd470ada598238cebe4f9e604a752aead7dc6f5a92261d0c7f9b27cfd1 + checksum: 10c0/17b96203a79ad3fa3cee8f1f1f324b93f005bc125755e29ac149402807275feaf3f00a4e65b8405f633923ac993da5737fd9800d27ee49911f3ed51dc27478f9 languageName: node linkType: hard @@ -11159,11 +11374,11 @@ __metadata: linkType: hard "@types/readable-stream@npm:^4.0.0, @types/readable-stream@npm:^4.0.21": - version: 4.0.22 - resolution: "@types/readable-stream@npm:4.0.22" + version: 4.0.23 + resolution: "@types/readable-stream@npm:4.0.23" dependencies: "@types/node": "npm:*" - checksum: 10c0/92cfee9362ddea15ef0d2a5daf71ce0cb035a8556432428479eaaf2ef73b3dd345fa08b81cfa7eefe805eff48f9f81b297c46cc8ff2a77b49b013876bc02216e + checksum: 10c0/89ae3f6a53d186252c4c957b715c8dc12b318be30aeb3546f6513163572e5eebe0f61261e70c6d3f7496d63741ed6f92fbc5d17bfe9a72b0abfe720ee8fa471a languageName: node linkType: hard @@ -11230,17 +11445,17 @@ __metadata: linkType: hard "@types/three@npm:*": - version: 0.181.0 - resolution: "@types/three@npm:0.181.0" + version: 0.182.0 + resolution: "@types/three@npm:0.182.0" dependencies: "@dimforge/rapier3d-compat": "npm:~0.12.0" "@tweenjs/tween.js": "npm:~23.1.3" "@types/stats.js": "npm:*" - "@types/webxr": "npm:*" + "@types/webxr": "npm:>=0.5.17" "@webgpu/types": "npm:*" fflate: "npm:~0.8.2" meshoptimizer: "npm:~0.22.0" - checksum: 10c0/c110de1a1934ef4cceb9071a52ccdab6df0c6502600322004a29c4b273c196a0e700fed4257a421190d8618a27f0e418e3ba14da3e3a7168cc014007be1b8f04 + checksum: 10c0/3578a4c847a750922545410ae54b0a785a0695da28916a0009e659d1f79b5351a3b74b1665ae538ebba812add8d758c745148a131079fd10d770b487242da857 languageName: node linkType: hard @@ -11270,7 +11485,7 @@ __metadata: languageName: node linkType: hard -"@types/webxr@npm:*, @types/webxr@npm:^0.5.2": +"@types/webxr@npm:*, @types/webxr@npm:>=0.5.17, @types/webxr@npm:^0.5.2": version: 0.5.24 resolution: "@types/webxr@npm:0.5.24" checksum: 10c0/ff59ffd390d06ca3f89ab2531d583ac10bc5e2ab82e5a01ecc40fbc365224a3375e7caa5b14649cf6141db21fb024940da7ad2bd8faa3cd497a6665257cb53b5 @@ -11294,23 +11509,22 @@ __metadata: linkType: hard "@typescript-eslint/eslint-plugin@npm:^5.4.2 || ^6.0.0 || ^7.0.0 || ^8.0.0": - version: 8.48.0 - resolution: "@typescript-eslint/eslint-plugin@npm:8.48.0" - dependencies: - "@eslint-community/regexpp": "npm:^4.10.0" - "@typescript-eslint/scope-manager": "npm:8.48.0" - "@typescript-eslint/type-utils": "npm:8.48.0" - "@typescript-eslint/utils": "npm:8.48.0" - "@typescript-eslint/visitor-keys": "npm:8.48.0" - graphemer: "npm:^1.4.0" - ignore: "npm:^7.0.0" + version: 8.54.0 + resolution: "@typescript-eslint/eslint-plugin@npm:8.54.0" + dependencies: + "@eslint-community/regexpp": "npm:^4.12.2" + "@typescript-eslint/scope-manager": "npm:8.54.0" + "@typescript-eslint/type-utils": "npm:8.54.0" + "@typescript-eslint/utils": "npm:8.54.0" + "@typescript-eslint/visitor-keys": "npm:8.54.0" + ignore: "npm:^7.0.5" natural-compare: "npm:^1.4.0" - ts-api-utils: "npm:^2.1.0" + ts-api-utils: "npm:^2.4.0" peerDependencies: - "@typescript-eslint/parser": ^8.48.0 + "@typescript-eslint/parser": ^8.54.0 eslint: ^8.57.0 || ^9.0.0 typescript: ">=4.8.4 <6.0.0" - checksum: 10c0/5f4f9ac3ace3f615bac428859026b70fb7fa236666cfe8856fed3add7e4ba73c7113264c2df7a9d68247b679dfcc21b0414488bda7b9b3de1c209b1807ed7842 + checksum: 10c0/e533c8285880b883e02a833f378597c2776e6b0c20a5935440e2a02c1c42f40069a8badcf6d581bb4ec35a6856a806c4b66674c1c15c33cd64cc6b9c0cdd1dad languageName: node linkType: hard @@ -11349,18 +11563,18 @@ __metadata: linkType: hard "@typescript-eslint/parser@npm:^5.4.2 || ^6.0.0 || ^7.0.0 || ^8.0.0": - version: 8.48.0 - resolution: "@typescript-eslint/parser@npm:8.48.0" + version: 8.54.0 + resolution: "@typescript-eslint/parser@npm:8.54.0" dependencies: - "@typescript-eslint/scope-manager": "npm:8.48.0" - "@typescript-eslint/types": "npm:8.48.0" - "@typescript-eslint/typescript-estree": "npm:8.48.0" - "@typescript-eslint/visitor-keys": "npm:8.48.0" - debug: "npm:^4.3.4" + "@typescript-eslint/scope-manager": "npm:8.54.0" + "@typescript-eslint/types": "npm:8.54.0" + "@typescript-eslint/typescript-estree": "npm:8.54.0" + "@typescript-eslint/visitor-keys": "npm:8.54.0" + debug: "npm:^4.4.3" peerDependencies: eslint: ^8.57.0 || ^9.0.0 typescript: ">=4.8.4 <6.0.0" - checksum: 10c0/180753e1dc55cd5174a236b738d3b0dd6dd6c131797cd417b3b3b8fac344168f3d21bd49eae6c0a075be29ed69b7bc74d97cadd917f1f4d4c113c29e76c1f9cd + checksum: 10c0/60a1cfe94bc23086f03701640f4d83d7e37b8f4d729011e0f029e5accf2b3d099c50938c0a798a399e86046279432ff663f33102ba4338c4c82f7acead2bcbac languageName: node linkType: hard @@ -11382,16 +11596,16 @@ __metadata: languageName: node linkType: hard -"@typescript-eslint/project-service@npm:8.48.0": - version: 8.48.0 - resolution: "@typescript-eslint/project-service@npm:8.48.0" +"@typescript-eslint/project-service@npm:8.54.0": + version: 8.54.0 + resolution: "@typescript-eslint/project-service@npm:8.54.0" dependencies: - "@typescript-eslint/tsconfig-utils": "npm:^8.48.0" - "@typescript-eslint/types": "npm:^8.48.0" - debug: "npm:^4.3.4" + "@typescript-eslint/tsconfig-utils": "npm:^8.54.0" + "@typescript-eslint/types": "npm:^8.54.0" + debug: "npm:^4.4.3" peerDependencies: typescript: ">=4.8.4 <6.0.0" - checksum: 10c0/6e1d08312fe55a91ba37eb19131af91ad7834bafd15d1cddb83a1e35e5134382e10dc0b14531036ba1c075ce4cba627123625ed6f2e209fb3355f3dda25da0a1 + checksum: 10c0/3392ae259199021a80616a44d9484d1c363f61bc5c631dff2d08c6a906c98716a20caa7b832b8970120a1eb1eb2de3ee890cd527d6edb04f532f4e48a690a792 languageName: node linkType: hard @@ -11415,22 +11629,22 @@ __metadata: languageName: node linkType: hard -"@typescript-eslint/scope-manager@npm:8.48.0": - version: 8.48.0 - resolution: "@typescript-eslint/scope-manager@npm:8.48.0" +"@typescript-eslint/scope-manager@npm:8.54.0": + version: 8.54.0 + resolution: "@typescript-eslint/scope-manager@npm:8.54.0" dependencies: - "@typescript-eslint/types": "npm:8.48.0" - "@typescript-eslint/visitor-keys": "npm:8.48.0" - checksum: 10c0/0766e365901a8af9d9e41fa70464254aacf8b4d167734d88b6cdaa0235e86bfdffc57a3e39a20e105929b8df499d252090f64f81f86770f74626ca809afe54b6 + "@typescript-eslint/types": "npm:8.54.0" + "@typescript-eslint/visitor-keys": "npm:8.54.0" + checksum: 10c0/794740a5c0c1afc38d71e6bc59cc62870286e40d99f15e9760e76fb3d4197e961ee151c286c428535c404f5137721242a14da21350b749d0feb1f589f167814f languageName: node linkType: hard -"@typescript-eslint/tsconfig-utils@npm:8.48.0, @typescript-eslint/tsconfig-utils@npm:^8.48.0": - version: 8.48.0 - resolution: "@typescript-eslint/tsconfig-utils@npm:8.48.0" +"@typescript-eslint/tsconfig-utils@npm:8.54.0, @typescript-eslint/tsconfig-utils@npm:^8.54.0": + version: 8.54.0 + resolution: "@typescript-eslint/tsconfig-utils@npm:8.54.0" peerDependencies: typescript: ">=4.8.4 <6.0.0" - checksum: 10c0/52e9ce8ffbaf32f3c6f4b8fa8af6e3901c430411e137a0baf650fcefdd8edf3dcc4569eba726a28424471d4d1d96b815aa4cf7b63aa7b67380efd6a8dd354222 + checksum: 10c0/e8598b0f051650c085d749002138d12249a3efd03e7de02e9e7913939dddd649d159b91f29ca3d28f5ee798b3f528a7195688e23c5e0b315d534e7af20a0c99a languageName: node linkType: hard @@ -11451,19 +11665,19 @@ __metadata: languageName: node linkType: hard -"@typescript-eslint/type-utils@npm:8.48.0": - version: 8.48.0 - resolution: "@typescript-eslint/type-utils@npm:8.48.0" +"@typescript-eslint/type-utils@npm:8.54.0": + version: 8.54.0 + resolution: "@typescript-eslint/type-utils@npm:8.54.0" dependencies: - "@typescript-eslint/types": "npm:8.48.0" - "@typescript-eslint/typescript-estree": "npm:8.48.0" - "@typescript-eslint/utils": "npm:8.48.0" - debug: "npm:^4.3.4" - ts-api-utils: "npm:^2.1.0" + "@typescript-eslint/types": "npm:8.54.0" + "@typescript-eslint/typescript-estree": "npm:8.54.0" + "@typescript-eslint/utils": "npm:8.54.0" + debug: "npm:^4.4.3" + ts-api-utils: "npm:^2.4.0" peerDependencies: eslint: ^8.57.0 || ^9.0.0 typescript: ">=4.8.4 <6.0.0" - checksum: 10c0/72ab5c7d183b844e4870bfa5dfeb68e2e7ce5f3e1b33c06d5a8e70f0d0a012c9152ad15071d41ba3788266109804a9f4cdb85d664b11df8948bc930e29e0c244 + checksum: 10c0/ad807800d8b2662f823505249a84a6f5b1246b192a7ff08c49f298e220e4d9bb3d76f1f0852510421e030161604a4b939bff87f11b9074f118a3bd1d26139c6f languageName: node linkType: hard @@ -11481,10 +11695,10 @@ __metadata: languageName: node linkType: hard -"@typescript-eslint/types@npm:8.48.0, @typescript-eslint/types@npm:^8.48.0": - version: 8.48.0 - resolution: "@typescript-eslint/types@npm:8.48.0" - checksum: 10c0/865a8f4ae4a50aa8976f3d7e0f874f1a1c80227ec53ded68644d41011c729a489bb59f70683b29237ab945716ea0258e1d47387163379eab3edaaf5e5cc3b757 +"@typescript-eslint/types@npm:8.54.0, @typescript-eslint/types@npm:^8.54.0": + version: 8.54.0 + resolution: "@typescript-eslint/types@npm:8.54.0" + checksum: 10c0/2219594fe5e8931ff91fd1b7a2606d33cd4f093d43f9ca71bcaa37f106ef79ad51f830dea51392f7e3d8bca77f7077ef98733f87bc008fad2f0bbd9ea5fb8a40 languageName: node linkType: hard @@ -11525,22 +11739,22 @@ __metadata: languageName: node linkType: hard -"@typescript-eslint/typescript-estree@npm:8.48.0": - version: 8.48.0 - resolution: "@typescript-eslint/typescript-estree@npm:8.48.0" +"@typescript-eslint/typescript-estree@npm:8.54.0": + version: 8.54.0 + resolution: "@typescript-eslint/typescript-estree@npm:8.54.0" dependencies: - "@typescript-eslint/project-service": "npm:8.48.0" - "@typescript-eslint/tsconfig-utils": "npm:8.48.0" - "@typescript-eslint/types": "npm:8.48.0" - "@typescript-eslint/visitor-keys": "npm:8.48.0" - debug: "npm:^4.3.4" - minimatch: "npm:^9.0.4" - semver: "npm:^7.6.0" + "@typescript-eslint/project-service": "npm:8.54.0" + "@typescript-eslint/tsconfig-utils": "npm:8.54.0" + "@typescript-eslint/types": "npm:8.54.0" + "@typescript-eslint/visitor-keys": "npm:8.54.0" + debug: "npm:^4.4.3" + minimatch: "npm:^9.0.5" + semver: "npm:^7.7.3" tinyglobby: "npm:^0.2.15" - ts-api-utils: "npm:^2.1.0" + ts-api-utils: "npm:^2.4.0" peerDependencies: typescript: ">=4.8.4 <6.0.0" - checksum: 10c0/f17dd35f7b82654fae9fe83c2eb650572464dbce0170d55b3ef94b99e9aae010f2cbadd436089c8e59eef97d41719ace3a2deb4ac3cdfac26d43b36f34df5590 + checksum: 10c0/1a1a7c0a318e71f3547ab5573198d36165ea152c50447ef92e6326303f9a5c397606201ba80c7b86a725dcdd2913e924be94466a0c33b1b0c3ee852059e646b6 languageName: node linkType: hard @@ -11576,18 +11790,18 @@ __metadata: languageName: node linkType: hard -"@typescript-eslint/utils@npm:8.48.0": - version: 8.48.0 - resolution: "@typescript-eslint/utils@npm:8.48.0" +"@typescript-eslint/utils@npm:8.54.0": + version: 8.54.0 + resolution: "@typescript-eslint/utils@npm:8.54.0" dependencies: - "@eslint-community/eslint-utils": "npm:^4.7.0" - "@typescript-eslint/scope-manager": "npm:8.48.0" - "@typescript-eslint/types": "npm:8.48.0" - "@typescript-eslint/typescript-estree": "npm:8.48.0" + "@eslint-community/eslint-utils": "npm:^4.9.1" + "@typescript-eslint/scope-manager": "npm:8.54.0" + "@typescript-eslint/types": "npm:8.54.0" + "@typescript-eslint/typescript-estree": "npm:8.54.0" peerDependencies: eslint: ^8.57.0 || ^9.0.0 typescript: ">=4.8.4 <6.0.0" - checksum: 10c0/56334312d1dc114a5c8b05dac4da191c40a416a5705fa76797ebdc9f6a96d35727fd0993cf8776f5c4411837e5fc2151bfa61d3eecc98b24f5a821a63a4d56f3 + checksum: 10c0/949a97dca8024d39666e04ecdf2d4e12722f5064c387901e72bdcc7adafb96cf650a070dc79f9dd46fa1aae6ac2b5eac5ae3fe5a6979385208c28809a1bd143f languageName: node linkType: hard @@ -11611,13 +11825,13 @@ __metadata: languageName: node linkType: hard -"@typescript-eslint/visitor-keys@npm:8.48.0": - version: 8.48.0 - resolution: "@typescript-eslint/visitor-keys@npm:8.48.0" +"@typescript-eslint/visitor-keys@npm:8.54.0": + version: 8.54.0 + resolution: "@typescript-eslint/visitor-keys@npm:8.54.0" dependencies: - "@typescript-eslint/types": "npm:8.48.0" + "@typescript-eslint/types": "npm:8.54.0" eslint-visitor-keys: "npm:^4.2.1" - checksum: 10c0/20ae9ec255a786de40cdba281b63f634a642dcc34d2a79c5ffc160109f7f6227c28ae2c64be32cbc53dc68dc398c3da715bfcce90422b5024f15f7124a3c1704 + checksum: 10c0/f83a9aa92f7f4d1fdb12cbca28c6f5704c36371264606b456388b2c869fc61e73c86d3736556e1bb6e253f3a607128b5b1bf6c68395800ca06f18705576faadd languageName: node linkType: hard @@ -11791,9 +12005,9 @@ __metadata: linkType: hard "@webgpu/types@npm:*": - version: 0.1.66 - resolution: "@webgpu/types@npm:0.1.66" - checksum: 10c0/4af272f0133d893d13c4d69a48c3b0458c408f20d57c9fbc8995fdeb38d3a6d8df0898660fa7c484e4b82cccc968ddc9c977c25fe3e1f8ff25b26f0790719589 + version: 0.1.69 + resolution: "@webgpu/types@npm:0.1.69" + checksum: 10c0/52b95a176de5ee918fd1d7132103c35029006a0b4eb321767479a9e430560d272926c0994c3795a5bbaa22cebcc7dce71e66ba8b6496e01c90c0d179a02bd968 languageName: node linkType: hard @@ -11818,14 +12032,14 @@ __metadata: linkType: hard "@whatwg-node/node-fetch@npm:^0.8.3": - version: 0.8.4 - resolution: "@whatwg-node/node-fetch@npm:0.8.4" + version: 0.8.5 + resolution: "@whatwg-node/node-fetch@npm:0.8.5" dependencies: "@fastify/busboy": "npm:^3.1.1" "@whatwg-node/disposablestack": "npm:^0.0.6" "@whatwg-node/promise-helpers": "npm:^1.3.2" tslib: "npm:^2.6.3" - checksum: 10c0/dfe4123d5080364594ed1b6614a32a68e84b45db4f372c9b6b96dcc61321a6b3b35457fc88b6cac09b644391b9c3426c2fd209962525e9dc16f2337dadbcd4b0 + checksum: 10c0/9f0d944476cc40f5cfed79057cff269ddacf52bd4dda36017fe922cbf3e0a98850f26cb9c4e7990e87e6097f2f9dd94a20c6cc11f95d57652a516e99a5ccafc2 languageName: node linkType: hard @@ -11856,9 +12070,9 @@ __metadata: linkType: hard "@zip.js/zip.js@npm:^2.8.1": - version: 2.8.11 - resolution: "@zip.js/zip.js@npm:2.8.11" - checksum: 10c0/ac0b2ff3bf9be6b34c7e4923951006b587d7f4330fb48026a767e980e380f5c65fc1a046b8e315660ff93ce42ce0ad046c1b6523d20c27906db92d3a15121bf2 + version: 2.8.16 + resolution: "@zip.js/zip.js@npm:2.8.16" + checksum: 10c0/12a8d9572aa9deef9d46f974defadc016ab48c25a17aed7e16d2271e544aa735cfbf2d977551c4a490466d2ae77748686aaf6b63153c59d2a5ea920ad33c0378 languageName: node linkType: hard @@ -12130,10 +12344,10 @@ __metadata: languageName: node linkType: hard -"ansis@npm:^3.17.0": - version: 3.17.0 - resolution: "ansis@npm:3.17.0" - checksum: 10c0/d8fa94ca7bb91e7e5f8a7d323756aa075facce07c5d02ca883673e128b2873d16f93e0dec782f98f1eeb1f2b3b4b7b60dcf0ad98fb442e75054fe857988cc5cb +"ansis@npm:^4.2.0": + version: 4.2.0 + resolution: "ansis@npm:4.2.0" + checksum: 10c0/cd6a7a681ecd36e72e0d79c1e34f1f3bcb1b15bcbb6f0f8969b4228062d3bfebbef468e09771b00d93b2294370b34f707599d4a113542a876de26823b795b5d2 languageName: node linkType: hard @@ -12399,13 +12613,13 @@ __metadata: linkType: hard "asn1js@npm:^3.0.5, asn1js@npm:^3.0.6": - version: 3.0.6 - resolution: "asn1js@npm:3.0.6" + version: 3.0.7 + resolution: "asn1js@npm:3.0.7" dependencies: pvtsutils: "npm:^1.3.6" pvutils: "npm:^1.1.3" tslib: "npm:^2.8.1" - checksum: 10c0/96d35e65e3df819ad9cc2d91d1150a3041fd84687a62faa73405e72a6b4c655bc2450e779fad524969e14eeac1f69db2559f27ef6d06ddeeddada28f72ad9b89 + checksum: 10c0/7e79795edf1bcc86532c4084aa7c8c0ebc57f7dd6f964ad6de956abf617329722f6964b7af3a5d1c4554dd61b4b148ae1580e63e3ec2e70e7fba34f6df072b29 languageName: node linkType: hard @@ -12482,20 +12696,19 @@ __metadata: linkType: hard "autoprefixer@npm:^10.4.19": - version: 10.4.22 - resolution: "autoprefixer@npm:10.4.22" + version: 10.4.24 + resolution: "autoprefixer@npm:10.4.24" dependencies: - browserslist: "npm:^4.27.0" - caniuse-lite: "npm:^1.0.30001754" + browserslist: "npm:^4.28.1" + caniuse-lite: "npm:^1.0.30001766" fraction.js: "npm:^5.3.4" - normalize-range: "npm:^0.1.2" picocolors: "npm:^1.1.1" postcss-value-parser: "npm:^4.2.0" peerDependencies: postcss: ^8.1.0 bin: autoprefixer: bin/autoprefixer - checksum: 10c0/2ae8d135af2deaaa5065a3a466c877787373c0ed766b8a8e8259d7871db79c1a7e1d9f6c9541c54fa95647511d3c2066bb08a30160e58c9bfa75506f9c18f3aa + checksum: 10c0/16737dfc865afed338f3166718ece0f77539e53c1ba9f064f2e6369b9dec9ea0542f3fb98bcb7ab37e64897dc3304bae6b2004fbf79ada8b2aeaa3db336e4b77 languageName: node linkType: hard @@ -12509,56 +12722,51 @@ __metadata: linkType: hard "aws-amplify@npm:^6.4.0": - version: 6.15.8 - resolution: "aws-amplify@npm:6.15.8" - dependencies: - "@aws-amplify/analytics": "npm:7.0.89" - "@aws-amplify/api": "npm:6.3.20" - "@aws-amplify/auth": "npm:6.17.0" - "@aws-amplify/core": "npm:6.14.0" - "@aws-amplify/datastore": "npm:5.1.1" - "@aws-amplify/notifications": "npm:2.0.89" - "@aws-amplify/storage": "npm:6.10.1" + version: 6.16.0 + resolution: "aws-amplify@npm:6.16.0" + dependencies: + "@aws-amplify/analytics": "npm:7.0.92" + "@aws-amplify/api": "npm:6.3.23" + "@aws-amplify/auth": "npm:6.18.0" + "@aws-amplify/core": "npm:6.16.0" + "@aws-amplify/datastore": "npm:5.1.4" + "@aws-amplify/notifications": "npm:2.0.92" + "@aws-amplify/storage": "npm:6.12.0" tslib: "npm:^2.5.0" - checksum: 10c0/670ac2a6b28be990e116aaa5ad9972c889cfa0f175a92ae94b781da0a03eb359176c04113723a5f080258be049a887603fffdc3bf4f20c5022569db4fc35f80b + checksum: 10c0/fb234127b78c00ee58c3d8d8fcae51bd72a2bb73add3c431d4ae4494ccf1d1b7c924fe9951bd83eca94539e301898ee663970c7f5aebfec0e1f95aeb93414aa6 languageName: node linkType: hard "aws-cdk-lib@npm:^2.149.0": - version: 2.230.0 - resolution: "aws-cdk-lib@npm:2.230.0" + version: 2.236.0 + resolution: "aws-cdk-lib@npm:2.236.0" dependencies: - "@aws-cdk/asset-awscli-v1": "npm:2.2.242" + "@aws-cdk/asset-awscli-v1": "npm:2.2.263" "@aws-cdk/asset-node-proxy-agent-v6": "npm:^2.1.0" - "@aws-cdk/cloud-assembly-schema": "npm:^48.6.0" + "@aws-cdk/cloud-assembly-schema": "npm:^48.20.0" "@balena/dockerignore": "npm:^1.0.2" case: "npm:1.6.3" - fs-extra: "npm:^11.3.1" + fs-extra: "npm:^11.3.3" ignore: "npm:^5.3.2" jsonschema: "npm:^1.5.0" mime-types: "npm:^2.1.35" minimatch: "npm:^3.1.2" punycode: "npm:^2.3.1" - semver: "npm:^7.7.2" + semver: "npm:^7.7.3" table: "npm:^6.9.0" yaml: "npm:1.10.2" peerDependencies: constructs: ^10.0.0 - checksum: 10c0/a71faa57ed8574e7fe7675b21f899ec0836a3404597b49821f28c23c54d404abcecc9e22add43febc3c01d0308ee5f5257603807dd41ff8ec2ee6577163e7f0f + checksum: 10c0/97cc71ab4f82a39d1f26532c7fb7d610c698e6cbc9beedceea12ca1e560361c443fdca2c88ac3c3d5ea98f856ae84f390f8754991007a014a20e32a22d2b0fcd languageName: node linkType: hard "aws-cdk@npm:^2.149.0": - version: 2.1033.0 - resolution: "aws-cdk@npm:2.1033.0" - dependencies: - fsevents: "npm:2.3.2" - dependenciesMeta: - fsevents: - optional: true + version: 2.1104.0 + resolution: "aws-cdk@npm:2.1104.0" bin: cdk: bin/cdk - checksum: 10c0/5bdf9175b216deeba6efe1929333a0cb758320cc2ed3427891dae82ddf590b7c92f32e2a002e23a4ff457be4d4ca3eeda21859dcb5cf140fe2774da1fef31899 + checksum: 10c0/ca3eab0f5f746e168bfd5f391db1fd39ebaabbd378481adda04cdc8752e16895c50a6903fc45c324d05b62fa3698a3da85d59edf8a897afa0be194662402803f languageName: node linkType: hard @@ -12577,8 +12785,8 @@ __metadata: linkType: hard "aws-sdk@npm:^2.814.0": - version: 2.1692.0 - resolution: "aws-sdk@npm:2.1692.0" + version: 2.1693.0 + resolution: "aws-sdk@npm:2.1693.0" dependencies: buffer: "npm:4.9.2" events: "npm:1.1.1" @@ -12590,14 +12798,14 @@ __metadata: util: "npm:^0.12.4" uuid: "npm:8.0.0" xml2js: "npm:0.6.2" - checksum: 10c0/5123174cf9c7952f9f072789f2a95f1cb346a676652425a8c73dcda195181f8a8d947f4edea0056552a315bbd5126ed8bb71d0a38b16f337d168bf7bf63a5b0a + checksum: 10c0/bb29a700c2c668fc8c2d2738044ba5e5781451fe6168c60580b8e403292ee8317cd7eb1c6c16c0ed34a30d9af1c5c01375a2bd62a4b8075fdd0de1cf50875e31 languageName: node linkType: hard "axe-core@npm:^4.10.0": - version: 4.11.0 - resolution: "axe-core@npm:4.11.0" - checksum: 10c0/7d7020a568a824c303711858c2fcfe56d001d27e46c0c2ff75dc31b436cfddfd4857a301e70536cc9e64829d25338f7fb782102d23497ebdc66801e9900fc895 + version: 4.11.1 + resolution: "axe-core@npm:4.11.1" + checksum: 10c0/1e6997454b61c7c9a4d740f395952835dcf87f2c04fd81577217d68634d197d602c224f9e8f17b22815db4c117a2519980cfc8911fc0027c54a6d8ebca47c6a7 languageName: node linkType: hard @@ -12613,13 +12821,13 @@ __metadata: linkType: hard "axios@npm:^1.7.2, axios@npm:^1.8.3": - version: 1.13.2 - resolution: "axios@npm:1.13.2" + version: 1.13.4 + resolution: "axios@npm:1.13.4" dependencies: follow-redirects: "npm:^1.15.6" form-data: "npm:^4.0.4" proxy-from-env: "npm:^1.1.0" - checksum: 10c0/e8a42e37e5568ae9c7a28c348db0e8cf3e43d06fcbef73f0048669edfe4f71219664da7b6cc991b0c0f01c28a48f037c515263cb79be1f1ae8ff034cd813867b + checksum: 10c0/474c00b7d71f4de4ad562589dae6b615149df7c2583bbc5ebba96229f3f85bfb0775d23705338df072f12e48d3e85685c065a3cf6855d58968a672d19214c728 languageName: node linkType: hard @@ -12777,12 +12985,12 @@ __metadata: languageName: node linkType: hard -"baseline-browser-mapping@npm:^2.8.25": - version: 2.8.32 - resolution: "baseline-browser-mapping@npm:2.8.32" +"baseline-browser-mapping@npm:^2.9.0": + version: 2.9.19 + resolution: "baseline-browser-mapping@npm:2.9.19" bin: baseline-browser-mapping: dist/cli.js - checksum: 10c0/6c4aa0338ad177e946a27412de11769fb6474389a59cc03e13e0538d7285a94052a11525d46bb605ddb913a0c8a1180292d6f05cd4d6bc05bbf597c26bf5ce66 + checksum: 10c0/569928db78bcd081953d7db79e4243a59a579a34b4ae1806b9b42d3b7f84e5bc40e6e82ae4fa06e7bef8291bf747b33b3f9ef5d3c6e1e420cb129d9295536129 languageName: node linkType: hard @@ -12847,14 +13055,14 @@ __metadata: linkType: hard "bl@npm:^6.0.8": - version: 6.1.5 - resolution: "bl@npm:6.1.5" + version: 6.1.6 + resolution: "bl@npm:6.1.6" dependencies: "@types/readable-stream": "npm:^4.0.0" buffer: "npm:^6.0.3" inherits: "npm:^2.0.4" readable-stream: "npm:^4.2.0" - checksum: 10c0/80830f5e850fd4f1820d82ac397d2ea4a618f8bbbda8a5110aa35c883d4240db241cc5ad1852299be4eea7d232a47972f86198133679e886381b8472a4639171 + checksum: 10c0/91195dae603a389ffb7343c2c69722648d0d61998eac09f60cecab7c1f25500bf98babc21e5ec703dd3555d93a1aae8a0d1cdfcada4d23df75adc9e434daa45c languageName: node linkType: hard @@ -12865,23 +13073,23 @@ __metadata: languageName: node linkType: hard -"body-parser@npm:1.20.3": - version: 1.20.3 - resolution: "body-parser@npm:1.20.3" +"body-parser@npm:~1.20.3": + version: 1.20.4 + resolution: "body-parser@npm:1.20.4" dependencies: - bytes: "npm:3.1.2" + bytes: "npm:~3.1.2" content-type: "npm:~1.0.5" debug: "npm:2.6.9" depd: "npm:2.0.0" - destroy: "npm:1.2.0" - http-errors: "npm:2.0.0" - iconv-lite: "npm:0.4.24" - on-finished: "npm:2.4.1" - qs: "npm:6.13.0" - raw-body: "npm:2.5.2" + destroy: "npm:~1.2.0" + http-errors: "npm:~2.0.1" + iconv-lite: "npm:~0.4.24" + on-finished: "npm:~2.4.1" + qs: "npm:~6.14.0" + raw-body: "npm:~2.5.3" type-is: "npm:~1.6.18" - unpipe: "npm:1.0.0" - checksum: 10c0/0a9a93b7518f222885498dcecaad528cf010dd109b071bf471c93def4bfe30958b83e03496eb9c1ad4896db543d999bb62be1a3087294162a88cfa1b42c16310 + unpipe: "npm:~1.0.0" + checksum: 10c0/569c1e896297d1fcd8f34026c8d0ab70b90d45343c15c5d8dff5de2bad08125fc1e2f8c2f3f4c1ac6c0caaad115218202594d37dcb8d89d9b5dcae1c2b736aa9 languageName: node linkType: hard @@ -12929,30 +13137,30 @@ __metadata: languageName: node linkType: hard -"broker-factory@npm:^3.1.10": - version: 3.1.10 - resolution: "broker-factory@npm:3.1.10" +"broker-factory@npm:^3.1.13": + version: 3.1.13 + resolution: "broker-factory@npm:3.1.13" dependencies: - "@babel/runtime": "npm:^7.28.4" - fast-unique-numbers: "npm:^9.0.24" + "@babel/runtime": "npm:^7.28.6" + fast-unique-numbers: "npm:^9.0.26" tslib: "npm:^2.8.1" - worker-factory: "npm:^7.0.46" - checksum: 10c0/78b7812a1dbc0d8020f19a6171f3bf77c5e9abfefb0fbb4749b39b49ef3d48dba4f19fd093901ff92402a5b3d30d53f1ddf971393b6744ddc93c8696b4aa6e46 + worker-factory: "npm:^7.0.48" + checksum: 10c0/87cf2ba822975d74fd0a67a7aa24c4d70f27975329e29fae86eb30331bee6fb7facc5756b6284ed4422e740ca34912a245dd1f6a3ade9ff1cbc8c82567070ad1 languageName: node linkType: hard -"browserslist@npm:^4.24.0, browserslist@npm:^4.27.0": - version: 4.28.0 - resolution: "browserslist@npm:4.28.0" +"browserslist@npm:^4.24.0, browserslist@npm:^4.28.1": + version: 4.28.1 + resolution: "browserslist@npm:4.28.1" dependencies: - baseline-browser-mapping: "npm:^2.8.25" - caniuse-lite: "npm:^1.0.30001754" - electron-to-chromium: "npm:^1.5.249" + baseline-browser-mapping: "npm:^2.9.0" + caniuse-lite: "npm:^1.0.30001759" + electron-to-chromium: "npm:^1.5.263" node-releases: "npm:^2.0.27" - update-browserslist-db: "npm:^1.1.4" + update-browserslist-db: "npm:^1.2.0" bin: browserslist: cli.js - checksum: 10c0/4284fd568f7d40a496963083860d488cb2a89fb055b6affd316bebc59441fec938e090b3e62c0ee065eb0bc88cd1bc145f4300a16c75f3f565621c5823715ae1 + checksum: 10c0/545a5fa9d7234e3777a7177ec1e9134bb2ba60a69e6b95683f6982b1473aad347c77c1264ccf2ac5dea609a9731fbfbda6b85782bdca70f80f86e28a402504bd languageName: node linkType: hard @@ -13045,7 +13253,7 @@ __metadata: languageName: node linkType: hard -"bytes@npm:3.1.2": +"bytes@npm:~3.1.2": version: 3.1.2 resolution: "bytes@npm:3.1.2" checksum: 10c0/76d1c43cbd602794ad8ad2ae94095cddeb1de78c5dddaa7005c51af10b0176c69971a6d88e805a90c2b6550d76636e43c40d8427a808b8645ede885de4a0358e @@ -13203,10 +13411,10 @@ __metadata: languageName: node linkType: hard -"caniuse-lite@npm:^1.0.30001579, caniuse-lite@npm:^1.0.30001754": - version: 1.0.30001757 - resolution: "caniuse-lite@npm:1.0.30001757" - checksum: 10c0/3ccb71fa2bf1f8c96ff1bf9b918b08806fed33307e20a3ce3259155fda131eaf96cfcd88d3d309c8fd7f8285cc71d89a3b93648a1c04814da31c301f98508d42 +"caniuse-lite@npm:^1.0.30001579, caniuse-lite@npm:^1.0.30001759, caniuse-lite@npm:^1.0.30001766": + version: 1.0.30001766 + resolution: "caniuse-lite@npm:1.0.30001766" + checksum: 10c0/cecc8f9a3758c486fc68434a3cca5f4ca7077db5ac9cdb1689786abf63c4aa9891bf70f2df2c3e549d5e284e8da36a218d0e131ebb26dd59280bc99db49640f6 languageName: node linkType: hard @@ -13236,12 +13444,12 @@ __metadata: linkType: hard "cesium@npm:^1.131.0": - version: 1.135.0 - resolution: "cesium@npm:1.135.0" + version: 1.137.0 + resolution: "cesium@npm:1.137.0" dependencies: - "@cesium/engine": "npm:^22.0.0" - "@cesium/widgets": "npm:^14.0.0" - checksum: 10c0/fb97c990e5e29e6ca175dd1e06e4e64edabd6ea48f8bd7e7d4f7b6b9d1a850cde7a59113d018a4dc420e3d5a636108e9643ea0d054bb7f63f0c09250445a3b27 + "@cesium/engine": "npm:^22.2.0" + "@cesium/widgets": "npm:^14.2.0" + checksum: 10c0/cb99c508f501789a1ebf474eddb425f0495a3a8785970cc68ad3736919c703825bf026098ea3562a171cb6ddc5514abce45fb44faf8942cb92e853e06ad3df63 languageName: node linkType: hard @@ -13416,9 +13624,9 @@ __metadata: linkType: hard "ci-info@npm:^4.0.0, ci-info@npm:^4.1.0": - version: 4.3.1 - resolution: "ci-info@npm:4.3.1" - checksum: 10c0/7dd82000f514d76ddfe7775e4cb0d66e5c638f5fa0e2a3be29557e898da0d32ac04f231217d414d07fb968b1fbc6d980ee17ddde0d2c516f23da9cfff608f6c1 + version: 4.4.0 + resolution: "ci-info@npm:4.4.0" + checksum: 10c0/44156201545b8dde01aa8a09ee2fe9fc7a73b1bef9adbd4606c9f61c8caeeb73fb7a575c88b0443f7b4edb5ee45debaa59ed54ba5f99698339393ca01349eb3a languageName: node linkType: hard @@ -13610,6 +13818,13 @@ __metadata: languageName: node linkType: hard +"clone@npm:2.x": + version: 2.1.2 + resolution: "clone@npm:2.1.2" + checksum: 10c0/ed0601cd0b1606bc7d82ee7175b97e68d1dd9b91fd1250a3617b38d34a095f8ee0431d40a1a611122dcccb4f93295b4fdb94942aa763392b5fe44effa50c2d5e + languageName: node + linkType: hard + "clone@npm:^1.0.2": version: 1.0.4 resolution: "clone@npm:1.0.4" @@ -13819,13 +14034,13 @@ __metadata: linkType: hard "constructs@npm:^10.3.0": - version: 10.4.3 - resolution: "constructs@npm:10.4.3" - checksum: 10c0/8041fe594de621b917e1903fe7b1e4b96ec07e2337e9fab590b351703bd635ae4adb4d1b0fd96df1cc6ba8c189ca346120ec1700bef1200e6e1a7c42e4df2915 + version: 10.4.5 + resolution: "constructs@npm:10.4.5" + checksum: 10c0/49a8a4137340a731a83db89a854252513188f1b4ff7a7ae85fb20b836a3ca7ea0fae48c1f7adcea205b13d1e0a0a45be75e28052bad5bb52c7a61258af3d2435 languageName: node linkType: hard -"content-disposition@npm:0.5.4": +"content-disposition@npm:~0.5.4": version: 0.5.4 resolution: "content-disposition@npm:0.5.4" dependencies: @@ -13948,21 +14163,14 @@ __metadata: languageName: node linkType: hard -"cookie-signature@npm:1.0.6": - version: 1.0.6 - resolution: "cookie-signature@npm:1.0.6" - checksum: 10c0/b36fd0d4e3fef8456915fcf7742e58fbfcc12a17a018e0eb9501c9d5ef6893b596466f03b0564b81af29ff2538fd0aa4b9d54fe5ccbfb4c90ea50ad29fe2d221 - languageName: node - linkType: hard - -"cookie@npm:0.7.1": - version: 0.7.1 - resolution: "cookie@npm:0.7.1" - checksum: 10c0/5de60c67a410e7c8dc8a46a4b72eb0fe925871d057c9a5d2c0e8145c4270a4f81076de83410c4d397179744b478e33cd80ccbcc457abf40a9409ad27dcd21dde +"cookie-signature@npm:~1.0.6": + version: 1.0.7 + resolution: "cookie-signature@npm:1.0.7" + checksum: 10c0/e7731ad2995ae2efeed6435ec1e22cdd21afef29d300c27281438b1eab2bae04ef0d1a203928c0afec2cee72aa36540b8747406ebe308ad23c8e8cc3c26c9c51 languageName: node linkType: hard -"cookie@npm:~0.7.2": +"cookie@npm:~0.7.1, cookie@npm:~0.7.2": version: 0.7.2 resolution: "cookie@npm:0.7.2" checksum: 10c0/9596e8ccdbf1a3a88ae02cf5ee80c1c50959423e1022e4e60b91dd87c622af1da309253d8abdb258fb5e3eacb4f08e579dc58b4897b8087574eee0fd35dfa5d2 @@ -13977,9 +14185,9 @@ __metadata: linkType: hard "core-js@npm:^3.6.4": - version: 3.47.0 - resolution: "core-js@npm:3.47.0" - checksum: 10c0/9b1a7088b7c660c7b8f1d4c90bb1816a8d5352ebdcb7bc742e3a0e4eb803316b5aa17bacb8769522342196351a5430178f46914644f2bfdb94ce0ced3c7fd523 + version: 3.48.0 + resolution: "core-js@npm:3.48.0" + checksum: 10c0/6c3115900dd7cce9fab74c07cb262b3517fc250d02e8fd2ff34f80bda5f43a28482a909dbc4491dc6e1ddd9807f57a7df4c3eeecd1f202b7d9c8bfe25f9d680c languageName: node linkType: hard @@ -13991,12 +14199,12 @@ __metadata: linkType: hard "cors@npm:^2.8.5, cors@npm:~2.8.5": - version: 2.8.5 - resolution: "cors@npm:2.8.5" + version: 2.8.6 + resolution: "cors@npm:2.8.6" dependencies: object-assign: "npm:^4" vary: "npm:^1" - checksum: 10c0/373702b7999409922da80de4a61938aabba6929aea5b6fd9096fefb9e8342f626c0ebd7507b0e8b0b311380744cc985f27edebc0a26e0ddb784b54e1085de761 + checksum: 10c0/ab2bc57b8af8ef8476682a59647f7c55c1a7d406b559ac06119aa1c5f70b96d35036864d197b24cf86e228e4547231088f1f94ca05061dbb14d89cc0bc9d4cab languageName: node linkType: hard @@ -14195,7 +14403,7 @@ __metadata: languageName: node linkType: hard -"dayjs@npm:^1.11.13": +"dayjs@npm:^1.11.13, dayjs@npm:^1.11.19": version: 1.11.19 resolution: "dayjs@npm:1.11.19" checksum: 10c0/7d8a6074a343f821f81ea284d700bd34ea6c7abbe8d93bce7aba818948957c1b7f56131702e5e890a5622cdfc05dcebe8aed0b8313bdc6838a594d7846b0b000 @@ -14243,7 +14451,7 @@ __metadata: languageName: node linkType: hard -"debug@npm:4, debug@npm:^4, debug@npm:^4.1.0, debug@npm:^4.1.1, debug@npm:^4.3.1, debug@npm:^4.3.2, debug@npm:^4.3.4, debug@npm:^4.3.5, debug@npm:^4.4.0, debug@npm:^4.4.1": +"debug@npm:4, debug@npm:^4, debug@npm:^4.1.0, debug@npm:^4.1.1, debug@npm:^4.3.1, debug@npm:^4.3.2, debug@npm:^4.3.4, debug@npm:^4.3.5, debug@npm:^4.4.0, debug@npm:^4.4.1, debug@npm:^4.4.3, debug@npm:~4.4.1": version: 4.4.3 resolution: "debug@npm:4.4.3" dependencies: @@ -14276,18 +14484,6 @@ __metadata: languageName: node linkType: hard -"debug@npm:~4.3.1, debug@npm:~4.3.2, debug@npm:~4.3.4": - version: 4.3.7 - resolution: "debug@npm:4.3.7" - dependencies: - ms: "npm:^2.1.3" - peerDependenciesMeta: - supports-color: - optional: true - checksum: 10c0/1471db19c3b06d485a622d62f65947a19a23fbd0dd73f7fd3eafb697eec5360cde447fb075919987899b1a2096e85d35d4eb5a4de09a57600ac9cf7e6c8e768b - languageName: node - linkType: hard - "decamelize-keys@npm:^1.1.0": version: 1.1.1 resolution: "decamelize-keys@npm:1.1.1" @@ -14317,15 +14513,15 @@ __metadata: languageName: node linkType: hard -"dedent@npm:^1.6.0": - version: 1.7.0 - resolution: "dedent@npm:1.7.0" +"dedent@npm:^1.7.0": + version: 1.7.1 + resolution: "dedent@npm:1.7.1" peerDependencies: babel-plugin-macros: ^3.1.0 peerDependenciesMeta: babel-plugin-macros: optional: true - checksum: 10c0/c5e8a8beb5072bd5e520cb64b27a82d7ec3c2a63ee5ce47dbc2a05d5b7700cefd77a992a752cd0a8b1d979c1db06b14fb9486e805f3ad6088eda6e07cd9bf2d5 + checksum: 10c0/ae29ec1c5bd5216c698c9f23acaa5b720260fd4cef3c8b5af887eb5f8c9e6fdd5fed8668767437b4efea35e2991bd798987717633411a1734807c28255769b78 languageName: node linkType: hard @@ -14410,7 +14606,7 @@ __metadata: languageName: node linkType: hard -"depd@npm:2.0.0": +"depd@npm:2.0.0, depd@npm:~2.0.0": version: 2.0.0 resolution: "depd@npm:2.0.0" checksum: 10c0/58bd06ec20e19529b06f7ad07ddab60e504d9e0faca4bd23079fac2d279c3594334d736508dc350e06e510aba5e22e4594483b3a6562ce7c17dd797f4cc4ad2c @@ -14431,7 +14627,7 @@ __metadata: languageName: node linkType: hard -"destroy@npm:1.2.0": +"destroy@npm:1.2.0, destroy@npm:~1.2.0": version: 1.2.0 resolution: "destroy@npm:1.2.0" checksum: 10c0/bd7633942f57418f5a3b80d5cb53898127bcf53e24cdf5d5f4396be471417671f0fee48a4ebe9a1e9defbde2a31280011af58a57e090ff822f589b443ed4e643 @@ -14463,15 +14659,6 @@ __metadata: languageName: node linkType: hard -"detect-libc@npm:^1.0.3": - version: 1.0.3 - resolution: "detect-libc@npm:1.0.3" - bin: - detect-libc: ./bin/detect-libc.js - checksum: 10c0/4da0deae9f69e13bc37a0902d78bf7169480004b1fed3c19722d56cff578d16f0e11633b7fbf5fb6249181236c72e90024cbd68f0b9558ae06e281f47326d50d - languageName: node - linkType: hard - "detect-libc@npm:^2.0.3": version: 2.1.2 resolution: "detect-libc@npm:2.1.2" @@ -14501,16 +14688,16 @@ __metadata: linkType: hard "diff@npm:^4.0.1": - version: 4.0.2 - resolution: "diff@npm:4.0.2" - checksum: 10c0/81b91f9d39c4eaca068eb0c1eb0e4afbdc5bb2941d197f513dd596b820b956fef43485876226d65d497bebc15666aa2aa82c679e84f65d5f2bfbf14ee46e32c1 + version: 4.0.4 + resolution: "diff@npm:4.0.4" + checksum: 10c0/855fb70b093d1d9643ddc12ea76dca90dc9d9cdd7f82c08ee8b9325c0dc5748faf3c82e2047ced5dcaa8b26e58f7903900be2628d0380a222c02d79d8de385df languageName: node linkType: hard -"diff@npm:^7.0.0": - version: 7.0.0 - resolution: "diff@npm:7.0.0" - checksum: 10c0/251fd15f85ffdf814cfc35a728d526b8d2ad3de338dcbd011ac6e57c461417090766b28995f8ff733135b5fbc3699c392db1d5e27711ac4e00244768cd1d577b +"diff@npm:^8.0.3": + version: 8.0.3 + resolution: "diff@npm:8.0.3" + checksum: 10c0/d29321c70d3545fdcb56c5fdd76028c3f04c012462779e062303d4c3c531af80d2c360c26b871e6e2b9a971d2422d47e1779a859106c4cac4b5d2d143df70e20 languageName: node linkType: hard @@ -14558,15 +14745,15 @@ __metadata: languageName: node linkType: hard -"dompurify@npm:^3.0.2": - version: 3.3.0 - resolution: "dompurify@npm:3.3.0" +"dompurify@npm:^3.3.0": + version: 3.3.1 + resolution: "dompurify@npm:3.3.1" dependencies: "@types/trusted-types": "npm:^2.0.7" dependenciesMeta: "@types/trusted-types": optional: true - checksum: 10c0/66b1787b0bc8250d8f58e13284cf7f5f6bb400a0a55515e7a2a030316a4bb0d8306fdb669c17ed86ed58ff7e53c62b5da4488c2f261d11c58870fe01b8fcc486 + checksum: 10c0/fa0a8c55a436ba0d54389195e3d2337e311f56de709a2fc9efc98dbbc7746fa53bb4b74b6ac043b77a279a8f2ebd8685f0ebaa6e58c9e32e92051d529bc0baf8 languageName: node linkType: hard @@ -14605,7 +14792,7 @@ __metadata: languageName: node linkType: hard -"dotenv@npm:^16.4.5, dotenv@npm:^16.4.7": +"dotenv@npm:^16.4.5, dotenv@npm:^16.6.1": version: 16.6.1 resolution: "dotenv@npm:16.6.1" checksum: 10c0/15ce56608326ea0d1d9414a5c8ee6dcf0fffc79d2c16422b4ac2268e7e2d76ff5a572d37ffe747c377de12005f14b3cc22361e79fc7f1061cce81f77d2c973dc @@ -14676,10 +14863,10 @@ __metadata: languageName: node linkType: hard -"electron-to-chromium@npm:^1.5.249": - version: 1.5.262 - resolution: "electron-to-chromium@npm:1.5.262" - checksum: 10c0/4e4e3a307f662991145fd0bbd9045e17af547987a9dc33c30239b1a7b60874989f9b71c636b6c7d2b9052777344d4358a7cf76924203873a392ea1568bf88e5d +"electron-to-chromium@npm:^1.5.263": + version: 1.5.283 + resolution: "electron-to-chromium@npm:1.5.283" + checksum: 10c0/2ff8670d94ec49d2b12ae5d8ffb0208dde498d8a112ebb8016aac90171c7ee0860c7d8f78269afd3a3b7cba6dece3c49dd350cd240cc0f9a73a804699746798e languageName: node linkType: hard @@ -14697,13 +14884,6 @@ __metadata: languageName: node linkType: hard -"encodeurl@npm:~1.0.2": - version: 1.0.2 - resolution: "encodeurl@npm:1.0.2" - checksum: 10c0/f6c2387379a9e7c1156c1c3d4f9cb7bb11cf16dd4c1682e1f6746512564b053df5781029b6061296832b59fb22f459dbe250386d217c2f6e203601abb2ee0bec - languageName: node - linkType: hard - "encodeurl@npm:~2.0.0": version: 2.0.0 resolution: "encodeurl@npm:2.0.0" @@ -14730,15 +14910,15 @@ __metadata: linkType: hard "engine.io-client@npm:~6.6.1": - version: 6.6.3 - resolution: "engine.io-client@npm:6.6.3" + version: 6.6.4 + resolution: "engine.io-client@npm:6.6.4" dependencies: "@socket.io/component-emitter": "npm:~3.1.0" - debug: "npm:~4.3.1" + debug: "npm:~4.4.1" engine.io-parser: "npm:~5.2.1" - ws: "npm:~8.17.1" + ws: "npm:~8.18.3" xmlhttprequest-ssl: "npm:~2.1.1" - checksum: 10c0/ebe0b1da6831d5a68564f9ffb80efe682da4f0538488eaffadf0bcf5177a8b4472cdb01d18a9f20dece2f8de30e2df951eb4635bef2f1b492e9f08a523db91a0 + checksum: 10c0/d90bc32d614f67db9c198d1c26a787529f3038a7429c75e677f5495938cc45f9e89d435e8860bcfcc01db410e21d2f245b914f2fcbdb03ffd50d30f2aeec5143 languageName: node linkType: hard @@ -14750,8 +14930,8 @@ __metadata: linkType: hard "engine.io@npm:~6.6.0": - version: 6.6.4 - resolution: "engine.io@npm:6.6.4" + version: 6.6.5 + resolution: "engine.io@npm:6.6.5" dependencies: "@types/cors": "npm:^2.8.12" "@types/node": "npm:>=10.0.0" @@ -14759,10 +14939,10 @@ __metadata: base64id: "npm:2.0.0" cookie: "npm:~0.7.2" cors: "npm:~2.8.5" - debug: "npm:~4.3.1" + debug: "npm:~4.4.1" engine.io-parser: "npm:~5.2.1" - ws: "npm:~8.17.1" - checksum: 10c0/845761163f8ea7962c049df653b75dafb6b3693ad6f59809d4474751d7b0392cbf3dc2730b8a902ff93677a91fd28711d34ab29efd348a8a4b49c6b0724021ab + ws: "npm:~8.18.3" + checksum: 10c0/0934970af5b31e144c33d9da6523542fac0eabbb36e9528dc6bbf5831df55752df2c50b047d7fd3b24f66d82896867215b05dae1043ed756e55a6d18108023ad languageName: node linkType: hard @@ -14816,9 +14996,9 @@ __metadata: languageName: node linkType: hard -"es-abstract@npm:^1.17.5, es-abstract@npm:^1.23.2, es-abstract@npm:^1.23.3, es-abstract@npm:^1.23.5, es-abstract@npm:^1.23.6, es-abstract@npm:^1.23.9, es-abstract@npm:^1.24.0": - version: 1.24.0 - resolution: "es-abstract@npm:1.24.0" +"es-abstract@npm:^1.17.5, es-abstract@npm:^1.23.2, es-abstract@npm:^1.23.3, es-abstract@npm:^1.23.5, es-abstract@npm:^1.23.6, es-abstract@npm:^1.23.9, es-abstract@npm:^1.24.0, es-abstract@npm:^1.24.1": + version: 1.24.1 + resolution: "es-abstract@npm:1.24.1" dependencies: array-buffer-byte-length: "npm:^1.0.2" arraybuffer.prototype.slice: "npm:^1.0.4" @@ -14874,7 +15054,7 @@ __metadata: typed-array-length: "npm:^1.0.7" unbox-primitive: "npm:^1.1.0" which-typed-array: "npm:^1.1.19" - checksum: 10c0/b256e897be32df5d382786ce8cce29a1dd8c97efbab77a26609bd70f2ed29fbcfc7a31758cb07488d532e7ccccdfca76c1118f2afe5a424cdc05ca007867c318 + checksum: 10c0/fca062ef8b5daacf743732167d319a212d45cb655b0bb540821d38d715416ae15b04b84fc86da9e2c89135aa7b337337b6c867f84dcde698d75d55688d5d765c languageName: node linkType: hard @@ -14893,26 +15073,26 @@ __metadata: linkType: hard "es-iterator-helpers@npm:^1.2.1": - version: 1.2.1 - resolution: "es-iterator-helpers@npm:1.2.1" + version: 1.2.2 + resolution: "es-iterator-helpers@npm:1.2.2" dependencies: call-bind: "npm:^1.0.8" - call-bound: "npm:^1.0.3" + call-bound: "npm:^1.0.4" define-properties: "npm:^1.2.1" - es-abstract: "npm:^1.23.6" + es-abstract: "npm:^1.24.1" es-errors: "npm:^1.3.0" - es-set-tostringtag: "npm:^2.0.3" + es-set-tostringtag: "npm:^2.1.0" function-bind: "npm:^1.1.2" - get-intrinsic: "npm:^1.2.6" + get-intrinsic: "npm:^1.3.0" globalthis: "npm:^1.0.4" gopd: "npm:^1.2.0" has-property-descriptors: "npm:^1.0.2" has-proto: "npm:^1.2.0" has-symbols: "npm:^1.1.0" internal-slot: "npm:^1.1.0" - iterator.prototype: "npm:^1.1.4" + iterator.prototype: "npm:^1.1.5" safe-array-concat: "npm:^1.1.3" - checksum: 10c0/97e3125ca472d82d8aceea11b790397648b52c26d8768ea1c1ee6309ef45a8755bb63225a43f3150c7591cffc17caf5752459f1e70d583b4184370a8f04ebd2f + checksum: 10c0/1ced8abf845a45e660dd77b5f3a64358421df70e4a0bd1897d5ddfefffed8409a6a2ca21241b9367e639df9eca74abc1c678b3020bffe6bee1f1826393658ddb languageName: node linkType: hard @@ -14925,7 +15105,7 @@ __metadata: languageName: node linkType: hard -"es-set-tostringtag@npm:^2.0.3, es-set-tostringtag@npm:^2.1.0": +"es-set-tostringtag@npm:^2.1.0": version: 2.1.0 resolution: "es-set-tostringtag@npm:2.1.0" dependencies: @@ -15040,36 +15220,36 @@ __metadata: languageName: node linkType: hard -"esbuild@npm:~0.25.0": - version: 0.25.12 - resolution: "esbuild@npm:0.25.12" - dependencies: - "@esbuild/aix-ppc64": "npm:0.25.12" - "@esbuild/android-arm": "npm:0.25.12" - "@esbuild/android-arm64": "npm:0.25.12" - "@esbuild/android-x64": "npm:0.25.12" - "@esbuild/darwin-arm64": "npm:0.25.12" - "@esbuild/darwin-x64": "npm:0.25.12" - "@esbuild/freebsd-arm64": "npm:0.25.12" - "@esbuild/freebsd-x64": "npm:0.25.12" - "@esbuild/linux-arm": "npm:0.25.12" - "@esbuild/linux-arm64": "npm:0.25.12" - "@esbuild/linux-ia32": "npm:0.25.12" - "@esbuild/linux-loong64": "npm:0.25.12" - "@esbuild/linux-mips64el": "npm:0.25.12" - "@esbuild/linux-ppc64": "npm:0.25.12" - "@esbuild/linux-riscv64": "npm:0.25.12" - "@esbuild/linux-s390x": "npm:0.25.12" - "@esbuild/linux-x64": "npm:0.25.12" - "@esbuild/netbsd-arm64": "npm:0.25.12" - "@esbuild/netbsd-x64": "npm:0.25.12" - "@esbuild/openbsd-arm64": "npm:0.25.12" - "@esbuild/openbsd-x64": "npm:0.25.12" - "@esbuild/openharmony-arm64": "npm:0.25.12" - "@esbuild/sunos-x64": "npm:0.25.12" - "@esbuild/win32-arm64": "npm:0.25.12" - "@esbuild/win32-ia32": "npm:0.25.12" - "@esbuild/win32-x64": "npm:0.25.12" +"esbuild@npm:~0.27.0": + version: 0.27.2 + resolution: "esbuild@npm:0.27.2" + dependencies: + "@esbuild/aix-ppc64": "npm:0.27.2" + "@esbuild/android-arm": "npm:0.27.2" + "@esbuild/android-arm64": "npm:0.27.2" + "@esbuild/android-x64": "npm:0.27.2" + "@esbuild/darwin-arm64": "npm:0.27.2" + "@esbuild/darwin-x64": "npm:0.27.2" + "@esbuild/freebsd-arm64": "npm:0.27.2" + "@esbuild/freebsd-x64": "npm:0.27.2" + "@esbuild/linux-arm": "npm:0.27.2" + "@esbuild/linux-arm64": "npm:0.27.2" + "@esbuild/linux-ia32": "npm:0.27.2" + "@esbuild/linux-loong64": "npm:0.27.2" + "@esbuild/linux-mips64el": "npm:0.27.2" + "@esbuild/linux-ppc64": "npm:0.27.2" + "@esbuild/linux-riscv64": "npm:0.27.2" + "@esbuild/linux-s390x": "npm:0.27.2" + "@esbuild/linux-x64": "npm:0.27.2" + "@esbuild/netbsd-arm64": "npm:0.27.2" + "@esbuild/netbsd-x64": "npm:0.27.2" + "@esbuild/openbsd-arm64": "npm:0.27.2" + "@esbuild/openbsd-x64": "npm:0.27.2" + "@esbuild/openharmony-arm64": "npm:0.27.2" + "@esbuild/sunos-x64": "npm:0.27.2" + "@esbuild/win32-arm64": "npm:0.27.2" + "@esbuild/win32-ia32": "npm:0.27.2" + "@esbuild/win32-x64": "npm:0.27.2" dependenciesMeta: "@esbuild/aix-ppc64": optional: true @@ -15125,7 +15305,7 @@ __metadata: optional: true bin: esbuild: bin/esbuild - checksum: 10c0/c205357531423220a9de8e1e6c6514242bc9b1666e762cd67ccdf8fdfdc3f1d0bd76f8d9383958b97ad4c953efdb7b6e8c1f9ca5951cd2b7c5235e8755b34a6b + checksum: 10c0/cf83f626f55500f521d5fe7f4bc5871bec240d3deb2a01fbd379edc43b3664d1167428738a5aad8794b35d1cca985c44c375b1cd38a2ca613c77ced2c83aafcd languageName: node linkType: hard @@ -15193,14 +15373,14 @@ __metadata: linkType: hard "eslint-config-turbo@npm:latest": - version: 2.6.1 - resolution: "eslint-config-turbo@npm:2.6.1" + version: 2.8.1 + resolution: "eslint-config-turbo@npm:2.8.1" dependencies: - eslint-plugin-turbo: "npm:2.6.1" + eslint-plugin-turbo: "npm:2.8.1" peerDependencies: eslint: ">6.6.0" turbo: ">2.0.0" - checksum: 10c0/043c2a24d1b316ee810a128f33ce30f3d4d7be591d86d06e164ea3ae6eb625f727212deb96c65099176958a4a97bb68f32e98f6164ca6d97143b2dc70fc34a5f + checksum: 10c0/d2a6a3f6b7c24bf3ec9d041929a11bcfa30cfa47fa5a8906679296bc53613702e716caffd4966b9b4f12bbead5e541f081535efa6fb17e619e31bfff67a4f627 languageName: node linkType: hard @@ -15306,11 +15486,11 @@ __metadata: linkType: hard "eslint-plugin-prettier@npm:^5.1.3, eslint-plugin-prettier@npm:^5.2.1": - version: 5.5.4 - resolution: "eslint-plugin-prettier@npm:5.5.4" + version: 5.5.5 + resolution: "eslint-plugin-prettier@npm:5.5.5" dependencies: - prettier-linter-helpers: "npm:^1.0.0" - synckit: "npm:^0.11.7" + prettier-linter-helpers: "npm:^1.0.1" + synckit: "npm:^0.11.12" peerDependencies: "@types/eslint": ">=8.0.0" eslint: ">=8.0.0" @@ -15321,7 +15501,7 @@ __metadata: optional: true eslint-config-prettier: optional: true - checksum: 10c0/5cc780e0ab002f838ad8057409e86de4ff8281aa2704a50fa8511abff87028060c2e45741bc9cbcbd498712e8d189de8026e70aed9e20e50fe5ba534ee5a8442 + checksum: 10c0/091449b28c77ab2efbbf674e977181f2c8453d95a4df68218bddd87a4dfaa9ecc4eda60164e416f5986fb5d577e66e8d8e1e23d81e8555f8d735375598b03257 languageName: node linkType: hard @@ -15414,15 +15594,15 @@ __metadata: languageName: node linkType: hard -"eslint-plugin-turbo@npm:2.6.1": - version: 2.6.1 - resolution: "eslint-plugin-turbo@npm:2.6.1" +"eslint-plugin-turbo@npm:2.8.1": + version: 2.8.1 + resolution: "eslint-plugin-turbo@npm:2.8.1" dependencies: dotenv: "npm:16.0.3" peerDependencies: eslint: ">6.6.0" turbo: ">2.0.0" - checksum: 10c0/2d6d33b4f17a9d420f729f9cbf2d22f6ee5f87b0d879b0c3c5ca2afbac7808df8ede97da7d7b013b7671c553ee63918b77158fa7ba5584fa5f7c62580cbc2a9a + checksum: 10c0/327d0c8a921833c0920211a5b93153e06f6183ad6bbe847d461ee38a76a31e65355f4a686e56c9b10d203038504637171af926215a76575a8d964481b5b19586 languageName: node linkType: hard @@ -15545,11 +15725,11 @@ __metadata: linkType: hard "esquery@npm:^1.4.2": - version: 1.6.0 - resolution: "esquery@npm:1.6.0" + version: 1.7.0 + resolution: "esquery@npm:1.7.0" dependencies: estraverse: "npm:^5.1.0" - checksum: 10c0/cb9065ec605f9da7a76ca6dadb0619dfb611e37a81e318732977d90fab50a256b95fee2d925fba7c2f3f0523aa16f91587246693bc09bc34d5a59575fe6e93d2 + checksum: 10c0/77d5173db450b66f3bc685d11af4c90cffeedb340f34a39af96d43509a335ce39c894fd79233df32d38f5e4e219fa0f7076f6ec90bae8320170ba082c0db4793 languageName: node linkType: hard @@ -15605,9 +15785,9 @@ __metadata: linkType: hard "eventemitter3@npm:^5.0.1": - version: 5.0.1 - resolution: "eventemitter3@npm:5.0.1" - checksum: 10c0/4ba5c00c506e6c786b4d6262cfbce90ddc14c10d4667e5c83ae993c9de88aa856033994dd2b35b83e8dc1170e224e66a319fa80adc4c32adcd2379bbc75da814 + version: 5.0.4 + resolution: "eventemitter3@npm:5.0.4" + checksum: 10c0/575b8cac8d709e1473da46f8f15ef311b57ff7609445a7c71af5cd42598583eee6f098fa7a593e30f27e94b8865642baa0689e8fa97c016f742abdb3b1bf6d9a languageName: node linkType: hard @@ -15703,8 +15883,8 @@ __metadata: linkType: hard "execa@npm:^9.5.1": - version: 9.6.0 - resolution: "execa@npm:9.6.0" + version: 9.6.1 + resolution: "execa@npm:9.6.1" dependencies: "@sindresorhus/merge-streams": "npm:^4.0.0" cross-spawn: "npm:^7.0.6" @@ -15718,7 +15898,7 @@ __metadata: signal-exit: "npm:^4.1.0" strip-final-newline: "npm:^4.0.0" yoctocolors: "npm:^2.1.1" - checksum: 10c0/2c44a33142f77d3a6a590a3b769b49b27029a76768593bac1f26fed4dd1330e9c189ee61eba6a8c990fb77e37286c68c7445472ebf24c22b31e9ff320e73d7ac + checksum: 10c0/636b36585306a3c8bc3a9d7b25d2d915fb06d8c9b9b02a804280d62562de3b34535affc1b7702b039320e0953daa6545a073f3c4b63fe974c1fe11336c56b467 languageName: node linkType: hard @@ -15730,41 +15910,41 @@ __metadata: linkType: hard "express@npm:^4.18.2, express@npm:^4.19.2": - version: 4.21.2 - resolution: "express@npm:4.21.2" + version: 4.22.1 + resolution: "express@npm:4.22.1" dependencies: accepts: "npm:~1.3.8" array-flatten: "npm:1.1.1" - body-parser: "npm:1.20.3" - content-disposition: "npm:0.5.4" + body-parser: "npm:~1.20.3" + content-disposition: "npm:~0.5.4" content-type: "npm:~1.0.4" - cookie: "npm:0.7.1" - cookie-signature: "npm:1.0.6" + cookie: "npm:~0.7.1" + cookie-signature: "npm:~1.0.6" debug: "npm:2.6.9" depd: "npm:2.0.0" encodeurl: "npm:~2.0.0" escape-html: "npm:~1.0.3" etag: "npm:~1.8.1" - finalhandler: "npm:1.3.1" - fresh: "npm:0.5.2" - http-errors: "npm:2.0.0" + finalhandler: "npm:~1.3.1" + fresh: "npm:~0.5.2" + http-errors: "npm:~2.0.0" merge-descriptors: "npm:1.0.3" methods: "npm:~1.1.2" - on-finished: "npm:2.4.1" + on-finished: "npm:~2.4.1" parseurl: "npm:~1.3.3" - path-to-regexp: "npm:0.1.12" + path-to-regexp: "npm:~0.1.12" proxy-addr: "npm:~2.0.7" - qs: "npm:6.13.0" + qs: "npm:~6.14.0" range-parser: "npm:~1.2.1" safe-buffer: "npm:5.2.1" - send: "npm:0.19.0" - serve-static: "npm:1.16.2" + send: "npm:~0.19.0" + serve-static: "npm:~1.16.2" setprototypeof: "npm:1.2.0" - statuses: "npm:2.0.1" + statuses: "npm:~2.0.1" type-is: "npm:~1.6.18" utils-merge: "npm:1.0.1" vary: "npm:~1.1.2" - checksum: 10c0/38168fd0a32756600b56e6214afecf4fc79ec28eca7f7a91c2ab8d50df4f47562ca3f9dee412da7f5cea6b1a1544b33b40f9f8586dbacfbdada0fe90dbb10a1f + checksum: 10c0/ea57f512ab1e05e26b53a14fd432f65a10ec735ece342b37d0b63a7bcb8d337ffbb830ecb8ca15bcdfe423fbff88cea09786277baff200e8cde3ab40faa665cd languageName: node linkType: hard @@ -15869,13 +16049,13 @@ __metadata: languageName: node linkType: hard -"fast-unique-numbers@npm:^9.0.24": - version: 9.0.24 - resolution: "fast-unique-numbers@npm:9.0.24" +"fast-unique-numbers@npm:^9.0.26": + version: 9.0.26 + resolution: "fast-unique-numbers@npm:9.0.26" dependencies: - "@babel/runtime": "npm:^7.28.4" + "@babel/runtime": "npm:^7.28.6" tslib: "npm:^2.8.1" - checksum: 10c0/3f9d7be5b908d236b06a0c71212a5fd048291136dd960beb6bef60a74afcae5664d255a5461261de1172d4eb5993451b30d0491967cbb2897049605e02f0ff35 + checksum: 10c0/db0e280bef97e48a78f6a1c0e6a7f014aabd031aeb1b455e90b8010bd9c2817a75fc9be6046efdb1bf39a7a934386466137a212fcfefdfb820fb0084b9ab79f8 languageName: node linkType: hard @@ -15950,11 +16130,11 @@ __metadata: linkType: hard "fastq@npm:^1.6.0": - version: 1.19.1 - resolution: "fastq@npm:1.19.1" + version: 1.20.1 + resolution: "fastq@npm:1.20.1" dependencies: reusify: "npm:^1.0.4" - checksum: 10c0/ebc6e50ac7048daaeb8e64522a1ea7a26e92b3cee5cd1c7f2316cdca81ba543aa40a136b53891446ea5c3a67ec215fbaca87ad405f102dd97012f62916905630 + checksum: 10c0/e5dd725884decb1f11e5c822221d76136f239d0236f176fab80b7b8f9e7619ae57e6b4e5b73defc21e6b9ef99437ee7b545cff8e6c2c337819633712fa9d352e languageName: node linkType: hard @@ -16077,18 +16257,18 @@ __metadata: languageName: node linkType: hard -"finalhandler@npm:1.3.1": - version: 1.3.1 - resolution: "finalhandler@npm:1.3.1" +"finalhandler@npm:~1.3.1": + version: 1.3.2 + resolution: "finalhandler@npm:1.3.2" dependencies: debug: "npm:2.6.9" encodeurl: "npm:~2.0.0" escape-html: "npm:~1.0.3" - on-finished: "npm:2.4.1" + on-finished: "npm:~2.4.1" parseurl: "npm:~1.3.3" - statuses: "npm:2.0.1" + statuses: "npm:~2.0.2" unpipe: "npm:~1.0.0" - checksum: 10c0/d38035831865a49b5610206a3a9a9aae4e8523cbbcd01175d0480ffbf1278c47f11d89be3ca7f617ae6d94f29cf797546a4619cd84dd109009ef33f12f69019f + checksum: 10c0/435a4fd65e4e4e4c71bb5474980090b73c353a123dd415583f67836bdd6516e528cf07298e219a82b94631dee7830eae5eece38d3c178073cf7df4e8c182f413 languageName: node linkType: hard @@ -16249,7 +16429,7 @@ __metadata: languageName: node linkType: hard -"fresh@npm:0.5.2": +"fresh@npm:~0.5.2": version: 0.5.2 resolution: "fresh@npm:0.5.2" checksum: 10c0/c6d27f3ed86cc5b601404822f31c900dd165ba63fff8152a3ef714e2012e7535027063bc67ded4cb5b3a49fa596495d46cacd9f47d6328459cf570f08b7d9e5a @@ -16272,14 +16452,14 @@ __metadata: languageName: node linkType: hard -"fs-extra@npm:^11.2.0, fs-extra@npm:^11.3.0, fs-extra@npm:^11.3.1": - version: 11.3.2 - resolution: "fs-extra@npm:11.3.2" +"fs-extra@npm:^11.2.0, fs-extra@npm:^11.3.0, fs-extra@npm:^11.3.3": + version: 11.3.3 + resolution: "fs-extra@npm:11.3.3" dependencies: graceful-fs: "npm:^4.2.0" jsonfile: "npm:^6.0.1" universalify: "npm:^2.0.0" - checksum: 10c0/f5d629e1bb646d5dedb4d8b24c5aad3deb8cc1d5438979d6f237146cd10e113b49a949ae1b54212c2fbc98e2d0995f38009a9a1d0520f0287943335e65fe919b + checksum: 10c0/984924ff4104e3e9f351b658a864bf3b354b2c90429f57aec0acd12d92c4e6b762cbacacdffb4e745b280adce882e1f980c485d9f02c453f769ab4e7fc646ce3 languageName: node linkType: hard @@ -16331,16 +16511,6 @@ __metadata: languageName: node linkType: hard -"fsevents@npm:2.3.2": - version: 2.3.2 - resolution: "fsevents@npm:2.3.2" - dependencies: - node-gyp: "npm:latest" - checksum: 10c0/be78a3efa3e181cda3cf7a4637cb527bcebb0bd0ea0440105a3bb45b86f9245b307dc10a2507e8f4498a7d4ec349d1910f4d73e4d4495b16103106e07eee735b - conditions: os=darwin - languageName: node - linkType: hard - "fsevents@npm:~2.3.2, fsevents@npm:~2.3.3": version: 2.3.3 resolution: "fsevents@npm:2.3.3" @@ -16351,15 +16521,6 @@ __metadata: languageName: node linkType: hard -"fsevents@patch:fsevents@npm%3A2.3.2#optional!builtin": - version: 2.3.2 - resolution: "fsevents@patch:fsevents@npm%3A2.3.2#optional!builtin::version=2.3.2&hash=df0bf1" - dependencies: - node-gyp: "npm:latest" - conditions: os=darwin - languageName: node - linkType: hard - "fsevents@patch:fsevents@npm%3A~2.3.2#optional!builtin, fsevents@patch:fsevents@npm%3A~2.3.3#optional!builtin": version: 2.3.3 resolution: "fsevents@patch:fsevents@npm%3A2.3.3#optional!builtin::version=2.3.3&hash=df0bf1" @@ -16527,11 +16688,11 @@ __metadata: linkType: hard "get-tsconfig@npm:^4.10.0, get-tsconfig@npm:^4.7.5": - version: 4.13.0 - resolution: "get-tsconfig@npm:4.13.0" + version: 4.13.1 + resolution: "get-tsconfig@npm:4.13.1" dependencies: resolve-pkg-maps: "npm:^1.0.0" - checksum: 10c0/2c49ef8d3907047a107f229fd610386fe3b7fe9e42dfd6b42e7406499493cdda8c62e83e57e8d7a98125610774b9f604d3a0ff308d7f9de5c7ac6d1b07cb6036 + checksum: 10c0/75c8ccebc411073338d7b7154f18659480d4888d1b12a74a21507d14c6e3b092e260454efe6ce33b33eaf513d86491b8f16191358fe3e0a682a215febd1846cc languageName: node linkType: hard @@ -16637,7 +16798,7 @@ __metadata: languageName: node linkType: hard -"glob@npm:^10.0.0, glob@npm:^10.2.2, glob@npm:^10.2.7, glob@npm:^10.3.10, glob@npm:^10.3.7, glob@npm:^10.4.5": +"glob@npm:^10.0.0, glob@npm:^10.2.2, glob@npm:^10.2.7, glob@npm:^10.3.10, glob@npm:^10.3.7, glob@npm:^10.5.0": version: 10.5.0 resolution: "glob@npm:10.5.0" dependencies: @@ -17063,16 +17224,16 @@ __metadata: languageName: node linkType: hard -"http-errors@npm:2.0.0": - version: 2.0.0 - resolution: "http-errors@npm:2.0.0" +"http-errors@npm:~2.0.0, http-errors@npm:~2.0.1": + version: 2.0.1 + resolution: "http-errors@npm:2.0.1" dependencies: - depd: "npm:2.0.0" - inherits: "npm:2.0.4" - setprototypeof: "npm:1.2.0" - statuses: "npm:2.0.1" - toidentifier: "npm:1.0.1" - checksum: 10c0/fc6f2715fe188d091274b5ffc8b3657bd85c63e969daa68ccb77afb05b071a4b62841acb7a21e417b5539014dff2ebf9550f0b14a9ff126f2734a7c1387f8e19 + depd: "npm:~2.0.0" + inherits: "npm:~2.0.4" + setprototypeof: "npm:~1.2.0" + statuses: "npm:~2.0.2" + toidentifier: "npm:~1.0.1" + checksum: 10c0/fb38906cef4f5c83952d97661fe14dc156cb59fe54812a42cd448fa57b5c5dfcb38a40a916957737bd6b87aab257c0648d63eb5b6a9ca9f548e105b6072712d4 languageName: node linkType: hard @@ -17144,7 +17305,7 @@ __metadata: languageName: node linkType: hard -"iconv-lite@npm:0.4.24, iconv-lite@npm:^0.4.24": +"iconv-lite@npm:^0.4.24, iconv-lite@npm:~0.4.24": version: 0.4.24 resolution: "iconv-lite@npm:0.4.24" dependencies: @@ -17163,11 +17324,11 @@ __metadata: linkType: hard "iconv-lite@npm:^0.7.0": - version: 0.7.0 - resolution: "iconv-lite@npm:0.7.0" + version: 0.7.2 + resolution: "iconv-lite@npm:0.7.2" dependencies: safer-buffer: "npm:>= 2.1.2 < 3.0.0" - checksum: 10c0/2382400469071c55b6746c531eed5fa4d033e5db6690b7331fb2a5f59a30d7a9782932e92253db26df33c1cf46fa200a3fbe524a2a7c62037c762283f188ec2f + checksum: 10c0/3c228920f3bd307f56bf8363706a776f4a060eb042f131cd23855ceca962951b264d0997ab38a1ad340e1c5df8499ed26e1f4f0db6b2a2ad9befaff22f14b722 languageName: node linkType: hard @@ -17215,7 +17376,7 @@ __metadata: languageName: node linkType: hard -"ignore@npm:^7.0.0": +"ignore@npm:^7.0.5": version: 7.0.5 resolution: "ignore@npm:7.0.5" checksum: 10c0/ae00db89fe873064a093b8999fe4cc284b13ef2a178636211842cceb650b9c3e390d3339191acb145d81ed5379d2074840cf0c33a20bdbd6f32821f79eb4ad5d @@ -17310,7 +17471,7 @@ __metadata: languageName: node linkType: hard -"inherits@npm:2, inherits@npm:2.0.4, inherits@npm:^2.0.3, inherits@npm:^2.0.4, inherits@npm:~2.0.3, inherits@npm:~2.0.4": +"inherits@npm:2, inherits@npm:^2.0.3, inherits@npm:^2.0.4, inherits@npm:~2.0.3, inherits@npm:~2.0.4": version: 2.0.4 resolution: "inherits@npm:2.0.4" checksum: 10c0/4e531f648b29039fb7426fb94075e6545faa1eb9fe83c29f0b6d9e7263aceb4289d2d4557db0d428188eeb449cc7c5e77b0a0b2c4e248ff2a65933a0dee49ef2 @@ -18004,7 +18165,7 @@ __metadata: languageName: node linkType: hard -"iterator.prototype@npm:^1.1.4": +"iterator.prototype@npm:^1.1.5": version: 1.1.5 resolution: "iterator.prototype@npm:1.1.5" dependencies: @@ -18711,9 +18872,9 @@ __metadata: linkType: hard "lodash-es@npm:^4.17.21": - version: 4.17.21 - resolution: "lodash-es@npm:4.17.21" - checksum: 10c0/fb407355f7e6cd523a9383e76e6b455321f0f153a6c9625e21a8827d10c54c2a2341bd2ae8d034358b60e07325e1330c14c224ff582d04612a46a4f0479ff2f2 + version: 4.17.23 + resolution: "lodash-es@npm:4.17.23" + checksum: 10c0/3150fb6660c14c7a6b5f23bd11597d884b140c0e862a17fdb415aaa5ef7741523182904a6b7929f04e5f60a11edb5a79499eb448734381c99ffb3c4734beeddd languageName: node linkType: hard @@ -18753,9 +18914,9 @@ __metadata: linkType: hard "lodash@npm:^4.17.15, lodash@npm:^4.17.21, lodash@npm:^4.17.4, lodash@npm:^4.2.0, lodash@npm:~4.17.0": - version: 4.17.21 - resolution: "lodash@npm:4.17.21" - checksum: 10c0/d8cbea072bb08655bb4c989da418994b073a608dffa608b09ac04b43a791b12aeae7cd7ad919aa4c925f33b48490b5cfe6c1f71d827956071dae2e7bb3a6b74c + version: 4.17.23 + resolution: "lodash@npm:4.17.23" + checksum: 10c0/1264a90469f5bb95d4739c43eb6277d15b6d9e186df4ac68c3620443160fc669e2f14c11e7d8b2ccf078b81d06147c01a8ccced9aab9f9f63d50dcf8cace6bf6 languageName: node linkType: hard @@ -18839,9 +19000,9 @@ __metadata: linkType: hard "lru-cache@npm:^11.0.0, lru-cache@npm:^11.1.0, lru-cache@npm:^11.2.1": - version: 11.2.2 - resolution: "lru-cache@npm:11.2.2" - checksum: 10c0/72d7831bbebc85e2bdefe01047ee5584db69d641c48d7a509e86f66f6ee111b30af7ec3bd68a967d47b69a4b1fa8bbf3872630bd06a63b6735e6f0a5f1c8e83d + version: 11.2.5 + resolution: "lru-cache@npm:11.2.5" + checksum: 10c0/cc98958d25dddf1c8a8cbdc49588bd3b24450e8dfa78f32168fd188a20d4a0331c7406d0f3250c86a46619ee288056fd7a1195e8df56dc8a9592397f4fbd8e1d languageName: node linkType: hard @@ -18970,8 +19131,8 @@ __metadata: linkType: hard "mapbox-gl@npm:^3.5.1": - version: 3.16.0 - resolution: "mapbox-gl@npm:3.16.0" + version: 3.18.1 + resolution: "mapbox-gl@npm:3.18.1" dependencies: "@mapbox/jsonlint-lines-primitives": "npm:^2.0.2" "@mapbox/mapbox-gl-supported": "npm:^3.0.0" @@ -18992,26 +19153,25 @@ __metadata: gl-matrix: "npm:^3.4.4" grid-index: "npm:^1.1.0" kdbush: "npm:^4.0.2" - martinez-polygon-clipping: "npm:^0.7.4" + martinez-polygon-clipping: "npm:^0.8.1" murmurhash-js: "npm:^1.0.0" pbf: "npm:^4.0.1" potpack: "npm:^2.0.0" quickselect: "npm:^3.0.0" - serialize-to-js: "npm:^3.1.2" supercluster: "npm:^8.0.1" tinyqueue: "npm:^3.0.0" - checksum: 10c0/33d9113e906687759d54ba9a405f7c0ecc6701d0acfe0574fb1a2165b6db2115800ecb9f1b9d0b27e6c5586c0fe8d9c42ef7f40b6fe927a55cdc6516165a6263 + checksum: 10c0/c35b1c55b290cab84ff08afd634bed2c7a4b4757fff9e08402a9eddff65dc07b936d32670ca4813677d93ef4253fa17b64024523532fbf247e846585c6c75106 languageName: node linkType: hard -"martinez-polygon-clipping@npm:^0.7.4": - version: 0.7.4 - resolution: "martinez-polygon-clipping@npm:0.7.4" +"martinez-polygon-clipping@npm:^0.8.1": + version: 0.8.1 + resolution: "martinez-polygon-clipping@npm:0.8.1" dependencies: robust-predicates: "npm:^2.0.4" splaytree: "npm:^0.1.4" - tinyqueue: "npm:^1.2.0" - checksum: 10c0/0230c06056f2714994c0e65cb98cf487c45dfdffcef3b1c00e080577fdd52af80b71e87e7548283ac5cba7b2b2f9a5164e148fd88d17fd484e87f5d678bf199a + tinyqueue: "npm:3.0.0" + checksum: 10c0/f02420eebd37cfda170be30bc1aae28de15d4baeafa68fa41629f27439f913e01f347900cb976727efee994ff0abdba8628b2f6680860ecac2519c8d79789567 languageName: node linkType: hard @@ -19096,10 +19256,10 @@ __metadata: languageName: node linkType: hard -"meshoptimizer@npm:^0.25.0": - version: 0.25.0 - resolution: "meshoptimizer@npm:0.25.0" - checksum: 10c0/2d6a5b8a306a3cb615de94e9dab9623d117f456c0bc55bff29ab9fd261971ffc0e5236c20753851774ef15e55b1a44c35f69a80801bf5f1a34ea7db5d70c6273 +"meshoptimizer@npm:^1.0.1": + version: 1.0.1 + resolution: "meshoptimizer@npm:1.0.1" + checksum: 10c0/55a1164370474e1acd9f1116843a6ca9de27b4138b5d8cc13160652d50962eff29c91e8b05c9dfed97ddc41544f37509ed2ca382bebc8b332ddbcecdaa692027 languageName: node linkType: hard @@ -19134,7 +19294,7 @@ __metadata: languageName: node linkType: hard -"micromatch@npm:^4.0.4, micromatch@npm:^4.0.5, micromatch@npm:^4.0.8": +"micromatch@npm:^4.0.4, micromatch@npm:^4.0.8": version: 4.0.8 resolution: "micromatch@npm:4.0.8" dependencies: @@ -19280,7 +19440,7 @@ __metadata: languageName: node linkType: hard -"minimatch@npm:^9.0.0, minimatch@npm:^9.0.4": +"minimatch@npm:^9.0.0, minimatch@npm:^9.0.4, minimatch@npm:^9.0.5": version: 9.0.5 resolution: "minimatch@npm:9.0.5" dependencies: @@ -19763,6 +19923,15 @@ __metadata: languageName: node linkType: hard +"node-cache@npm:^5.1.2": + version: 5.1.2 + resolution: "node-cache@npm:5.1.2" + dependencies: + clone: "npm:2.x" + checksum: 10c0/2f91907510a1276415ae5898269d0765934d5a4f3682c8b1b19964694a9b841c8bd791e1a125d1f89050f412e1da5dd982179d714252b3a7223abb05b8cb24d5 + languageName: node + linkType: hard + "node-domexception@npm:^1.0.0": version: 1.0.0 resolution: "node-domexception@npm:1.0.0" @@ -19810,9 +19979,9 @@ __metadata: linkType: hard "node-forge@npm:^1.3.1": - version: 1.3.2 - resolution: "node-forge@npm:1.3.2" - checksum: 10c0/1def35652c93a588718a6d0d0b4f33e3e7de283aa6f4c00d01d1605d6ccce23fb3b59bcbfb6434014acd23a251cfcc2736052b406f53d94e1b19c09d289d0176 + version: 1.3.3 + resolution: "node-forge@npm:1.3.3" + checksum: 10c0/9c6f53b0ebb34865872cf62a35b0aef8fb337e2efc766626c2e3a0040f4c02933bf29a62ba999eb44a2aca73bd512c4eda22705a47b94654b9fb8ed53db9a1db languageName: node linkType: hard @@ -19837,8 +20006,8 @@ __metadata: linkType: hard "node-gyp@npm:latest": - version: 12.1.0 - resolution: "node-gyp@npm:12.1.0" + version: 12.2.0 + resolution: "node-gyp@npm:12.2.0" dependencies: env-paths: "npm:^2.2.0" exponential-backoff: "npm:^3.1.1" @@ -19847,12 +20016,12 @@ __metadata: nopt: "npm:^9.0.0" proc-log: "npm:^6.0.0" semver: "npm:^7.3.5" - tar: "npm:^7.5.2" + tar: "npm:^7.5.4" tinyglobby: "npm:^0.2.12" which: "npm:^6.0.0" bin: node-gyp: bin/node-gyp.js - checksum: 10c0/f43efea8aaf0beb6b2f6184e533edad779b2ae38062953e21951f46221dd104006cc574154f2ad4a135467a5aae92c49e84ef289311a82e08481c5df0e8dc495 + checksum: 10c0/3ed046746a5a7d90950cd8b0547332b06598443f31fe213ef4332a7174c7b7d259e1704835feda79b87d3f02e59d7791842aac60642ede4396ab25fdf0f8f759 languageName: node linkType: hard @@ -19961,13 +20130,6 @@ __metadata: languageName: node linkType: hard -"normalize-range@npm:^0.1.2": - version: 0.1.2 - resolution: "normalize-range@npm:0.1.2" - checksum: 10c0/bf39b73a63e0a42ad1a48c2bd1bda5a07ede64a7e2567307a407674e595bcff0fa0d57e8e5f1e7fa5e91000797c7615e13613227aaaa4d6d6e87f5bd5cc95de6 - languageName: node - linkType: hard - "nosleep.js@npm:^0.12.0": version: 0.12.0 resolution: "nosleep.js@npm:0.12.0" @@ -20286,7 +20448,7 @@ __metadata: languageName: node linkType: hard -"on-finished@npm:2.4.1": +"on-finished@npm:~2.4.1": version: 2.4.1 resolution: "on-finished@npm:2.4.1" dependencies: @@ -20791,7 +20953,7 @@ __metadata: languageName: node linkType: hard -"path-to-regexp@npm:0.1.12": +"path-to-regexp@npm:~0.1.12": version: 0.1.12 resolution: "path-to-regexp@npm:0.1.12" checksum: 10c0/1c6ff10ca169b773f3bba943bbc6a07182e332464704572962d277b900aeee81ac6aa5d060ff9e01149636c30b1f63af6e69dd7786ba6e0ddb39d4dee1f0645b @@ -20825,17 +20987,17 @@ __metadata: languageName: node linkType: hard -"pg-cloudflare@npm:^1.2.7": - version: 1.2.7 - resolution: "pg-cloudflare@npm:1.2.7" - checksum: 10c0/8a52713dbdecc9d389dc4e65e3b7ede2e199ec3715f7491ee80a15db171f2d75677a102e9c2cef0cb91a2f310e91f976eaec0dd6ef5d8bf357de0b948f9d9431 +"pg-cloudflare@npm:^1.3.0": + version: 1.3.0 + resolution: "pg-cloudflare@npm:1.3.0" + checksum: 10c0/b0866c88af8e54c7b3ed510719d92df37714b3af5e3a3a10d9f761fcec99483e222f5b78a1f2de590368127648087c45c01aaf66fadbe46edb25673eedc4f8fc languageName: node linkType: hard -"pg-connection-string@npm:^2.9.1": - version: 2.9.1 - resolution: "pg-connection-string@npm:2.9.1" - checksum: 10c0/9a646529bbc0843806fc5de98ce93735a4612b571f11867178a85665d11989a827e6fd157388ca0e34ec948098564fce836c178cfd499b9f0e8cd9972b8e2e5c +"pg-connection-string@npm:^2.11.0": + version: 2.11.0 + resolution: "pg-connection-string@npm:2.11.0" + checksum: 10c0/7a4bcf9b4f1e1fee6482e2bd814f544d451240059be6b8a186f24f73f163f1c599bb8c4984c398254869f744f6c3659b83e285c3d525fc640e99c60c453bd0df languageName: node linkType: hard @@ -20846,19 +21008,19 @@ __metadata: languageName: node linkType: hard -"pg-pool@npm:^3.10.1": - version: 3.10.1 - resolution: "pg-pool@npm:3.10.1" +"pg-pool@npm:^3.11.0": + version: 3.11.0 + resolution: "pg-pool@npm:3.11.0" peerDependencies: pg: ">=8.0" - checksum: 10c0/a00916b7df64226cc597fe769e3a757ff9b11562dc87ce5b0a54101a18c1fe282daaa2accaf27221e81e1e4cdf4da6a33dab09614734d32904d6c4e11c44a079 + checksum: 10c0/4b104b48a47257a0edad0c62e5ea1908b72cb79386270264b452e69895e9e4c589d00cdbf6e46d4e9c05bc7e7d191656b66814b5282d65f33b12648a21df3c7f languageName: node linkType: hard -"pg-protocol@npm:*, pg-protocol@npm:^1.10.3": - version: 1.10.3 - resolution: "pg-protocol@npm:1.10.3" - checksum: 10c0/f7ef54708c93ee6d271e37678296fc5097e4337fca91a88a3d99359b78633dbdbf6e983f0adb34b7cdd261b7ec7266deb20c3233bf3dfdb498b3e1098e8750b9 +"pg-protocol@npm:*, pg-protocol@npm:^1.11.0": + version: 1.11.0 + resolution: "pg-protocol@npm:1.11.0" + checksum: 10c0/93e83581781418c9173eba4e4545f73392cfe66b78dd1d3624d7339fbd37e7f4abebaf2615e68e0701a9bf0edf5b81a4ad533836f388f775fe25fa24a691c464 languageName: node linkType: hard @@ -20876,13 +21038,13 @@ __metadata: linkType: hard "pg@npm:^8.11.3": - version: 8.16.3 - resolution: "pg@npm:8.16.3" + version: 8.18.0 + resolution: "pg@npm:8.18.0" dependencies: - pg-cloudflare: "npm:^1.2.7" - pg-connection-string: "npm:^2.9.1" - pg-pool: "npm:^3.10.1" - pg-protocol: "npm:^1.10.3" + pg-cloudflare: "npm:^1.3.0" + pg-connection-string: "npm:^2.11.0" + pg-pool: "npm:^3.11.0" + pg-protocol: "npm:^1.11.0" pg-types: "npm:2.2.0" pgpass: "npm:1.0.5" peerDependencies: @@ -20893,7 +21055,7 @@ __metadata: peerDependenciesMeta: pg-native: optional: true - checksum: 10c0/a6a407ff0efb7599760d72ffdcda47a74c34c0fd71d896623caac45cf2cfb0f49a10973cce23110f182b9810639a1e9f6904454d7358c7001574ee0ffdcbce2a + checksum: 10c0/9525e34d603ee5d715b8952269b2fa9fdd350a55fc5a3360104e7613724441858e57d52eed435fb16e993d028b45d8175dc277d270d31f69e5746987a549f772 languageName: node linkType: hard @@ -21162,9 +21324,9 @@ __metadata: linkType: hard "postgres-bytea@npm:~1.0.0": - version: 1.0.0 - resolution: "postgres-bytea@npm:1.0.0" - checksum: 10c0/febf2364b8a8953695cac159eeb94542ead5886792a9627b97e33f6b5bb6e263bc0706ab47ec221516e79fbd6b2452d668841830fb3b49ec6c0fc29be61892ce + version: 1.0.1 + resolution: "postgres-bytea@npm:1.0.1" + checksum: 10c0/10b28a27c9d703d5befd97c443e62b551096d1014bc59ab574c65bf0688de7f3f068003b2aea8dcff83cf0f6f9a35f9f74457c38856cf8eb81b00cf3fb44f164 languageName: node linkType: hard @@ -21185,11 +21347,11 @@ __metadata: linkType: hard "postprocessing@npm:^6.32.1": - version: 6.38.0 - resolution: "postprocessing@npm:6.38.0" + version: 6.38.2 + resolution: "postprocessing@npm:6.38.2" peerDependencies: - three: ">= 0.157.0 < 0.182.0" - checksum: 10c0/4ecd1717aee74779d19378a441438eb108ad197102c94910d97c3559874e2e4c3946ef596698600222d222f12fe75c269ed13e6b5f843a57fb4093f17e77d3c2 + three: ">= 0.157.0 < 0.183.0" + checksum: 10c0/e471381e4c61b3e33e2113667fca6c0cdfa0f700e446f83fe75112cd7984246250fa3b1e486517f5e2a3ad112e824326d4bc78b4a164bae4f5347801629ae0f1 languageName: node linkType: hard @@ -21214,12 +21376,12 @@ __metadata: languageName: node linkType: hard -"prettier-linter-helpers@npm:^1.0.0": - version: 1.0.0 - resolution: "prettier-linter-helpers@npm:1.0.0" +"prettier-linter-helpers@npm:^1.0.1": + version: 1.0.1 + resolution: "prettier-linter-helpers@npm:1.0.1" dependencies: fast-diff: "npm:^1.1.2" - checksum: 10c0/81e0027d731b7b3697ccd2129470ed9913ecb111e4ec175a12f0fcfab0096516373bf0af2fef132af50cafb0a905b74ff57996d615f59512bb9ac7378fcc64ab + checksum: 10c0/91cea965681bc5f62c9d26bd3ca6358b81557261d4802e96ec1cf0acbd99d4b61632d53320cd2c3ec7d7f7805a81345644108a41ef46ddc9688e783a9ac792d1 languageName: node linkType: hard @@ -21288,11 +21450,11 @@ __metadata: linkType: hard "prettier@npm:*, prettier@npm:^3.3.2, prettier@npm:^3.3.3": - version: 3.7.3 - resolution: "prettier@npm:3.7.3" + version: 3.8.1 + resolution: "prettier@npm:3.8.1" bin: prettier: bin/prettier.cjs - checksum: 10c0/ee86bb06121c74dadc54f30b6f99aff6288966d9b842ce501d6991e20d20c6ce2d45028651b3b0955ca6e5fa89c1bee1e72b6f810243a93cef8bc69737972ef7 + checksum: 10c0/33169b594009e48f570471271be7eac7cdcf88a209eed39ac3b8d6d78984039bfa9132f82b7e6ba3b06711f3bfe0222a62a1bfb87c43f50c25a83df1b78a2c42 languageName: node linkType: hard @@ -21455,9 +21617,9 @@ __metadata: languageName: node linkType: hard -"protobufjs@npm:^7.1.0": - version: 7.5.4 - resolution: "protobufjs@npm:7.5.4" +"protobufjs@npm:^8.0.0": + version: 8.0.0 + resolution: "protobufjs@npm:8.0.0" dependencies: "@protobufjs/aspromise": "npm:^1.1.2" "@protobufjs/base64": "npm:^1.1.2" @@ -21471,7 +21633,7 @@ __metadata: "@protobufjs/utf8": "npm:^1.1.0" "@types/node": "npm:>=13.7.0" long: "npm:^5.0.0" - checksum: 10c0/913b676109ffb3c05d3d31e03a684e569be91f3bba8613da4a683d69d9dba948daa2afd7d2e7944d1aa6c417890c35d9d9a8883c1160affafb0f9670d59ef722 + checksum: 10c0/6fb29ca3c6abc2095a777407750f6094448b7b68bbf04147ec49ee442f85f151592338449f56d19883ea67c39ce915e3d47ec6c5c92f0bcac1eaba1841ab84ff languageName: node linkType: hard @@ -21561,12 +21723,12 @@ __metadata: languageName: node linkType: hard -"qs@npm:6.13.0": - version: 6.13.0 - resolution: "qs@npm:6.13.0" +"qs@npm:~6.14.0": + version: 6.14.1 + resolution: "qs@npm:6.14.1" dependencies: - side-channel: "npm:^1.0.6" - checksum: 10c0/62372cdeec24dc83a9fb240b7533c0fdcf0c5f7e0b83343edd7310f0ab4c8205a5e7c56406531f2e47e1b4878a3821d652be4192c841de5b032ca83619d8f860 + side-channel: "npm:^1.1.0" + checksum: 10c0/0e3b22dc451f48ce5940cbbc7c7d9068d895074f8c969c0801ac15c1313d1859c4d738e46dc4da2f498f41a9ffd8c201bd9fb12df67799b827db94cc373d2613 languageName: node linkType: hard @@ -21605,15 +21767,15 @@ __metadata: languageName: node linkType: hard -"raw-body@npm:2.5.2": - version: 2.5.2 - resolution: "raw-body@npm:2.5.2" +"raw-body@npm:~2.5.3": + version: 2.5.3 + resolution: "raw-body@npm:2.5.3" dependencies: - bytes: "npm:3.1.2" - http-errors: "npm:2.0.0" - iconv-lite: "npm:0.4.24" - unpipe: "npm:1.0.0" - checksum: 10c0/b201c4b66049369a60e766318caff5cb3cc5a900efd89bdac431463822d976ad0670912c931fdbdcf5543207daf6f6833bca57aa116e1661d2ea91e12ca692c4 + bytes: "npm:~3.1.2" + http-errors: "npm:~2.0.1" + iconv-lite: "npm:~0.4.24" + unpipe: "npm:~1.0.0" + checksum: 10c0/449844344fc90547fb994383a494b83300e4f22199f146a79f68d78a199a8f2a923ea9fd29c3be979bfd50291a3884733619ffc15ba02a32e703b612f8d3f74a languageName: node linkType: hard @@ -21723,9 +21885,9 @@ __metadata: linkType: hard "react-is@npm:^19.0.0": - version: 19.2.0 - resolution: "react-is@npm:19.2.0" - checksum: 10c0/a63cb346aeced8ac0e671b0f9b33720d2906de02a066ca067075d871a5d4c64cdb328f495baf9b5842d5868c0d5edd1ce18465a7358b52f4b6aa983479c9bfa2 + version: 19.2.4 + resolution: "react-is@npm:19.2.4" + checksum: 10c0/477a7cfc900f24194606e315fa353856a3a13487ea8eca841678817cad4daef64339ea0d1e84e58459fc75dbe0d9ba00bb0cc626db3d07e0cf31edc64cb4fa37 languageName: node linkType: hard @@ -22435,9 +22597,9 @@ __metadata: linkType: hard "sax@npm:>=0.6.0": - version: 1.4.3 - resolution: "sax@npm:1.4.3" - checksum: 10c0/45bba07561d93f184a8686e1a543418ced8c844b994fbe45cc49d5cd2fc8ac7ec949dae38565e35e388ad0cca2b75997a29b6857c927bf6553da3f80ed0e4e62 + version: 1.4.4 + resolution: "sax@npm:1.4.4" + checksum: 10c0/acb642f2de02ad6ae157cbf91fb026acea80cdf92e88c0aec2aa350c7db3479f62a7365c34a58e3b70a72ce11fa856a02c38cfd27f49e83c18c9c7e1d52aee55 languageName: node linkType: hard @@ -22473,7 +22635,7 @@ __metadata: languageName: node linkType: hard -"semver@npm:^7.0.0, semver@npm:^7.1.1, semver@npm:^7.3.4, semver@npm:^7.3.5, semver@npm:^7.3.7, semver@npm:^7.3.8, semver@npm:^7.5.3, semver@npm:^7.5.4, semver@npm:^7.6.0, semver@npm:^7.6.3, semver@npm:^7.7.1, semver@npm:^7.7.2": +"semver@npm:^7.0.0, semver@npm:^7.1.1, semver@npm:^7.3.4, semver@npm:^7.3.5, semver@npm:^7.3.7, semver@npm:^7.3.8, semver@npm:^7.5.3, semver@npm:^7.5.4, semver@npm:^7.6.0, semver@npm:^7.6.3, semver@npm:^7.7.1, semver@npm:^7.7.2, semver@npm:^7.7.3": version: 7.7.3 resolution: "semver@npm:7.7.3" bin: @@ -22482,24 +22644,24 @@ __metadata: languageName: node linkType: hard -"send@npm:0.19.0": - version: 0.19.0 - resolution: "send@npm:0.19.0" +"send@npm:~0.19.0, send@npm:~0.19.1": + version: 0.19.2 + resolution: "send@npm:0.19.2" dependencies: debug: "npm:2.6.9" depd: "npm:2.0.0" destroy: "npm:1.2.0" - encodeurl: "npm:~1.0.2" + encodeurl: "npm:~2.0.0" escape-html: "npm:~1.0.3" etag: "npm:~1.8.1" - fresh: "npm:0.5.2" - http-errors: "npm:2.0.0" + fresh: "npm:~0.5.2" + http-errors: "npm:~2.0.1" mime: "npm:1.6.0" ms: "npm:2.1.3" - on-finished: "npm:2.4.1" + on-finished: "npm:~2.4.1" range-parser: "npm:~1.2.1" - statuses: "npm:2.0.1" - checksum: 10c0/ea3f8a67a8f0be3d6bf9080f0baed6d2c51d11d4f7b4470de96a5029c598a7011c497511ccc28968b70ef05508675cebff27da9151dd2ceadd60be4e6cf845e3 + statuses: "npm:~2.0.2" + checksum: 10c0/20c2389fe0fdf3fc499938cac598bc32272287e993c4960717381a10de8550028feadfb9076f959a3a3ebdea42e1f690e116f0d16468fa56b9fd41866d3dc267 languageName: node linkType: hard @@ -22514,22 +22676,15 @@ __metadata: languageName: node linkType: hard -"serialize-to-js@npm:^3.1.2": - version: 3.1.2 - resolution: "serialize-to-js@npm:3.1.2" - checksum: 10c0/1aa5ba6f7a8e125e8d476b736ceae37e0cee6f45506ddabb04f95f31d7ad2260c922e17fa6da714e8ec84bbd491705b98974653928a57926d8b91f10de556617 - languageName: node - linkType: hard - -"serve-static@npm:1.16.2": - version: 1.16.2 - resolution: "serve-static@npm:1.16.2" +"serve-static@npm:~1.16.2": + version: 1.16.3 + resolution: "serve-static@npm:1.16.3" dependencies: encodeurl: "npm:~2.0.0" escape-html: "npm:~1.0.3" parseurl: "npm:~1.3.3" - send: "npm:0.19.0" - checksum: 10c0/528fff6f5e12d0c5a391229ad893910709bc51b5705962b09404a1d813857578149b8815f35d3ee5752f44cd378d0f31669d4b1d7e2d11f41e08283d5134bd1f + send: "npm:~0.19.1" + checksum: 10c0/36320397a073c71bedf58af48a4a100fe6d93f07459af4d6f08b9a7217c04ce2a4939e0effd842dc7bece93ffcd59eb52f58c4fff2a8e002dc29ae6b219cd42b languageName: node linkType: hard @@ -22538,6 +22693,7 @@ __metadata: resolution: "server@workspace:packages/server" dependencies: "@aws-sdk/client-dynamodb": "npm:^3.682.0" + "@aws-sdk/client-lambda": "npm:^3.980.0" "@aws-sdk/lib-dynamodb": "npm:^3.682.0" "@faker-js/faker": "npm:^9.0.3" "@godaddy/terminus": "npm:^4.12.1" @@ -22549,6 +22705,7 @@ __metadata: "@types/eslint": "npm:^9.6.0" "@types/express": "npm:^4.17.21" "@types/node": "npm:^20.14.10" + "@types/node-cache": "npm:^4.1.3" "@types/prettier": "npm:^3.0.0" "@types/sqlite3": "npm:^3.1.11" "@typescript-eslint/eslint-plugin": "npm:^7.4.0" @@ -22571,6 +22728,7 @@ __metadata: log4js: "npm:^6.9.1" module-alias: "npm:^2.2.3" mqtt: "npm:^5.8.0" + node-cache: "npm:^5.1.2" nodemon: "npm:^3.1.0" prettier: "npm:^3.3.3" rimraf: "npm:^5.0.5" @@ -22644,7 +22802,7 @@ __metadata: languageName: node linkType: hard -"setprototypeof@npm:1.2.0": +"setprototypeof@npm:1.2.0, setprototypeof@npm:~1.2.0": version: 1.2.0 resolution: "setprototypeof@npm:1.2.0" checksum: 10c0/68733173026766fa0d9ecaeb07f0483f4c2dc70ca376b3b7c40b7cda909f94b0918f6c5ad5ce27a9160bdfb475efaa9d5e705a11d8eaae18f9835d20976028bc @@ -22793,7 +22951,7 @@ __metadata: languageName: node linkType: hard -"side-channel@npm:^1.0.6, side-channel@npm:^1.1.0": +"side-channel@npm:^1.1.0": version: 1.1.0 resolution: "side-channel@npm:1.1.0" dependencies: @@ -22905,49 +23063,49 @@ __metadata: linkType: hard "socket.io-adapter@npm:~2.5.2": - version: 2.5.5 - resolution: "socket.io-adapter@npm:2.5.5" + version: 2.5.6 + resolution: "socket.io-adapter@npm:2.5.6" dependencies: - debug: "npm:~4.3.4" - ws: "npm:~8.17.1" - checksum: 10c0/04a5a2a9c4399d1b6597c2afc4492ab1e73430cc124ab02b09e948eabf341180b3866e2b61b5084cb899beb68a4db7c328c29bda5efb9207671b5cb0bc6de44e + debug: "npm:~4.4.1" + ws: "npm:~8.18.3" + checksum: 10c0/2af9827c3e8e2a445d7d1523f7ad4fcc37009da44f72042e8a9af27e4caf29fe0a34de6771a6e9971a0ff8d527631fe25b80230ff6c42c045e2913f0ac308059 languageName: node linkType: hard "socket.io-client@npm:^4.7.5": - version: 4.8.1 - resolution: "socket.io-client@npm:4.8.1" + version: 4.8.3 + resolution: "socket.io-client@npm:4.8.3" dependencies: "@socket.io/component-emitter": "npm:~3.1.0" - debug: "npm:~4.3.2" + debug: "npm:~4.4.1" engine.io-client: "npm:~6.6.1" socket.io-parser: "npm:~4.2.4" - checksum: 10c0/544c49cc8cc77118ef68b758a8a580c8e680a5909cae05c566d2cc07ec6cd6720a4f5b7e985489bf2a8391749177a5437ac30b8afbdf30b9da6402687ad51c86 + checksum: 10c0/76c0d86de0b636d0bf5011cf3425212c900f43dac632db6eb493816920cd035af7ddd92fea9a106b45eb347405953c0414eb3a5d465b180215e46fc8b61420b3 languageName: node linkType: hard "socket.io-parser@npm:~4.2.4": - version: 4.2.4 - resolution: "socket.io-parser@npm:4.2.4" + version: 4.2.5 + resolution: "socket.io-parser@npm:4.2.5" dependencies: "@socket.io/component-emitter": "npm:~3.1.0" - debug: "npm:~4.3.1" - checksum: 10c0/9383b30358fde4a801ea4ec5e6860915c0389a091321f1c1f41506618b5cf7cd685d0a31c587467a0c4ee99ef98c2b99fb87911f9dfb329716c43b587f29ca48 + debug: "npm:~4.4.1" + checksum: 10c0/fce2b7a76eed9babc7b4156e82e5cd478b0bc5eb877d52ae48aa0d90fe2d11be5a9e576fbc8bdbf3dd656863965ad133ba6c7d45172a1e020270e7c7891c1b35 languageName: node linkType: hard "socket.io@npm:^4.7.5": - version: 4.8.1 - resolution: "socket.io@npm:4.8.1" + version: 4.8.3 + resolution: "socket.io@npm:4.8.3" dependencies: accepts: "npm:~1.3.4" base64id: "npm:~2.0.0" cors: "npm:~2.8.5" - debug: "npm:~4.3.2" + debug: "npm:~4.4.1" engine.io: "npm:~6.6.0" socket.io-adapter: "npm:~2.5.2" socket.io-parser: "npm:~4.2.4" - checksum: 10c0/acf931a2bb235be96433b71da3d8addc63eeeaa8acabd33dc8d64e12287390a45f1e9f389a73cf7dc336961cd491679741b7a016048325c596835abbcc017ca9 + checksum: 10c0/1f7c4118cdbcb346e63db9d8fd657c3dc5caf148404762ed98ac14c4e7b74984a65fe51657bfe1696adcf7c168d1a3aad4a26b52864ce8491556f38218598f0b languageName: node linkType: hard @@ -23131,7 +23289,7 @@ __metadata: languageName: node linkType: hard -"sql-highlight@npm:^6.0.0": +"sql-highlight@npm:^6.1.0": version: 6.1.0 resolution: "sql-highlight@npm:6.1.0" checksum: 10c0/9614f4608bfde8ea7bf9b2fe9233dcc99a619c91cbc3f5cd85a6fb5ad4b2177f4ac8ca4a0191f4243ff8aea3b6f2a1229efc88635298269e0049b2ac08bde263 @@ -23183,10 +23341,10 @@ __metadata: languageName: node linkType: hard -"statuses@npm:2.0.1": - version: 2.0.1 - resolution: "statuses@npm:2.0.1" - checksum: 10c0/34378b207a1620a24804ce8b5d230fea0c279f00b18a7209646d5d47e419d1cc23e7cbf33a25a1e51ac38973dc2ac2e1e9c647a8e481ef365f77668d72becfd0 +"statuses@npm:~2.0.1, statuses@npm:~2.0.2": + version: 2.0.2 + resolution: "statuses@npm:2.0.2" + checksum: 10c0/a9947d98ad60d01f6b26727570f3bcceb6c8fa789da64fe6889908fe2e294d57503b14bf2b5af7605c2d36647259e856635cd4c49eab41667658ec9d0080ec3f languageName: node linkType: hard @@ -23450,9 +23608,9 @@ __metadata: linkType: hard "strnum@npm:^2.1.0": - version: 2.1.1 - resolution: "strnum@npm:2.1.1" - checksum: 10c0/1f9bd1f9b4c68333f25c2b1f498ea529189f060cd50aa59f1876139c994d817056de3ce57c12c970f80568d75df2289725e218bd9e3cdf73cd1a876c9c102733 + version: 2.1.2 + resolution: "strnum@npm:2.1.2" + checksum: 10c0/4e04753b793540d79cd13b2c3e59e298440477bae2b853ab78d548138385193b37d766d95b63b7046475d68d44fb1fca692f0a3f72b03f4168af076c7b246df9 languageName: node linkType: hard @@ -23558,30 +23716,30 @@ __metadata: languageName: node linkType: hard -"sync-fetch@npm:0.6.0-2": - version: 0.6.0-2 - resolution: "sync-fetch@npm:0.6.0-2" +"sync-fetch@npm:0.6.0": + version: 0.6.0 + resolution: "sync-fetch@npm:0.6.0" dependencies: node-fetch: "npm:^3.3.2" timeout-signal: "npm:^2.0.0" whatwg-mimetype: "npm:^4.0.0" - checksum: 10c0/1b3e96dfe12de520d9530abb0765baa3ce5921b6fc33ff23171cf838916a58956e755eb359669fba59bfba9b0eefd7e5b6eed737db0ba03bc2cb98a93de5cdb3 + checksum: 10c0/d59941c40bb97131ddd1c7c836a45f415aba7b063b12ebf0a5822aa940af75ad9eb2a49ee0d2d9f2091421f43347dcf8af8ef5ed79ede836f22f03d42817816d languageName: node linkType: hard -"synckit@npm:^0.11.7": - version: 0.11.11 - resolution: "synckit@npm:0.11.11" +"synckit@npm:^0.11.12": + version: 0.11.12 + resolution: "synckit@npm:0.11.12" dependencies: "@pkgr/core": "npm:^0.2.9" - checksum: 10c0/f0761495953d12d94a86edf6326b3a565496c72f9b94c02549b6961fb4d999f4ca316ce6b3eb8ed2e4bfc5056a8de65cda0bd03a233333a35221cd2fdc0e196b + checksum: 10c0/cc4d446806688ae0d728ae7bb3f53176d065cf9536647fb85bdd721dcefbd7bf94874df6799ff61580f2b03a392659219b778a9254ad499f9a1f56c34787c235 languageName: node linkType: hard "tabbable@npm:^6.0.0": - version: 6.3.0 - resolution: "tabbable@npm:6.3.0" - checksum: 10c0/57ba019d29b5cfa0c862248883bcec0e6d29d8f156ba52a1f425e7cfeca4a0fc701ab8d035c4c86ddf74ecdbd0e9f454a88d9b55d924a51f444038e9cd14d7a0 + version: 6.4.0 + resolution: "tabbable@npm:6.4.0" + checksum: 10c0/d931427f4a96b801fd8801ba296a702119e06f70ad262fed8abc5271225c9f1ca51b89fdec4fb2f22e1d35acb3d2881db0a17cedc758272e9ecb540d00299d76 languageName: node linkType: hard @@ -23606,8 +23764,8 @@ __metadata: linkType: hard "tailwindcss@npm:^3.4.4": - version: 3.4.18 - resolution: "tailwindcss@npm:3.4.18" + version: 3.4.19 + resolution: "tailwindcss@npm:3.4.19" dependencies: "@alloc/quick-lru": "npm:^5.2.0" arg: "npm:^5.0.2" @@ -23634,7 +23792,7 @@ __metadata: bin: tailwind: lib/cli.js tailwindcss: lib/cli.js - checksum: 10c0/230c0815d0b981f4952d1902e025d7571929e5fc133b4bb4fcbbc3b642e7ab0cecb9687f80f311afd0db07df8f383ce4317b3ca75ae93156c2ddc777e59fc31b + checksum: 10c0/e1063daccb9e5a508b357ec73b0011354204b2366b56496d6f0cc822733a55a0551502cb85856a2257ef9b676d0026616daaaa176d391f3216df57fbd693c581 languageName: node linkType: hard @@ -23676,16 +23834,16 @@ __metadata: languageName: node linkType: hard -"tar@npm:^7.5.2": - version: 7.5.2 - resolution: "tar@npm:7.5.2" +"tar@npm:^7.5.4": + version: 7.5.7 + resolution: "tar@npm:7.5.7" dependencies: "@isaacs/fs-minipass": "npm:^4.0.0" chownr: "npm:^3.0.0" minipass: "npm:^7.1.2" minizlib: "npm:^3.1.0" yallist: "npm:^5.0.0" - checksum: 10c0/a7d8b801139b52f93a7e34830db0de54c5aa45487c7cb551f6f3d44a112c67f1cb8ffdae856b05fd4f17b1749911f1c26f1e3a23bbe0279e17fd96077f13f467 + checksum: 10c0/51f261afc437e1112c3e7919478d6176ea83f7f7727864d8c2cce10f0b03a631d1911644a567348c3063c45abdae39718ba97abb073d22aa3538b9a53ae1e31c languageName: node linkType: hard @@ -23820,14 +23978,7 @@ __metadata: languageName: node linkType: hard -"tinyqueue@npm:^1.2.0": - version: 1.2.3 - resolution: "tinyqueue@npm:1.2.3" - checksum: 10c0/413b1ad64f700ef9d8d07242190ceb6ff921d0ab5b47f5b67ff7d3d2a394260914363b0e2c18039b900df793b26763fabc93da61e1b489f910795af6643b0355 - languageName: node - linkType: hard - -"tinyqueue@npm:^3.0.0": +"tinyqueue@npm:3.0.0, tinyqueue@npm:^3.0.0": version: 3.0.0 resolution: "tinyqueue@npm:3.0.0" checksum: 10c0/edd6f1a6146aa3aa7bc85b44b3aacf44cddfa805b0901019272d7e9235894b4f28b2f9d09c1bce500ae48883b03708b6b871aa33920e895d2943720f7a9ad3ba @@ -23900,7 +24051,7 @@ __metadata: languageName: node linkType: hard -"toidentifier@npm:1.0.1": +"toidentifier@npm:~1.0.1": version: 1.0.1 resolution: "toidentifier@npm:1.0.1" checksum: 10c0/93937279934bd66cc3270016dd8d0afec14fb7c94a05c72dc57321f8bd1fa97e5bea6d1f7c89e728d077ca31ea125b78320a616a6c6cd0e6b9cb94cb864381c1 @@ -24010,12 +24161,12 @@ __metadata: languageName: node linkType: hard -"ts-api-utils@npm:^2.1.0": - version: 2.1.0 - resolution: "ts-api-utils@npm:2.1.0" +"ts-api-utils@npm:^2.4.0": + version: 2.4.0 + resolution: "ts-api-utils@npm:2.4.0" peerDependencies: typescript: ">=4.8.4" - checksum: 10c0/9806a38adea2db0f6aa217ccc6bc9c391ddba338a9fe3080676d0d50ed806d305bb90e8cef0276e793d28c8a929f400abb184ddd7ff83a416959c0f4d2ce754f + checksum: 10c0/ed185861aef4e7124366a3f6561113557a57504267d4d452a51e0ba516a9b6e713b56b4aeaab9fa13de9db9ab755c65c8c13a777dba9133c214632cb7b65c083 languageName: node linkType: hard @@ -24162,10 +24313,10 @@ __metadata: linkType: hard "tsx@npm:^4.16.2, tsx@npm:^4.6.1": - version: 4.20.6 - resolution: "tsx@npm:4.20.6" + version: 4.21.0 + resolution: "tsx@npm:4.21.0" dependencies: - esbuild: "npm:~0.25.0" + esbuild: "npm:~0.27.0" fsevents: "npm:~2.3.3" get-tsconfig: "npm:^4.7.5" dependenciesMeta: @@ -24173,7 +24324,7 @@ __metadata: optional: true bin: tsx: dist/cli.mjs - checksum: 10c0/07757a9bf62c271e0a00869b2008c5f2d6e648766536e4faf27d9d8027b7cde1ac8e4871f4bb570c99388bcee0018e6869dad98c07df809b8052f9c549cd216f + checksum: 10c0/f5072923cd8459a1f9a26df87823a2ab5754641739d69df2a20b415f61814322b751fa6be85db7c6ec73cf68ba8fac2fd1cfc76bdb0aa86ded984d84d5d2126b languageName: node linkType: hard @@ -24342,37 +24493,37 @@ __metadata: linkType: hard "typeorm@npm:^0.3.20": - version: 0.3.27 - resolution: "typeorm@npm:0.3.27" + version: 0.3.28 + resolution: "typeorm@npm:0.3.28" dependencies: "@sqltools/formatter": "npm:^1.2.5" - ansis: "npm:^3.17.0" + ansis: "npm:^4.2.0" app-root-path: "npm:^3.1.0" buffer: "npm:^6.0.3" - dayjs: "npm:^1.11.13" - debug: "npm:^4.4.0" - dedent: "npm:^1.6.0" - dotenv: "npm:^16.4.7" - glob: "npm:^10.4.5" + dayjs: "npm:^1.11.19" + debug: "npm:^4.4.3" + dedent: "npm:^1.7.0" + dotenv: "npm:^16.6.1" + glob: "npm:^10.5.0" + reflect-metadata: "npm:^0.2.2" sha.js: "npm:^2.4.12" - sql-highlight: "npm:^6.0.0" + sql-highlight: "npm:^6.1.0" tslib: "npm:^2.8.1" uuid: "npm:^11.1.0" yargs: "npm:^17.7.2" peerDependencies: - "@google-cloud/spanner": ^5.18.0 || ^6.0.0 || ^7.0.0 + "@google-cloud/spanner": ^5.18.0 || ^6.0.0 || ^7.0.0 || ^8.0.0 "@sap/hana-client": ^2.14.22 better-sqlite3: ^8.0.0 || ^9.0.0 || ^10.0.0 || ^11.0.0 || ^12.0.0 ioredis: ^5.0.4 mongodb: ^5.8.0 || ^6.0.0 - mssql: ^9.1.1 || ^10.0.1 || ^11.0.1 + mssql: ^9.1.1 || ^10.0.0 || ^11.0.0 || ^12.0.0 mysql2: ^2.2.5 || ^3.0.1 oracledb: ^6.3.0 pg: ^8.5.1 pg-native: ^3.0.0 pg-query-stream: ^4.0.0 redis: ^3.1.1 || ^4.0.0 || ^5.0.14 - reflect-metadata: ^0.1.14 || ^0.2.0 sql.js: ^1.4.0 sqlite3: ^5.0.3 ts-node: ^10.7.0 @@ -24414,7 +24565,7 @@ __metadata: typeorm: cli.js typeorm-ts-node-commonjs: cli-ts-node-commonjs.js typeorm-ts-node-esm: cli-ts-node-esm.js - checksum: 10c0/e0136e1d277496de1d1b327912d55af4855c83d9147896547d6da78ed485c6fc5a84a8469938afe006860c237415028391b47717743e6d4a7b60a52bc6d349aa + checksum: 10c0/b850b2f76ed576f9eae3deb39617466c527572328cb2727cb962d263822aabf289b52fe3f070d779e9cde5c164eed7486e73d77aef91e69a919b21e59a2e6122 languageName: node linkType: hard @@ -24617,7 +24768,7 @@ __metadata: languageName: node linkType: hard -"unpipe@npm:1.0.0, unpipe@npm:~1.0.0": +"unpipe@npm:~1.0.0": version: 1.0.0 resolution: "unpipe@npm:1.0.0" checksum: 10c0/193400255bd48968e5c5383730344fbb4fa114cdedfab26e329e50dd2d81b134244bb8a72c6ac1b10ab0281a58b363d06405632c9d49ca9dfd5e90cbd7d0f32c @@ -24705,9 +24856,9 @@ __metadata: languageName: node linkType: hard -"update-browserslist-db@npm:^1.1.4": - version: 1.1.4 - resolution: "update-browserslist-db@npm:1.1.4" +"update-browserslist-db@npm:^1.2.0": + version: 1.2.3 + resolution: "update-browserslist-db@npm:1.2.3" dependencies: escalade: "npm:^3.2.0" picocolors: "npm:^1.1.1" @@ -24715,7 +24866,7 @@ __metadata: browserslist: ">= 4.21.0" bin: update-browserslist-db: cli.js - checksum: 10c0/db0c9aaecf1258a6acda5e937fc27a7996ccca7a7580a1b4aa8bba6a9b0e283e5e65c49ebbd74ec29288ef083f1b88d4da13e3d4d326c1e5fc55bf72d7390702 + checksum: 10c0/13a00355ea822388f68af57410ce3255941d5fb9b7c49342c4709a07c9f230bbef7f7499ae0ca7e0de532e79a82cc0c4edbd125f1a323a1845bf914efddf8bec languageName: node linkType: hard @@ -24980,12 +25131,12 @@ __metadata: linkType: hard "watchpack@npm:^2.0.0-beta.10": - version: 2.4.4 - resolution: "watchpack@npm:2.4.4" + version: 2.5.1 + resolution: "watchpack@npm:2.5.1" dependencies: glob-to-regexp: "npm:^0.4.1" graceful-fs: "npm:^4.1.2" - checksum: 10c0/6c0901f75ce245d33991225af915eea1c5ae4ba087f3aee2b70dd377d4cacb34bef02a48daf109da9d59b2d31ec6463d924a0d72f8618ae1643dd07b95de5275 + checksum: 10c0/dffbb483d1f61be90dc570630a1eb308581e2227d507d783b1d94a57ac7b705ecd9a1a4b73d73c15eab596d39874e5276a3d9cb88bbb698bafc3f8d08c34cf17 languageName: node linkType: hard @@ -25097,8 +25248,8 @@ __metadata: linkType: hard "which-typed-array@npm:^1.1.16, which-typed-array@npm:^1.1.19, which-typed-array@npm:^1.1.2": - version: 1.1.19 - resolution: "which-typed-array@npm:1.1.19" + version: 1.1.20 + resolution: "which-typed-array@npm:1.1.20" dependencies: available-typed-arrays: "npm:^1.0.7" call-bind: "npm:^1.0.8" @@ -25107,7 +25258,7 @@ __metadata: get-proto: "npm:^1.0.1" gopd: "npm:^1.2.0" has-tostringtag: "npm:^1.0.2" - checksum: 10c0/702b5dc878addafe6c6300c3d0af5983b175c75fcb4f2a72dfc3dd38d93cf9e89581e4b29c854b16ea37e50a7d7fca5ae42ece5c273d8060dcd603b2404bbb3f + checksum: 10c0/16fcdada95c8afb821cd1117f0ab50b4d8551677ac08187f21d4e444530913c9ffd2dac634f0c1183345f96344b69280f40f9a8bc52164ef409e555567c2604b languageName: node linkType: hard @@ -25167,14 +25318,14 @@ __metadata: languageName: node linkType: hard -"worker-factory@npm:^7.0.46": - version: 7.0.46 - resolution: "worker-factory@npm:7.0.46" +"worker-factory@npm:^7.0.48": + version: 7.0.48 + resolution: "worker-factory@npm:7.0.48" dependencies: - "@babel/runtime": "npm:^7.28.4" - fast-unique-numbers: "npm:^9.0.24" + "@babel/runtime": "npm:^7.28.6" + fast-unique-numbers: "npm:^9.0.26" tslib: "npm:^2.8.1" - checksum: 10c0/b220ee054a100302f0d49aa719eedc035966c5e2456f849d7cb9bb1907eaee8dee17e6c933c3bf0af076dfc0c557d50bf53fc02850e1919faa5a4fb430e8605c + checksum: 10c0/1de9a9a78ab01c70201a8d95af6e318be0a60b22cd68c2db8af86f64445a0e58eaa4708a076c6436d6980871f6c71c1a12fe5f7c7a8897edcac67d5a0cca2a0c languageName: node linkType: hard @@ -25190,16 +25341,16 @@ __metadata: languageName: node linkType: hard -"worker-timers-broker@npm:^8.0.11": - version: 8.0.11 - resolution: "worker-timers-broker@npm:8.0.11" +"worker-timers-broker@npm:^8.0.15": + version: 8.0.15 + resolution: "worker-timers-broker@npm:8.0.15" dependencies: - "@babel/runtime": "npm:^7.28.4" - broker-factory: "npm:^3.1.10" - fast-unique-numbers: "npm:^9.0.24" + "@babel/runtime": "npm:^7.28.6" + broker-factory: "npm:^3.1.13" + fast-unique-numbers: "npm:^9.0.26" tslib: "npm:^2.8.1" - worker-timers-worker: "npm:^9.0.11" - checksum: 10c0/736dd05e9ac32affba96d9df24d3accf38214c74b3af4a0987ae1ce8f792f6487c0201808476103c158f15fdeb54fc1b41b71e5def67e9034c42efc41662997b + worker-timers-worker: "npm:^9.0.13" + checksum: 10c0/099e7f24cd9cd019c3805d08ecfa0a5dc83f4f8fe0f9122871dcf2f792d447eef716b1202491956d1fef0ec1b31d43a6d0a55b35f394e66dd7025378144c068c languageName: node linkType: hard @@ -25213,14 +25364,14 @@ __metadata: languageName: node linkType: hard -"worker-timers-worker@npm:^9.0.11": - version: 9.0.11 - resolution: "worker-timers-worker@npm:9.0.11" +"worker-timers-worker@npm:^9.0.13": + version: 9.0.13 + resolution: "worker-timers-worker@npm:9.0.13" dependencies: - "@babel/runtime": "npm:^7.28.4" + "@babel/runtime": "npm:^7.28.6" tslib: "npm:^2.8.1" - worker-factory: "npm:^7.0.46" - checksum: 10c0/32afbd7b6f57b18e3a35ff80bc4cd21abc1796caf8ea30571b59b66cca961598331eae12fb9ff993c28a2637b0557665a611db92a2c0334ba59ccdb67c83899c + worker-factory: "npm:^7.0.48" + checksum: 10c0/65bea423782364febba0efe673a5dfc3a965e4c43b3f79ae6cf7f33c2ab2166d566ff186e9a1b4b5d0e6a84c4589c2d403692e887cc48acca246dc561f7c62f5 languageName: node linkType: hard @@ -25237,14 +25388,14 @@ __metadata: linkType: hard "worker-timers@npm:^8.0.23": - version: 8.0.25 - resolution: "worker-timers@npm:8.0.25" + version: 8.0.29 + resolution: "worker-timers@npm:8.0.29" dependencies: - "@babel/runtime": "npm:^7.28.4" + "@babel/runtime": "npm:^7.28.6" tslib: "npm:^2.8.1" - worker-timers-broker: "npm:^8.0.11" - worker-timers-worker: "npm:^9.0.11" - checksum: 10c0/85bc483bd17151df4ebbe66786dd56f0e0efd5e41e181359adaef64ad5f9fac541c23a6b8bc030c97c1fc705d924440211bf8261d65984756ddbe8f77a65a42e + worker-timers-broker: "npm:^8.0.15" + worker-timers-worker: "npm:^9.0.13" + checksum: 10c0/e486d81c23703c7abea1aa5c5d5f8f0b751886a60440c34ca371fb8d6e7674d5ca9ce15512d2122dbefc9dff2341a6ba2523a3a3fd8d4748a16e5b13542f007a languageName: node linkType: hard @@ -25335,8 +25486,8 @@ __metadata: linkType: hard "ws@npm:^8.18.3": - version: 8.18.3 - resolution: "ws@npm:8.18.3" + version: 8.19.0 + resolution: "ws@npm:8.19.0" peerDependencies: bufferutil: ^4.0.1 utf-8-validate: ">=5.0.2" @@ -25345,13 +25496,13 @@ __metadata: optional: true utf-8-validate: optional: true - checksum: 10c0/eac918213de265ef7cb3d4ca348b891a51a520d839aa51cdb8ca93d4fa7ff9f6ccb339ccee89e4075324097f0a55157c89fa3f7147bde9d8d7e90335dc087b53 + checksum: 10c0/4741d9b9bc3f9c791880882414f96e36b8b254e34d4b503279d6400d9a4b87a033834856dbdd94ee4b637944df17ea8afc4bce0ff4a1560d2166be8855da5b04 languageName: node linkType: hard -"ws@npm:~8.17.1": - version: 8.17.1 - resolution: "ws@npm:8.17.1" +"ws@npm:~8.18.3": + version: 8.18.3 + resolution: "ws@npm:8.18.3" peerDependencies: bufferutil: ^4.0.1 utf-8-validate: ">=5.0.2" @@ -25360,7 +25511,7 @@ __metadata: optional: true utf-8-validate: optional: true - checksum: 10c0/f4a49064afae4500be772abdc2211c8518f39e1c959640457dcee15d4488628620625c783902a52af2dd02f68558da2868fd06e6fd0e67ebcd09e6881b1b5bfe + checksum: 10c0/eac918213de265ef7cb3d4ca348b891a51a520d839aa51cdb8ca93d4fa7ff9f6ccb339ccee89e4075324097f0a55157c89fa3f7147bde9d8d7e90335dc087b53 languageName: node linkType: hard @@ -25445,11 +25596,11 @@ __metadata: linkType: hard "yaml@npm:^2.6.0": - version: 2.8.1 - resolution: "yaml@npm:2.8.1" + version: 2.8.2 + resolution: "yaml@npm:2.8.2" bin: yaml: bin.mjs - checksum: 10c0/7c587be00d9303d2ae1566e03bc5bc7fe978ba0d9bf39cc418c3139d37929dfcb93a230d9749f2cb578b6aa5d9ebebc322415e4b653cb83acd8bc0bc321707f3 + checksum: 10c0/703e4dc1e34b324aa66876d63618dcacb9ed49f7e7fe9b70f1e703645be8d640f68ab84f12b86df8ac960bac37acf5513e115de7c970940617ce0343c8c9cd96 languageName: node linkType: hard @@ -25608,8 +25759,8 @@ __metadata: linkType: hard "zustand@npm:^5.0.1": - version: 5.0.8 - resolution: "zustand@npm:5.0.8" + version: 5.0.10 + resolution: "zustand@npm:5.0.10" peerDependencies: "@types/react": ">=18.0.0" immer: ">=9.0.6" @@ -25624,6 +25775,6 @@ __metadata: optional: true use-sync-external-store: optional: true - checksum: 10c0/e865a6f7f1c0e03571701db5904151aaa7acefd6f85541a117085e129bf16e8f60b11f8cc82f277472de5c7ad5dcb201e1b0a89035ea0b40c9d9aab3cd24c8ad + checksum: 10c0/e6ddabf2b44f2c0b7362b0f549cb457d25516caa4c0465132037b62b6173552a43d48bb494c1707286f8d60b389fa249eb4242aa810f1c1d4b4d0b96df789cb8 languageName: node linkType: hard