diff --git a/.eslintignore b/.eslintignore deleted file mode 100644 index b6369400..00000000 --- a/.eslintignore +++ /dev/null @@ -1 +0,0 @@ -packages/db/src/entities/*.ts \ No newline at end of file diff --git a/.eslintrc.cjs b/.eslintrc.cjs deleted file mode 100644 index 12a83aaa..00000000 --- a/.eslintrc.cjs +++ /dev/null @@ -1,40 +0,0 @@ -/* eslint-disable @typescript-eslint/no-var-requires */ -/** @type {import("eslint").Linter.Config} */ - -const path = require("path"); -const prettierConfig = require(path.join(__dirname, ".prettierrc.cjs")); - -/** @type {import("eslint").Linter.Config} */ -const config = { - extends: [ - "plugin:@typescript-eslint/recommended", - "plugin:prettier/recommended", - "prettier", - ], - parser: "@typescript-eslint/parser", - parserOptions: { - project: ["./tsconfig.json", "./packages/*/tsconfig.json"], - tsconfigRootDir: __dirname, - }, - plugins: [ - "@typescript-eslint", - "prettier", - "promise", - "sort-keys", - "sort-destructure-keys", - ], - rules: { - "@typescript-eslint/no-unused-vars": ["warn", { argsIgnorePattern: "^_" }], - eqeqeq: ["error", "smart"], - "no-console": "error", - "no-eval": "error", - "no-var": "error", - "prettier/prettier": ["error", prettierConfig], - "sort-destructure-keys/sort-destructure-keys": 2, - // "no-restricted-imports": ["error", { patterns: [".*"] }], - "sort-keys": "error", - "sort-keys/sort-keys-fix": "error", - }, -}; - -module.exports = config; diff --git a/.prettierrc.cjs b/.prettierrc.cjs index b177196b..d70e8019 100644 --- a/.prettierrc.cjs +++ b/.prettierrc.cjs @@ -12,7 +12,7 @@ const config = { // require.resolve("@trivago/prettier-plugin-sort-imports"), require.resolve("prettier-plugin-tailwindcss"), ], - tailwindConfig: "./packages/client/tailwind.config.ts", + tailwindConfig: "tailwind.config.ts", }; module.exports = config; diff --git a/.vscode/settings.json b/.vscode/settings.json index 5df632ed..383ac31e 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -14,5 +14,14 @@ "editor.defaultFormatter": "esbenp.prettier-vscode", "editor.formatOnSave": true, "typescript.preferences.importModuleSpecifier": "non-relative", - "javascript.preferences.importModuleSpecifier": "non-relative" -} \ No newline at end of file + "javascript.preferences.importModuleSpecifier": "non-relative", + "eslint.enable": true, + "eslint.useFlatConfig": true, + "eslint.workingDirectories": [{ "mode": "auto" }], + "eslint.validate": [ + "javascript", + "javascriptreact", + "typescript", + "typescriptreact" + ] +} diff --git a/eslint.config.mjs b/eslint.config.mjs new file mode 100644 index 00000000..b44c9ac0 --- /dev/null +++ b/eslint.config.mjs @@ -0,0 +1,115 @@ +import path from "path"; +import { fileURLToPath } from "url"; + +import prettierPlugin from "eslint-plugin-prettier"; +import promisePlugin from "eslint-plugin-promise"; +import reactPlugin from "eslint-plugin-react"; +import nextPlugin from "@next/eslint-plugin-next"; +import reactHooks from "eslint-plugin-react-hooks"; +import tseslint from "typescript-eslint"; +import sortKeys from "eslint-plugin-sort-keys"; +import sortDestructureKeys from "eslint-plugin-sort-destructure-keys"; + +import prettierConfig from "./.prettierrc.cjs"; + +const __filename = fileURLToPath(import.meta.url); +const __dirname = path.dirname(__filename); + +export default [ + // ======================== + // Global ignores + // ======================== + { + ignores: [ + "**/node_modules/**", + "packages/db/src/entities/*.ts", + "packages/client/tailwind.config.ts", + "**/.next/**", + "**/dist/**", + "**/build/**", + "**/.turbo/**", + ], + }, + + ...tseslint.configs.recommendedTypeChecked.map((config) => ({ + ...config, + files: ["**/*.ts", "**/*.tsx"], // We use TS config only for TS files + })), + + // ======================== + // Base TypeScript rules (ALL packages) + // ======================== + { + files: ["**/*.ts", "**/*.tsx"], + languageOptions: { + parserOptions: { + projectService: true, + tsconfigRootDir: __dirname, + }, + }, + plugins: { + "@typescript-eslint": tseslint.plugin, + prettier: prettierPlugin, + promise: promisePlugin, + "sort-keys": sortKeys, + "sort-destructure-keys": sortDestructureKeys, + }, + rules: { + "@typescript-eslint/no-unused-vars": [ + "warn", + { argsIgnorePattern: "^_" }, + ], + + eqeqeq: ["error", "smart"], + "no-console": "error", + "no-eval": "error", + "no-var": "error", + + "prettier/prettier": ["error", prettierConfig], + + "sort-destructure-keys/sort-destructure-keys": "error", + "sort-keys": "error", + "sort-keys/sort-keys-fix": "error", + }, + }, + + // ======================== + // CLIENT (Next.js + React) + // ======================== + { + files: ["packages/client/**/*.{ts,tsx}"], + plugins: { + react: reactPlugin, + "@next/next": nextPlugin, + "react-hooks": reactHooks, + }, + settings: { + react: { + version: "detect", + }, + next: { + rootDir: "packages/client", + }, + }, + rules: { + ...reactPlugin.configs.recommended.rules, + ...nextPlugin.configs["core-web-vitals"].rules, + + "react/jsx-sort-props": "error", + "react/sort-comp": "off", + "react/react-in-jsx-scope": "off", + "@next/next/no-html-link-for-pages": ["error", "packages/client/src"], + }, + }, + + // ======================== + // SERVER (Node only) + // ======================== + { + files: ["packages/server/**/*.ts"], + rules: { + // Server-specific overrides go here + // (currently same as base except no React rules) + }, + }, +]; diff --git a/package.json b/package.json index 993891f3..47824395 100644 --- a/package.json +++ b/package.json @@ -29,23 +29,17 @@ "schema:sync": "lerna run schema:sync --scope=db", "schema:drop": "lerna run schema:drop --scope=db" }, - "dependencies": { - "@mantine/dates": "^8.0.1", - "@mantine/notifications": "^7.17.3", - "esbuild": "^0.23.0", - "uuid": "^11.0.5" - }, "devDependencies": { + "@eslint/js": "^10.0.1", + "@next/eslint-plugin-next": "^16.1.6", "@types/eslint": "^9.6.0", - "@typescript-eslint/eslint-plugin": "^7.4.0", - "@typescript-eslint/parser": "^7.4.0", - "clsx": "^2.1.1", - "eslint": "8.57.0", - "eslint-config-prettier": "^9.1.0", - "eslint-config-turbo": "latest", + "eslint": "9.0.0", + "eslint-config-prettier": "^10.1.8", "eslint-plugin-import": "^2.29.1", - "eslint-plugin-prettier": "^5.1.3", - "eslint-plugin-promise": "^6.4.0", + "eslint-plugin-prettier": "^5.5.5", + "eslint-plugin-promise": "^7.2.1", + "eslint-plugin-react": "^7.37.5", + "eslint-plugin-react-hooks": "^7.0.1", "eslint-plugin-sort-destructure-keys": "^2.0.0", "eslint-plugin-sort-keys": "^2.3.5", "husky": "^8.0.3", @@ -53,7 +47,8 @@ "lint-staged": "^13.2.2", "prettier": "^3.3.3", "prettier-plugin-tailwindcss": "^0.6.6", - "typescript": "^5.5.4" + "typescript": "^5.5.4", + "typescript-eslint": "^8.54.0" }, "workspaces": [ "packages/*" diff --git a/packages/amplify/.eslintrc.cjs b/packages/amplify/.eslintrc.cjs deleted file mode 100644 index 2bf16fce..00000000 --- a/packages/amplify/.eslintrc.cjs +++ /dev/null @@ -1,8 +0,0 @@ -/** @type {import("eslint").Linter.Config} */ - -const config = { - extends: ["../../.eslintrc.cjs"], - root: true, -}; - -module.exports = config; diff --git a/packages/amplify/tsconfig.json b/packages/amplify/tsconfig.json index 3fac30d2..534c5a6a 100644 --- a/packages/amplify/tsconfig.json +++ b/packages/amplify/tsconfig.json @@ -1,7 +1,4 @@ { "extends": "../../tsconfig.json", - "include": [ - "amplify", - ".eslintrc.cjs" - ], + "include": ["amplify"] } diff --git a/packages/client/.eslintignore b/packages/client/.eslintignore deleted file mode 100644 index b2f6ee5f..00000000 --- a/packages/client/.eslintignore +++ /dev/null @@ -1,2 +0,0 @@ -node_modules/ -tailwind.config.ts \ No newline at end of file diff --git a/packages/client/.eslintrc.cjs b/packages/client/.eslintrc.cjs deleted file mode 100644 index 2f1d9824..00000000 --- a/packages/client/.eslintrc.cjs +++ /dev/null @@ -1,16 +0,0 @@ -/** @type {import("eslint").Linter.Config} */ - -// eslint-disable-next-line @typescript-eslint/no-var-requires -const prettierConfig = require("./prettier.config.cjs"); - -const config = { - extends: ["../../.eslintrc.cjs", "next"], - root: true, - rules: { - "prettier/prettier": ["error", prettierConfig], - "react/jsx-sort-props": "error", - "react/sort-comp": 0, - }, -}; - -module.exports = config; diff --git a/packages/client/next.config.mjs b/packages/client/next.config.mjs index 4f6c313f..2bd88ead 100644 --- a/packages/client/next.config.mjs +++ b/packages/client/next.config.mjs @@ -2,6 +2,7 @@ const nextConfig = { reactStrictMode: true, transpilePackages: ["@shared/heliostypes"], + reactCompiler: true, }; export default nextConfig; diff --git a/packages/client/package.json b/packages/client/package.json index 815ca80c..b0f9ff60 100644 --- a/packages/client/package.json +++ b/packages/client/package.json @@ -6,7 +6,7 @@ "dev": "npx next dev --turbopack", "build": "next build", "start": "next start", - "lint": "next lint" + "lint": "eslint ." }, "dependencies": { "@emotion/react": "^11.11.3", @@ -29,13 +29,13 @@ "framer-motion": "^11.0.6", "lodash": "^4.17.21", "mapbox-gl": "^3.5.1", - "next": "15.1.4", + "next": "16.1.6", "next-themes": "^0.4.6", "plotly.js-dist-min": "^2.35.3", "rc-slider": "^11.1.8", - "react": "19.0.0", + "react": "19.2.4", "react-chartjs-2": "^5.3.0", - "react-dom": "19.0.0", + "react-dom": "19.2.4", "react-icons": "^5.0.1", "react-indiana-drag-scroll": "^2.2.0", "react-map-gl": "^7.1.7", @@ -45,25 +45,17 @@ }, "devDependencies": { "@trivago/prettier-plugin-sort-imports": "^4.3.0", - "@types/eslint": "^8.56.10", "@types/google.maps": "^3.55.11", "@types/lodash": "^4", "@types/node": "^20.14.10", "@types/plotly.js": "^3.0.0", "@types/plotly.js-dist-min": "^2", "@types/prettier": "^3.0.0", - "@types/react": "19.0.7", - "@types/react-dom": "19.0.3", + "@types/react": "19.2.10", + "@types/react-dom": "19.2.3", "@types/react-plotly.js": "^2.6.3", - "@typescript-eslint/eslint-plugin": "^7.16.0", - "@typescript-eslint/parser": "^7.16.0", "autoprefixer": "^10.4.19", - "eslint": "8.57.0", - "eslint-config-next": "15.1.4", - "eslint-config-prettier": "^9.1.0", - "eslint-plugin-prettier": "^5.1.3", - "eslint-plugin-promise": "^6.4.0", - "eslint-plugin-tailwindcss": "^3.17.4", + "babel-plugin-react-compiler": "^1.0.0", "gltf-pipeline": "^4.1.0", "postcss": "^8.5.3", "postcss-preset-mantine": "^1.17.0", diff --git a/packages/client/src/components/atoms/PauseIcon.tsx b/packages/client/src/components/atoms/PauseIcon.tsx index 52b3ea26..430ed3e4 100644 --- a/packages/client/src/components/atoms/PauseIcon.tsx +++ b/packages/client/src/components/atoms/PauseIcon.tsx @@ -13,10 +13,10 @@ const PauseIcon = (props: SvgProps) => { xmlns="http://www.w3.org/2000/svg" > ); diff --git a/packages/client/src/components/atoms/PlayIcon.tsx b/packages/client/src/components/atoms/PlayIcon.tsx index 53038303..7557cb3a 100644 --- a/packages/client/src/components/atoms/PlayIcon.tsx +++ b/packages/client/src/components/atoms/PlayIcon.tsx @@ -15,7 +15,7 @@ const PlayIcon = (props: SvgProps) => { ); diff --git a/packages/client/src/components/containers/MLContainer.tsx b/packages/client/src/components/containers/MLContainer.tsx index f7df786c..9414b03e 100644 --- a/packages/client/src/components/containers/MLContainer.tsx +++ b/packages/client/src/components/containers/MLContainer.tsx @@ -1,5 +1,6 @@ "use client"; +import axios from "axios"; import { useTheme } from "next-themes"; import { useEffect, useState } from "react"; import type { PlotParams } from "react-plotly.js"; @@ -26,9 +27,9 @@ export default function MLContainer({ useEffect(() => { const fetchPlot = async () => { try { - const response = await fetch(plotType); - const graph = await response.json(); - const data = JSON.parse(graph) as PlotParams; + // TODO: check to see if data is being parsed correctly. + const response = await axios.get(plotType); + const data = JSON.parse(response.data) as PlotParams; const layout: PlotParams["layout"] = { autosize: true, font: { @@ -49,7 +50,8 @@ export default function MLContainer({ setPlot({ error: true }); } }; - fetchPlot(); + + void fetchPlot(); }, [plotType, resolvedTheme]); if (!plot || !resolvedTheme || resolvedTheme === undefined) { diff --git a/packages/client/src/components/containers/MapContainer.tsx b/packages/client/src/components/containers/MapContainer.tsx index e5a054fd..c17170d1 100644 --- a/packages/client/src/components/containers/MapContainer.tsx +++ b/packages/client/src/components/containers/MapContainer.tsx @@ -2,7 +2,7 @@ import { type JSX, useEffect, useState } from "react"; import Map from "@/components/molecules/MapMolecules/Map"; import MapText from "@/components/molecules/MapMolecules/MapText"; -import { useAppState } from "@/stores/useAppState"; +import { CONNECTIONTYPES, useAppState } from "@/stores/useAppState"; import { usePacketStore } from "@/stores/usePacket"; import { Coords } from "@shared/helios-types"; @@ -20,18 +20,18 @@ function MapContainer(): JSX.Element { const { currentAppState } = useAppState(); const { currentPacket } = usePacketStore(); - const isDemo = currentAppState.connectionType === "DEMO"; + const isDemo = currentAppState.connectionType === CONNECTIONTYPES.DEMO; const [carLocation, setCarLocation] = useState( isDemo ? startingLocation : currentAppState.lapCoords, ); useEffect(() => { if (isDemo) { let positionPacket = 0; - const interval = setInterval((prevState) => { - setCarLocation({ + const interval = setInterval(() => { + setCarLocation((prevState) => ({ lat: TRACK_COORDINATES[positionPacket]?.[1] ?? prevState.lat, long: TRACK_COORDINATES[positionPacket]?.[0] ?? prevState.long, - }); + })); positionPacket++; if (positionPacket >= TRACK_COORDINATES.length) { positionPacket = 0; diff --git a/packages/client/src/components/containers/Plotly.tsx b/packages/client/src/components/containers/Plotly.tsx index fee933a9..c9e02c40 100644 --- a/packages/client/src/components/containers/Plotly.tsx +++ b/packages/client/src/components/containers/Plotly.tsx @@ -32,9 +32,11 @@ const Plotly = dynamic( useEffect(() => { let instance: Plotly.PlotlyHTMLElement | undefined; if (originRef.current) { - newPlot(originRef.current, data, layout, config).then((ref) => { - setHandle((instance = ref)); - }); + void newPlot(originRef.current, data, layout, config).then( + (ref) => { + setHandle((instance = ref)); + }, + ); } return () => { if (instance) { diff --git a/packages/client/src/components/global/AppStateEffectsManager.tsx b/packages/client/src/components/global/AppStateEffectsManager.tsx index b6b2ed5b..0673b9d4 100644 --- a/packages/client/src/components/global/AppStateEffectsManager.tsx +++ b/packages/client/src/components/global/AppStateEffectsManager.tsx @@ -2,7 +2,113 @@ import { useCallback, useEffect } from "react"; -import { CONNECTIONTYPES, useAppState } from "@/stores/useAppState"; +import { APPUNITS, CONNECTIONTYPES, useAppState } from "@/stores/useAppState"; + +type AppStateStore = ReturnType; +type AppState = AppStateStore extends { currentAppState: infer T } ? T : never; + +type SerializedPlaybackDateTime = { + date: string | null; + endTime: string | null; + startTime: string | null; +}; + +type PersistedSettings = Partial< + Pick & { + playbackDateTime: SerializedPlaybackDateTime | null; + } +>; + +const DEFAULT_FAVOURITES = [ + "Motor Temp", + "Battery Cell Voltage", + "Vehicle Velocity", + "Pack Voltage", + "Pack Current", + "Battery Average Voltage", +]; + +const isRecord = (value: unknown): value is Record => + typeof value === "object" && value !== null; + +const parseJson = (value: string): T | null => { + try { + return JSON.parse(value) as T; + } catch { + return null; + } +}; + +const parseFavourites = (value: string | null): string[] | null => { + if (!value) { + return null; + } + + const parsed = parseJson(value); + + if ( + Array.isArray(parsed) && + parsed.every((item) => typeof item === "string") + ) { + return parsed; + } + + return null; +}; + +const parseAppUnits = (value: unknown): AppState["appUnits"] | null => + Object.values(APPUNITS).includes(value as APPUNITS) + ? (value as AppState["appUnits"]) + : null; + +const parseConnectionType = ( + value: unknown, +): AppState["connectionType"] | null => + Object.values(CONNECTIONTYPES).includes(value as CONNECTIONTYPES) + ? (value as AppState["connectionType"]) + : null; + +const parseCoords = (value: unknown): AppState["lapCoords"] | null => { + if (!isRecord(value)) { + return null; + } + + const { lat, long } = value; + + if (typeof lat !== "number" || typeof long !== "number") { + return null; + } + + return { lat, long } as AppState["lapCoords"]; +}; + +const parseDateValue = (value: unknown): Date | null => { + if (typeof value !== "string") { + return null; + } + + const timestamp = Date.parse(value); + + return Number.isNaN(timestamp) ? null : new Date(timestamp); +}; + +const parsePlaybackDateTime = ( + value: unknown, +): AppState["playbackDateTime"] => { + if (!isRecord(value)) { + return { + date: null, + endTime: null, + startTime: null, + } as AppState["playbackDateTime"]; + } + + return { + date: parseDateValue(value.date), + endTime: parseDateValue(value.endTime), + startTime: parseDateValue(value.startTime), + } as AppState["playbackDateTime"]; +}; export default function AppStateEffects() { const { currentAppState, setCurrentAppState } = useAppState(); @@ -36,7 +142,6 @@ export default function AppStateEffects() { loading: !currentAppState.radioConnected, })); } - // eslint-disable-next-line react-hooks/exhaustive-deps }, [ currentAppState.socketConnected, currentAppState.radioConnected, @@ -56,49 +161,34 @@ export default function AppStateEffects() { const savedSettings = localStorage.getItem("settings"); const favourites = localStorage.getItem("favourites"); - if (savedSettings) { - const parsedSettings = JSON.parse(savedSettings); - - const parsedFavourites = favourites - ? (JSON.parse(favourites) as string[]) - : [ - "Motor Temp", - "Battery Cell Voltage", - "Vehicle Velocity", - "Pack Voltage", - "Pack Current", - "Battery Average Voltage", - ]; - - const hasPlaybackDateTime = !!parsedSettings.playbackDateTime; - - const parsedPlaybackDateTime = hasPlaybackDateTime - ? { - date: parsedSettings.playbackDateTime!.date - ? new Date(parsedSettings.playbackDateTime!.date) - : null, - endTime: parsedSettings.playbackDateTime!.endTime - ? new Date(parsedSettings.playbackDateTime!.endTime) - : null, - startTime: parsedSettings.playbackDateTime!.startTime - ? new Date(parsedSettings.playbackDateTime!.startTime) - : null, - } - : { - date: null, - endTime: null, - startTime: null, - }; + if (!savedSettings) { + return; + } - setCurrentAppState((prev) => ({ - ...prev, - appUnits: parsedSettings.appUnits ?? prev.appUnits, - connectionType: parsedSettings.connectionType ?? prev.connectionType, - favourites: parsedFavourites, - lapCoords: parsedSettings.lapCoords ?? prev.lapCoords, - playbackDateTime: parsedPlaybackDateTime, - })); + const parsedSettings = parseJson(savedSettings); + + if (!parsedSettings) { + return; } + + const parsedFavourites = parseFavourites(favourites) ?? DEFAULT_FAVOURITES; + const parsedPlaybackDateTime = parsePlaybackDateTime( + parsedSettings.playbackDateTime, + ); + const parsedAppUnits = parseAppUnits(parsedSettings.appUnits); + const parsedConnectionType = parseConnectionType( + parsedSettings.connectionType, + ); + const parsedLapCoords = parseCoords(parsedSettings.lapCoords); + + setCurrentAppState((prev) => ({ + ...prev, + appUnits: parsedAppUnits ?? prev.appUnits, + connectionType: parsedConnectionType ?? prev.connectionType, + favourites: parsedFavourites, + lapCoords: parsedLapCoords ?? prev.lapCoords, + playbackDateTime: parsedPlaybackDateTime, + })); }, [setCurrentAppState]); const saveSettingsToLocalStorage = useCallback(() => { diff --git a/packages/client/src/components/global/LapDataListenerManager.tsx b/packages/client/src/components/global/LapDataListenerManager.tsx index a71a806a..96107c3f 100644 --- a/packages/client/src/components/global/LapDataListenerManager.tsx +++ b/packages/client/src/components/global/LapDataListenerManager.tsx @@ -12,7 +12,7 @@ export function LapListenerManager(): React.ReactElement | null { // Fetch initial lap data when manager mounts useEffect(() => { - fetchLapData(); + void fetchLapData(); }, [fetchLapData]); // Handle connection type changes diff --git a/packages/client/src/components/molecules/LogoStatusMolecules/DataPickerMolecules/DatePickerColumn.tsx b/packages/client/src/components/molecules/LogoStatusMolecules/DataPickerMolecules/DatePickerColumn.tsx index e0b997a5..8ff021b6 100644 --- a/packages/client/src/components/molecules/LogoStatusMolecules/DataPickerMolecules/DatePickerColumn.tsx +++ b/packages/client/src/components/molecules/LogoStatusMolecules/DataPickerMolecules/DatePickerColumn.tsx @@ -30,7 +30,7 @@ const DataPickerColumn = ({ React.SetStateAction >; playbackDateTime: IPlaybackDateTime; - fetchPlaybackData: () => void; + fetchPlaybackData: () => Promise; }) => { const { setCurrentAppState } = useAppState(); @@ -79,7 +79,7 @@ const DataPickerColumn = ({ }, })); setConfirmedPlaybackDateTime(playbackDateTime); - fetchPlaybackData(); + void fetchPlaybackData(); }; // Handle TimeInput change to update startTime or endTime const handleTimeChange = ( diff --git a/packages/client/src/components/molecules/LogoStatusMolecules/PlaybackDatePicker.tsx b/packages/client/src/components/molecules/LogoStatusMolecules/PlaybackDatePicker.tsx index 2e6bcf2f..af49b08e 100644 --- a/packages/client/src/components/molecules/LogoStatusMolecules/PlaybackDatePicker.tsx +++ b/packages/client/src/components/molecules/LogoStatusMolecules/PlaybackDatePicker.tsx @@ -155,17 +155,22 @@ function PlaybackDatePicker() { } try { - const response = await axios.get(`${prodURL}/packetsBetween`, { - params: { endTime: endTimeUTC, startTime: startTimeUTC }, - }); + const response = await axios.get( + `${prodURL}/packetsBetween`, + { + params: { endTime: endTimeUTC, startTime: startTimeUTC }, + }, + ); - const extractedData: ITelemetryData[] = response.data.data.map( + const extractedData: ITelemetryData[] = response.data.map( (item: IPlaybackDataResponse) => item.data, ); setPlaybackData(extractedData); } catch (error) { - throw new Error(`Error fetching playback data: ${error}`); + throw new Error( + `Error fetching playback data: ${error instanceof Error ? error.message : String(error)}`, + ); } finally { setLoading(false); } @@ -178,7 +183,7 @@ function PlaybackDatePicker() { currentAppState.playbackDateTime?.date ) { setPlaybackDateTime(currentAppState.playbackDateTime); - fetchPlaybackData(); + void fetchPlaybackData(); } }, [currentAppState.playbackSwitch]); diff --git a/packages/client/src/components/molecules/LogoStatusMolecules/Settings/DriverNameUpdate.tsx b/packages/client/src/components/molecules/LogoStatusMolecules/Settings/DriverNameUpdate.tsx index 297601de..8119686f 100644 --- a/packages/client/src/components/molecules/LogoStatusMolecules/Settings/DriverNameUpdate.tsx +++ b/packages/client/src/components/molecules/LogoStatusMolecules/Settings/DriverNameUpdate.tsx @@ -1,4 +1,4 @@ -import axios from "axios"; +import axios, { AxiosResponse } from "axios"; import React, { useState } from "react"; import { sand } from "@/styles/colors"; @@ -81,7 +81,7 @@ export default function DriverUpdate() { if (validateInputs()) { if (await checkMQTTPassword()) { axios - .post(`${prodURL}/updatedriverinfo`, { + .post<{ message: string }>(`${prodURL}/updatedriverinfo`, { Rfid: driverDetails.Rfid, name: driverDetails.name, }) @@ -110,7 +110,10 @@ export default function DriverUpdate() {
-
+ void handleSubmit(e)} + > {Object.keys(driverDetailsText).map((key) => ( ; +}; + // this is for the demo mode when default tracks are shown in demo mode export type TrackList = { layerProps: LayerProps & Partial; - sourceProps: SourceProps & { - data: FeatureCollection; - }; + sourceProps: TrackSourceProps; trackName: string; }; if (!process.env.NEXT_PUBLIC_MAPSAPIKEY) diff --git a/packages/client/src/components/molecules/MapMolecules/MapControls.tsx b/packages/client/src/components/molecules/MapMolecules/MapControls.tsx index 4486ddf8..6f8bddd1 100644 --- a/packages/client/src/components/molecules/MapMolecules/MapControls.tsx +++ b/packages/client/src/components/molecules/MapMolecules/MapControls.tsx @@ -90,7 +90,7 @@ export default function MapControls({
- {trackList.map((track, index) => { + {trackList.map((track: TrackList, index) => { return ( ) : ( diff --git a/packages/client/src/components/tabs/RaceTab.tsx b/packages/client/src/components/tabs/RaceTab.tsx index 36e3dc6c..edc7dc46 100644 --- a/packages/client/src/components/tabs/RaceTab.tsx +++ b/packages/client/src/components/tabs/RaceTab.tsx @@ -9,7 +9,7 @@ import { useLapDataStore } from "@/stores/useLapData"; import { notifications } from "@mantine/notifications"; import { SelectChangeEvent } from "@mui/material/Select"; import { type IFormattedLapData, prodURL } from "@shared/helios-types"; -import { IDriverData } from "@shared/helios-types/src/types"; +import { IDriverData, ILapData } from "@shared/helios-types/src/types"; import { SortingState, getCoreRowModel, @@ -61,8 +61,8 @@ function RaceTab() { ); // copy rfid to clipboard - const handleCopy = () => { - navigator.clipboard.writeText(String(Rfid)); + const handleCopy = async () => { + await navigator.clipboard.writeText(String(Rfid)); setCopy(1); setTimeout(() => setCopy(0), 5000); onCopied(); @@ -88,7 +88,7 @@ function RaceTab() { setFilteredLaps(lapData); } else { await fetchFilteredLaps(Number(newRFID)).then((response) => { - const formattedData = response.data.map(formatLapData); + const formattedData = response.map(formatLapData); setFilteredLaps(formattedData); }); } @@ -99,7 +99,7 @@ function RaceTab() { // fetch the driver names from dynamo const fetchDriverNames = async () => { try { - const response = await axios.get(`${prodURL}/drivers`); + const response = await axios.get(`${prodURL}/drivers`); return response.data; } catch (error) { @@ -110,27 +110,35 @@ function RaceTab() { // get the driver laps based on the selected rfid const fetchFilteredLaps = async (Rfid: number) => { try { - const response = await axios.get(`${prodURL}/driver/${Rfid}`); + const response = await axios.get(`${prodURL}/driver/${Rfid}`); return response.data; } catch (error) { setFilteredLaps([]); - return { error: "Error fetching driver laps" }; + return []; } }; // fetching driver names when component mounts useEffect(() => { - fetchDriverNames() - .then((response) => { - const driverData = response.data.map((driver: IDriverData) => ({ + void (async (): Promise => { + try { + const response = await fetchDriverNames(); + + if (!Array.isArray(response)) { + setDriverData([]); + return; + } + + const driverData = response.map((driver: IDriverData) => ({ Rfid: driver.Rfid, driver: driver.driver, })); + setDriverData(driverData); - }) - .catch((error) => { - throw new Error(error); - }); + } catch (error) { + setDriverData([]); + } + })(); }, []); return ( diff --git a/packages/client/src/contexts/FullscreenWrapper.tsx b/packages/client/src/contexts/FullscreenWrapper.tsx index 3e8177dd..5413355e 100644 --- a/packages/client/src/contexts/FullscreenWrapper.tsx +++ b/packages/client/src/contexts/FullscreenWrapper.tsx @@ -42,9 +42,9 @@ const FullscreenWrapper = ({ return; } if (!document.fullscreenElement) { - elementReferenced.requestFullscreen(); + void elementReferenced.requestFullscreen(); } else { - document.exitFullscreen?.(); + void document.exitFullscreen?.(); } } diff --git a/packages/client/src/hooks/PIS/PIS.motor.tsx b/packages/client/src/hooks/PIS/PIS.motor.tsx index a9c4995c..99be9a62 100644 --- a/packages/client/src/hooks/PIS/PIS.motor.tsx +++ b/packages/client/src/hooks/PIS/PIS.motor.tsx @@ -1,4 +1,3 @@ -/* eslint-disable sort-keys */ import type I_PIS from "@/objects/PIS/PIS.interface"; import { type I_PISField } from "@/objects/PIS/PIS.interface"; import { UnitType } from "@/objects/PIS/PIS.interface"; diff --git a/packages/client/src/pages/api/checkMQTTPassword.ts b/packages/client/src/pages/api/checkMQTTPassword.ts index 0301b105..92ef958f 100644 --- a/packages/client/src/pages/api/checkMQTTPassword.ts +++ b/packages/client/src/pages/api/checkMQTTPassword.ts @@ -2,7 +2,10 @@ import { NextApiRequest, NextApiResponse } from "next"; export default function handler(req: NextApiRequest, res: NextApiResponse) { if (req.method === "POST") { - if (req.body.password === process.env.DRIVER_UPDATE_PASSWORD) { + if ( + (req.body as { password: string }).password === + process.env.DRIVER_UPDATE_PASSWORD + ) { res.status(200).send("Authorized"); } else { res.status(401).json({ error: "Unauthorized" }); diff --git a/packages/client/src/pages/api/getLapCorrelationMatrix.ts b/packages/client/src/pages/api/getLapCorrelationMatrix.ts index 22a15553..fc1ac8be 100644 --- a/packages/client/src/pages/api/getLapCorrelationMatrix.ts +++ b/packages/client/src/pages/api/getLapCorrelationMatrix.ts @@ -1,3 +1,4 @@ +import axios from "axios"; import type { NextApiRequest, NextApiResponse } from "next"; import { prodURL } from "@shared/helios-types"; @@ -9,16 +10,16 @@ export default async function handler( res: NextApiResponse, ) { try { - const result = await fetch(BACKEND_ROUTE); + // TODO: check to see if this is parsing correctly (json vs string) + const response = await axios.get(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", + if (!response.status || response.status !== 200) { + return res.status(response.status).json({ + error: "Failed to fetch correlation matrix data", }); } - const graph = await result.json(); + const graph = response.data; res.status(200).json(graph); } catch (err) { res.status(500).json({ diff --git a/packages/client/src/pages/api/getPacketCorrelationMatrix.ts b/packages/client/src/pages/api/getPacketCorrelationMatrix.ts index ebf07fa5..1b1bfbab 100644 --- a/packages/client/src/pages/api/getPacketCorrelationMatrix.ts +++ b/packages/client/src/pages/api/getPacketCorrelationMatrix.ts @@ -1,3 +1,4 @@ +import axios from "axios"; import type { NextApiRequest, NextApiResponse } from "next"; import { prodURL } from "@shared/helios-types"; @@ -9,16 +10,16 @@ export default async function handler( res: NextApiResponse, ) { try { - const result = await fetch(BACKEND_ROUTE); + // TODO: check to see if this is parsing correctly (json vs string) + const response = await axios.get(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", + if (!response.status || response.status !== 200) { + return res.status(response.status).json({ + error: "Failed to fetch correlation matrix data", }); } - const graph = await result.json(); + const graph = response.data; res.status(200).json(graph); } catch (err) { res.status(500).json({ diff --git a/packages/client/src/stores/useLapData.ts b/packages/client/src/stores/useLapData.ts index 4499b157..28362126 100644 --- a/packages/client/src/stores/useLapData.ts +++ b/packages/client/src/stores/useLapData.ts @@ -39,7 +39,7 @@ export const useLapDataStore = create((set) => ({ fetchLapData: async () => { try { - const response = await axios.get(`${prodURL}/laps`); + const response = await axios.get<{ data: ILapData[] }>(`${prodURL}/laps`); if (!Array.isArray(response.data?.data)) { throw new Error("Invalid API response format"); @@ -51,7 +51,7 @@ export const useLapDataStore = create((set) => ({ } catch (error) { notifications.show({ color: "red", - message: "Failed to fetch lap data from the server.", + message: `Failed to fetch lap data from the server: ${error instanceof Error ? error.message : "Unknown error"}`, title: "Error", }); } diff --git a/packages/client/src/types.d.ts b/packages/client/src/types.d.ts index c7e4d751..1eeb67bf 100644 --- a/packages/client/src/types.d.ts +++ b/packages/client/src/types.d.ts @@ -3,8 +3,7 @@ import { ThreeElements } from "@react-three/fiber"; declare global { namespace React { namespace JSX { - // eslint-disable-next-line @typescript-eslint/no-empty-object-type - interface IntrinsicElements extends ThreeElements {} + type IntrinsicElements = ThreeElements; } } } diff --git a/packages/client/tsconfig.json b/packages/client/tsconfig.json index 884e4ea4..759fd2a6 100644 --- a/packages/client/tsconfig.json +++ b/packages/client/tsconfig.json @@ -4,29 +4,12 @@ "checkJs": true, "baseUrl": ".", "paths": { - "plotly.js-dist-min": [ - "node_modules/@types/plotly.js" - ], - "@/*": [ - "./src/*", - "./public/*", - ], - "@/server/*": [ - "../server/src/*" - ] + "plotly.js-dist-min": ["node_modules/@types/plotly.js"], + "@/*": ["./src/*", "./public/*"], + "@/server/*": ["../server/src/*"] }, "jsx": "preserve" }, - "include": [ - ".eslintrc.cjs", - "next-env.d.ts", - "**/*.ts", - "**/*.tsx", - "**/*.cjs", - "**/*.mjs" - ], - "exclude": [ - "node_modules", - "tailwind.config.ts" - ] -} \ No newline at end of file + "include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", "**/*.cjs", "**/*.mjs"], + "exclude": ["node_modules", "tailwind.config.ts"] +} diff --git a/packages/server/.eslintrc.cjs b/packages/server/.eslintrc.cjs deleted file mode 100644 index b8c895f0..00000000 --- a/packages/server/.eslintrc.cjs +++ /dev/null @@ -1,14 +0,0 @@ -/** @type {import("eslint").Linter.Config} */ - -// eslint-disable-next-line @typescript-eslint/no-var-requires -const prettierConfig = require("./prettier.config.cjs"); - -const config = { - extends: ["../../.eslintrc.cjs"], - root: true, - rules: { - "prettier/prettier": ["error", prettierConfig], - }, -}; - -module.exports = config; diff --git a/packages/server/package.json b/packages/server/package.json index 88c76d9e..4e307f0d 100644 --- a/packages/server/package.json +++ b/packages/server/package.json @@ -29,32 +29,23 @@ "node-cache": "^5.1.2", "rimraf": "^5.0.5", "socket.io": "^4.7.5", - "ts-node": "^10.9.2", "tsconfig-paths": "^4.2.0", - "typescript": "^5.5.3" + "uuid": "^11.0.5" }, "devDependencies": { "@timescaledb/core": "^0.0.1", "@timescaledb/schemas": "^0.0.1", "@timescaledb/typeorm": "^0.0.1", "@trivago/prettier-plugin-sort-imports": "^4.3.0", - "@types/eslint": "^9.6.0", "@types/express": "^4.17.21", "@types/node": "^20.14.10", "@types/node-cache": "^4.1.3", "@types/prettier": "^3.0.0", "@types/sqlite3": "^3.1.11", - "@typescript-eslint/eslint-plugin": "^7.4.0", - "@typescript-eslint/parser": "^7.4.0", - "eslint": "8.57.0", - "eslint-config-prettier": "^9.1.0", - "eslint-plugin-prettier": "^5.2.1", - "eslint-plugin-promise": "^7.1.0", - "eslint-plugin-sort-destructure-keys": "^2.0.0", - "eslint-plugin-sort-keys": "^2.3.5", - "eslint-plugin-typescript-sort-keys": "^3.2.0", "globals": "^15.8.0", "nodemon": "^3.1.0", - "prettier": "^3.3.3" + "prettier": "^3.3.3", + "ts-node": "^10.9.2", + "typescript": "^5.5.3" } } diff --git a/packages/server/tsconfig.json b/packages/server/tsconfig.json index 44aacf94..3c47a79d 100644 --- a/packages/server/tsconfig.json +++ b/packages/server/tsconfig.json @@ -21,6 +21,6 @@ "jsx": "react-jsx", "resolveJsonModule": true }, - "include": [".eslintrc.cjs", "src/**/*", "**/*.cjs", "**/*.mjs"], + "include": ["src/**/*", "**/*.cjs", "**/*.mjs"], "exclude": ["dist", "../client"] } diff --git a/packages/shared/.eslintrc.cjs b/packages/shared/.eslintrc.cjs deleted file mode 100644 index 74e5fd23..00000000 --- a/packages/shared/.eslintrc.cjs +++ /dev/null @@ -1,7 +0,0 @@ -/** @type {import("eslint").Linter.Config} */ -const config = { - extends: ["../../.eslintrc.cjs"], - root: true, -}; - -module.exports = config; diff --git a/packages/shared/tsconfig.json b/packages/shared/tsconfig.json index c73eb1b2..be41f8f5 100644 --- a/packages/shared/tsconfig.json +++ b/packages/shared/tsconfig.json @@ -6,5 +6,5 @@ } }, "extends": "../../tsconfig.json", - "include": ["src", "index.ts", ".eslintrc.cjs"] + "include": ["src", "index.ts"] } diff --git a/test.ts b/test.ts deleted file mode 100644 index b4b716ce..00000000 --- a/test.ts +++ /dev/null @@ -1,5 +0,0 @@ -const test = () => { - (e) => { - console.log("Hello, world!"); - }; -}; diff --git a/tsconfig.json b/tsconfig.json index 0d16885d..7aabffcc 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -16,5 +16,5 @@ "incremental": true, "noUncheckedIndexedAccess": true }, - "include": [".eslintrc.cjs"] + "include": ["eslint.config.mjs"] } diff --git a/yarn.lock b/yarn.lock index d7ce4532..f7d62fd2 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" +"@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.723.0" - "@aws-sdk/middleware-host-header": "npm:3.723.0" - "@aws-sdk/middleware-logger": "npm:3.723.0" - "@aws-sdk/middleware-recursion-detection": "npm:3.723.0" - "@aws-sdk/middleware-user-agent": "npm:3.723.0" - "@aws-sdk/region-config-resolver": "npm:3.723.0" - "@aws-sdk/types": "npm:3.723.0" - "@aws-sdk/util-endpoints": "npm:3.723.0" - "@aws-sdk/util-user-agent-browser": "npm:3.723.0" - "@aws-sdk/util-user-agent-node": "npm:3.723.0" - "@smithy/config-resolver": "npm:^4.0.0" - "@smithy/core": "npm:^3.0.0" - "@smithy/fetch-http-handler": "npm:^5.0.0" - "@smithy/hash-node": "npm:^4.0.0" - "@smithy/invalid-dependency": "npm:^4.0.0" - "@smithy/middleware-content-length": "npm:^4.0.0" - "@smithy/middleware-endpoint": "npm:^4.0.0" - "@smithy/middleware-retry": "npm:^4.0.0" - "@smithy/middleware-serde": "npm:^4.0.0" - "@smithy/middleware-stack": "npm:^4.0.0" - "@smithy/node-config-provider": "npm:^4.0.0" - "@smithy/node-http-handler": "npm:^4.0.0" - "@smithy/protocol-http": "npm:^5.0.0" - "@smithy/smithy-client": "npm:^4.0.0" - "@smithy/types": "npm:^4.0.0" - "@smithy/url-parser": "npm:^4.0.0" - "@smithy/util-base64": "npm:^4.0.0" - "@smithy/util-body-length-browser": "npm:^4.0.0" - "@smithy/util-body-length-node": "npm:^4.0.0" - "@smithy/util-defaults-mode-browser": "npm:^4.0.0" - "@smithy/util-defaults-mode-node": "npm:^4.0.0" - "@smithy/util-endpoints": "npm:^3.0.0" - "@smithy/util-middleware": "npm:^4.0.0" - "@smithy/util-retry": "npm:^4.0.0" - "@smithy/util-utf8": "npm:^4.0.0" - tslib: "npm:^2.6.2" - checksum: 10c0/456c08e48723bdaeda383d72055c24265fad2e6cbd60a37a872d2dc5a3c9cbb7bfb2f2d585010ddc933bb5a046d8708d12cf15d34317d141f9440cb83687a87a - languageName: node - linkType: hard - -"@aws-sdk/client-sso@npm:3.980.0": - version: 3.980.0 - resolution: "@aws-sdk/client-sso@npm:3.980.0" - dependencies: - "@aws-crypto/sha256-browser": "npm:5.2.0" - "@aws-crypto/sha256-js": "npm:5.2.0" - "@aws-sdk/core": "npm:^3.973.5" + "@aws-sdk/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 @@ -3933,39 +3799,21 @@ __metadata: 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" - tslib: "npm:^2.6.2" - checksum: 10c0/407d1169a54246e3bb5ba839870fa5d2e10cd42b9780adc72d763201243d7d80576e2aa430793768e131c7637195e585c6696c153f013d99d25db3f16739762f - languageName: node - linkType: hard - -"@aws-sdk/credential-provider-http@npm:^3.972.5": - version: 3.972.5 - resolution: "@aws-sdk/credential-provider-http@npm:3.972.5" +"@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" +"@aws-sdk/token-providers@npm:3.985.0": + version: 3.985.0 + resolution: "@aws-sdk/token-providers@npm:3.985.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" - 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 @@ -5420,7 +5076,7 @@ __metadata: languageName: node linkType: hard -"@babel/core@npm:^7.14.0": +"@babel/core@npm:^7.14.0, @babel/core@npm:^7.24.4": version: 7.29.0 resolution: "@babel/core@npm:7.29.0" dependencies: @@ -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 @@ -5666,7 +5322,7 @@ __metadata: languageName: node linkType: hard -"@babel/parser@npm:^7.14.0, @babel/parser@npm:^7.20.5, @babel/parser@npm:^7.23.0, @babel/parser@npm:^7.28.6, @babel/parser@npm:^7.29.0": +"@babel/parser@npm:^7.14.0, @babel/parser@npm:^7.20.5, @babel/parser@npm:^7.23.0, @babel/parser@npm:^7.24.4, @babel/parser@npm:^7.28.6, @babel/parser@npm:^7.29.0": version: 7.29.0 resolution: "@babel/parser@npm:7.29.0" dependencies: @@ -6058,7 +5714,7 @@ __metadata: languageName: node linkType: hard -"@babel/types@npm:^7.0.0, @babel/types@npm:^7.17.0, @babel/types@npm:^7.23.0, @babel/types@npm:^7.24.7, @babel/types@npm:^7.27.1, @babel/types@npm:^7.27.3, @babel/types@npm:^7.28.5, @babel/types@npm:^7.28.6, @babel/types@npm:^7.29.0": +"@babel/types@npm:^7.0.0, @babel/types@npm:^7.17.0, @babel/types@npm:^7.23.0, @babel/types@npm:^7.24.7, @babel/types@npm:^7.26.0, @babel/types@npm:^7.27.1, @babel/types@npm:^7.27.3, @babel/types@npm:^7.28.5, @babel/types@npm:^7.28.6, @babel/types@npm:^7.29.0": version: 7.29.0 resolution: "@babel/types@npm:7.29.0" dependencies: @@ -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 @@ -6144,7 +5800,7 @@ __metadata: languageName: node linkType: hard -"@emnapi/core@npm:^1.1.0, @emnapi/core@npm:^1.4.3": +"@emnapi/core@npm:^1.1.0": version: 1.8.1 resolution: "@emnapi/core@npm:1.8.1" dependencies: @@ -6154,7 +5810,7 @@ __metadata: languageName: node linkType: hard -"@emnapi/runtime@npm:^1.1.0, @emnapi/runtime@npm:^1.2.0, @emnapi/runtime@npm:^1.4.3": +"@emnapi/runtime@npm:^1.1.0, @emnapi/runtime@npm:^1.7.0": version: 1.8.1 resolution: "@emnapi/runtime@npm:1.8.1" dependencies: @@ -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 @@ -6679,34 +6335,46 @@ __metadata: languageName: node linkType: hard -"@eslint-community/regexpp@npm:^4.10.0, @eslint-community/regexpp@npm:^4.12.2, @eslint-community/regexpp@npm:^4.6.1": +"@eslint-community/regexpp@npm:^4.12.2, @eslint-community/regexpp@npm:^4.6.1": version: 4.12.2 resolution: "@eslint-community/regexpp@npm:4.12.2" checksum: 10c0/fddcbc66851b308478d04e302a4d771d6917a0b3740dc351513c0da9ca2eab8a1adf99f5e0aa7ab8b13fa0df005c81adeee7e63a92f3effd7d367a163b721c2d languageName: node linkType: hard -"@eslint/eslintrc@npm:^2.1.4": - version: 2.1.4 - resolution: "@eslint/eslintrc@npm:2.1.4" +"@eslint/eslintrc@npm:^3.0.2": + version: 3.3.3 + resolution: "@eslint/eslintrc@npm:3.3.3" dependencies: ajv: "npm:^6.12.4" debug: "npm:^4.3.2" - espree: "npm:^9.6.0" - globals: "npm:^13.19.0" + espree: "npm:^10.0.1" + globals: "npm:^14.0.0" ignore: "npm:^5.2.0" import-fresh: "npm:^3.2.1" - js-yaml: "npm:^4.1.0" + js-yaml: "npm:^4.1.1" minimatch: "npm:^3.1.2" strip-json-comments: "npm:^3.1.1" - checksum: 10c0/32f67052b81768ae876c84569ffd562491ec5a5091b0c1e1ca1e0f3c24fb42f804952fdd0a137873bc64303ba368a71ba079a6f691cee25beee9722d94cc8573 + checksum: 10c0/532c7acc7ddd042724c28b1f020bd7bf148fcd4653bb44c8314168b5f772508c842ce4ee070299cac51c5c5757d2124bdcfcef5551c8c58ff9986e3e17f2260d + languageName: node + linkType: hard + +"@eslint/js@npm:9.0.0": + version: 9.0.0 + resolution: "@eslint/js@npm:9.0.0" + checksum: 10c0/ec3242a60a2525d2785d96d1e95b8060235f47f3b953aa81626968591ef8c1eb4f7f8b3647db2c97fdfa524eace949a5695be50521f64b8dcc4ed3b493ee409e languageName: node linkType: hard -"@eslint/js@npm:8.57.0": - version: 8.57.0 - resolution: "@eslint/js@npm:8.57.0" - checksum: 10c0/9a518bb8625ba3350613903a6d8c622352ab0c6557a59fe6ff6178bf882bf57123f9d92aa826ee8ac3ee74b9c6203fe630e9ee00efb03d753962dcf65ee4bd94 +"@eslint/js@npm:^10.0.1": + version: 10.0.1 + resolution: "@eslint/js@npm:10.0.1" + peerDependencies: + eslint: ^10.0.0 + peerDependenciesMeta: + eslint: + optional: true + checksum: 10c0/9f3fcaf71ba7fdf65d82e8faad6ecfe97e11801cc3c362b306a88ea1ed1344ae0d35330dddb0e8ad18f010f6687a70b75491b9e01c8af57acd7987cee6b3ec6c languageName: node linkType: hard @@ -7110,14 +6778,14 @@ __metadata: languageName: node linkType: hard -"@humanwhocodes/config-array@npm:^0.11.14": - version: 0.11.14 - resolution: "@humanwhocodes/config-array@npm:0.11.14" +"@humanwhocodes/config-array@npm:^0.12.3": + version: 0.12.3 + resolution: "@humanwhocodes/config-array@npm:0.12.3" dependencies: - "@humanwhocodes/object-schema": "npm:^2.0.2" + "@humanwhocodes/object-schema": "npm:^2.0.3" debug: "npm:^4.3.1" minimatch: "npm:^3.0.5" - checksum: 10c0/66f725b4ee5fdd8322c737cb5013e19fac72d4d69c8bf4b7feb192fcb83442b035b92186f8e9497c220e58b2d51a080f28a73f7899bc1ab288c3be172c467541 + checksum: 10c0/7a97f1414c63f353557ff8ad2987774cbcd3ed87525909cc845b629518dd74dc92cacf8ac8dc4161549a87441f8c64802ac530ce879ddcbf2551a53ba73d03d1 languageName: node linkType: hard @@ -7128,7 +6796,7 @@ __metadata: languageName: node linkType: hard -"@humanwhocodes/object-schema@npm:^2.0.2": +"@humanwhocodes/object-schema@npm:^2.0.3": version: 2.0.3 resolution: "@humanwhocodes/object-schema@npm:2.0.3" checksum: 10c0/80520eabbfc2d32fe195a93557cef50dfe8c8905de447f022675aaf66abc33ae54098f5ea78548d925aa671cd4ab7c7daa5ad704fe42358c9b5e7db60f80696c @@ -7142,11 +6810,18 @@ __metadata: languageName: node linkType: hard -"@img/sharp-darwin-arm64@npm:0.33.5": - version: 0.33.5 - resolution: "@img/sharp-darwin-arm64@npm:0.33.5" +"@img/colour@npm:^1.0.0": + version: 1.0.0 + resolution: "@img/colour@npm:1.0.0" + checksum: 10c0/02261719c1e0d7aa5a2d585981954f2ac126f0c432400aa1a01b925aa2c41417b7695da8544ee04fd29eba7ecea8eaf9b8bef06f19dc8faba78f94eeac40667d + languageName: node + linkType: hard + +"@img/sharp-darwin-arm64@npm:0.34.5": + version: 0.34.5 + resolution: "@img/sharp-darwin-arm64@npm:0.34.5" dependencies: - "@img/sharp-libvips-darwin-arm64": "npm:1.0.4" + "@img/sharp-libvips-darwin-arm64": "npm:1.2.4" dependenciesMeta: "@img/sharp-libvips-darwin-arm64": optional: true @@ -7154,11 +6829,11 @@ __metadata: languageName: node linkType: hard -"@img/sharp-darwin-x64@npm:0.33.5": - version: 0.33.5 - resolution: "@img/sharp-darwin-x64@npm:0.33.5" +"@img/sharp-darwin-x64@npm:0.34.5": + version: 0.34.5 + resolution: "@img/sharp-darwin-x64@npm:0.34.5" dependencies: - "@img/sharp-libvips-darwin-x64": "npm:1.0.4" + "@img/sharp-libvips-darwin-x64": "npm:1.2.4" dependenciesMeta: "@img/sharp-libvips-darwin-x64": optional: true @@ -7166,67 +6841,81 @@ __metadata: languageName: node linkType: hard -"@img/sharp-libvips-darwin-arm64@npm:1.0.4": - version: 1.0.4 - resolution: "@img/sharp-libvips-darwin-arm64@npm:1.0.4" +"@img/sharp-libvips-darwin-arm64@npm:1.2.4": + version: 1.2.4 + resolution: "@img/sharp-libvips-darwin-arm64@npm:1.2.4" conditions: os=darwin & cpu=arm64 languageName: node linkType: hard -"@img/sharp-libvips-darwin-x64@npm:1.0.4": - version: 1.0.4 - resolution: "@img/sharp-libvips-darwin-x64@npm:1.0.4" +"@img/sharp-libvips-darwin-x64@npm:1.2.4": + version: 1.2.4 + resolution: "@img/sharp-libvips-darwin-x64@npm:1.2.4" conditions: os=darwin & cpu=x64 languageName: node linkType: hard -"@img/sharp-libvips-linux-arm64@npm:1.0.4": - version: 1.0.4 - resolution: "@img/sharp-libvips-linux-arm64@npm:1.0.4" +"@img/sharp-libvips-linux-arm64@npm:1.2.4": + version: 1.2.4 + resolution: "@img/sharp-libvips-linux-arm64@npm:1.2.4" conditions: os=linux & cpu=arm64 & libc=glibc languageName: node linkType: hard -"@img/sharp-libvips-linux-arm@npm:1.0.5": - version: 1.0.5 - resolution: "@img/sharp-libvips-linux-arm@npm:1.0.5" +"@img/sharp-libvips-linux-arm@npm:1.2.4": + version: 1.2.4 + resolution: "@img/sharp-libvips-linux-arm@npm:1.2.4" conditions: os=linux & cpu=arm & libc=glibc languageName: node linkType: hard -"@img/sharp-libvips-linux-s390x@npm:1.0.4": - version: 1.0.4 - resolution: "@img/sharp-libvips-linux-s390x@npm:1.0.4" +"@img/sharp-libvips-linux-ppc64@npm:1.2.4": + version: 1.2.4 + resolution: "@img/sharp-libvips-linux-ppc64@npm:1.2.4" + conditions: os=linux & cpu=ppc64 & libc=glibc + languageName: node + linkType: hard + +"@img/sharp-libvips-linux-riscv64@npm:1.2.4": + version: 1.2.4 + resolution: "@img/sharp-libvips-linux-riscv64@npm:1.2.4" + conditions: os=linux & cpu=riscv64 & libc=glibc + languageName: node + linkType: hard + +"@img/sharp-libvips-linux-s390x@npm:1.2.4": + version: 1.2.4 + resolution: "@img/sharp-libvips-linux-s390x@npm:1.2.4" conditions: os=linux & cpu=s390x & libc=glibc languageName: node linkType: hard -"@img/sharp-libvips-linux-x64@npm:1.0.4": - version: 1.0.4 - resolution: "@img/sharp-libvips-linux-x64@npm:1.0.4" +"@img/sharp-libvips-linux-x64@npm:1.2.4": + version: 1.2.4 + resolution: "@img/sharp-libvips-linux-x64@npm:1.2.4" conditions: os=linux & cpu=x64 & libc=glibc languageName: node linkType: hard -"@img/sharp-libvips-linuxmusl-arm64@npm:1.0.4": - version: 1.0.4 - resolution: "@img/sharp-libvips-linuxmusl-arm64@npm:1.0.4" +"@img/sharp-libvips-linuxmusl-arm64@npm:1.2.4": + version: 1.2.4 + resolution: "@img/sharp-libvips-linuxmusl-arm64@npm:1.2.4" conditions: os=linux & cpu=arm64 & libc=musl languageName: node linkType: hard -"@img/sharp-libvips-linuxmusl-x64@npm:1.0.4": - version: 1.0.4 - resolution: "@img/sharp-libvips-linuxmusl-x64@npm:1.0.4" +"@img/sharp-libvips-linuxmusl-x64@npm:1.2.4": + version: 1.2.4 + resolution: "@img/sharp-libvips-linuxmusl-x64@npm:1.2.4" conditions: os=linux & cpu=x64 & libc=musl languageName: node linkType: hard -"@img/sharp-linux-arm64@npm:0.33.5": - version: 0.33.5 - resolution: "@img/sharp-linux-arm64@npm:0.33.5" +"@img/sharp-linux-arm64@npm:0.34.5": + version: 0.34.5 + resolution: "@img/sharp-linux-arm64@npm:0.34.5" dependencies: - "@img/sharp-libvips-linux-arm64": "npm:1.0.4" + "@img/sharp-libvips-linux-arm64": "npm:1.2.4" dependenciesMeta: "@img/sharp-libvips-linux-arm64": optional: true @@ -7234,11 +6923,11 @@ __metadata: languageName: node linkType: hard -"@img/sharp-linux-arm@npm:0.33.5": - version: 0.33.5 - resolution: "@img/sharp-linux-arm@npm:0.33.5" +"@img/sharp-linux-arm@npm:0.34.5": + version: 0.34.5 + resolution: "@img/sharp-linux-arm@npm:0.34.5" dependencies: - "@img/sharp-libvips-linux-arm": "npm:1.0.5" + "@img/sharp-libvips-linux-arm": "npm:1.2.4" dependenciesMeta: "@img/sharp-libvips-linux-arm": optional: true @@ -7246,11 +6935,35 @@ __metadata: languageName: node linkType: hard -"@img/sharp-linux-s390x@npm:0.33.5": - version: 0.33.5 - resolution: "@img/sharp-linux-s390x@npm:0.33.5" +"@img/sharp-linux-ppc64@npm:0.34.5": + version: 0.34.5 + resolution: "@img/sharp-linux-ppc64@npm:0.34.5" + dependencies: + "@img/sharp-libvips-linux-ppc64": "npm:1.2.4" + dependenciesMeta: + "@img/sharp-libvips-linux-ppc64": + optional: true + conditions: os=linux & cpu=ppc64 & libc=glibc + languageName: node + linkType: hard + +"@img/sharp-linux-riscv64@npm:0.34.5": + version: 0.34.5 + resolution: "@img/sharp-linux-riscv64@npm:0.34.5" + dependencies: + "@img/sharp-libvips-linux-riscv64": "npm:1.2.4" + dependenciesMeta: + "@img/sharp-libvips-linux-riscv64": + optional: true + conditions: os=linux & cpu=riscv64 & libc=glibc + languageName: node + linkType: hard + +"@img/sharp-linux-s390x@npm:0.34.5": + version: 0.34.5 + resolution: "@img/sharp-linux-s390x@npm:0.34.5" dependencies: - "@img/sharp-libvips-linux-s390x": "npm:1.0.4" + "@img/sharp-libvips-linux-s390x": "npm:1.2.4" dependenciesMeta: "@img/sharp-libvips-linux-s390x": optional: true @@ -7258,11 +6971,11 @@ __metadata: languageName: node linkType: hard -"@img/sharp-linux-x64@npm:0.33.5": - version: 0.33.5 - resolution: "@img/sharp-linux-x64@npm:0.33.5" +"@img/sharp-linux-x64@npm:0.34.5": + version: 0.34.5 + resolution: "@img/sharp-linux-x64@npm:0.34.5" dependencies: - "@img/sharp-libvips-linux-x64": "npm:1.0.4" + "@img/sharp-libvips-linux-x64": "npm:1.2.4" dependenciesMeta: "@img/sharp-libvips-linux-x64": optional: true @@ -7270,11 +6983,11 @@ __metadata: languageName: node linkType: hard -"@img/sharp-linuxmusl-arm64@npm:0.33.5": - version: 0.33.5 - resolution: "@img/sharp-linuxmusl-arm64@npm:0.33.5" +"@img/sharp-linuxmusl-arm64@npm:0.34.5": + version: 0.34.5 + resolution: "@img/sharp-linuxmusl-arm64@npm:0.34.5" dependencies: - "@img/sharp-libvips-linuxmusl-arm64": "npm:1.0.4" + "@img/sharp-libvips-linuxmusl-arm64": "npm:1.2.4" dependenciesMeta: "@img/sharp-libvips-linuxmusl-arm64": optional: true @@ -7282,11 +6995,11 @@ __metadata: languageName: node linkType: hard -"@img/sharp-linuxmusl-x64@npm:0.33.5": - version: 0.33.5 - resolution: "@img/sharp-linuxmusl-x64@npm:0.33.5" +"@img/sharp-linuxmusl-x64@npm:0.34.5": + version: 0.34.5 + resolution: "@img/sharp-linuxmusl-x64@npm:0.34.5" dependencies: - "@img/sharp-libvips-linuxmusl-x64": "npm:1.0.4" + "@img/sharp-libvips-linuxmusl-x64": "npm:1.2.4" dependenciesMeta: "@img/sharp-libvips-linuxmusl-x64": optional: true @@ -7294,25 +7007,32 @@ __metadata: languageName: node linkType: hard -"@img/sharp-wasm32@npm:0.33.5": - version: 0.33.5 - resolution: "@img/sharp-wasm32@npm:0.33.5" +"@img/sharp-wasm32@npm:0.34.5": + version: 0.34.5 + resolution: "@img/sharp-wasm32@npm:0.34.5" dependencies: - "@emnapi/runtime": "npm:^1.2.0" + "@emnapi/runtime": "npm:^1.7.0" conditions: cpu=wasm32 languageName: node linkType: hard -"@img/sharp-win32-ia32@npm:0.33.5": - version: 0.33.5 - resolution: "@img/sharp-win32-ia32@npm:0.33.5" +"@img/sharp-win32-arm64@npm:0.34.5": + version: 0.34.5 + resolution: "@img/sharp-win32-arm64@npm:0.34.5" + conditions: os=win32 & cpu=arm64 + languageName: node + linkType: hard + +"@img/sharp-win32-ia32@npm:0.34.5": + version: 0.34.5 + resolution: "@img/sharp-win32-ia32@npm:0.34.5" conditions: os=win32 & cpu=ia32 languageName: node linkType: hard -"@img/sharp-win32-x64@npm:0.33.5": - version: 0.33.5 - resolution: "@img/sharp-win32-x64@npm:0.33.5" +"@img/sharp-win32-x64@npm:0.34.5": + version: 0.34.5 + resolution: "@img/sharp-win32-x64@npm:0.34.5" conditions: os=win32 & cpu=x64 languageName: node linkType: hard @@ -7482,12 +7202,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 +7225,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" @@ -7701,21 +7428,6 @@ __metadata: languageName: node linkType: hard -"@mantine/dates@npm:^8.0.1": - version: 8.3.13 - resolution: "@mantine/dates@npm:8.3.13" - dependencies: - clsx: "npm:^2.1.1" - peerDependencies: - "@mantine/core": 8.3.13 - "@mantine/hooks": 8.3.13 - dayjs: ">=1.0.0" - react: ^18.x || ^19.x - react-dom: ^18.x || ^19.x - checksum: 10c0/c20f7ce33ff701c845851cb5870889e544efb6c3f7eed5ce33279986414055932dbdef289afadfb20cfb6e41e612d9c0a07a3cd4699e625c2ee22b7bc740403c - languageName: node - linkType: hard - "@mantine/hooks@npm:^7.17.0": version: 7.17.8 resolution: "@mantine/hooks@npm:7.17.8" @@ -8004,85 +7716,74 @@ __metadata: languageName: node linkType: hard -"@napi-rs/wasm-runtime@npm:^0.2.11": - version: 0.2.12 - resolution: "@napi-rs/wasm-runtime@npm:0.2.12" - dependencies: - "@emnapi/core": "npm:^1.4.3" - "@emnapi/runtime": "npm:^1.4.3" - "@tybys/wasm-util": "npm:^0.10.0" - checksum: 10c0/6d07922c0613aab30c6a497f4df297ca7c54e5b480e00035e0209b872d5c6aab7162fc49477267556109c2c7ed1eb9c65a174e27e9b87568106a87b0a6e3ca7d - languageName: node - linkType: hard - -"@next/env@npm:15.1.4": - version: 15.1.4 - resolution: "@next/env@npm:15.1.4" - checksum: 10c0/88b8e81f97b49abdad40c7ebe5be93b0387d6c138a5c66cc1dce3a9db9d4eac8e258a1b617544ee23085111b5cdc6d5206389596e18c3370ff74cb54e60966f5 +"@next/env@npm:16.1.6": + version: 16.1.6 + resolution: "@next/env@npm:16.1.6" + checksum: 10c0/ed7023edb94b9b2e5da3f9c99d08b614da9757c1edd0ecec792fce4d336b4f0c64db1a84955e07cfbd848b9e61c4118fff28f4098cd7b0a7f97814a90565ebe6 languageName: node linkType: hard -"@next/eslint-plugin-next@npm:15.1.4": - version: 15.1.4 - resolution: "@next/eslint-plugin-next@npm:15.1.4" +"@next/eslint-plugin-next@npm:^16.1.6": + version: 16.1.6 + resolution: "@next/eslint-plugin-next@npm:16.1.6" dependencies: fast-glob: "npm:3.3.1" - checksum: 10c0/6b5356275027e7b597914aa410805dab6b988c81c7ec0855e829e967d0064b9512828efc5d3b8826b798b30f1494618c82c5067c36d6d7837071ed670d690eab + checksum: 10c0/1498ded3421326738411eb11e794a5ef6aa01daeff0d89a12d05f360984527ccce2cc9588cc11477ee0e4b09a7570a640e7b6ff79ee3eb49c8cf0fc6b105a24b languageName: node linkType: hard -"@next/swc-darwin-arm64@npm:15.1.4": - version: 15.1.4 - resolution: "@next/swc-darwin-arm64@npm:15.1.4" +"@next/swc-darwin-arm64@npm:16.1.6": + version: 16.1.6 + resolution: "@next/swc-darwin-arm64@npm:16.1.6" conditions: os=darwin & cpu=arm64 languageName: node linkType: hard -"@next/swc-darwin-x64@npm:15.1.4": - version: 15.1.4 - resolution: "@next/swc-darwin-x64@npm:15.1.4" +"@next/swc-darwin-x64@npm:16.1.6": + version: 16.1.6 + resolution: "@next/swc-darwin-x64@npm:16.1.6" conditions: os=darwin & cpu=x64 languageName: node linkType: hard -"@next/swc-linux-arm64-gnu@npm:15.1.4": - version: 15.1.4 - resolution: "@next/swc-linux-arm64-gnu@npm:15.1.4" +"@next/swc-linux-arm64-gnu@npm:16.1.6": + version: 16.1.6 + resolution: "@next/swc-linux-arm64-gnu@npm:16.1.6" conditions: os=linux & cpu=arm64 & libc=glibc languageName: node linkType: hard -"@next/swc-linux-arm64-musl@npm:15.1.4": - version: 15.1.4 - resolution: "@next/swc-linux-arm64-musl@npm:15.1.4" +"@next/swc-linux-arm64-musl@npm:16.1.6": + version: 16.1.6 + resolution: "@next/swc-linux-arm64-musl@npm:16.1.6" conditions: os=linux & cpu=arm64 & libc=musl languageName: node linkType: hard -"@next/swc-linux-x64-gnu@npm:15.1.4": - version: 15.1.4 - resolution: "@next/swc-linux-x64-gnu@npm:15.1.4" +"@next/swc-linux-x64-gnu@npm:16.1.6": + version: 16.1.6 + resolution: "@next/swc-linux-x64-gnu@npm:16.1.6" conditions: os=linux & cpu=x64 & libc=glibc languageName: node linkType: hard -"@next/swc-linux-x64-musl@npm:15.1.4": - version: 15.1.4 - resolution: "@next/swc-linux-x64-musl@npm:15.1.4" +"@next/swc-linux-x64-musl@npm:16.1.6": + version: 16.1.6 + resolution: "@next/swc-linux-x64-musl@npm:16.1.6" conditions: os=linux & cpu=x64 & libc=musl languageName: node linkType: hard -"@next/swc-win32-arm64-msvc@npm:15.1.4": - version: 15.1.4 - resolution: "@next/swc-win32-arm64-msvc@npm:15.1.4" +"@next/swc-win32-arm64-msvc@npm:16.1.6": + version: 16.1.6 + resolution: "@next/swc-win32-arm64-msvc@npm:16.1.6" conditions: os=win32 & cpu=arm64 languageName: node linkType: hard -"@next/swc-win32-x64-msvc@npm:15.1.4": - version: 15.1.4 - resolution: "@next/swc-win32-x64-msvc@npm:15.1.4" +"@next/swc-win32-x64-msvc@npm:16.1.6": + version: 16.1.6 + resolution: "@next/swc-win32-x64-msvc@npm:16.1.6" conditions: os=win32 & cpu=x64 languageName: node linkType: hard @@ -8114,13 +7815,6 @@ __metadata: languageName: node linkType: hard -"@nolyfill/is-core-module@npm:1.0.39": - version: 1.0.39 - resolution: "@nolyfill/is-core-module@npm:1.0.39" - checksum: 10c0/34ab85fdc2e0250879518841f74a30c276bca4f6c3e13526d2d1fe515e1adf6d46c25fcd5989d22ea056d76f7c39210945180b4859fc83b050e2da411aa86289 - languageName: node - linkType: hard - "@npmcli/agent@npm:^2.0.0": version: 2.2.2 resolution: "@npmcli/agent@npm:2.2.2" @@ -9169,13 +8863,6 @@ __metadata: languageName: node linkType: hard -"@rushstack/eslint-patch@npm:^1.10.3": - version: 1.15.0 - resolution: "@rushstack/eslint-patch@npm:1.15.0" - checksum: 10c0/b2aeae0c6228981c40eff7a3cf9fc1c4342f8fc7a0102d8b2b3d3f66137461b1cd2e3c22d9aa6bcde43f227c5e4e698be33ac145d356797774f212da496c0e9c - languageName: node - linkType: hard - "@sec-ant/readable-stream@npm:^0.4.1": version: 0.4.1 resolution: "@sec-ant/readable-stream@npm:0.4.1" @@ -9254,9 +8941,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 +9029,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 +9059,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 +9069,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 +9103,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 +9151,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 +9172,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 +9193,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 +9265,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 +9314,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 +9357,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 +9438,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 +9480,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 +9492,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 +9530,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 +9567,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 +9598,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 +9632,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 +9670,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 +9703,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 +9733,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 +9853,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 +9894,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 +9939,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 +9972,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 +10003,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 +10036,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 +10065,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 +10092,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 +10149,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 +10184,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 +10226,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 +10263,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 +10330,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 +10362,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 +10405,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 +10478,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 +10488,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: @@ -10842,13 +10529,6 @@ __metadata: languageName: node linkType: hard -"@swc/counter@npm:0.1.3": - version: 0.1.3 - resolution: "@swc/counter@npm:0.1.3" - checksum: 10c0/8424f60f6bf8694cfd2a9bca45845bce29f26105cda8cf19cdb9fd3e78dc6338699e4db77a89ae449260bafa1cc6bec307e81e7fb96dbf7dcfce0eea55151356 - languageName: node - linkType: hard - "@swc/helpers@npm:0.5.15": version: 0.5.15 resolution: "@swc/helpers@npm:0.5.15" @@ -10998,15 +10678,6 @@ __metadata: languageName: node linkType: hard -"@tybys/wasm-util@npm:^0.10.0": - version: 0.10.1 - resolution: "@tybys/wasm-util@npm:0.10.1" - dependencies: - tslib: "npm:^2.4.0" - checksum: 10c0/b255094f293794c6d2289300c5fbcafbb5532a3aed3a5ffd2f8dc1828e639b88d75f6a376dd8f94347a44813fd7a7149d8463477a9a49525c8b2dcaa38c2d1e8 - languageName: node - linkType: hard - "@tybys/wasm-util@npm:^0.9.0": version: 0.9.0 resolution: "@tybys/wasm-util@npm:0.9.0" @@ -11058,16 +10729,6 @@ __metadata: languageName: node linkType: hard -"@types/eslint@npm:^8.56.10": - version: 8.56.12 - resolution: "@types/eslint@npm:8.56.12" - dependencies: - "@types/estree": "npm:*" - "@types/json-schema": "npm:*" - checksum: 10c0/e4ca426abe9d55f82b69a3250bec78b6d340ad1e567f91c97ecc59d3b2d6a1d8494955ac62ad0ea14b97519db580611c02be8277cbea370bdfb0f96aa2910504 - languageName: node - linkType: hard - "@types/eslint@npm:^9.6.0": version: 9.6.1 resolution: "@types/eslint@npm:9.6.1" @@ -11139,7 +10800,7 @@ __metadata: languageName: node linkType: hard -"@types/json-schema@npm:*, @types/json-schema@npm:^7.0.15, @types/json-schema@npm:^7.0.9": +"@types/json-schema@npm:*, @types/json-schema@npm:^7.0.15": version: 7.0.15 resolution: "@types/json-schema@npm:7.0.15" checksum: 10c0/a996a745e6c5d60292f36731dd41341339d4eeed8180bb09226e5c8d23759067692b1d88e5d91d72ee83dfc00d3aca8e7bd43ea120516c17922cbcb7c3e252db @@ -11216,20 +10877,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 @@ -11318,12 +10979,12 @@ __metadata: languageName: node linkType: hard -"@types/react-dom@npm:19.0.3": - version: 19.0.3 - resolution: "@types/react-dom@npm:19.0.3" +"@types/react-dom@npm:19.2.3": + version: 19.2.3 + resolution: "@types/react-dom@npm:19.2.3" peerDependencies: - "@types/react": ^19.0.0 - checksum: 10c0/3867427b333cbe8cbba496d7cc20ec9676d32c25ae44f4d1263a4129d42e57cf4adf0039ad263432f1215b88075c27d326e7eb4ed646128235d01a76e661d48f + "@types/react": ^19.2.0 + checksum: 10c0/b486ebe0f4e2fb35e2e108df1d8fc0927ca5d6002d5771e8a739de11239fe62d0e207c50886185253c99eb9dedfeeb956ea7429e5ba17f6693c7acb4c02f8cd1 languageName: node linkType: hard @@ -11356,20 +11017,20 @@ __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 -"@types/react@npm:19.0.7": - version: 19.0.7 - resolution: "@types/react@npm:19.0.7" +"@types/react@npm:19.2.10": + version: 19.2.10 + resolution: "@types/react@npm:19.2.10" dependencies: - csstype: "npm:^3.0.2" - checksum: 10c0/818e546fa03a2a65ac2652fc472891ac96684211e8967bc25e1da6a8a09e2301ad972b1b038d128f8b4cbbd7691f6f57fee274db568169e9b6b01556abbb5bee + csstype: "npm:^3.2.2" + checksum: 10c0/17b96203a79ad3fa3cee8f1f1f324b93f005bc125755e29ac149402807275feaf3f00a4e65b8405f633923ac993da5737fd9800d27ee49911f3ed51dc27478f9 languageName: node linkType: hard @@ -11382,13 +11043,6 @@ __metadata: languageName: node linkType: hard -"@types/semver@npm:^7.3.12": - version: 7.7.1 - resolution: "@types/semver@npm:7.7.1" - checksum: 10c0/c938aef3bf79a73f0f3f6037c16e2e759ff40c54122ddf0b2583703393d8d3127130823facb880e694caa324eb6845628186aac1997ee8b31dc2d18fafe26268 - languageName: node - linkType: hard - "@types/send@npm:*": version: 1.2.1 resolution: "@types/send@npm:1.2.1" @@ -11508,7 +11162,7 @@ __metadata: languageName: node linkType: hard -"@typescript-eslint/eslint-plugin@npm:^5.4.2 || ^6.0.0 || ^7.0.0 || ^8.0.0": +"@typescript-eslint/eslint-plugin@npm:8.54.0": version: 8.54.0 resolution: "@typescript-eslint/eslint-plugin@npm:8.54.0" dependencies: @@ -11528,41 +11182,7 @@ __metadata: languageName: node linkType: hard -"@typescript-eslint/eslint-plugin@npm:^7.16.0, @typescript-eslint/eslint-plugin@npm:^7.4.0": - version: 7.18.0 - resolution: "@typescript-eslint/eslint-plugin@npm:7.18.0" - dependencies: - "@eslint-community/regexpp": "npm:^4.10.0" - "@typescript-eslint/scope-manager": "npm:7.18.0" - "@typescript-eslint/type-utils": "npm:7.18.0" - "@typescript-eslint/utils": "npm:7.18.0" - "@typescript-eslint/visitor-keys": "npm:7.18.0" - graphemer: "npm:^1.4.0" - ignore: "npm:^5.3.1" - natural-compare: "npm:^1.4.0" - ts-api-utils: "npm:^1.3.0" - peerDependencies: - "@typescript-eslint/parser": ^7.0.0 - eslint: ^8.56.0 - peerDependenciesMeta: - typescript: - optional: true - checksum: 10c0/2b37948fa1b0dab77138909dabef242a4d49ab93e4019d4ef930626f0a7d96b03e696cd027fa0087881c20e73be7be77c942606b4a76fa599e6b37f6985304c3 - languageName: node - linkType: hard - -"@typescript-eslint/experimental-utils@npm:^5.0.0": - version: 5.62.0 - resolution: "@typescript-eslint/experimental-utils@npm:5.62.0" - dependencies: - "@typescript-eslint/utils": "npm:5.62.0" - peerDependencies: - eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 - checksum: 10c0/f7037977e00849cd8c03677a88b0659a4f0e0b1e0151aebb47c49c92b8e57408578142df598eac08b364623d926343c724f42494f87662e437b1c89f0b2e815b - languageName: node - linkType: hard - -"@typescript-eslint/parser@npm:^5.4.2 || ^6.0.0 || ^7.0.0 || ^8.0.0": +"@typescript-eslint/parser@npm:8.54.0": version: 8.54.0 resolution: "@typescript-eslint/parser@npm:8.54.0" dependencies: @@ -11578,24 +11198,6 @@ __metadata: languageName: node linkType: hard -"@typescript-eslint/parser@npm:^7.16.0, @typescript-eslint/parser@npm:^7.4.0": - version: 7.18.0 - resolution: "@typescript-eslint/parser@npm:7.18.0" - dependencies: - "@typescript-eslint/scope-manager": "npm:7.18.0" - "@typescript-eslint/types": "npm:7.18.0" - "@typescript-eslint/typescript-estree": "npm:7.18.0" - "@typescript-eslint/visitor-keys": "npm:7.18.0" - debug: "npm:^4.3.4" - peerDependencies: - eslint: ^8.56.0 - peerDependenciesMeta: - typescript: - optional: true - checksum: 10c0/370e73fca4278091bc1b657f85e7d74cd52b24257ea20c927a8e17546107ce04fbf313fec99aed0cc2a145ddbae1d3b12e9cc2c1320117636dc1281bcfd08059 - languageName: node - linkType: hard - "@typescript-eslint/project-service@npm:8.54.0": version: 8.54.0 resolution: "@typescript-eslint/project-service@npm:8.54.0" @@ -11609,26 +11211,6 @@ __metadata: languageName: node linkType: hard -"@typescript-eslint/scope-manager@npm:5.62.0": - version: 5.62.0 - resolution: "@typescript-eslint/scope-manager@npm:5.62.0" - dependencies: - "@typescript-eslint/types": "npm:5.62.0" - "@typescript-eslint/visitor-keys": "npm:5.62.0" - checksum: 10c0/861253235576c1c5c1772d23cdce1418c2da2618a479a7de4f6114a12a7ca853011a1e530525d0931c355a8fd237b9cd828fac560f85f9623e24054fd024726f - languageName: node - linkType: hard - -"@typescript-eslint/scope-manager@npm:7.18.0": - version: 7.18.0 - resolution: "@typescript-eslint/scope-manager@npm:7.18.0" - dependencies: - "@typescript-eslint/types": "npm:7.18.0" - "@typescript-eslint/visitor-keys": "npm:7.18.0" - checksum: 10c0/038cd58c2271de146b3a594afe2c99290034033326d57ff1f902976022c8b0138ffd3cb893ae439ae41003b5e4bcc00cabf6b244ce40e8668f9412cc96d97b8e - languageName: node - linkType: hard - "@typescript-eslint/scope-manager@npm:8.54.0": version: 8.54.0 resolution: "@typescript-eslint/scope-manager@npm:8.54.0" @@ -11648,23 +11230,6 @@ __metadata: languageName: node linkType: hard -"@typescript-eslint/type-utils@npm:7.18.0": - version: 7.18.0 - resolution: "@typescript-eslint/type-utils@npm:7.18.0" - dependencies: - "@typescript-eslint/typescript-estree": "npm:7.18.0" - "@typescript-eslint/utils": "npm:7.18.0" - debug: "npm:^4.3.4" - ts-api-utils: "npm:^1.3.0" - peerDependencies: - eslint: ^8.56.0 - peerDependenciesMeta: - typescript: - optional: true - checksum: 10c0/ad92a38007be620f3f7036f10e234abdc2fdc518787b5a7227e55fd12896dacf56e8b34578723fbf9bea8128df2510ba8eb6739439a3879eda9519476d5783fd - languageName: node - linkType: hard - "@typescript-eslint/type-utils@npm:8.54.0": version: 8.54.0 resolution: "@typescript-eslint/type-utils@npm:8.54.0" @@ -11681,20 +11246,6 @@ __metadata: languageName: node linkType: hard -"@typescript-eslint/types@npm:5.62.0": - version: 5.62.0 - resolution: "@typescript-eslint/types@npm:5.62.0" - checksum: 10c0/7febd3a7f0701c0b927e094f02e82d8ee2cada2b186fcb938bc2b94ff6fbad88237afc304cbaf33e82797078bbbb1baf91475f6400912f8b64c89be79bfa4ddf - languageName: node - linkType: hard - -"@typescript-eslint/types@npm:7.18.0": - version: 7.18.0 - resolution: "@typescript-eslint/types@npm:7.18.0" - checksum: 10c0/eb7371ac55ca77db8e59ba0310b41a74523f17e06f485a0ef819491bc3dd8909bb930120ff7d30aaf54e888167e0005aa1337011f3663dc90fb19203ce478054 - languageName: node - linkType: hard - "@typescript-eslint/types@npm:8.54.0, @typescript-eslint/types@npm:^8.54.0": version: 8.54.0 resolution: "@typescript-eslint/types@npm:8.54.0" @@ -11702,43 +11253,6 @@ __metadata: languageName: node linkType: hard -"@typescript-eslint/typescript-estree@npm:5.62.0": - version: 5.62.0 - resolution: "@typescript-eslint/typescript-estree@npm:5.62.0" - dependencies: - "@typescript-eslint/types": "npm:5.62.0" - "@typescript-eslint/visitor-keys": "npm:5.62.0" - debug: "npm:^4.3.4" - globby: "npm:^11.1.0" - is-glob: "npm:^4.0.3" - semver: "npm:^7.3.7" - tsutils: "npm:^3.21.0" - peerDependenciesMeta: - typescript: - optional: true - checksum: 10c0/d7984a3e9d56897b2481940ec803cb8e7ead03df8d9cfd9797350be82ff765dfcf3cfec04e7355e1779e948da8f02bc5e11719d07a596eb1cb995c48a95e38cf - languageName: node - linkType: hard - -"@typescript-eslint/typescript-estree@npm:7.18.0": - version: 7.18.0 - resolution: "@typescript-eslint/typescript-estree@npm:7.18.0" - dependencies: - "@typescript-eslint/types": "npm:7.18.0" - "@typescript-eslint/visitor-keys": "npm:7.18.0" - debug: "npm:^4.3.4" - globby: "npm:^11.1.0" - is-glob: "npm:^4.0.3" - minimatch: "npm:^9.0.4" - semver: "npm:^7.6.0" - ts-api-utils: "npm:^1.3.0" - peerDependenciesMeta: - typescript: - optional: true - checksum: 10c0/0c7f109a2e460ec8a1524339479cf78ff17814d23c83aa5112c77fb345e87b3642616291908dcddea1e671da63686403dfb712e4a4435104f92abdfddf9aba81 - languageName: node - linkType: hard - "@typescript-eslint/typescript-estree@npm:8.54.0": version: 8.54.0 resolution: "@typescript-eslint/typescript-estree@npm:8.54.0" @@ -11758,38 +11272,6 @@ __metadata: languageName: node linkType: hard -"@typescript-eslint/utils@npm:5.62.0": - version: 5.62.0 - resolution: "@typescript-eslint/utils@npm:5.62.0" - dependencies: - "@eslint-community/eslint-utils": "npm:^4.2.0" - "@types/json-schema": "npm:^7.0.9" - "@types/semver": "npm:^7.3.12" - "@typescript-eslint/scope-manager": "npm:5.62.0" - "@typescript-eslint/types": "npm:5.62.0" - "@typescript-eslint/typescript-estree": "npm:5.62.0" - eslint-scope: "npm:^5.1.1" - semver: "npm:^7.3.7" - peerDependencies: - eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 - checksum: 10c0/f09b7d9952e4a205eb1ced31d7684dd55cee40bf8c2d78e923aa8a255318d97279825733902742c09d8690f37a50243f4c4d383ab16bd7aefaf9c4b438f785e1 - languageName: node - linkType: hard - -"@typescript-eslint/utils@npm:7.18.0": - version: 7.18.0 - resolution: "@typescript-eslint/utils@npm:7.18.0" - dependencies: - "@eslint-community/eslint-utils": "npm:^4.4.0" - "@typescript-eslint/scope-manager": "npm:7.18.0" - "@typescript-eslint/types": "npm:7.18.0" - "@typescript-eslint/typescript-estree": "npm:7.18.0" - peerDependencies: - eslint: ^8.56.0 - checksum: 10c0/a25a6d50eb45c514469a01ff01f215115a4725fb18401055a847ddf20d1b681409c4027f349033a95c4ff7138d28c3b0a70253dfe8262eb732df4b87c547bd1e - languageName: node - linkType: hard - "@typescript-eslint/utils@npm:8.54.0": version: 8.54.0 resolution: "@typescript-eslint/utils@npm:8.54.0" @@ -11805,26 +11287,6 @@ __metadata: languageName: node linkType: hard -"@typescript-eslint/visitor-keys@npm:5.62.0": - version: 5.62.0 - resolution: "@typescript-eslint/visitor-keys@npm:5.62.0" - dependencies: - "@typescript-eslint/types": "npm:5.62.0" - eslint-visitor-keys: "npm:^3.3.0" - checksum: 10c0/7c3b8e4148e9b94d9b7162a596a1260d7a3efc4e65199693b8025c71c4652b8042501c0bc9f57654c1e2943c26da98c0f77884a746c6ae81389fcb0b513d995d - languageName: node - linkType: hard - -"@typescript-eslint/visitor-keys@npm:7.18.0": - version: 7.18.0 - resolution: "@typescript-eslint/visitor-keys@npm:7.18.0" - dependencies: - "@typescript-eslint/types": "npm:7.18.0" - eslint-visitor-keys: "npm:^3.4.3" - checksum: 10c0/538b645f8ff1d9debf264865c69a317074eaff0255e63d7407046176b0f6a6beba34a6c51d511f12444bae12a98c69891eb6f403c9f54c6c2e2849d1c1cb73c0 - languageName: node - linkType: hard - "@typescript-eslint/visitor-keys@npm:8.54.0": version: 8.54.0 resolution: "@typescript-eslint/visitor-keys@npm:8.54.0" @@ -11844,148 +11306,6 @@ __metadata: languageName: node linkType: hard -"@ungap/structured-clone@npm:^1.2.0": - version: 1.3.0 - resolution: "@ungap/structured-clone@npm:1.3.0" - checksum: 10c0/0fc3097c2540ada1fc340ee56d58d96b5b536a2a0dab6e3ec17d4bfc8c4c86db345f61a375a8185f9da96f01c69678f836a2b57eeaa9e4b8eeafd26428e57b0a - languageName: node - linkType: hard - -"@unrs/resolver-binding-android-arm-eabi@npm:1.11.1": - version: 1.11.1 - resolution: "@unrs/resolver-binding-android-arm-eabi@npm:1.11.1" - conditions: os=android & cpu=arm - languageName: node - linkType: hard - -"@unrs/resolver-binding-android-arm64@npm:1.11.1": - version: 1.11.1 - resolution: "@unrs/resolver-binding-android-arm64@npm:1.11.1" - conditions: os=android & cpu=arm64 - languageName: node - linkType: hard - -"@unrs/resolver-binding-darwin-arm64@npm:1.11.1": - version: 1.11.1 - resolution: "@unrs/resolver-binding-darwin-arm64@npm:1.11.1" - conditions: os=darwin & cpu=arm64 - languageName: node - linkType: hard - -"@unrs/resolver-binding-darwin-x64@npm:1.11.1": - version: 1.11.1 - resolution: "@unrs/resolver-binding-darwin-x64@npm:1.11.1" - conditions: os=darwin & cpu=x64 - languageName: node - linkType: hard - -"@unrs/resolver-binding-freebsd-x64@npm:1.11.1": - version: 1.11.1 - resolution: "@unrs/resolver-binding-freebsd-x64@npm:1.11.1" - conditions: os=freebsd & cpu=x64 - languageName: node - linkType: hard - -"@unrs/resolver-binding-linux-arm-gnueabihf@npm:1.11.1": - version: 1.11.1 - resolution: "@unrs/resolver-binding-linux-arm-gnueabihf@npm:1.11.1" - conditions: os=linux & cpu=arm - languageName: node - linkType: hard - -"@unrs/resolver-binding-linux-arm-musleabihf@npm:1.11.1": - version: 1.11.1 - resolution: "@unrs/resolver-binding-linux-arm-musleabihf@npm:1.11.1" - conditions: os=linux & cpu=arm - languageName: node - linkType: hard - -"@unrs/resolver-binding-linux-arm64-gnu@npm:1.11.1": - version: 1.11.1 - resolution: "@unrs/resolver-binding-linux-arm64-gnu@npm:1.11.1" - conditions: os=linux & cpu=arm64 & libc=glibc - languageName: node - linkType: hard - -"@unrs/resolver-binding-linux-arm64-musl@npm:1.11.1": - version: 1.11.1 - resolution: "@unrs/resolver-binding-linux-arm64-musl@npm:1.11.1" - conditions: os=linux & cpu=arm64 & libc=musl - languageName: node - linkType: hard - -"@unrs/resolver-binding-linux-ppc64-gnu@npm:1.11.1": - version: 1.11.1 - resolution: "@unrs/resolver-binding-linux-ppc64-gnu@npm:1.11.1" - conditions: os=linux & cpu=ppc64 & libc=glibc - languageName: node - linkType: hard - -"@unrs/resolver-binding-linux-riscv64-gnu@npm:1.11.1": - version: 1.11.1 - resolution: "@unrs/resolver-binding-linux-riscv64-gnu@npm:1.11.1" - conditions: os=linux & cpu=riscv64 & libc=glibc - languageName: node - linkType: hard - -"@unrs/resolver-binding-linux-riscv64-musl@npm:1.11.1": - version: 1.11.1 - resolution: "@unrs/resolver-binding-linux-riscv64-musl@npm:1.11.1" - conditions: os=linux & cpu=riscv64 & libc=musl - languageName: node - linkType: hard - -"@unrs/resolver-binding-linux-s390x-gnu@npm:1.11.1": - version: 1.11.1 - resolution: "@unrs/resolver-binding-linux-s390x-gnu@npm:1.11.1" - conditions: os=linux & cpu=s390x & libc=glibc - languageName: node - linkType: hard - -"@unrs/resolver-binding-linux-x64-gnu@npm:1.11.1": - version: 1.11.1 - resolution: "@unrs/resolver-binding-linux-x64-gnu@npm:1.11.1" - conditions: os=linux & cpu=x64 & libc=glibc - languageName: node - linkType: hard - -"@unrs/resolver-binding-linux-x64-musl@npm:1.11.1": - version: 1.11.1 - resolution: "@unrs/resolver-binding-linux-x64-musl@npm:1.11.1" - conditions: os=linux & cpu=x64 & libc=musl - languageName: node - linkType: hard - -"@unrs/resolver-binding-wasm32-wasi@npm:1.11.1": - version: 1.11.1 - resolution: "@unrs/resolver-binding-wasm32-wasi@npm:1.11.1" - dependencies: - "@napi-rs/wasm-runtime": "npm:^0.2.11" - conditions: cpu=wasm32 - languageName: node - linkType: hard - -"@unrs/resolver-binding-win32-arm64-msvc@npm:1.11.1": - version: 1.11.1 - resolution: "@unrs/resolver-binding-win32-arm64-msvc@npm:1.11.1" - conditions: os=win32 & cpu=arm64 - languageName: node - linkType: hard - -"@unrs/resolver-binding-win32-ia32-msvc@npm:1.11.1": - version: 1.11.1 - resolution: "@unrs/resolver-binding-win32-ia32-msvc@npm:1.11.1" - conditions: os=win32 & cpu=ia32 - languageName: node - linkType: hard - -"@unrs/resolver-binding-win32-x64-msvc@npm:1.11.1": - version: 1.11.1 - resolution: "@unrs/resolver-binding-win32-x64-msvc@npm:1.11.1" - conditions: os=win32 & cpu=x64 - languageName: node - linkType: hard - "@use-gesture/core@npm:10.3.1": version: 10.3.1 resolution: "@use-gesture/core@npm:10.3.1" @@ -12070,9 +11390,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 @@ -12163,7 +11485,7 @@ __metadata: languageName: node linkType: hard -"acorn@npm:^8.11.0, acorn@npm:^8.4.1, acorn@npm:^8.9.0": +"acorn@npm:^8.11.0, acorn@npm:^8.15.0, acorn@npm:^8.4.1": version: 8.15.0 resolution: "acorn@npm:8.15.0" bin: @@ -12442,13 +11764,6 @@ __metadata: languageName: node linkType: hard -"aria-query@npm:^5.3.2": - version: 5.3.2 - resolution: "aria-query@npm:5.3.2" - checksum: 10c0/003c7e3e2cff5540bf7a7893775fc614de82b0c5dde8ae823d47b7a28a9d4da1f7ed85f340bdb93d5649caa927755f0e31ecc7ab63edfdfc00c8ef07e505e03e - languageName: node - linkType: hard - "arr-union@npm:^3.1.0": version: 3.1.0 resolution: "arr-union@npm:3.1.0" @@ -12551,7 +11866,7 @@ __metadata: languageName: node linkType: hard -"array.prototype.flatmap@npm:^1.2.4, array.prototype.flatmap@npm:^1.3.2, array.prototype.flatmap@npm:^1.3.3": +"array.prototype.flatmap@npm:^1.2.4, array.prototype.flatmap@npm:^1.3.3": version: 1.3.3 resolution: "array.prototype.flatmap@npm:1.3.3" dependencies: @@ -12630,13 +11945,6 @@ __metadata: languageName: node linkType: hard -"ast-types-flow@npm:^0.0.8": - version: 0.0.8 - resolution: "ast-types-flow@npm:0.0.8" - checksum: 10c0/f2a0ba8055353b743c41431974521e5e852a9824870cd6fce2db0e538ac7bf4da406bbd018d109af29ff3f8f0993f6a730c9eddbd0abd031fbcb29ca75c1014e - languageName: node - linkType: hard - "astral-regex@npm:^2.0.0": version: 2.0.0 resolution: "astral-regex@npm:2.0.0" @@ -12722,24 +12030,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 +12065,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 @@ -12802,13 +12110,6 @@ __metadata: languageName: node linkType: hard -"axe-core@npm:^4.10.0": - version: 4.11.1 - resolution: "axe-core@npm:4.11.1" - checksum: 10c0/1e6997454b61c7c9a4d740f395952835dcf87f2c04fd81577217d68634d197d602c224f9e8f17b22815db4c117a2519980cfc8911fc0027c54a6d8ebca47c6a7 - languageName: node - linkType: hard - "axios-retry@npm:^4.0.0": version: 4.5.0 resolution: "axios-retry@npm:4.5.0" @@ -12831,13 +12132,6 @@ __metadata: languageName: node linkType: hard -"axobject-query@npm:^4.1.0": - version: 4.1.0 - resolution: "axobject-query@npm:4.1.0" - checksum: 10c0/c470e4f95008f232eadd755b018cb55f16c03ccf39c027b941cd8820ac6b68707ce5d7368a46756db4256fbc91bb4ead368f84f7fb034b2b7932f082f6dc0775 - languageName: node - linkType: hard - "b4a@npm:^1.6.4": version: 1.7.3 resolution: "b4a@npm:1.7.3" @@ -12886,6 +12180,15 @@ __metadata: languageName: node linkType: hard +"babel-plugin-react-compiler@npm:^1.0.0": + version: 1.0.0 + resolution: "babel-plugin-react-compiler@npm:1.0.0" + dependencies: + "@babel/types": "npm:^7.26.0" + checksum: 10c0/9406267ada8d7dbdfe8906b40ecadb816a5f4cee2922bee23f7729293b369624ee135b5a9b0f263851c263c9787522ac5d97016c9a2b82d1668300e42b18aff8 + languageName: node + linkType: hard + "babel-plugin-syntax-trailing-function-commas@npm:^7.0.0-beta.0": version: 7.0.0-beta.0 resolution: "babel-plugin-syntax-trailing-function-commas@npm:7.0.0-beta.0" @@ -12985,7 +12288,7 @@ __metadata: languageName: node linkType: hard -"baseline-browser-mapping@npm:^2.9.0": +"baseline-browser-mapping@npm:^2.8.3, baseline-browser-mapping@npm:^2.9.0": version: 2.9.19 resolution: "baseline-browser-mapping@npm:2.9.19" bin: @@ -13237,15 +12540,6 @@ __metadata: languageName: node linkType: hard -"busboy@npm:1.6.0": - version: 1.6.0 - resolution: "busboy@npm:1.6.0" - dependencies: - streamsearch: "npm:^1.1.0" - checksum: 10c0/fa7e836a2b82699b6e074393428b91ae579d4f9e21f5ac468e1b459a244341d722d2d22d10920cdd849743dbece6dca11d72de939fb75a7448825cf2babfba1f - languageName: node - linkType: hard - "byte-size@npm:8.1.1": version: 8.1.1 resolution: "byte-size@npm:8.1.1" @@ -13412,9 +12706,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 +12738,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 @@ -13726,33 +13020,25 @@ __metadata: "@shared/helios-types": "npm:*" "@tanstack/react-table": "npm:^8.20.5" "@trivago/prettier-plugin-sort-imports": "npm:^4.3.0" - "@types/eslint": "npm:^8.56.10" "@types/google.maps": "npm:^3.55.11" "@types/lodash": "npm:^4" "@types/node": "npm:^20.14.10" "@types/plotly.js": "npm:^3.0.0" "@types/plotly.js-dist-min": "npm:^2" "@types/prettier": "npm:^3.0.0" - "@types/react": "npm:19.0.7" - "@types/react-dom": "npm:19.0.3" + "@types/react": "npm:19.2.10" + "@types/react-dom": "npm:19.2.3" "@types/react-plotly.js": "npm:^2.6.3" "@types/three": "npm:^0.161.2" - "@typescript-eslint/eslint-plugin": "npm:^7.16.0" - "@typescript-eslint/parser": "npm:^7.16.0" autoprefixer: "npm:^10.4.19" + babel-plugin-react-compiler: "npm:^1.0.0" chart.js: "npm:^4.4.8" dayjs: "npm:^1.11.13" - eslint: "npm:8.57.0" - eslint-config-next: "npm:15.1.4" - eslint-config-prettier: "npm:^9.1.0" - eslint-plugin-prettier: "npm:^5.1.3" - eslint-plugin-promise: "npm:^6.4.0" - eslint-plugin-tailwindcss: "npm:^3.17.4" framer-motion: "npm:^11.0.6" gltf-pipeline: "npm:^4.1.0" lodash: "npm:^4.17.21" mapbox-gl: "npm:^3.5.1" - next: "npm:15.1.4" + next: "npm:16.1.6" next-themes: "npm:^0.4.6" plotly.js-dist-min: "npm:^2.35.3" postcss: "npm:^8.5.3" @@ -13761,9 +13047,9 @@ __metadata: prettier: "npm:^3.3.2" prettier-plugin-tailwindcss: "npm:^0.6.6" rc-slider: "npm:^11.1.8" - react: "npm:19.0.0" + react: "npm:19.2.4" react-chartjs-2: "npm:^5.3.0" - react-dom: "npm:19.0.0" + react-dom: "npm:19.2.4" react-icons: "npm:^5.0.1" react-indiana-drag-scroll: "npm:^2.2.0" react-map-gl: "npm:^7.1.7" @@ -13855,39 +13141,19 @@ __metadata: languageName: node linkType: hard -"color-name@npm:^1.0.0, color-name@npm:~1.1.4": +"color-name@npm:~1.1.4": version: 1.1.4 resolution: "color-name@npm:1.1.4" checksum: 10c0/a1a3f914156960902f46f7f56bc62effc6c94e84b2cae157a526b1c1f74b677a47ec602bf68a61abfa2b42d15b7c5651c6dbe72a43af720bc588dff885b10f95 languageName: node linkType: hard -"color-string@npm:^1.9.0": - version: 1.9.1 - resolution: "color-string@npm:1.9.1" - dependencies: - color-name: "npm:^1.0.0" - simple-swizzle: "npm:^0.2.2" - checksum: 10c0/b0bfd74c03b1f837f543898b512f5ea353f71630ccdd0d66f83028d1f0924a7d4272deb278b9aef376cacf1289b522ac3fb175e99895283645a2dc3a33af2404 - languageName: node - linkType: hard - "color-support@npm:1.1.3": version: 1.1.3 resolution: "color-support@npm:1.1.3" - bin: - color-support: bin.js - checksum: 10c0/8ffeaa270a784dc382f62d9be0a98581db43e11eee301af14734a6d089bd456478b1a8b3e7db7ca7dc5b18a75f828f775c44074020b51c05fc00e6d0992b1cc6 - languageName: node - linkType: hard - -"color@npm:^4.2.3": - version: 4.2.3 - resolution: "color@npm:4.2.3" - dependencies: - color-convert: "npm:^2.0.1" - color-string: "npm:^1.9.0" - checksum: 10c0/7fbe7cfb811054c808349de19fb380252e5e34e61d7d168ec3353e9e9aacb1802674bddc657682e4e9730c2786592a4de6f8283e7e0d3870b829bb0b7b2f6118 + bin: + color-support: bin.js + checksum: 10c0/8ffeaa270a784dc382f62d9be0a98581db43e11eee301af14734a6d089bd456478b1a8b3e7db7ca7dc5b18a75f828f775c44074020b51c05fc00e6d0992b1cc6 languageName: node linkType: hard @@ -14335,13 +13601,6 @@ __metadata: languageName: node linkType: hard -"damerau-levenshtein@npm:^1.0.8": - version: 1.0.8 - resolution: "damerau-levenshtein@npm:1.0.8" - checksum: 10c0/4c2647e0f42acaee7d068756c1d396e296c3556f9c8314bac1ac63ffb236217ef0e7e58602b18bb2173deec7ec8e0cac8e27cccf8f5526666b4ff11a13ad54a3 - languageName: node - linkType: hard - "dargs@npm:^7.0.0": version: 7.0.0 resolution: "dargs@npm:7.0.0" @@ -14659,7 +13918,7 @@ __metadata: languageName: node linkType: hard -"detect-libc@npm:^2.0.3": +"detect-libc@npm:^2.0.3, detect-libc@npm:^2.1.2": version: 2.1.2 resolution: "detect-libc@npm:2.1.2" checksum: 10c0/acc675c29a5649fa1fb6e255f993b8ee829e510b6b56b0910666949c80c364738833417d0edb5f90e4e46be17228b0f2b66a010513984e18b15deeeac49369c4 @@ -14726,15 +13985,6 @@ __metadata: languageName: node linkType: hard -"doctrine@npm:^3.0.0": - version: 3.0.0 - resolution: "doctrine@npm:3.0.0" - dependencies: - esutils: "npm:^2.0.2" - checksum: 10c0/c96bdccabe9d62ab6fea9399fdff04a66e6563c1d6fb3a3a063e8d53c3bb136ba63e84250bbf63d00086a769ad53aef92d2bd483f03f837fc97b71cbee6b2520 - languageName: node - linkType: hard - "dom-helpers@npm:^5.0.1": version: 5.2.1 resolution: "dom-helpers@npm:5.2.1" @@ -14785,13 +14035,6 @@ __metadata: languageName: node linkType: hard -"dotenv@npm:16.0.3": - version: 16.0.3 - resolution: "dotenv@npm:16.0.3" - checksum: 10c0/109457ac5f9e930ca8066ea33887b6f839ab24d647a7a8b49ddcd1f32662e2c35591c5e5b9819063e430148a664d0927f0cbe60cf9575d89bc524f47ff7e78f0 - languageName: node - linkType: hard - "dotenv@npm:^16.4.5, dotenv@npm:^16.6.1": version: 16.6.1 resolution: "dotenv@npm:16.6.1" @@ -14864,9 +14107,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 +14464,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 +14548,7 @@ __metadata: optional: true bin: esbuild: bin/esbuild - checksum: 10c0/cf83f626f55500f521d5fe7f4bc5871bec240d3deb2a01fbd379edc43b3664d1167428738a5aad8794b35d1cca985c44c375b1cd38a2ca613c77ced2c83aafcd + checksum: 10c0/fdc3f87a3f08b3ef98362f37377136c389a0d180fda4b8d073b26ba930cf245521db0a368f119cc7624bc619248fff1439f5811f062d853576f8ffa3df8ee5f1 languageName: node linkType: hard @@ -15337,54 +14580,18 @@ __metadata: languageName: node linkType: hard -"eslint-config-next@npm:15.1.4": - version: 15.1.4 - resolution: "eslint-config-next@npm:15.1.4" - dependencies: - "@next/eslint-plugin-next": "npm:15.1.4" - "@rushstack/eslint-patch": "npm:^1.10.3" - "@typescript-eslint/eslint-plugin": "npm:^5.4.2 || ^6.0.0 || ^7.0.0 || ^8.0.0" - "@typescript-eslint/parser": "npm:^5.4.2 || ^6.0.0 || ^7.0.0 || ^8.0.0" - eslint-import-resolver-node: "npm:^0.3.6" - eslint-import-resolver-typescript: "npm:^3.5.2" - eslint-plugin-import: "npm:^2.31.0" - eslint-plugin-jsx-a11y: "npm:^6.10.0" - eslint-plugin-react: "npm:^7.37.0" - eslint-plugin-react-hooks: "npm:^5.0.0" - peerDependencies: - eslint: ^7.23.0 || ^8.0.0 || ^9.0.0 - typescript: ">=3.3.1" - peerDependenciesMeta: - typescript: - optional: true - checksum: 10c0/9c52e8e2c6f71e94eec0a2d2a2ee0a32d6ac3cb6b354e8364ddb8b9942b2b1ea2207c3be1532dfb296a697df27f89f6f3eb86190ecf9ffaf5528d7a3749fb012 - languageName: node - linkType: hard - -"eslint-config-prettier@npm:^9.1.0": - version: 9.1.2 - resolution: "eslint-config-prettier@npm:9.1.2" +"eslint-config-prettier@npm:^10.1.8": + version: 10.1.8 + resolution: "eslint-config-prettier@npm:10.1.8" peerDependencies: eslint: ">=7.0.0" bin: eslint-config-prettier: bin/cli.js - checksum: 10c0/d2e9dc913b1677764a4732433d83d258f40820458c65d0274cb9e3eaf6559b39f2136446f310c05abed065a4b3c2e901807ccf583dff76c6227eaebf4132c39a - languageName: node - linkType: hard - -"eslint-config-turbo@npm:latest": - version: 2.8.1 - resolution: "eslint-config-turbo@npm:2.8.1" - dependencies: - eslint-plugin-turbo: "npm:2.8.1" - peerDependencies: - eslint: ">6.6.0" - turbo: ">2.0.0" - checksum: 10c0/d2a6a3f6b7c24bf3ec9d041929a11bcfa30cfa47fa5a8906679296bc53613702e716caffd4966b9b4f12bbead5e541f081535efa6fb17e619e31bfff67a4f627 + checksum: 10c0/e1bcfadc9eccd526c240056b1e59c5cd26544fe59feb85f38f4f1f116caed96aea0b3b87868e68b3099e55caaac3f2e5b9f58110f85db893e83a332751192682 languageName: node linkType: hard -"eslint-import-resolver-node@npm:^0.3.6, eslint-import-resolver-node@npm:^0.3.9": +"eslint-import-resolver-node@npm:^0.3.9": version: 0.3.9 resolution: "eslint-import-resolver-node@npm:0.3.9" dependencies: @@ -15395,30 +14602,6 @@ __metadata: languageName: node linkType: hard -"eslint-import-resolver-typescript@npm:^3.5.2": - version: 3.10.1 - resolution: "eslint-import-resolver-typescript@npm:3.10.1" - dependencies: - "@nolyfill/is-core-module": "npm:1.0.39" - debug: "npm:^4.4.0" - get-tsconfig: "npm:^4.10.0" - is-bun-module: "npm:^2.0.0" - stable-hash: "npm:^0.0.5" - tinyglobby: "npm:^0.2.13" - unrs-resolver: "npm:^1.6.2" - peerDependencies: - eslint: "*" - eslint-plugin-import: "*" - eslint-plugin-import-x: "*" - peerDependenciesMeta: - eslint-plugin-import: - optional: true - eslint-plugin-import-x: - optional: true - checksum: 10c0/02ba72cf757753ab9250806c066d09082e00807b7b6525d7687e1c0710bc3f6947e39120227fe1f93dabea3510776d86fb3fd769466ba3c46ce67e9f874cb702 - languageName: node - linkType: hard - "eslint-module-utils@npm:^2.12.1": version: 2.12.1 resolution: "eslint-module-utils@npm:2.12.1" @@ -15431,7 +14614,7 @@ __metadata: languageName: node linkType: hard -"eslint-plugin-import@npm:^2.29.1, eslint-plugin-import@npm:^2.31.0": +"eslint-plugin-import@npm:^2.29.1": version: 2.32.0 resolution: "eslint-plugin-import@npm:2.32.0" dependencies: @@ -15460,32 +14643,7 @@ __metadata: languageName: node linkType: hard -"eslint-plugin-jsx-a11y@npm:^6.10.0": - version: 6.10.2 - resolution: "eslint-plugin-jsx-a11y@npm:6.10.2" - dependencies: - aria-query: "npm:^5.3.2" - array-includes: "npm:^3.1.8" - array.prototype.flatmap: "npm:^1.3.2" - ast-types-flow: "npm:^0.0.8" - axe-core: "npm:^4.10.0" - axobject-query: "npm:^4.1.0" - damerau-levenshtein: "npm:^1.0.8" - emoji-regex: "npm:^9.2.2" - hasown: "npm:^2.0.2" - jsx-ast-utils: "npm:^3.3.5" - language-tags: "npm:^1.0.9" - minimatch: "npm:^3.1.2" - object.fromentries: "npm:^2.0.8" - safe-regex-test: "npm:^1.0.3" - string.prototype.includes: "npm:^2.0.1" - peerDependencies: - eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8 || ^9 - checksum: 10c0/d93354e03b0cf66f018d5c50964e074dffe4ddf1f9b535fa020d19c4ae45f89c1a16e9391ca61ac3b19f7042c751ac0d361a056a65cbd1de24718a53ff8daa6e - languageName: node - linkType: hard - -"eslint-plugin-prettier@npm:^5.1.3, eslint-plugin-prettier@npm:^5.2.1": +"eslint-plugin-prettier@npm:^5.5.5": version: 5.5.5 resolution: "eslint-plugin-prettier@npm:5.5.5" dependencies: @@ -15505,16 +14663,7 @@ __metadata: languageName: node linkType: hard -"eslint-plugin-promise@npm:^6.4.0": - version: 6.6.0 - resolution: "eslint-plugin-promise@npm:6.6.0" - peerDependencies: - eslint: ^7.0.0 || ^8.0.0 || ^9.0.0 - checksum: 10c0/93a667dbc9ff15c4d586b0d40a31c7828314cbbb31b2b9a75802aa4ef536e9457bb3e1a89b384b07aa336dd61b315ae8b0aadc0870210378023dd018819b59b3 - languageName: node - linkType: hard - -"eslint-plugin-promise@npm:^7.1.0": +"eslint-plugin-promise@npm:^7.2.1": version: 7.2.1 resolution: "eslint-plugin-promise@npm:7.2.1" dependencies: @@ -15525,16 +14674,22 @@ __metadata: languageName: node linkType: hard -"eslint-plugin-react-hooks@npm:^5.0.0": - version: 5.2.0 - resolution: "eslint-plugin-react-hooks@npm:5.2.0" +"eslint-plugin-react-hooks@npm:^7.0.1": + version: 7.0.1 + resolution: "eslint-plugin-react-hooks@npm:7.0.1" + dependencies: + "@babel/core": "npm:^7.24.4" + "@babel/parser": "npm:^7.24.4" + hermes-parser: "npm:^0.25.1" + zod: "npm:^3.25.0 || ^4.0.0" + zod-validation-error: "npm:^3.5.0 || ^4.0.0" peerDependencies: eslint: ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0 || ^9.0.0 - checksum: 10c0/1c8d50fa5984c6dea32470651807d2922cc3934cf3425e78f84a24c2dfd972e7f019bee84aefb27e0cf2c13fea0ac1d4473267727408feeb1c56333ca1489385 + checksum: 10c0/1e711d1a9d1fa9cfc51fa1572500656577201199c70c795c6a27adfc1df39e5c598f69aab6aa91117753d23cc1f11388579a2bed14921cf9a4efe60ae8618496 languageName: node linkType: hard -"eslint-plugin-react@npm:^7.37.0": +"eslint-plugin-react@npm:^7.37.5": version: 7.37.5 resolution: "eslint-plugin-react@npm:7.37.5" dependencies: @@ -15582,113 +14737,60 @@ __metadata: languageName: node linkType: hard -"eslint-plugin-tailwindcss@npm:^3.17.4": - version: 3.18.2 - resolution: "eslint-plugin-tailwindcss@npm:3.18.2" - dependencies: - fast-glob: "npm:^3.2.5" - postcss: "npm:^8.4.4" - peerDependencies: - tailwindcss: ^3.4.0 - checksum: 10c0/2903923f81d5dd1813279cc419421612d7d3f58ba57aa48a931beaa18e2529fdea223e0c60135c3fd2aa55e3d798b4299a0280602c8c508480bebd4f6019ac9c - languageName: node - linkType: hard - -"eslint-plugin-turbo@npm:2.8.1": - version: 2.8.1 - resolution: "eslint-plugin-turbo@npm:2.8.1" - dependencies: - dotenv: "npm:16.0.3" - peerDependencies: - eslint: ">6.6.0" - turbo: ">2.0.0" - checksum: 10c0/327d0c8a921833c0920211a5b93153e06f6183ad6bbe847d461ee38a76a31e65355f4a686e56c9b10d203038504637171af926215a76575a8d964481b5b19586 - languageName: node - linkType: hard - -"eslint-plugin-typescript-sort-keys@npm:^3.2.0": - version: 3.3.0 - resolution: "eslint-plugin-typescript-sort-keys@npm:3.3.0" - dependencies: - "@typescript-eslint/experimental-utils": "npm:^5.0.0" - json-schema: "npm:^0.4.0" - natural-compare-lite: "npm:^1.4.0" - peerDependencies: - "@typescript-eslint/parser": ">=6" - eslint: ^7 || ^8 - typescript: ^3 || ^4 || ^5 - checksum: 10c0/d374611e9d3b2972d6cb4fefd88890773520918e9c8e7efef406dc2b02cc9f153c4ff78d64aa1e636896ce0708a7512a4b1c629185de869211f86937920e834d - languageName: node - linkType: hard - -"eslint-scope@npm:^5.1.1": - version: 5.1.1 - resolution: "eslint-scope@npm:5.1.1" - dependencies: - esrecurse: "npm:^4.3.0" - estraverse: "npm:^4.1.1" - checksum: 10c0/d30ef9dc1c1cbdece34db1539a4933fe3f9b14e1ffb27ecc85987902ee663ad7c9473bbd49a9a03195a373741e62e2f807c4938992e019b511993d163450e70a - languageName: node - linkType: hard - -"eslint-scope@npm:^7.2.2": - version: 7.2.2 - resolution: "eslint-scope@npm:7.2.2" +"eslint-scope@npm:^8.0.1": + version: 8.4.0 + resolution: "eslint-scope@npm:8.4.0" dependencies: esrecurse: "npm:^4.3.0" estraverse: "npm:^5.2.0" - checksum: 10c0/613c267aea34b5a6d6c00514e8545ef1f1433108097e857225fed40d397dd6b1809dffd11c2fde23b37ca53d7bf935fe04d2a18e6fc932b31837b6ad67e1c116 + checksum: 10c0/407f6c600204d0f3705bd557f81bd0189e69cd7996f408f8971ab5779c0af733d1af2f1412066b40ee1588b085874fc37a2333986c6521669cdbdd36ca5058e0 languageName: node linkType: hard -"eslint-visitor-keys@npm:^3.3.0, eslint-visitor-keys@npm:^3.4.1, eslint-visitor-keys@npm:^3.4.3": +"eslint-visitor-keys@npm:^3.4.3": version: 3.4.3 resolution: "eslint-visitor-keys@npm:3.4.3" checksum: 10c0/92708e882c0a5ffd88c23c0b404ac1628cf20104a108c745f240a13c332a11aac54f49a22d5762efbffc18ecbc9a580d1b7ad034bf5f3cc3307e5cbff2ec9820 languageName: node linkType: hard -"eslint-visitor-keys@npm:^4.2.1": +"eslint-visitor-keys@npm:^4.0.0, eslint-visitor-keys@npm:^4.2.1": version: 4.2.1 resolution: "eslint-visitor-keys@npm:4.2.1" checksum: 10c0/fcd43999199d6740db26c58dbe0c2594623e31ca307e616ac05153c9272f12f1364f5a0b1917a8e962268fdecc6f3622c1c2908b4fcc2e047a106fe6de69dc43 languageName: node linkType: hard -"eslint@npm:8.57.0": - version: 8.57.0 - resolution: "eslint@npm:8.57.0" +"eslint@npm:9.0.0": + version: 9.0.0 + resolution: "eslint@npm:9.0.0" dependencies: "@eslint-community/eslint-utils": "npm:^4.2.0" "@eslint-community/regexpp": "npm:^4.6.1" - "@eslint/eslintrc": "npm:^2.1.4" - "@eslint/js": "npm:8.57.0" - "@humanwhocodes/config-array": "npm:^0.11.14" + "@eslint/eslintrc": "npm:^3.0.2" + "@eslint/js": "npm:9.0.0" + "@humanwhocodes/config-array": "npm:^0.12.3" "@humanwhocodes/module-importer": "npm:^1.0.1" "@nodelib/fs.walk": "npm:^1.2.8" - "@ungap/structured-clone": "npm:^1.2.0" ajv: "npm:^6.12.4" chalk: "npm:^4.0.0" cross-spawn: "npm:^7.0.2" debug: "npm:^4.3.2" - doctrine: "npm:^3.0.0" escape-string-regexp: "npm:^4.0.0" - eslint-scope: "npm:^7.2.2" - eslint-visitor-keys: "npm:^3.4.3" - espree: "npm:^9.6.1" + eslint-scope: "npm:^8.0.1" + eslint-visitor-keys: "npm:^4.0.0" + espree: "npm:^10.0.1" esquery: "npm:^1.4.2" esutils: "npm:^2.0.2" fast-deep-equal: "npm:^3.1.3" - file-entry-cache: "npm:^6.0.1" + file-entry-cache: "npm:^8.0.0" find-up: "npm:^5.0.0" glob-parent: "npm:^6.0.2" - globals: "npm:^13.19.0" graphemer: "npm:^1.4.0" ignore: "npm:^5.2.0" imurmurhash: "npm:^0.1.4" is-glob: "npm:^4.0.0" is-path-inside: "npm:^3.0.3" - js-yaml: "npm:^4.1.0" json-stable-stringify-without-jsonify: "npm:^1.0.1" levn: "npm:^0.4.1" lodash.merge: "npm:^4.6.2" @@ -15699,18 +14801,18 @@ __metadata: text-table: "npm:^0.2.0" bin: eslint: bin/eslint.js - checksum: 10c0/00bb96fd2471039a312435a6776fe1fd557c056755eaa2b96093ef3a8508c92c8775d5f754768be6b1dddd09fdd3379ddb231eeb9b6c579ee17ea7d68000a529 + checksum: 10c0/ab23e45cfef5ec174fc165edc03e0d6655fd7e50fd18068e6d966e9640f0d0a9048244e1297569ba4fd1ccddcfc0b00fb0c9723caa4209e0b2b23139ae688368 languageName: node linkType: hard -"espree@npm:^9.6.0, espree@npm:^9.6.1": - version: 9.6.1 - resolution: "espree@npm:9.6.1" +"espree@npm:^10.0.1": + version: 10.4.0 + resolution: "espree@npm:10.4.0" dependencies: - acorn: "npm:^8.9.0" + acorn: "npm:^8.15.0" acorn-jsx: "npm:^5.3.2" - eslint-visitor-keys: "npm:^3.4.1" - checksum: 10c0/1a2e9b4699b715347f62330bcc76aee224390c28bb02b31a3752e9d07549c473f5f986720483c6469cf3cfb3c9d05df612ffc69eb1ee94b54b739e67de9bb460 + eslint-visitor-keys: "npm:^4.2.1" + checksum: 10c0/c63fe06131c26c8157b4083313cb02a9a54720a08e21543300e55288c40e06c3fc284bdecf108d3a1372c5934a0a88644c98714f38b6ae8ed272b40d9ea08d6b languageName: node linkType: hard @@ -15742,13 +14844,6 @@ __metadata: languageName: node linkType: hard -"estraverse@npm:^4.1.1": - version: 4.3.0 - resolution: "estraverse@npm:4.3.0" - checksum: 10c0/9cb46463ef8a8a4905d3708a652d60122a0c20bb58dec7e0e12ab0e7235123d74214fc0141d743c381813e1b992767e2708194f6f6e0f9fd00c1b4e0887b8b6d - languageName: node - linkType: hard - "estraverse@npm:^5.1.0, estraverse@npm:^5.2.0, estraverse@npm:^5.3.0": version: 5.3.0 resolution: "estraverse@npm:5.3.0" @@ -16012,7 +15107,7 @@ __metadata: languageName: node linkType: hard -"fast-glob@npm:^3.2.5, fast-glob@npm:^3.2.9, fast-glob@npm:^3.3.2": +"fast-glob@npm:^3.2.9, fast-glob@npm:^3.3.2": version: 3.3.3 resolution: "fast-glob@npm:3.3.3" dependencies: @@ -16088,25 +15183,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 @@ -16230,12 +15314,12 @@ __metadata: languageName: node linkType: hard -"file-entry-cache@npm:^6.0.1": - version: 6.0.1 - resolution: "file-entry-cache@npm:6.0.1" +"file-entry-cache@npm:^8.0.0": + version: 8.0.0 + resolution: "file-entry-cache@npm:8.0.0" dependencies: - flat-cache: "npm:^3.0.4" - checksum: 10c0/58473e8a82794d01b38e5e435f6feaf648e3f36fdb3a56e98f417f4efae71ad1c0d4ebd8a9a7c50c3ad085820a93fc7494ad721e0e4ebc1da3573f4e1c3c7cdd + flat-cache: "npm:^4.0.0" + checksum: 10c0/9e2b5938b1cd9b6d7e3612bdc533afd4ac17b2fc646569e9a8abbf2eb48e5eb8e316bc38815a3ef6a1b456f4107f0d0f055a614ca613e75db6bf9ff4d72c1638 languageName: node linkType: hard @@ -16308,14 +15392,13 @@ __metadata: languageName: node linkType: hard -"flat-cache@npm:^3.0.4": - version: 3.2.0 - resolution: "flat-cache@npm:3.2.0" +"flat-cache@npm:^4.0.0": + version: 4.0.1 + resolution: "flat-cache@npm:4.0.1" dependencies: flatted: "npm:^3.2.9" - keyv: "npm:^4.5.3" - rimraf: "npm:^3.0.2" - checksum: 10c0/b76f611bd5f5d68f7ae632e3ae503e678d205cf97a17c6ab5b12f6ca61188b5f1f7464503efae6dc18683ed8f0b41460beb48ac4b9ac63fe6201296a91ba2f75 + keyv: "npm:^4.5.4" + checksum: 10c0/2c59d93e9faa2523e4fda6b4ada749bed432cfa28c8e251f33b25795e426a1c6dbada777afb1f74fcfff33934fdbdea921ee738fcc33e71adc9d6eca984a1cfc languageName: node linkType: hard @@ -16687,12 +15770,12 @@ __metadata: languageName: node 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" +"get-tsconfig@npm:^4.7.5": + 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 +15914,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 @@ -16874,12 +15957,10 @@ __metadata: languageName: node linkType: hard -"globals@npm:^13.19.0": - version: 13.24.0 - resolution: "globals@npm:13.24.0" - dependencies: - type-fest: "npm:^0.20.2" - checksum: 10c0/d3c11aeea898eb83d5ec7a99508600fbe8f83d2cf00cbb77f873dbf2bcb39428eff1b538e4915c993d8a3b3473fa71eeebfe22c9bb3a3003d1e26b1f2c8a42cd +"globals@npm:^14.0.0": + version: 14.0.0 + resolution: "globals@npm:14.0.0" + checksum: 10c0/b96ff42620c9231ad468d4c58ff42afee7777ee1c963013ff8aabe095a451d0ceeb8dcd8ef4cbd64d2538cef45f787a78ba3a9574f4a634438963e334471302d languageName: node linkType: hard @@ -16991,15 +16072,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 @@ -17167,6 +16248,22 @@ __metadata: languageName: node linkType: hard +"hermes-estree@npm:0.25.1": + version: 0.25.1 + resolution: "hermes-estree@npm:0.25.1" + checksum: 10c0/48be3b2fa37a0cbc77a112a89096fa212f25d06de92781b163d67853d210a8a5c3784fac23d7d48335058f7ed283115c87b4332c2a2abaaccc76d0ead1a282ac + languageName: node + linkType: hard + +"hermes-parser@npm:^0.25.1": + version: 0.25.1 + resolution: "hermes-parser@npm:0.25.1" + dependencies: + hermes-estree: "npm:0.25.1" + checksum: 10c0/3abaa4c6f1bcc25273f267297a89a4904963ea29af19b8e4f6eabe04f1c2c7e9abd7bfc4730ddb1d58f2ea04b6fee74053d8bddb5656ec6ebf6c79cc8d14202c + languageName: node + linkType: hard + "hjson@npm:^3.2.2": version: 3.2.2 resolution: "hjson@npm:3.2.2" @@ -17369,7 +16466,7 @@ __metadata: languageName: node linkType: hard -"ignore@npm:^5.0.4, ignore@npm:^5.2.0, ignore@npm:^5.3.1, ignore@npm:^5.3.2": +"ignore@npm:^5.0.4, ignore@npm:^5.2.0, ignore@npm:^5.3.2": version: 5.3.2 resolution: "ignore@npm:5.3.2" checksum: 10c0/f9f652c957983634ded1e7f02da3b559a0d4cc210fca3792cb67f1b153623c9c42efdc1c4121af171e295444459fc4a9201101fb041b1104a3c000bccb188337 @@ -17611,13 +16708,6 @@ __metadata: languageName: node linkType: hard -"is-arrayish@npm:^0.3.1": - version: 0.3.4 - resolution: "is-arrayish@npm:0.3.4" - checksum: 10c0/1fa672a2f0bedb74154440310f616c0b6e53a95cf0625522ae050f06626d1cabd1a3d8085c882dc45c61ad0e7df2529aff122810b3b4a552880bf170d6df94e0 - languageName: node - linkType: hard - "is-async-function@npm:^2.0.0": version: 2.1.1 resolution: "is-async-function@npm:2.1.1" @@ -17666,15 +16756,6 @@ __metadata: languageName: node linkType: hard -"is-bun-module@npm:^2.0.0": - version: 2.0.0 - resolution: "is-bun-module@npm:2.0.0" - dependencies: - semver: "npm:^7.7.1" - checksum: 10c0/7d27a0679cfa5be1f5052650391f9b11040cd70c48d45112e312c56bc6b6ca9c9aea70dcce6cc40b1e8947bfff8567a5c5715d3b066fb478522dab46ea379240 - languageName: node - linkType: hard - "is-callable@npm:^1.2.7": version: 1.2.7 resolution: "is-callable@npm:1.2.7" @@ -18152,9 +17233,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 +17285,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 @@ -18311,7 +17392,7 @@ __metadata: languageName: node linkType: hard -"js-yaml@npm:^4.1.0": +"js-yaml@npm:^4.1.0, js-yaml@npm:^4.1.1": version: 4.1.1 resolution: "js-yaml@npm:4.1.1" dependencies: @@ -18408,13 +17489,6 @@ __metadata: languageName: node linkType: hard -"json-schema@npm:^0.4.0": - version: 0.4.0 - resolution: "json-schema@npm:0.4.0" - checksum: 10c0/d4a637ec1d83544857c1c163232f3da46912e971d5bf054ba44fdb88f07d8d359a462b4aec46f2745efbc57053365608d88bc1d7b1729f7b4fc3369765639ed3 - languageName: node - linkType: hard - "json-stable-stringify-without-jsonify@npm:^1.0.1": version: 1.0.1 resolution: "json-stable-stringify-without-jsonify@npm:1.0.1" @@ -18516,7 +17590,7 @@ __metadata: languageName: node linkType: hard -"jsx-ast-utils@npm:^2.4.1 || ^3.0.0, jsx-ast-utils@npm:^3.3.5": +"jsx-ast-utils@npm:^2.4.1 || ^3.0.0": version: 3.3.5 resolution: "jsx-ast-utils@npm:3.3.5" dependencies: @@ -18549,7 +17623,7 @@ __metadata: languageName: node linkType: hard -"keyv@npm:^4.5.3": +"keyv@npm:^4.5.4": version: 4.5.4 resolution: "keyv@npm:4.5.4" dependencies: @@ -18579,22 +17653,6 @@ __metadata: languageName: node linkType: hard -"language-subtag-registry@npm:^0.3.20": - version: 0.3.23 - resolution: "language-subtag-registry@npm:0.3.23" - checksum: 10c0/e9b05190421d2cd36dd6c95c28673019c927947cb6d94f40ba7e77a838629ee9675c94accf897fbebb07923187deb843b8fbb8935762df6edafe6c28dcb0b86c - languageName: node - linkType: hard - -"language-tags@npm:^1.0.9": - version: 1.0.9 - resolution: "language-tags@npm:1.0.9" - dependencies: - language-subtag-registry: "npm:^0.3.20" - checksum: 10c0/9ab911213c4bd8bd583c850201c17794e52cb0660d1ab6e32558aadc8324abebf6844e46f92b80a5d600d0fbba7eface2c207bfaf270a1c7fd539e4c3a880bff - languageName: node - linkType: hard - "lazystream@npm:^1.0.0": version: 1.0.1 resolution: "lazystream@npm:1.0.1" @@ -19404,12 +18462,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 +18550,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 +18591,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 +18675,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 +18730,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 +18753,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 @@ -19782,15 +18849,6 @@ __metadata: languageName: node linkType: hard -"napi-postinstall@npm:^0.3.0": - version: 0.3.4 - resolution: "napi-postinstall@npm:0.3.4" - bin: - napi-postinstall: lib/cli.js - checksum: 10c0/b33d64150828bdade3a5d07368a8b30da22ee393f8dd8432f1b9e5486867be21c84ec443dd875dd3ef3c7401a079a7ab7e2aa9d3538a889abbcd96495d5104fe - languageName: node - linkType: hard - "natural-compare-lite@npm:^1.4.0": version: 1.4.0 resolution: "natural-compare-lite@npm:1.4.0" @@ -19843,29 +18901,28 @@ __metadata: languageName: node linkType: hard -"next@npm:15.1.4": - version: 15.1.4 - resolution: "next@npm:15.1.4" +"next@npm:16.1.6": + version: 16.1.6 + resolution: "next@npm:16.1.6" dependencies: - "@next/env": "npm:15.1.4" - "@next/swc-darwin-arm64": "npm:15.1.4" - "@next/swc-darwin-x64": "npm:15.1.4" - "@next/swc-linux-arm64-gnu": "npm:15.1.4" - "@next/swc-linux-arm64-musl": "npm:15.1.4" - "@next/swc-linux-x64-gnu": "npm:15.1.4" - "@next/swc-linux-x64-musl": "npm:15.1.4" - "@next/swc-win32-arm64-msvc": "npm:15.1.4" - "@next/swc-win32-x64-msvc": "npm:15.1.4" - "@swc/counter": "npm:0.1.3" + "@next/env": "npm:16.1.6" + "@next/swc-darwin-arm64": "npm:16.1.6" + "@next/swc-darwin-x64": "npm:16.1.6" + "@next/swc-linux-arm64-gnu": "npm:16.1.6" + "@next/swc-linux-arm64-musl": "npm:16.1.6" + "@next/swc-linux-x64-gnu": "npm:16.1.6" + "@next/swc-linux-x64-musl": "npm:16.1.6" + "@next/swc-win32-arm64-msvc": "npm:16.1.6" + "@next/swc-win32-x64-msvc": "npm:16.1.6" "@swc/helpers": "npm:0.5.15" - busboy: "npm:1.6.0" + baseline-browser-mapping: "npm:^2.8.3" caniuse-lite: "npm:^1.0.30001579" postcss: "npm:8.4.31" - sharp: "npm:^0.33.5" + sharp: "npm:^0.34.4" styled-jsx: "npm:5.1.6" peerDependencies: "@opentelemetry/api": ^1.1.0 - "@playwright/test": ^1.41.2 + "@playwright/test": ^1.51.1 babel-plugin-react-compiler: "*" react: ^18.2.0 || 19.0.0-rc-de68d2f4-20241204 || ^19.0.0 react-dom: ^18.2.0 || 19.0.0-rc-de68d2f4-20241204 || ^19.0.0 @@ -19900,7 +18957,7 @@ __metadata: optional: true bin: next: dist/bin/next - checksum: 10c0/55325f95e1a8eb13de4ff0f7d7945c130226139bc308950e4fb9002bacae1b3a012bf1488e259027e606cdc460826fa91408e07c79d53c6f69b516b23a4741c5 + checksum: 10c0/543766bf879bb5a5d454dc18cb302953270a92efba1d01dd028ea83c64b69573ce7d6e6c3759ecbaabec0a84131b0237263c24d1ccd7c8a97205e776dcd34e0b languageName: node linkType: hard @@ -21305,7 +20362,7 @@ __metadata: languageName: node linkType: hard -"postcss@npm:^8.4.4, postcss@npm:^8.4.47, postcss@npm:^8.5.3": +"postcss@npm:^8.4.47, postcss@npm:^8.5.3": version: 8.5.6 resolution: "postcss@npm:8.5.6" dependencies: @@ -21836,14 +20893,14 @@ __metadata: languageName: node linkType: hard -"react-dom@npm:19.0.0": - version: 19.0.0 - resolution: "react-dom@npm:19.0.0" +"react-dom@npm:19.2.4": + version: 19.2.4 + resolution: "react-dom@npm:19.2.4" dependencies: - scheduler: "npm:^0.25.0" + scheduler: "npm:^0.27.0" peerDependencies: - react: ^19.0.0 - checksum: 10c0/a36ce7ab507b237ae2759c984cdaad4af4096d8199fb65b3815c16825e5cfeb7293da790a3fc2184b52bfba7ba3ff31c058c01947aff6fd1a3701632aabaa6a9 + react: ^19.2.4 + checksum: 10c0/f0c63f1794dedb154136d4d0f59af00b41907f4859571c155940296808f4b94bf9c0c20633db75b5b2112ec13d8d7dd4f9bf57362ed48782f317b11d05a44f35 languageName: node linkType: hard @@ -22024,10 +21081,10 @@ __metadata: languageName: node linkType: hard -"react@npm:19.0.0": - version: 19.0.0 - resolution: "react@npm:19.0.0" - checksum: 10c0/9cad8f103e8e3a16d15cb18a0d8115d8bd9f9e1ce3420310aea381eb42aa0a4f812cf047bb5441349257a05fba8a291515691e3cb51267279b2d2c3253f38471 +"react@npm:19.2.4": + version: 19.2.4 + resolution: "react@npm:19.2.4" + checksum: 10c0/cd2c9ff67a720799cc3b38a516009986f7fc4cb8d3e15716c6211cf098d1357ee3e348ab05ad0600042bbb0fd888530ba92e329198c92eafa0994f5213396596 languageName: node linkType: hard @@ -22417,7 +21474,7 @@ __metadata: languageName: node linkType: hard -"rimraf@npm:^3.0.0, rimraf@npm:^3.0.2": +"rimraf@npm:^3.0.0": version: 3.0.2 resolution: "rimraf@npm:3.0.2" dependencies: @@ -22461,19 +21518,16 @@ __metadata: version: 0.0.0-use.local resolution: "root@workspace:." dependencies: - "@mantine/dates": "npm:^8.0.1" - "@mantine/notifications": "npm:^7.17.3" + "@eslint/js": "npm:^10.0.1" + "@next/eslint-plugin-next": "npm:^16.1.6" "@types/eslint": "npm:^9.6.0" - "@typescript-eslint/eslint-plugin": "npm:^7.4.0" - "@typescript-eslint/parser": "npm:^7.4.0" - clsx: "npm:^2.1.1" - esbuild: "npm:^0.23.0" - eslint: "npm:8.57.0" - eslint-config-prettier: "npm:^9.1.0" - eslint-config-turbo: "npm:latest" + eslint: "npm:9.0.0" + eslint-config-prettier: "npm:^10.1.8" eslint-plugin-import: "npm:^2.29.1" - eslint-plugin-prettier: "npm:^5.1.3" - eslint-plugin-promise: "npm:^6.4.0" + eslint-plugin-prettier: "npm:^5.5.5" + eslint-plugin-promise: "npm:^7.2.1" + eslint-plugin-react: "npm:^7.37.5" + eslint-plugin-react-hooks: "npm:^7.0.1" eslint-plugin-sort-destructure-keys: "npm:^2.0.0" eslint-plugin-sort-keys: "npm:^2.3.5" husky: "npm:^8.0.3" @@ -22482,7 +21536,7 @@ __metadata: prettier: "npm:^3.3.3" prettier-plugin-tailwindcss: "npm:^0.6.6" typescript: "npm:^5.5.4" - uuid: "npm:^11.0.5" + typescript-eslint: "npm:^8.54.0" languageName: unknown linkType: soft @@ -22571,7 +21625,7 @@ __metadata: languageName: node linkType: hard -"safe-regex-test@npm:^1.0.3, safe-regex-test@npm:^1.1.0": +"safe-regex-test@npm:^1.1.0": version: 1.1.0 resolution: "safe-regex-test@npm:1.1.0" dependencies: @@ -22610,10 +21664,10 @@ __metadata: languageName: node linkType: hard -"scheduler@npm:^0.25.0": - version: 0.25.0 - resolution: "scheduler@npm:0.25.0" - checksum: 10c0/a4bb1da406b613ce72c1299db43759526058fdcc413999c3c3e0db8956df7633acf395cb20eb2303b6a65d658d66b6585d344460abaee8080b4aa931f10eaafe +"scheduler@npm:^0.27.0": + version: 0.27.0 + resolution: "scheduler@npm:0.27.0" + checksum: 10c0/4f03048cb05a3c8fddc45813052251eca00688f413a3cee236d984a161da28db28ba71bd11e7a3dd02f7af84ab28d39fb311431d3b3772fed557945beb00c452 languageName: node linkType: hard @@ -22635,12 +21689,12 @@ __metadata: languageName: node linkType: hard -"semver@npm:^7.0.0, semver@npm:^7.1.1, semver@npm:^7.3.4, semver@npm:^7.3.5, semver@npm:^7.3.7, semver@npm:^7.3.8, semver@npm:^7.5.3, semver@npm:^7.5.4, semver@npm:^7.6.0, semver@npm:^7.6.3, semver@npm:^7.7.1, semver@npm:^7.7.2, semver@npm:^7.7.3": - version: 7.7.3 - resolution: "semver@npm:7.7.3" +"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.3, semver@npm:^7.7.2, 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 @@ -22702,27 +21756,17 @@ __metadata: "@timescaledb/schemas": "npm:^0.0.1" "@timescaledb/typeorm": "npm:^0.0.1" "@trivago/prettier-plugin-sort-imports": "npm:^4.3.0" - "@types/eslint": "npm:^9.6.0" "@types/express": "npm:^4.17.21" "@types/node": "npm:^20.14.10" "@types/node-cache": "npm:^4.1.3" "@types/prettier": "npm:^3.0.0" "@types/sqlite3": "npm:^3.1.11" - "@typescript-eslint/eslint-plugin": "npm:^7.4.0" - "@typescript-eslint/parser": "npm:^7.4.0" aedes: "npm:^0.51.2" axios: "npm:^1.7.2" axios-retry: "npm:^4.0.0" cors: "npm:^2.8.5" db: "npm:*" dotenv: "npm:^16.4.5" - eslint: "npm:8.57.0" - eslint-config-prettier: "npm:^9.1.0" - eslint-plugin-prettier: "npm:^5.2.1" - eslint-plugin-promise: "npm:^7.1.0" - eslint-plugin-sort-destructure-keys: "npm:^2.0.0" - eslint-plugin-sort-keys: "npm:^2.3.5" - eslint-plugin-typescript-sort-keys: "npm:^3.2.0" express: "npm:^4.19.2" globals: "npm:^15.8.0" log4js: "npm:^6.9.1" @@ -22736,6 +21780,7 @@ __metadata: ts-node: "npm:^10.9.2" tsconfig-paths: "npm:^4.2.0" typescript: "npm:^5.5.3" + uuid: "npm:^11.0.5" languageName: unknown linkType: soft @@ -22831,32 +21876,37 @@ __metadata: languageName: node linkType: hard -"sharp@npm:^0.33.5": - version: 0.33.5 - resolution: "sharp@npm:0.33.5" - dependencies: - "@img/sharp-darwin-arm64": "npm:0.33.5" - "@img/sharp-darwin-x64": "npm:0.33.5" - "@img/sharp-libvips-darwin-arm64": "npm:1.0.4" - "@img/sharp-libvips-darwin-x64": "npm:1.0.4" - "@img/sharp-libvips-linux-arm": "npm:1.0.5" - "@img/sharp-libvips-linux-arm64": "npm:1.0.4" - "@img/sharp-libvips-linux-s390x": "npm:1.0.4" - "@img/sharp-libvips-linux-x64": "npm:1.0.4" - "@img/sharp-libvips-linuxmusl-arm64": "npm:1.0.4" - "@img/sharp-libvips-linuxmusl-x64": "npm:1.0.4" - "@img/sharp-linux-arm": "npm:0.33.5" - "@img/sharp-linux-arm64": "npm:0.33.5" - "@img/sharp-linux-s390x": "npm:0.33.5" - "@img/sharp-linux-x64": "npm:0.33.5" - "@img/sharp-linuxmusl-arm64": "npm:0.33.5" - "@img/sharp-linuxmusl-x64": "npm:0.33.5" - "@img/sharp-wasm32": "npm:0.33.5" - "@img/sharp-win32-ia32": "npm:0.33.5" - "@img/sharp-win32-x64": "npm:0.33.5" - color: "npm:^4.2.3" - detect-libc: "npm:^2.0.3" - semver: "npm:^7.6.3" +"sharp@npm:^0.34.4": + version: 0.34.5 + resolution: "sharp@npm:0.34.5" + dependencies: + "@img/colour": "npm:^1.0.0" + "@img/sharp-darwin-arm64": "npm:0.34.5" + "@img/sharp-darwin-x64": "npm:0.34.5" + "@img/sharp-libvips-darwin-arm64": "npm:1.2.4" + "@img/sharp-libvips-darwin-x64": "npm:1.2.4" + "@img/sharp-libvips-linux-arm": "npm:1.2.4" + "@img/sharp-libvips-linux-arm64": "npm:1.2.4" + "@img/sharp-libvips-linux-ppc64": "npm:1.2.4" + "@img/sharp-libvips-linux-riscv64": "npm:1.2.4" + "@img/sharp-libvips-linux-s390x": "npm:1.2.4" + "@img/sharp-libvips-linux-x64": "npm:1.2.4" + "@img/sharp-libvips-linuxmusl-arm64": "npm:1.2.4" + "@img/sharp-libvips-linuxmusl-x64": "npm:1.2.4" + "@img/sharp-linux-arm": "npm:0.34.5" + "@img/sharp-linux-arm64": "npm:0.34.5" + "@img/sharp-linux-ppc64": "npm:0.34.5" + "@img/sharp-linux-riscv64": "npm:0.34.5" + "@img/sharp-linux-s390x": "npm:0.34.5" + "@img/sharp-linux-x64": "npm:0.34.5" + "@img/sharp-linuxmusl-arm64": "npm:0.34.5" + "@img/sharp-linuxmusl-x64": "npm:0.34.5" + "@img/sharp-wasm32": "npm:0.34.5" + "@img/sharp-win32-arm64": "npm:0.34.5" + "@img/sharp-win32-ia32": "npm:0.34.5" + "@img/sharp-win32-x64": "npm:0.34.5" + detect-libc: "npm:^2.1.2" + semver: "npm:^7.7.3" dependenciesMeta: "@img/sharp-darwin-arm64": optional: true @@ -22870,6 +21920,10 @@ __metadata: optional: true "@img/sharp-libvips-linux-arm64": optional: true + "@img/sharp-libvips-linux-ppc64": + optional: true + "@img/sharp-libvips-linux-riscv64": + optional: true "@img/sharp-libvips-linux-s390x": optional: true "@img/sharp-libvips-linux-x64": @@ -22882,6 +21936,10 @@ __metadata: optional: true "@img/sharp-linux-arm64": optional: true + "@img/sharp-linux-ppc64": + optional: true + "@img/sharp-linux-riscv64": + optional: true "@img/sharp-linux-s390x": optional: true "@img/sharp-linux-x64": @@ -22892,11 +21950,13 @@ __metadata: optional: true "@img/sharp-wasm32": optional: true + "@img/sharp-win32-arm64": + optional: true "@img/sharp-win32-ia32": optional: true "@img/sharp-win32-x64": optional: true - checksum: 10c0/6b81421ddfe6ee524d8d77e325c5e147fef22884e1c7b1656dfd89a88d7025894115da02d5f984261bf2e6daa16f98cadd1721c4ba408b4212b1d2a60f233484 + checksum: 10c0/fd79e29df0597a7d5704b8461c51f944ead91a5243691697be6e8243b966402beda53ddc6f0a53b96ea3cb8221f0b244aa588114d3ebf8734fb4aefd41ab802f languageName: node linkType: hard @@ -22999,15 +22059,6 @@ __metadata: languageName: node linkType: hard -"simple-swizzle@npm:^0.2.2": - version: 0.2.4 - resolution: "simple-swizzle@npm:0.2.4" - dependencies: - is-arrayish: "npm:^0.3.1" - checksum: 10c0/846c3fdd1325318d5c71295cfbb99bfc9edc4c8dffdda5e6e9efe30482bbcd32cf360fc2806f46ac43ff7d09bcfaff20337bb79f826f0e6a8e366efd3cdd7868 - languageName: node - linkType: hard - "simple-update-notifier@npm:^2.0.0": version: 2.0.0 resolution: "simple-update-notifier@npm:2.0.0" @@ -23314,13 +22365,6 @@ __metadata: languageName: node linkType: hard -"stable-hash@npm:^0.0.5": - version: 0.0.5 - resolution: "stable-hash@npm:0.0.5" - checksum: 10c0/ca670cb6d172f1c834950e4ec661e2055885df32fee3ebf3647c5df94993b7c2666a5dbc1c9a62ee11fc5c24928579ec5e81bb5ad31971d355d5a341aab493b3 - languageName: node - linkType: hard - "stats-gl@npm:^2.2.8": version: 2.4.2 resolution: "stats-gl@npm:2.4.2" @@ -23386,13 +22430,6 @@ __metadata: languageName: node linkType: hard -"streamsearch@npm:^1.1.0": - version: 1.1.0 - resolution: "streamsearch@npm:1.1.0" - checksum: 10c0/fbd9aecc2621364384d157f7e59426f4bfd385e8b424b5aaa79c83a6f5a1c8fd2e4e3289e95de1eb3511cb96bb333d6281a9919fafce760e4edb35b2cd2facab - languageName: node - linkType: hard - "streamx@npm:^2.15.0": version: 2.23.0 resolution: "streamx@npm:2.23.0" @@ -23433,17 +22470,6 @@ __metadata: languageName: node linkType: hard -"string.prototype.includes@npm:^2.0.1": - version: 2.0.1 - resolution: "string.prototype.includes@npm:2.0.1" - dependencies: - call-bind: "npm:^1.0.7" - define-properties: "npm:^1.2.1" - es-abstract: "npm:^1.23.3" - checksum: 10c0/25ce9c9b49128352a2618fbe8758b46f945817a58a4420f4799419e40a8d28f116e176c7590d767d5327a61e75c8f32c86171063f48e389b9fdd325f1bd04ee5 - languageName: node - linkType: hard - "string.prototype.matchall@npm:^4.0.12": version: 4.0.12 resolution: "string.prototype.matchall@npm:4.0.12" @@ -23600,7 +22626,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 @@ -23968,7 +22994,7 @@ __metadata: languageName: node linkType: hard -"tinyglobby@npm:^0.2.11, tinyglobby@npm:^0.2.12, tinyglobby@npm:^0.2.13, tinyglobby@npm:^0.2.14, tinyglobby@npm:^0.2.15": +"tinyglobby@npm:^0.2.11, tinyglobby@npm:^0.2.12, tinyglobby@npm:^0.2.14, tinyglobby@npm:^0.2.15": version: 0.2.15 resolution: "tinyglobby@npm:0.2.15" dependencies: @@ -24152,15 +23178,6 @@ __metadata: languageName: node linkType: hard -"ts-api-utils@npm:^1.3.0": - version: 1.4.3 - resolution: "ts-api-utils@npm:1.4.3" - peerDependencies: - typescript: ">=4.2.0" - checksum: 10c0/e65dc6e7e8141140c23e1dc94984bf995d4f6801919c71d6dc27cf0cd51b100a91ffcfe5217626193e5bea9d46831e8586febdc7e172df3f1091a7384299e23a - languageName: node - linkType: hard - "ts-api-utils@npm:^2.4.0": version: 2.4.0 resolution: "ts-api-utils@npm:2.4.0" @@ -24252,7 +23269,7 @@ __metadata: languageName: node linkType: hard -"tslib@npm:^1.10.0, tslib@npm:^1.11.1, tslib@npm:^1.8.1, tslib@npm:^1.9.3": +"tslib@npm:^1.10.0, tslib@npm:^1.11.1, tslib@npm:^1.9.3": version: 1.14.1 resolution: "tslib@npm:1.14.1" checksum: 10c0/69ae09c49eea644bc5ebe1bca4fa4cc2c82b7b3e02f43b84bd891504edf66dbc6b2ec0eef31a957042de2269139e4acff911e6d186a258fb14069cd7f6febce2 @@ -24301,17 +23318,6 @@ __metadata: languageName: node linkType: hard -"tsutils@npm:^3.21.0": - version: 3.21.0 - resolution: "tsutils@npm:3.21.0" - dependencies: - tslib: "npm:^1.8.1" - peerDependencies: - typescript: ">=2.8.0 || >= 3.2.0-dev || >= 3.3.0-dev || >= 3.4.0-dev || >= 3.5.0-dev || >= 3.6.0-dev || >= 3.6.0-beta || >= 3.7.0-dev || >= 3.7.0-beta" - checksum: 10c0/02f19e458ec78ead8fffbf711f834ad8ecd2cc6ade4ec0320790713dccc0a412b99e7fd907c4cda2a1dc602c75db6f12e0108e87a5afad4b2f9e90a24cabd5a2 - languageName: node - linkType: hard - "tsx@npm:^4.16.2, tsx@npm:^4.6.1": version: 4.21.0 resolution: "tsx@npm:4.21.0" @@ -24373,13 +23379,6 @@ __metadata: languageName: node linkType: hard -"type-fest@npm:^0.20.2": - version: 0.20.2 - resolution: "type-fest@npm:0.20.2" - checksum: 10c0/dea9df45ea1f0aaa4e2d3bed3f9a0bfe9e5b2592bddb92eb1bf06e50bcf98dbb78189668cd8bc31a0511d3fc25539b4cd5c704497e53e93e2d40ca764b10bfc3 - languageName: node - linkType: hard - "type-fest@npm:^0.21.3": version: 0.21.3 resolution: "type-fest@npm:0.21.3" @@ -24569,6 +23568,21 @@ __metadata: languageName: node linkType: hard +"typescript-eslint@npm:^8.54.0": + version: 8.54.0 + resolution: "typescript-eslint@npm:8.54.0" + dependencies: + "@typescript-eslint/eslint-plugin": "npm:8.54.0" + "@typescript-eslint/parser": "npm:8.54.0" + "@typescript-eslint/typescript-estree": "npm:8.54.0" + "@typescript-eslint/utils": "npm:8.54.0" + peerDependencies: + eslint: ^8.57.0 || ^9.0.0 + typescript: ">=4.8.4 <6.0.0" + checksum: 10c0/0ba92aa22c0aa10c88b0f4732950ed64245947f1c4ac17328dff94b43eaeddd3068595788725781fba07a87cc964304a075b3e37f9a86312173498fcc6ab4338 + languageName: node + linkType: hard + "typescript@npm:<=4.5.0": version: 4.4.4 resolution: "typescript@npm:4.4.4" @@ -24775,73 +23789,6 @@ __metadata: languageName: node linkType: hard -"unrs-resolver@npm:^1.6.2": - version: 1.11.1 - resolution: "unrs-resolver@npm:1.11.1" - dependencies: - "@unrs/resolver-binding-android-arm-eabi": "npm:1.11.1" - "@unrs/resolver-binding-android-arm64": "npm:1.11.1" - "@unrs/resolver-binding-darwin-arm64": "npm:1.11.1" - "@unrs/resolver-binding-darwin-x64": "npm:1.11.1" - "@unrs/resolver-binding-freebsd-x64": "npm:1.11.1" - "@unrs/resolver-binding-linux-arm-gnueabihf": "npm:1.11.1" - "@unrs/resolver-binding-linux-arm-musleabihf": "npm:1.11.1" - "@unrs/resolver-binding-linux-arm64-gnu": "npm:1.11.1" - "@unrs/resolver-binding-linux-arm64-musl": "npm:1.11.1" - "@unrs/resolver-binding-linux-ppc64-gnu": "npm:1.11.1" - "@unrs/resolver-binding-linux-riscv64-gnu": "npm:1.11.1" - "@unrs/resolver-binding-linux-riscv64-musl": "npm:1.11.1" - "@unrs/resolver-binding-linux-s390x-gnu": "npm:1.11.1" - "@unrs/resolver-binding-linux-x64-gnu": "npm:1.11.1" - "@unrs/resolver-binding-linux-x64-musl": "npm:1.11.1" - "@unrs/resolver-binding-wasm32-wasi": "npm:1.11.1" - "@unrs/resolver-binding-win32-arm64-msvc": "npm:1.11.1" - "@unrs/resolver-binding-win32-ia32-msvc": "npm:1.11.1" - "@unrs/resolver-binding-win32-x64-msvc": "npm:1.11.1" - napi-postinstall: "npm:^0.3.0" - dependenciesMeta: - "@unrs/resolver-binding-android-arm-eabi": - optional: true - "@unrs/resolver-binding-android-arm64": - optional: true - "@unrs/resolver-binding-darwin-arm64": - optional: true - "@unrs/resolver-binding-darwin-x64": - optional: true - "@unrs/resolver-binding-freebsd-x64": - optional: true - "@unrs/resolver-binding-linux-arm-gnueabihf": - optional: true - "@unrs/resolver-binding-linux-arm-musleabihf": - optional: true - "@unrs/resolver-binding-linux-arm64-gnu": - optional: true - "@unrs/resolver-binding-linux-arm64-musl": - optional: true - "@unrs/resolver-binding-linux-ppc64-gnu": - optional: true - "@unrs/resolver-binding-linux-riscv64-gnu": - optional: true - "@unrs/resolver-binding-linux-riscv64-musl": - optional: true - "@unrs/resolver-binding-linux-s390x-gnu": - optional: true - "@unrs/resolver-binding-linux-x64-gnu": - optional: true - "@unrs/resolver-binding-linux-x64-musl": - optional: true - "@unrs/resolver-binding-wasm32-wasi": - optional: true - "@unrs/resolver-binding-win32-arm64-msvc": - optional: true - "@unrs/resolver-binding-win32-ia32-msvc": - optional: true - "@unrs/resolver-binding-win32-x64-msvc": - optional: true - checksum: 10c0/c91b112c71a33d6b24e5c708dab43ab80911f2df8ee65b87cd7a18fb5af446708e98c4b415ca262026ad8df326debcc7ca6a801b2935504d87fd6f0b9d70dce1 - languageName: node - linkType: hard - "untildify@npm:^4.0.0": version: 4.0.0 resolution: "untildify@npm:4.0.0" @@ -25156,6 +24103,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 +24342,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 @@ -25724,6 +24678,15 @@ __metadata: languageName: node linkType: hard +"zod-validation-error@npm:^3.5.0 || ^4.0.0": + version: 4.0.2 + resolution: "zod-validation-error@npm:4.0.2" + peerDependencies: + zod: ^3.25.0 || ^4.0.0 + checksum: 10c0/0ccfec48c46de1be440b719cd02044d4abb89ed0e14c13e637cd55bf29102f67ccdba373f25def0fc7130e5f15025be4d557a7edcc95d5a3811599aade689e1b + languageName: node + linkType: hard + "zod@npm:3.25.17": version: 3.25.17 resolution: "zod@npm:3.25.17" @@ -25738,6 +24701,13 @@ __metadata: languageName: node linkType: hard +"zod@npm:^3.25.0 || ^4.0.0": + version: 4.3.6 + resolution: "zod@npm:4.3.6" + checksum: 10c0/860d25a81ab41d33aa25f8d0d07b091a04acb426e605f396227a796e9e800c44723ed96d0f53a512b57be3d1520f45bf69c0cb3b378a232a00787a2609625307 + languageName: node + linkType: hard + "zustand@npm:^4.1.2, zustand@npm:^4.3.2": version: 4.5.7 resolution: "zustand@npm:4.5.7" @@ -25759,8 +24729,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 +24745,6 @@ __metadata: optional: true use-sync-external-store: optional: true - checksum: 10c0/e6ddabf2b44f2c0b7362b0f549cb457d25516caa4c0465132037b62b6173552a43d48bb494c1707286f8d60b389fa249eb4242aa810f1c1d4b4d0b96df789cb8 + checksum: 10c0/61836b48dac5978c9d1b8289d5162a151bee77828371b9aba6431a079b77faca0635ba53da3f7b331295fbc4e78318a109a4527f7a051cb63abfe79b69ccbecf languageName: node linkType: hard