From f423146ad5e7409573a2ecb62dc5ff10e98af83b Mon Sep 17 00:00:00 2001 From: Justin Pham Date: Sat, 7 Feb 2026 14:46:08 -0700 Subject: [PATCH 1/3] refactor ml containers to use tanstack query and refactor api route handlers --- packages/client/package.json | 3 + .../src/components/containers/MLContainer.tsx | 105 +- packages/client/src/constants/apiRoutes.ts | 97 + .../src/hooks/useMLCorrelationMatrix.ts | 100 + packages/client/src/lib/api.ts | 128 + packages/client/src/pages/_app.tsx | 47 +- rules/api-architecture.md | 453 +++ yarn.lock | 3070 ++++++++--------- 8 files changed, 2267 insertions(+), 1736 deletions(-) create mode 100644 packages/client/src/constants/apiRoutes.ts create mode 100644 packages/client/src/hooks/useMLCorrelationMatrix.ts create mode 100644 packages/client/src/lib/api.ts create mode 100644 rules/api-architecture.md diff --git a/packages/client/package.json b/packages/client/package.json index 815ca80c..cd62d5c4 100644 --- a/packages/client/package.json +++ b/packages/client/package.json @@ -22,8 +22,10 @@ "@react-three/fiber": "9.0.0-alpha.8", "@react-three/postprocessing": "^2.16.0", "@shared/helios-types": "*", + "@tanstack/react-query": "^5.90.20", "@tanstack/react-table": "^8.20.5", "@types/three": "^0.161.2", + "axios": "^1.13.4", "chart.js": "^4.4.8", "dayjs": "^1.11.13", "framer-motion": "^11.0.6", @@ -44,6 +46,7 @@ "three": "^0.161.0" }, "devDependencies": { + "@tanstack/react-query-devtools": "^5.91.3", "@trivago/prettier-plugin-sort-imports": "^4.3.0", "@types/eslint": "^8.56.10", "@types/google.maps": "^3.55.11", diff --git a/packages/client/src/components/containers/MLContainer.tsx b/packages/client/src/components/containers/MLContainer.tsx index f7df786c..ac8241b0 100644 --- a/packages/client/src/components/containers/MLContainer.tsx +++ b/packages/client/src/components/containers/MLContainer.tsx @@ -1,73 +1,86 @@ "use client"; -import { useTheme } from "next-themes"; -import { useEffect, useState } from "react"; -import type { PlotParams } from "react-plotly.js"; - +import { API_ROUTES } from "@/constants/apiRoutes"; import useWindowDimensions from "@/hooks/PIS/useWindowDimensions"; +import { + type PlotTypes, + useMLCorrelationMatrix, +} from "@/hooks/useMLCorrelationMatrix"; import Plotly from "./Plotly"; const SMALL_SCREEN = 380; -type PlotTypes = - | "/api/getPacketCorrelationMatrix" - | "/api/getLapCorrelationMatrix"; - export default function MLContainer({ - plotType = "/api/getPacketCorrelationMatrix", + plotType = API_ROUTES.ml.packetCorrelationMatrix, }: { plotType?: PlotTypes; }) { - const [plot, setPlot] = useState(); const { width } = useWindowDimensions(); - const { resolvedTheme } = useTheme(); - - useEffect(() => { - const fetchPlot = async () => { - try { - const response = await fetch(plotType); - const graph = await response.json(); - const data = JSON.parse(graph) as PlotParams; - const layout: PlotParams["layout"] = { - autosize: true, - font: { - color: resolvedTheme - ? resolvedTheme === "dark" - ? "white" - : "black" - : "black", - }, - margin: { l: 175, t: 75 }, - paper_bgcolor: "rgba(0,0,0,0)", - title: data.layout.title, - }; - data.layout = layout; - setPlot(data); - } catch (e) { - setPlot({ error: true }); - } - }; - fetchPlot(); - }, [plotType, resolvedTheme]); + // Fetch and transform correlation matrix data using TanStack Query + // The hook handles both fetching and theme-aware layout transformation + const { + data: plotData, + error, + isFetching, + isLoading, + refetch, + } = useMLCorrelationMatrix({ + plotType, + }); - if (!plot || !resolvedTheme || resolvedTheme === undefined) { + // Loading state + if (isLoading) { return (
- Loading... + {isFetching ? "Fetching data..." : "Loading..."}
); } - if ("error" in plot || !resolvedTheme || resolvedTheme === undefined) { + + // Error state with retry button + if (error) { + return ( +
+
+ Error loading data +
+
+ {error instanceof Error ? error.message : "Unknown error occurred"} +
+ +
+ ); + } + + // No data state (shouldn't happen if query is enabled correctly) + if (!plotData) { return (
- Error loading data + No data available
); } + + // Success state - render the plot return ( -
+
+ {/* Refresh button - positioned in top-right corner */} + +
); diff --git a/packages/client/src/constants/apiRoutes.ts b/packages/client/src/constants/apiRoutes.ts new file mode 100644 index 00000000..45045a4f --- /dev/null +++ b/packages/client/src/constants/apiRoutes.ts @@ -0,0 +1,97 @@ +/** + * API Route Constants for Helios Telemetry Client + * + * This file defines all API endpoints used in the application in a structured format. + * Routes are organized by feature/domain for better maintainability. + * + * Usage: + * ```typescript + * import { API_ROUTES } from '@/constants/apiRoutes'; + * const response = await api.get(API_ROUTES.ml.packetCorrelationMatrix); + * ``` + */ + +/** + * Next.js API Routes (client-side proxies) + * These routes are handled by Next.js API handlers in /pages/api/ + */ +export const API_ROUTES = { + /** + * Authentication/Security endpoints + */ + auth: { + /** Check MQTT password for driver updates */ + checkMQTTPassword: "/api/checkMQTTPassword", + }, + + /** + * Health check endpoint + */ + health: { + /** Basic health check */ + hello: "/api/hello", + }, + + /** + * Machine Learning endpoints + */ + ml: { + /** Get lap correlation matrix data */ + lapCorrelationMatrix: "/api/getLapCorrelationMatrix", + /** Get packet correlation matrix data */ + packetCorrelationMatrix: "/api/getPacketCorrelationMatrix", + }, +} as const; + +/** + * Backend API Routes (direct server calls) + * These routes connect directly to the backend server (prodURL) + * Used when bypassing Next.js API routes + */ +export const BACKEND_ROUTES = { + /** + * Driver endpoints + */ + drivers: { + /** Get all drivers */ + base: "/drivers", + /** Get driver by RFID */ + byRfid: (rfid: number) => `/driver/${rfid}`, + }, + + /** + * Lap data endpoints + */ + laps: { + /** Get all laps */ + base: "/laps", + }, + + /** + * Machine Learning endpoints (backend) + */ + ml: { + /** ML health check */ + health: "/ml/health", + /** Invalidate ML cache */ + invalidateCache: "/ml/invalidate", + /** Get lap correlation matrix */ + lapCorrelationMatrix: "/ml/correlation-matrix/lap", + /** Get packet correlation matrix */ + packetCorrelationMatrix: "/ml/correlation-matrix/packet", + }, + + /** + * Playback endpoints + */ + playback: { + /** Get packets between time range */ + packetsBetween: "/packetsBetween", + }, +} as const; + +/** + * Type helper to extract route values + */ +export type ApiRoute = (typeof API_ROUTES)[keyof typeof API_ROUTES]; +export type BackendRoute = (typeof BACKEND_ROUTES)[keyof typeof BACKEND_ROUTES]; diff --git a/packages/client/src/hooks/useMLCorrelationMatrix.ts b/packages/client/src/hooks/useMLCorrelationMatrix.ts new file mode 100644 index 00000000..459a0802 --- /dev/null +++ b/packages/client/src/hooks/useMLCorrelationMatrix.ts @@ -0,0 +1,100 @@ +import { useTheme } from "next-themes"; +import { useMemo } from "react"; +import type { PlotParams } from "react-plotly.js"; + +import { API_ROUTES } from "@/constants/apiRoutes"; +import { api } from "@/lib/api"; +import { useQuery } from "@tanstack/react-query"; + +export type PlotTypes = + | typeof API_ROUTES.ml.packetCorrelationMatrix + | typeof API_ROUTES.ml.lapCorrelationMatrix; + +interface UseMLCorrelationMatrixOptions { + plotType: PlotTypes; +} + +/** + * Fetches correlation matrix data from the API with a 30-second timeout. + * + * Uses the configured axios instance from @/lib/api which includes: + * - 30-second timeout to prevent hanging requests + * - Standard JSON headers + * - Centralized error handling + * + * @param plotType - The API endpoint to fetch from + * @returns Promise resolving to PlotParams data + * @throws Error if the request fails or times out + */ +async function fetchCorrelationMatrix( + plotType: PlotTypes, +): Promise { + const response = await api.get(plotType); + + // Parse the JSON string response + const rawData = JSON.parse(response.data) as PlotParams; + + return rawData; +} + +/** + * Custom hook to fetch and cache ML correlation matrix data using TanStack Query. + * + * Features: + * - 1-hour cache TTL (matches backend cache) + * - Automatic retry on failure (3 attempts) + * - No refetch on window focus (expensive ML data) + * - Theme-aware layout transformation (doesn't refetch on theme change) + * - 30-second timeout to prevent hanging requests + * + * @param options - Configuration options + * @param options.plotType - The API endpoint to fetch from + * @returns Query result with theme-transformed plot data + */ +export function useMLCorrelationMatrix({ + plotType, +}: UseMLCorrelationMatrixOptions) { + const { resolvedTheme } = useTheme(); + // Fetch raw data from API + const query = useQuery({ + // Only enable query when theme is resolved + // This prevents unnecessary fetches before theme is ready + enabled: !!resolvedTheme && resolvedTheme !== undefined, + + // Fetch function - uses axios with 30s timeout + queryFn: () => fetchCorrelationMatrix(plotType), + + // Query key: ['ml', 'correlation-matrix', plotType] + // Note: theme is NOT in the key to avoid separate cache entries per theme + queryKey: ["ml", "correlation-matrix", plotType] as const, + + // Throw errors to error boundary (optional, can be removed if you prefer error state) + throwOnError: false, + }); + // Transform layout based on current theme (memoized to avoid unnecessary recalculations) + const transformedData = useMemo(() => { + if (!query.data) return null; + + const layout: PlotParams["layout"] = { + autosize: true, + font: { + color: resolvedTheme === "dark" ? "white" : "black", + }, + margin: { l: 175, t: 75 }, + paper_bgcolor: "rgba(0,0,0,0)", + title: query.data.layout.title, + }; + + return { + ...query.data, + layout, + }; + }, [query.data, resolvedTheme]); + + // Return query state with transformed data + return { + ...query, + data: transformedData, + isLoading: query.isLoading || !resolvedTheme, + }; +} diff --git a/packages/client/src/lib/api.ts b/packages/client/src/lib/api.ts new file mode 100644 index 00000000..f0046da9 --- /dev/null +++ b/packages/client/src/lib/api.ts @@ -0,0 +1,128 @@ +/** + * Axios API Client for Helios Telemetry + * + * This module provides a configured axios instance for making HTTP requests + * throughout the application. It includes: + * - 30-second timeout to prevent hanging requests + * - Standard JSON headers + * - Centralized error handling + * - Type-safe request/response handling + * + * Usage: + * ```typescript + * import { api } from '@/lib/api'; + * import { API_ROUTES } from '@/constants/apiRoutes'; + * + * // Simple GET request + * const response = await api.get(API_ROUTES.ml.packetCorrelationMatrix); + * + * // POST request with data + * const response = await api.post(API_ROUTES.auth.checkMQTTPassword, { password: 'secret' }); + * ``` + */ +import axios, { type AxiosInstance } from "axios"; + +/** + * Default timeout for all API requests (30 seconds) + * This prevents requests from hanging indefinitely + */ +const DEFAULT_TIMEOUT = 30000; + +/** + * Configured axios instance for client-side API calls + * + * Configuration: + * - baseURL: Empty string (uses relative URLs for Next.js API routes) + * - timeout: 30 seconds + * - headers: JSON content type and accept headers + */ +export const api: AxiosInstance = axios.create({ + // Use relative URLs for Next.js API routes + // For direct backend calls, use the backendApi instance instead + baseURL: "", + + // Standard JSON headers + headers: { + Accept: "application/json", + "Content-Type": "application/json", + }, + + // 30-second timeout to prevent hanging requests + timeout: DEFAULT_TIMEOUT, +}); + +/** + * Axios instance for direct backend API calls + * + * This instance is configured to call the backend server directly, + * bypassing Next.js API routes. It uses the prodURL from shared types. + * + * Note: Import prodURL dynamically to avoid issues with environment variables + */ +const createBackendApi = (): AxiosInstance => { + // Dynamic import to handle environment-specific URLs + // eslint-disable-next-line @typescript-eslint/no-var-requires + const { prodURL } = require("@shared/helios-types"); + + return axios.create({ + baseURL: prodURL, + headers: { + Accept: "application/json", + "Content-Type": "application/json", + }, + timeout: DEFAULT_TIMEOUT, + }); +}; + +/** + * Backend API instance (lazy-initialized) + */ +let backendApiInstance: AxiosInstance | null = null; + +/** + * Get the backend API instance (creates it if it doesn't exist) + */ +const getBackendApi = (): AxiosInstance => { + if (!backendApiInstance) { + backendApiInstance = createBackendApi(); + } + return backendApiInstance; +}; + +/** + * Export a pre-configured backend API instance for convenience + */ +export const backendApi = getBackendApi(); + +/** + * Request interceptor (optional - can be used for logging, auth tokens, etc.) + */ +api.interceptors.request.use( + (config) => { + // Add any request modifications here (e.g., auth tokens) + return config; + }, + (error) => { + return Promise.reject(error); + }, +); + +/** + * Response interceptor (optional - can be used for global error handling) + */ +api.interceptors.response.use( + (response) => { + // Any response transformations can go here + return response; + }, + (error) => { + // Global error handling can go here + // For now, just pass the error through + return Promise.reject(error); + }, +); + +/** + * Export the default timeout constant for use in other modules + */ +export { DEFAULT_TIMEOUT }; diff --git a/packages/client/src/pages/_app.tsx b/packages/client/src/pages/_app.tsx index a7520a8a..7fc4eba0 100644 --- a/packages/client/src/pages/_app.tsx +++ b/packages/client/src/pages/_app.tsx @@ -9,20 +9,47 @@ import "@mantine/core/styles.css"; import "@mantine/dates/styles.css"; import { Notifications } from "@mantine/notifications"; import "@mantine/notifications/styles.css"; +import { QueryClient, QueryClientProvider } from "@tanstack/react-query"; +import { ReactQueryDevtools } from "@tanstack/react-query-devtools"; + +// Create QueryClient instance once at module level +// This ensures a single instance across the entire app lifecycle +const queryClient = new QueryClient({ + defaultOptions: { + queries: { + // Unused data stays in cache for 1 hour + gcTime: 1000 * 60 * 60, // 1 hour (formerly cacheTime) + // No automatic polling + refetchInterval: false, + // Don't refetch on mount if data is still fresh + refetchOnMount: false, + // Don't refetch on window focus (expensive ML data) + refetchOnWindowFocus: false, + // Retry failed requests 3 times with exponential backoff + retry: 3, + // Data is considered fresh for 1 hour (matches backend cache TTL) + staleTime: 1000 * 60 * 60, // 1 hour + }, + }, +}); export default function App({ Component, pageProps }: AppProps) { return ( <> - - - - {/* Initialize side-effect logic for Zustand store state files */} - - - - - - + + + + + {/* Initialize side-effect logic for Zustand store state files */} + + + + + + + {/* React Query DevTools - only visible in development */} + + ); } diff --git a/rules/api-architecture.md b/rules/api-architecture.md new file mode 100644 index 00000000..12c901bb --- /dev/null +++ b/rules/api-architecture.md @@ -0,0 +1,453 @@ +# API Architecture Rules for Helios Telemetry Client + +## Overview + +This document defines the API architecture patterns and rules for the Helios Telemetry client application. All developers and AI coding assistants must follow these rules when working with API calls. + +--- + +## 🚨 Critical Rules + +### 1. Always Use Centralized API Route Constants + +**✅ DO:** + +```typescript +import { API_ROUTES } from '@/constants/apiRoutes'; +import { api } from '@/lib/api'; + +const response = await api.get(API_ROUTES.ml.packetCorrelationMatrix); +``` + +**❌ DON'T:** + +```typescript +// NEVER hardcode API URLs +const response = await fetch("/api/getPacketCorrelationMatrix"); +const response = await axios.get("/api/getPacketCorrelationMatrix"); +``` + +**Why:** Centralized constants provide type safety, prevent typos, and make refactoring easier. + +--- + +### 2. Always Use Configured Axios Instances + +**✅ DO:** + +```typescript +import { api, backendApi } from '@/lib/api'; +import { API_ROUTES, BACKEND_ROUTES } from '@/constants/apiRoutes'; + +// For Next.js API routes +const response = await api.get(API_ROUTES.ml.packetCorrelationMatrix); + +// For direct backend calls +const response = await backendApi.get(BACKEND_ROUTES.laps.base); +``` + +**❌ DON'T:** + +```typescript +// NEVER import axios directly in components/hooks +import axios from 'axios'; +const response = await axios.get('/api/something'); + +// NEVER create new axios instances +const customAxios = axios.create({ timeout: 30000 }); +``` + +**Why:** Centralized axios instances ensure consistent timeout, headers, and error handling across the application. + +--- + +### 3. Never Use `prodURL` Directly in Client Code + +**✅ DO:** + +```typescript +import { backendApi } from '@/lib/api'; +import { BACKEND_ROUTES } from '@/constants/apiRoutes'; + +const response = await backendApi.get(BACKEND_ROUTES.drivers.base); +const response = await backendApi.get(BACKEND_ROUTES.drivers.byRfid(12345)); +``` + +**❌ DON'T:** + +```typescript +// NEVER concatenate prodURL manually +import { prodURL } from '@shared/helios-types'; +const response = await axios.get(`${prodURL}/drivers`); +const response = await fetch(`${prodURL}/driver/${rfid}`); +``` + +**Why:** The `backendApi` instance handles the base URL automatically and provides consistent configuration. + +--- + +### 4. Add New Routes to Constants File + +When creating new API endpoints, **always** add them to `packages/client/src/constants/apiRoutes.ts`. + +**✅ DO:** + +```typescript +// In packages/client/src/constants/apiRoutes.ts +export const API_ROUTES = { + // ... existing routes ... + + /** + * New feature endpoints + */ + newFeature: { + /** Get new feature data */ + getData: "/api/getNewFeatureData", + /** Update new feature */ + update: "/api/updateNewFeature", + }, +} as const; + +// In your component/hook +import { API_ROUTES } from '@/constants/apiRoutes'; +import { api } from '@/lib/api'; + +const response = await api.get(API_ROUTES.newFeature.getData); +``` + +**❌ DON'T:** + +```typescript +// NEVER use hardcoded URLs directly in components +const response = await fetch("/api/getNewFeatureData"); +``` + +**Why:** Keeps all routes in one place for easy maintenance and refactoring. + +--- + +## 📚 Type Safety Guidelines + +### Use Exported Types for Route Values + +**✅ DO:** + +```typescript +import { API_ROUTES } from '@/constants/apiRoutes'; + +// Leverage TypeScript's typeof for type-safe route types +export type PlotTypes = + | typeof API_ROUTES.ml.packetCorrelationMatrix + | typeof API_ROUTES.ml.lapCorrelationMatrix; + +function fetchData(endpoint: PlotTypes) { + return api.get(endpoint); +} +``` + +**❌ DON'T:** + +```typescript +// NEVER use string literals for route types +type PlotTypes = "/api/getPacketCorrelationMatrix" | "/api/getLapCorrelationMatrix"; +``` + +**Why:** Using `typeof` on constants ensures types stay in sync with actual route values. + +--- + +## 📝 Documentation Requirements + +### Document All New Routes with JSDoc + +**✅ DO:** + +```typescript +export const API_ROUTES = { + /** + * Machine Learning endpoints + */ + ml: { + /** Get packet correlation matrix data */ + packetCorrelationMatrix: "/api/getPacketCorrelationMatrix", + /** Get lap correlation matrix data */ + lapCorrelationMatrix: "/api/getLapCorrelationMatrix", + }, +} as const; +``` + +**❌ DON'T:** + +```typescript +// NEVER add routes without documentation +export const API_ROUTES = { + ml: { + packetCorrelationMatrix: "/api/getPacketCorrelationMatrix", + lapCorrelationMatrix: "/api/getLapCorrelationMatrix", + }, +} as const; +``` + +**Why:** Documentation helps developers understand the purpose of each endpoint. + +--- + +## 🔧 Common Patterns + +### Pattern 1: GET Request with Query Parameters + +**✅ DO:** + +```typescript +import { backendApi } from '@/lib/api'; +import { BACKEND_ROUTES } from '@/constants/apiRoutes'; + +const response = await backendApi.get(BACKEND_ROUTES.playback.packetsBetween, { + params: { startTime, endTime } +}); +``` + +### Pattern 2: POST Request with Body Data + +**✅ DO:** + +```typescript +import { api } from '@/lib/api'; +import { API_ROUTES } from '@/constants/apiRoutes'; + +const response = await api.post(API_ROUTES.auth.checkMQTTPassword, { + password: 'secret' +}); +``` + +### Pattern 3: Dynamic Route Parameters + +**✅ DO:** + +```typescript +import { backendApi } from '@/lib/api'; +import { BACKEND_ROUTES } from '@/constants/apiRoutes'; + +const rfid = 12345; +const response = await backendApi.get(BACKEND_ROUTES.drivers.byRfid(rfid)); +``` + +**❌ DON'T:** + +```typescript +// NEVER use template literals for dynamic routes +const response = await axios.get(`${prodURL}/driver/${rfid}`); +``` + +### Pattern 4: Using in TanStack Query Hooks + +**✅ DO:** + +```typescript +import { api } from '@/lib/api'; +import { API_ROUTES } from '@/constants/apiRoutes'; +import { useQuery } from '@tanstack/react-query'; + +async function fetchData(endpoint: string) { + const response = await api.get(endpoint); + return response.data; +} + +export function useMLData() { + return useQuery({ + queryKey: ['ml', 'correlation-matrix'], + queryFn: () => fetchData(API_ROUTES.ml.packetCorrelationMatrix), + }); +} +``` + +--- + +## 🚨 Common Mistakes to Avoid + +### Mistake 1: Hardcoded URLs + +**❌ BAD:** + +```typescript +const response = await fetch("/api/getPacketCorrelationMatrix"); +const response = await axios.get("/api/getLapCorrelationMatrix"); +``` + +**✅ GOOD:** + +```typescript +import { api } from '@/lib/api'; +import { API_ROUTES } from '@/constants/apiRoutes'; + +const response = await api.get(API_ROUTES.ml.packetCorrelationMatrix); +const response = await api.get(API_ROUTES.ml.lapCorrelationMatrix); +``` + +### Mistake 2: Direct Axios Imports + +**❌ BAD:** + +```typescript +import axios from 'axios'; + +const response = await axios.get('/api/something'); +``` + +**✅ GOOD:** + +```typescript +import { api } from '@/lib/api'; +import { API_ROUTES } from '@/constants/apiRoutes'; + +const response = await api.get(API_ROUTES.something); +``` + +### Mistake 3: Using prodURL Concatenation + +**❌ BAD:** + +```typescript +import { prodURL } from '@shared/helios-types'; + +const response = await axios.get(`${prodURL}/drivers`); +const response = await fetch(`${prodURL}/laps`); +``` + +**✅ GOOD:** + +```typescript +import { backendApi } from '@/lib/api'; +import { BACKEND_ROUTES } from '@/constants/apiRoutes'; + +const response = await backendApi.get(BACKEND_ROUTES.drivers.base); +const response = await backendApi.get(BACKEND_ROUTES.laps.base); +``` + +### Mistake 4: Creating Custom Axios Instances + +**❌ BAD:** + +```typescript +const customAxios = axios.create({ + timeout: 30000, + headers: { 'Content-Type': 'application/json' } +}); + +const response = await customAxios.get('/api/something'); +``` + +**✅ GOOD:** + +```typescript +import { api } from '@/lib/api'; +import { API_ROUTES } from '@/constants/apiRoutes'; + +// The api instance already has 30s timeout and JSON headers configured +const response = await api.get(API_ROUTES.something); +``` + +--- + +## 🔄 Migration Guide + +### Refactoring Existing Code + +When you encounter code that doesn't follow these patterns, refactor it: + +**BEFORE:** + +```typescript +import axios from 'axios'; +import { prodURL } from '@shared/helios-types'; + +const fetchLapData = async () => { + const response = await axios.get(`${prodURL}/laps`); + return response.data; +}; +``` + +**AFTER:** + +```typescript +import { backendApi } from '@/lib/api'; +import { BACKEND_ROUTES } from '@/constants/apiRoutes'; + +const fetchLapData = async () => { + const response = await backendApi.get(BACKEND_ROUTES.laps.base); + return response.data; +}; +``` + +--- + +## 📋 Checklist for New API Calls + +Before adding a new API call, ensure: + +- [ ] Route constant is added to `packages/client/src/constants/apiRoutes.ts` +- [ ] Route has JSDoc documentation +- [ ] Using `api` instance for Next.js API routes +- [ ] Using `backendApi` instance for direct backend calls +- [ ] Not importing axios directly +- [ ] Not using `prodURL` concatenation +- [ ] Type safety is maintained (using `typeof` for route types) + +--- + +## 🎯 File Locations + +- **Route Constants**: `packages/client/src/constants/apiRoutes.ts` +- **Axios Instances**: `packages/client/src/lib/api.ts` +- **Example Usage**: `packages/client/src/hooks/useMLCorrelationMatrix.ts` + +--- + +## 💡 Benefits of This Architecture + +1. **Type Safety**: Compile-time checking prevents typos and invalid routes +2. **Centralized Configuration**: Single source of truth for timeouts, headers, base URLs +3. **Easy Refactoring**: Change a route in one place, updates everywhere +4. **Consistent Error Handling**: All requests use the same interceptors +5. **Better Developer Experience**: Autocomplete for all routes +6. **Easier Testing**: Mock the axios instances instead of individual calls +7. **Performance**: Reuses axios instances instead of creating new ones + +--- + +## 🔍 Future Enhancements + +The architecture supports future improvements: + +- **Request/Response Interceptors**: Add global error handling, logging, auth tokens +- **Retry Logic**: Use axios-retry for automatic retries on failure +- **Request Cancellation**: Use AbortController for cleanup +- **Custom Hooks**: Create domain-specific hooks (e.g., `useLaps()`, `useDrivers()`) +- **Response Caching**: Integrate with TanStack Query for intelligent caching +- **Request Deduplication**: Prevent duplicate simultaneous requests + +--- + +## ⚠️ Enforcement + +These rules are enforced through: + +1. **TypeScript**: Type checking for route constants +2. **Code Review**: Manual review of API call patterns +3. **AI Assistants**: This document guides AI coding assistants + +--- + +## 📞 Questions? + +If you're unsure about how to implement an API call following these patterns, refer to: + +- **Example Hook**: `packages/client/src/hooks/useMLCorrelationMatrix.ts` +- **Example Component**: `packages/client/src/components/containers/MLContainer.tsx` +- **Route Constants**: `packages/client/src/constants/apiRoutes.ts` +- **Axios Config**: `packages/client/src/lib/api.ts` + +--- + +**Last Updated**: 2026-02-07 +**Version**: 1.0.0 diff --git a/yarn.lock b/yarn.lock index d7ce4532..1a740988 100644 --- a/yarn.lock +++ b/yarn.lock @@ -66,60 +66,60 @@ __metadata: languageName: node linkType: hard -"@aws-amplify/analytics@npm:7.0.92": - version: 7.0.92 - resolution: "@aws-amplify/analytics@npm:7.0.92" +"@aws-amplify/analytics@npm:7.0.93": + version: 7.0.93 + resolution: "@aws-amplify/analytics@npm:7.0.93" dependencies: - "@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" + "@aws-sdk/client-firehose": "npm:3.982.0" + "@aws-sdk/client-kinesis": "npm:3.982.0" + "@aws-sdk/client-personalize-events": "npm:3.982.0" "@smithy/util-utf8": "npm:2.0.0" tslib: "npm:^2.5.0" peerDependencies: "@aws-amplify/core": ^6.1.0 - checksum: 10c0/06eb72bede56206f92008322e0c3833a0f55f9df482986cd962a78f0fdb456ac179149f52a4b90d41fe4aaa6a7f28d76769c65dd2c4573328be6678181da6206 + checksum: 10c0/a399a8cbf4d00099bb0503abc5db657ce2e726fedd167115d4dbdc855f3c07d62579b14095070914c1b1b8997b550c86481ab9b61b947e89adbc4d41a226efa3 languageName: node linkType: hard -"@aws-amplify/api-graphql@npm:4.8.4": - version: 4.8.4 - resolution: "@aws-amplify/api-graphql@npm:4.8.4" +"@aws-amplify/api-graphql@npm:4.8.5": + version: 4.8.5 + resolution: "@aws-amplify/api-graphql@npm:4.8.5" dependencies: - "@aws-amplify/api-rest": "npm:4.6.2" - "@aws-amplify/core": "npm:6.16.0" + "@aws-amplify/api-rest": "npm:4.6.3" + "@aws-amplify/core": "npm:6.16.1" "@aws-amplify/data-schema": "npm:^1.7.0" - "@aws-sdk/types": "npm:3.723.0" + "@aws-sdk/types": "npm:3.973.1" graphql: "npm:15.8.0" rxjs: "npm:^7.8.1" tslib: "npm:^2.5.0" uuid: "npm:^11.0.0" - checksum: 10c0/7220cfe5e26e0f38f2f0f457385e498f33c1567e750db2f76be9ad7b9e1e3a0bacc3f3338a115288fab9ff75b9a59f720b7fab49a6d03956bd09358621181b37 + checksum: 10c0/021f6b5a6ca3913a75830ade4d549bf972885c1e10cbbda4cf84e6d780c3a16d82107058e99dc7315314548ab76034e5e7e0b0aee320f09f254bff89ff9a18ec languageName: node linkType: hard -"@aws-amplify/api-rest@npm:4.6.2": - version: 4.6.2 - resolution: "@aws-amplify/api-rest@npm:4.6.2" +"@aws-amplify/api-rest@npm:4.6.3": + version: 4.6.3 + resolution: "@aws-amplify/api-rest@npm:4.6.3" dependencies: tslib: "npm:^2.5.0" peerDependencies: "@aws-amplify/core": ^6.1.0 - checksum: 10c0/9232b2b4c5a150afc099a548fecc1585ed0af6a21c50e558d1af22e6b8e7ec581662a5fd7ba96adde88639cceb6d39df1757b8bdb2d0e0d3a10d29b12bb82ade + checksum: 10c0/06d7ad0ebc1ed0f6d561d0f8975712ff1042061be705f2d6543717aca8809dc228bee3fc94bd1eea60b62e797215c4a1dc58928cdac7eb5e82d40b24b0f036fd languageName: node linkType: hard -"@aws-amplify/api@npm:6.3.23": - version: 6.3.23 - resolution: "@aws-amplify/api@npm:6.3.23" +"@aws-amplify/api@npm:6.3.24": + version: 6.3.24 + resolution: "@aws-amplify/api@npm:6.3.24" dependencies: - "@aws-amplify/api-graphql": "npm:4.8.4" - "@aws-amplify/api-rest": "npm:4.6.2" + "@aws-amplify/api-graphql": "npm:4.8.5" + "@aws-amplify/api-rest": "npm:4.6.3" "@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/3fc3313209de407f1c0929a40493bd5eff7538f2e8dc7e86d076d51cf6717110110210e82375e45708232c435bb9ff4cdaf6654f7319671526b21275dc3b1c6f + checksum: 10c0/d275c6304ad2f58f887c1fd48c88e16909ff1b9dfc1d02e16e1415dcf92fc723fd30de32c6bda5b7eb61f7ff101ede9a9c040a79ae835cbfa7acc1bae9d8082b languageName: node linkType: hard @@ -200,9 +200,9 @@ __metadata: languageName: node linkType: hard -"@aws-amplify/auth@npm:6.18.0": - version: 6.18.0 - resolution: "@aws-amplify/auth@npm:6.18.0" +"@aws-amplify/auth@npm:6.19.1": + version: 6.19.1 + resolution: "@aws-amplify/auth@npm:6.19.1" dependencies: "@aws-crypto/sha256-js": "npm:5.2.0" "@smithy/types": "npm:^3.3.0" @@ -213,7 +213,7 @@ __metadata: peerDependenciesMeta: "@aws-amplify/react-native": optional: true - checksum: 10c0/0381603ce8f5a34a533150d4ff56abeb53526d42232e3936743900c797556eba73f970114020cfc89120b68181ab0726808009cc4231f67b529451686a537c5a + checksum: 10c0/42caba8fc57d6bc59fff6703b670b17a265506b64b254c5b2aece1f33015ac5cbb7e38235deb36193dfa3d49e0ab42238446ad754ae4a767e7e1bffd9c06bbd1 languageName: node linkType: hard @@ -517,48 +517,48 @@ __metadata: languageName: node linkType: hard -"@aws-amplify/core@npm:6.16.0": - version: 6.16.0 - resolution: "@aws-amplify/core@npm:6.16.0" +"@aws-amplify/core@npm:6.16.1": + version: 6.16.1 + resolution: "@aws-amplify/core@npm:6.16.1" dependencies: "@aws-crypto/sha256-js": "npm:5.2.0" - "@aws-sdk/types": "npm:3.723.0" + "@aws-sdk/types": "npm:3.973.1" "@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/8b9f56d0ab8e25bcb949b8d6d77d3fbdc0cf179f9bcec867ef72ebdba0135821ba1c5f94192839a05cc7f107064d468c275b7e2cdec1ab69274e6692513ea58d + checksum: 10c0/fc54b51c412616848446d48595855574e03dd1252a0fd09e8ee9ff5eb8fec35542e98353cb343c37fb5d20c859cc0a053a322c909eacd702b8c2407ab8cd8392 languageName: node linkType: hard "@aws-amplify/data-construct@npm:^1.15.1": - version: 1.16.3 - resolution: "@aws-amplify/data-construct@npm:1.16.3" + version: 1.17.0 + resolution: "@aws-amplify/data-construct@npm:1.17.0" dependencies: "@aws-amplify/ai-constructs": "npm:^1.5.3" "@aws-amplify/backend-output-schemas": "npm:^1.0.0" "@aws-amplify/backend-output-storage": "npm:^1.0.0" - "@aws-amplify/graphql-api-construct": "npm:1.20.3" - "@aws-amplify/graphql-auth-transformer": "npm:4.2.4" - "@aws-amplify/graphql-conversation-transformer": "npm:1.1.12" - "@aws-amplify/graphql-default-value-transformer": "npm:3.1.14" - "@aws-amplify/graphql-directives": "npm:2.7.1" - "@aws-amplify/graphql-function-transformer": "npm:3.1.16" - "@aws-amplify/graphql-generation-transformer": "npm:1.2.4" - "@aws-amplify/graphql-http-transformer": "npm:3.0.19" - "@aws-amplify/graphql-index-transformer": "npm:3.0.19" - "@aws-amplify/graphql-maps-to-transformer": "npm:4.0.19" - "@aws-amplify/graphql-model-transformer": "npm:3.3.1" - "@aws-amplify/graphql-predictions-transformer": "npm:3.0.19" - "@aws-amplify/graphql-relational-transformer": "npm:3.1.11" - "@aws-amplify/graphql-searchable-transformer": "npm:3.0.19" - "@aws-amplify/graphql-sql-transformer": "npm:0.4.19" - "@aws-amplify/graphql-transformer": "npm:2.3.4" - "@aws-amplify/graphql-transformer-core": "npm:3.4.4" - "@aws-amplify/graphql-transformer-interfaces": "npm:4.2.6" - "@aws-amplify/graphql-validate-transformer": "npm:1.1.4" + "@aws-amplify/graphql-api-construct": "npm:1.21.0" + "@aws-amplify/graphql-auth-transformer": "npm:4.2.5" + "@aws-amplify/graphql-conversation-transformer": "npm:1.1.13" + "@aws-amplify/graphql-default-value-transformer": "npm:3.1.15" + "@aws-amplify/graphql-directives": "npm:2.8.0" + "@aws-amplify/graphql-function-transformer": "npm:3.1.17" + "@aws-amplify/graphql-generation-transformer": "npm:1.2.5" + "@aws-amplify/graphql-http-transformer": "npm:3.0.20" + "@aws-amplify/graphql-index-transformer": "npm:3.1.0" + "@aws-amplify/graphql-maps-to-transformer": "npm:4.0.20" + "@aws-amplify/graphql-model-transformer": "npm:3.4.0" + "@aws-amplify/graphql-predictions-transformer": "npm:3.0.20" + "@aws-amplify/graphql-relational-transformer": "npm:3.1.12" + "@aws-amplify/graphql-searchable-transformer": "npm:3.1.0" + "@aws-amplify/graphql-sql-transformer": "npm:0.4.20" + "@aws-amplify/graphql-transformer": "npm:2.4.0" + "@aws-amplify/graphql-transformer-core": "npm:3.5.0" + "@aws-amplify/graphql-transformer-interfaces": "npm:4.3.0" + "@aws-amplify/graphql-validate-transformer": "npm:1.1.5" "@aws-amplify/platform-core": "npm:^1.0.0" "@aws-amplify/plugin-types": "npm:^1.0.0" "@aws-crypto/crc32": "npm:5.2.0" @@ -644,7 +644,7 @@ __metadata: graceful-fs: "npm:^4.2.0" graphql: "npm:^15.5.0" graphql-mapping-template: "npm:5.0.2" - graphql-transformer-common: "npm:5.1.3" + graphql-transformer-common: "npm:5.1.4" hjson: "npm:^3.2.2" immer: "npm:^9.0.12" is-buffer: "npm:~1.1.6" @@ -665,9 +665,9 @@ __metadata: uuid: "npm:^9.0.1" zod: "npm:^3.22.2" peerDependencies: - aws-cdk-lib: ^2.187.0 + aws-cdk-lib: ^2.224.0 constructs: ^10.3.0 - checksum: 10c0/386f96b253e490b74684c0cb644eb4a86175a15b99e7f26f3d50c257bb0c43df727f2248d7fd559124cc996ae4728736fa174749bb1130f6dda078f5d1622143 + checksum: 10c0/43daf00d7c91a0fd0822ab5e0cea82cc900f438af9f0ed1441a9cfedd5c74b934d6cb5730d86b2a03a49a872eb79815eb6acc5f85b2a5c03d4592c9b080079d8 languageName: node linkType: hard @@ -704,12 +704,12 @@ __metadata: languageName: node linkType: hard -"@aws-amplify/datastore@npm:5.1.4": - version: 5.1.4 - resolution: "@aws-amplify/datastore@npm:5.1.4" +"@aws-amplify/datastore@npm:5.1.5": + version: 5.1.5 + resolution: "@aws-amplify/datastore@npm:5.1.5" dependencies: - "@aws-amplify/api": "npm:6.3.23" - "@aws-amplify/api-graphql": "npm:4.8.4" + "@aws-amplify/api": "npm:6.3.24" + "@aws-amplify/api-graphql": "npm:4.8.5" buffer: "npm:4.9.2" idb: "npm:5.0.6" immer: "npm:9.0.6" @@ -717,7 +717,7 @@ __metadata: ulid: "npm:^2.3.0" peerDependencies: "@aws-amplify/core": ^6.1.0 - checksum: 10c0/9025e51d0b9f4477817fadadfd3f08ec78f8716fdc5a097308b8ef021cf22dd108ab897d9adbe28c98b9c7d85c3a1b1e3278366463ff2a0979fd17abc055e653 + checksum: 10c0/97d8a4669a4b3ee3bf34ab32bf879d31d42f3796f288993932df6bbb64d9b9c8bc0c133bc45023a40fc41a6b8f13910f0959fe012e950c7c5cc073774fe1bed9 languageName: node linkType: hard @@ -789,31 +789,31 @@ __metadata: languageName: node linkType: hard -"@aws-amplify/graphql-api-construct@npm:1.20.3": - version: 1.20.3 - resolution: "@aws-amplify/graphql-api-construct@npm:1.20.3" +"@aws-amplify/graphql-api-construct@npm:1.21.0": + version: 1.21.0 + resolution: "@aws-amplify/graphql-api-construct@npm:1.21.0" dependencies: "@aws-amplify/ai-constructs": "npm:^1.5.3" "@aws-amplify/backend-output-schemas": "npm:^1.0.0" "@aws-amplify/backend-output-storage": "npm:^1.0.0" - "@aws-amplify/graphql-auth-transformer": "npm:4.2.4" - "@aws-amplify/graphql-conversation-transformer": "npm:1.1.12" - "@aws-amplify/graphql-default-value-transformer": "npm:3.1.14" - "@aws-amplify/graphql-directives": "npm:2.7.1" - "@aws-amplify/graphql-function-transformer": "npm:3.1.16" - "@aws-amplify/graphql-generation-transformer": "npm:1.2.4" - "@aws-amplify/graphql-http-transformer": "npm:3.0.19" - "@aws-amplify/graphql-index-transformer": "npm:3.0.19" - "@aws-amplify/graphql-maps-to-transformer": "npm:4.0.19" - "@aws-amplify/graphql-model-transformer": "npm:3.3.1" - "@aws-amplify/graphql-predictions-transformer": "npm:3.0.19" - "@aws-amplify/graphql-relational-transformer": "npm:3.1.11" - "@aws-amplify/graphql-searchable-transformer": "npm:3.0.19" - "@aws-amplify/graphql-sql-transformer": "npm:0.4.19" - "@aws-amplify/graphql-transformer": "npm:2.3.4" - "@aws-amplify/graphql-transformer-core": "npm:3.4.4" - "@aws-amplify/graphql-transformer-interfaces": "npm:4.2.6" - "@aws-amplify/graphql-validate-transformer": "npm:1.1.4" + "@aws-amplify/graphql-auth-transformer": "npm:4.2.5" + "@aws-amplify/graphql-conversation-transformer": "npm:1.1.13" + "@aws-amplify/graphql-default-value-transformer": "npm:3.1.15" + "@aws-amplify/graphql-directives": "npm:2.8.0" + "@aws-amplify/graphql-function-transformer": "npm:3.1.17" + "@aws-amplify/graphql-generation-transformer": "npm:1.2.5" + "@aws-amplify/graphql-http-transformer": "npm:3.0.20" + "@aws-amplify/graphql-index-transformer": "npm:3.1.0" + "@aws-amplify/graphql-maps-to-transformer": "npm:4.0.20" + "@aws-amplify/graphql-model-transformer": "npm:3.4.0" + "@aws-amplify/graphql-predictions-transformer": "npm:3.0.20" + "@aws-amplify/graphql-relational-transformer": "npm:3.1.12" + "@aws-amplify/graphql-searchable-transformer": "npm:3.1.0" + "@aws-amplify/graphql-sql-transformer": "npm:0.4.20" + "@aws-amplify/graphql-transformer": "npm:2.4.0" + "@aws-amplify/graphql-transformer-core": "npm:3.5.0" + "@aws-amplify/graphql-transformer-interfaces": "npm:4.3.0" + "@aws-amplify/graphql-validate-transformer": "npm:1.1.5" "@aws-amplify/platform-core": "npm:^1.0.0" "@aws-amplify/plugin-types": "npm:^1.0.0" "@aws-crypto/crc32": "npm:5.2.0" @@ -899,7 +899,7 @@ __metadata: graceful-fs: "npm:^4.2.0" graphql: "npm:^15.5.0" graphql-mapping-template: "npm:5.0.2" - graphql-transformer-common: "npm:5.1.3" + graphql-transformer-common: "npm:5.1.4" hjson: "npm:^3.2.2" immer: "npm:^9.0.12" is-buffer: "npm:~1.1.6" @@ -920,76 +920,76 @@ __metadata: uuid: "npm:^9.0.1" zod: "npm:^3.22.2" peerDependencies: - aws-cdk-lib: ^2.187.0 + aws-cdk-lib: ^2.224.0 constructs: ^10.3.0 - checksum: 10c0/1cd7105f09054ec9d5a6199111e48893e5e20918e27e1ee655133968970915bf978b8a51e0084888ce12c96138af8f9721f00e146712d46c8bcafcce4593067c + checksum: 10c0/6898eecf9eaacfb7292d4a7587e47d4876a8e2a6ddfb632cfcb3bdb5be3bd75df006e5d7cd690fccd442516346b0ddf1a57eebc7abcb4e05e6f0ebd414c7e2d7 languageName: node linkType: hard -"@aws-amplify/graphql-auth-transformer@npm:4.2.4": - version: 4.2.4 - resolution: "@aws-amplify/graphql-auth-transformer@npm:4.2.4" +"@aws-amplify/graphql-auth-transformer@npm:4.2.5": + version: 4.2.5 + resolution: "@aws-amplify/graphql-auth-transformer@npm:4.2.5" dependencies: - "@aws-amplify/graphql-directives": "npm:2.7.1" - "@aws-amplify/graphql-model-transformer": "npm:3.3.1" - "@aws-amplify/graphql-relational-transformer": "npm:3.1.11" - "@aws-amplify/graphql-transformer-core": "npm:3.4.4" - "@aws-amplify/graphql-transformer-interfaces": "npm:4.2.6" + "@aws-amplify/graphql-directives": "npm:2.8.0" + "@aws-amplify/graphql-model-transformer": "npm:3.4.0" + "@aws-amplify/graphql-relational-transformer": "npm:3.1.12" + "@aws-amplify/graphql-transformer-core": "npm:3.5.0" + "@aws-amplify/graphql-transformer-interfaces": "npm:4.3.0" graphql: "npm:^15.5.0" graphql-mapping-template: "npm:5.0.2" - graphql-transformer-common: "npm:5.1.3" + graphql-transformer-common: "npm:5.1.4" lodash: "npm:^4.17.21" md5: "npm:^2.3.0" peerDependencies: - aws-cdk-lib: ^2.187.0 + aws-cdk-lib: ^2.224.0 constructs: ^10.3.0 - checksum: 10c0/3e2e59b28f5f4738fc839beb42cf020c65f8da4680cdf1b471b890e8bfc21ceb6b00fad8e7b5f746156bbf5d118c2bfaf92d72cdc47a1c56c7a01d9a2b283c7e + checksum: 10c0/95f5b3169e66fe589bbf55a4e5bc14ed5796efc449abf565178192c5eae368d630d2016ea2ecd5f900b058a6d2e007081a3880181d53d3d81ddf551cb36c6f0e languageName: node linkType: hard -"@aws-amplify/graphql-conversation-transformer@npm:1.1.12": - version: 1.1.12 - resolution: "@aws-amplify/graphql-conversation-transformer@npm:1.1.12" +"@aws-amplify/graphql-conversation-transformer@npm:1.1.13": + version: 1.1.13 + resolution: "@aws-amplify/graphql-conversation-transformer@npm:1.1.13" dependencies: "@aws-amplify/ai-constructs": "npm:^1.5.3" - "@aws-amplify/graphql-directives": "npm:2.7.1" - "@aws-amplify/graphql-index-transformer": "npm:3.0.19" - "@aws-amplify/graphql-model-transformer": "npm:3.3.1" - "@aws-amplify/graphql-relational-transformer": "npm:3.1.11" - "@aws-amplify/graphql-transformer-core": "npm:3.4.4" - "@aws-amplify/graphql-transformer-interfaces": "npm:4.2.6" + "@aws-amplify/graphql-directives": "npm:2.8.0" + "@aws-amplify/graphql-index-transformer": "npm:3.1.0" + "@aws-amplify/graphql-model-transformer": "npm:3.4.0" + "@aws-amplify/graphql-relational-transformer": "npm:3.1.12" + "@aws-amplify/graphql-transformer-core": "npm:3.5.0" + "@aws-amplify/graphql-transformer-interfaces": "npm:4.3.0" "@aws-amplify/plugin-types": "npm:^1.0.0" graphql: "npm:^15.5.0" graphql-mapping-template: "npm:5.0.2" - graphql-transformer-common: "npm:5.1.3" + graphql-transformer-common: "npm:5.1.4" immer: "npm:^9.0.12" semver: "npm:^7.6.3" peerDependencies: - aws-cdk-lib: ^2.187.0 + aws-cdk-lib: ^2.224.0 constructs: ^10.3.0 - checksum: 10c0/f89cbcc272ee369c3687b21fac3cd46306b3beb56c91d4d0b84dcd2306b37b4aecc9a71f0287df7cf626332dc7087006c7cc347a59392d4f2dcd0766d816905f + checksum: 10c0/bc92d3f34867a540448913fd70ce1a8cb5125f66cb7765d7ad493ff3be10279d52c527f504553d27a684a63aaf8c9235b1d9276ba429e2daa4647f282cc89273 languageName: node linkType: hard -"@aws-amplify/graphql-default-value-transformer@npm:3.1.14": - version: 3.1.14 - resolution: "@aws-amplify/graphql-default-value-transformer@npm:3.1.14" +"@aws-amplify/graphql-default-value-transformer@npm:3.1.15": + version: 3.1.15 + resolution: "@aws-amplify/graphql-default-value-transformer@npm:3.1.15" dependencies: - "@aws-amplify/graphql-directives": "npm:2.7.1" - "@aws-amplify/graphql-transformer-core": "npm:3.4.4" - "@aws-amplify/graphql-transformer-interfaces": "npm:4.2.6" + "@aws-amplify/graphql-directives": "npm:2.8.0" + "@aws-amplify/graphql-transformer-core": "npm:3.5.0" + "@aws-amplify/graphql-transformer-interfaces": "npm:4.3.0" graphql: "npm:^15.5.0" graphql-mapping-template: "npm:5.0.2" - graphql-transformer-common: "npm:5.1.3" + graphql-transformer-common: "npm:5.1.4" libphonenumber-js: "npm:1.9.47" - checksum: 10c0/70f1b5b7b99854c5b53b6dc57c94def7d3f5fe232ee76a10b92e6dd2d1b7ce63d983c36897c76a5e336a122bd8b09bc1e442edd91d8708cc7c20a5aae205ffc8 + checksum: 10c0/b0f8c3b767eb24ab00974dc17ab53c63623e07662efd161f7244408118791818269100e6481e7daaaaf4055383cce77234a19be625dd26c0297178c8c6189c48 languageName: node linkType: hard -"@aws-amplify/graphql-directives@npm:2.7.1": - version: 2.7.1 - resolution: "@aws-amplify/graphql-directives@npm:2.7.1" - checksum: 10c0/85baf22a043a60ce35ea22a296e79560505079322b99d476296c62dd9ed46858c0f27c90f8bd587a68e4bced171f81eb21717dfebf27cb3b88a31ef55d506cac +"@aws-amplify/graphql-directives@npm:2.8.0": + version: 2.8.0 + resolution: "@aws-amplify/graphql-directives@npm:2.8.0" + checksum: 10c0/9543fce9eda66444506c405fe5255051b65d47fe77f66e8dc29c76986018c90b44ab6b0061e2c9ece555aeef36ef2a1d4242db14345028b5bcd8c623303e2d1c languageName: node linkType: hard @@ -1013,38 +1013,38 @@ __metadata: languageName: node linkType: hard -"@aws-amplify/graphql-function-transformer@npm:3.1.16": - version: 3.1.16 - resolution: "@aws-amplify/graphql-function-transformer@npm:3.1.16" +"@aws-amplify/graphql-function-transformer@npm:3.1.17": + version: 3.1.17 + resolution: "@aws-amplify/graphql-function-transformer@npm:3.1.17" dependencies: - "@aws-amplify/graphql-directives": "npm:2.7.1" - "@aws-amplify/graphql-transformer-core": "npm:3.4.4" - "@aws-amplify/graphql-transformer-interfaces": "npm:4.2.6" + "@aws-amplify/graphql-directives": "npm:2.8.0" + "@aws-amplify/graphql-transformer-core": "npm:3.5.0" + "@aws-amplify/graphql-transformer-interfaces": "npm:4.3.0" graphql: "npm:^15.5.0" graphql-mapping-template: "npm:5.0.2" - graphql-transformer-common: "npm:5.1.3" + graphql-transformer-common: "npm:5.1.4" peerDependencies: - aws-cdk-lib: ^2.187.0 + aws-cdk-lib: ^2.224.0 constructs: ^10.3.0 - checksum: 10c0/c4cd8bf4576185a38f7c2ec01d635c934d1c6417d429a6338798314cc49bbbe1cac1b3009055fe35ab8aa5f171aebedaa4c42888cebb869a0519ba292eb94416 + checksum: 10c0/5b0958c038c786fd13795f9b15dd3342359eba5a0dc0c472e622d56752c9647f27910651d6effa7f3f85ae021725ce461f99045e6d6e60687c2423d5aa903474 languageName: node linkType: hard -"@aws-amplify/graphql-generation-transformer@npm:1.2.4": - version: 1.2.4 - resolution: "@aws-amplify/graphql-generation-transformer@npm:1.2.4" +"@aws-amplify/graphql-generation-transformer@npm:1.2.5": + version: 1.2.5 + resolution: "@aws-amplify/graphql-generation-transformer@npm:1.2.5" dependencies: - "@aws-amplify/graphql-directives": "npm:2.7.1" - "@aws-amplify/graphql-transformer-core": "npm:3.4.4" - "@aws-amplify/graphql-transformer-interfaces": "npm:4.2.6" + "@aws-amplify/graphql-directives": "npm:2.8.0" + "@aws-amplify/graphql-transformer-core": "npm:3.5.0" + "@aws-amplify/graphql-transformer-interfaces": "npm:4.3.0" graphql: "npm:^15.5.0" graphql-mapping-template: "npm:5.0.2" - graphql-transformer-common: "npm:5.1.3" + graphql-transformer-common: "npm:5.1.4" immer: "npm:^9.0.12" peerDependencies: - aws-cdk-lib: ^2.187.0 + aws-cdk-lib: ^2.224.0 constructs: ^10.3.0 - checksum: 10c0/3427bf8ca03299da6ec40e6440c8d8a3cca8b70ace5e2fb877f67e2de598b9b909c589b45820c9d7f63c3305cd24126b809730bc4508fb3b06a4e8b15ea2ed61 + checksum: 10c0/bdb7d3bce3ef1c56805eb6f13cff884c8ec7f8360062c7f918113fc1f96bcf88163b425ae7f03a7fa57a0d1993c5c36cdaac1040b77984e4b006d65e55b3a36a languageName: node linkType: hard @@ -1098,206 +1098,206 @@ __metadata: languageName: node linkType: hard -"@aws-amplify/graphql-http-transformer@npm:3.0.19": - version: 3.0.19 - resolution: "@aws-amplify/graphql-http-transformer@npm:3.0.19" +"@aws-amplify/graphql-http-transformer@npm:3.0.20": + version: 3.0.20 + resolution: "@aws-amplify/graphql-http-transformer@npm:3.0.20" dependencies: - "@aws-amplify/graphql-directives": "npm:2.7.1" - "@aws-amplify/graphql-transformer-core": "npm:3.4.4" - "@aws-amplify/graphql-transformer-interfaces": "npm:4.2.6" + "@aws-amplify/graphql-directives": "npm:2.8.0" + "@aws-amplify/graphql-transformer-core": "npm:3.5.0" + "@aws-amplify/graphql-transformer-interfaces": "npm:4.3.0" graphql: "npm:^15.5.0" graphql-mapping-template: "npm:5.0.2" - graphql-transformer-common: "npm:5.1.3" + graphql-transformer-common: "npm:5.1.4" peerDependencies: - aws-cdk-lib: ^2.187.0 + aws-cdk-lib: ^2.224.0 constructs: ^10.3.0 - checksum: 10c0/5d0b8036ad7ec96a52068381b408a50eb7f56bc84927b599ee7c3dd95a16b5d22f92bc888f8f9e2bd4266f3b1b7706e9c0a46d67ec11799d872491049382e128 + checksum: 10c0/2d7aa6e14b50560004023ad19b392d47ca3b88a27e94444e1ecfe4d1230df4d758b9ca78af5fd082f305e591098742b9293449659668a164139a76e215867a97 languageName: node linkType: hard -"@aws-amplify/graphql-index-transformer@npm:3.0.19": - version: 3.0.19 - resolution: "@aws-amplify/graphql-index-transformer@npm:3.0.19" +"@aws-amplify/graphql-index-transformer@npm:3.1.0": + version: 3.1.0 + resolution: "@aws-amplify/graphql-index-transformer@npm:3.1.0" dependencies: - "@aws-amplify/graphql-directives": "npm:2.7.1" - "@aws-amplify/graphql-model-transformer": "npm:3.3.1" - "@aws-amplify/graphql-transformer-core": "npm:3.4.4" - "@aws-amplify/graphql-transformer-interfaces": "npm:4.2.6" + "@aws-amplify/graphql-directives": "npm:2.8.0" + "@aws-amplify/graphql-model-transformer": "npm:3.4.0" + "@aws-amplify/graphql-transformer-core": "npm:3.5.0" + "@aws-amplify/graphql-transformer-interfaces": "npm:4.3.0" graphql: "npm:^15.5.0" graphql-mapping-template: "npm:5.0.2" - graphql-transformer-common: "npm:5.1.3" + graphql-transformer-common: "npm:5.1.4" peerDependencies: - aws-cdk-lib: ^2.187.0 + aws-cdk-lib: ^2.224.0 constructs: ^10.3.0 - checksum: 10c0/271c8f338812e5b4224ea0590dd30a09b53d3017608214854e7f9f3f82c1fef7a932bd50c6adffa96ecc58fea1ff4268cbd5f963234c71e66642dc0740964874 + checksum: 10c0/3b68c5e55096f16157739908c4011dc5d449ca48c4fd21c3b0dc58904ed2953729afabaec3e9aa17407a171a88ef4f64d2ebc8b5066f0071e9c1783edda69c03 languageName: node linkType: hard -"@aws-amplify/graphql-maps-to-transformer@npm:4.0.19": - version: 4.0.19 - resolution: "@aws-amplify/graphql-maps-to-transformer@npm:4.0.19" +"@aws-amplify/graphql-maps-to-transformer@npm:4.0.20": + version: 4.0.20 + resolution: "@aws-amplify/graphql-maps-to-transformer@npm:4.0.20" dependencies: - "@aws-amplify/graphql-directives": "npm:2.7.1" - "@aws-amplify/graphql-transformer-core": "npm:3.4.4" - "@aws-amplify/graphql-transformer-interfaces": "npm:4.2.6" + "@aws-amplify/graphql-directives": "npm:2.8.0" + "@aws-amplify/graphql-transformer-core": "npm:3.5.0" + "@aws-amplify/graphql-transformer-interfaces": "npm:4.3.0" graphql-mapping-template: "npm:5.0.2" - graphql-transformer-common: "npm:5.1.3" + graphql-transformer-common: "npm:5.1.4" peerDependencies: - aws-cdk-lib: ^2.187.0 + aws-cdk-lib: ^2.224.0 constructs: ^10.3.0 - checksum: 10c0/045bb4781551bc00cee71886ab59baadef232335af5e22de6729e622f37b97fa43bc70da50cfc1b6f24b4b06c8bed53245e822db7c983c3d072d1021978aa567 + checksum: 10c0/921a4036f5181e1cce464e4e9c77269bed490d2932092236a9b414d10f7ac89845afc4e1df4478a4e3f812a381f570ea0405033c8e838e7c5397ce837cf77092 languageName: node linkType: hard -"@aws-amplify/graphql-model-transformer@npm:3.3.1": - version: 3.3.1 - resolution: "@aws-amplify/graphql-model-transformer@npm:3.3.1" +"@aws-amplify/graphql-model-transformer@npm:3.4.0": + version: 3.4.0 + resolution: "@aws-amplify/graphql-model-transformer@npm:3.4.0" dependencies: - "@aws-amplify/graphql-directives": "npm:2.7.1" - "@aws-amplify/graphql-transformer-core": "npm:3.4.4" - "@aws-amplify/graphql-transformer-interfaces": "npm:4.2.6" + "@aws-amplify/graphql-directives": "npm:2.8.0" + "@aws-amplify/graphql-transformer-core": "npm:3.5.0" + "@aws-amplify/graphql-transformer-interfaces": "npm:4.3.0" graphql: "npm:^15.5.0" graphql-mapping-template: "npm:5.0.2" - graphql-transformer-common: "npm:5.1.3" + graphql-transformer-common: "npm:5.1.4" peerDependencies: - aws-cdk-lib: ^2.187.0 + aws-cdk-lib: ^2.224.0 constructs: ^10.3.0 - checksum: 10c0/a0e86cc671fa6ccd179d7bba1abf10116a0948cdc1298baede684360bc7731f477f6bc7622f7a73173a4eed47b9851a2328ba403d018c6a92e4189e1cf028798 + checksum: 10c0/fd095b8de737fb77494aa71597b28c422e98ffa4f324298942b31bd650f2c5fb24bcce3d1936bf3119d0cb27322e302ed8802a2e39462d2c56eee5e2b5d86994 languageName: node linkType: hard -"@aws-amplify/graphql-predictions-transformer@npm:3.0.19": - version: 3.0.19 - resolution: "@aws-amplify/graphql-predictions-transformer@npm:3.0.19" +"@aws-amplify/graphql-predictions-transformer@npm:3.0.20": + version: 3.0.20 + resolution: "@aws-amplify/graphql-predictions-transformer@npm:3.0.20" dependencies: - "@aws-amplify/graphql-directives": "npm:2.7.1" - "@aws-amplify/graphql-transformer-core": "npm:3.4.4" - "@aws-amplify/graphql-transformer-interfaces": "npm:4.2.6" + "@aws-amplify/graphql-directives": "npm:2.8.0" + "@aws-amplify/graphql-transformer-core": "npm:3.5.0" + "@aws-amplify/graphql-transformer-interfaces": "npm:4.3.0" graphql: "npm:^15.5.0" graphql-mapping-template: "npm:5.0.2" - graphql-transformer-common: "npm:5.1.3" + graphql-transformer-common: "npm:5.1.4" peerDependencies: - aws-cdk-lib: ^2.187.0 + aws-cdk-lib: ^2.224.0 constructs: ^10.3.0 - checksum: 10c0/2d4aad80815c055b8e4152384ca2b9bc3329088efa9d03f1cf65ca562a298e67f9ea5451a9ad84a01d601f592eaadc06b76b51c952709a40f71cc71647f0fc03 + checksum: 10c0/155482da0b57d3721308c3822276122fd087f66061a871ed0890704fb7ce84dfc219226f687072c3ae0081a014119d1649a982d4bb5621aa2d77e678fea1cb8e languageName: node linkType: hard -"@aws-amplify/graphql-relational-transformer@npm:3.1.11": - version: 3.1.11 - resolution: "@aws-amplify/graphql-relational-transformer@npm:3.1.11" +"@aws-amplify/graphql-relational-transformer@npm:3.1.12": + version: 3.1.12 + resolution: "@aws-amplify/graphql-relational-transformer@npm:3.1.12" dependencies: - "@aws-amplify/graphql-directives": "npm:2.7.1" - "@aws-amplify/graphql-index-transformer": "npm:3.0.19" - "@aws-amplify/graphql-model-transformer": "npm:3.3.1" - "@aws-amplify/graphql-transformer-core": "npm:3.4.4" - "@aws-amplify/graphql-transformer-interfaces": "npm:4.2.6" + "@aws-amplify/graphql-directives": "npm:2.8.0" + "@aws-amplify/graphql-index-transformer": "npm:3.1.0" + "@aws-amplify/graphql-model-transformer": "npm:3.4.0" + "@aws-amplify/graphql-transformer-core": "npm:3.5.0" + "@aws-amplify/graphql-transformer-interfaces": "npm:4.3.0" graphql: "npm:^15.5.0" graphql-mapping-template: "npm:5.0.2" - graphql-transformer-common: "npm:5.1.3" + graphql-transformer-common: "npm:5.1.4" immer: "npm:^9.0.12" peerDependencies: - aws-cdk-lib: ^2.187.0 + aws-cdk-lib: ^2.224.0 constructs: ^10.3.0 - checksum: 10c0/1d462900ae3bc2985065fb83b3a680049a7893c3c0b7ed0ad95e37263ee7e8f4a4da68276c96454af08184519ab4539aabb3da1ff733e621a4a20169da6f9bc9 + checksum: 10c0/11a4b4c6a973a4be13e5665d19abe11a47825b03b11b103acc68e1717dbe3efac6031176bdc73729f72e7702d90123924e52b122e112adb547b7b1e8fa0ededb languageName: node linkType: hard -"@aws-amplify/graphql-searchable-transformer@npm:3.0.19": - version: 3.0.19 - resolution: "@aws-amplify/graphql-searchable-transformer@npm:3.0.19" +"@aws-amplify/graphql-searchable-transformer@npm:3.1.0": + version: 3.1.0 + resolution: "@aws-amplify/graphql-searchable-transformer@npm:3.1.0" dependencies: - "@aws-amplify/graphql-directives": "npm:2.7.1" - "@aws-amplify/graphql-model-transformer": "npm:3.3.1" - "@aws-amplify/graphql-transformer-core": "npm:3.4.4" - "@aws-amplify/graphql-transformer-interfaces": "npm:4.2.6" + "@aws-amplify/graphql-directives": "npm:2.8.0" + "@aws-amplify/graphql-model-transformer": "npm:3.4.0" + "@aws-amplify/graphql-transformer-core": "npm:3.5.0" + "@aws-amplify/graphql-transformer-interfaces": "npm:4.3.0" graphql: "npm:^15.5.0" graphql-mapping-template: "npm:5.0.2" - graphql-transformer-common: "npm:5.1.3" + graphql-transformer-common: "npm:5.1.4" peerDependencies: - aws-cdk-lib: ^2.187.0 + aws-cdk-lib: ^2.224.0 constructs: ^10.3.0 - checksum: 10c0/3e2e574c6396a14dcb7c52dc44c8dd8611614e18da3b0c1e1a5312c1289aa4e2aca4d90b8d79651ecc05358be930efe4a6bdcc001d0bb484c3f31f76798457f7 + checksum: 10c0/8c656f97a6d7e754314973050d67554e1cff00db8eb7d39a6d2bc75faeb68669727f71e482d5edd6d45448597d6c298a853ed7bd4f5977ecf425b7efae17e308 languageName: node linkType: hard -"@aws-amplify/graphql-sql-transformer@npm:0.4.19": - version: 0.4.19 - resolution: "@aws-amplify/graphql-sql-transformer@npm:0.4.19" +"@aws-amplify/graphql-sql-transformer@npm:0.4.20": + version: 0.4.20 + resolution: "@aws-amplify/graphql-sql-transformer@npm:0.4.20" dependencies: - "@aws-amplify/graphql-directives": "npm:2.7.1" - "@aws-amplify/graphql-model-transformer": "npm:3.3.1" - "@aws-amplify/graphql-transformer-core": "npm:3.4.4" - "@aws-amplify/graphql-transformer-interfaces": "npm:4.2.6" + "@aws-amplify/graphql-directives": "npm:2.8.0" + "@aws-amplify/graphql-model-transformer": "npm:3.4.0" + "@aws-amplify/graphql-transformer-core": "npm:3.5.0" + "@aws-amplify/graphql-transformer-interfaces": "npm:4.3.0" graphql: "npm:^15.5.0" graphql-mapping-template: "npm:5.0.2" - graphql-transformer-common: "npm:5.1.3" + graphql-transformer-common: "npm:5.1.4" peerDependencies: - aws-cdk-lib: ^2.187.0 + aws-cdk-lib: ^2.224.0 constructs: ^10.3.0 - checksum: 10c0/7ff2d3a4b404532d95326099b10937d5e53c9aab312d030b8e061360200bc95633b07be522dda2db9b651be1d7b379b23e1787389210696a1817b91f342338f2 + checksum: 10c0/c0616f9598ffafba528b4c9e2ea15f9557fde5f5ecb5db0915493d23dc246b47af8920d8fee4b94a5271e225d70710442847f5b77cc3fa1b8bc01e2e29852997 languageName: node linkType: hard -"@aws-amplify/graphql-transformer-core@npm:3.4.4": - version: 3.4.4 - resolution: "@aws-amplify/graphql-transformer-core@npm:3.4.4" +"@aws-amplify/graphql-transformer-core@npm:3.5.0": + version: 3.5.0 + resolution: "@aws-amplify/graphql-transformer-core@npm:3.5.0" dependencies: - "@aws-amplify/graphql-directives": "npm:2.7.1" - "@aws-amplify/graphql-transformer-interfaces": "npm:4.2.6" + "@aws-amplify/graphql-directives": "npm:2.8.0" + "@aws-amplify/graphql-transformer-interfaces": "npm:4.3.0" fs-extra: "npm:^8.1.0" graphql: "npm:^15.5.0" graphql-mapping-template: "npm:5.0.2" - graphql-transformer-common: "npm:5.1.3" + graphql-transformer-common: "npm:5.1.4" hjson: "npm:^3.2.2" lodash: "npm:^4.17.21" md5: "npm:^2.3.0" object-hash: "npm:^3.0.0" ts-dedent: "npm:^2.0.0" peerDependencies: - aws-cdk-lib: ^2.187.0 + aws-cdk-lib: ^2.224.0 constructs: ^10.3.0 - checksum: 10c0/2bdf5faf58f107e60099e526d61fbb88e3083d61f9dda07de6f26a0c527920022f7ab3181a1cb75350c4b9392bc25c7dbe9e82bc3d97f7d0f81b364f1e1153b4 + checksum: 10c0/7145d63a8460dfe31709ef52b98c5a61b36f4fbbf744d78e50ff2dea665cddaff3370447f2ba150b098761ab44f748627fda872e2dc42efd3420a7d3624cd6df languageName: node linkType: hard -"@aws-amplify/graphql-transformer-interfaces@npm:4.2.6": - version: 4.2.6 - resolution: "@aws-amplify/graphql-transformer-interfaces@npm:4.2.6" +"@aws-amplify/graphql-transformer-interfaces@npm:4.3.0": + version: 4.3.0 + resolution: "@aws-amplify/graphql-transformer-interfaces@npm:4.3.0" dependencies: graphql: "npm:^15.5.0" peerDependencies: - aws-cdk-lib: ^2.187.0 + aws-cdk-lib: ^2.224.0 constructs: ^10.3.0 - checksum: 10c0/7abb1e6e223e13698cc836fe3e76c6900046f9b8d8a386be97fe592da8d82aeaedb4dfb5ae22407e7c5671dac5f495a71ec01be6d48bf90b9e4dc66a1c406819 + checksum: 10c0/8ddb22d9a4f9a184e1d1f4510c45befe3ec4e063803237ab32fc98736c14adf9fa886b14cdf2c88bfc066f2b3ef82985a20d9471e49c7d1e4132d99348404e38 languageName: node linkType: hard -"@aws-amplify/graphql-transformer@npm:2.3.4": - version: 2.3.4 - resolution: "@aws-amplify/graphql-transformer@npm:2.3.4" - dependencies: - "@aws-amplify/graphql-auth-transformer": "npm:4.2.4" - "@aws-amplify/graphql-conversation-transformer": "npm:1.1.12" - "@aws-amplify/graphql-default-value-transformer": "npm:3.1.14" - "@aws-amplify/graphql-function-transformer": "npm:3.1.16" - "@aws-amplify/graphql-generation-transformer": "npm:1.2.4" - "@aws-amplify/graphql-http-transformer": "npm:3.0.19" - "@aws-amplify/graphql-index-transformer": "npm:3.0.19" - "@aws-amplify/graphql-maps-to-transformer": "npm:4.0.19" - "@aws-amplify/graphql-model-transformer": "npm:3.3.1" - "@aws-amplify/graphql-predictions-transformer": "npm:3.0.19" - "@aws-amplify/graphql-relational-transformer": "npm:3.1.11" - "@aws-amplify/graphql-searchable-transformer": "npm:3.0.19" - "@aws-amplify/graphql-sql-transformer": "npm:0.4.19" - "@aws-amplify/graphql-transformer-core": "npm:3.4.4" - "@aws-amplify/graphql-transformer-interfaces": "npm:4.2.6" - "@aws-amplify/graphql-validate-transformer": "npm:1.1.4" +"@aws-amplify/graphql-transformer@npm:2.4.0": + version: 2.4.0 + resolution: "@aws-amplify/graphql-transformer@npm:2.4.0" + dependencies: + "@aws-amplify/graphql-auth-transformer": "npm:4.2.5" + "@aws-amplify/graphql-conversation-transformer": "npm:1.1.13" + "@aws-amplify/graphql-default-value-transformer": "npm:3.1.15" + "@aws-amplify/graphql-function-transformer": "npm:3.1.17" + "@aws-amplify/graphql-generation-transformer": "npm:1.2.5" + "@aws-amplify/graphql-http-transformer": "npm:3.0.20" + "@aws-amplify/graphql-index-transformer": "npm:3.1.0" + "@aws-amplify/graphql-maps-to-transformer": "npm:4.0.20" + "@aws-amplify/graphql-model-transformer": "npm:3.4.0" + "@aws-amplify/graphql-predictions-transformer": "npm:3.0.20" + "@aws-amplify/graphql-relational-transformer": "npm:3.1.12" + "@aws-amplify/graphql-searchable-transformer": "npm:3.1.0" + "@aws-amplify/graphql-sql-transformer": "npm:0.4.20" + "@aws-amplify/graphql-transformer-core": "npm:3.5.0" + "@aws-amplify/graphql-transformer-interfaces": "npm:4.3.0" + "@aws-amplify/graphql-validate-transformer": "npm:1.1.5" "@aws-amplify/plugin-types": "npm:^1.0.0" peerDependencies: - aws-cdk-lib: ^2.187.0 + aws-cdk-lib: ^2.224.0 constructs: ^10.3.0 - checksum: 10c0/8d9844c780193d1ca24d04275950d600fe5c0addc0d371263846bcd72f0dc373300a61bf4685e065e923934debdd20404310fa37954b04d8a64cd2e4b2dd67ab + checksum: 10c0/bb032993a4914d68b3dd963cc3104a9d395e0d174e944028de238a02f28c4367ac295a818adae25e85ce291863ad29d814896e6be4383319c3eb46112c39c7c4 languageName: node linkType: hard @@ -1351,17 +1351,17 @@ __metadata: languageName: node linkType: hard -"@aws-amplify/graphql-validate-transformer@npm:1.1.4": - version: 1.1.4 - resolution: "@aws-amplify/graphql-validate-transformer@npm:1.1.4" +"@aws-amplify/graphql-validate-transformer@npm:1.1.5": + version: 1.1.5 + resolution: "@aws-amplify/graphql-validate-transformer@npm:1.1.5" dependencies: - "@aws-amplify/graphql-directives": "npm:2.7.1" - "@aws-amplify/graphql-transformer-core": "npm:3.4.4" - "@aws-amplify/graphql-transformer-interfaces": "npm:4.2.6" + "@aws-amplify/graphql-directives": "npm:2.8.0" + "@aws-amplify/graphql-transformer-core": "npm:3.5.0" + "@aws-amplify/graphql-transformer-interfaces": "npm:4.3.0" graphql: "npm:^15.5.0" graphql-mapping-template: "npm:5.0.2" - graphql-transformer-common: "npm:5.1.3" - checksum: 10c0/59d6796a8bec418a67d80b8f2b636c20f710b76e589623a1e761207fe271d463274772e4908f448ffe265b88bb48cf2fcd52237f376dbab91ba2ff33e226c3ad + graphql-transformer-common: "npm:5.1.4" + checksum: 10c0/d0671f78ad35c29e411904facedbddc9850e360c0726fa05ccb8f283f75772fe41c573d083c95f80af2bd0208adf308fee38dd5f326f706ef68ea52124eb1e7f languageName: node linkType: hard @@ -1425,16 +1425,16 @@ __metadata: languageName: node linkType: hard -"@aws-amplify/notifications@npm:2.0.92": - version: 2.0.92 - resolution: "@aws-amplify/notifications@npm:2.0.92" +"@aws-amplify/notifications@npm:2.0.93": + version: 2.0.93 + resolution: "@aws-amplify/notifications@npm:2.0.93" dependencies: - "@aws-sdk/types": "npm:3.723.0" + "@aws-sdk/types": "npm:3.973.1" lodash: "npm:^4.17.21" tslib: "npm:^2.5.0" peerDependencies: "@aws-amplify/core": ^6.1.0 - checksum: 10c0/8fef8c277d404dc3846fafc8f1d0740fa49485c3a60b42f4d0d3549166c91e4efc6d45df343fe513d7d59b25c38c6314ea380f9e4973b4b419a869fc75a990ed + checksum: 10c0/9344cfb03380e73eb77f9004988494d6e2e828305dbcebcd99026e87ec89ffb22c3175152de18f692630a76de9ae30fa382203309c8c73bade28370022145e0c languageName: node linkType: hard @@ -1558,19 +1558,19 @@ __metadata: languageName: node linkType: hard -"@aws-amplify/storage@npm:6.12.0": - version: 6.12.0 - resolution: "@aws-amplify/storage@npm:6.12.0" +"@aws-amplify/storage@npm:6.13.1": + version: 6.13.1 + resolution: "@aws-amplify/storage@npm:6.13.1" dependencies: - "@aws-sdk/types": "npm:3.723.0" + "@aws-sdk/types": "npm:3.973.1" "@smithy/md5-js": "npm:2.0.7" buffer: "npm:4.9.2" crc-32: "npm:1.2.2" - fast-xml-parser: "npm:^4.4.1" + fast-xml-parser: "npm:^5.3.4" tslib: "npm:^2.5.0" peerDependencies: "@aws-amplify/core": ^6.1.0 - checksum: 10c0/fb54b46958ea118c4d13504ecdcce4c10c0b35a26dd741b0e3dff8cd2c31592968834fdb05479ed3804ead5f84062ee31861f013960b663d85b48afe9aa0523d + checksum: 10c0/3ed137c387bebcf10c45857e8eb1a3c9e4a090387cc22cf058786b6347624b0d93564eead793627b87b6af2720251fec1fc36f154dcfd65d71f97c0b362dcd10 languageName: node linkType: hard @@ -1589,12 +1589,12 @@ __metadata: linkType: hard "@aws-cdk/aws-service-spec@npm:^0.1.132": - version: 0.1.147 - resolution: "@aws-cdk/aws-service-spec@npm:0.1.147" + version: 0.1.149 + resolution: "@aws-cdk/aws-service-spec@npm:0.1.149" dependencies: - "@aws-cdk/service-spec-types": "npm:^0.0.213" + "@aws-cdk/service-spec-types": "npm:^0.0.215" "@cdklabs/tskb": "npm:^0.0.4" - checksum: 10c0/a65daa3796da05ca998efc74f1b51c5a9dbde11131a3dbdd0973b253798d8bab6052cd575b4be5c85b8a21233dc88084027484edf99796bd708463a225d3fc55 + checksum: 10c0/958e2c0a9b4789c34fb0d46d076338be41b9c48521474370dcd7aa0101c00def8f7d3f5a82776c0d2f839a2dc2b340aa7bf7bc8d76cccca27f68787cf45c111b languageName: node linkType: hard @@ -1634,12 +1634,12 @@ __metadata: 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" + version: 50.4.0 + resolution: "@aws-cdk/cloud-assembly-schema@npm:50.4.0" dependencies: jsonschema: "npm:~1.4.1" semver: "npm:^7.7.3" - checksum: 10c0/139829232684c70d1d99526a4b747d412720cacb1ef2b3b934de7e88ab4c75a877dbeb872db0d46d978715f8a66377cfe28fb7f87badc0e073d0575c2f15c16d + checksum: 10c0/6ae3bf2eccc824b802a7380f354c4663d6b2083be8a0ffaed4cb2a49f749153ca5df3174de323549e7fcdbb326a4ca6b09004f929b4177660aecf4dc4ff6f156 languageName: node linkType: hard @@ -1671,13 +1671,13 @@ __metadata: linkType: hard "@aws-cdk/cx-api@npm:^2": - version: 2.236.0 - resolution: "@aws-cdk/cx-api@npm:2.236.0" + version: 2.237.1 + resolution: "@aws-cdk/cx-api@npm:2.237.1" dependencies: semver: "npm:^7.7.3" peerDependencies: "@aws-cdk/cloud-assembly-schema": ">=45.0.0" - checksum: 10c0/2b07701a991ea85c1fcc3574085bd2b613b6e21a99374a68d9b9e0159a97bd413bbe910a7660808c408eca58ce0216f2abddd2ec28b11502102d8451bd08a0ae + checksum: 10c0/9b0ad3c99e0d9d53c484d5116eb857717f29e39987df712f4e334a9458bf705c07696aebf03ae2ec051776f5ce701113c03ea25fbab9c9bfa7872bf3609719b2 languageName: node linkType: hard @@ -1690,12 +1690,12 @@ __metadata: languageName: node linkType: hard -"@aws-cdk/service-spec-types@npm:^0.0.213": - version: 0.0.213 - resolution: "@aws-cdk/service-spec-types@npm:0.0.213" +"@aws-cdk/service-spec-types@npm:^0.0.215": + version: 0.0.215 + resolution: "@aws-cdk/service-spec-types@npm:0.0.215" dependencies: "@cdklabs/tskb": "npm:^0.0.4" - checksum: 10c0/3c5365ce6dc81b54bd4ac6c5a8ee20eac1d939e2b7bc4bbb0031d33d1b1d70c418b381ec063970ecce54ff20933152212e6dd54e6993c2ed4bd4a65f1f5ce6b7 + checksum: 10c0/6562906045fc6161b32466052b279f8f5073ac97cf73fe06f32f9851c91be2a8d09381333a99c03bc3619ff916eacc2015a4d9a643847300bf80d19020383776 languageName: node linkType: hard @@ -1891,144 +1891,144 @@ __metadata: linkType: hard "@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" + version: 3.985.0 + resolution: "@aws-sdk/client-amplify@npm:3.985.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/core": "npm:^3.973.7" + "@aws-sdk/credential-provider-node": "npm:^3.972.6" "@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-user-agent": "npm:^3.972.7" "@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-endpoints": "npm:3.985.0" "@aws-sdk/util-user-agent-browser": "npm:^3.972.3" - "@aws-sdk/util-user-agent-node": "npm:^3.972.3" + "@aws-sdk/util-user-agent-node": "npm:^3.972.5" "@smithy/config-resolver": "npm:^4.4.6" - "@smithy/core": "npm:^3.22.0" + "@smithy/core": "npm:^3.22.1" "@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-endpoint": "npm:^4.4.13" + "@smithy/middleware-retry": "npm:^4.4.30" "@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/node-http-handler": "npm:^4.4.9" "@smithy/protocol-http": "npm:^5.3.8" - "@smithy/smithy-client": "npm:^4.11.1" + "@smithy/smithy-client": "npm:^4.11.2" "@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.28" - "@smithy/util-defaults-mode-node": "npm:^4.2.31" + "@smithy/util-defaults-mode-browser": "npm:^4.3.29" + "@smithy/util-defaults-mode-node": "npm:^4.2.32" "@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/896c82ecd4b5b110673d07c7e59eedd548cbd02e9f5e7a32a17294cc35c8c7895632b5e37142b61779f9dac1b39a9b7fdecc53854267e79055d00a0688961fa3 + checksum: 10c0/5002d3672d50daedc2229848cf2b6cb6c41c6c11a6d83d6b4b7474c6b5f125ebd9876b7c49665207edd2d9229f7466711d8fbf5b2341e151776b0df6e0ad536d languageName: node linkType: hard "@aws-sdk/client-amplifyuibuilder@npm:^3.465.0": - version: 3.980.0 - resolution: "@aws-sdk/client-amplifyuibuilder@npm:3.980.0" + version: 3.985.0 + resolution: "@aws-sdk/client-amplifyuibuilder@npm:3.985.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/core": "npm:^3.973.7" + "@aws-sdk/credential-provider-node": "npm:^3.972.6" "@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-user-agent": "npm:^3.972.7" "@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-endpoints": "npm:3.985.0" "@aws-sdk/util-user-agent-browser": "npm:^3.972.3" - "@aws-sdk/util-user-agent-node": "npm:^3.972.3" + "@aws-sdk/util-user-agent-node": "npm:^3.972.5" "@smithy/config-resolver": "npm:^4.4.6" - "@smithy/core": "npm:^3.22.0" + "@smithy/core": "npm:^3.22.1" "@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-endpoint": "npm:^4.4.13" + "@smithy/middleware-retry": "npm:^4.4.30" "@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/node-http-handler": "npm:^4.4.9" "@smithy/protocol-http": "npm:^5.3.8" - "@smithy/smithy-client": "npm:^4.11.1" + "@smithy/smithy-client": "npm:^4.11.2" "@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.28" - "@smithy/util-defaults-mode-node": "npm:^4.2.31" + "@smithy/util-defaults-mode-browser": "npm:^4.3.29" + "@smithy/util-defaults-mode-node": "npm:^4.2.32" "@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/b72ff2b4f8a2b9de04395c292b9bcb26a48a16255773321868088f9aec5e1a0c7669d5534056c24b608f3fc8c5dc066197cb86bf9bd80a0bf9f88f26412d0030 + checksum: 10c0/096dbb424d92d6ecea0baa11fc1f7a8e0f560222f830269855bfb17522ac9130aa69ccb14d91caff6aabc55da386bd2cd5f8b45593b2264578d8b609be942f71 languageName: node linkType: hard "@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" + version: 3.985.0 + resolution: "@aws-sdk/client-appsync@npm:3.985.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/core": "npm:^3.973.7" + "@aws-sdk/credential-provider-node": "npm:^3.972.6" "@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-user-agent": "npm:^3.972.7" "@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-endpoints": "npm:3.985.0" "@aws-sdk/util-user-agent-browser": "npm:^3.972.3" - "@aws-sdk/util-user-agent-node": "npm:^3.972.3" + "@aws-sdk/util-user-agent-node": "npm:^3.972.5" "@smithy/config-resolver": "npm:^4.4.6" - "@smithy/core": "npm:^3.22.0" + "@smithy/core": "npm:^3.22.1" "@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-endpoint": "npm:^4.4.13" + "@smithy/middleware-retry": "npm:^4.4.30" "@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/node-http-handler": "npm:^4.4.9" "@smithy/protocol-http": "npm:^5.3.8" - "@smithy/smithy-client": "npm:^4.11.1" + "@smithy/smithy-client": "npm:^4.11.2" "@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.28" - "@smithy/util-defaults-mode-node": "npm:^4.2.31" + "@smithy/util-defaults-mode-browser": "npm:^4.3.29" + "@smithy/util-defaults-mode-node": "npm:^4.2.32" "@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-stream": "npm:^4.5.11" "@smithy/util-utf8": "npm:^4.2.0" tslib: "npm:^2.6.2" - checksum: 10c0/8d6d14c1c1805face0b1801307daaf09d2d3175dbe2244eb558fa17e21cc505eb846f09781589bf6ff19555d984a7e888e3a671b700f3b373655345d51687273 + checksum: 10c0/7ef3f6eb86deac9621c27d225c337482f1fad82c6117323d82b476ae824a52d31417cf75c6cc77ed47c95a3fbf068dc125cd960238480318162f9a307c2b8d18 languageName: node linkType: hard @@ -2086,28 +2086,28 @@ __metadata: linkType: hard "@aws-sdk/client-bedrock-runtime@npm:^3.622.0": - version: 3.980.0 - resolution: "@aws-sdk/client-bedrock-runtime@npm:3.980.0" + version: 3.985.0 + resolution: "@aws-sdk/client-bedrock-runtime@npm:3.985.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/eventstream-handler-node": "npm:^3.972.3" + "@aws-sdk/core": "npm:^3.973.7" + "@aws-sdk/credential-provider-node": "npm:^3.972.6" + "@aws-sdk/eventstream-handler-node": "npm:^3.972.5" "@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/middleware-user-agent": "npm:^3.972.7" + "@aws-sdk/middleware-websocket": "npm:^3.972.5" "@aws-sdk/region-config-resolver": "npm:^3.972.3" - "@aws-sdk/token-providers": "npm:3.980.0" + "@aws-sdk/token-providers": "npm:3.985.0" "@aws-sdk/types": "npm:^3.973.1" - "@aws-sdk/util-endpoints": "npm:3.980.0" + "@aws-sdk/util-endpoints": "npm:3.985.0" "@aws-sdk/util-user-agent-browser": "npm:^3.972.3" - "@aws-sdk/util-user-agent-node": "npm:^3.972.3" + "@aws-sdk/util-user-agent-node": "npm:^3.972.5" "@smithy/config-resolver": "npm:^4.4.6" - "@smithy/core": "npm:^3.22.0" + "@smithy/core": "npm:^3.22.1" "@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" @@ -2115,146 +2115,146 @@ __metadata: "@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-endpoint": "npm:^4.4.13" + "@smithy/middleware-retry": "npm:^4.4.30" "@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/node-http-handler": "npm:^4.4.9" "@smithy/protocol-http": "npm:^5.3.8" - "@smithy/smithy-client": "npm:^4.11.1" + "@smithy/smithy-client": "npm:^4.11.2" "@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.28" - "@smithy/util-defaults-mode-node": "npm:^4.2.31" + "@smithy/util-defaults-mode-browser": "npm:^4.3.29" + "@smithy/util-defaults-mode-node": "npm:^4.2.32" "@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-stream": "npm:^4.5.11" "@smithy/util-utf8": "npm:^4.2.0" tslib: "npm:^2.6.2" - checksum: 10c0/8067329d9a7ed7c6adc6d76971fd3dd628c270ad828e0524561cb4ab60a7a79a598d162b4f17c97c76108f6440d2dc4b65b272410daad8ac15a0e1994147a2d0 + checksum: 10c0/1a92d3134504ba6658dc95b0ee8e80ce4394d0d057b5f39c22886ca16ca39d94df5bbc314cc07a7a59337edd36618a7c4edcb5121c27853d25d0dc2045c95bd1 languageName: node linkType: hard "@aws-sdk/client-cloudcontrol@npm:^3": - version: 3.980.0 - resolution: "@aws-sdk/client-cloudcontrol@npm:3.980.0" + version: 3.985.0 + resolution: "@aws-sdk/client-cloudcontrol@npm:3.985.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/core": "npm:^3.973.7" + "@aws-sdk/credential-provider-node": "npm:^3.972.6" "@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-user-agent": "npm:^3.972.7" "@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-endpoints": "npm:3.985.0" "@aws-sdk/util-user-agent-browser": "npm:^3.972.3" - "@aws-sdk/util-user-agent-node": "npm:^3.972.3" + "@aws-sdk/util-user-agent-node": "npm:^3.972.5" "@smithy/config-resolver": "npm:^4.4.6" - "@smithy/core": "npm:^3.22.0" + "@smithy/core": "npm:^3.22.1" "@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-endpoint": "npm:^4.4.13" + "@smithy/middleware-retry": "npm:^4.4.30" "@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/node-http-handler": "npm:^4.4.9" "@smithy/protocol-http": "npm:^5.3.8" - "@smithy/smithy-client": "npm:^4.11.1" + "@smithy/smithy-client": "npm:^4.11.2" "@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.28" - "@smithy/util-defaults-mode-node": "npm:^4.2.31" + "@smithy/util-defaults-mode-browser": "npm:^4.3.29" + "@smithy/util-defaults-mode-node": "npm:^4.2.32" "@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.8" tslib: "npm:^2.6.2" - checksum: 10c0/fd4bcd8809fd5a686a8535a1540803cbcbef26b66ed4378b348d02e9866059cc35b97e4e321fbda5b17cc5c666cba2a259fbb656b85548868aa56404a47ff8f3 + checksum: 10c0/ef07a59dc1135870fb5cdfc282a4fc65f2b2d2cb615f6c51d055430e646a03231b64e29140009c9b23a394ebad0537a292827b62f9084aa026368607040bbb6b languageName: node linkType: hard "@aws-sdk/client-cloudformation@npm:^3, @aws-sdk/client-cloudformation@npm:^3.465.0": - version: 3.980.0 - resolution: "@aws-sdk/client-cloudformation@npm:3.980.0" + version: 3.985.0 + resolution: "@aws-sdk/client-cloudformation@npm:3.985.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/core": "npm:^3.973.7" + "@aws-sdk/credential-provider-node": "npm:^3.972.6" "@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-user-agent": "npm:^3.972.7" "@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-endpoints": "npm:3.985.0" "@aws-sdk/util-user-agent-browser": "npm:^3.972.3" - "@aws-sdk/util-user-agent-node": "npm:^3.972.3" + "@aws-sdk/util-user-agent-node": "npm:^3.972.5" "@smithy/config-resolver": "npm:^4.4.6" - "@smithy/core": "npm:^3.22.0" + "@smithy/core": "npm:^3.22.1" "@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-endpoint": "npm:^4.4.13" + "@smithy/middleware-retry": "npm:^4.4.30" "@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/node-http-handler": "npm:^4.4.9" "@smithy/protocol-http": "npm:^5.3.8" - "@smithy/smithy-client": "npm:^4.11.1" + "@smithy/smithy-client": "npm:^4.11.2" "@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.28" - "@smithy/util-defaults-mode-node": "npm:^4.2.31" + "@smithy/util-defaults-mode-browser": "npm:^4.3.29" + "@smithy/util-defaults-mode-node": "npm:^4.2.32" "@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.8" tslib: "npm:^2.6.2" - checksum: 10c0/21f5d4d21d61bdd6ff6895846b9eb6be285bbf36c623febd7feceb326db386aa69d3e17a3afb5a557ca838e73b0c98732927fc3c930386d9d414a84df45fb1ce + checksum: 10c0/8904887222442113a6981602c2298d43d642016eed2c9b50ce1d384886982e395bd404857ebb68d8518615fb4f9aa275e4aa03aaf2b4b68d747803b91a43677c languageName: node linkType: hard "@aws-sdk/client-cloudwatch-logs@npm:^3": - version: 3.980.0 - resolution: "@aws-sdk/client-cloudwatch-logs@npm:3.980.0" + version: 3.985.0 + resolution: "@aws-sdk/client-cloudwatch-logs@npm:3.985.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/core": "npm:^3.973.7" + "@aws-sdk/credential-provider-node": "npm:^3.972.6" "@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-user-agent": "npm:^3.972.7" "@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-endpoints": "npm:3.985.0" "@aws-sdk/util-user-agent-browser": "npm:^3.972.3" - "@aws-sdk/util-user-agent-node": "npm:^3.972.3" + "@aws-sdk/util-user-agent-node": "npm:^3.972.5" "@smithy/config-resolver": "npm:^4.4.6" - "@smithy/core": "npm:^3.22.0" + "@smithy/core": "npm:^3.22.1" "@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" @@ -2262,74 +2262,74 @@ __metadata: "@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-endpoint": "npm:^4.4.13" + "@smithy/middleware-retry": "npm:^4.4.30" "@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/node-http-handler": "npm:^4.4.9" "@smithy/protocol-http": "npm:^5.3.8" - "@smithy/smithy-client": "npm:^4.11.1" + "@smithy/smithy-client": "npm:^4.11.2" "@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.28" - "@smithy/util-defaults-mode-node": "npm:^4.2.31" + "@smithy/util-defaults-mode-browser": "npm:^4.3.29" + "@smithy/util-defaults-mode-node": "npm:^4.2.32" "@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/03716cd78e3332b7bc23d405dd37da2da9f9f372b7e32b46108a0e66552e016ed1109c7340118c163755f3afb2d21a643568984d63dff83e5dee8978d2c3717d + checksum: 10c0/2238a7f368dd95be1a70e5cf706f9d3ffdbbe9186ab6f4b7dc97132ca80fa10e79dc4bda312e4cf634375fdfc206bbb45d7a5b84e9a83dac9efee3a598a1be20 languageName: node linkType: hard "@aws-sdk/client-codebuild@npm:^3": - version: 3.980.0 - resolution: "@aws-sdk/client-codebuild@npm:3.980.0" + version: 3.985.0 + resolution: "@aws-sdk/client-codebuild@npm:3.985.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/core": "npm:^3.973.7" + "@aws-sdk/credential-provider-node": "npm:^3.972.6" "@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-user-agent": "npm:^3.972.7" "@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-endpoints": "npm:3.985.0" "@aws-sdk/util-user-agent-browser": "npm:^3.972.3" - "@aws-sdk/util-user-agent-node": "npm:^3.972.3" + "@aws-sdk/util-user-agent-node": "npm:^3.972.5" "@smithy/config-resolver": "npm:^4.4.6" - "@smithy/core": "npm:^3.22.0" + "@smithy/core": "npm:^3.22.1" "@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-endpoint": "npm:^4.4.13" + "@smithy/middleware-retry": "npm:^4.4.30" "@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/node-http-handler": "npm:^4.4.9" "@smithy/protocol-http": "npm:^5.3.8" - "@smithy/smithy-client": "npm:^4.11.1" + "@smithy/smithy-client": "npm:^4.11.2" "@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.28" - "@smithy/util-defaults-mode-node": "npm:^4.2.31" + "@smithy/util-defaults-mode-browser": "npm:^4.3.29" + "@smithy/util-defaults-mode-node": "npm:^4.2.32" "@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/d9bc2d0ebc536c71d6873a17c4b08afcce4593011a9f555316603337a05e493a36de9f59b022f8c326c31ff07d67f033f1b3a40075836b3768c8c8f6136fe04a + checksum: 10c0/baede57eaaa53fb392dbe274889dcefcbcc976e5cc0084c03cbca8f114e244c03973b90386d1fa121b52dc89e051ca03dc34a74180c65f681688c819e1fa5fdd languageName: node linkType: hard @@ -2380,218 +2380,313 @@ __metadata: languageName: node linkType: hard +"@aws-sdk/client-cognito-identity@npm:3.985.0": + version: 3.985.0 + resolution: "@aws-sdk/client-cognito-identity@npm:3.985.0" + dependencies: + "@aws-crypto/sha256-browser": "npm:5.2.0" + "@aws-crypto/sha256-js": "npm:5.2.0" + "@aws-sdk/core": "npm:^3.973.7" + "@aws-sdk/credential-provider-node": "npm:^3.972.6" + "@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.7" + "@aws-sdk/region-config-resolver": "npm:^3.972.3" + "@aws-sdk/types": "npm:^3.973.1" + "@aws-sdk/util-endpoints": "npm:3.985.0" + "@aws-sdk/util-user-agent-browser": "npm:^3.972.3" + "@aws-sdk/util-user-agent-node": "npm:^3.972.5" + "@smithy/config-resolver": "npm:^4.4.6" + "@smithy/core": "npm:^3.22.1" + "@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.13" + "@smithy/middleware-retry": "npm:^4.4.30" + "@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.9" + "@smithy/protocol-http": "npm:^5.3.8" + "@smithy/smithy-client": "npm:^4.11.2" + "@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.29" + "@smithy/util-defaults-mode-node": "npm:^4.2.32" + "@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/421ba5557ce35cc69d1c34f6bc6d7dacbe18e5a2ef25db35eda2c8cf2e7228693f09241d6e11a80927ca88ac3fff741b9a00d0cedf297f9b2f92ea22c9f67423 + languageName: node + linkType: hard + "@aws-sdk/client-dynamodb@npm:^3.682.0": - version: 3.980.0 - resolution: "@aws-sdk/client-dynamodb@npm:3.980.0" + version: 3.985.0 + resolution: "@aws-sdk/client-dynamodb@npm:3.985.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/dynamodb-codec": "npm:^3.972.5" + "@aws-sdk/core": "npm:^3.973.7" + "@aws-sdk/credential-provider-node": "npm:^3.972.6" + "@aws-sdk/dynamodb-codec": "npm:^3.972.8" "@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/middleware-user-agent": "npm:^3.972.7" "@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-endpoints": "npm:3.985.0" "@aws-sdk/util-user-agent-browser": "npm:^3.972.3" - "@aws-sdk/util-user-agent-node": "npm:^3.972.3" + "@aws-sdk/util-user-agent-node": "npm:^3.972.5" "@smithy/config-resolver": "npm:^4.4.6" - "@smithy/core": "npm:^3.22.0" + "@smithy/core": "npm:^3.22.1" "@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-endpoint": "npm:^4.4.13" + "@smithy/middleware-retry": "npm:^4.4.30" "@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/node-http-handler": "npm:^4.4.9" "@smithy/protocol-http": "npm:^5.3.8" - "@smithy/smithy-client": "npm:^4.11.1" + "@smithy/smithy-client": "npm:^4.11.2" "@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.28" - "@smithy/util-defaults-mode-node": "npm:^4.2.31" + "@smithy/util-defaults-mode-browser": "npm:^4.3.29" + "@smithy/util-defaults-mode-node": "npm:^4.2.32" "@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.8" tslib: "npm:^2.6.2" - checksum: 10c0/07ee61f890e5157be2f66a4e6d4c8274171c7c826c5906a3a1e938ea0b177f23772253a7569abdb131091feb5e61da3c66e3bd8e2f3883444ac28164e31e0546 + checksum: 10c0/4df9aa61a2223420a442bb5c3d0bafd2375466ce7d1711ee53c0f5f0c1333f4126746b9f55191d1625cf430d5f0e54e6ca0896fad9c7d862b6717e7e7c1fe050 languageName: node linkType: hard "@aws-sdk/client-ec2@npm:^3": - version: 3.980.0 - resolution: "@aws-sdk/client-ec2@npm:3.980.0" + version: 3.985.0 + resolution: "@aws-sdk/client-ec2@npm:3.985.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/core": "npm:^3.973.7" + "@aws-sdk/credential-provider-node": "npm:^3.972.6" "@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/middleware-sdk-ec2": "npm:^3.972.6" + "@aws-sdk/middleware-user-agent": "npm:^3.972.7" "@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-endpoints": "npm:3.985.0" "@aws-sdk/util-user-agent-browser": "npm:^3.972.3" - "@aws-sdk/util-user-agent-node": "npm:^3.972.3" + "@aws-sdk/util-user-agent-node": "npm:^3.972.5" "@smithy/config-resolver": "npm:^4.4.6" - "@smithy/core": "npm:^3.22.0" + "@smithy/core": "npm:^3.22.1" "@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-endpoint": "npm:^4.4.13" + "@smithy/middleware-retry": "npm:^4.4.30" "@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/node-http-handler": "npm:^4.4.9" "@smithy/protocol-http": "npm:^5.3.8" - "@smithy/smithy-client": "npm:^4.11.1" + "@smithy/smithy-client": "npm:^4.11.2" "@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.28" - "@smithy/util-defaults-mode-node": "npm:^4.2.31" + "@smithy/util-defaults-mode-browser": "npm:^4.3.29" + "@smithy/util-defaults-mode-node": "npm:^4.2.32" "@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.8" tslib: "npm:^2.6.2" - checksum: 10c0/1a916e6677d75ca06c81ef30c8b195f5efe7151799a0abb8f524027c62e6e15d2f187b14fec32cbe67fdc80334710ac8c8abdd38978405d499bce5a2f05d9a83 + checksum: 10c0/3ca00dd9819a214cfbe34c268bc7f1df3d1f55bac2d38cc9db03a71fbe977e655cfea1347b061d7789089f10d556ab4a838837d023ff708caa36850610333ca2 languageName: node linkType: hard "@aws-sdk/client-ecr@npm:^3": - version: 3.980.0 - resolution: "@aws-sdk/client-ecr@npm:3.980.0" + version: 3.985.0 + resolution: "@aws-sdk/client-ecr@npm:3.985.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/core": "npm:^3.973.7" + "@aws-sdk/credential-provider-node": "npm:^3.972.6" "@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-user-agent": "npm:^3.972.7" "@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-endpoints": "npm:3.985.0" "@aws-sdk/util-user-agent-browser": "npm:^3.972.3" - "@aws-sdk/util-user-agent-node": "npm:^3.972.3" + "@aws-sdk/util-user-agent-node": "npm:^3.972.5" "@smithy/config-resolver": "npm:^4.4.6" - "@smithy/core": "npm:^3.22.0" + "@smithy/core": "npm:^3.22.1" "@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-endpoint": "npm:^4.4.13" + "@smithy/middleware-retry": "npm:^4.4.30" "@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/node-http-handler": "npm:^4.4.9" "@smithy/protocol-http": "npm:^5.3.8" - "@smithy/smithy-client": "npm:^4.11.1" + "@smithy/smithy-client": "npm:^4.11.2" "@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.28" - "@smithy/util-defaults-mode-node": "npm:^4.2.31" + "@smithy/util-defaults-mode-browser": "npm:^4.3.29" + "@smithy/util-defaults-mode-node": "npm:^4.2.32" "@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.8" tslib: "npm:^2.6.2" - checksum: 10c0/8bf0331fc3fcc759c86f0ac4142821f2da8f266958f43e4a0abe5c323c4cd1e5681415b66dbe176d5c92186d358299343fe4b480e4fc4010f9e9f8a1e4372bd9 + checksum: 10c0/e3ab8d3697b19043d1437cc044dd566b85547d237065cf69352416697cf7b057d97a081a0be70be1b51d05419c68ed75ae6ec55729a3942e0c03e4886922e3f6 languageName: node linkType: hard "@aws-sdk/client-ecs@npm:^3": - version: 3.980.0 - resolution: "@aws-sdk/client-ecs@npm:3.980.0" + version: 3.985.0 + resolution: "@aws-sdk/client-ecs@npm:3.985.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/core": "npm:^3.973.7" + "@aws-sdk/credential-provider-node": "npm:^3.972.6" "@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-user-agent": "npm:^3.972.7" "@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-endpoints": "npm:3.985.0" "@aws-sdk/util-user-agent-browser": "npm:^3.972.3" - "@aws-sdk/util-user-agent-node": "npm:^3.972.3" + "@aws-sdk/util-user-agent-node": "npm:^3.972.5" "@smithy/config-resolver": "npm:^4.4.6" - "@smithy/core": "npm:^3.22.0" + "@smithy/core": "npm:^3.22.1" "@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-endpoint": "npm:^4.4.13" + "@smithy/middleware-retry": "npm:^4.4.30" "@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/node-http-handler": "npm:^4.4.9" "@smithy/protocol-http": "npm:^5.3.8" - "@smithy/smithy-client": "npm:^4.11.1" + "@smithy/smithy-client": "npm:^4.11.2" "@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.28" - "@smithy/util-defaults-mode-node": "npm:^4.2.31" + "@smithy/util-defaults-mode-browser": "npm:^4.3.29" + "@smithy/util-defaults-mode-node": "npm:^4.2.32" "@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.8" tslib: "npm:^2.6.2" - checksum: 10c0/4059d4797488910cb5dde0e73e518c61afdb65d94cffac5d19ea23328a97e0cc21f868801bbd529218c84d91f12289ad3d05eb5ee5b7df90754d8d4fdb3cc851 + checksum: 10c0/fee4309142feacc68db2a0f231d7c89e187dff523775802a2d1340a3527f84cbe1f76748e93bdb3c5ca35a4424434f4928065779e530aa14b2654a5c3f93fdb9 languageName: node linkType: hard "@aws-sdk/client-elastic-load-balancing-v2@npm:^3": - version: 3.980.0 - resolution: "@aws-sdk/client-elastic-load-balancing-v2@npm:3.980.0" + version: 3.985.0 + resolution: "@aws-sdk/client-elastic-load-balancing-v2@npm:3.985.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/core": "npm:^3.973.7" + "@aws-sdk/credential-provider-node": "npm:^3.972.6" "@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-user-agent": "npm:^3.972.7" "@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-endpoints": "npm:3.985.0" "@aws-sdk/util-user-agent-browser": "npm:^3.972.3" - "@aws-sdk/util-user-agent-node": "npm:^3.972.3" + "@aws-sdk/util-user-agent-node": "npm:^3.972.5" + "@smithy/config-resolver": "npm:^4.4.6" + "@smithy/core": "npm:^3.22.1" + "@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.13" + "@smithy/middleware-retry": "npm:^4.4.30" + "@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.9" + "@smithy/protocol-http": "npm:^5.3.8" + "@smithy/smithy-client": "npm:^4.11.2" + "@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.29" + "@smithy/util-defaults-mode-node": "npm:^4.2.32" + "@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.8" + tslib: "npm:^2.6.2" + checksum: 10c0/68372328ed196a1541579cfcc762c112034a58d8d31f25c5fb935f954a0ad8b567aa6ca849fa9c2bc78e3a7db537340ba2511569ed9c4c67986e7a1985e5a9e7 + languageName: node + linkType: hard + +"@aws-sdk/client-firehose@npm:3.982.0": + version: 3.982.0 + resolution: "@aws-sdk/client-firehose@npm:3.982.0" + dependencies: + "@aws-crypto/sha256-browser": "npm:5.2.0" + "@aws-crypto/sha256-js": "npm:5.2.0" + "@aws-sdk/core": "npm:^3.973.6" + "@aws-sdk/credential-provider-node": "npm:^3.972.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.6" + "@aws-sdk/region-config-resolver": "npm:^3.972.3" + "@aws-sdk/types": "npm:^3.973.1" + "@aws-sdk/util-endpoints": "npm:3.982.0" + "@aws-sdk/util-user-agent-browser": "npm:^3.972.3" + "@aws-sdk/util-user-agent-node": "npm:^3.972.4" "@smithy/config-resolver": "npm:^4.4.6" "@smithy/core": "npm:^3.22.0" "@smithy/fetch-http-handler": "npm:^5.3.9" @@ -2617,80 +2712,81 @@ __metadata: "@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.8" tslib: "npm:^2.6.2" - checksum: 10c0/d1ca21667c0280a99ec311786c431de0b2c26eb41eba1be326f7fd5b0b7daf0fadd2a80dd7f3a1c2c3be5ee7212e2069bb499c3425da6ba1d06ae39c7e77146a + checksum: 10c0/f3b181061828e25c48afb98e88436c61a63723b7329fe5f31dc1fff30360ac2e9cd5b00c9f4c79c2bf5393da66e64b1350961b3fa9a81ff4a93eb51d66fc0775 languageName: node linkType: hard -"@aws-sdk/client-firehose@npm:3.723.0": - version: 3.723.0 - resolution: "@aws-sdk/client-firehose@npm:3.723.0" +"@aws-sdk/client-iam@npm:^3": + version: 3.985.0 + resolution: "@aws-sdk/client-iam@npm:3.985.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.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" + "@aws-sdk/core": "npm:^3.973.7" + "@aws-sdk/credential-provider-node": "npm:^3.972.6" + "@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.7" + "@aws-sdk/region-config-resolver": "npm:^3.972.3" + "@aws-sdk/types": "npm:^3.973.1" + "@aws-sdk/util-endpoints": "npm:3.985.0" + "@aws-sdk/util-user-agent-browser": "npm:^3.972.3" + "@aws-sdk/util-user-agent-node": "npm:^3.972.5" + "@smithy/config-resolver": "npm:^4.4.6" + "@smithy/core": "npm:^3.22.1" + "@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.13" + "@smithy/middleware-retry": "npm:^4.4.30" + "@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.9" + "@smithy/protocol-http": "npm:^5.3.8" + "@smithy/smithy-client": "npm:^4.11.2" + "@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.29" + "@smithy/util-defaults-mode-node": "npm:^4.2.32" + "@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.8" tslib: "npm:^2.6.2" - checksum: 10c0/1e07e4813157baaf8a02ca6ef20c5b2a4027edbfb965015b849d54cfd44032fdc07c9889d311ff4066921d410293884be63448dd068f726b39834d24ab3bbd40 + checksum: 10c0/652c57222ab7b33b054e22784d039144ab3966dcac9baa797bef41e0d8b95620ccdc81931148a549d1575e792e924375a30f63ced941acdb62adb69d93c71f3a languageName: node linkType: hard -"@aws-sdk/client-iam@npm:^3": - version: 3.980.0 - resolution: "@aws-sdk/client-iam@npm:3.980.0" +"@aws-sdk/client-kinesis@npm:3.982.0": + version: 3.982.0 + resolution: "@aws-sdk/client-kinesis@npm:3.982.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/core": "npm:^3.973.6" + "@aws-sdk/credential-provider-node": "npm:^3.972.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/middleware-user-agent": "npm:^3.972.6" "@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-endpoints": "npm:3.982.0" "@aws-sdk/util-user-agent-browser": "npm:^3.972.3" - "@aws-sdk/util-user-agent-node": "npm:^3.972.3" + "@aws-sdk/util-user-agent-node": "npm:^3.972.4" "@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" @@ -2716,132 +2812,128 @@ __metadata: "@smithy/util-utf8": "npm:^4.2.0" "@smithy/util-waiter": "npm:^4.2.8" tslib: "npm:^2.6.2" - checksum: 10c0/3d6a5058c2a167de9acf23253210ea7f074660e2b51745722452382f620bb29c9f003ce874a48be387be3e49cb6e9d399a68a9dd85fe97a64bf7c5050739bfed + checksum: 10c0/73b793e2c90f275f4f32f9fa6d7caa6522288a8307998a1b309794108128dbcd1ff64e2d6473913d328c40c539a0357fa60dcadf7772376c0e1f8b44ecb55003 languageName: node linkType: hard -"@aws-sdk/client-kinesis@npm:3.723.0": - version: 3.723.0 - resolution: "@aws-sdk/client-kinesis@npm:3.723.0" +"@aws-sdk/client-kms@npm:^3": + version: 3.985.0 + resolution: "@aws-sdk/client-kms@npm:3.985.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.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" + "@aws-sdk/core": "npm:^3.973.7" + "@aws-sdk/credential-provider-node": "npm:^3.972.6" + "@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.7" + "@aws-sdk/region-config-resolver": "npm:^3.972.3" + "@aws-sdk/types": "npm:^3.973.1" + "@aws-sdk/util-endpoints": "npm:3.985.0" + "@aws-sdk/util-user-agent-browser": "npm:^3.972.3" + "@aws-sdk/util-user-agent-node": "npm:^3.972.5" + "@smithy/config-resolver": "npm:^4.4.6" + "@smithy/core": "npm:^3.22.1" + "@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.13" + "@smithy/middleware-retry": "npm:^4.4.30" + "@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.9" + "@smithy/protocol-http": "npm:^5.3.8" + "@smithy/smithy-client": "npm:^4.11.2" + "@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.29" + "@smithy/util-defaults-mode-node": "npm:^4.2.32" + "@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/537553d36286862f0240d8012fd3e0507411ad2c16dcdf22caa9fdeb32252ea4bdbf459d25f1d391d01b51c2f731ee5ed0bea2661a4b05f2da8eabc2d58ab2bf + checksum: 10c0/fadf4fcd8e126397c2444176ab264ee8a095f18d497054eed9c34535d4eef4632816f56c5263c98ac9aa396fd5d475a09a93afc97d7fef5c82e293050c097bfb languageName: node linkType: hard -"@aws-sdk/client-kms@npm:^3": - version: 3.980.0 - resolution: "@aws-sdk/client-kms@npm:3.980.0" +"@aws-sdk/client-lambda@npm:^3, @aws-sdk/client-lambda@npm:^3.980.0": + version: 3.985.0 + resolution: "@aws-sdk/client-lambda@npm:3.985.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/core": "npm:^3.973.7" + "@aws-sdk/credential-provider-node": "npm:^3.972.6" "@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-user-agent": "npm:^3.972.7" "@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-endpoints": "npm:3.985.0" "@aws-sdk/util-user-agent-browser": "npm:^3.972.3" - "@aws-sdk/util-user-agent-node": "npm:^3.972.3" + "@aws-sdk/util-user-agent-node": "npm:^3.972.5" "@smithy/config-resolver": "npm:^4.4.6" - "@smithy/core": "npm:^3.22.0" + "@smithy/core": "npm:^3.22.1" + "@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-endpoint": "npm:^4.4.13" + "@smithy/middleware-retry": "npm:^4.4.30" "@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/node-http-handler": "npm:^4.4.9" "@smithy/protocol-http": "npm:^5.3.8" - "@smithy/smithy-client": "npm:^4.11.1" + "@smithy/smithy-client": "npm:^4.11.2" "@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.28" - "@smithy/util-defaults-mode-node": "npm:^4.2.31" + "@smithy/util-defaults-mode-browser": "npm:^4.3.29" + "@smithy/util-defaults-mode-node": "npm:^4.2.32" "@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.11" "@smithy/util-utf8": "npm:^4.2.0" + "@smithy/util-waiter": "npm:^4.2.8" tslib: "npm:^2.6.2" - checksum: 10c0/438cc0c20031f9f5a02be413d2fc69ae63e87dd9613d88d81f228ca85d25b3941ea2314f774aead931bf864120c21d1b5aabda4d687901338dcba2986b710eda + checksum: 10c0/bef0b2ca2f64923f3355835837b738f53361830929e111c563590382de14729513959e84309100c92137829d7b87bf2aab8be9b44f3682acb8b830de8bdaf1c8 languageName: node linkType: hard -"@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" +"@aws-sdk/client-personalize-events@npm:3.982.0": + version: 3.982.0 + resolution: "@aws-sdk/client-personalize-events@npm:3.982.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/core": "npm:^3.973.6" + "@aws-sdk/credential-provider-node": "npm:^3.972.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/middleware-user-agent": "npm:^3.972.6" "@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-endpoints": "npm:3.982.0" "@aws-sdk/util-user-agent-browser": "npm:^3.972.3" - "@aws-sdk/util-user-agent-node": "npm:^3.972.3" + "@aws-sdk/util-user-agent-node": "npm:^3.972.4" "@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" @@ -2864,139 +2956,88 @@ __metadata: "@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.8" tslib: "npm:^2.6.2" - checksum: 10c0/1aee115aab64e913d07c2d5622f6b525f857c8154f09073e086315f4943bc88b81fb0d47b1a14007ac564681bdda7da688da1ffc4e8a607c9da9cbe6f4c40e3b - languageName: node - linkType: hard - -"@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.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 + checksum: 10c0/77a9b66cd69e1dc4d9f758f12130dd2800056d54092e51880aa0c687e9656a4dcdc7111e1984e922339207390f784d21f263fcff95873cff58ef9407b7050039 languageName: node linkType: hard "@aws-sdk/client-route-53@npm:^3, @aws-sdk/client-route-53@npm:^3.658.1": - version: 3.980.0 - resolution: "@aws-sdk/client-route-53@npm:3.980.0" + version: 3.985.0 + resolution: "@aws-sdk/client-route-53@npm:3.985.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/core": "npm:^3.973.7" + "@aws-sdk/credential-provider-node": "npm:^3.972.6" "@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/middleware-sdk-route53": "npm:^3.972.4" + "@aws-sdk/middleware-user-agent": "npm:^3.972.7" "@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-endpoints": "npm:3.985.0" "@aws-sdk/util-user-agent-browser": "npm:^3.972.3" - "@aws-sdk/util-user-agent-node": "npm:^3.972.3" + "@aws-sdk/util-user-agent-node": "npm:^3.972.5" "@smithy/config-resolver": "npm:^4.4.6" - "@smithy/core": "npm:^3.22.0" + "@smithy/core": "npm:^3.22.1" "@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-endpoint": "npm:^4.4.13" + "@smithy/middleware-retry": "npm:^4.4.30" "@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/node-http-handler": "npm:^4.4.9" "@smithy/protocol-http": "npm:^5.3.8" - "@smithy/smithy-client": "npm:^4.11.1" + "@smithy/smithy-client": "npm:^4.11.2" "@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.28" - "@smithy/util-defaults-mode-node": "npm:^4.2.31" + "@smithy/util-defaults-mode-browser": "npm:^4.3.29" + "@smithy/util-defaults-mode-node": "npm:^4.2.32" "@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.8" tslib: "npm:^2.6.2" - checksum: 10c0/73f76fb01733c502e96b41401bac05d19eb84afca11bfeeb92a500ac78076d08d8067e08b2abde65b404342e1e1559eb2a63f65531dc436b0498dc85215acc20 + checksum: 10c0/6df5253bd937a72c8a7c761eb5d8a669946e9262eab59f984071494d0b2ea8bf1472a99e27a653b50633c49754c2dbdaaf5e1c1af60192c84a507e3c059dcad4 languageName: node linkType: hard "@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" + version: 3.985.0 + resolution: "@aws-sdk/client-s3@npm:3.985.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.973.5" - "@aws-sdk/credential-provider-node": "npm:^3.972.4" + "@aws-sdk/core": "npm:^3.973.7" + "@aws-sdk/credential-provider-node": "npm:^3.972.6" "@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-flexible-checksums": "npm:^3.972.5" "@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-sdk-s3": "npm:^3.972.7" "@aws-sdk/middleware-ssec": "npm:^3.972.3" - "@aws-sdk/middleware-user-agent": "npm:^3.972.5" + "@aws-sdk/middleware-user-agent": "npm:^3.972.7" "@aws-sdk/region-config-resolver": "npm:^3.972.3" - "@aws-sdk/signature-v4-multi-region": "npm:3.980.0" + "@aws-sdk/signature-v4-multi-region": "npm:3.985.0" "@aws-sdk/types": "npm:^3.973.1" - "@aws-sdk/util-endpoints": "npm:3.980.0" + "@aws-sdk/util-endpoints": "npm:3.985.0" "@aws-sdk/util-user-agent-browser": "npm:^3.972.3" - "@aws-sdk/util-user-agent-node": "npm:^3.972.3" + "@aws-sdk/util-user-agent-node": "npm:^3.972.5" "@smithy/config-resolver": "npm:^4.4.6" - "@smithy/core": "npm:^3.22.0" + "@smithy/core": "npm:^3.22.1" "@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" @@ -3007,171 +3048,171 @@ __metadata: "@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-endpoint": "npm:^4.4.13" + "@smithy/middleware-retry": "npm:^4.4.30" "@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/node-http-handler": "npm:^4.4.9" "@smithy/protocol-http": "npm:^5.3.8" - "@smithy/smithy-client": "npm:^4.11.1" + "@smithy/smithy-client": "npm:^4.11.2" "@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.28" - "@smithy/util-defaults-mode-node": "npm:^4.2.31" + "@smithy/util-defaults-mode-browser": "npm:^4.3.29" + "@smithy/util-defaults-mode-node": "npm:^4.2.32" "@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-stream": "npm:^4.5.11" "@smithy/util-utf8": "npm:^4.2.0" "@smithy/util-waiter": "npm:^4.2.8" tslib: "npm:^2.6.2" - checksum: 10c0/00a32c3cddb8828c3670c4657fb95a080a91f74ea8cb606b2cdcd0fcf77d57b4394bc4e843e0000ff3000e8b92e523c27cca1bf0dfab9f5ab45bf6f12cc4722c + checksum: 10c0/23d98f623441f9b91c7b821fd51dfae3d3c7b38342aa1ae8f194f27aaa4816c134c5d105f70bb95d92cb90c21426b4498aa5c647fa99f9de78c212fd5b5e861f languageName: node linkType: hard "@aws-sdk/client-secrets-manager@npm:^3, @aws-sdk/client-secrets-manager@npm:^3.658.1": - version: 3.980.0 - resolution: "@aws-sdk/client-secrets-manager@npm:3.980.0" + version: 3.985.0 + resolution: "@aws-sdk/client-secrets-manager@npm:3.985.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/core": "npm:^3.973.7" + "@aws-sdk/credential-provider-node": "npm:^3.972.6" "@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-user-agent": "npm:^3.972.7" "@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-endpoints": "npm:3.985.0" "@aws-sdk/util-user-agent-browser": "npm:^3.972.3" - "@aws-sdk/util-user-agent-node": "npm:^3.972.3" + "@aws-sdk/util-user-agent-node": "npm:^3.972.5" "@smithy/config-resolver": "npm:^4.4.6" - "@smithy/core": "npm:^3.22.0" + "@smithy/core": "npm:^3.22.1" "@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-endpoint": "npm:^4.4.13" + "@smithy/middleware-retry": "npm:^4.4.30" "@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/node-http-handler": "npm:^4.4.9" "@smithy/protocol-http": "npm:^5.3.8" - "@smithy/smithy-client": "npm:^4.11.1" + "@smithy/smithy-client": "npm:^4.11.2" "@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.28" - "@smithy/util-defaults-mode-node": "npm:^4.2.31" + "@smithy/util-defaults-mode-browser": "npm:^4.3.29" + "@smithy/util-defaults-mode-node": "npm:^4.2.32" "@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/2a915d465d2f1e8ed5c4ada74b08822e0ad22ca528790d73be0cb9b366cef1a088394b8f66ae5dac4a133a51e0b74e3f2689332c720b5f26f47e6b72b5a5d451 + checksum: 10c0/06eb40ec9b9aa1610500bbebfbddb9fe539e2976e3ddbeccc94e57e052dcb00e4cf82af039081351bc71c220fe73f729f39b412245ec2847abe896881d07d751 languageName: node linkType: hard "@aws-sdk/client-sfn@npm:^3": - version: 3.980.0 - resolution: "@aws-sdk/client-sfn@npm:3.980.0" + version: 3.985.0 + resolution: "@aws-sdk/client-sfn@npm:3.985.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/core": "npm:^3.973.7" + "@aws-sdk/credential-provider-node": "npm:^3.972.6" "@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-user-agent": "npm:^3.972.7" "@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-endpoints": "npm:3.985.0" "@aws-sdk/util-user-agent-browser": "npm:^3.972.3" - "@aws-sdk/util-user-agent-node": "npm:^3.972.3" + "@aws-sdk/util-user-agent-node": "npm:^3.972.5" "@smithy/config-resolver": "npm:^4.4.6" - "@smithy/core": "npm:^3.22.0" + "@smithy/core": "npm:^3.22.1" "@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-endpoint": "npm:^4.4.13" + "@smithy/middleware-retry": "npm:^4.4.30" "@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/node-http-handler": "npm:^4.4.9" "@smithy/protocol-http": "npm:^5.3.8" - "@smithy/smithy-client": "npm:^4.11.1" + "@smithy/smithy-client": "npm:^4.11.2" "@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.28" - "@smithy/util-defaults-mode-node": "npm:^4.2.31" + "@smithy/util-defaults-mode-browser": "npm:^4.3.29" + "@smithy/util-defaults-mode-node": "npm:^4.2.32" "@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/4fb95a76d93cd0ed2338711548cba9e08f712261aac2b4dd8ea1fc119e34eac24016627ec10bfd01c8e7da917ca6ccd23e8089b9692045a2e94f9ca3cc069b19 + checksum: 10c0/e5f62e7a42d747a80b9d16bd9924362607519f491bb81f8460e2becddd7d7c58ac335aaa164306b2a232a71eabe6ba10c9bac19a0e812741eb0157d1bb61bd2d languageName: node linkType: hard "@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" + version: 3.985.0 + resolution: "@aws-sdk/client-ssm@npm:3.985.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/core": "npm:^3.973.7" + "@aws-sdk/credential-provider-node": "npm:^3.972.6" "@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-user-agent": "npm:^3.972.7" "@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-endpoints": "npm:3.985.0" "@aws-sdk/util-user-agent-browser": "npm:^3.972.3" - "@aws-sdk/util-user-agent-node": "npm:^3.972.3" + "@aws-sdk/util-user-agent-node": "npm:^3.972.5" "@smithy/config-resolver": "npm:^4.4.6" - "@smithy/core": "npm:^3.22.0" + "@smithy/core": "npm:^3.22.1" "@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-endpoint": "npm:^4.4.13" + "@smithy/middleware-retry": "npm:^4.4.30" "@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/node-http-handler": "npm:^4.4.9" "@smithy/protocol-http": "npm:^5.3.8" - "@smithy/smithy-client": "npm:^4.11.1" + "@smithy/smithy-client": "npm:^4.11.2" "@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.28" - "@smithy/util-defaults-mode-node": "npm:^4.2.31" + "@smithy/util-defaults-mode-browser": "npm:^4.3.29" + "@smithy/util-defaults-mode-node": "npm:^4.2.32" "@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.8" tslib: "npm:^2.6.2" - checksum: 10c0/c30ad2215d503ce8ba7aef76fdf0580201fda0203a43971d21b7ee43eccc8a968d38ba841ddc1f3defa9e522fa927d6e3944a092831a620ad6ac59c6e72826f6 + checksum: 10c0/8c2ba6fe3a5f38f1fa63d245c81619dc94f40778e321faa351205cd1cd3f9f0b5fa7e42c05de4ef8dac83c79c027ce18393cca4154b2f364f0790acf2c7e025e languageName: node linkType: hard @@ -3273,55 +3314,6 @@ __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" @@ -3458,95 +3450,49 @@ __metadata: languageName: node linkType: hard -"@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.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" +"@aws-sdk/client-sso@npm:3.985.0": + version: 3.985.0 + resolution: "@aws-sdk/client-sso@npm:3.985.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/core": "npm:^3.973.7" "@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-user-agent": "npm:^3.972.7" "@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-endpoints": "npm:3.985.0" "@aws-sdk/util-user-agent-browser": "npm:^3.972.3" - "@aws-sdk/util-user-agent-node": "npm:^3.972.3" + "@aws-sdk/util-user-agent-node": "npm:^3.972.5" "@smithy/config-resolver": "npm:^4.4.6" - "@smithy/core": "npm:^3.22.0" + "@smithy/core": "npm:^3.22.1" "@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-endpoint": "npm:^4.4.13" + "@smithy/middleware-retry": "npm:^4.4.30" "@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/node-http-handler": "npm:^4.4.9" "@smithy/protocol-http": "npm:^5.3.8" - "@smithy/smithy-client": "npm:^4.11.1" + "@smithy/smithy-client": "npm:^4.11.2" "@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.28" - "@smithy/util-defaults-mode-node": "npm:^4.2.31" + "@smithy/util-defaults-mode-browser": "npm:^4.3.29" + "@smithy/util-defaults-mode-node": "npm:^4.2.32" "@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/870a684d7772971d482361e9ed94d2cd86ffa0d47f572e2f01ba44e7f5954cd91b1e832961deadcb5afaf1fee6f26cce755a3cc5299f3336e1f26b1d652aa2c1 + checksum: 10c0/456e0642162fa5160374f7ffc165fa54dcaeec6a2ac7a25bbde29bcfcdee9d03bcc919f8bfd91073f998d0406a4eb3d0cf431b103e7fadaea1f702c9f9f641cd languageName: node linkType: hard @@ -3646,98 +3592,50 @@ __metadata: languageName: node linkType: hard -"@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/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" + version: 3.985.0 + resolution: "@aws-sdk/client-sts@npm:3.985.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/core": "npm:^3.973.7" + "@aws-sdk/credential-provider-node": "npm:^3.972.6" "@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-user-agent": "npm:^3.972.7" "@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-endpoints": "npm:3.985.0" "@aws-sdk/util-user-agent-browser": "npm:^3.972.3" - "@aws-sdk/util-user-agent-node": "npm:^3.972.3" + "@aws-sdk/util-user-agent-node": "npm:^3.972.5" "@smithy/config-resolver": "npm:^4.4.6" - "@smithy/core": "npm:^3.22.0" + "@smithy/core": "npm:^3.22.1" "@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-endpoint": "npm:^4.4.13" + "@smithy/middleware-retry": "npm:^4.4.30" "@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/node-http-handler": "npm:^4.4.9" "@smithy/protocol-http": "npm:^5.3.8" - "@smithy/smithy-client": "npm:^4.11.1" + "@smithy/smithy-client": "npm:^4.11.2" "@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.28" - "@smithy/util-defaults-mode-node": "npm:^4.2.31" + "@smithy/util-defaults-mode-browser": "npm:^4.3.29" + "@smithy/util-defaults-mode-node": "npm:^4.2.32" "@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/a50834ff94796a648b1df7109aa258698edd6c0980ffeac3d58e7dbd7149ecdeeef2a88c3dc49052ed3a94ffbdc1a3bbd66a6f579075b7c2ed53e9f9278e1727 + checksum: 10c0/c39d7228af70f7c42ea47a745208d01af522c7746fe3707072ed72eda7a5d5fed6837c0a65e06612a97aa4d7316a7cbea6d8a75b31a0ce55f10a56fdeb65808c languageName: node linkType: hard @@ -3786,43 +3684,24 @@ __metadata: languageName: node linkType: hard -"@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.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" +"@aws-sdk/core@npm:^3.973.5, @aws-sdk/core@npm:^3.973.6, @aws-sdk/core@npm:^3.973.7": + version: 3.973.7 + resolution: "@aws-sdk/core@npm:3.973.7" dependencies: "@aws-sdk/types": "npm:^3.973.1" - "@aws-sdk/xml-builder": "npm:^3.972.2" - "@smithy/core": "npm:^3.22.0" + "@aws-sdk/xml-builder": "npm:^3.972.4" + "@smithy/core": "npm:^3.22.1" "@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/smithy-client": "npm:^4.11.2" "@smithy/types": "npm:^4.12.0" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-middleware": "npm:^4.2.8" "@smithy/util-utf8": "npm:^4.2.0" tslib: "npm:^2.6.2" - checksum: 10c0/d885f0cb18185a4958df724bc914b0d2ee18f4ed16fe4f250dc85b90d87c32251513b49806007a46f01f3220a7abe75990062f8e31c1e466e5e7a7e5d41dcae5 + checksum: 10c0/6d81cfda413ce76a99cd76b85b6a617685c5027cc84ed0553fcdedf04cdd017490c6847f5fed7a92e2794a233574d919328153b370d0bfee7c56a0a80082f80d languageName: node linkType: hard @@ -3873,29 +3752,16 @@ __metadata: languageName: node linkType: hard -"@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.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/be8a37e68e700eede985511ca72730cc862971760548c89589d5168c8f53c2ab361b033ee0711fcbac2b5609faf3365d532c3534b9e4cb61609f42f9d1f086ba - languageName: node - linkType: hard - -"@aws-sdk/credential-provider-env@npm:^3.972.3": - version: 3.972.3 - resolution: "@aws-sdk/credential-provider-env@npm:3.972.3" +"@aws-sdk/credential-provider-env@npm:^3.972.5": + version: 3.972.5 + resolution: "@aws-sdk/credential-provider-env@npm:3.972.5" dependencies: - "@aws-sdk/core": "npm:^3.973.5" + "@aws-sdk/core": "npm:^3.973.7" "@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/f6eaa47673282fad838fc22d93ce2b81365955c689750b2a346ed49b646ec1f03424c22da6cbdd5673378da854f5de02ef5d3f3bee6a080f1656d79a3b0b0b4f + checksum: 10c0/0000cb9f2339fd25efa415cd3d3a898ae8de1b688aaefd77416be68aba088d84947437fb774490faf26794bf1e67ef3159f25b08ad6a5bb30d5e8271b07d2df0 languageName: node linkType: hard @@ -3925,47 +3791,29 @@ __metadata: "@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.2.0" - "@smithy/types": "npm:^3.3.0" - "@smithy/util-stream": "npm:^3.1.3" - tslib: "npm:^2.6.2" - checksum: 10c0/3a232fdece1cbe7e9ec740287702dfaa640392e827d31b5c8a23d59ab9dcf2424408a43a6ef2cf3c94e72ec5612f61651cb7cac92458c5b2c93754f6b7989daf - languageName: node - linkType: hard - -"@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.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" + "@smithy/smithy-client": "npm:^3.2.0" + "@smithy/types": "npm:^3.3.0" + "@smithy/util-stream": "npm:^3.1.3" tslib: "npm:^2.6.2" - checksum: 10c0/407d1169a54246e3bb5ba839870fa5d2e10cd42b9780adc72d763201243d7d80576e2aa430793768e131c7637195e585c6696c153f013d99d25db3f16739762f + checksum: 10c0/3a232fdece1cbe7e9ec740287702dfaa640392e827d31b5c8a23d59ab9dcf2424408a43a6ef2cf3c94e72ec5612f61651cb7cac92458c5b2c93754f6b7989daf 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" +"@aws-sdk/credential-provider-http@npm:^3.972.7": + version: 3.972.7 + resolution: "@aws-sdk/credential-provider-http@npm:3.972.7" dependencies: - "@aws-sdk/core": "npm:^3.973.5" + "@aws-sdk/core": "npm:^3.973.7" "@aws-sdk/types": "npm:^3.973.1" "@smithy/fetch-http-handler": "npm:^5.3.9" - "@smithy/node-http-handler": "npm:^4.4.8" + "@smithy/node-http-handler": "npm:^4.4.9" "@smithy/property-provider": "npm:^4.2.8" "@smithy/protocol-http": "npm:^5.3.8" - "@smithy/smithy-client": "npm:^4.11.1" + "@smithy/smithy-client": "npm:^4.11.2" "@smithy/types": "npm:^4.12.0" - "@smithy/util-stream": "npm:^4.5.10" + "@smithy/util-stream": "npm:^4.5.11" tslib: "npm:^2.6.2" - checksum: 10c0/cd1302286ad7e2a403c4a8217999af46ff3d00442a1392e7312acb2cf544154edfb4f3d1c9f263a6c76fb30f4d95d36dacf2881309cadbbd703cdea2ca9d26c9 + checksum: 10c0/6a1bd16be4474669ebe40a1dd50bfc35de17cf9daa1306699389cfc5c6e639c3c1efaad1cf4f4896160a487c782d294f205d03a36f210a08cec00f53174d255d languageName: node linkType: hard @@ -4029,63 +3877,41 @@ __metadata: languageName: node linkType: hard -"@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.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/credential-provider-ini@npm:^3.465.0, @aws-sdk/credential-provider-ini@npm:^3.972.5": + version: 3.972.5 + resolution: "@aws-sdk/credential-provider-ini@npm:3.972.5" + dependencies: + "@aws-sdk/core": "npm:^3.973.7" + "@aws-sdk/credential-provider-env": "npm:^3.972.5" + "@aws-sdk/credential-provider-http": "npm:^3.972.7" + "@aws-sdk/credential-provider-login": "npm:^3.972.5" + "@aws-sdk/credential-provider-process": "npm:^3.972.5" + "@aws-sdk/credential-provider-sso": "npm:^3.972.5" + "@aws-sdk/credential-provider-web-identity": "npm:^3.972.5" + "@aws-sdk/nested-clients": "npm:3.985.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/6a6bae412805829756afbad4250265c7bdc1c11fc24cd1892bc0cfb58c8178edfbe233e16bcf40fb38e772fcf76b5089fa4e46170609007d9ed03e7ca45f36b2 + checksum: 10c0/51bf6361d9fd144117e84ff414bc5517abde58b2476d538b0b240331538a901e30dfd3c44e79d919f48748512cb1806eb9c29ed67283481e4960a4d642d772b1 languageName: node linkType: hard -"@aws-sdk/credential-provider-login@npm:^3.972.3": - version: 3.972.3 - resolution: "@aws-sdk/credential-provider-login@npm:3.972.3" +"@aws-sdk/credential-provider-login@npm:^3.972.5": + version: 3.972.5 + resolution: "@aws-sdk/credential-provider-login@npm:3.972.5" dependencies: - "@aws-sdk/core": "npm:^3.973.5" - "@aws-sdk/nested-clients": "npm:3.980.0" + "@aws-sdk/core": "npm:^3.973.7" + "@aws-sdk/nested-clients": "npm:3.985.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/79d41f8437ffcb6a98e262ebd2a635848acec8c4c1f945b217a773e4352ef38a61e41f64481edab303ab27d8bb089d040295eba288e366e34237262aea7469cc + checksum: 10c0/bee77fe7e9e9e52596f89c3f3fab4e3ca2175b75f4e107cd9303c4e47db213f1de5b8b5ba415dfccfc6b3dccb6ef16f81cbbaf5c84a6f6f71f4bf94cd391348d languageName: node linkType: hard @@ -4148,43 +3974,23 @@ __metadata: languageName: node linkType: hard -"@aws-sdk/credential-provider-node@npm:3.723.0": - version: 3.723.0 - resolution: "@aws-sdk/credential-provider-node@npm:3.723.0" +"@aws-sdk/credential-provider-node@npm:^3.972.4, @aws-sdk/credential-provider-node@npm:^3.972.5, @aws-sdk/credential-provider-node@npm:^3.972.6": + version: 3.972.6 + resolution: "@aws-sdk/credential-provider-node@npm:3.972.6" dependencies: - "@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/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/credential-provider-env": "npm:^3.972.5" + "@aws-sdk/credential-provider-http": "npm:^3.972.7" + "@aws-sdk/credential-provider-ini": "npm:^3.972.5" + "@aws-sdk/credential-provider-process": "npm:^3.972.5" + "@aws-sdk/credential-provider-sso": "npm:^3.972.5" + "@aws-sdk/credential-provider-web-identity": "npm:^3.972.5" "@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 + checksum: 10c0/1760c01ce1ffa18c74fb71e7f2a72f6d4bd6e4761e5be7228866c920a32e37d1dd7538cb6e291b8f43f0d315d7e4f271dc0d0a0dddc28743a0c8ec4b3261f265 languageName: node linkType: hard @@ -4214,31 +4020,17 @@ __metadata: languageName: node linkType: hard -"@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.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" +"@aws-sdk/credential-provider-process@npm:^3.972.5": + version: 3.972.5 + resolution: "@aws-sdk/credential-provider-process@npm:3.972.5" dependencies: - "@aws-sdk/core": "npm:^3.973.5" + "@aws-sdk/core": "npm:^3.973.7" "@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/e8b8d502d879228f05b1abb9f372fa7645ed64d66385ad0771c621d0a374a4b0d54b8bb9657f073945bebfd42a732cf5b621bb2ac0f476a68143027809e6fc2d + checksum: 10c0/0c9da821f2aa46b5175c9bc346089193b0b0eaf26b7b7b5e33b7d7bff33e8daa1ccd7a17a24cbd7b01688ac4118c0553518ebf7ea74a6ffadcee9fc45c403ef6 languageName: node linkType: hard @@ -4287,35 +4079,19 @@ __metadata: languageName: node linkType: hard -"@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.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" +"@aws-sdk/credential-provider-sso@npm:^3.972.5": + version: 3.972.5 + resolution: "@aws-sdk/credential-provider-sso@npm:3.972.5" 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/client-sso": "npm:3.985.0" + "@aws-sdk/core": "npm:^3.973.7" + "@aws-sdk/token-providers": "npm:3.985.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/0fac73cc425afea70b8237b12f561dcc7c9991b700c051fa74a8d438ffbc9bbfe255fd66fc40bf646d8e87092f59179f439de5106d9c1d8eef19577e64091272 + checksum: 10c0/686b5aa9062329a77988496fd870835148e421726b113157fec7da514831a889181ebf4213808b90e8dd6dc3d8864d36e482ebb6eeb22d02f4335b8d30a00111 languageName: node linkType: hard @@ -4345,92 +4121,75 @@ __metadata: languageName: node linkType: hard -"@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.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" - 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" +"@aws-sdk/credential-provider-web-identity@npm:^3.972.5": + version: 3.972.5 + resolution: "@aws-sdk/credential-provider-web-identity@npm:3.972.5" dependencies: - "@aws-sdk/core": "npm:^3.973.5" - "@aws-sdk/nested-clients": "npm:3.980.0" + "@aws-sdk/core": "npm:^3.973.7" + "@aws-sdk/nested-clients": "npm:3.985.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 + checksum: 10c0/e6ec43916b1bab56a026cbcbb47339d6916476f53c0b5e313a282016ea3a6ce1cd5b879ccc22d39324e9b3bdf71bf93e4d9360e0abcacedb0af0a6d1781fbdb3 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" + version: 3.985.0 + resolution: "@aws-sdk/credential-providers@npm:3.985.0" dependencies: - "@aws-sdk/client-cognito-identity": "npm:3.980.0" - "@aws-sdk/core": "npm:^3.973.5" + "@aws-sdk/client-cognito-identity": "npm:3.985.0" + "@aws-sdk/core": "npm:^3.973.7" "@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/credential-provider-env": "npm:^3.972.5" + "@aws-sdk/credential-provider-http": "npm:^3.972.7" + "@aws-sdk/credential-provider-ini": "npm:^3.972.5" + "@aws-sdk/credential-provider-login": "npm:^3.972.5" + "@aws-sdk/credential-provider-node": "npm:^3.972.6" + "@aws-sdk/credential-provider-process": "npm:^3.972.5" + "@aws-sdk/credential-provider-sso": "npm:^3.972.5" + "@aws-sdk/credential-provider-web-identity": "npm:^3.972.5" + "@aws-sdk/nested-clients": "npm:3.985.0" "@aws-sdk/types": "npm:^3.973.1" "@smithy/config-resolver": "npm:^4.4.6" - "@smithy/core": "npm:^3.22.0" + "@smithy/core": "npm:^3.22.1" "@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/b9e3a3844ee08e056bd44e4b6f471991092c9fc8ca229f3c1b2417205fd19a57352b206ee3081ff36d17d1dd209dfb3855d88b92757027873199b9a44cfe330c + checksum: 10c0/f327fe374a7dfd17bcf36e1f034ed21f7756c040f86b56ca638cb9e926fc5ada94513906f974dd3e08e7ccd13310a7c9ee23108735ae23fdfc9bb461d525647e 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" +"@aws-sdk/dynamodb-codec@npm:^3.972.8": + version: 3.972.8 + resolution: "@aws-sdk/dynamodb-codec@npm:3.972.8" dependencies: - "@aws-sdk/core": "npm:^3.973.5" - "@smithy/core": "npm:^3.22.0" - "@smithy/smithy-client": "npm:^4.11.1" + "@aws-sdk/core": "npm:^3.973.7" + "@smithy/core": "npm:^3.22.1" + "@smithy/smithy-client": "npm:^4.11.2" "@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 + checksum: 10c0/a3cb356598b3757d676e12e5de673cc1eed4035eaa4be707d6fdfbcbbaef9c1804017a15f52a285773d8f63093fa1d729fb64c3112be551663fb9b2c979e8b80 languageName: node linkType: hard "@aws-sdk/ec2-metadata-service@npm:^3": - version: 3.980.0 - resolution: "@aws-sdk/ec2-metadata-service@npm:3.980.0" + version: 3.985.0 + resolution: "@aws-sdk/ec2-metadata-service@npm:3.985.0" dependencies: "@aws-sdk/types": "npm:^3.973.1" "@smithy/node-config-provider": "npm:^4.3.8" - "@smithy/node-http-handler": "npm:^4.4.8" + "@smithy/node-http-handler": "npm:^4.4.9" "@smithy/protocol-http": "npm:^5.3.8" "@smithy/types": "npm:^4.12.0" - "@smithy/util-stream": "npm:^4.5.10" + "@smithy/util-stream": "npm:^4.5.11" tslib: "npm:^2.6.2" - checksum: 10c0/388cc98f2d2adc71968fa4f79792b83aa3f212ebe6f5979095a658a12dac6399a8ad7bd3140f53416a86c7a617f021631110b7487492591f668d553eb8a58c24 + checksum: 10c0/ad36c3acebc3720a8e59184ad902a60331b833f2fdc6e3429f89628fc3edcd03a7d69098838a61701d99776d80dee4e320348e3be9f22d198621de1d38d846d7 languageName: node linkType: hard @@ -4444,48 +4203,48 @@ __metadata: languageName: node linkType: hard -"@aws-sdk/eventstream-handler-node@npm:^3.972.3": - version: 3.972.3 - resolution: "@aws-sdk/eventstream-handler-node@npm:3.972.3" +"@aws-sdk/eventstream-handler-node@npm:^3.972.5": + version: 3.972.5 + resolution: "@aws-sdk/eventstream-handler-node@npm:3.972.5" dependencies: "@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/c25b105d30c4c2e7e491f8549be498c49ff64ab8260403f0e65c0e06f0076080b7c99bbd1efcdf2db11c4b6ce8b453bbaf10748b2f3e2c17c4d847e032b2381d + checksum: 10c0/6d15357532f9d6153ee4feaec579ee4da5cb2d7c5adf0ca829099d5015e62cf29010746a72ced3fc6f141094f91f3f2c3ef9e4c134b14080c34876204b7a13a5 languageName: node linkType: hard "@aws-sdk/lib-dynamodb@npm:^3.682.0": - version: 3.980.0 - resolution: "@aws-sdk/lib-dynamodb@npm:3.980.0" + version: 3.985.0 + resolution: "@aws-sdk/lib-dynamodb@npm:3.985.0" dependencies: - "@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" + "@aws-sdk/core": "npm:^3.973.7" + "@aws-sdk/util-dynamodb": "npm:3.985.0" + "@smithy/core": "npm:^3.22.1" + "@smithy/smithy-client": "npm:^4.11.2" "@smithy/types": "npm:^4.12.0" tslib: "npm:^2.6.2" peerDependencies: - "@aws-sdk/client-dynamodb": 3.980.0 - checksum: 10c0/7a4aa5471d9a61327438a3c8babad138cf80cfd2a8671b46cec4f1dd9c3095cc4e5739d077a6a17e5890006c4df04ab1027c70c481a5b91307dbadf27a669c4c + "@aws-sdk/client-dynamodb": ^3.985.0 + checksum: 10c0/7183f088d5b484ff45eaa30ea48df156c75d514550c7dbfeba261167a75f44577868c66d1d6fd29848d74ba18d5dc68aa4038b97f349ebe4e7253a85059ebaf8 languageName: node linkType: hard "@aws-sdk/lib-storage@npm:^3": - version: 3.980.0 - resolution: "@aws-sdk/lib-storage@npm:3.980.0" + version: 3.985.0 + resolution: "@aws-sdk/lib-storage@npm:3.985.0" dependencies: "@smithy/abort-controller": "npm:^4.2.8" - "@smithy/middleware-endpoint": "npm:^4.4.12" - "@smithy/smithy-client": "npm:^4.11.1" + "@smithy/middleware-endpoint": "npm:^4.4.13" + "@smithy/smithy-client": "npm:^4.11.2" 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.980.0 - checksum: 10c0/ed285bfb98955bb9621665b0bdba3c4d86e0acafa64091bc19b690cb5e462a2e1352549df956ff65105f042d5db87346d2d0a7a286687985402e92812ee04065 + "@aws-sdk/client-s3": ^3.985.0 + checksum: 10c0/379962434cad2c7198fce4d4b1502938d6c795b58c95905087b92be0f734f234ebb0cb1a2a32302675a255801db8f0d4c209a397a6d88b2727ae934224b6b36d languageName: node linkType: hard @@ -4542,14 +4301,14 @@ __metadata: languageName: node linkType: hard -"@aws-sdk/middleware-flexible-checksums@npm:^3.972.3": - version: 3.972.3 - resolution: "@aws-sdk/middleware-flexible-checksums@npm:3.972.3" +"@aws-sdk/middleware-flexible-checksums@npm:^3.972.5": + version: 3.972.5 + resolution: "@aws-sdk/middleware-flexible-checksums@npm:3.972.5" 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.973.5" + "@aws-sdk/core": "npm:^3.973.7" "@aws-sdk/crc64-nvme": "npm:3.972.0" "@aws-sdk/types": "npm:^3.973.1" "@smithy/is-array-buffer": "npm:^4.2.0" @@ -4557,10 +4316,10 @@ __metadata: "@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-stream": "npm:^4.5.11" "@smithy/util-utf8": "npm:^4.2.0" tslib: "npm:^2.6.2" - checksum: 10c0/c843377b467edb626f5a11c9aa84ef525491236dcaec02b17363d409d13c755c8df29170b93f0940d140c131b8a197d664c43fdb7bb32d4072c4d201939a55cf + checksum: 10c0/844424421855e0e91d7a2da6d0e44302f5bb261e384561b1533a890595b4713e13103fcb9600b37aeaeef15daa19bdf7f55050fe46b17355116b9b4a43a5cc62 languageName: node linkType: hard @@ -4588,18 +4347,6 @@ __metadata: languageName: node linkType: hard -"@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.723.0" - "@smithy/protocol-http": "npm:^5.0.0" - "@smithy/types": "npm:^4.0.0" - tslib: "npm:^2.6.2" - checksum: 10c0/183196230f8675d821a1c3de6cfb54cb3575a245d60221eea8fb4b6cea3b64dda1c4a836f6bd7d3240c494840f68b5f25a6b39223be7cb0e0a1a35bdab9e5691 - languageName: node - linkType: hard - "@aws-sdk/middleware-host-header@npm:^3.972.3": version: 3.972.3 resolution: "@aws-sdk/middleware-host-header@npm:3.972.3" @@ -4645,17 +4392,6 @@ __metadata: languageName: node linkType: hard -"@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.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" @@ -4691,18 +4427,6 @@ __metadata: languageName: node linkType: hard -"@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.723.0" - "@smithy/protocol-http": "npm:^5.0.0" - "@smithy/types": "npm:^4.0.0" - tslib: "npm:^2.6.2" - checksum: 10c0/d8cf89ec99aa72ac9496d183ff0a8994329f050e569924bc5e4e732b50900a9b7ef7608101a29dd4b4815b7f59270faf42634d5033f11b190ffcc88a6fc91812 - languageName: node - linkType: hard - "@aws-sdk/middleware-recursion-detection@npm:^3.972.3": version: 3.972.3 resolution: "@aws-sdk/middleware-recursion-detection@npm:3.972.3" @@ -4716,52 +4440,52 @@ __metadata: languageName: node linkType: hard -"@aws-sdk/middleware-sdk-ec2@npm:^3.972.5": - version: 3.972.5 - resolution: "@aws-sdk/middleware-sdk-ec2@npm:3.972.5" +"@aws-sdk/middleware-sdk-ec2@npm:^3.972.6": + version: 3.972.6 + resolution: "@aws-sdk/middleware-sdk-ec2@npm:3.972.6" dependencies: "@aws-sdk/types": "npm:^3.973.1" "@aws-sdk/util-format-url": "npm:^3.972.3" - "@smithy/middleware-endpoint": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.4.13" "@smithy/protocol-http": "npm:^5.3.8" "@smithy/signature-v4": "npm:^5.3.8" - "@smithy/smithy-client": "npm:^4.11.1" + "@smithy/smithy-client": "npm:^4.11.2" "@smithy/types": "npm:^4.12.0" tslib: "npm:^2.6.2" - checksum: 10c0/49aab56ab563948d04810a83fa57a1e6f99a43550a7f40ddb404bf553b645e690e53e6c6d1df7261d9750890e61bb9892c382ac844eed908cb88b9d39f81e071 + checksum: 10c0/dc8e0c0f74d52de5fd592c5d7b30254cd21804da81f9d98ae0fbf708840487eccca61c16254a1745e3d2136c5423c4c4d6b79e450227d73196faebb514759432 languageName: node linkType: hard -"@aws-sdk/middleware-sdk-route53@npm:^3.972.3": - version: 3.972.3 - resolution: "@aws-sdk/middleware-sdk-route53@npm:3.972.3" +"@aws-sdk/middleware-sdk-route53@npm:^3.972.4": + version: 3.972.4 + resolution: "@aws-sdk/middleware-sdk-route53@npm:3.972.4" dependencies: "@aws-sdk/types": "npm:^3.973.1" "@smithy/types": "npm:^4.12.0" tslib: "npm:^2.6.2" - checksum: 10c0/e9be190d34fcfa58866bb93c4ac19097dd645ee87e4fb76e2d4c803e7320a6483108a406f9e256143b146232418cf4a9ebcaf3e0ddc41dce57ff3cd67a3ae5b0 + checksum: 10c0/fc085a66a0605f15760a91815ed380f3a69f43fcd68b92fa92094b32b91aa82bf9919b6d9745c7577b2d3a145b82ead0edacfc5f12505f3b566a4698644a9d72 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" +"@aws-sdk/middleware-sdk-s3@npm:^3.972.7": + version: 3.972.7 + resolution: "@aws-sdk/middleware-sdk-s3@npm:3.972.7" dependencies: - "@aws-sdk/core": "npm:^3.973.5" + "@aws-sdk/core": "npm:^3.973.7" "@aws-sdk/types": "npm:^3.973.1" "@aws-sdk/util-arn-parser": "npm:^3.972.2" - "@smithy/core": "npm:^3.22.0" + "@smithy/core": "npm:^3.22.1" "@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/smithy-client": "npm:^4.11.2" "@smithy/types": "npm:^4.12.0" "@smithy/util-config-provider": "npm:^4.2.0" "@smithy/util-middleware": "npm:^4.2.8" - "@smithy/util-stream": "npm:^4.5.10" + "@smithy/util-stream": "npm:^4.5.11" "@smithy/util-utf8": "npm:^4.2.0" tslib: "npm:^2.6.2" - checksum: 10c0/d60f867c8a4293aee79474abdae5a13e84f0d8eb71b556316dc7b56a0108cb4fae94514284a0b2764c39545661b28edb06f18b46f88bc4023762a64d814ea956 + checksum: 10c0/aa59345e706a5cef07cdcd31173ad8842e0b95228f55324a4e7f6455255c8775232019a47f99652956a4d323f994d174f7cc4fa2dcb2e695d4dbe323c4992e6e languageName: node linkType: hard @@ -4842,39 +4566,24 @@ __metadata: languageName: node linkType: hard -"@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.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/9eaf19dcedc85ebfdcf3298ae7142fb1c1cc350e03456311f77f3785b5549ad0fdbb5615f8afd90242e6916cc9b5e02609028532d740f14ce310a6a28e20ffab - languageName: node - linkType: hard - -"@aws-sdk/middleware-user-agent@npm:^3.972.5": - version: 3.972.5 - resolution: "@aws-sdk/middleware-user-agent@npm:3.972.5" +"@aws-sdk/middleware-user-agent@npm:^3.972.5, @aws-sdk/middleware-user-agent@npm:^3.972.6, @aws-sdk/middleware-user-agent@npm:^3.972.7": + version: 3.972.7 + resolution: "@aws-sdk/middleware-user-agent@npm:3.972.7" dependencies: - "@aws-sdk/core": "npm:^3.973.5" + "@aws-sdk/core": "npm:^3.973.7" "@aws-sdk/types": "npm:^3.973.1" - "@aws-sdk/util-endpoints": "npm:3.980.0" - "@smithy/core": "npm:^3.22.0" + "@aws-sdk/util-endpoints": "npm:3.985.0" + "@smithy/core": "npm:^3.22.1" "@smithy/protocol-http": "npm:^5.3.8" "@smithy/types": "npm:^4.12.0" tslib: "npm:^2.6.2" - checksum: 10c0/62b39d3c1dcd008d168bd91cb8ab872a7d2079be363359c55b7e3383d4d3eb0ed0e8cdb8eeeb0762f664d1c4c0d73fd1c3f3cc7ee28c2619ec6328ce5f05c426 + checksum: 10c0/3f977a5b731e8c703156fd4a6b6c308ade16df2622c5e53d47694b368d52b7794c3f7625cf60f2c4f73daadbe402f658173d57df57a64019864a9ba2ac4c1326 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" +"@aws-sdk/middleware-websocket@npm:^3.972.5": + version: 3.972.5 + resolution: "@aws-sdk/middleware-websocket@npm:3.972.5" dependencies: "@aws-sdk/types": "npm:^3.973.1" "@aws-sdk/util-format-url": "npm:^3.972.3" @@ -4884,55 +4593,57 @@ __metadata: "@smithy/protocol-http": "npm:^5.3.8" "@smithy/signature-v4": "npm:^5.3.8" "@smithy/types": "npm:^4.12.0" + "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-hex-encoding": "npm:^4.2.0" + "@smithy/util-utf8": "npm:^4.2.0" tslib: "npm:^2.6.2" - checksum: 10c0/57336cfb9acfaacd979c20a90ed6a814842f3dba7bd899b85124001297af9d0d77261142b5ddc4ee6670c4bd9c14a4145ac5ff059b6a6d820e096804bbac0865 + checksum: 10c0/e0de253a9ce6205cff0d39fca3d5c1747a5480b102fc295ffd2ecd98b77f0c8cf2a85541733ac289e0c29b51add5aedc888c22765ab459365d5e75f12f10de2d languageName: node linkType: hard -"@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" +"@aws-sdk/nested-clients@npm:3.985.0, @aws-sdk/nested-clients@npm:^3.777.0": + version: 3.985.0 + resolution: "@aws-sdk/nested-clients@npm:3.985.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/core": "npm:^3.973.7" "@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-user-agent": "npm:^3.972.7" "@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-endpoints": "npm:3.985.0" "@aws-sdk/util-user-agent-browser": "npm:^3.972.3" - "@aws-sdk/util-user-agent-node": "npm:^3.972.3" + "@aws-sdk/util-user-agent-node": "npm:^3.972.5" "@smithy/config-resolver": "npm:^4.4.6" - "@smithy/core": "npm:^3.22.0" + "@smithy/core": "npm:^3.22.1" "@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-endpoint": "npm:^4.4.13" + "@smithy/middleware-retry": "npm:^4.4.30" "@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/node-http-handler": "npm:^4.4.9" "@smithy/protocol-http": "npm:^5.3.8" - "@smithy/smithy-client": "npm:^4.11.1" + "@smithy/smithy-client": "npm:^4.11.2" "@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.28" - "@smithy/util-defaults-mode-node": "npm:^4.2.31" + "@smithy/util-defaults-mode-browser": "npm:^4.3.29" + "@smithy/util-defaults-mode-node": "npm:^4.2.32" "@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/0a5d36cf859ea7c717fdf0cae9cdd29c23a161068f3b16e4dfd6330ac32d564dc155c18b99b6feb058524afaee88ad7c7515d781b8e7622a0b94020dd3bf16ff + checksum: 10c0/5869d061afa9c0258613d3a18cd0a6553d6aeed1651589186f97f3e34408c5ee9590d7a82b0c58dad5382a43e49ea0b6d5de3638f60277bfe69705fc4ed12304 languageName: node linkType: hard @@ -4963,20 +4674,6 @@ __metadata: languageName: node linkType: hard -"@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.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/c51c07fe9cbeb04a28ed715e073055aae00e4c6a4d553e7383796041de539f0d90b7df3f10035f8c6cea8f4817b1c36df83f53736a401ae7f75446f37cce0add - languageName: node - linkType: hard - "@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" @@ -4990,17 +4687,17 @@ __metadata: 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" +"@aws-sdk/signature-v4-multi-region@npm:3.985.0": + version: 3.985.0 + resolution: "@aws-sdk/signature-v4-multi-region@npm:3.985.0" dependencies: - "@aws-sdk/middleware-sdk-s3": "npm:^3.972.5" + "@aws-sdk/middleware-sdk-s3": "npm:^3.972.7" "@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 + checksum: 10c0/a86166fada38c6c1e820d8a36fc6a842f37b1d9c4a6827b86ae1e33a916114da11144b0de9b1845eac6c9b9f81329fa5a07d13abed60ecb0db3b3ee04fc1c3ba languageName: node linkType: hard @@ -5064,33 +4761,18 @@ __metadata: languageName: node linkType: hard -"@aws-sdk/token-providers@npm:3.723.0": - version: 3.723.0 - resolution: "@aws-sdk/token-providers@npm:3.723.0" - dependencies: - "@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" - peerDependencies: - "@aws-sdk/client-sso-oidc": ^3.723.0 - checksum: 10c0/54f9865801b5c7c43158e95101bd6aaa5d5bee2e8cb553fbac52faadcb023fda898929139301eb1c9632762b314e48e7af8cf11c438bb7eba3348f7eb8297a1a - languageName: node - linkType: hard - -"@aws-sdk/token-providers@npm:3.980.0": - version: 3.980.0 - resolution: "@aws-sdk/token-providers@npm:3.980.0" +"@aws-sdk/token-providers@npm:3.985.0": + version: 3.985.0 + resolution: "@aws-sdk/token-providers@npm:3.985.0" dependencies: - "@aws-sdk/core": "npm:^3.973.5" - "@aws-sdk/nested-clients": "npm:3.980.0" + "@aws-sdk/core": "npm:^3.973.7" + "@aws-sdk/nested-clients": "npm:3.985.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 + checksum: 10c0/e4419b30c7c962828f463c5dbcc6ffde6241cb7004f80e88ed939d19b3a58836e628ebe654b1c7113220d36332f74a29ced49dd2a6a1b6c40c4e6629df46de52 languageName: node linkType: hard @@ -5114,16 +4796,6 @@ __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" @@ -5134,7 +4806,7 @@ __metadata: languageName: node linkType: hard -"@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": +"@aws-sdk/types@npm:3.973.1, @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: @@ -5153,14 +4825,14 @@ __metadata: languageName: node linkType: hard -"@aws-sdk/util-dynamodb@npm:3.980.0": - version: 3.980.0 - resolution: "@aws-sdk/util-dynamodb@npm:3.980.0" +"@aws-sdk/util-dynamodb@npm:3.985.0": + version: 3.985.0 + resolution: "@aws-sdk/util-dynamodb@npm:3.985.0" dependencies: tslib: "npm:^2.6.2" peerDependencies: - "@aws-sdk/client-dynamodb": 3.980.0 - checksum: 10c0/912efd8a57c00b62d1238ae4637c6aa9b073d49f0eb21f5456ade109fefd9f27f6e89514d39a89e87ffe9bcae6283c45c800d2e32bbe76f09bb6ad4eba59c386 + "@aws-sdk/client-dynamodb": ^3.985.0 + checksum: 10c0/445e8e69f2141d007306a7a2f7efbcd48695368fc448a29d477835d15ba5c40b7f66a5677c99613f8afd6bf2a9ffc6f2f62ac691198044132b066edd6d046522 languageName: node linkType: hard @@ -5199,18 +4871,6 @@ __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" @@ -5236,6 +4896,32 @@ __metadata: languageName: node linkType: hard +"@aws-sdk/util-endpoints@npm:3.982.0": + version: 3.982.0 + resolution: "@aws-sdk/util-endpoints@npm:3.982.0" + dependencies: + "@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/1ebdb4e53e80a5c8f8f742268bbbabd3834b58784e1f6f6015985865893261830e3143282d84a6b1730f069ccd66e0e5d41b1082738c6800b2dac70f189c7e58 + languageName: node + linkType: hard + +"@aws-sdk/util-endpoints@npm:3.985.0": + version: 3.985.0 + resolution: "@aws-sdk/util-endpoints@npm:3.985.0" + dependencies: + "@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/3f47d3a9de91222c6a2fe9973664d97a86a898545b13dbae61484110a96089fe88ecca8ce997ca0a3a47d3679e0aa0dbfc05c7f73e5d2a0a2f3dd7294c8cac6d + languageName: node + linkType: hard + "@aws-sdk/util-format-url@npm:^3.972.3": version: 3.972.3 resolution: "@aws-sdk/util-format-url@npm:3.972.3" @@ -5281,18 +4967,6 @@ __metadata: languageName: node linkType: hard -"@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.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" @@ -5339,29 +5013,11 @@ __metadata: languageName: node linkType: hard -"@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.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" +"@aws-sdk/util-user-agent-node@npm:^3.972.3, @aws-sdk/util-user-agent-node@npm:^3.972.4, @aws-sdk/util-user-agent-node@npm:^3.972.5": + version: 3.972.5 + resolution: "@aws-sdk/util-user-agent-node@npm:3.972.5" dependencies: - "@aws-sdk/middleware-user-agent": "npm:^3.972.5" + "@aws-sdk/middleware-user-agent": "npm:^3.972.7" "@aws-sdk/types": "npm:^3.973.1" "@smithy/node-config-provider": "npm:^4.3.8" "@smithy/types": "npm:^4.12.0" @@ -5371,7 +5027,7 @@ __metadata: peerDependenciesMeta: aws-crt: optional: true - checksum: 10c0/179a8554c503b5239d27a1c0b2592092a8afcec324bb5b97c23816577d94172f62817d4f789f6ad0c9f7245909e47ba53666e8dbf9f655d1507bda71ae6fadfc + checksum: 10c0/8444ebdb805e0ee64171560bb77ec22359dbc0ded427bc53e392457870724223191c0d7446612458a8d8ad5c49d62b7bce16ad69cec776543fb8bd452fafb844 languageName: node linkType: hard @@ -5384,14 +5040,14 @@ __metadata: languageName: node linkType: hard -"@aws-sdk/xml-builder@npm:^3.972.2": - version: 3.972.2 - resolution: "@aws-sdk/xml-builder@npm:3.972.2" +"@aws-sdk/xml-builder@npm:^3.972.4": + version: 3.972.4 + resolution: "@aws-sdk/xml-builder@npm:3.972.4" dependencies: "@smithy/types": "npm:^4.12.0" - fast-xml-parser: "npm:5.2.5" + fast-xml-parser: "npm:5.3.4" tslib: "npm:^2.6.2" - checksum: 10c0/117661fc70e01431402901c7dac7bbc785d91ddd712e234f9549bc2de9d18aaff6cd2d4e3e277f07c06fc02c4ae87e76b01edfd0de7e791512714ec15f49fab5 + checksum: 10c0/6ed7ace0e74902ddb1075404312182330827b9cc23439676f8a076bd90d10115232854e8e5512fd6a85c290c88b5b381b98b9bf79f573f5eb05b49e944d49f02 languageName: node linkType: hard @@ -5468,15 +5124,15 @@ __metadata: linkType: hard "@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" + version: 7.29.1 + resolution: "@babel/generator@npm:7.29.1" dependencies: "@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/5c3df8f2475bfd5f97ad0211c52171aff630088b148e7b89d056b39d69855179bc9f2d1ee200263c76c2398a49e4fdbb38b9709ebc4f043cc04d9ee09a66668a + checksum: 10c0/349086e6876258ef3fb2823030fee0f6c0eb9c3ebe35fc572e16997f8c030d765f636ddc6299edae63e760ea6658f8ee9a2edfa6d6b24c9a80c917916b973551 languageName: node linkType: hard @@ -6082,9 +5738,9 @@ __metadata: languageName: node linkType: hard -"@cesium/engine@npm:^22.2.0": - version: 22.2.0 - resolution: "@cesium/engine@npm:22.2.0" +"@cesium/engine@npm:^22.3.0": + version: 22.3.0 + resolution: "@cesium/engine@npm:22.3.0" dependencies: "@cesium/wasm-splats": "npm:^0.1.0-alpha.2" "@spz-loader/core": "npm:0.3.0" @@ -6107,7 +5763,7 @@ __metadata: rbush: "npm:^4.0.1" topojson-client: "npm:^3.1.0" urijs: "npm:^1.19.7" - checksum: 10c0/331fff971e0cb9977745b48c57cb1f8787e337db1e188c5d2a6af6c8a359b0fd70db3d04b895c03dcccf2aff6054a1886562acace04c7c802015745e10d8861d + checksum: 10c0/c97555a6bcb04e81c2fa7a9b862ee6a4f5987890ba3dc46cc8a7242745fbee04ee8bc90736204893a7c29b1d1a57121ffac108c24e7b651cdb25c1ca76e76c83 languageName: node linkType: hard @@ -6118,13 +5774,13 @@ __metadata: languageName: node linkType: hard -"@cesium/widgets@npm:^14.2.0": - version: 14.2.0 - resolution: "@cesium/widgets@npm:14.2.0" +"@cesium/widgets@npm:^14.3.0": + version: 14.3.0 + resolution: "@cesium/widgets@npm:14.3.0" dependencies: - "@cesium/engine": "npm:^22.2.0" + "@cesium/engine": "npm:^22.3.0" nosleep.js: "npm:^0.12.0" - checksum: 10c0/7b0d9bdad53a65d3c8cb77a44c1e1bd3b7c18ad243643798c53a2eb433b8d4c78a2f503bdab31f8d9c10d4ad0c8140668ccea3a6d5748b751b1286f822cf48c6 + checksum: 10c0/6cddcfc8fe88ae4349ec69392a23fb4ff55b859178a8119554f3be86469dce528a3de74382c0c9240f670a143bbf04039f396e7c2f322197bd7dec2389a2ad79 languageName: node linkType: hard @@ -6325,9 +5981,9 @@ __metadata: languageName: node linkType: hard -"@esbuild/aix-ppc64@npm:0.27.2": - version: 0.27.2 - resolution: "@esbuild/aix-ppc64@npm:0.27.2" +"@esbuild/aix-ppc64@npm:0.27.3": + version: 0.27.3 + resolution: "@esbuild/aix-ppc64@npm:0.27.3" conditions: os=aix & cpu=ppc64 languageName: node linkType: hard @@ -6339,9 +5995,9 @@ __metadata: languageName: node linkType: hard -"@esbuild/android-arm64@npm:0.27.2": - version: 0.27.2 - resolution: "@esbuild/android-arm64@npm:0.27.2" +"@esbuild/android-arm64@npm:0.27.3": + version: 0.27.3 + resolution: "@esbuild/android-arm64@npm:0.27.3" conditions: os=android & cpu=arm64 languageName: node linkType: hard @@ -6353,9 +6009,9 @@ __metadata: languageName: node linkType: hard -"@esbuild/android-arm@npm:0.27.2": - version: 0.27.2 - resolution: "@esbuild/android-arm@npm:0.27.2" +"@esbuild/android-arm@npm:0.27.3": + version: 0.27.3 + resolution: "@esbuild/android-arm@npm:0.27.3" conditions: os=android & cpu=arm languageName: node linkType: hard @@ -6367,9 +6023,9 @@ __metadata: languageName: node linkType: hard -"@esbuild/android-x64@npm:0.27.2": - version: 0.27.2 - resolution: "@esbuild/android-x64@npm:0.27.2" +"@esbuild/android-x64@npm:0.27.3": + version: 0.27.3 + resolution: "@esbuild/android-x64@npm:0.27.3" conditions: os=android & cpu=x64 languageName: node linkType: hard @@ -6381,9 +6037,9 @@ __metadata: languageName: node linkType: hard -"@esbuild/darwin-arm64@npm:0.27.2": - version: 0.27.2 - resolution: "@esbuild/darwin-arm64@npm:0.27.2" +"@esbuild/darwin-arm64@npm:0.27.3": + version: 0.27.3 + resolution: "@esbuild/darwin-arm64@npm:0.27.3" conditions: os=darwin & cpu=arm64 languageName: node linkType: hard @@ -6395,9 +6051,9 @@ __metadata: languageName: node linkType: hard -"@esbuild/darwin-x64@npm:0.27.2": - version: 0.27.2 - resolution: "@esbuild/darwin-x64@npm:0.27.2" +"@esbuild/darwin-x64@npm:0.27.3": + version: 0.27.3 + resolution: "@esbuild/darwin-x64@npm:0.27.3" conditions: os=darwin & cpu=x64 languageName: node linkType: hard @@ -6409,9 +6065,9 @@ __metadata: languageName: node linkType: hard -"@esbuild/freebsd-arm64@npm:0.27.2": - version: 0.27.2 - resolution: "@esbuild/freebsd-arm64@npm:0.27.2" +"@esbuild/freebsd-arm64@npm:0.27.3": + version: 0.27.3 + resolution: "@esbuild/freebsd-arm64@npm:0.27.3" conditions: os=freebsd & cpu=arm64 languageName: node linkType: hard @@ -6423,9 +6079,9 @@ __metadata: languageName: node linkType: hard -"@esbuild/freebsd-x64@npm:0.27.2": - version: 0.27.2 - resolution: "@esbuild/freebsd-x64@npm:0.27.2" +"@esbuild/freebsd-x64@npm:0.27.3": + version: 0.27.3 + resolution: "@esbuild/freebsd-x64@npm:0.27.3" conditions: os=freebsd & cpu=x64 languageName: node linkType: hard @@ -6437,9 +6093,9 @@ __metadata: languageName: node linkType: hard -"@esbuild/linux-arm64@npm:0.27.2": - version: 0.27.2 - resolution: "@esbuild/linux-arm64@npm:0.27.2" +"@esbuild/linux-arm64@npm:0.27.3": + version: 0.27.3 + resolution: "@esbuild/linux-arm64@npm:0.27.3" conditions: os=linux & cpu=arm64 languageName: node linkType: hard @@ -6451,9 +6107,9 @@ __metadata: languageName: node linkType: hard -"@esbuild/linux-arm@npm:0.27.2": - version: 0.27.2 - resolution: "@esbuild/linux-arm@npm:0.27.2" +"@esbuild/linux-arm@npm:0.27.3": + version: 0.27.3 + resolution: "@esbuild/linux-arm@npm:0.27.3" conditions: os=linux & cpu=arm languageName: node linkType: hard @@ -6465,9 +6121,9 @@ __metadata: languageName: node linkType: hard -"@esbuild/linux-ia32@npm:0.27.2": - version: 0.27.2 - resolution: "@esbuild/linux-ia32@npm:0.27.2" +"@esbuild/linux-ia32@npm:0.27.3": + version: 0.27.3 + resolution: "@esbuild/linux-ia32@npm:0.27.3" conditions: os=linux & cpu=ia32 languageName: node linkType: hard @@ -6479,9 +6135,9 @@ __metadata: languageName: node linkType: hard -"@esbuild/linux-loong64@npm:0.27.2": - version: 0.27.2 - resolution: "@esbuild/linux-loong64@npm:0.27.2" +"@esbuild/linux-loong64@npm:0.27.3": + version: 0.27.3 + resolution: "@esbuild/linux-loong64@npm:0.27.3" conditions: os=linux & cpu=loong64 languageName: node linkType: hard @@ -6493,9 +6149,9 @@ __metadata: languageName: node linkType: hard -"@esbuild/linux-mips64el@npm:0.27.2": - version: 0.27.2 - resolution: "@esbuild/linux-mips64el@npm:0.27.2" +"@esbuild/linux-mips64el@npm:0.27.3": + version: 0.27.3 + resolution: "@esbuild/linux-mips64el@npm:0.27.3" conditions: os=linux & cpu=mips64el languageName: node linkType: hard @@ -6507,9 +6163,9 @@ __metadata: languageName: node linkType: hard -"@esbuild/linux-ppc64@npm:0.27.2": - version: 0.27.2 - resolution: "@esbuild/linux-ppc64@npm:0.27.2" +"@esbuild/linux-ppc64@npm:0.27.3": + version: 0.27.3 + resolution: "@esbuild/linux-ppc64@npm:0.27.3" conditions: os=linux & cpu=ppc64 languageName: node linkType: hard @@ -6521,9 +6177,9 @@ __metadata: languageName: node linkType: hard -"@esbuild/linux-riscv64@npm:0.27.2": - version: 0.27.2 - resolution: "@esbuild/linux-riscv64@npm:0.27.2" +"@esbuild/linux-riscv64@npm:0.27.3": + version: 0.27.3 + resolution: "@esbuild/linux-riscv64@npm:0.27.3" conditions: os=linux & cpu=riscv64 languageName: node linkType: hard @@ -6535,9 +6191,9 @@ __metadata: languageName: node linkType: hard -"@esbuild/linux-s390x@npm:0.27.2": - version: 0.27.2 - resolution: "@esbuild/linux-s390x@npm:0.27.2" +"@esbuild/linux-s390x@npm:0.27.3": + version: 0.27.3 + resolution: "@esbuild/linux-s390x@npm:0.27.3" conditions: os=linux & cpu=s390x languageName: node linkType: hard @@ -6549,16 +6205,16 @@ __metadata: languageName: node linkType: hard -"@esbuild/linux-x64@npm:0.27.2": - version: 0.27.2 - resolution: "@esbuild/linux-x64@npm:0.27.2" +"@esbuild/linux-x64@npm:0.27.3": + version: 0.27.3 + resolution: "@esbuild/linux-x64@npm:0.27.3" conditions: os=linux & cpu=x64 languageName: node linkType: hard -"@esbuild/netbsd-arm64@npm:0.27.2": - version: 0.27.2 - resolution: "@esbuild/netbsd-arm64@npm:0.27.2" +"@esbuild/netbsd-arm64@npm:0.27.3": + version: 0.27.3 + resolution: "@esbuild/netbsd-arm64@npm:0.27.3" conditions: os=netbsd & cpu=arm64 languageName: node linkType: hard @@ -6570,9 +6226,9 @@ __metadata: languageName: node linkType: hard -"@esbuild/netbsd-x64@npm:0.27.2": - version: 0.27.2 - resolution: "@esbuild/netbsd-x64@npm:0.27.2" +"@esbuild/netbsd-x64@npm:0.27.3": + version: 0.27.3 + resolution: "@esbuild/netbsd-x64@npm:0.27.3" conditions: os=netbsd & cpu=x64 languageName: node linkType: hard @@ -6584,9 +6240,9 @@ __metadata: languageName: node linkType: hard -"@esbuild/openbsd-arm64@npm:0.27.2": - version: 0.27.2 - resolution: "@esbuild/openbsd-arm64@npm:0.27.2" +"@esbuild/openbsd-arm64@npm:0.27.3": + version: 0.27.3 + resolution: "@esbuild/openbsd-arm64@npm:0.27.3" conditions: os=openbsd & cpu=arm64 languageName: node linkType: hard @@ -6598,16 +6254,16 @@ __metadata: languageName: node linkType: hard -"@esbuild/openbsd-x64@npm:0.27.2": - version: 0.27.2 - resolution: "@esbuild/openbsd-x64@npm:0.27.2" +"@esbuild/openbsd-x64@npm:0.27.3": + version: 0.27.3 + resolution: "@esbuild/openbsd-x64@npm:0.27.3" conditions: os=openbsd & cpu=x64 languageName: node linkType: hard -"@esbuild/openharmony-arm64@npm:0.27.2": - version: 0.27.2 - resolution: "@esbuild/openharmony-arm64@npm:0.27.2" +"@esbuild/openharmony-arm64@npm:0.27.3": + version: 0.27.3 + resolution: "@esbuild/openharmony-arm64@npm:0.27.3" conditions: os=openharmony & cpu=arm64 languageName: node linkType: hard @@ -6619,9 +6275,9 @@ __metadata: languageName: node linkType: hard -"@esbuild/sunos-x64@npm:0.27.2": - version: 0.27.2 - resolution: "@esbuild/sunos-x64@npm:0.27.2" +"@esbuild/sunos-x64@npm:0.27.3": + version: 0.27.3 + resolution: "@esbuild/sunos-x64@npm:0.27.3" conditions: os=sunos & cpu=x64 languageName: node linkType: hard @@ -6633,9 +6289,9 @@ __metadata: languageName: node linkType: hard -"@esbuild/win32-arm64@npm:0.27.2": - version: 0.27.2 - resolution: "@esbuild/win32-arm64@npm:0.27.2" +"@esbuild/win32-arm64@npm:0.27.3": + version: 0.27.3 + resolution: "@esbuild/win32-arm64@npm:0.27.3" conditions: os=win32 & cpu=arm64 languageName: node linkType: hard @@ -6647,9 +6303,9 @@ __metadata: languageName: node linkType: hard -"@esbuild/win32-ia32@npm:0.27.2": - version: 0.27.2 - resolution: "@esbuild/win32-ia32@npm:0.27.2" +"@esbuild/win32-ia32@npm:0.27.3": + version: 0.27.3 + resolution: "@esbuild/win32-ia32@npm:0.27.3" conditions: os=win32 & cpu=ia32 languageName: node linkType: hard @@ -6661,9 +6317,9 @@ __metadata: languageName: node linkType: hard -"@esbuild/win32-x64@npm:0.27.2": - version: 0.27.2 - resolution: "@esbuild/win32-x64@npm:0.27.2" +"@esbuild/win32-x64@npm:0.27.3": + version: 0.27.3 + resolution: "@esbuild/win32-x64@npm:0.27.3" conditions: os=win32 & cpu=x64 languageName: node linkType: hard @@ -7482,12 +7138,12 @@ __metadata: languageName: node linkType: hard -"@isaacs/brace-expansion@npm:^5.0.0": - version: 5.0.0 - resolution: "@isaacs/brace-expansion@npm:5.0.0" +"@isaacs/brace-expansion@npm:^5.0.0, @isaacs/brace-expansion@npm:^5.0.1": + version: 5.0.1 + resolution: "@isaacs/brace-expansion@npm:5.0.1" dependencies: "@isaacs/balanced-match": "npm:^4.0.1" - checksum: 10c0/b4d4812f4be53afc2c5b6c545001ff7a4659af68d4484804e9d514e183d20269bb81def8682c01a22b17c4d6aed14292c8494f7d2ac664e547101c1a905aa977 + checksum: 10c0/e5d67c7bbf1f17b88132a35bc638af306d48acbb72810d48fa6e6edd8ab375854773108e8bf70f021f7ef6a8273455a6d1f0c3b5aa2aff06ce7894049ab77fb8 languageName: node linkType: hard @@ -7505,6 +7161,13 @@ __metadata: languageName: node linkType: hard +"@isaacs/cliui@npm:^9.0.0": + version: 9.0.0 + resolution: "@isaacs/cliui@npm:9.0.0" + checksum: 10c0/971063b7296419f85053dacd0a0285dcadaa3dfc139228b23e016c1a9848121ad4aa5e7fcca7522062014e1eb6239a7424188b9f2cba893a79c90aae5710319c + languageName: node + linkType: hard + "@isaacs/fs-minipass@npm:^4.0.0": version: 4.0.1 resolution: "@isaacs/fs-minipass@npm:4.0.1" @@ -7702,17 +7365,17 @@ __metadata: linkType: hard "@mantine/dates@npm:^8.0.1": - version: 8.3.13 - resolution: "@mantine/dates@npm:8.3.13" + version: 8.3.14 + resolution: "@mantine/dates@npm:8.3.14" dependencies: clsx: "npm:^2.1.1" peerDependencies: - "@mantine/core": 8.3.13 - "@mantine/hooks": 8.3.13 + "@mantine/core": 8.3.14 + "@mantine/hooks": 8.3.14 dayjs: ">=1.0.0" react: ^18.x || ^19.x react-dom: ^18.x || ^19.x - checksum: 10c0/c20f7ce33ff701c845851cb5870889e544efb6c3f7eed5ce33279986414055932dbdef289afadfb20cfb6e41e612d9c0a07a3cd4699e625c2ee22b7bc740403c + checksum: 10c0/3e13fa766e9c7194ddd25a2ac0de292a06d4f3187dad54be07fb35ba0e542957d39f21c1f1e0053637dc88438de8cc759e60b576465da3f3c32f58cb5eab6df0 languageName: node linkType: hard @@ -9254,9 +8917,9 @@ __metadata: linkType: hard "@sinclair/typebox@npm:^0.27.8": - version: 0.27.8 - resolution: "@sinclair/typebox@npm:0.27.8" - checksum: 10c0/ef6351ae073c45c2ac89494dbb3e1f87cc60a93ce4cde797b782812b6f97da0d620ae81973f104b43c9b7eaa789ad20ba4f6a1359f1cc62f63729a55a7d22d4e + version: 0.27.10 + resolution: "@sinclair/typebox@npm:0.27.10" + checksum: 10c0/ca42a02817656dbdae464ed4bb8aca6ad4718d7618e270760fea84a834ad0ecc1a22eba51421f09e5047174571131356ff3b5d80d609ced775d631df7b404b0d languageName: node linkType: hard @@ -9342,7 +9005,7 @@ __metadata: languageName: node linkType: hard -"@smithy/config-resolver@npm:^4, @smithy/config-resolver@npm:^4.0.0, @smithy/config-resolver@npm:^4.4.6": +"@smithy/config-resolver@npm:^4, @smithy/config-resolver@npm:^4.4.6": version: 4.4.6 resolution: "@smithy/config-resolver@npm:4.4.6" dependencies: @@ -9372,9 +9035,9 @@ __metadata: languageName: node linkType: hard -"@smithy/core@npm:^3.0.0, @smithy/core@npm:^3.22.0": - version: 3.22.0 - resolution: "@smithy/core@npm:3.22.0" +"@smithy/core@npm:^3.22.0, @smithy/core@npm:^3.22.1": + version: 3.22.1 + resolution: "@smithy/core@npm:3.22.1" dependencies: "@smithy/middleware-serde": "npm:^4.2.9" "@smithy/protocol-http": "npm:^5.3.8" @@ -9382,11 +9045,11 @@ __metadata: "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-middleware": "npm:^4.2.8" - "@smithy/util-stream": "npm:^4.5.10" + "@smithy/util-stream": "npm:^4.5.11" "@smithy/util-utf8": "npm:^4.2.0" "@smithy/uuid": "npm:^1.1.0" tslib: "npm:^2.6.2" - checksum: 10c0/5f5ec90fe0d0e63a5e3d0086c70c206f278bb0032c6f22f7224844be16e923cbbe373b95ce37059362445978d571610db23fce5f9798c0405e879d0824bf9a7f + checksum: 10c0/f1f65f7f323128f0b2d9a3ee13b1b4a5942e966ff12016549f4bff8a83ccd6d8d539e29d27c11ccf66d4948e4766bb1b2ea8f37b08c70f85ae8cb2a2ab034e3b languageName: node linkType: hard @@ -9416,7 +9079,7 @@ __metadata: languageName: node linkType: hard -"@smithy/credential-provider-imds@npm:^4.0.0, @smithy/credential-provider-imds@npm:^4.2.8": +"@smithy/credential-provider-imds@npm:^4.2.8": version: 4.2.8 resolution: "@smithy/credential-provider-imds@npm:4.2.8" dependencies: @@ -9464,7 +9127,7 @@ __metadata: languageName: node linkType: hard -"@smithy/eventstream-serde-browser@npm:^4.0.0, @smithy/eventstream-serde-browser@npm:^4.2.8": +"@smithy/eventstream-serde-browser@npm:^4.2.8": version: 4.2.8 resolution: "@smithy/eventstream-serde-browser@npm:4.2.8" dependencies: @@ -9485,7 +9148,7 @@ __metadata: languageName: node linkType: hard -"@smithy/eventstream-serde-config-resolver@npm:^4.0.0, @smithy/eventstream-serde-config-resolver@npm:^4.3.8": +"@smithy/eventstream-serde-config-resolver@npm:^4.3.8": version: 4.3.8 resolution: "@smithy/eventstream-serde-config-resolver@npm:4.3.8" dependencies: @@ -9506,7 +9169,7 @@ __metadata: languageName: node linkType: hard -"@smithy/eventstream-serde-node@npm:^4.0.0, @smithy/eventstream-serde-node@npm:^4.2.8": +"@smithy/eventstream-serde-node@npm:^4.2.8": version: 4.2.8 resolution: "@smithy/eventstream-serde-node@npm:4.2.8" dependencies: @@ -9578,7 +9241,7 @@ __metadata: languageName: node linkType: hard -"@smithy/fetch-http-handler@npm:^5.0.0, @smithy/fetch-http-handler@npm:^5.3.9": +"@smithy/fetch-http-handler@npm:^5.3.9": version: 5.3.9 resolution: "@smithy/fetch-http-handler@npm:5.3.9" dependencies: @@ -9627,7 +9290,7 @@ __metadata: languageName: node linkType: hard -"@smithy/hash-node@npm:^4.0.0, @smithy/hash-node@npm:^4.2.8": +"@smithy/hash-node@npm:^4.2.8": version: 4.2.8 resolution: "@smithy/hash-node@npm:4.2.8" dependencies: @@ -9670,7 +9333,7 @@ __metadata: languageName: node linkType: hard -"@smithy/invalid-dependency@npm:^4.0.0, @smithy/invalid-dependency@npm:^4.2.8": +"@smithy/invalid-dependency@npm:^4.2.8": version: 4.2.8 resolution: "@smithy/invalid-dependency@npm:4.2.8" dependencies: @@ -9751,7 +9414,7 @@ __metadata: languageName: node linkType: hard -"@smithy/middleware-content-length@npm:^4.0.0, @smithy/middleware-content-length@npm:^4.2.8": +"@smithy/middleware-content-length@npm:^4.2.8": version: 4.2.8 resolution: "@smithy/middleware-content-length@npm:4.2.8" dependencies: @@ -9793,11 +9456,11 @@ __metadata: languageName: node linkType: hard -"@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" +"@smithy/middleware-endpoint@npm:^4, @smithy/middleware-endpoint@npm:^4.4.12, @smithy/middleware-endpoint@npm:^4.4.13": + version: 4.4.13 + resolution: "@smithy/middleware-endpoint@npm:4.4.13" dependencies: - "@smithy/core": "npm:^3.22.0" + "@smithy/core": "npm:^3.22.1" "@smithy/middleware-serde": "npm:^4.2.9" "@smithy/node-config-provider": "npm:^4.3.8" "@smithy/shared-ini-file-loader": "npm:^4.4.3" @@ -9805,7 +9468,7 @@ __metadata: "@smithy/url-parser": "npm:^4.2.8" "@smithy/util-middleware": "npm:^4.2.8" tslib: "npm:^2.6.2" - checksum: 10c0/437226c46c0a9bc4f654f05bbca47279fd572dcee5587736e6a4aff23c1611d91658d344625754a19734d9ee24f39659a6a7146ace59dd4e425b76e7a4334336 + checksum: 10c0/0a67cf539065c1c2750006d37eee92ed50aca976febf3281f5cb7b52ee028a6f5c66ee8337d9ba7afd21915a17756e8301f0540911ad6d59669353b22450a119 languageName: node linkType: hard @@ -9843,20 +9506,20 @@ __metadata: languageName: node linkType: hard -"@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" +"@smithy/middleware-retry@npm:^4.4.29, @smithy/middleware-retry@npm:^4.4.30": + version: 4.4.30 + resolution: "@smithy/middleware-retry@npm:4.4.30" dependencies: "@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/smithy-client": "npm:^4.11.2" "@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/c6d307e21b279b33ce2384f88bcc377ceedc03233e8885d0e3951fa3d9dfcfc92d27a9e8abd8c7d383431aa29f61292196cb727cdaf53b43aa173482c035cba4 + checksum: 10c0/bf3294fd62696714a5c66a54e5ce01ce578c55a62f657ea409d55d2c7fe1cb806db9f9f4125fb17fba1d15323165f68758923686c45ab50579c7578e56945894 languageName: node linkType: hard @@ -9880,7 +9543,7 @@ __metadata: languageName: node linkType: hard -"@smithy/middleware-serde@npm:^4.0.0, @smithy/middleware-serde@npm:^4.2.9": +"@smithy/middleware-serde@npm:^4.2.9": version: 4.2.9 resolution: "@smithy/middleware-serde@npm:4.2.9" dependencies: @@ -9911,7 +9574,7 @@ __metadata: languageName: node linkType: hard -"@smithy/middleware-stack@npm:^4.0.0, @smithy/middleware-stack@npm:^4.2.8": +"@smithy/middleware-stack@npm:^4.2.8": version: 4.2.8 resolution: "@smithy/middleware-stack@npm:4.2.8" dependencies: @@ -9945,7 +9608,7 @@ __metadata: languageName: node linkType: hard -"@smithy/node-config-provider@npm:^4, @smithy/node-config-provider@npm:^4.0.0, @smithy/node-config-provider@npm:^4.3.8": +"@smithy/node-config-provider@npm:^4, @smithy/node-config-provider@npm:^4.3.8": version: 4.3.8 resolution: "@smithy/node-config-provider@npm:4.3.8" dependencies: @@ -9983,16 +9646,16 @@ __metadata: languageName: node linkType: hard -"@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" +"@smithy/node-http-handler@npm:^4.4.8, @smithy/node-http-handler@npm:^4.4.9": + version: 4.4.9 + resolution: "@smithy/node-http-handler@npm:4.4.9" dependencies: "@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/d16fe026cd7942947033dc1e48d2914d2fad64388ad6a2bf8ff4cd22d7c3bf5e47ddae051350d6c1e681b35b9c8648ed693558825074915ea0a61ef189374869 + checksum: 10c0/e60d3724aa8a09273688ca81d5c3d613c3952b0011dc34034b78ab16b08d404c11cf9676b3265f299f7347fc5ad05c9ac0637b70488d9356a7c4b01222ab49e8 languageName: node linkType: hard @@ -10016,7 +9679,7 @@ __metadata: languageName: node linkType: hard -"@smithy/property-provider@npm:^4, @smithy/property-provider@npm:^4.0.0, @smithy/property-provider@npm:^4.2.8": +"@smithy/property-provider@npm:^4, @smithy/property-provider@npm:^4.2.8": version: 4.2.8 resolution: "@smithy/property-provider@npm:4.2.8" dependencies: @@ -10046,7 +9709,7 @@ __metadata: languageName: node linkType: hard -"@smithy/protocol-http@npm:^5.0.0, @smithy/protocol-http@npm:^5.3.8": +"@smithy/protocol-http@npm:^5.3.8": version: 5.3.8 resolution: "@smithy/protocol-http@npm:5.3.8" dependencies: @@ -10166,7 +9829,7 @@ __metadata: languageName: node linkType: hard -"@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": +"@smithy/shared-ini-file-loader@npm:^4, @smithy/shared-ini-file-loader@npm:^4.4.3": version: 4.4.3 resolution: "@smithy/shared-ini-file-loader@npm:4.4.3" dependencies: @@ -10207,7 +9870,7 @@ __metadata: languageName: node linkType: hard -"@smithy/signature-v4@npm:^5.0.0, @smithy/signature-v4@npm:^5.3.8": +"@smithy/signature-v4@npm:^5.3.8": version: 5.3.8 resolution: "@smithy/signature-v4@npm:5.3.8" dependencies: @@ -10252,18 +9915,18 @@ __metadata: languageName: node linkType: hard -"@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" +"@smithy/smithy-client@npm:^4.11.1, @smithy/smithy-client@npm:^4.11.2": + version: 4.11.2 + resolution: "@smithy/smithy-client@npm:4.11.2" dependencies: - "@smithy/core": "npm:^3.22.0" - "@smithy/middleware-endpoint": "npm:^4.4.12" + "@smithy/core": "npm:^3.22.1" + "@smithy/middleware-endpoint": "npm:^4.4.13" "@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" + "@smithy/util-stream": "npm:^4.5.11" tslib: "npm:^2.6.2" - checksum: 10c0/f1f52aab126d0550d6a142e76f8d060710c334331547cd8fd9a86bdbcd47262331b898271eb4af68211fd032411c64c1f4dfbf173adc0d007d016b3815b6cf45 + checksum: 10c0/496ef496306a5acfb0faeb6a5235c8089ac6fb928b6f1b14fb714d60cdf592c2fb6fb5f5f288da5395adc96948314357d47b815397409f4a6aa2db7cc3cc41cd languageName: node linkType: hard @@ -10285,7 +9948,7 @@ __metadata: languageName: node linkType: hard -"@smithy/types@npm:^4.0.0, @smithy/types@npm:^4.1.0, @smithy/types@npm:^4.12.0, @smithy/types@npm:^4.9.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: @@ -10316,7 +9979,7 @@ __metadata: languageName: node linkType: hard -"@smithy/url-parser@npm:^4.0.0, @smithy/url-parser@npm:^4.2.8": +"@smithy/url-parser@npm:^4.2.8": version: 4.2.8 resolution: "@smithy/url-parser@npm:4.2.8" dependencies: @@ -10349,7 +10012,7 @@ __metadata: languageName: node linkType: hard -"@smithy/util-base64@npm:^4.0.0, @smithy/util-base64@npm:^4.3.0": +"@smithy/util-base64@npm:^4.3.0": version: 4.3.0 resolution: "@smithy/util-base64@npm:4.3.0" dependencies: @@ -10378,7 +10041,7 @@ __metadata: languageName: node linkType: hard -"@smithy/util-body-length-browser@npm:^4.0.0, @smithy/util-body-length-browser@npm:^4.2.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: @@ -10405,7 +10068,7 @@ __metadata: languageName: node linkType: hard -"@smithy/util-body-length-node@npm:^4.0.0, @smithy/util-body-length-node@npm:^4.2.1": +"@smithy/util-body-length-node@npm:^4.2.1": version: 4.2.1 resolution: "@smithy/util-body-length-node@npm:4.2.1" dependencies: @@ -10462,7 +10125,7 @@ __metadata: languageName: node linkType: hard -"@smithy/util-config-provider@npm:^4.0.0, @smithy/util-config-provider@npm:^4.2.0": +"@smithy/util-config-provider@npm:^4.2.0": version: 4.2.0 resolution: "@smithy/util-config-provider@npm:4.2.0" dependencies: @@ -10497,15 +10160,15 @@ __metadata: languageName: node linkType: hard -"@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" +"@smithy/util-defaults-mode-browser@npm:^4.3.28, @smithy/util-defaults-mode-browser@npm:^4.3.29": + version: 4.3.29 + resolution: "@smithy/util-defaults-mode-browser@npm:4.3.29" dependencies: "@smithy/property-provider": "npm:^4.2.8" - "@smithy/smithy-client": "npm:^4.11.1" + "@smithy/smithy-client": "npm:^4.11.2" "@smithy/types": "npm:^4.12.0" tslib: "npm:^2.6.2" - checksum: 10c0/6bb97990edc2ba659010627c83aad7ac228d9999136989c21c6bffd9ca69ea2550d1d9d5cddcbb910c50c3d0d53d1434a42d83a4811d51a4d216c3008f4ed19c + checksum: 10c0/1e74208a450182cc786fd59e33b256791690512e233338a68506b932149755297fe08ce8f87da90bc63d6594870d58f7c9b3d100ec3aeea9361688601c8a5f23 languageName: node linkType: hard @@ -10539,18 +10202,18 @@ __metadata: languageName: node linkType: hard -"@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" +"@smithy/util-defaults-mode-node@npm:^4.2.31, @smithy/util-defaults-mode-node@npm:^4.2.32": + version: 4.2.32 + resolution: "@smithy/util-defaults-mode-node@npm:4.2.32" dependencies: "@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/smithy-client": "npm:^4.11.2" "@smithy/types": "npm:^4.12.0" tslib: "npm:^2.6.2" - checksum: 10c0/f8e9b09be0f8baae48f050612468bb5bb34dad98ac57926f5290f9dd729aefd1ef513bc93b9a7c3be5bbf09fb9c9ccd575517e81eb1d7ce911c60093687e5f7a + checksum: 10c0/fb8eee0a2cf72cc055d6944912279940365dc584aa341922aa3b8b59809cff13ef55b483017405bb46e905e90960d20760126f7abd4c88d763b5f2bd687895b2 languageName: node linkType: hard @@ -10576,7 +10239,7 @@ __metadata: languageName: node linkType: hard -"@smithy/util-endpoints@npm:^3.0.0, @smithy/util-endpoints@npm:^3.0.1, @smithy/util-endpoints@npm:^3.2.8": +"@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: @@ -10643,7 +10306,7 @@ __metadata: languageName: node linkType: hard -"@smithy/util-middleware@npm:^4.0.0, @smithy/util-middleware@npm:^4.2.8": +"@smithy/util-middleware@npm:^4.2.8": version: 4.2.8 resolution: "@smithy/util-middleware@npm:4.2.8" dependencies: @@ -10675,7 +10338,7 @@ __metadata: languageName: node linkType: hard -"@smithy/util-retry@npm:^4, @smithy/util-retry@npm:^4.0.0, @smithy/util-retry@npm:^4.2.8": +"@smithy/util-retry@npm:^4, @smithy/util-retry@npm:^4.2.8": version: 4.2.8 resolution: "@smithy/util-retry@npm:4.2.8" dependencies: @@ -10718,19 +10381,19 @@ __metadata: languageName: node linkType: hard -"@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" +"@smithy/util-stream@npm:^4.5.11": + version: 4.5.11 + resolution: "@smithy/util-stream@npm:4.5.11" dependencies: "@smithy/fetch-http-handler": "npm:^5.3.9" - "@smithy/node-http-handler": "npm:^4.4.8" + "@smithy/node-http-handler": "npm:^4.4.9" "@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/cd22dc18246fa458637c41c4e4cf3dfa586d0e25b4a861c422ea433920667ff8b21b6365450227f4fea6c3a35953f8693930a164d4fac0cf026d72ee40ca54c1 + checksum: 10c0/ebc5f2b46ffacea6530df5ff8940a6d1a4d0019bd9b4bc9158b8ad4973b4a25143fa007c75c6f45a6971813b3c7b6d6c69cc0291f9f451e5972307740cfe1bed languageName: node linkType: hard @@ -10791,7 +10454,7 @@ __metadata: languageName: node linkType: hard -"@smithy/util-utf8@npm:^4.0.0, @smithy/util-utf8@npm:^4.2.0": +"@smithy/util-utf8@npm:^4.2.0": version: 4.2.0 resolution: "@smithy/util-utf8@npm:4.2.0" dependencies: @@ -10801,7 +10464,7 @@ __metadata: languageName: node linkType: hard -"@smithy/util-waiter@npm:^4, @smithy/util-waiter@npm:^4.0.0, @smithy/util-waiter@npm:^4.2.8": +"@smithy/util-waiter@npm:^4, @smithy/util-waiter@npm:^4.2.8": version: 4.2.8 resolution: "@smithy/util-waiter@npm:4.2.8" dependencies: @@ -10858,6 +10521,43 @@ __metadata: languageName: node linkType: hard +"@tanstack/query-core@npm:5.90.20": + version: 5.90.20 + resolution: "@tanstack/query-core@npm:5.90.20" + checksum: 10c0/70637dfcecd5ed9d810629aa27f1632af8a4bcd083e75cf29408d058c32f8234704a3231ec280e2c4016ea0485b16124fdf70ab97793b5a7b670f43f7659e9fe + languageName: node + linkType: hard + +"@tanstack/query-devtools@npm:5.93.0": + version: 5.93.0 + resolution: "@tanstack/query-devtools@npm:5.93.0" + checksum: 10c0/0024cef103f48c50f3932f6bfe5d77b4fde25be49d43486f8ef7ec7108d2c1bd999ebc7a46309f0504bf081daa7217b36637e9436d67f9a1599c89a385d078ee + languageName: node + linkType: hard + +"@tanstack/react-query-devtools@npm:^5.91.3": + version: 5.91.3 + resolution: "@tanstack/react-query-devtools@npm:5.91.3" + dependencies: + "@tanstack/query-devtools": "npm:5.93.0" + peerDependencies: + "@tanstack/react-query": ^5.90.20 + react: ^18 || ^19 + checksum: 10c0/cbd9ce85698511e80955f2c7d0fa7395f3230b34a8cbfb6be1712d49393fc4e06a0a2b5ecd734dff9e803834a7c2c347c954ca4b76f961ccf4c31be39e7ac0bc + languageName: node + linkType: hard + +"@tanstack/react-query@npm:^5.90.20": + version: 5.90.20 + resolution: "@tanstack/react-query@npm:5.90.20" + dependencies: + "@tanstack/query-core": "npm:5.90.20" + peerDependencies: + react: ^18 || ^19 + checksum: 10c0/a8da6455d02ec769afc9ad528ec7b576d0becedfb5349e32592b9991a3c71a162f7115c054116d0101b55a473c689c06f8b03a7f56a9904f4329f75370e5a3f4 + languageName: node + linkType: hard + "@tanstack/react-table@npm:^8.20.5": version: 8.21.3 resolution: "@tanstack/react-table@npm:8.21.3" @@ -11216,20 +10916,20 @@ __metadata: linkType: hard "@types/node@npm:*, @types/node@npm:>=10.0.0, @types/node@npm:>=13.7.0": - version: 25.1.0 - resolution: "@types/node@npm:25.1.0" + version: 25.2.1 + resolution: "@types/node@npm:25.2.1" dependencies: undici-types: "npm:~7.16.0" - checksum: 10c0/5f393a127dc9565e2e152514a271455d580c7095afc51302e73ffe8aac3526b64ebacc3c10dd40c93cef81a95436ef2c6a8b522930df567a3f6b189c0eef649a + checksum: 10c0/ce42fa07495093c55b6398e3c4346d644a61b8c4f59d2e0c0ed152ea0e4327c60a41d5fdfa3e0fc4f4776eb925e2b783b6b942501fc044328a44980bc2de4dc6 languageName: node linkType: hard "@types/node@npm:^20.10.7, @types/node@npm:^20.14.10": - version: 20.19.30 - resolution: "@types/node@npm:20.19.30" + version: 20.19.32 + resolution: "@types/node@npm:20.19.32" dependencies: undici-types: "npm:~6.21.0" - checksum: 10c0/23dbea652727d947ea35fc1c4e8acb7e1c535e85f6c139c3a4697864a5af164655ce305ab0877ea4cca537deee0405bf56aeac714f236ae1a3dd0fa6b87cc860 + checksum: 10c0/ae2a541c6f9454b102212c801f2a1e2869a4cbd1e6c05dabed42830a6a3c25f5b3259fbaadffde5f464263035b65cce1ae1324fbeb5f20639df2b92419bdb26b languageName: node linkType: hard @@ -11356,11 +11056,11 @@ __metadata: linkType: hard "@types/react@npm:*": - version: 19.2.10 - resolution: "@types/react@npm:19.2.10" + version: 19.2.13 + resolution: "@types/react@npm:19.2.13" dependencies: csstype: "npm:^3.2.2" - checksum: 10c0/17b96203a79ad3fa3cee8f1f1f324b93f005bc125755e29ac149402807275feaf3f00a4e65b8405f633923ac993da5737fd9800d27ee49911f3ed51dc27478f9 + checksum: 10c0/e512dc53b805b9066f5c6ad42944372e1204290d618dbaec634d8bbd80d3aadcc1b8cdd7251329936bbdafae0425c02f531083213473bb370df903f20bb66e91 languageName: node linkType: hard @@ -12070,9 +11770,11 @@ __metadata: linkType: hard "@zip.js/zip.js@npm:^2.8.1": - version: 2.8.16 - resolution: "@zip.js/zip.js@npm:2.8.16" - checksum: 10c0/12a8d9572aa9deef9d46f974defadc016ab48c25a17aed7e16d2271e544aa735cfbf2d977551c4a490466d2ae77748686aaf6b63153c59d2a5ea920ad33c0378 + version: 2.8.17 + resolution: "@zip.js/zip.js@npm:2.8.17" + dependencies: + web-worker: "npm:^1.5.0" + checksum: 10c0/217282bc0466088657ee42f2b7debadfb8c74eba767ab2898b5d85626266659125e1185c762971a862584d4667f21b790e65b608f8b9c1aa6935ca9739f161cf languageName: node linkType: hard @@ -12722,24 +12424,24 @@ __metadata: linkType: hard "aws-amplify@npm:^6.4.0": - 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" + version: 6.16.2 + resolution: "aws-amplify@npm:6.16.2" + dependencies: + "@aws-amplify/analytics": "npm:7.0.93" + "@aws-amplify/api": "npm:6.3.24" + "@aws-amplify/auth": "npm:6.19.1" + "@aws-amplify/core": "npm:6.16.1" + "@aws-amplify/datastore": "npm:5.1.5" + "@aws-amplify/notifications": "npm:2.0.93" + "@aws-amplify/storage": "npm:6.13.1" tslib: "npm:^2.5.0" - checksum: 10c0/fb234127b78c00ee58c3d8d8fcae51bd72a2bb73add3c431d4ae4494ccf1d1b7c924fe9951bd83eca94539e301898ee663970c7f5aebfec0e1f95aeb93414aa6 + checksum: 10c0/98b0f2902d256e61c759d9c78b4811672f279a644ac3e70009007bb7d582958049dfa1222bb793c7d79bea04df5288489e87807ccb7b3897bc2a894f0f2ea4be languageName: node linkType: hard "aws-cdk-lib@npm:^2.149.0": - version: 2.236.0 - resolution: "aws-cdk-lib@npm:2.236.0" + version: 2.237.1 + resolution: "aws-cdk-lib@npm:2.237.1" dependencies: "@aws-cdk/asset-awscli-v1": "npm:2.2.263" "@aws-cdk/asset-node-proxy-agent-v6": "npm:^2.1.0" @@ -12757,16 +12459,16 @@ __metadata: yaml: "npm:1.10.2" peerDependencies: constructs: ^10.0.0 - checksum: 10c0/97cc71ab4f82a39d1f26532c7fb7d610c698e6cbc9beedceea12ca1e560361c443fdca2c88ac3c3d5ea98f856ae84f390f8754991007a014a20e32a22d2b0fcd + checksum: 10c0/483e49ae3081f0ef0be2a5929a21824254b8fcde0748130476855eb3c5b23e37dd633d60ba438851c9421a5416b30a5bfdb58eb8c92b656742cf07c22eda8ef2 languageName: node linkType: hard "aws-cdk@npm:^2.149.0": - version: 2.1104.0 - resolution: "aws-cdk@npm:2.1104.0" + version: 2.1105.0 + resolution: "aws-cdk@npm:2.1105.0" bin: cdk: bin/cdk - checksum: 10c0/ca3eab0f5f746e168bfd5f391db1fd39ebaabbd378481adda04cdc8752e16895c50a6903fc45c324d05b62fa3698a3da85d59edf8a897afa0be194662402803f + checksum: 10c0/4889bc7a91b32c2a7cb29a0d2dfa01ef4f80d6210d1364bdd19b74151f6b17d65a2790caf08df36c7026b32e9106037d79cc90b52a082eeed16692892879c04c languageName: node linkType: hard @@ -12820,7 +12522,7 @@ __metadata: languageName: node linkType: hard -"axios@npm:^1.7.2, axios@npm:^1.8.3": +"axios@npm:^1.13.4, axios@npm:^1.7.2, axios@npm:^1.8.3": version: 1.13.4 resolution: "axios@npm:1.13.4" dependencies: @@ -13412,9 +13114,9 @@ __metadata: linkType: hard "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 + version: 1.0.30001769 + resolution: "caniuse-lite@npm:1.0.30001769" + checksum: 10c0/161b8c30ab967371807d45d361f0d5bc06e38ef2dbf811493d70cd97c21e1522f5b91fd944c419a00047ee09c931ca64627f125a9ffa7a17a9fdff8dad9765b0 languageName: node linkType: hard @@ -13444,12 +13146,12 @@ __metadata: linkType: hard "cesium@npm:^1.131.0": - version: 1.137.0 - resolution: "cesium@npm:1.137.0" + version: 1.138.0 + resolution: "cesium@npm:1.138.0" dependencies: - "@cesium/engine": "npm:^22.2.0" - "@cesium/widgets": "npm:^14.2.0" - checksum: 10c0/cb99c508f501789a1ebf474eddb425f0495a3a8785970cc68ad3736919c703825bf026098ea3562a171cb6ddc5514abce45fb44faf8942cb92e853e06ad3df63 + "@cesium/engine": "npm:^22.3.0" + "@cesium/widgets": "npm:^14.3.0" + checksum: 10c0/2c830549526010cd4f316fab1b6e1118a472d6c17d5e8a791648a8f56d0301400dd5061c361062711619acfd960667605d593ec8d54220269d210ad7a7aa50eb languageName: node linkType: hard @@ -13724,6 +13426,8 @@ __metadata: "@react-three/fiber": "npm:9.0.0-alpha.8" "@react-three/postprocessing": "npm:^2.16.0" "@shared/helios-types": "npm:*" + "@tanstack/react-query": "npm:^5.90.20" + "@tanstack/react-query-devtools": "npm:^5.91.3" "@tanstack/react-table": "npm:^8.20.5" "@trivago/prettier-plugin-sort-imports": "npm:^4.3.0" "@types/eslint": "npm:^8.56.10" @@ -13740,6 +13444,7 @@ __metadata: "@typescript-eslint/eslint-plugin": "npm:^7.16.0" "@typescript-eslint/parser": "npm:^7.16.0" autoprefixer: "npm:^10.4.19" + axios: "npm:^1.13.4" chart.js: "npm:^4.4.8" dayjs: "npm:^1.11.13" eslint: "npm:8.57.0" @@ -14864,9 +14569,9 @@ __metadata: linkType: hard "electron-to-chromium@npm:^1.5.263": - version: 1.5.283 - resolution: "electron-to-chromium@npm:1.5.283" - checksum: 10c0/2ff8670d94ec49d2b12ae5d8ffb0208dde498d8a112ebb8016aac90171c7ee0860c7d8f78269afd3a3b7cba6dece3c49dd350cd240cc0f9a73a804699746798e + version: 1.5.286 + resolution: "electron-to-chromium@npm:1.5.286" + checksum: 10c0/5384510f9682d7e46f98fa48b874c3901d9639de96e9e387afce1fe010fbac31376df0534524edc15f66e9902bfacee54037a5e598004e9c6a617884e379926d languageName: node linkType: hard @@ -15221,35 +14926,35 @@ __metadata: linkType: hard "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" + version: 0.27.3 + resolution: "esbuild@npm:0.27.3" + dependencies: + "@esbuild/aix-ppc64": "npm:0.27.3" + "@esbuild/android-arm": "npm:0.27.3" + "@esbuild/android-arm64": "npm:0.27.3" + "@esbuild/android-x64": "npm:0.27.3" + "@esbuild/darwin-arm64": "npm:0.27.3" + "@esbuild/darwin-x64": "npm:0.27.3" + "@esbuild/freebsd-arm64": "npm:0.27.3" + "@esbuild/freebsd-x64": "npm:0.27.3" + "@esbuild/linux-arm": "npm:0.27.3" + "@esbuild/linux-arm64": "npm:0.27.3" + "@esbuild/linux-ia32": "npm:0.27.3" + "@esbuild/linux-loong64": "npm:0.27.3" + "@esbuild/linux-mips64el": "npm:0.27.3" + "@esbuild/linux-ppc64": "npm:0.27.3" + "@esbuild/linux-riscv64": "npm:0.27.3" + "@esbuild/linux-s390x": "npm:0.27.3" + "@esbuild/linux-x64": "npm:0.27.3" + "@esbuild/netbsd-arm64": "npm:0.27.3" + "@esbuild/netbsd-x64": "npm:0.27.3" + "@esbuild/openbsd-arm64": "npm:0.27.3" + "@esbuild/openbsd-x64": "npm:0.27.3" + "@esbuild/openharmony-arm64": "npm:0.27.3" + "@esbuild/sunos-x64": "npm:0.27.3" + "@esbuild/win32-arm64": "npm:0.27.3" + "@esbuild/win32-ia32": "npm:0.27.3" + "@esbuild/win32-x64": "npm:0.27.3" dependenciesMeta: "@esbuild/aix-ppc64": optional: true @@ -15305,7 +15010,7 @@ __metadata: optional: true bin: esbuild: bin/esbuild - checksum: 10c0/cf83f626f55500f521d5fe7f4bc5871bec240d3deb2a01fbd379edc43b3664d1167428738a5aad8794b35d1cca985c44c375b1cd38a2ca613c77ced2c83aafcd + checksum: 10c0/fdc3f87a3f08b3ef98362f37377136c389a0d180fda4b8d073b26ba930cf245521db0a368f119cc7624bc619248fff1439f5811f062d853576f8ffa3df8ee5f1 languageName: node linkType: hard @@ -15373,14 +15078,14 @@ __metadata: linkType: hard "eslint-config-turbo@npm:latest": - version: 2.8.1 - resolution: "eslint-config-turbo@npm:2.8.1" + version: 2.8.3 + resolution: "eslint-config-turbo@npm:2.8.3" dependencies: - eslint-plugin-turbo: "npm:2.8.1" + eslint-plugin-turbo: "npm:2.8.3" peerDependencies: eslint: ">6.6.0" turbo: ">2.0.0" - checksum: 10c0/d2a6a3f6b7c24bf3ec9d041929a11bcfa30cfa47fa5a8906679296bc53613702e716caffd4966b9b4f12bbead5e541f081535efa6fb17e619e31bfff67a4f627 + checksum: 10c0/fd97471839e82dcd7c6948098352ab77ae6213c815e6230aab9ee8ca5ee174bcfe3a549ba70519c30e7625faca04450915d7f2c21dbe0c9f0ebca2f21b8ae197 languageName: node linkType: hard @@ -15594,15 +15299,15 @@ __metadata: languageName: node linkType: hard -"eslint-plugin-turbo@npm:2.8.1": - version: 2.8.1 - resolution: "eslint-plugin-turbo@npm:2.8.1" +"eslint-plugin-turbo@npm:2.8.3": + version: 2.8.3 + resolution: "eslint-plugin-turbo@npm:2.8.3" dependencies: dotenv: "npm:16.0.3" peerDependencies: eslint: ">6.6.0" turbo: ">2.0.0" - checksum: 10c0/327d0c8a921833c0920211a5b93153e06f6183ad6bbe847d461ee38a76a31e65355f4a686e56c9b10d203038504637171af926215a76575a8d964481b5b19586 + checksum: 10c0/d506258b0132d3dd5e2163258539ed961587af416def4e42c093ac15ac1ccffba7a3c57131ca5ea7c40db565e059db51d3d0ecc7c894584bf96e9728bc1dda61 languageName: node linkType: hard @@ -16088,25 +15793,14 @@ __metadata: languageName: node linkType: hard -"fast-xml-parser@npm:5.2.5": - version: 5.2.5 - resolution: "fast-xml-parser@npm:5.2.5" +"fast-xml-parser@npm:5.3.4, fast-xml-parser@npm:^5.3.4": + version: 5.3.4 + resolution: "fast-xml-parser@npm:5.3.4" dependencies: strnum: "npm:^2.1.0" bin: fxparser: src/cli/cli.js - checksum: 10c0/d1057d2e790c327ccfc42b872b91786a4912a152d44f9507bf053f800102dfb07ece3da0a86b33ff6a0caa5a5cad86da3326744f6ae5efb0c6c571d754fe48cd - languageName: node - linkType: hard - -"fast-xml-parser@npm:^4.4.1": - version: 4.5.3 - resolution: "fast-xml-parser@npm:4.5.3" - dependencies: - strnum: "npm:^1.1.1" - bin: - fxparser: src/cli/cli.js - checksum: 10c0/bf9ccadacfadc95f6e3f0e7882a380a7f219cf0a6f96575149f02cb62bf44c3b7f0daee75b8ff3847bcfd7fbcb201e402c71045936c265cf6d94b141ec4e9327 + checksum: 10c0/d77866ca860ad185153e12f6ba12274d32026319ad8064e4681342b8a8e1ffad3f1f98daf04d77239fb12eb1d906ee7185fd328deda74529680e8dae0f3e9327 languageName: node linkType: hard @@ -16688,11 +16382,11 @@ __metadata: linkType: hard "get-tsconfig@npm:^4.10.0, get-tsconfig@npm:^4.7.5": - version: 4.13.1 - resolution: "get-tsconfig@npm:4.13.1" + version: 4.13.6 + resolution: "get-tsconfig@npm:4.13.6" dependencies: resolve-pkg-maps: "npm:^1.0.0" - checksum: 10c0/75c8ccebc411073338d7b7154f18659480d4888d1b12a74a21507d14c6e3b092e260454efe6ce33b33eaf513d86491b8f16191358fe3e0a682a215febd1846cc + checksum: 10c0/bab6937302f542f97217cbe7cbbdfa7e85a56a377bc7a73e69224c1f0b7c9ae8365918e55752ae8648265903f506c1705f63c0de1d4bab1ec2830fef3e539a1a languageName: node linkType: hard @@ -16831,13 +16525,13 @@ __metadata: linkType: hard "glob@npm:^13.0.0": - version: 13.0.0 - resolution: "glob@npm:13.0.0" + version: 13.0.1 + resolution: "glob@npm:13.0.1" dependencies: - minimatch: "npm:^10.1.1" + minimatch: "npm:^10.1.2" minipass: "npm:^7.1.2" path-scurry: "npm:^2.0.0" - checksum: 10c0/8e2f5821f3f7c312dd102e23a15b80c79e0837a9872784293ba2e15ec73b3f3749a49a42a31bfcb4e52c84820a474e92331c2eebf18819d20308f5c33876630a + checksum: 10c0/af7b863dec8dff74f61d7d6e53104e1f6bbdd482157a196cade8ed857481e876ec35181b38a059b2a7b93ea3b08248f4ff0792fef6dc91814fd5097a716f48e4 languageName: node linkType: hard @@ -16991,15 +16685,15 @@ __metadata: languageName: node linkType: hard -"graphql-transformer-common@npm:5.1.3": - version: 5.1.3 - resolution: "graphql-transformer-common@npm:5.1.3" +"graphql-transformer-common@npm:5.1.4": + version: 5.1.4 + resolution: "graphql-transformer-common@npm:5.1.4" dependencies: graphql: "npm:^15.5.0" graphql-mapping-template: "npm:5.0.2" md5: "npm:^2.2.1" pluralize: "npm:8.0.0" - checksum: 10c0/5b68c698aa3e1eec01f3fc7884dfc36fa2c69acc6ab06382939d0ffe2b37dd8c70c0b3ee198b1c1d1f31b00db2de613ab8adc7521e3220764f25e5b9308fb1eb + checksum: 10c0/743316daea05094b1d1b14209363f155f573bde655727c1dc87d1419123f0bd0f6c304c7813806bb574f6ec323df62e55fbeeb26629e1152554e3d6aeda6167a languageName: node linkType: hard @@ -18152,9 +17846,9 @@ __metadata: linkType: hard "isexe@npm:^3.1.1": - version: 3.1.1 - resolution: "isexe@npm:3.1.1" - checksum: 10c0/9ec257654093443eb0a528a9c8cbba9c0ca7616ccb40abd6dde7202734d96bb86e4ac0d764f0f8cd965856aacbff2f4ce23e730dc19dfb41e3b0d865ca6fdcc7 + version: 3.1.2 + resolution: "isexe@npm:3.1.2" + checksum: 10c0/1081adb0e9d8dd6d313916e39c81b683ab0e304bcec388b7bb400da988180dc576be7b298e6cd55d89fc5e98f32c1d73c2e04d2454c6115f58b28a8040d421ed languageName: node linkType: hard @@ -18204,11 +17898,11 @@ __metadata: linkType: hard "jackspeak@npm:^4.1.1": - version: 4.1.1 - resolution: "jackspeak@npm:4.1.1" + version: 4.2.3 + resolution: "jackspeak@npm:4.2.3" dependencies: - "@isaacs/cliui": "npm:^8.0.2" - checksum: 10c0/84ec4f8e21d6514db24737d9caf65361511f75e5e424980eebca4199f400874f45e562ac20fa8aeb1dd20ca2f3f81f0788b6e9c3e64d216a5794fd6f30e0e042 + "@isaacs/cliui": "npm:^9.0.0" + checksum: 10c0/b5c0c414f1607c2aa0597f4bf2c03b8443897fccd5fd3c2b3e4f77d556b2bc7c3d3413828ba91e0789f6fb40ad90242f7f89fb20aee9e9d705bc1681f7564f67 languageName: node linkType: hard @@ -19404,12 +19098,12 @@ __metadata: languageName: node linkType: hard -"minimatch@npm:^10.1.1": - version: 10.1.1 - resolution: "minimatch@npm:10.1.1" +"minimatch@npm:^10.1.1, minimatch@npm:^10.1.2": + version: 10.1.2 + resolution: "minimatch@npm:10.1.2" dependencies: - "@isaacs/brace-expansion": "npm:^5.0.0" - checksum: 10c0/c85d44821c71973d636091fddbfbffe62370f5ee3caf0241c5b60c18cd289e916200acb2361b7e987558cd06896d153e25d505db9fc1e43e6b4b6752e2702902 + "@isaacs/brace-expansion": "npm:^5.0.1" + checksum: 10c0/0cccef3622201703de6ecf9d772c0be1d5513dcc038ed9feb866c20cf798243e678ac35605dac3f1a054650c28037486713fe9e9a34b184b9097959114daf086 languageName: node linkType: hard @@ -19492,17 +19186,17 @@ __metadata: linkType: hard "minipass-fetch@npm:^5.0.0": - version: 5.0.0 - resolution: "minipass-fetch@npm:5.0.0" + version: 5.0.1 + resolution: "minipass-fetch@npm:5.0.1" dependencies: encoding: "npm:^0.1.13" minipass: "npm:^7.0.3" - minipass-sized: "npm:^1.0.3" + minipass-sized: "npm:^2.0.0" minizlib: "npm:^3.0.1" dependenciesMeta: encoding: optional: true - checksum: 10c0/9443aab5feab190972f84b64116e54e58dd87a58e62399cae0a4a7461b80568281039b7c3a38ba96453431ebc799d1e26999e548540156216729a4967cd5ef06 + checksum: 10c0/50bcf48c9841ebb25e29a2817468595219c72cfffc7c175a1d7327843c8bef9b72cb01778f46df7eca695dfe47ab98e6167af4cb026ddd80f660842919a5193c languageName: node linkType: hard @@ -19533,6 +19227,15 @@ __metadata: languageName: node linkType: hard +"minipass-sized@npm:^2.0.0": + version: 2.0.0 + resolution: "minipass-sized@npm:2.0.0" + dependencies: + minipass: "npm:^7.1.2" + checksum: 10c0/f9201696a6f6d68610d04c9c83e3d2e5cb9c026aae1c8cbf7e17f386105cb79c1bb088dbc21bf0b1eb4f3fb5df384fd1e7aa3bf1f33868c416ae8c8a92679db8 + languageName: node + linkType: hard + "minipass@npm:^3.0.0": version: 3.3.6 resolution: "minipass@npm:3.3.6" @@ -19608,9 +19311,9 @@ __metadata: linkType: hard "module-alias@npm:^2.2.3": - version: 2.2.3 - resolution: "module-alias@npm:2.2.3" - checksum: 10c0/47dc5b6d04f6e7df0ff330ca9b2a37c688a682ed661e9432b0b327e1e6c43eedad052151b8d50d6beea8b924828d2a92fa4625c18d651bf2d93d8f03aa0172fa + version: 2.3.4 + resolution: "module-alias@npm:2.3.4" + checksum: 10c0/c0af11f640410d928db9dd62ba66a39d55475ff5d9e8943bb753b6688a35fd07f0ec950285fb0519d337bcd5bf9503d54ef1d557754a38aa371b095d1197a8b8 languageName: node linkType: hard @@ -19663,8 +19366,8 @@ __metadata: linkType: hard "mqtt@npm:^5.8.0": - version: 5.14.1 - resolution: "mqtt@npm:5.14.1" + version: 5.15.0 + resolution: "mqtt@npm:5.15.0" dependencies: "@types/readable-stream": "npm:^4.0.21" "@types/ws": "npm:^8.18.1" @@ -19686,7 +19389,7 @@ __metadata: mqtt: build/bin/mqtt.js mqtt_pub: build/bin/pub.js mqtt_sub: build/bin/sub.js - checksum: 10c0/30acd3858223cb5e7b4aa2a725f47e51bd40eaca530c0e3b5cf96f7377a1f0018a7fe4d2bc2c10327973d46d5a2b8118560936de1a3d8a209c7f37ee914cfdbd + checksum: 10c0/cfa887a7c360ce6d16285a8787b83047f5ecd7280a9b75bc42ed0c5ff935fcbd2b6f54edb85b0d17d84a946c9b5b4994b239bee0f7f72f5e100bece7f6e4eab9 languageName: node linkType: hard @@ -22636,11 +22339,11 @@ __metadata: 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.7.3": - version: 7.7.3 - resolution: "semver@npm:7.7.3" + version: 7.7.4 + resolution: "semver@npm:7.7.4" bin: semver: bin/semver.js - checksum: 10c0/4afe5c986567db82f44c8c6faef8fe9df2a9b1d98098fc1721f57c696c4c21cebd572f297fc21002f81889492345b8470473bc6f4aff5fb032a6ea59ea2bc45e + checksum: 10c0/5215ad0234e2845d4ea5bb9d836d42b03499546ddafb12075566899fc617f68794bb6f146076b6881d755de17d6c6cc73372555879ec7dce2c2feee947866ad2 languageName: node linkType: hard @@ -23600,7 +23303,7 @@ __metadata: languageName: node linkType: hard -"strnum@npm:^1.0.5, strnum@npm:^1.1.1": +"strnum@npm:^1.0.5": version: 1.1.2 resolution: "strnum@npm:1.1.2" checksum: 10c0/a0fce2498fa3c64ce64a40dada41beb91cabe3caefa910e467dc0518ef2ebd7e4d10f8c2202a6104f1410254cae245066c0e94e2521fb4061a5cb41831952392 @@ -25156,6 +24859,13 @@ __metadata: languageName: node linkType: hard +"web-worker@npm:^1.5.0": + version: 1.5.0 + resolution: "web-worker@npm:1.5.0" + checksum: 10c0/d42744757422803c73ca64fa51e1ce994354ace4b8438b3f740425a05afeb8df12dd5dadbf6b0839a08dbda56c470d7943c0383854c4fb1ae40ab874eb10427a + languageName: node + linkType: hard + "webgl-constants@npm:^1.1.1": version: 1.1.1 resolution: "webgl-constants@npm:1.1.1" @@ -25388,14 +25098,14 @@ __metadata: linkType: hard "worker-timers@npm:^8.0.23": - version: 8.0.29 - resolution: "worker-timers@npm:8.0.29" + version: 8.0.30 + resolution: "worker-timers@npm:8.0.30" dependencies: "@babel/runtime": "npm:^7.28.6" tslib: "npm:^2.8.1" worker-timers-broker: "npm:^8.0.15" worker-timers-worker: "npm:^9.0.13" - checksum: 10c0/e486d81c23703c7abea1aa5c5d5f8f0b751886a60440c34ca371fb8d6e7674d5ca9ce15512d2122dbefc9dff2341a6ba2523a3a3fd8d4748a16e5b13542f007a + checksum: 10c0/6fe57e28de2ec0b62254250fee4e92f3b8e6552cf1f8498c595dd9df1d1b1c18c622d932fbf2154403737bafafa86b248d7f454553665eff36a29667f1665ccc languageName: node linkType: hard @@ -25759,8 +25469,8 @@ __metadata: linkType: hard "zustand@npm:^5.0.1": - version: 5.0.10 - resolution: "zustand@npm:5.0.10" + version: 5.0.11 + resolution: "zustand@npm:5.0.11" peerDependencies: "@types/react": ">=18.0.0" immer: ">=9.0.6" @@ -25775,6 +25485,6 @@ __metadata: optional: true use-sync-external-store: optional: true - checksum: 10c0/e6ddabf2b44f2c0b7362b0f549cb457d25516caa4c0465132037b62b6173552a43d48bb494c1707286f8d60b389fa249eb4242aa810f1c1d4b4d0b96df789cb8 + checksum: 10c0/61836b48dac5978c9d1b8289d5162a151bee77828371b9aba6431a079b77faca0635ba53da3f7b331295fbc4e78318a109a4527f7a051cb63abfe79b69ccbecf languageName: node linkType: hard From fbcda9e0cd37ce486734ad731569e116bd9389fd Mon Sep 17 00:00:00 2001 From: Justin Pham <113923596+justin-phxm@users.noreply.github.com> Date: Sat, 7 Feb 2026 14:53:21 -0700 Subject: [PATCH 2/3] Potential fix for pull request finding 'Comparison between inconvertible types' Co-authored-by: Copilot Autofix powered by AI <223894421+github-code-quality[bot]@users.noreply.github.com> --- packages/client/src/hooks/useMLCorrelationMatrix.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/client/src/hooks/useMLCorrelationMatrix.ts b/packages/client/src/hooks/useMLCorrelationMatrix.ts index 459a0802..d1c6b939 100644 --- a/packages/client/src/hooks/useMLCorrelationMatrix.ts +++ b/packages/client/src/hooks/useMLCorrelationMatrix.ts @@ -59,7 +59,7 @@ export function useMLCorrelationMatrix({ const query = useQuery({ // Only enable query when theme is resolved // This prevents unnecessary fetches before theme is ready - enabled: !!resolvedTheme && resolvedTheme !== undefined, + enabled: !!resolvedTheme, // Fetch function - uses axios with 30s timeout queryFn: () => fetchCorrelationMatrix(plotType), From 31563ce184d39cff3f5ac5c12e0bfb683f0467f4 Mon Sep 17 00:00:00 2001 From: Justin Pham Date: Sat, 7 Feb 2026 17:00:43 -0700 Subject: [PATCH 3/3] refactor: update API handlers to use backendApi and remove direct URL construction --- packages/client/src/lib/api.ts | 6 ++---- .../src/pages/api/getLapCorrelationMatrix.ts | 20 ++++++------------- .../pages/api/getPacketCorrelationMatrix.ts | 20 ++++++------------- 3 files changed, 14 insertions(+), 32 deletions(-) diff --git a/packages/client/src/lib/api.ts b/packages/client/src/lib/api.ts index f0046da9..4a78cf97 100644 --- a/packages/client/src/lib/api.ts +++ b/packages/client/src/lib/api.ts @@ -22,6 +22,8 @@ */ import axios, { type AxiosInstance } from "axios"; +import { prodURL } from "@shared/helios-types"; + /** * Default timeout for all API requests (30 seconds) * This prevents requests from hanging indefinitely @@ -60,10 +62,6 @@ export const api: AxiosInstance = axios.create({ * Note: Import prodURL dynamically to avoid issues with environment variables */ const createBackendApi = (): AxiosInstance => { - // Dynamic import to handle environment-specific URLs - // eslint-disable-next-line @typescript-eslint/no-var-requires - const { prodURL } = require("@shared/helios-types"); - return axios.create({ baseURL: prodURL, headers: { diff --git a/packages/client/src/pages/api/getLapCorrelationMatrix.ts b/packages/client/src/pages/api/getLapCorrelationMatrix.ts index 22a15553..7dcc85c7 100644 --- a/packages/client/src/pages/api/getLapCorrelationMatrix.ts +++ b/packages/client/src/pages/api/getLapCorrelationMatrix.ts @@ -1,25 +1,17 @@ import type { NextApiRequest, NextApiResponse } from "next"; -import { prodURL } from "@shared/helios-types"; - -const BACKEND_ROUTE = `${prodURL}/ml/correlation-matrix/lap`; +import { BACKEND_ROUTES } from "@/constants/apiRoutes"; +import { backendApi } from "@/lib/api"; export default async function handler( _req: NextApiRequest, res: NextApiResponse, ) { try { - 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); + const { data } = await backendApi.get( + BACKEND_ROUTES.ml.lapCorrelationMatrix, + ); + res.status(200).json(data); } catch (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 ebf07fa5..a31d9311 100644 --- a/packages/client/src/pages/api/getPacketCorrelationMatrix.ts +++ b/packages/client/src/pages/api/getPacketCorrelationMatrix.ts @@ -1,25 +1,17 @@ import type { NextApiRequest, NextApiResponse } from "next"; -import { prodURL } from "@shared/helios-types"; - -const BACKEND_ROUTE = `${prodURL}/ml/correlation-matrix/packet`; +import { BACKEND_ROUTES } from "@/constants/apiRoutes"; +import { backendApi } from "@/lib/api"; export default async function handler( _req: NextApiRequest, res: NextApiResponse, ) { try { - 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); + const { data } = await backendApi.get( + BACKEND_ROUTES.ml.packetCorrelationMatrix, + ); + res.status(200).json(data); } catch (err) { res.status(500).json({ error: `Failed to load data: ${err instanceof Error ? err.message : String(err)}`,